From 6fd4e79fbe5b6aea53fd5ccff82efb1ccb84574f Mon Sep 17 00:00:00 2001 From: dy Date: Sat, 30 Dec 2023 16:32:26 +0800 Subject: [PATCH 1/8] =?UTF-8?q?=E7=B4=AF=E8=AE=A1=E5=85=85=E5=80=BC?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/api_s2c/event/leijichongzhi/ApiOpen.ts | 27 +++++++------ src/api_s2c/event/leijichongzhi/ApiRec.ts | 38 +++++++++++-------- .../protocols/event/leijichongzhi/PtlOpen.ts | 2 + src/shared/protocols/serviceProto.ts | 7 ++++ 4 files changed, 47 insertions(+), 27 deletions(-) diff --git a/src/api_s2c/event/leijichongzhi/ApiOpen.ts b/src/api_s2c/event/leijichongzhi/ApiOpen.ts index 9d3779f..694a5bd 100644 --- a/src/api_s2c/event/leijichongzhi/ApiOpen.ts +++ b/src/api_s2c/event/leijichongzhi/ApiOpen.ts @@ -1,32 +1,35 @@ -import { ApiCall } from "tsrpc"; -import { HuoDongFun } from "../../../public/huodongfun"; -import { PayFun } from '../../../public/pay'; -import { ReqOpen, ResOpen } from "../../../shared/protocols/event/leijichongzhi/PtlOpen"; -import { PublicShared } from '../../../shared/public/public'; +import {ApiCall} from "tsrpc"; +import {HuoDongFun} from "../../../public/huodongfun"; +import {PayFun} from '../../../public/pay'; +import {ReqOpen, ResOpen} from "../../../shared/protocols/event/leijichongzhi/PtlOpen"; +import {PublicShared} from '../../../shared/public/public'; export default async function (call: ApiCall) { let _hdinfo = await HuoDongFun.getHdidInfo(call, call.req.hdid) if (!_hdinfo || Object.keys(_hdinfo).length <= 0) { // 无此活动 - return call.error('', { code: -1, message: globalThis.lng.huodong_open_1 }) + return call.error('', {code: -1, message: globalThis.lng.huodong_open_1}) } let _dbType: `leijichongzhi${number}` = `leijichongzhi${call.req.hdid}` - let db = await G.mongodb.cEvent(_dbType).findOne({ uid: call.uid, type: _dbType }); + let db = await G.mongodb.cEvent(_dbType).findOne({uid: call.uid, type: _dbType}); let sTime = db?.sTime || PublicShared.getToDayZeroTime(G.time); if (!db) { G.mongodb.cEvent(_dbType).updateOne( - { uid: call.uid, type: _dbType }, - { $set: { sTime: sTime, recIndex: [] } }, - { upsert: true } + {uid: call.uid, type: _dbType}, + {$set: {sTime: sTime, recIndex: []}}, + {upsert: true} ); } + let payNum = (await PayFun.getPayDaysAllPayNum(call.uid, _hdinfo.stime, _hdinfo.rtime)) * 10 + payNum = payNum - (db.round || 0) * R.compose(R.sum(), R.map(i => i.total))(_hdinfo.data.tasks) call.succ({ sTime: sTime, recIndex: db?.recIndex || [], - payNum: (await PayFun.getPayDaysAllPayNum(call.uid, _hdinfo.stime, _hdinfo.rtime)) * 10, - hdinfo: _hdinfo + payNum: payNum, + hdinfo: _hdinfo, + round: db.round || 0 }); } \ No newline at end of file diff --git a/src/api_s2c/event/leijichongzhi/ApiRec.ts b/src/api_s2c/event/leijichongzhi/ApiRec.ts index 39d27ee..103cff5 100644 --- a/src/api_s2c/event/leijichongzhi/ApiRec.ts +++ b/src/api_s2c/event/leijichongzhi/ApiRec.ts @@ -1,34 +1,42 @@ -import { ApiCall } from "tsrpc"; -import { HuoDongFun } from "../../../public/huodongfun"; -import { PayFun } from '../../../public/pay'; -import { PlayerFun } from '../../../public/player'; -import { ReqRec, ResRec } from "../../../shared/protocols/event/leijichongzhi/PtlRec"; -import { HongDianChange } from "../../hongdian/fun"; +import {ApiCall} from "tsrpc"; +import {HuoDongFun} from "../../../public/huodongfun"; +import {PayFun} from '../../../public/pay'; +import {PlayerFun} from '../../../public/player'; +import {ReqRec, ResRec} from "../../../shared/protocols/event/leijichongzhi/PtlRec"; +import {HongDianChange} from "../../hongdian/fun"; export default async function (call: ApiCall) { let _hdinfo = await HuoDongFun.getHdidInfo(call, call.req.hdid) if (!_hdinfo || Object.keys(_hdinfo).length <= 0) { // 无此活动 - return call.error('', { code: -1, message: globalThis.lng.huodong_open_1 }) + return call.error('', {code: -1, message: globalThis.lng.huodong_open_1}) } let _dbType: `leijichongzhi${number}` = `leijichongzhi${call.req.hdid}` let conf = _hdinfo.data.tasks[call.req.index]; - if (!conf) return call.error('', { code: -1 }); + if (!conf) return call.error('', {code: -1}); - let db = await G.mongodb.cEvent(_dbType).findOne({ uid: call.uid, type: _dbType }); - if (db.recIndex.includes(call.req.index)) return call.error('', { code: -2 }); + let db = await G.mongodb.cEvent(_dbType).findOne({uid: call.uid, type: _dbType}); + if (db.recIndex.includes(call.req.index)) return call.error('', {code: -2}); let payNum = (await PayFun.getPayDaysAllPayNum(call.uid, _hdinfo.stime, _hdinfo.rtime)) * 10; - if (payNum < conf.total) return call.error('', { code: -3 }); + payNum = payNum - (db.round || 0) * R.compose(R.sum(), R.map(i => i.total))(_hdinfo.data.tasks) + if (payNum < conf.total) return call.error('', {code: -3}); await PlayerFun.sendPrize(call, conf.prize); - G.mongodb.cEvent(_dbType).updateOne( - { uid: call.uid, type: _dbType }, - { $push: { recIndex: call.req.index } } - ); + if (db.recIndex.length + 1 >= _hdinfo.data.tasks.length) { + await G.mongodb.cEvent(_dbType).updateOne( + {uid: call.uid, type: _dbType}, + {$set: {recIndex: []}, $inc: {round: 1}} + ); + } else { + await G.mongodb.cEvent(_dbType).updateOne( + {uid: call.uid, type: _dbType}, + {$push: {recIndex: call.req.index}} + ); + } HongDianChange.sendChangeKey(call.uid, ['huodonghd']) call.succ({ diff --git a/src/shared/protocols/event/leijichongzhi/PtlOpen.ts b/src/shared/protocols/event/leijichongzhi/PtlOpen.ts index e61167b..9c2d03c 100644 --- a/src/shared/protocols/event/leijichongzhi/PtlOpen.ts +++ b/src/shared/protocols/event/leijichongzhi/PtlOpen.ts @@ -16,4 +16,6 @@ export type ResOpen = { payNum: number; /**活动信息 */ hdinfo: ReqAddHuoDong; + /** 当前领取轮次 */ + round: number }; \ No newline at end of file diff --git a/src/shared/protocols/serviceProto.ts b/src/shared/protocols/serviceProto.ts index 57b3262..bd8c93d 100644 --- a/src/shared/protocols/serviceProto.ts +++ b/src/shared/protocols/serviceProto.ts @@ -10263,6 +10263,13 @@ export const serviceProto: ServiceProto = { "type": "Reference", "target": "../../monopoly/protocols/PtlAddHuoDong/ReqAddHuoDong" } + }, + { + "id": 4, + "name": "round", + "type": { + "type": "Number" + } } ] }, From 96675a9ff186143b27d8d4dac20c8ca4e3d57a1a Mon Sep 17 00:00:00 2001 From: dy Date: Sun, 31 Dec 2023 09:48:26 +0800 Subject: [PATCH 2/8] =?UTF-8?q?=E7=B4=AF=E8=AE=A1=E5=85=85=E5=80=BC?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/api_s2c/event/leijichongzhi/ApiOpen.ts | 5 +++- src/api_s2c/event/leijichongzhi/ApiRec.ts | 28 ++++++++++++---------- 2 files changed, 20 insertions(+), 13 deletions(-) diff --git a/src/api_s2c/event/leijichongzhi/ApiOpen.ts b/src/api_s2c/event/leijichongzhi/ApiOpen.ts index 694a5bd..ec12bf4 100644 --- a/src/api_s2c/event/leijichongzhi/ApiOpen.ts +++ b/src/api_s2c/event/leijichongzhi/ApiOpen.ts @@ -3,6 +3,7 @@ import {HuoDongFun} from "../../../public/huodongfun"; import {PayFun} from '../../../public/pay'; import {ReqOpen, ResOpen} from "../../../shared/protocols/event/leijichongzhi/PtlOpen"; import {PublicShared} from '../../../shared/public/public'; +import {checkNextRound} from "./ApiRec"; export default async function (call: ApiCall) { let _hdinfo = await HuoDongFun.getHdidInfo(call, call.req.hdid) @@ -22,8 +23,10 @@ export default async function (call: ApiCall) { {upsert: true} ); } + db = await checkNextRound(call, db, _hdinfo.data.tasks) + let payNum = (await PayFun.getPayDaysAllPayNum(call.uid, _hdinfo.stime, _hdinfo.rtime)) * 10 - payNum = payNum - (db.round || 0) * R.compose(R.sum(), R.map(i => i.total))(_hdinfo.data.tasks) + payNum = payNum - (db.round || 0) * R.sort((a, b) => b.total - a.total)(_hdinfo.data.tasks)[0].total call.succ({ sTime: sTime, diff --git a/src/api_s2c/event/leijichongzhi/ApiRec.ts b/src/api_s2c/event/leijichongzhi/ApiRec.ts index 103cff5..e076e7c 100644 --- a/src/api_s2c/event/leijichongzhi/ApiRec.ts +++ b/src/api_s2c/event/leijichongzhi/ApiRec.ts @@ -21,25 +21,29 @@ export default async function (call: ApiCall) { if (db.recIndex.includes(call.req.index)) return call.error('', {code: -2}); let payNum = (await PayFun.getPayDaysAllPayNum(call.uid, _hdinfo.stime, _hdinfo.rtime)) * 10; - payNum = payNum - (db.round || 0) * R.compose(R.sum(), R.map(i => i.total))(_hdinfo.data.tasks) + payNum = payNum - (db.round || 0) * R.sort((a, b) => b.total - a.total)(_hdinfo.data.tasks)[0].total if (payNum < conf.total) return call.error('', {code: -3}); await PlayerFun.sendPrize(call, conf.prize); - if (db.recIndex.length + 1 >= _hdinfo.data.tasks.length) { - await G.mongodb.cEvent(_dbType).updateOne( - {uid: call.uid, type: _dbType}, - {$set: {recIndex: []}, $inc: {round: 1}} - ); - } else { - await G.mongodb.cEvent(_dbType).updateOne( - {uid: call.uid, type: _dbType}, - {$push: {recIndex: call.req.index}} - ); - } + await G.mongodb.cEvent(_dbType).updateOne( + {uid: call.uid, type: _dbType}, + {$push: {recIndex: call.req.index}} + ); + + await checkNextRound(call, db, _hdinfo.data.tasks) HongDianChange.sendChangeKey(call.uid, ['huodonghd']) call.succ({ prize: conf.prize }); +} + +export async function checkNextRound(call: ApiCall, event, tasks) { + let _dbType: `leijichongzhi${number}` = `leijichongzhi${call.req.hdid}` + if ((event.recIndex.length || 0) < tasks.length) return event + return (await G.mongodb.cEvent(_dbType).findOneAndUpdate( + {uid: call.uid, type: _dbType}, + {$set: {recIndex: []}, $inc: {round: 1}}, {returnDocument: 'after'} + )).value; } \ No newline at end of file From a84f20361fe4d65efbca4c82300e6a057fce6eae Mon Sep 17 00:00:00 2001 From: dy Date: Sun, 31 Dec 2023 11:45:44 +0800 Subject: [PATCH 3/8] =?UTF-8?q?=E7=B4=AF=E5=85=85?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/api_s2c/event/leijichongzhi/ApiOpen.ts | 2 +- src/api_s2c/event/leijichongzhi/ApiRec.ts | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/api_s2c/event/leijichongzhi/ApiOpen.ts b/src/api_s2c/event/leijichongzhi/ApiOpen.ts index ec12bf4..686068c 100644 --- a/src/api_s2c/event/leijichongzhi/ApiOpen.ts +++ b/src/api_s2c/event/leijichongzhi/ApiOpen.ts @@ -17,7 +17,7 @@ export default async function (call: ApiCall) { let sTime = db?.sTime || PublicShared.getToDayZeroTime(G.time); if (!db) { - G.mongodb.cEvent(_dbType).updateOne( + await G.mongodb.cEvent(_dbType).updateOne( {uid: call.uid, type: _dbType}, {$set: {sTime: sTime, recIndex: []}}, {upsert: true} diff --git a/src/api_s2c/event/leijichongzhi/ApiRec.ts b/src/api_s2c/event/leijichongzhi/ApiRec.ts index e076e7c..55f9aef 100644 --- a/src/api_s2c/event/leijichongzhi/ApiRec.ts +++ b/src/api_s2c/event/leijichongzhi/ApiRec.ts @@ -41,7 +41,7 @@ export default async function (call: ApiCall) { export async function checkNextRound(call: ApiCall, event, tasks) { let _dbType: `leijichongzhi${number}` = `leijichongzhi${call.req.hdid}` - if ((event.recIndex.length || 0) < tasks.length) return event + if ((event?.recIndex?.length || 0) < tasks.length) return event return (await G.mongodb.cEvent(_dbType).findOneAndUpdate( {uid: call.uid, type: _dbType}, {$set: {recIndex: []}, $inc: {round: 1}}, {returnDocument: 'after'} From 3ba27f5180b8de747de2bef6f65b4deb3c6b5faa Mon Sep 17 00:00:00 2001 From: dy Date: Sun, 31 Dec 2023 16:01:41 +0800 Subject: [PATCH 4/8] cehua public json --- src/json/diaoluo.json | 1440 ++ src/json/npc.json | 30482 ++++++++++++++++++----------------- src/json/tanxian.json | 3920 +++++ src/json/tanxian_tgjl.json | 188 +- src/json/task.json | 2466 ++- 5 files changed, 23852 insertions(+), 14644 deletions(-) diff --git a/src/json/diaoluo.json b/src/json/diaoluo.json index 818a5e2..1f1bad9 100644 --- a/src/json/diaoluo.json +++ b/src/json/diaoluo.json @@ -20129,6 +20129,726 @@ "p": 1 } ], + "211001": [ + { + "id": 211001, + "a": "attr", + "t": "nexp", + "n": 5375, + "p": 1 + } + ], + "211002": [ + { + "id": 211002, + "a": "attr", + "t": "nexp", + "n": 5380, + "p": 1 + } + ], + "211003": [ + { + "id": 211003, + "a": "attr", + "t": "nexp", + "n": 5385, + "p": 1 + } + ], + "211004": [ + { + "id": 211004, + "a": "attr", + "t": "nexp", + "n": 5390, + "p": 1 + } + ], + "211005": [ + { + "id": 211005, + "a": "attr", + "t": "nexp", + "n": 5395, + "p": 1 + } + ], + "211006": [ + { + "id": 211006, + "a": "attr", + "t": "nexp", + "n": 5400, + "p": 1 + } + ], + "211007": [ + { + "id": 211007, + "a": "attr", + "t": "nexp", + "n": 5405, + "p": 1 + } + ], + "211008": [ + { + "id": 211008, + "a": "attr", + "t": "nexp", + "n": 5410, + "p": 1 + } + ], + "211009": [ + { + "id": 211009, + "a": "attr", + "t": "nexp", + "n": 5415, + "p": 1 + } + ], + "211010": [ + { + "id": 211010, + "a": "attr", + "t": "nexp", + "n": 5420, + "p": 1 + } + ], + "211011": [ + { + "id": 211011, + "a": "attr", + "t": "nexp", + "n": 5425, + "p": 1 + } + ], + "211012": [ + { + "id": 211012, + "a": "attr", + "t": "nexp", + "n": 5430, + "p": 1 + } + ], + "211013": [ + { + "id": 211013, + "a": "attr", + "t": "nexp", + "n": 5435, + "p": 1 + } + ], + "211014": [ + { + "id": 211014, + "a": "attr", + "t": "nexp", + "n": 5440, + "p": 1 + } + ], + "211015": [ + { + "id": 211015, + "a": "attr", + "t": "nexp", + "n": 5445, + "p": 1 + } + ], + "211016": [ + { + "id": 211016, + "a": "attr", + "t": "nexp", + "n": 5450, + "p": 1 + } + ], + "211017": [ + { + "id": 211017, + "a": "attr", + "t": "nexp", + "n": 5455, + "p": 1 + } + ], + "211018": [ + { + "id": 211018, + "a": "attr", + "t": "nexp", + "n": 5460, + "p": 1 + } + ], + "211019": [ + { + "id": 211019, + "a": "attr", + "t": "nexp", + "n": 5465, + "p": 1 + } + ], + "211020": [ + { + "id": 211020, + "a": "attr", + "t": "nexp", + "n": 5470, + "p": 1 + } + ], + "211021": [ + { + "id": 211021, + "a": "attr", + "t": "nexp", + "n": 5475, + "p": 1 + } + ], + "211022": [ + { + "id": 211022, + "a": "attr", + "t": "nexp", + "n": 5480, + "p": 1 + } + ], + "211023": [ + { + "id": 211023, + "a": "attr", + "t": "nexp", + "n": 5485, + "p": 1 + } + ], + "211024": [ + { + "id": 211024, + "a": "attr", + "t": "nexp", + "n": 5490, + "p": 1 + } + ], + "211025": [ + { + "id": 211025, + "a": "attr", + "t": "nexp", + "n": 5495, + "p": 1 + } + ], + "211026": [ + { + "id": 211026, + "a": "attr", + "t": "nexp", + "n": 5500, + "p": 1 + } + ], + "211027": [ + { + "id": 211027, + "a": "attr", + "t": "nexp", + "n": 5505, + "p": 1 + } + ], + "211028": [ + { + "id": 211028, + "a": "attr", + "t": "nexp", + "n": 5510, + "p": 1 + } + ], + "211029": [ + { + "id": 211029, + "a": "attr", + "t": "nexp", + "n": 5515, + "p": 1 + } + ], + "211030": [ + { + "id": 211030, + "a": "attr", + "t": "nexp", + "n": 5520, + "p": 1 + } + ], + "211031": [ + { + "id": 211031, + "a": "attr", + "t": "nexp", + "n": 5525, + "p": 1 + } + ], + "211032": [ + { + "id": 211032, + "a": "attr", + "t": "nexp", + "n": 5530, + "p": 1 + } + ], + "211033": [ + { + "id": 211033, + "a": "attr", + "t": "nexp", + "n": 5535, + "p": 1 + } + ], + "211034": [ + { + "id": 211034, + "a": "attr", + "t": "nexp", + "n": 5540, + "p": 1 + } + ], + "211035": [ + { + "id": 211035, + "a": "attr", + "t": "nexp", + "n": 5545, + "p": 1 + } + ], + "211036": [ + { + "id": 211036, + "a": "attr", + "t": "nexp", + "n": 5550, + "p": 1 + } + ], + "211037": [ + { + "id": 211037, + "a": "attr", + "t": "nexp", + "n": 5555, + "p": 1 + } + ], + "211038": [ + { + "id": 211038, + "a": "attr", + "t": "nexp", + "n": 5560, + "p": 1 + } + ], + "211039": [ + { + "id": 211039, + "a": "attr", + "t": "nexp", + "n": 5565, + "p": 1 + } + ], + "211040": [ + { + "id": 211040, + "a": "attr", + "t": "nexp", + "n": 5570, + "p": 1 + } + ], + "211041": [ + { + "id": 211041, + "a": "attr", + "t": "nexp", + "n": 5575, + "p": 1 + } + ], + "211042": [ + { + "id": 211042, + "a": "attr", + "t": "nexp", + "n": 5580, + "p": 1 + } + ], + "211043": [ + { + "id": 211043, + "a": "attr", + "t": "nexp", + "n": 5585, + "p": 1 + } + ], + "211044": [ + { + "id": 211044, + "a": "attr", + "t": "nexp", + "n": 5590, + "p": 1 + } + ], + "211045": [ + { + "id": 211045, + "a": "attr", + "t": "nexp", + "n": 5595, + "p": 1 + } + ], + "211046": [ + { + "id": 211046, + "a": "attr", + "t": "nexp", + "n": 5600, + "p": 1 + } + ], + "211047": [ + { + "id": 211047, + "a": "attr", + "t": "nexp", + "n": 5605, + "p": 1 + } + ], + "211048": [ + { + "id": 211048, + "a": "attr", + "t": "nexp", + "n": 5610, + "p": 1 + } + ], + "211049": [ + { + "id": 211049, + "a": "attr", + "t": "nexp", + "n": 5615, + "p": 1 + } + ], + "211050": [ + { + "id": 211050, + "a": "attr", + "t": "nexp", + "n": 5620, + "p": 1 + } + ], + "211051": [ + { + "id": 211051, + "a": "attr", + "t": "nexp", + "n": 5625, + "p": 1 + } + ], + "211052": [ + { + "id": 211052, + "a": "attr", + "t": "nexp", + "n": 5630, + "p": 1 + } + ], + "211053": [ + { + "id": 211053, + "a": "attr", + "t": "nexp", + "n": 5635, + "p": 1 + } + ], + "211054": [ + { + "id": 211054, + "a": "attr", + "t": "nexp", + "n": 5640, + "p": 1 + } + ], + "211055": [ + { + "id": 211055, + "a": "attr", + "t": "nexp", + "n": 5645, + "p": 1 + } + ], + "211056": [ + { + "id": 211056, + "a": "attr", + "t": "nexp", + "n": 5650, + "p": 1 + } + ], + "211057": [ + { + "id": 211057, + "a": "attr", + "t": "nexp", + "n": 5655, + "p": 1 + } + ], + "211058": [ + { + "id": 211058, + "a": "attr", + "t": "nexp", + "n": 5660, + "p": 1 + } + ], + "211059": [ + { + "id": 211059, + "a": "attr", + "t": "nexp", + "n": 5665, + "p": 1 + } + ], + "211060": [ + { + "id": 211060, + "a": "attr", + "t": "nexp", + "n": 5670, + "p": 1 + } + ], + "211061": [ + { + "id": 211061, + "a": "attr", + "t": "nexp", + "n": 5675, + "p": 1 + } + ], + "211062": [ + { + "id": 211062, + "a": "attr", + "t": "nexp", + "n": 5680, + "p": 1 + } + ], + "211063": [ + { + "id": 211063, + "a": "attr", + "t": "nexp", + "n": 5685, + "p": 1 + } + ], + "211064": [ + { + "id": 211064, + "a": "attr", + "t": "nexp", + "n": 5690, + "p": 1 + } + ], + "211065": [ + { + "id": 211065, + "a": "attr", + "t": "nexp", + "n": 5695, + "p": 1 + } + ], + "211066": [ + { + "id": 211066, + "a": "attr", + "t": "nexp", + "n": 5700, + "p": 1 + } + ], + "211067": [ + { + "id": 211067, + "a": "attr", + "t": "nexp", + "n": 5705, + "p": 1 + } + ], + "211068": [ + { + "id": 211068, + "a": "attr", + "t": "nexp", + "n": 5710, + "p": 1 + } + ], + "211069": [ + { + "id": 211069, + "a": "attr", + "t": "nexp", + "n": 5715, + "p": 1 + } + ], + "211070": [ + { + "id": 211070, + "a": "attr", + "t": "nexp", + "n": 5720, + "p": 1 + } + ], + "211071": [ + { + "id": 211071, + "a": "attr", + "t": "nexp", + "n": 5725, + "p": 1 + } + ], + "211072": [ + { + "id": 211072, + "a": "attr", + "t": "nexp", + "n": 5730, + "p": 1 + } + ], + "211073": [ + { + "id": 211073, + "a": "attr", + "t": "nexp", + "n": 5735, + "p": 1 + } + ], + "211074": [ + { + "id": 211074, + "a": "attr", + "t": "nexp", + "n": 5740, + "p": 1 + } + ], + "211075": [ + { + "id": 211075, + "a": "attr", + "t": "nexp", + "n": 5745, + "p": 1 + } + ], + "211076": [ + { + "id": 211076, + "a": "attr", + "t": "nexp", + "n": 5750, + "p": 1 + } + ], + "211077": [ + { + "id": 211077, + "a": "attr", + "t": "nexp", + "n": 5755, + "p": 1 + } + ], + "211078": [ + { + "id": 211078, + "a": "attr", + "t": "nexp", + "n": 5760, + "p": 1 + } + ], + "211079": [ + { + "id": 211079, + "a": "attr", + "t": "nexp", + "n": 5765, + "p": 1 + } + ], + "211080": [ + { + "id": 211080, + "a": "attr", + "t": "nexp", + "n": 5770, + "p": 1 + } + ], "220001": [ { "id": 220001, @@ -31275,6 +31995,726 @@ "p": 1 } ], + "271001": [ + { + "id": 271001, + "a": "attr", + "t": "nexp", + "n": 231194, + "p": 1 + } + ], + "271002": [ + { + "id": 271002, + "a": "attr", + "t": "nexp", + "n": 231425, + "p": 1 + } + ], + "271003": [ + { + "id": 271003, + "a": "attr", + "t": "nexp", + "n": 231656, + "p": 1 + } + ], + "271004": [ + { + "id": 271004, + "a": "attr", + "t": "nexp", + "n": 231887, + "p": 1 + } + ], + "271005": [ + { + "id": 271005, + "a": "attr", + "t": "nexp", + "n": 232118, + "p": 1 + } + ], + "271006": [ + { + "id": 271006, + "a": "attr", + "t": "nexp", + "n": 232349, + "p": 1 + } + ], + "271007": [ + { + "id": 271007, + "a": "attr", + "t": "nexp", + "n": 232580, + "p": 1 + } + ], + "271008": [ + { + "id": 271008, + "a": "attr", + "t": "nexp", + "n": 232811, + "p": 1 + } + ], + "271009": [ + { + "id": 271009, + "a": "attr", + "t": "nexp", + "n": 233042, + "p": 1 + } + ], + "271010": [ + { + "id": 271010, + "a": "attr", + "t": "nexp", + "n": 233273, + "p": 1 + } + ], + "271011": [ + { + "id": 271011, + "a": "attr", + "t": "nexp", + "n": 233504, + "p": 1 + } + ], + "271012": [ + { + "id": 271012, + "a": "attr", + "t": "nexp", + "n": 233735, + "p": 1 + } + ], + "271013": [ + { + "id": 271013, + "a": "attr", + "t": "nexp", + "n": 233966, + "p": 1 + } + ], + "271014": [ + { + "id": 271014, + "a": "attr", + "t": "nexp", + "n": 234197, + "p": 1 + } + ], + "271015": [ + { + "id": 271015, + "a": "attr", + "t": "nexp", + "n": 234428, + "p": 1 + } + ], + "271016": [ + { + "id": 271016, + "a": "attr", + "t": "nexp", + "n": 234659, + "p": 1 + } + ], + "271017": [ + { + "id": 271017, + "a": "attr", + "t": "nexp", + "n": 234890, + "p": 1 + } + ], + "271018": [ + { + "id": 271018, + "a": "attr", + "t": "nexp", + "n": 235121, + "p": 1 + } + ], + "271019": [ + { + "id": 271019, + "a": "attr", + "t": "nexp", + "n": 235352, + "p": 1 + } + ], + "271020": [ + { + "id": 271020, + "a": "attr", + "t": "nexp", + "n": 235583, + "p": 1 + } + ], + "271021": [ + { + "id": 271021, + "a": "attr", + "t": "nexp", + "n": 235814, + "p": 1 + } + ], + "271022": [ + { + "id": 271022, + "a": "attr", + "t": "nexp", + "n": 236045, + "p": 1 + } + ], + "271023": [ + { + "id": 271023, + "a": "attr", + "t": "nexp", + "n": 236276, + "p": 1 + } + ], + "271024": [ + { + "id": 271024, + "a": "attr", + "t": "nexp", + "n": 236507, + "p": 1 + } + ], + "271025": [ + { + "id": 271025, + "a": "attr", + "t": "nexp", + "n": 236738, + "p": 1 + } + ], + "271026": [ + { + "id": 271026, + "a": "attr", + "t": "nexp", + "n": 236969, + "p": 1 + } + ], + "271027": [ + { + "id": 271027, + "a": "attr", + "t": "nexp", + "n": 237200, + "p": 1 + } + ], + "271028": [ + { + "id": 271028, + "a": "attr", + "t": "nexp", + "n": 237431, + "p": 1 + } + ], + "271029": [ + { + "id": 271029, + "a": "attr", + "t": "nexp", + "n": 237662, + "p": 1 + } + ], + "271030": [ + { + "id": 271030, + "a": "attr", + "t": "nexp", + "n": 237893, + "p": 1 + } + ], + "271031": [ + { + "id": 271031, + "a": "attr", + "t": "nexp", + "n": 238124, + "p": 1 + } + ], + "271032": [ + { + "id": 271032, + "a": "attr", + "t": "nexp", + "n": 238355, + "p": 1 + } + ], + "271033": [ + { + "id": 271033, + "a": "attr", + "t": "nexp", + "n": 238586, + "p": 1 + } + ], + "271034": [ + { + "id": 271034, + "a": "attr", + "t": "nexp", + "n": 238817, + "p": 1 + } + ], + "271035": [ + { + "id": 271035, + "a": "attr", + "t": "nexp", + "n": 239048, + "p": 1 + } + ], + "271036": [ + { + "id": 271036, + "a": "attr", + "t": "nexp", + "n": 239279, + "p": 1 + } + ], + "271037": [ + { + "id": 271037, + "a": "attr", + "t": "nexp", + "n": 239510, + "p": 1 + } + ], + "271038": [ + { + "id": 271038, + "a": "attr", + "t": "nexp", + "n": 239741, + "p": 1 + } + ], + "271039": [ + { + "id": 271039, + "a": "attr", + "t": "nexp", + "n": 239972, + "p": 1 + } + ], + "271040": [ + { + "id": 271040, + "a": "attr", + "t": "nexp", + "n": 240203, + "p": 1 + } + ], + "271041": [ + { + "id": 271041, + "a": "attr", + "t": "nexp", + "n": 240434, + "p": 1 + } + ], + "271042": [ + { + "id": 271042, + "a": "attr", + "t": "nexp", + "n": 240665, + "p": 1 + } + ], + "271043": [ + { + "id": 271043, + "a": "attr", + "t": "nexp", + "n": 240896, + "p": 1 + } + ], + "271044": [ + { + "id": 271044, + "a": "attr", + "t": "nexp", + "n": 241127, + "p": 1 + } + ], + "271045": [ + { + "id": 271045, + "a": "attr", + "t": "nexp", + "n": 241358, + "p": 1 + } + ], + "271046": [ + { + "id": 271046, + "a": "attr", + "t": "nexp", + "n": 241589, + "p": 1 + } + ], + "271047": [ + { + "id": 271047, + "a": "attr", + "t": "nexp", + "n": 241820, + "p": 1 + } + ], + "271048": [ + { + "id": 271048, + "a": "attr", + "t": "nexp", + "n": 242051, + "p": 1 + } + ], + "271049": [ + { + "id": 271049, + "a": "attr", + "t": "nexp", + "n": 242282, + "p": 1 + } + ], + "271050": [ + { + "id": 271050, + "a": "attr", + "t": "nexp", + "n": 242513, + "p": 1 + } + ], + "271051": [ + { + "id": 271051, + "a": "attr", + "t": "nexp", + "n": 242744, + "p": 1 + } + ], + "271052": [ + { + "id": 271052, + "a": "attr", + "t": "nexp", + "n": 242975, + "p": 1 + } + ], + "271053": [ + { + "id": 271053, + "a": "attr", + "t": "nexp", + "n": 243206, + "p": 1 + } + ], + "271054": [ + { + "id": 271054, + "a": "attr", + "t": "nexp", + "n": 243437, + "p": 1 + } + ], + "271055": [ + { + "id": 271055, + "a": "attr", + "t": "nexp", + "n": 243668, + "p": 1 + } + ], + "271056": [ + { + "id": 271056, + "a": "attr", + "t": "nexp", + "n": 243899, + "p": 1 + } + ], + "271057": [ + { + "id": 271057, + "a": "attr", + "t": "nexp", + "n": 244130, + "p": 1 + } + ], + "271058": [ + { + "id": 271058, + "a": "attr", + "t": "nexp", + "n": 244361, + "p": 1 + } + ], + "271059": [ + { + "id": 271059, + "a": "attr", + "t": "nexp", + "n": 244592, + "p": 1 + } + ], + "271060": [ + { + "id": 271060, + "a": "attr", + "t": "nexp", + "n": 244823, + "p": 1 + } + ], + "271061": [ + { + "id": 271061, + "a": "attr", + "t": "nexp", + "n": 245054, + "p": 1 + } + ], + "271062": [ + { + "id": 271062, + "a": "attr", + "t": "nexp", + "n": 245285, + "p": 1 + } + ], + "271063": [ + { + "id": 271063, + "a": "attr", + "t": "nexp", + "n": 245516, + "p": 1 + } + ], + "271064": [ + { + "id": 271064, + "a": "attr", + "t": "nexp", + "n": 245747, + "p": 1 + } + ], + "271065": [ + { + "id": 271065, + "a": "attr", + "t": "nexp", + "n": 245978, + "p": 1 + } + ], + "271066": [ + { + "id": 271066, + "a": "attr", + "t": "nexp", + "n": 246209, + "p": 1 + } + ], + "271067": [ + { + "id": 271067, + "a": "attr", + "t": "nexp", + "n": 246440, + "p": 1 + } + ], + "271068": [ + { + "id": 271068, + "a": "attr", + "t": "nexp", + "n": 246671, + "p": 1 + } + ], + "271069": [ + { + "id": 271069, + "a": "attr", + "t": "nexp", + "n": 246902, + "p": 1 + } + ], + "271070": [ + { + "id": 271070, + "a": "attr", + "t": "nexp", + "n": 247133, + "p": 1 + } + ], + "271071": [ + { + "id": 271071, + "a": "attr", + "t": "nexp", + "n": 247364, + "p": 1 + } + ], + "271072": [ + { + "id": 271072, + "a": "attr", + "t": "nexp", + "n": 247595, + "p": 1 + } + ], + "271073": [ + { + "id": 271073, + "a": "attr", + "t": "nexp", + "n": 247826, + "p": 1 + } + ], + "271074": [ + { + "id": 271074, + "a": "attr", + "t": "nexp", + "n": 248057, + "p": 1 + } + ], + "271075": [ + { + "id": 271075, + "a": "attr", + "t": "nexp", + "n": 248288, + "p": 1 + } + ], + "271076": [ + { + "id": 271076, + "a": "attr", + "t": "nexp", + "n": 248519, + "p": 1 + } + ], + "271077": [ + { + "id": 271077, + "a": "attr", + "t": "nexp", + "n": 248750, + "p": 1 + } + ], + "271078": [ + { + "id": 271078, + "a": "attr", + "t": "nexp", + "n": 248981, + "p": 1 + } + ], + "271079": [ + { + "id": 271079, + "a": "attr", + "t": "nexp", + "n": 249212, + "p": 1 + } + ], + "271080": [ + { + "id": 271080, + "a": "attr", + "t": "nexp", + "n": 249443, + "p": 1 + } + ], "280001": [ { "id": 280001, diff --git a/src/json/npc.json b/src/json/npc.json index 37384b7..a25e96b 100644 --- a/src/json/npc.json +++ b/src/json/npc.json @@ -15093,14 +15093,14 @@ "15252": { "npcId": 15252, "attr": {}, - "npclist": "4014_206_90070#2002_206_90070#4015_206_90072#3008_206_90073#3010_206_90070#4013_206_90074", + "npclist": "4014_203_90070#2002_203_90070#4015_203_90072#3008_203_90073#3010_203_90070#4013_203_90074", "npcLv": [ - 460, - 460, - 460, - 460, - 460, - 460 + 453, + 453, + 453, + 453, + 453, + 453 ], "isboss": 0, "ghname": "npc_ghname_3" @@ -15108,7 +15108,97 @@ "15253": { "npcId": 15253, "attr": {}, - "npclist": "3006_206_90070#3012_206_90070#4005_206_90072#3013_206_90073#4010_206_90070#3001_206_90074", + "npclist": "3006_203_90070#3012_203_90070#4005_203_90072#3013_203_90073#4010_203_90070#3001_203_90074", + "npcLv": [ + 454, + 454, + 454, + 454, + 454, + 454 + ], + "isboss": 0, + "ghname": "npc_ghname_4" + }, + "15254": { + "npcId": 15254, + "attr": {}, + "npclist": "3012_203_90070#3005_203_90070#4009_203_90072#3007_203_90073#3011_203_90070#3013_203_90074", + "npcLv": [ + 455, + 455, + 455, + 455, + 455, + 455 + ], + "isboss": 0, + "ghname": "npc_ghname_5" + }, + "15255": { + "npcId": 15255, + "attr": {}, + "npclist": "4015_203_90070#4010_203_90070#3014_203_90072#4007_203_90073#4012_203_90070#3009_203_90074", + "npcLv": [ + 456, + 456, + 456, + 456, + 456, + 456 + ], + "isboss": 0, + "ghname": "npc_ghname_6" + }, + "15256": { + "npcId": 15256, + "attr": {}, + "npclist": "3012_203_90070#4005_203_90070#3013_203_90072#3010_203_90073#4006_203_90070#4011_203_90074", + "npcLv": [ + 457, + 457, + 457, + 457, + 457, + 457 + ], + "isboss": 0, + "ghname": "npc_ghname_1" + }, + "15257": { + "npcId": 15257, + "attr": {}, + "npclist": "4008_203_90070#4004_203_90070#4006_203_90072#4014_203_90073#3002_203_90070#3008_203_90074", + "npcLv": [ + 458, + 458, + 458, + 458, + 458, + 458 + ], + "isboss": 0, + "ghname": "npc_ghname_2" + }, + "15258": { + "npcId": 15258, + "attr": {}, + "npclist": "4012_204_90070#3011_204_90070#3007_204_90072#4005_204_90073#3006_204_90070#3007_204_90074", + "npcLv": [ + 459, + 459, + 459, + 459, + 459, + 459 + ], + "isboss": 0, + "ghname": "npc_ghname_3" + }, + "15259": { + "npcId": 15259, + "attr": {}, + "npclist": "2002_204_90070#4009_204_90070#3002_204_90072#3005_204_90073#3001_204_90070#4012_204_90074", "npcLv": [ 460, 460, @@ -15120,107 +15210,17 @@ "isboss": 0, "ghname": "npc_ghname_4" }, - "15254": { - "npcId": 15254, - "attr": {}, - "npclist": "3012_209_90070#3005_209_90070#4009_209_90072#3007_209_90073#3011_209_90070#3013_209_90074", - "npcLv": [ - 467, - 467, - 467, - 467, - 467, - 467 - ], - "isboss": 0, - "ghname": "npc_ghname_5" - }, - "15255": { - "npcId": 15255, - "attr": {}, - "npclist": "4015_209_90070#4010_209_90070#3014_209_90072#4007_209_90073#4012_209_90070#3009_209_90074", - "npcLv": [ - 467, - 467, - 467, - 467, - 467, - 467 - ], - "isboss": 0, - "ghname": "npc_ghname_6" - }, - "15256": { - "npcId": 15256, - "attr": {}, - "npclist": "3012_212_90070#4005_212_90070#3013_212_90072#3010_212_90073#4006_212_90070#4011_212_90074", - "npcLv": [ - 475, - 475, - 475, - 475, - 475, - 475 - ], - "isboss": 0, - "ghname": "npc_ghname_1" - }, - "15257": { - "npcId": 15257, - "attr": {}, - "npclist": "4008_212_90070#4004_212_90070#4006_212_90072#4014_212_90073#3002_212_90070#3008_212_90074", - "npcLv": [ - 475, - 475, - 475, - 475, - 475, - 475 - ], - "isboss": 0, - "ghname": "npc_ghname_2" - }, - "15258": { - "npcId": 15258, - "attr": {}, - "npclist": "4012_215_90070#3011_215_90070#3007_215_90072#4005_215_90073#3006_215_90070#3007_215_90074", - "npcLv": [ - 483, - 483, - 483, - 483, - 483, - 483 - ], - "isboss": 0, - "ghname": "npc_ghname_3" - }, - "15259": { - "npcId": 15259, - "attr": {}, - "npclist": "2002_215_90070#4009_215_90070#3002_215_90072#3005_215_90073#3001_215_90070#4012_215_90074", - "npcLv": [ - 483, - 483, - 483, - 483, - 483, - 483 - ], - "isboss": 0, - "ghname": "npc_ghname_4" - }, "15260": { "npcId": 15260, "attr": {}, - "npclist": "3015_218_90070#3005_218_90070#4011_218_90072#4008_218_90073#4007_218_90070#4010_218_90074", + "npclist": "3015_204_90070#3005_204_90070#4011_204_90072#4008_204_90073#4007_204_90070#4010_204_90074", "npcLv": [ - 490, - 490, - 490, - 490, - 490, - 490 + 461, + 461, + 461, + 461, + 461, + 461 ], "isboss": 0, "ghname": "npc_ghname_5" @@ -15228,7 +15228,427 @@ "15261": { "npcId": 15261, "attr": {}, - "npclist": "3008_218_90070#4014_218_90070#3009_218_90072#3007_218_90073#4015_218_90070#3015_218_90074", + "npclist": "3008_204_90070#4014_204_90070#3009_204_90072#3007_204_90073#4015_204_90070#3015_204_90074", + "npcLv": [ + 462, + 462, + 462, + 462, + 462, + 462 + ], + "isboss": 0, + "ghname": "npc_ghname_6" + }, + "15262": { + "npcId": 15262, + "attr": {}, + "npclist": "3004_205_90070#4013_205_90070#4005_205_90072#3014_205_90073#4003_205_90070#3005_205_90074", + "npcLv": [ + 463, + 463, + 463, + 463, + 463, + 463 + ], + "isboss": 0, + "ghname": "npc_ghname_1" + }, + "15263": { + "npcId": 15263, + "attr": {}, + "npclist": "4011_205_90070#4007_205_90070#4002_205_90072#4009_205_90073#3011_205_90070#4008_205_90074", + "npcLv": [ + 464, + 464, + 464, + 464, + 464, + 464 + ], + "isboss": 0, + "ghname": "npc_ghname_2" + }, + "15264": { + "npcId": 15264, + "attr": {}, + "npclist": "4010_205_90070#3012_205_90070#3001_205_90072#4004_205_90073#3005_205_90070#4014_205_90074", + "npcLv": [ + 465, + 465, + 465, + 465, + 465, + 465 + ], + "isboss": 0, + "ghname": "npc_ghname_3" + }, + "15265": { + "npcId": 15265, + "attr": {}, + "npclist": "3010_205_90070#4012_205_90070#3013_205_90072#3005_205_90073#3002_205_90070#4007_205_90074", + "npcLv": [ + 466, + 466, + 466, + 466, + 466, + 466 + ], + "isboss": 0, + "ghname": "npc_ghname_4" + }, + "15266": { + "npcId": 15266, + "attr": {}, + "npclist": "4015_206_90070#4014_206_90070#4013_206_90072#3008_206_90073#3002_206_90070#4009_206_90074", + "npcLv": [ + 467, + 467, + 467, + 467, + 467, + 467 + ], + "isboss": 0, + "ghname": "npc_ghname_5" + }, + "15267": { + "npcId": 15267, + "attr": {}, + "npclist": "4002_206_90070#4006_206_90070#4008_206_90072#5001_206_90073#4007_206_90070#4004_206_90074", + "npcLv": [ + 468, + 468, + 468, + 468, + 468, + 468 + ], + "isboss": 0, + "ghname": "npc_ghname_6" + }, + "15268": { + "npcId": 15268, + "attr": {}, + "npclist": "3002_206_90070#3007_206_90070#3013_206_90072#4012_206_90073#3011_206_90070#3006_206_90074", + "npcLv": [ + 469, + 469, + 469, + 469, + 469, + 469 + ], + "isboss": 0, + "ghname": "npc_ghname_1" + }, + "15269": { + "npcId": 15269, + "attr": {}, + "npclist": "4014_206_90070#4003_206_90070#4011_206_90072#3004_206_90073#5002_206_90070#4012_206_90074", + "npcLv": [ + 470, + 470, + 470, + 470, + 470, + 470 + ], + "isboss": 0, + "ghname": "npc_ghname_2" + }, + "15270": { + "npcId": 15270, + "attr": {}, + "npclist": "3010_207_90070#2002_207_90070#4010_207_90072#4009_207_90073#5003_207_90070#4005_207_90074", + "npcLv": [ + 471, + 471, + 471, + 471, + 471, + 471 + ], + "isboss": 0, + "ghname": "npc_ghname_3" + }, + "15271": { + "npcId": 15271, + "attr": {}, + "npclist": "5001_207_90070#3005_207_90070#2002_207_90072#4013_207_90073#3008_207_90070#5002_207_90074", + "npcLv": [ + 472, + 472, + 472, + 472, + 472, + 472 + ], + "isboss": 0, + "ghname": "npc_ghname_4" + }, + "15272": { + "npcId": 15272, + "attr": {}, + "npclist": "4008_207_90070#4009_207_90070#4012_207_90072#5003_207_90073#5004_207_90070#4002_207_90074", + "npcLv": [ + 473, + 473, + 473, + 473, + 473, + 473 + ], + "isboss": 0, + "ghname": "npc_ghname_5" + }, + "15273": { + "npcId": 15273, + "attr": {}, + "npclist": "3003_207_90070#4004_207_90070#3002_207_90072#4014_207_90073#4011_207_90070#2001_207_90074", + "npcLv": [ + 474, + 474, + 474, + 474, + 474, + 474 + ], + "isboss": 0, + "ghname": "npc_ghname_6" + }, + "15274": { + "npcId": 15274, + "attr": {}, + "npclist": "3015_208_90070#4007_208_90070#4007_208_90072#4003_208_90073#4010_208_90070#4013_208_90074", + "npcLv": [ + 475, + 475, + 475, + 475, + 475, + 475 + ], + "isboss": 0, + "ghname": "npc_ghname_1" + }, + "15275": { + "npcId": 15275, + "attr": {}, + "npclist": "4009_208_90070#5002_208_90070#4015_208_90072#4012_208_90073#4005_208_90070#3008_208_90074", + "npcLv": [ + 476, + 476, + 476, + 476, + 476, + 476 + ], + "isboss": 0, + "ghname": "npc_ghname_2" + }, + "15276": { + "npcId": 15276, + "attr": {}, + "npclist": "3003_208_90070#4008_208_90070#3008_208_90072#3006_208_90073#5001_208_90070#4011_208_90074", + "npcLv": [ + 477, + 477, + 477, + 477, + 477, + 477 + ], + "isboss": 0, + "ghname": "npc_ghname_3" + }, + "15277": { + "npcId": 15277, + "attr": {}, + "npclist": "4013_208_90070#5003_208_90070#4009_208_90072#4004_208_90073#3010_208_90070#4014_208_90074", + "npcLv": [ + 478, + 478, + 478, + 478, + 478, + 478 + ], + "isboss": 0, + "ghname": "npc_ghname_4" + }, + "15278": { + "npcId": 15278, + "attr": {}, + "npclist": "4012_209_90070#4005_209_90070#4008_209_90072#3008_209_90073#5003_209_90070#3006_209_90074", + "npcLv": [ + 479, + 479, + 479, + 479, + 479, + 479 + ], + "isboss": 0, + "ghname": "npc_ghname_5" + }, + "15279": { + "npcId": 15279, + "attr": {}, + "npclist": "5002_209_90070#3011_209_90070#4011_209_90072#4006_209_90073#4003_209_90070#5004_209_90074", + "npcLv": [ + 480, + 480, + 480, + 480, + 480, + 480 + ], + "isboss": 0, + "ghname": "npc_ghname_6" + }, + "15280": { + "npcId": 15280, + "attr": {}, + "npclist": "4002_209_90070#4007_209_90070#3015_209_90072#4012_209_90073#4004_209_90070#5001_209_90074", + "npcLv": [ + 481, + 481, + 481, + 481, + 481, + 481 + ], + "isboss": 0, + "ghname": "npc_ghname_1" + }, + "15281": { + "npcId": 15281, + "attr": {}, + "npclist": "4014_209_90070#5002_209_90070#5003_209_90072#3007_209_90073#4001_209_90070#4010_209_90074", + "npcLv": [ + 482, + 482, + 482, + 482, + 482, + 482 + ], + "isboss": 0, + "ghname": "npc_ghname_2" + }, + "15282": { + "npcId": 15282, + "attr": {}, + "npclist": "4011_210_90070#3004_210_90070#5003_210_90072#4013_210_90073#4009_210_90070#5004_210_90074", + "npcLv": [ + 483, + 483, + 483, + 483, + 483, + 483 + ], + "isboss": 0, + "ghname": "npc_ghname_3" + }, + "15283": { + "npcId": 15283, + "attr": {}, + "npclist": "3008_210_90070#4014_210_90070#3012_210_90072#4008_210_90073#5005_210_90070#3015_210_90074", + "npcLv": [ + 484, + 484, + 484, + 484, + 484, + 484 + ], + "isboss": 0, + "ghname": "npc_ghname_4" + }, + "15284": { + "npcId": 15284, + "attr": {}, + "npclist": "5001_210_90070#4010_210_90070#5004_210_90072#5002_210_90073#3012_210_90070#4012_210_90074", + "npcLv": [ + 485, + 485, + 485, + 485, + 485, + 485 + ], + "isboss": 0, + "ghname": "npc_ghname_5" + }, + "15285": { + "npcId": 15285, + "attr": {}, + "npclist": "5003_210_90070#4006_210_90070#4011_210_90072#3013_210_90073#4015_210_90070#4003_210_90074", + "npcLv": [ + 486, + 486, + 486, + 486, + 486, + 486 + ], + "isboss": 0, + "ghname": "npc_ghname_6" + }, + "15286": { + "npcId": 15286, + "attr": {}, + "npclist": "4014_211_90070#3012_211_90070#4007_211_90072#5003_211_90073#4007_211_90070#4004_211_90074", + "npcLv": [ + 487, + 487, + 487, + 487, + 487, + 487 + ], + "isboss": 0, + "ghname": "npc_ghname_1" + }, + "15287": { + "npcId": 15287, + "attr": {}, + "npclist": "3013_211_90070#5001_211_90070#4005_211_90072#4011_211_90073#3002_211_90070#4009_211_90074", + "npcLv": [ + 488, + 488, + 488, + 488, + 488, + 488 + ], + "isboss": 0, + "ghname": "npc_ghname_2" + }, + "15288": { + "npcId": 15288, + "attr": {}, + "npclist": "5002_211_90070#4001_211_90070#3003_211_90072#5003_211_90073#4008_211_90070#3008_211_90074", + "npcLv": [ + 489, + 489, + 489, + 489, + 489, + 489 + ], + "isboss": 0, + "ghname": "npc_ghname_3" + }, + "15289": { + "npcId": 15289, + "attr": {}, + "npclist": "4010_211_90070#4012_211_90070#4004_211_90072#4009_211_90073#4014_211_90070#4013_211_90074", "npcLv": [ 490, 490, @@ -15238,439 +15658,19 @@ 490 ], "isboss": 0, - "ghname": "npc_ghname_6" - }, - "15262": { - "npcId": 15262, - "attr": {}, - "npclist": "3004_221_90070#4013_221_90070#4005_221_90072#3014_221_90073#4003_221_90070#3005_221_90074", - "npcLv": [ - 498, - 498, - 498, - 498, - 498, - 498 - ], - "isboss": 0, - "ghname": "npc_ghname_1" - }, - "15263": { - "npcId": 15263, - "attr": {}, - "npclist": "4011_221_90070#4007_221_90070#4002_221_90072#4009_221_90073#3011_221_90070#4008_221_90074", - "npcLv": [ - 498, - 498, - 498, - 498, - 498, - 498 - ], - "isboss": 0, - "ghname": "npc_ghname_2" - }, - "15264": { - "npcId": 15264, - "attr": {}, - "npclist": "4010_224_90070#3012_224_90070#3001_224_90072#4004_224_90073#3005_224_90070#4014_224_90074", - "npcLv": [ - 506, - 506, - 506, - 506, - 506, - 506 - ], - "isboss": 0, - "ghname": "npc_ghname_3" - }, - "15265": { - "npcId": 15265, - "attr": {}, - "npclist": "3010_224_90070#4012_224_90070#3013_224_90072#3005_224_90073#3002_224_90070#4007_224_90074", - "npcLv": [ - 506, - 506, - 506, - 506, - 506, - 506 - ], - "isboss": 0, - "ghname": "npc_ghname_4" - }, - "15266": { - "npcId": 15266, - "attr": {}, - "npclist": "4015_227_90070#4014_227_90070#4013_227_90072#3008_227_90073#3002_227_90070#4009_227_90074", - "npcLv": [ - 514, - 514, - 514, - 514, - 514, - 514 - ], - "isboss": 0, - "ghname": "npc_ghname_5" - }, - "15267": { - "npcId": 15267, - "attr": {}, - "npclist": "4002_227_90070#4006_227_90070#4008_227_90072#5001_227_90073#4007_227_90070#4004_227_90074", - "npcLv": [ - 514, - 514, - 514, - 514, - 514, - 514 - ], - "isboss": 0, - "ghname": "npc_ghname_6" - }, - "15268": { - "npcId": 15268, - "attr": {}, - "npclist": "3002_230_90070#3007_230_90070#3013_230_90072#4012_230_90073#3011_230_90070#3006_230_90074", - "npcLv": [ - 521, - 521, - 521, - 521, - 521, - 521 - ], - "isboss": 0, - "ghname": "npc_ghname_1" - }, - "15269": { - "npcId": 15269, - "attr": {}, - "npclist": "4014_230_90070#4003_230_90070#4011_230_90072#3004_230_90073#5002_230_90070#4012_230_90074", - "npcLv": [ - 521, - 521, - 521, - 521, - 521, - 521 - ], - "isboss": 0, - "ghname": "npc_ghname_2" - }, - "15270": { - "npcId": 15270, - "attr": {}, - "npclist": "3010_233_90070#2002_233_90070#4010_233_90072#4009_233_90073#5003_233_90070#4005_233_90074", - "npcLv": [ - 529, - 529, - 529, - 529, - 529, - 529 - ], - "isboss": 0, - "ghname": "npc_ghname_3" - }, - "15271": { - "npcId": 15271, - "attr": {}, - "npclist": "5001_233_90070#3005_233_90070#2002_233_90072#4013_233_90073#3008_233_90070#5002_233_90074", - "npcLv": [ - 529, - 529, - 529, - 529, - 529, - 529 - ], - "isboss": 0, - "ghname": "npc_ghname_4" - }, - "15272": { - "npcId": 15272, - "attr": {}, - "npclist": "4008_236_90070#4009_236_90070#4012_236_90072#5003_236_90073#5004_236_90070#4002_236_90074", - "npcLv": [ - 537, - 537, - 537, - 537, - 537, - 537 - ], - "isboss": 0, - "ghname": "npc_ghname_5" - }, - "15273": { - "npcId": 15273, - "attr": {}, - "npclist": "3003_236_90070#4004_236_90070#3002_236_90072#4014_236_90073#4011_236_90070#2001_236_90074", - "npcLv": [ - 537, - 537, - 537, - 537, - 537, - 537 - ], - "isboss": 0, - "ghname": "npc_ghname_6" - }, - "15274": { - "npcId": 15274, - "attr": {}, - "npclist": "3015_239_90070#4007_239_90070#4007_239_90072#4003_239_90073#4010_239_90070#4013_239_90074", - "npcLv": [ - 545, - 545, - 545, - 545, - 545, - 545 - ], - "isboss": 0, - "ghname": "npc_ghname_1" - }, - "15275": { - "npcId": 15275, - "attr": {}, - "npclist": "4009_239_90070#5002_239_90070#4015_239_90072#4012_239_90073#4005_239_90070#3008_239_90074", - "npcLv": [ - 545, - 545, - 545, - 545, - 545, - 545 - ], - "isboss": 0, - "ghname": "npc_ghname_2" - }, - "15276": { - "npcId": 15276, - "attr": {}, - "npclist": "3003_242_90070#4008_242_90070#3008_242_90072#3006_242_90073#5001_242_90070#4011_242_90074", - "npcLv": [ - 553, - 553, - 553, - 553, - 553, - 553 - ], - "isboss": 0, - "ghname": "npc_ghname_3" - }, - "15277": { - "npcId": 15277, - "attr": {}, - "npclist": "4013_242_90070#5003_242_90070#4009_242_90072#4004_242_90073#3010_242_90070#4014_242_90074", - "npcLv": [ - 553, - 553, - 553, - 553, - 553, - 553 - ], - "isboss": 0, - "ghname": "npc_ghname_4" - }, - "15278": { - "npcId": 15278, - "attr": {}, - "npclist": "4012_245_90070#4005_245_90070#4008_245_90072#3008_245_90073#5003_245_90070#3006_245_90074", - "npcLv": [ - 561, - 561, - 561, - 561, - 561, - 561 - ], - "isboss": 0, - "ghname": "npc_ghname_5" - }, - "15279": { - "npcId": 15279, - "attr": {}, - "npclist": "5002_245_90070#3011_245_90070#4011_245_90072#4006_245_90073#4003_245_90070#5004_245_90074", - "npcLv": [ - 561, - 561, - 561, - 561, - 561, - 561 - ], - "isboss": 0, - "ghname": "npc_ghname_6" - }, - "15280": { - "npcId": 15280, - "attr": {}, - "npclist": "4002_248_90070#4007_248_90070#3015_248_90072#4012_248_90073#4004_248_90070#5001_248_90074", - "npcLv": [ - 569, - 569, - 569, - 569, - 569, - 569 - ], - "isboss": 0, - "ghname": "npc_ghname_1" - }, - "15281": { - "npcId": 15281, - "attr": {}, - "npclist": "4014_248_90070#5002_248_90070#5003_248_90072#3007_248_90073#4001_248_90070#4010_248_90074", - "npcLv": [ - 569, - 569, - 569, - 569, - 569, - 569 - ], - "isboss": 0, - "ghname": "npc_ghname_2" - }, - "15282": { - "npcId": 15282, - "attr": {}, - "npclist": "4011_251_90070#3004_251_90070#5003_251_90072#4013_251_90073#4009_251_90070#5004_251_90074", - "npcLv": [ - 576, - 576, - 576, - 576, - 576, - 576 - ], - "isboss": 0, - "ghname": "npc_ghname_3" - }, - "15283": { - "npcId": 15283, - "attr": {}, - "npclist": "3008_251_90070#4014_251_90070#3012_251_90072#4008_251_90073#5005_251_90070#3015_251_90074", - "npcLv": [ - 576, - 576, - 576, - 576, - 576, - 576 - ], - "isboss": 0, - "ghname": "npc_ghname_4" - }, - "15284": { - "npcId": 15284, - "attr": {}, - "npclist": "5001_254_90070#4010_254_90070#5004_254_90072#5002_254_90073#3012_254_90070#4012_254_90074", - "npcLv": [ - 584, - 584, - 584, - 584, - 584, - 584 - ], - "isboss": 0, - "ghname": "npc_ghname_5" - }, - "15285": { - "npcId": 15285, - "attr": {}, - "npclist": "5003_254_90070#4006_254_90070#4011_254_90072#3013_254_90073#4015_254_90070#4003_254_90074", - "npcLv": [ - 584, - 584, - 584, - 584, - 584, - 584 - ], - "isboss": 0, - "ghname": "npc_ghname_6" - }, - "15286": { - "npcId": 15286, - "attr": {}, - "npclist": "4014_257_90070#3012_257_90070#4007_257_90072#5003_257_90073#4007_257_90070#4004_257_90074", - "npcLv": [ - 592, - 592, - 592, - 592, - 592, - 592 - ], - "isboss": 0, - "ghname": "npc_ghname_1" - }, - "15287": { - "npcId": 15287, - "attr": {}, - "npclist": "3013_257_90070#5001_257_90070#4005_257_90072#4011_257_90073#3002_257_90070#4009_257_90074", - "npcLv": [ - 592, - 592, - 592, - 592, - 592, - 592 - ], - "isboss": 0, - "ghname": "npc_ghname_2" - }, - "15288": { - "npcId": 15288, - "attr": {}, - "npclist": "5002_260_90070#4001_260_90070#3003_260_90072#5003_260_90073#4008_260_90070#3008_260_90074", - "npcLv": [ - 600, - 600, - 600, - 600, - 600, - 600 - ], - "isboss": 0, - "ghname": "npc_ghname_3" - }, - "15289": { - "npcId": 15289, - "attr": {}, - "npclist": "4010_260_90070#4012_260_90070#4004_260_90072#4009_260_90073#4014_260_90070#4013_260_90074", - "npcLv": [ - 600, - 600, - 600, - 600, - 600, - 600 - ], - "isboss": 0, "ghname": "npc_ghname_4" }, "15290": { "npcId": 15290, "attr": {}, - "npclist": "3002_263_90070#4015_263_90070#5002_263_90072#3005_263_90073#4005_263_90070#4011_263_90074", + "npclist": "3002_212_90070#4015_212_90070#5002_212_90072#3005_212_90073#4005_212_90070#4011_212_90074", "npcLv": [ - 608, - 608, - 608, - 608, - 608, - 608 + 491, + 491, + 491, + 491, + 491, + 491 ], "isboss": 0, "ghname": "npc_ghname_5" @@ -15678,7 +15678,1747 @@ "15291": { "npcId": 15291, "attr": {}, - "npclist": "3007_263_90070#4009_263_90070#4010_263_90072#5001_263_90073#5004_263_90070#5005_263_90074", + "npclist": "3007_212_90070#4009_212_90070#4010_212_90072#5001_212_90073#5004_212_90070#5005_212_90074", + "npcLv": [ + 492, + 492, + 492, + 492, + 492, + 492 + ], + "isboss": 0, + "ghname": "npc_ghname_6" + }, + "15292": { + "npcId": 15292, + "attr": {}, + "npclist": "4012_212_90070#3006_212_90070#5003_212_90072#5005_212_90073#3014_212_90070#4006_212_90074", + "npcLv": [ + 493, + 493, + 493, + 493, + 493, + 493 + ], + "isboss": 0, + "ghname": "npc_ghname_1" + }, + "15293": { + "npcId": 15293, + "attr": {}, + "npclist": "4015_212_90070#4013_212_90070#4005_212_90072#4011_212_90073#5003_212_90070#4014_212_90074", + "npcLv": [ + 494, + 494, + 494, + 494, + 494, + 494 + ], + "isboss": 0, + "ghname": "npc_ghname_2" + }, + "15294": { + "npcId": 15294, + "attr": {}, + "npclist": "5005_213_90070#4004_213_90070#3009_213_90072#4002_213_90073#5001_213_90070#4008_213_90074", + "npcLv": [ + 495, + 495, + 495, + 495, + 495, + 495 + ], + "isboss": 0, + "ghname": "npc_ghname_3" + }, + "15295": { + "npcId": 15295, + "attr": {}, + "npclist": "3012_213_90070#4009_213_90070#4012_213_90072#5002_213_90073#4006_213_90070#4001_213_90074", + "npcLv": [ + 496, + 496, + 496, + 496, + 496, + 496 + ], + "isboss": 0, + "ghname": "npc_ghname_4" + }, + "15296": { + "npcId": 15296, + "attr": {}, + "npclist": "4014_213_90070#3015_213_90070#4011_213_90072#5003_213_90073#4015_213_90070#4007_213_90074", + "npcLv": [ + 497, + 497, + 497, + 497, + 497, + 497 + ], + "isboss": 0, + "ghname": "npc_ghname_5" + }, + "15297": { + "npcId": 15297, + "attr": {}, + "npclist": "4013_213_90070#5002_213_90070#4003_213_90072#4004_213_90073#4012_213_90070#4005_213_90074", + "npcLv": [ + 498, + 498, + 498, + 498, + 498, + 498 + ], + "isboss": 0, + "ghname": "npc_ghname_6" + }, + "15298": { + "npcId": 15298, + "attr": {}, + "npclist": "5001_214_90070#4014_214_90070#5004_214_90072#4009_214_90073#5003_214_90070#5005_214_90074", + "npcLv": [ + 499, + 499, + 499, + 499, + 499, + 499 + ], + "isboss": 0, + "ghname": "npc_ghname_1" + }, + "15299": { + "npcId": 15299, + "attr": {}, + "npclist": "3006_214_90070#3007_214_90070#4008_214_90072#4013_214_90073#3003_214_90070#4002_214_90074", + "npcLv": [ + 500, + 500, + 500, + 500, + 500, + 500 + ], + "isboss": 0, + "ghname": "npc_ghname_2" + }, + "15300": { + "npcId": 15300, + "attr": {}, + "npclist": "4011_214_90072#4012_214_90070#4006_214_90071#3012_214_90070#5003_214_90074#3006_214_90073", + "npcLv": [ + 501, + 501, + 501, + 501, + 501, + 501 + ], + "isboss": 0, + "ghname": "npc_ghname_3" + }, + "15301": { + "npcId": 15301, + "attr": {}, + "npclist": "4003_214_90072#5004_214_90070#3006_214_90071#4007_214_90070#4014_214_90074#5005_214_90073", + "npcLv": [ + 502, + 502, + 502, + 502, + 502, + 502 + ], + "isboss": 0, + "ghname": "npc_ghname_4" + }, + "15302": { + "npcId": 15302, + "attr": {}, + "npclist": "5002_215_90072#3014_215_90070#5005_215_90071#4010_215_90072#4009_215_90074#4004_215_90073", + "npcLv": [ + 503, + 503, + 503, + 503, + 503, + 503 + ], + "isboss": 0, + "ghname": "npc_ghname_5" + }, + "15303": { + "npcId": 15303, + "attr": {}, + "npclist": "4008_215_90072#5005_215_90070#4005_215_90071#4015_215_90072#4012_215_90074#4013_215_90073", + "npcLv": [ + 504, + 504, + 504, + 504, + 504, + 504 + ], + "isboss": 0, + "ghname": "npc_ghname_6" + }, + "15304": { + "npcId": 15304, + "attr": {}, + "npclist": "5005_215_90072#3010_215_90070#4011_215_90071#4003_215_90072#5001_215_90074#5003_215_90073", + "npcLv": [ + 505, + 505, + 505, + 505, + 505, + 505 + ], + "isboss": 0, + "ghname": "npc_ghname_1" + }, + "15305": { + "npcId": 15305, + "attr": {}, + "npclist": "4010_215_90072#5002_215_90070#3013_215_90071#3002_215_90072#4014_215_90074#3012_215_90073", + "npcLv": [ + 506, + 506, + 506, + 506, + 506, + 506 + ], + "isboss": 0, + "ghname": "npc_ghname_2" + }, + "15306": { + "npcId": 15306, + "attr": {}, + "npclist": "3014_216_90072#4005_216_90070#4015_216_90071#4012_216_90072#3006_216_90074#4009_216_90073", + "npcLv": [ + 507, + 507, + 507, + 507, + 507, + 507 + ], + "isboss": 0, + "ghname": "npc_ghname_3" + }, + "15307": { + "npcId": 15307, + "attr": {}, + "npclist": "4014_216_90072#4013_216_90070#4004_216_90071#5005_216_90072#5004_216_90074#3002_216_90073", + "npcLv": [ + 508, + 508, + 508, + 508, + 508, + 508 + ], + "isboss": 0, + "ghname": "npc_ghname_4" + }, + "15308": { + "npcId": 15308, + "attr": {}, + "npclist": "4011_216_90072#3005_216_90070#5003_216_90071#4008_216_90072#5001_216_90074#4003_216_90073", + "npcLv": [ + 509, + 509, + 509, + 509, + 509, + 509 + ], + "isboss": 0, + "ghname": "npc_ghname_5" + }, + "15309": { + "npcId": 15309, + "attr": {}, + "npclist": "4012_216_90072#4007_216_90070#4002_216_90071#3013_216_90072#4015_216_90074#3004_216_90073", + "npcLv": [ + 510, + 510, + 510, + 510, + 510, + 510 + ], + "isboss": 0, + "ghname": "npc_ghname_6" + }, + "15310": { + "npcId": 15310, + "attr": {}, + "npclist": "4004_217_90072#4006_217_90070#4009_217_90071#5002_217_90072#4010_217_90074#5004_217_90073", + "npcLv": [ + 511, + 511, + 511, + 511, + 511, + 511 + ], + "isboss": 0, + "ghname": "npc_ghname_1" + }, + "15311": { + "npcId": 15311, + "attr": {}, + "npclist": "4013_217_90072#4001_217_90070#3007_217_90071#4011_217_90072#3013_217_90074#4008_217_90073", + "npcLv": [ + 512, + 512, + 512, + 512, + 512, + 512 + ], + "isboss": 0, + "ghname": "npc_ghname_2" + }, + "15312": { + "npcId": 15312, + "attr": {}, + "npclist": "3004_217_90072#4014_217_90070#5004_217_90071#5003_217_90072#5005_217_90074#5001_217_90073", + "npcLv": [ + 513, + 513, + 513, + 513, + 513, + 513 + ], + "isboss": 0, + "ghname": "npc_ghname_3" + }, + "15313": { + "npcId": 15313, + "attr": {}, + "npclist": "5002_217_90072#2002_217_90070#4012_217_90071#3009_217_90072#4005_217_90074#4015_217_90073", + "npcLv": [ + 514, + 514, + 514, + 514, + 514, + 514 + ], + "isboss": 0, + "ghname": "npc_ghname_4" + }, + "15314": { + "npcId": 15314, + "attr": {}, + "npclist": "4009_218_90072#4013_218_90070#4003_218_90071#4008_218_90072#4014_218_90074#4010_218_90073", + "npcLv": [ + 515, + 515, + 515, + 515, + 515, + 515 + ], + "isboss": 0, + "ghname": "npc_ghname_5" + }, + "15315": { + "npcId": 15315, + "attr": {}, + "npclist": "3012_218_90072#3008_218_90070#3002_218_90071#5004_218_90072#4012_218_90074#3013_218_90073", + "npcLv": [ + 516, + 516, + 516, + 516, + 516, + 516 + ], + "isboss": 0, + "ghname": "npc_ghname_6" + }, + "15316": { + "npcId": 15316, + "attr": {}, + "npclist": "4007_218_90072#4014_218_90070#4004_218_90071#4013_218_90072#3005_218_90074#5003_218_90073", + "npcLv": [ + 517, + 517, + 517, + 517, + 517, + 517 + ], + "isboss": 0, + "ghname": "npc_ghname_1" + }, + "15317": { + "npcId": 15317, + "attr": {}, + "npclist": "5001_218_90072#4015_218_90070#3013_218_90071#5002_218_90072#5005_218_90074#4005_218_90073", + "npcLv": [ + 518, + 518, + 518, + 518, + 518, + 518 + ], + "isboss": 0, + "ghname": "npc_ghname_2" + }, + "15318": { + "npcId": 15318, + "attr": {}, + "npclist": "4012_219_90072#4003_219_90070#4009_219_90071#4010_219_90072#4006_219_90074#4011_219_90073", + "npcLv": [ + 519, + 519, + 519, + 519, + 519, + 519 + ], + "isboss": 0, + "ghname": "npc_ghname_3" + }, + "15319": { + "npcId": 15319, + "attr": {}, + "npclist": "4008_219_90072#4002_219_90070#5003_219_90071#3015_219_90072#4004_219_90074#5004_219_90073", + "npcLv": [ + 520, + 520, + 520, + 520, + 520, + 520 + ], + "isboss": 0, + "ghname": "npc_ghname_4" + }, + "15320": { + "npcId": 15320, + "attr": {}, + "npclist": "3013_219_90072#3012_219_90070#4011_219_90071#5005_219_90072#5002_219_90074#4013_219_90073", + "npcLv": [ + 521, + 521, + 521, + 521, + 521, + 521 + ], + "isboss": 0, + "ghname": "npc_ghname_5" + }, + "15321": { + "npcId": 15321, + "attr": {}, + "npclist": "4014_219_90072#5004_219_90070#4012_219_90071#4005_219_90072#4009_219_90074#3009_219_90073", + "npcLv": [ + 522, + 522, + 522, + 522, + 522, + 522 + ], + "isboss": 0, + "ghname": "npc_ghname_6" + }, + "15322": { + "npcId": 15322, + "attr": {}, + "npclist": "3015_220_90072#4010_220_90070#4007_220_90071#4015_220_90072#3014_220_90074#3001_220_90073", + "npcLv": [ + 523, + 523, + 523, + 523, + 523, + 523 + ], + "isboss": 0, + "ghname": "npc_ghname_1" + }, + "15323": { + "npcId": 15323, + "attr": {}, + "npclist": "4003_220_90072#4008_220_90070#5002_220_90071#3007_220_90072#3010_220_90074#4004_220_90073", + "npcLv": [ + 524, + 524, + 524, + 524, + 524, + 524 + ], + "isboss": 0, + "ghname": "npc_ghname_2" + }, + "15324": { + "npcId": 15324, + "attr": {}, + "npclist": "5003_220_90072#4005_220_90070#5005_220_90071#3005_220_90072#4013_220_90074#4006_220_90073", + "npcLv": [ + 525, + 525, + 525, + 525, + 525, + 525 + ], + "isboss": 0, + "ghname": "npc_ghname_3" + }, + "15325": { + "npcId": 15325, + "attr": {}, + "npclist": "5002_220_90072#4014_220_90070#3013_220_90071#4006_220_90072#4012_220_90074#4015_220_90073", + "npcLv": [ + 526, + 526, + 526, + 526, + 526, + 526 + ], + "isboss": 0, + "ghname": "npc_ghname_4" + }, + "15326": { + "npcId": 15326, + "attr": {}, + "npclist": "4010_221_90072#3009_221_90070#4003_221_90071#5004_221_90072#3002_221_90074#3012_221_90073", + "npcLv": [ + 527, + 527, + 527, + 527, + 527, + 527 + ], + "isboss": 0, + "ghname": "npc_ghname_5" + }, + "15327": { + "npcId": 15327, + "attr": {}, + "npclist": "3001_221_90072#4011_221_90070#5001_221_90071#4005_221_90072#3011_221_90074#4009_221_90073", + "npcLv": [ + 528, + 528, + 528, + 528, + 528, + 528 + ], + "isboss": 0, + "ghname": "npc_ghname_6" + }, + "15328": { + "npcId": 15328, + "attr": {}, + "npclist": "3006_221_90072#4013_221_90070#4012_221_90071#4014_221_90072#5005_221_90074#4008_221_90073", + "npcLv": [ + 529, + 529, + 529, + 529, + 529, + 529 + ], + "isboss": 0, + "ghname": "npc_ghname_1" + }, + "15329": { + "npcId": 15329, + "attr": {}, + "npclist": "4015_221_90072#4004_221_90070#3015_221_90071#3013_221_90072#5001_221_90074#3010_221_90073", + "npcLv": [ + 530, + 530, + 530, + 530, + 530, + 530 + ], + "isboss": 0, + "ghname": "npc_ghname_2" + }, + "15330": { + "npcId": 15330, + "attr": {}, + "npclist": "4013_222_90072#4001_222_90070#4006_222_90071#5003_222_90072#4014_222_90074#4005_222_90073", + "npcLv": [ + 531, + 531, + 531, + 531, + 531, + 531 + ], + "isboss": 0, + "ghname": "npc_ghname_3" + }, + "15331": { + "npcId": 15331, + "attr": {}, + "npclist": "4008_222_90072#4012_222_90070#4002_222_90071#4009_222_90072#2002_222_90074#5005_222_90073", + "npcLv": [ + 532, + 532, + 532, + 532, + 532, + 532 + ], + "isboss": 0, + "ghname": "npc_ghname_4" + }, + "15332": { + "npcId": 15332, + "attr": {}, + "npclist": "4011_222_90072#4015_222_90070#5002_222_90071#4003_222_90072#5005_222_90074#4014_222_90073", + "npcLv": [ + 533, + 533, + 533, + 533, + 533, + 533 + ], + "isboss": 0, + "ghname": "npc_ghname_5" + }, + "15333": { + "npcId": 15333, + "attr": {}, + "npclist": "3008_222_90072#4006_222_90070#5003_222_90071#4010_222_90072#5001_222_90074#3010_222_90073", + "npcLv": [ + 534, + 534, + 534, + 534, + 534, + 534 + ], + "isboss": 0, + "ghname": "npc_ghname_6" + }, + "15334": { + "npcId": 15334, + "attr": {}, + "npclist": "4009_223_90072#3012_223_90070#4004_223_90071#4013_223_90072#4014_223_90074#4010_223_90073", + "npcLv": [ + 535, + 535, + 535, + 535, + 535, + 535 + ], + "isboss": 0, + "ghname": "npc_ghname_1" + }, + "15335": { + "npcId": 15335, + "attr": {}, + "npclist": "5005_223_90072#5004_223_90070#4012_223_90071#3005_223_90072#3015_223_90074#4003_223_90073", + "npcLv": [ + 536, + 536, + 536, + 536, + 536, + 536 + ], + "isboss": 0, + "ghname": "npc_ghname_2" + }, + "15336": { + "npcId": 15336, + "attr": {}, + "npclist": "4006_223_90072#4005_223_90070#3014_223_90071#5002_223_90072#4013_223_90074#3008_223_90073", + "npcLv": [ + 537, + 537, + 537, + 537, + 537, + 537 + ], + "isboss": 0, + "ghname": "npc_ghname_3" + }, + "15337": { + "npcId": 15337, + "attr": {}, + "npclist": "4014_223_90072#3005_223_90070#4008_223_90071#4012_223_90072#4007_223_90074#3001_223_90073", + "npcLv": [ + 538, + 538, + 538, + 538, + 538, + 538 + ], + "isboss": 0, + "ghname": "npc_ghname_4" + }, + "15338": { + "npcId": 15338, + "attr": {}, + "npclist": "4003_224_90072#4015_224_90070#4009_224_90071#4011_224_90072#4002_224_90074#4008_224_90073", + "npcLv": [ + 539, + 539, + 539, + 539, + 539, + 539 + ], + "isboss": 0, + "ghname": "npc_ghname_5" + }, + "15339": { + "npcId": 15339, + "attr": {}, + "npclist": "5001_224_90072#3014_224_90070#4014_224_90071#4005_224_90072#5003_224_90074#4013_224_90073", + "npcLv": [ + 540, + 540, + 540, + 540, + 540, + 540 + ], + "isboss": 0, + "ghname": "npc_ghname_6" + }, + "15340": { + "npcId": 15340, + "attr": {}, + "npclist": "3006_224_90072#5002_224_90070#3010_224_90071#4012_224_90072#3007_224_90074#3015_224_90073", + "npcLv": [ + 541, + 541, + 541, + 541, + 541, + 541 + ], + "isboss": 0, + "ghname": "npc_ghname_1" + }, + "15341": { + "npcId": 15341, + "attr": {}, + "npclist": "5005_224_90072#5001_224_90070#4010_224_90071#4001_224_90072#4009_224_90074#5004_224_90073", + "npcLv": [ + 542, + 542, + 542, + 542, + 542, + 542 + ], + "isboss": 0, + "ghname": "npc_ghname_2" + }, + "15342": { + "npcId": 15342, + "attr": {}, + "npclist": "4004_225_90072#4013_225_90070#4003_225_90071#3010_225_90072#4008_225_90074#4015_225_90073", + "npcLv": [ + 543, + 543, + 543, + 543, + 543, + 543 + ], + "isboss": 0, + "ghname": "npc_ghname_3" + }, + "15343": { + "npcId": 15343, + "attr": {}, + "npclist": "3005_225_90072#4006_225_90070#3002_225_90071#4014_225_90072#4012_225_90074#4009_225_90073", + "npcLv": [ + 544, + 544, + 544, + 544, + 544, + 544 + ], + "isboss": 0, + "ghname": "npc_ghname_4" + }, + "15344": { + "npcId": 15344, + "attr": {}, + "npclist": "4010_225_90072#3006_225_90070#5005_225_90071#4008_225_90072#5002_225_90074#3013_225_90073", + "npcLv": [ + 545, + 545, + 545, + 545, + 545, + 545 + ], + "isboss": 0, + "ghname": "npc_ghname_5" + }, + "15345": { + "npcId": 15345, + "attr": {}, + "npclist": "3011_225_90072#5004_225_90070#4011_225_90071#5001_225_90072#3010_225_90074#5003_225_90073", + "npcLv": [ + 546, + 546, + 546, + 546, + 546, + 546 + ], + "isboss": 0, + "ghname": "npc_ghname_6" + }, + "15346": { + "npcId": 15346, + "attr": {}, + "npclist": "4013_226_90072#4012_226_90070#4004_226_90071#4009_226_90072#4003_226_90074#4014_226_90073", + "npcLv": [ + 547, + 547, + 547, + 547, + 547, + 547 + ], + "isboss": 0, + "ghname": "npc_ghname_1" + }, + "15347": { + "npcId": 15347, + "attr": {}, + "npclist": "3012_226_90072#3010_226_90070#4015_226_90071#4002_226_90072#3007_226_90074#4005_226_90073", + "npcLv": [ + 548, + 548, + 548, + 548, + 548, + 548 + ], + "isboss": 0, + "ghname": "npc_ghname_2" + }, + "15348": { + "npcId": 15348, + "attr": {}, + "npclist": "4014_226_90072#4009_226_90070#4011_226_90071#3013_226_90072#3005_226_90074#5001_226_90073", + "npcLv": [ + 549, + 549, + 549, + 549, + 549, + 549 + ], + "isboss": 0, + "ghname": "npc_ghname_3" + }, + "15349": { + "npcId": 15349, + "attr": {}, + "npclist": "3010_226_90072#4008_226_90070#3007_226_90071#5003_226_90072#5005_226_90074#5002_226_90073", + "npcLv": [ + 550, + 550, + 550, + 550, + 550, + 550 + ], + "isboss": 0, + "ghname": "npc_ghname_4" + }, + "15350": { + "npcId": 15350, + "attr": {}, + "npclist": "3009_227_90072#4013_227_90070#3005_227_90071#4006_227_90072#3001_227_90074#3011_227_90073", + "npcLv": [ + 551, + 551, + 551, + 551, + 551, + 551 + ], + "isboss": 0, + "ghname": "npc_ghname_5" + }, + "15351": { + "npcId": 15351, + "attr": {}, + "npclist": "4012_227_90072#3011_227_90070#4015_227_90071#5005_227_90072#4014_227_90074#3002_227_90073", + "npcLv": [ + 552, + 552, + 552, + 552, + 552, + 552 + ], + "isboss": 0, + "ghname": "npc_ghname_6" + }, + "15352": { + "npcId": 15352, + "attr": {}, + "npclist": "4009_227_90072#2002_227_90070#4008_227_90071#4010_227_90072#4004_227_90074#4007_227_90073", + "npcLv": [ + 553, + 553, + 553, + 553, + 553, + 553 + ], + "isboss": 0, + "ghname": "npc_ghname_1" + }, + "15353": { + "npcId": 15353, + "attr": {}, + "npclist": "5001_227_90072#4011_227_90070#3015_227_90071#3009_227_90072#5002_227_90074#5003_227_90073", + "npcLv": [ + 554, + 554, + 554, + 554, + 554, + 554 + ], + "isboss": 0, + "ghname": "npc_ghname_2" + }, + "15354": { + "npcId": 15354, + "attr": {}, + "npclist": "4015_228_90072#4012_228_90070#5001_228_90071#4013_228_90072#4008_228_90074#4002_228_90073", + "npcLv": [ + 555, + 555, + 555, + 555, + 555, + 555 + ], + "isboss": 0, + "ghname": "npc_ghname_3" + }, + "15355": { + "npcId": 15355, + "attr": {}, + "npclist": "3010_228_90072#3008_228_90070#4009_228_90071#4014_228_90072#4001_228_90074#4004_228_90073", + "npcLv": [ + 556, + 556, + 556, + 556, + 556, + 556 + ], + "isboss": 0, + "ghname": "npc_ghname_4" + }, + "15356": { + "npcId": 15356, + "attr": {}, + "npclist": "4014_228_90072#5002_228_90070#4015_228_90071#4012_228_90072#5004_228_90074#3005_228_90073", + "npcLv": [ + 557, + 557, + 557, + 557, + 557, + 557 + ], + "isboss": 0, + "ghname": "npc_ghname_5" + }, + "15357": { + "npcId": 15357, + "attr": {}, + "npclist": "3009_228_90072#5001_228_90070#3013_228_90071#5003_228_90072#4009_228_90074#4013_228_90073", + "npcLv": [ + 558, + 558, + 558, + 558, + 558, + 558 + ], + "isboss": 0, + "ghname": "npc_ghname_6" + }, + "15358": { + "npcId": 15358, + "attr": {}, + "npclist": "3007_229_90072#4008_229_90070#4013_229_90071#4003_229_90072#3008_229_90074#3012_229_90073", + "npcLv": [ + 559, + 559, + 559, + 559, + 559, + 559 + ], + "isboss": 0, + "ghname": "npc_ghname_1" + }, + "15359": { + "npcId": 15359, + "attr": {}, + "npclist": "5005_229_90072#4001_229_90070#3013_229_90071#3007_229_90072#3010_229_90074#3011_229_90073", + "npcLv": [ + 560, + 560, + 560, + 560, + 560, + 560 + ], + "isboss": 0, + "ghname": "npc_ghname_2" + }, + "15360": { + "npcId": 15360, + "attr": {}, + "npclist": "4013_229_90072#4014_229_90070#5004_229_90071#5002_229_90072#4012_229_90074#4010_229_90073", + "npcLv": [ + 561, + 561, + 561, + 561, + 561, + 561 + ], + "isboss": 0, + "ghname": "npc_ghname_3" + }, + "15361": { + "npcId": 15361, + "attr": {}, + "npclist": "5001_229_90072#4004_229_90070#4002_229_90071#4011_229_90072#4006_229_90074#3002_229_90073", + "npcLv": [ + 562, + 562, + 562, + 562, + 562, + 562 + ], + "isboss": 0, + "ghname": "npc_ghname_4" + }, + "15362": { + "npcId": 15362, + "attr": {}, + "npclist": "4008_230_90072#4013_230_90070#4005_230_90071#5005_230_90072#3014_230_90074#3008_230_90073", + "npcLv": [ + 563, + 563, + 563, + 563, + 563, + 563 + ], + "isboss": 0, + "ghname": "npc_ghname_5" + }, + "15363": { + "npcId": 15363, + "attr": {}, + "npclist": "3013_230_90072#3010_230_90070#4007_230_90071#4004_230_90072#4014_230_90074#4009_230_90073", + "npcLv": [ + 564, + 564, + 564, + 564, + 564, + 564 + ], + "isboss": 0, + "ghname": "npc_ghname_6" + }, + "15364": { + "npcId": 15364, + "attr": {}, + "npclist": "4014_230_90072#4012_230_90070#3007_230_90071#5001_230_90072#4013_230_90074#4015_230_90073", + "npcLv": [ + 565, + 565, + 565, + 565, + 565, + 565 + ], + "isboss": 0, + "ghname": "npc_ghname_1" + }, + "15365": { + "npcId": 15365, + "attr": {}, + "npclist": "5003_230_90072#3013_230_90070#4008_230_90071#4003_230_90072#5002_230_90074#5004_230_90073", + "npcLv": [ + 566, + 566, + 566, + 566, + 566, + 566 + ], + "isboss": 0, + "ghname": "npc_ghname_2" + }, + "15366": { + "npcId": 15366, + "attr": {}, + "npclist": "4011_231_90072#4002_231_90070#3007_231_90071#4010_231_90072#4009_231_90074#4004_231_90073", + "npcLv": [ + 567, + 567, + 567, + 567, + 567, + 567 + ], + "isboss": 0, + "ghname": "npc_ghname_3" + }, + "15367": { + "npcId": 15367, + "attr": {}, + "npclist": "3001_231_90072#4014_231_90070#4015_231_90071#3009_231_90072#3013_231_90074#4013_231_90073", + "npcLv": [ + 568, + 568, + 568, + 568, + 568, + 568 + ], + "isboss": 0, + "ghname": "npc_ghname_4" + }, + "15368": { + "npcId": 15368, + "attr": {}, + "npclist": "5002_231_90072#4012_231_90070#4011_231_90071#3010_231_90072#3005_231_90074#5005_231_90073", + "npcLv": [ + 569, + 569, + 569, + 569, + 569, + 569 + ], + "isboss": 0, + "ghname": "npc_ghname_5" + }, + "15369": { + "npcId": 15369, + "attr": {}, + "npclist": "3015_231_90072#3012_231_90070#3002_231_90071#4014_231_90072#4005_231_90074#4008_231_90073", + "npcLv": [ + 570, + 570, + 570, + 570, + 570, + 570 + ], + "isboss": 0, + "ghname": "npc_ghname_6" + }, + "15370": { + "npcId": 15370, + "attr": {}, + "npclist": "4010_232_90072#4013_232_90070#3010_232_90071#4009_232_90072#5001_232_90074#4003_232_90073", + "npcLv": [ + 571, + 571, + 571, + 571, + 571, + 571 + ], + "isboss": 0, + "ghname": "npc_ghname_1" + }, + "15371": { + "npcId": 15371, + "attr": {}, + "npclist": "4007_232_90072#4004_232_90070#5003_232_90071#5004_232_90072#2002_232_90074#3011_232_90073", + "npcLv": [ + 572, + 572, + 572, + 572, + 572, + 572 + ], + "isboss": 0, + "ghname": "npc_ghname_2" + }, + "15372": { + "npcId": 15372, + "attr": {}, + "npclist": "4013_232_90072#4015_232_90070#4012_232_90071#5002_232_90072#4014_232_90074#5003_232_90073", + "npcLv": [ + 573, + 573, + 573, + 573, + 573, + 573 + ], + "isboss": 0, + "ghname": "npc_ghname_3" + }, + "15373": { + "npcId": 15373, + "attr": {}, + "npclist": "4001_232_90072#4002_232_90070#5001_232_90071#4004_232_90072#5005_232_90074#3009_232_90073", + "npcLv": [ + 574, + 574, + 574, + 574, + 574, + 574 + ], + "isboss": 0, + "ghname": "npc_ghname_4" + }, + "15374": { + "npcId": 15374, + "attr": {}, + "npclist": "3010_233_90072#4009_233_90070#4007_233_90071#3015_233_90072#5002_233_90074#5005_233_90073", + "npcLv": [ + 575, + 575, + 575, + 575, + 575, + 575 + ], + "isboss": 0, + "ghname": "npc_ghname_5" + }, + "15375": { + "npcId": 15375, + "attr": {}, + "npclist": "4014_233_90072#4008_233_90070#4003_233_90071#4012_233_90072#4001_233_90074#4011_233_90073", + "npcLv": [ + 576, + 576, + 576, + 576, + 576, + 576 + ], + "isboss": 0, + "ghname": "npc_ghname_6" + }, + "15376": { + "npcId": 15376, + "attr": {}, + "npclist": "4003_233_90072#5001_233_90070#4013_233_90071#4015_233_90072#5003_233_90074#4006_233_90073", + "npcLv": [ + 577, + 577, + 577, + 577, + 577, + 577 + ], + "isboss": 0, + "ghname": "npc_ghname_1" + }, + "15377": { + "npcId": 15377, + "attr": {}, + "npclist": "3005_233_90072#3007_233_90070#4010_233_90071#3005_233_90072#4013_233_90074#5002_233_90073", + "npcLv": [ + 578, + 578, + 578, + 578, + 578, + 578 + ], + "isboss": 0, + "ghname": "npc_ghname_2" + }, + "15378": { + "npcId": 15378, + "attr": {}, + "npclist": "4009_234_90072#4014_234_90070#3014_234_90071#3006_234_90072#3011_234_90074#4012_234_90073", + "npcLv": [ + 579, + 579, + 579, + 579, + 579, + 579 + ], + "isboss": 0, + "ghname": "npc_ghname_3" + }, + "15379": { + "npcId": 15379, + "attr": {}, + "npclist": "4008_234_90072#5004_234_90070#5005_234_90071#4014_234_90072#3001_234_90074#4013_234_90073", + "npcLv": [ + 580, + 580, + 580, + 580, + 580, + 580 + ], + "isboss": 0, + "ghname": "npc_ghname_4" + }, + "15380": { + "npcId": 15380, + "attr": {}, + "npclist": "3011_234_90072#4013_234_90070#5003_234_90071#5002_234_90072#4010_234_90074#4001_234_90073", + "npcLv": [ + 581, + 581, + 581, + 581, + 581, + 581 + ], + "isboss": 0, + "ghname": "npc_ghname_5" + }, + "15381": { + "npcId": 15381, + "attr": {}, + "npclist": "4014_234_90072#2002_234_90070#4004_234_90071#4011_234_90072#3010_234_90074#4015_234_90073", + "npcLv": [ + 582, + 582, + 582, + 582, + 582, + 582 + ], + "isboss": 0, + "ghname": "npc_ghname_6" + }, + "15382": { + "npcId": 15382, + "attr": {}, + "npclist": "5004_235_90072#4009_235_90070#4012_235_90071#4006_235_90072#3013_235_90074#3008_235_90073", + "npcLv": [ + 583, + 583, + 583, + 583, + 583, + 583 + ], + "isboss": 0, + "ghname": "npc_ghname_1" + }, + "15383": { + "npcId": 15383, + "attr": {}, + "npclist": "4013_235_90072#4005_235_90070#3005_235_90071#5005_235_90072#4003_235_90074#4014_235_90073", + "npcLv": [ + 584, + 584, + 584, + 584, + 584, + 584 + ], + "isboss": 0, + "ghname": "npc_ghname_2" + }, + "15384": { + "npcId": 15384, + "attr": {}, + "npclist": "5002_235_90072#4015_235_90070#4008_235_90071#4009_235_90072#3006_235_90074#3001_235_90073", + "npcLv": [ + 585, + 585, + 585, + 585, + 585, + 585 + ], + "isboss": 0, + "ghname": "npc_ghname_3" + }, + "15385": { + "npcId": 15385, + "attr": {}, + "npclist": "4004_235_90072#4011_235_90070#3005_235_90071#5001_235_90072#3007_235_90074#4010_235_90073", + "npcLv": [ + 586, + 586, + 586, + 586, + 586, + 586 + ], + "isboss": 0, + "ghname": "npc_ghname_4" + }, + "15386": { + "npcId": 15386, + "attr": {}, + "npclist": "3010_236_90072#4013_236_90070#5004_236_90071#4003_236_90072#4007_236_90074#5005_236_90073", + "npcLv": [ + 587, + 587, + 587, + 587, + 587, + 587 + ], + "isboss": 0, + "ghname": "npc_ghname_5" + }, + "15387": { + "npcId": 15387, + "attr": {}, + "npclist": "4012_236_90072#3014_236_90070#4013_236_90071#5005_236_90072#5003_236_90074#4009_236_90073", + "npcLv": [ + 588, + 588, + 588, + 588, + 588, + 588 + ], + "isboss": 0, + "ghname": "npc_ghname_6" + }, + "15388": { + "npcId": 15388, + "attr": {}, + "npclist": "4011_236_90072#4014_236_90070#4010_236_90071#4002_236_90072#4008_236_90074#3015_236_90073", + "npcLv": [ + 589, + 589, + 589, + 589, + 589, + 589 + ], + "isboss": 0, + "ghname": "npc_ghname_1" + }, + "15389": { + "npcId": 15389, + "attr": {}, + "npclist": "3002_236_90072#5001_236_90070#5002_236_90071#3007_236_90072#4013_236_90074#5004_236_90073", + "npcLv": [ + 590, + 590, + 590, + 590, + 590, + 590 + ], + "isboss": 0, + "ghname": "npc_ghname_2" + }, + "15390": { + "npcId": 15390, + "attr": {}, + "npclist": "5003_237_90072#4012_237_90070#4011_237_90071#4014_237_90072#3015_237_90074#4013_237_90073", + "npcLv": [ + 591, + 591, + 591, + 591, + 591, + 591 + ], + "isboss": 0, + "ghname": "npc_ghname_3" + }, + "15391": { + "npcId": 15391, + "attr": {}, + "npclist": "4015_237_90072#3008_237_90070#4003_237_90071#3007_237_90072#3005_237_90074#4007_237_90073", + "npcLv": [ + 592, + 592, + 592, + 592, + 592, + 592 + ], + "isboss": 0, + "ghname": "npc_ghname_4" + }, + "15392": { + "npcId": 15392, + "attr": {}, + "npclist": "4008_237_90072#5001_237_90070#5005_237_90071#5004_237_90072#4005_237_90074#5002_237_90073", + "npcLv": [ + 593, + 593, + 593, + 593, + 593, + 593 + ], + "isboss": 0, + "ghname": "npc_ghname_5" + }, + "15393": { + "npcId": 15393, + "attr": {}, + "npclist": "4014_237_90072#4006_237_90070#5004_237_90071#4004_237_90072#3010_237_90074#3011_237_90073", + "npcLv": [ + 594, + 594, + 594, + 594, + 594, + 594 + ], + "isboss": 0, + "ghname": "npc_ghname_6" + }, + "15394": { + "npcId": 15394, + "attr": {}, + "npclist": "3013_238_90072#4013_238_90070#4012_238_90071#5001_238_90072#5002_238_90074#4003_238_90073", + "npcLv": [ + 595, + 595, + 595, + 595, + 595, + 595 + ], + "isboss": 0, + "ghname": "npc_ghname_1" + }, + "15395": { + "npcId": 15395, + "attr": {}, + "npclist": "4010_238_90072#5003_238_90070#4015_238_90071#4008_238_90072#4009_238_90074#5005_238_90073", + "npcLv": [ + 596, + 596, + 596, + 596, + 596, + 596 + ], + "isboss": 0, + "ghname": "npc_ghname_2" + }, + "15396": { + "npcId": 15396, + "attr": {}, + "npclist": "3010_238_90072#3015_238_90070#4001_238_90071#3001_238_90072#4007_238_90074#3007_238_90073", + "npcLv": [ + 597, + 597, + 597, + 597, + 597, + 597 + ], + "isboss": 0, + "ghname": "npc_ghname_3" + }, + "15397": { + "npcId": 15397, + "attr": {}, + "npclist": "4013_238_90072#5004_238_90070#3002_238_90071#4012_238_90072#4015_238_90074#3007_238_90073", + "npcLv": [ + 598, + 598, + 598, + 598, + 598, + 598 + ], + "isboss": 0, + "ghname": "npc_ghname_4" + }, + "15398": { + "npcId": 15398, + "attr": {}, + "npclist": "5002_239_90072#4013_239_90070#3010_239_90071#3013_239_90072#4011_239_90074#3005_239_90073", + "npcLv": [ + 599, + 599, + 599, + 599, + 599, + 599 + ], + "isboss": 0, + "ghname": "npc_ghname_5" + }, + "15399": { + "npcId": 15399, + "attr": {}, + "npclist": "3007_239_90072#4009_239_90070#4014_239_90071#5001_239_90072#5005_239_90074#4015_239_90073", + "npcLv": [ + 600, + 600, + 600, + 600, + 600, + 600 + ], + "isboss": 0, + "ghname": "npc_ghname_6" + }, + "15400": { + "npcId": 15400, + "attr": {}, + "npclist": "3010_239_90072#3009_239_90070#5003_239_90071#4013_239_90072#3010_239_90074#4004_239_90073", + "npcLv": [ + 601, + 601, + 601, + 601, + 601, + 601 + ], + "isboss": 0, + "ghname": "npc_ghname_1" + }, + "15401": { + "npcId": 15401, + "attr": {}, + "npclist": "4014_239_90072#5002_239_90070#4010_239_90071#4006_239_90072#3009_239_90074#4012_239_90073", + "npcLv": [ + 602, + 602, + 602, + 602, + 602, + 602 + ], + "isboss": 0, + "ghname": "npc_ghname_2" + }, + "15402": { + "npcId": 15402, + "attr": {}, + "npclist": "5004_240_90072#4005_240_90070#5005_240_90071#3002_240_90072#4002_240_90074#3001_240_90073", + "npcLv": [ + 603, + 603, + 603, + 603, + 603, + 603 + ], + "isboss": 0, + "ghname": "npc_ghname_3" + }, + "15403": { + "npcId": 15403, + "attr": {}, + "npclist": "4008_240_90072#3005_240_90070#4002_240_90071#3011_240_90072#4013_240_90074#4011_240_90073", + "npcLv": [ + 604, + 604, + 604, + 604, + 604, + 604 + ], + "isboss": 0, + "ghname": "npc_ghname_4" + }, + "15404": { + "npcId": 15404, + "attr": {}, + "npclist": "5001_240_90072#4003_240_90070#3011_240_90071#5002_240_90072#5003_240_90074#3013_240_90073", + "npcLv": [ + 605, + 605, + 605, + 605, + 605, + 605 + ], + "isboss": 0, + "ghname": "npc_ghname_5" + }, + "15405": { + "npcId": 15405, + "attr": {}, + "npclist": "3005_240_90072#5004_240_90070#4012_240_90071#4010_240_90072#4014_240_90074#3002_240_90073", + "npcLv": [ + 606, + 606, + 606, + 606, + 606, + 606 + ], + "isboss": 0, + "ghname": "npc_ghname_6" + }, + "15406": { + "npcId": 15406, + "attr": {}, + "npclist": "4001_241_90072#3015_241_90070#4004_241_90071#3010_241_90072#4001_241_90074#4013_241_90073", + "npcLv": [ + 607, + 607, + 607, + 607, + 607, + 607 + ], + "isboss": 0, + "ghname": "npc_ghname_1" + }, + "15407": { + "npcId": 15407, + "attr": {}, + "npclist": "4015_241_90072#4012_241_90070#5004_241_90071#5003_241_90072#5005_241_90074#5002_241_90073", "npcLv": [ 608, 608, @@ -15688,1759 +17428,19 @@ 608 ], "isboss": 0, - "ghname": "npc_ghname_6" - }, - "15292": { - "npcId": 15292, - "attr": {}, - "npclist": "4012_266_90070#3006_266_90070#5003_266_90072#5005_266_90073#3014_266_90070#4006_266_90074", - "npcLv": [ - 616, - 616, - 616, - 616, - 616, - 616 - ], - "isboss": 0, - "ghname": "npc_ghname_1" - }, - "15293": { - "npcId": 15293, - "attr": {}, - "npclist": "4015_266_90070#4013_266_90070#4005_266_90072#4011_266_90073#5003_266_90070#4014_266_90074", - "npcLv": [ - 616, - 616, - 616, - 616, - 616, - 616 - ], - "isboss": 0, - "ghname": "npc_ghname_2" - }, - "15294": { - "npcId": 15294, - "attr": {}, - "npclist": "5005_269_90070#4004_269_90070#3009_269_90072#4002_269_90073#5001_269_90070#4008_269_90074", - "npcLv": [ - 624, - 624, - 624, - 624, - 624, - 624 - ], - "isboss": 0, - "ghname": "npc_ghname_3" - }, - "15295": { - "npcId": 15295, - "attr": {}, - "npclist": "3012_269_90070#4009_269_90070#4012_269_90072#5002_269_90073#4006_269_90070#4001_269_90074", - "npcLv": [ - 624, - 624, - 624, - 624, - 624, - 624 - ], - "isboss": 0, - "ghname": "npc_ghname_4" - }, - "15296": { - "npcId": 15296, - "attr": {}, - "npclist": "4014_272_90070#3015_272_90070#4011_272_90072#5003_272_90073#4015_272_90070#4007_272_90074", - "npcLv": [ - 632, - 632, - 632, - 632, - 632, - 632 - ], - "isboss": 0, - "ghname": "npc_ghname_5" - }, - "15297": { - "npcId": 15297, - "attr": {}, - "npclist": "4013_272_90070#5002_272_90070#4003_272_90072#4004_272_90073#4012_272_90070#4005_272_90074", - "npcLv": [ - 632, - 632, - 632, - 632, - 632, - 632 - ], - "isboss": 0, - "ghname": "npc_ghname_6" - }, - "15298": { - "npcId": 15298, - "attr": {}, - "npclist": "5001_275_90070#4014_275_90070#5004_275_90072#4009_275_90073#5003_275_90070#5005_275_90074", - "npcLv": [ - 640, - 640, - 640, - 640, - 640, - 640 - ], - "isboss": 0, - "ghname": "npc_ghname_1" - }, - "15299": { - "npcId": 15299, - "attr": {}, - "npclist": "3006_275_90070#3007_275_90070#4008_275_90072#4013_275_90073#3003_275_90070#4002_275_90074", - "npcLv": [ - 640, - 640, - 640, - 640, - 640, - 640 - ], - "isboss": 0, - "ghname": "npc_ghname_2" - }, - "15300": { - "npcId": 15300, - "attr": {}, - "npclist": "4011_278_90072#4012_278_90070#4006_278_90071#3012_278_90070#5003_278_90074#3006_278_90073", - "npcLv": [ - 648, - 648, - 648, - 648, - 648, - 648 - ], - "isboss": 0, - "ghname": "npc_ghname_3" - }, - "15301": { - "npcId": 15301, - "attr": {}, - "npclist": "4003_278_90072#5004_278_90070#3006_278_90071#4007_278_90070#4014_278_90074#5005_278_90073", - "npcLv": [ - 648, - 648, - 648, - 648, - 648, - 648 - ], - "isboss": 0, - "ghname": "npc_ghname_4" - }, - "15302": { - "npcId": 15302, - "attr": {}, - "npclist": "5002_281_90072#3014_281_90070#5005_281_90071#4010_281_90072#4009_281_90074#4004_281_90073", - "npcLv": [ - 656, - 656, - 656, - 656, - 656, - 656 - ], - "isboss": 0, - "ghname": "npc_ghname_5" - }, - "15303": { - "npcId": 15303, - "attr": {}, - "npclist": "4008_281_90072#5005_281_90070#4005_281_90071#4015_281_90072#4012_281_90074#4013_281_90073", - "npcLv": [ - 656, - 656, - 656, - 656, - 656, - 656 - ], - "isboss": 0, - "ghname": "npc_ghname_6" - }, - "15304": { - "npcId": 15304, - "attr": {}, - "npclist": "5005_284_90072#3010_284_90070#4011_284_90071#4003_284_90072#5001_284_90074#5003_284_90073", - "npcLv": [ - 664, - 664, - 664, - 664, - 664, - 664 - ], - "isboss": 0, - "ghname": "npc_ghname_1" - }, - "15305": { - "npcId": 15305, - "attr": {}, - "npclist": "4010_284_90072#5002_284_90070#3013_284_90071#3002_284_90072#4014_284_90074#3012_284_90073", - "npcLv": [ - 664, - 664, - 664, - 664, - 664, - 664 - ], - "isboss": 0, - "ghname": "npc_ghname_2" - }, - "15306": { - "npcId": 15306, - "attr": {}, - "npclist": "3014_287_90072#4005_287_90070#4015_287_90071#4012_287_90072#3006_287_90074#4009_287_90073", - "npcLv": [ - 672, - 672, - 672, - 672, - 672, - 672 - ], - "isboss": 0, - "ghname": "npc_ghname_3" - }, - "15307": { - "npcId": 15307, - "attr": {}, - "npclist": "4014_287_90072#4013_287_90070#4004_287_90071#5005_287_90072#5004_287_90074#3002_287_90073", - "npcLv": [ - 672, - 672, - 672, - 672, - 672, - 672 - ], - "isboss": 0, - "ghname": "npc_ghname_4" - }, - "15308": { - "npcId": 15308, - "attr": {}, - "npclist": "4011_290_90072#3005_290_90070#5003_290_90071#4008_290_90072#5001_290_90074#4003_290_90073", - "npcLv": [ - 680, - 680, - 680, - 680, - 680, - 680 - ], - "isboss": 0, - "ghname": "npc_ghname_5" - }, - "15309": { - "npcId": 15309, - "attr": {}, - "npclist": "4012_290_90072#4007_290_90070#4002_290_90071#3013_290_90072#4015_290_90074#3004_290_90073", - "npcLv": [ - 680, - 680, - 680, - 680, - 680, - 680 - ], - "isboss": 0, - "ghname": "npc_ghname_6" - }, - "15310": { - "npcId": 15310, - "attr": {}, - "npclist": "4004_293_90072#4006_293_90070#4009_293_90071#5002_293_90072#4010_293_90074#5004_293_90073", - "npcLv": [ - 688, - 688, - 688, - 688, - 688, - 688 - ], - "isboss": 0, - "ghname": "npc_ghname_1" - }, - "15311": { - "npcId": 15311, - "attr": {}, - "npclist": "4013_293_90072#4001_293_90070#3007_293_90071#4011_293_90072#3013_293_90074#4008_293_90073", - "npcLv": [ - 688, - 688, - 688, - 688, - 688, - 688 - ], - "isboss": 0, - "ghname": "npc_ghname_2" - }, - "15312": { - "npcId": 15312, - "attr": {}, - "npclist": "3004_296_90072#4014_296_90070#5004_296_90071#5003_296_90072#5005_296_90074#5001_296_90073", - "npcLv": [ - 697, - 697, - 697, - 697, - 697, - 697 - ], - "isboss": 0, - "ghname": "npc_ghname_3" - }, - "15313": { - "npcId": 15313, - "attr": {}, - "npclist": "5002_296_90072#2002_296_90070#4012_296_90071#3009_296_90072#4005_296_90074#4015_296_90073", - "npcLv": [ - 697, - 697, - 697, - 697, - 697, - 697 - ], - "isboss": 0, - "ghname": "npc_ghname_4" - }, - "15314": { - "npcId": 15314, - "attr": {}, - "npclist": "4009_299_90072#4013_299_90070#4003_299_90071#4008_299_90072#4014_299_90074#4010_299_90073", - "npcLv": [ - 705, - 705, - 705, - 705, - 705, - 705 - ], - "isboss": 0, - "ghname": "npc_ghname_5" - }, - "15315": { - "npcId": 15315, - "attr": {}, - "npclist": "3012_299_90072#3008_299_90070#3002_299_90071#5004_299_90072#4012_299_90074#3013_299_90073", - "npcLv": [ - 705, - 705, - 705, - 705, - 705, - 705 - ], - "isboss": 0, - "ghname": "npc_ghname_6" - }, - "15316": { - "npcId": 15316, - "attr": {}, - "npclist": "4007_302_90072#4014_302_90070#4004_302_90071#4013_302_90072#3005_302_90074#5003_302_90073", - "npcLv": [ - 713, - 713, - 713, - 713, - 713, - 713 - ], - "isboss": 0, - "ghname": "npc_ghname_1" - }, - "15317": { - "npcId": 15317, - "attr": {}, - "npclist": "5001_302_90072#4015_302_90070#3013_302_90071#5002_302_90072#5005_302_90074#4005_302_90073", - "npcLv": [ - 713, - 713, - 713, - 713, - 713, - 713 - ], - "isboss": 0, - "ghname": "npc_ghname_2" - }, - "15318": { - "npcId": 15318, - "attr": {}, - "npclist": "4012_305_90072#4003_305_90070#4009_305_90071#4010_305_90072#4006_305_90074#4011_305_90073", - "npcLv": [ - 721, - 721, - 721, - 721, - 721, - 721 - ], - "isboss": 0, - "ghname": "npc_ghname_3" - }, - "15319": { - "npcId": 15319, - "attr": {}, - "npclist": "4008_305_90072#4002_305_90070#5003_305_90071#3015_305_90072#4004_305_90074#5004_305_90073", - "npcLv": [ - 721, - 721, - 721, - 721, - 721, - 721 - ], - "isboss": 0, - "ghname": "npc_ghname_4" - }, - "15320": { - "npcId": 15320, - "attr": {}, - "npclist": "3013_308_90072#3012_308_90070#4011_308_90071#5005_308_90072#5002_308_90074#4013_308_90073", - "npcLv": [ - 729, - 729, - 729, - 729, - 729, - 729 - ], - "isboss": 0, - "ghname": "npc_ghname_5" - }, - "15321": { - "npcId": 15321, - "attr": {}, - "npclist": "4014_308_90072#5004_308_90070#4012_308_90071#4005_308_90072#4009_308_90074#3009_308_90073", - "npcLv": [ - 729, - 729, - 729, - 729, - 729, - 729 - ], - "isboss": 0, - "ghname": "npc_ghname_6" - }, - "15322": { - "npcId": 15322, - "attr": {}, - "npclist": "3015_311_90072#4010_311_90070#4007_311_90071#4015_311_90072#3014_311_90074#3001_311_90073", - "npcLv": [ - 737, - 737, - 737, - 737, - 737, - 737 - ], - "isboss": 0, - "ghname": "npc_ghname_1" - }, - "15323": { - "npcId": 15323, - "attr": {}, - "npclist": "4003_311_90072#4008_311_90070#5002_311_90071#3007_311_90072#3010_311_90074#4004_311_90073", - "npcLv": [ - 737, - 737, - 737, - 737, - 737, - 737 - ], - "isboss": 0, - "ghname": "npc_ghname_2" - }, - "15324": { - "npcId": 15324, - "attr": {}, - "npclist": "5003_314_90072#4005_314_90070#5005_314_90071#3005_314_90072#4013_314_90074#4006_314_90073", - "npcLv": [ - 745, - 745, - 745, - 745, - 745, - 745 - ], - "isboss": 0, - "ghname": "npc_ghname_3" - }, - "15325": { - "npcId": 15325, - "attr": {}, - "npclist": "5002_314_90072#4014_314_90070#3013_314_90071#4006_314_90072#4012_314_90074#4015_314_90073", - "npcLv": [ - 745, - 745, - 745, - 745, - 745, - 745 - ], - "isboss": 0, - "ghname": "npc_ghname_4" - }, - "15326": { - "npcId": 15326, - "attr": {}, - "npclist": "4010_317_90072#3009_317_90070#4003_317_90071#5004_317_90072#3002_317_90074#3012_317_90073", - "npcLv": [ - 754, - 754, - 754, - 754, - 754, - 754 - ], - "isboss": 0, - "ghname": "npc_ghname_5" - }, - "15327": { - "npcId": 15327, - "attr": {}, - "npclist": "3001_317_90072#4011_317_90070#5001_317_90071#4005_317_90072#3011_317_90074#4009_317_90073", - "npcLv": [ - 754, - 754, - 754, - 754, - 754, - 754 - ], - "isboss": 0, - "ghname": "npc_ghname_6" - }, - "15328": { - "npcId": 15328, - "attr": {}, - "npclist": "3006_320_90072#4013_320_90070#4012_320_90071#4014_320_90072#5005_320_90074#4008_320_90073", - "npcLv": [ - 762, - 762, - 762, - 762, - 762, - 762 - ], - "isboss": 0, - "ghname": "npc_ghname_1" - }, - "15329": { - "npcId": 15329, - "attr": {}, - "npclist": "4015_320_90072#4004_320_90070#3015_320_90071#3013_320_90072#5001_320_90074#3010_320_90073", - "npcLv": [ - 762, - 762, - 762, - 762, - 762, - 762 - ], - "isboss": 0, - "ghname": "npc_ghname_2" - }, - "15330": { - "npcId": 15330, - "attr": {}, - "npclist": "4013_323_90072#4001_323_90070#4006_323_90071#5003_323_90072#4014_323_90074#4005_323_90073", - "npcLv": [ - 770, - 770, - 770, - 770, - 770, - 770 - ], - "isboss": 0, - "ghname": "npc_ghname_3" - }, - "15331": { - "npcId": 15331, - "attr": {}, - "npclist": "4008_323_90072#4012_323_90070#4002_323_90071#4009_323_90072#2002_323_90074#5005_323_90073", - "npcLv": [ - 770, - 770, - 770, - 770, - 770, - 770 - ], - "isboss": 0, - "ghname": "npc_ghname_4" - }, - "15332": { - "npcId": 15332, - "attr": {}, - "npclist": "4011_326_90072#4015_326_90070#5002_326_90071#4003_326_90072#5005_326_90074#4014_326_90073", - "npcLv": [ - 778, - 778, - 778, - 778, - 778, - 778 - ], - "isboss": 0, - "ghname": "npc_ghname_5" - }, - "15333": { - "npcId": 15333, - "attr": {}, - "npclist": "3008_326_90072#4006_326_90070#5003_326_90071#4010_326_90072#5001_326_90074#3010_326_90073", - "npcLv": [ - 778, - 778, - 778, - 778, - 778, - 778 - ], - "isboss": 0, - "ghname": "npc_ghname_6" - }, - "15334": { - "npcId": 15334, - "attr": {}, - "npclist": "4009_329_90072#3012_329_90070#4004_329_90071#4013_329_90072#4014_329_90074#4010_329_90073", - "npcLv": [ - 786, - 786, - 786, - 786, - 786, - 786 - ], - "isboss": 0, - "ghname": "npc_ghname_1" - }, - "15335": { - "npcId": 15335, - "attr": {}, - "npclist": "5005_329_90072#5004_329_90070#4012_329_90071#3005_329_90072#3015_329_90074#4003_329_90073", - "npcLv": [ - 786, - 786, - 786, - 786, - 786, - 786 - ], - "isboss": 0, - "ghname": "npc_ghname_2" - }, - "15336": { - "npcId": 15336, - "attr": {}, - "npclist": "4006_332_90072#4005_332_90070#3014_332_90071#5002_332_90072#4013_332_90074#3008_332_90073", - "npcLv": [ - 795, - 795, - 795, - 795, - 795, - 795 - ], - "isboss": 0, - "ghname": "npc_ghname_3" - }, - "15337": { - "npcId": 15337, - "attr": {}, - "npclist": "4014_332_90072#3005_332_90070#4008_332_90071#4012_332_90072#4007_332_90074#3001_332_90073", - "npcLv": [ - 795, - 795, - 795, - 795, - 795, - 795 - ], - "isboss": 0, - "ghname": "npc_ghname_4" - }, - "15338": { - "npcId": 15338, - "attr": {}, - "npclist": "4003_335_90072#4015_335_90070#4009_335_90071#4011_335_90072#4002_335_90074#4008_335_90073", - "npcLv": [ - 803, - 803, - 803, - 803, - 803, - 803 - ], - "isboss": 0, - "ghname": "npc_ghname_5" - }, - "15339": { - "npcId": 15339, - "attr": {}, - "npclist": "5001_335_90072#3014_335_90070#4014_335_90071#4005_335_90072#5003_335_90074#4013_335_90073", - "npcLv": [ - 803, - 803, - 803, - 803, - 803, - 803 - ], - "isboss": 0, - "ghname": "npc_ghname_6" - }, - "15340": { - "npcId": 15340, - "attr": {}, - "npclist": "3006_338_90072#5002_338_90070#3010_338_90071#4012_338_90072#3007_338_90074#3015_338_90073", - "npcLv": [ - 811, - 811, - 811, - 811, - 811, - 811 - ], - "isboss": 0, - "ghname": "npc_ghname_1" - }, - "15341": { - "npcId": 15341, - "attr": {}, - "npclist": "5005_338_90072#5001_338_90070#4010_338_90071#4001_338_90072#4009_338_90074#5004_338_90073", - "npcLv": [ - 811, - 811, - 811, - 811, - 811, - 811 - ], - "isboss": 0, - "ghname": "npc_ghname_2" - }, - "15342": { - "npcId": 15342, - "attr": {}, - "npclist": "4004_341_90072#4013_341_90070#4003_341_90071#3010_341_90072#4008_341_90074#4015_341_90073", - "npcLv": [ - 819, - 819, - 819, - 819, - 819, - 819 - ], - "isboss": 0, - "ghname": "npc_ghname_3" - }, - "15343": { - "npcId": 15343, - "attr": {}, - "npclist": "3005_341_90072#4006_341_90070#3002_341_90071#4014_341_90072#4012_341_90074#4009_341_90073", - "npcLv": [ - 819, - 819, - 819, - 819, - 819, - 819 - ], - "isboss": 0, - "ghname": "npc_ghname_4" - }, - "15344": { - "npcId": 15344, - "attr": {}, - "npclist": "4010_344_90072#3006_344_90070#5005_344_90071#4008_344_90072#5002_344_90074#3013_344_90073", - "npcLv": [ - 828, - 828, - 828, - 828, - 828, - 828 - ], - "isboss": 0, - "ghname": "npc_ghname_5" - }, - "15345": { - "npcId": 15345, - "attr": {}, - "npclist": "3011_344_90072#5004_344_90070#4011_344_90071#5001_344_90072#3010_344_90074#5003_344_90073", - "npcLv": [ - 828, - 828, - 828, - 828, - 828, - 828 - ], - "isboss": 0, - "ghname": "npc_ghname_6" - }, - "15346": { - "npcId": 15346, - "attr": {}, - "npclist": "4013_347_90072#4012_347_90070#4004_347_90071#4009_347_90072#4003_347_90074#4014_347_90073", - "npcLv": [ - 836, - 836, - 836, - 836, - 836, - 836 - ], - "isboss": 0, - "ghname": "npc_ghname_1" - }, - "15347": { - "npcId": 15347, - "attr": {}, - "npclist": "3012_347_90072#3010_347_90070#4015_347_90071#4002_347_90072#3007_347_90074#4005_347_90073", - "npcLv": [ - 836, - 836, - 836, - 836, - 836, - 836 - ], - "isboss": 0, - "ghname": "npc_ghname_2" - }, - "15348": { - "npcId": 15348, - "attr": {}, - "npclist": "4014_350_90072#4009_350_90070#4011_350_90071#3013_350_90072#3005_350_90074#5001_350_90073", - "npcLv": [ - 844, - 844, - 844, - 844, - 844, - 844 - ], - "isboss": 0, - "ghname": "npc_ghname_3" - }, - "15349": { - "npcId": 15349, - "attr": {}, - "npclist": "3010_350_90072#4008_350_90070#3007_350_90071#5003_350_90072#5005_350_90074#5002_350_90073", - "npcLv": [ - 844, - 844, - 844, - 844, - 844, - 844 - ], - "isboss": 0, - "ghname": "npc_ghname_4" - }, - "15350": { - "npcId": 15350, - "attr": {}, - "npclist": "3009_353_90072#4013_353_90070#3005_353_90071#4006_353_90072#3001_353_90074#3011_353_90073", - "npcLv": [ - 853, - 853, - 853, - 853, - 853, - 853 - ], - "isboss": 0, - "ghname": "npc_ghname_5" - }, - "15351": { - "npcId": 15351, - "attr": {}, - "npclist": "4012_353_90072#3011_353_90070#4015_353_90071#5005_353_90072#4014_353_90074#3002_353_90073", - "npcLv": [ - 853, - 853, - 853, - 853, - 853, - 853 - ], - "isboss": 0, - "ghname": "npc_ghname_6" - }, - "15352": { - "npcId": 15352, - "attr": {}, - "npclist": "4009_356_90072#2002_356_90070#4008_356_90071#4010_356_90072#4004_356_90074#4007_356_90073", - "npcLv": [ - 861, - 861, - 861, - 861, - 861, - 861 - ], - "isboss": 0, - "ghname": "npc_ghname_1" - }, - "15353": { - "npcId": 15353, - "attr": {}, - "npclist": "5001_356_90072#4011_356_90070#3015_356_90071#3009_356_90072#5002_356_90074#5003_356_90073", - "npcLv": [ - 861, - 861, - 861, - 861, - 861, - 861 - ], - "isboss": 0, - "ghname": "npc_ghname_2" - }, - "15354": { - "npcId": 15354, - "attr": {}, - "npclist": "4015_359_90072#4012_359_90070#5001_359_90071#4013_359_90072#4008_359_90074#4002_359_90073", - "npcLv": [ - 869, - 869, - 869, - 869, - 869, - 869 - ], - "isboss": 0, - "ghname": "npc_ghname_3" - }, - "15355": { - "npcId": 15355, - "attr": {}, - "npclist": "3010_359_90072#3008_359_90070#4009_359_90071#4014_359_90072#4001_359_90074#4004_359_90073", - "npcLv": [ - 869, - 869, - 869, - 869, - 869, - 869 - ], - "isboss": 0, - "ghname": "npc_ghname_4" - }, - "15356": { - "npcId": 15356, - "attr": {}, - "npclist": "4014_362_90072#5002_362_90070#4015_362_90071#4012_362_90072#5004_362_90074#3005_362_90073", - "npcLv": [ - 878, - 878, - 878, - 878, - 878, - 878 - ], - "isboss": 0, - "ghname": "npc_ghname_5" - }, - "15357": { - "npcId": 15357, - "attr": {}, - "npclist": "3009_362_90072#5001_362_90070#3013_362_90071#5003_362_90072#4009_362_90074#4013_362_90073", - "npcLv": [ - 878, - 878, - 878, - 878, - 878, - 878 - ], - "isboss": 0, - "ghname": "npc_ghname_6" - }, - "15358": { - "npcId": 15358, - "attr": {}, - "npclist": "3007_365_90072#4008_365_90070#4013_365_90071#4003_365_90072#3008_365_90074#3012_365_90073", - "npcLv": [ - 886, - 886, - 886, - 886, - 886, - 886 - ], - "isboss": 0, - "ghname": "npc_ghname_1" - }, - "15359": { - "npcId": 15359, - "attr": {}, - "npclist": "5005_365_90072#4001_365_90070#3013_365_90071#3007_365_90072#3010_365_90074#3011_365_90073", - "npcLv": [ - 886, - 886, - 886, - 886, - 886, - 886 - ], - "isboss": 0, - "ghname": "npc_ghname_2" - }, - "15360": { - "npcId": 15360, - "attr": {}, - "npclist": "4013_368_90072#4014_368_90070#5004_368_90071#5002_368_90072#4012_368_90074#4010_368_90073", - "npcLv": [ - 894, - 894, - 894, - 894, - 894, - 894 - ], - "isboss": 0, - "ghname": "npc_ghname_3" - }, - "15361": { - "npcId": 15361, - "attr": {}, - "npclist": "5001_368_90072#4004_368_90070#4002_368_90071#4011_368_90072#4006_368_90074#3002_368_90073", - "npcLv": [ - 894, - 894, - 894, - 894, - 894, - 894 - ], - "isboss": 0, - "ghname": "npc_ghname_4" - }, - "15362": { - "npcId": 15362, - "attr": {}, - "npclist": "4008_371_90072#4013_371_90070#4005_371_90071#5005_371_90072#3014_371_90074#3008_371_90073", - "npcLv": [ - 903, - 903, - 903, - 903, - 903, - 903 - ], - "isboss": 0, - "ghname": "npc_ghname_5" - }, - "15363": { - "npcId": 15363, - "attr": {}, - "npclist": "3013_371_90072#3010_371_90070#4007_371_90071#4004_371_90072#4014_371_90074#4009_371_90073", - "npcLv": [ - 903, - 903, - 903, - 903, - 903, - 903 - ], - "isboss": 0, - "ghname": "npc_ghname_6" - }, - "15364": { - "npcId": 15364, - "attr": {}, - "npclist": "4014_374_90072#4012_374_90070#3007_374_90071#5001_374_90072#4013_374_90074#4015_374_90073", - "npcLv": [ - 911, - 911, - 911, - 911, - 911, - 911 - ], - "isboss": 0, - "ghname": "npc_ghname_1" - }, - "15365": { - "npcId": 15365, - "attr": {}, - "npclist": "5003_374_90072#3013_374_90070#4008_374_90071#4003_374_90072#5002_374_90074#5004_374_90073", - "npcLv": [ - 911, - 911, - 911, - 911, - 911, - 911 - ], - "isboss": 0, - "ghname": "npc_ghname_2" - }, - "15366": { - "npcId": 15366, - "attr": {}, - "npclist": "4011_377_90072#4002_377_90070#3007_377_90071#4010_377_90072#4009_377_90074#4004_377_90073", - "npcLv": [ - 919, - 919, - 919, - 919, - 919, - 919 - ], - "isboss": 0, - "ghname": "npc_ghname_3" - }, - "15367": { - "npcId": 15367, - "attr": {}, - "npclist": "3001_377_90072#4014_377_90070#4015_377_90071#3009_377_90072#3013_377_90074#4013_377_90073", - "npcLv": [ - 919, - 919, - 919, - 919, - 919, - 919 - ], - "isboss": 0, - "ghname": "npc_ghname_4" - }, - "15368": { - "npcId": 15368, - "attr": {}, - "npclist": "5002_380_90072#4012_380_90070#4011_380_90071#3010_380_90072#3005_380_90074#5005_380_90073", - "npcLv": [ - 928, - 928, - 928, - 928, - 928, - 928 - ], - "isboss": 0, - "ghname": "npc_ghname_5" - }, - "15369": { - "npcId": 15369, - "attr": {}, - "npclist": "3015_380_90072#3012_380_90070#3002_380_90071#4014_380_90072#4005_380_90074#4008_380_90073", - "npcLv": [ - 928, - 928, - 928, - 928, - 928, - 928 - ], - "isboss": 0, - "ghname": "npc_ghname_6" - }, - "15370": { - "npcId": 15370, - "attr": {}, - "npclist": "4010_383_90072#4013_383_90070#3010_383_90071#4009_383_90072#5001_383_90074#4003_383_90073", - "npcLv": [ - 936, - 936, - 936, - 936, - 936, - 936 - ], - "isboss": 0, - "ghname": "npc_ghname_1" - }, - "15371": { - "npcId": 15371, - "attr": {}, - "npclist": "4007_383_90072#4004_383_90070#5003_383_90071#5004_383_90072#2002_383_90074#3011_383_90073", - "npcLv": [ - 936, - 936, - 936, - 936, - 936, - 936 - ], - "isboss": 0, - "ghname": "npc_ghname_2" - }, - "15372": { - "npcId": 15372, - "attr": {}, - "npclist": "4013_386_90072#4015_386_90070#4012_386_90071#5002_386_90072#4014_386_90074#5003_386_90073", - "npcLv": [ - 945, - 945, - 945, - 945, - 945, - 945 - ], - "isboss": 0, - "ghname": "npc_ghname_3" - }, - "15373": { - "npcId": 15373, - "attr": {}, - "npclist": "4001_386_90072#4002_386_90070#5001_386_90071#4004_386_90072#5005_386_90074#3009_386_90073", - "npcLv": [ - 945, - 945, - 945, - 945, - 945, - 945 - ], - "isboss": 0, - "ghname": "npc_ghname_4" - }, - "15374": { - "npcId": 15374, - "attr": {}, - "npclist": "3010_389_90072#4009_389_90070#4007_389_90071#3015_389_90072#5002_389_90074#5005_389_90073", - "npcLv": [ - 953, - 953, - 953, - 953, - 953, - 953 - ], - "isboss": 0, - "ghname": "npc_ghname_5" - }, - "15375": { - "npcId": 15375, - "attr": {}, - "npclist": "4014_389_90072#4008_389_90070#4003_389_90071#4012_389_90072#4001_389_90074#4011_389_90073", - "npcLv": [ - 953, - 953, - 953, - 953, - 953, - 953 - ], - "isboss": 0, - "ghname": "npc_ghname_6" - }, - "15376": { - "npcId": 15376, - "attr": {}, - "npclist": "4003_392_90072#5001_392_90070#4013_392_90071#4015_392_90072#5003_392_90074#4006_392_90073", - "npcLv": [ - 962, - 962, - 962, - 962, - 962, - 962 - ], - "isboss": 0, - "ghname": "npc_ghname_1" - }, - "15377": { - "npcId": 15377, - "attr": {}, - "npclist": "3005_392_90072#3007_392_90070#4010_392_90071#3005_392_90072#4013_392_90074#5002_392_90073", - "npcLv": [ - 962, - 962, - 962, - 962, - 962, - 962 - ], - "isboss": 0, - "ghname": "npc_ghname_2" - }, - "15378": { - "npcId": 15378, - "attr": {}, - "npclist": "4009_395_90072#4014_395_90070#3014_395_90071#3006_395_90072#3011_395_90074#4012_395_90073", - "npcLv": [ - 970, - 970, - 970, - 970, - 970, - 970 - ], - "isboss": 0, - "ghname": "npc_ghname_3" - }, - "15379": { - "npcId": 15379, - "attr": {}, - "npclist": "4008_395_90072#5004_395_90070#5005_395_90071#4014_395_90072#3001_395_90074#4013_395_90073", - "npcLv": [ - 970, - 970, - 970, - 970, - 970, - 970 - ], - "isboss": 0, - "ghname": "npc_ghname_4" - }, - "15380": { - "npcId": 15380, - "attr": {}, - "npclist": "3011_398_90072#4013_398_90070#5003_398_90071#5002_398_90072#4010_398_90074#4001_398_90073", - "npcLv": [ - 978, - 978, - 978, - 978, - 978, - 978 - ], - "isboss": 0, - "ghname": "npc_ghname_5" - }, - "15381": { - "npcId": 15381, - "attr": {}, - "npclist": "4014_398_90072#2002_398_90070#4004_398_90071#4011_398_90072#3010_398_90074#4015_398_90073", - "npcLv": [ - 978, - 978, - 978, - 978, - 978, - 978 - ], - "isboss": 0, - "ghname": "npc_ghname_6" - }, - "15382": { - "npcId": 15382, - "attr": {}, - "npclist": "5004_401_90072#4009_401_90070#4012_401_90071#4006_401_90072#3013_401_90074#3008_401_90073", - "npcLv": [ - 987, - 987, - 987, - 987, - 987, - 987 - ], - "isboss": 0, - "ghname": "npc_ghname_1" - }, - "15383": { - "npcId": 15383, - "attr": {}, - "npclist": "4013_401_90072#4005_401_90070#3005_401_90071#5005_401_90072#4003_401_90074#4014_401_90073", - "npcLv": [ - 987, - 987, - 987, - 987, - 987, - 987 - ], - "isboss": 0, - "ghname": "npc_ghname_2" - }, - "15384": { - "npcId": 15384, - "attr": {}, - "npclist": "5002_404_90072#4015_404_90070#4008_404_90071#4009_404_90072#3006_404_90074#3001_404_90073", - "npcLv": [ - 995, - 995, - 995, - 995, - 995, - 995 - ], - "isboss": 0, - "ghname": "npc_ghname_3" - }, - "15385": { - "npcId": 15385, - "attr": {}, - "npclist": "4004_404_90072#4011_404_90070#3005_404_90071#5001_404_90072#3007_404_90074#4010_404_90073", - "npcLv": [ - 995, - 995, - 995, - 995, - 995, - 995 - ], - "isboss": 0, - "ghname": "npc_ghname_4" - }, - "15386": { - "npcId": 15386, - "attr": {}, - "npclist": "3010_407_90072#4013_407_90070#5004_407_90071#4003_407_90072#4007_407_90074#5005_407_90073", - "npcLv": [ - 1004, - 1004, - 1004, - 1004, - 1004, - 1004 - ], - "isboss": 0, - "ghname": "npc_ghname_5" - }, - "15387": { - "npcId": 15387, - "attr": {}, - "npclist": "4012_407_90072#3014_407_90070#4013_407_90071#5005_407_90072#5003_407_90074#4009_407_90073", - "npcLv": [ - 1004, - 1004, - 1004, - 1004, - 1004, - 1004 - ], - "isboss": 0, - "ghname": "npc_ghname_6" - }, - "15388": { - "npcId": 15388, - "attr": {}, - "npclist": "4011_410_90072#4014_410_90070#4010_410_90071#4002_410_90072#4008_410_90074#3015_410_90073", - "npcLv": [ - 1012, - 1012, - 1012, - 1012, - 1012, - 1012 - ], - "isboss": 0, - "ghname": "npc_ghname_1" - }, - "15389": { - "npcId": 15389, - "attr": {}, - "npclist": "3002_410_90072#5001_410_90070#5002_410_90071#3007_410_90072#4013_410_90074#5004_410_90073", - "npcLv": [ - 1012, - 1012, - 1012, - 1012, - 1012, - 1012 - ], - "isboss": 0, - "ghname": "npc_ghname_2" - }, - "15390": { - "npcId": 15390, - "attr": {}, - "npclist": "5003_413_90072#4012_413_90070#4011_413_90071#4014_413_90072#3015_413_90074#4013_413_90073", - "npcLv": [ - 1021, - 1021, - 1021, - 1021, - 1021, - 1021 - ], - "isboss": 0, - "ghname": "npc_ghname_3" - }, - "15391": { - "npcId": 15391, - "attr": {}, - "npclist": "4015_413_90072#3008_413_90070#4003_413_90071#3007_413_90072#3005_413_90074#4007_413_90073", - "npcLv": [ - 1021, - 1021, - 1021, - 1021, - 1021, - 1021 - ], - "isboss": 0, - "ghname": "npc_ghname_4" - }, - "15392": { - "npcId": 15392, - "attr": {}, - "npclist": "4008_416_90072#5001_416_90070#5005_416_90071#5004_416_90072#4005_416_90074#5002_416_90073", - "npcLv": [ - 1029, - 1029, - 1029, - 1029, - 1029, - 1029 - ], - "isboss": 0, - "ghname": "npc_ghname_5" - }, - "15393": { - "npcId": 15393, - "attr": {}, - "npclist": "4014_416_90072#4006_416_90070#5004_416_90071#4004_416_90072#3010_416_90074#3011_416_90073", - "npcLv": [ - 1029, - 1029, - 1029, - 1029, - 1029, - 1029 - ], - "isboss": 0, - "ghname": "npc_ghname_6" - }, - "15394": { - "npcId": 15394, - "attr": {}, - "npclist": "3013_419_90072#4013_419_90070#4012_419_90071#5001_419_90072#5002_419_90074#4003_419_90073", - "npcLv": [ - 1038, - 1038, - 1038, - 1038, - 1038, - 1038 - ], - "isboss": 0, - "ghname": "npc_ghname_1" - }, - "15395": { - "npcId": 15395, - "attr": {}, - "npclist": "4010_419_90072#5003_419_90070#4015_419_90071#4008_419_90072#4009_419_90074#5005_419_90073", - "npcLv": [ - 1038, - 1038, - 1038, - 1038, - 1038, - 1038 - ], - "isboss": 0, - "ghname": "npc_ghname_2" - }, - "15396": { - "npcId": 15396, - "attr": {}, - "npclist": "3010_422_90072#3015_422_90070#4001_422_90071#3001_422_90072#4007_422_90074#3007_422_90073", - "npcLv": [ - 1046, - 1046, - 1046, - 1046, - 1046, - 1046 - ], - "isboss": 0, - "ghname": "npc_ghname_3" - }, - "15397": { - "npcId": 15397, - "attr": {}, - "npclist": "4013_422_90072#5004_422_90070#3002_422_90071#4012_422_90072#4015_422_90074#3007_422_90073", - "npcLv": [ - 1046, - 1046, - 1046, - 1046, - 1046, - 1046 - ], - "isboss": 0, - "ghname": "npc_ghname_4" - }, - "15398": { - "npcId": 15398, - "attr": {}, - "npclist": "5002_425_90072#4013_425_90070#3010_425_90071#3013_425_90072#4011_425_90074#3005_425_90073", - "npcLv": [ - 1055, - 1055, - 1055, - 1055, - 1055, - 1055 - ], - "isboss": 0, - "ghname": "npc_ghname_5" - }, - "15399": { - "npcId": 15399, - "attr": {}, - "npclist": "3007_425_90072#4009_425_90070#4014_425_90071#5001_425_90072#5005_425_90074#4015_425_90073", - "npcLv": [ - 1055, - 1055, - 1055, - 1055, - 1055, - 1055 - ], - "isboss": 0, - "ghname": "npc_ghname_6" - }, - "15400": { - "npcId": 15400, - "attr": {}, - "npclist": "3010_428_90072#3009_428_90070#5003_428_90071#4013_428_90072#3010_428_90074#4004_428_90073", - "npcLv": [ - 1064, - 1064, - 1064, - 1064, - 1064, - 1064 - ], - "isboss": 0, - "ghname": "npc_ghname_1" - }, - "15401": { - "npcId": 15401, - "attr": {}, - "npclist": "4014_428_90072#5002_428_90070#4010_428_90071#4006_428_90072#3009_428_90074#4012_428_90073", - "npcLv": [ - 1064, - 1064, - 1064, - 1064, - 1064, - 1064 - ], - "isboss": 0, - "ghname": "npc_ghname_2" - }, - "15402": { - "npcId": 15402, - "attr": {}, - "npclist": "5004_431_90072#4005_431_90070#5005_431_90071#3002_431_90072#4002_431_90074#3001_431_90073", - "npcLv": [ - 1072, - 1072, - 1072, - 1072, - 1072, - 1072 - ], - "isboss": 0, - "ghname": "npc_ghname_3" - }, - "15403": { - "npcId": 15403, - "attr": {}, - "npclist": "4008_431_90072#3005_431_90070#4002_431_90071#3011_431_90072#4013_431_90074#4011_431_90073", - "npcLv": [ - 1072, - 1072, - 1072, - 1072, - 1072, - 1072 - ], - "isboss": 0, - "ghname": "npc_ghname_4" - }, - "15404": { - "npcId": 15404, - "attr": {}, - "npclist": "5001_434_90072#4003_434_90070#3011_434_90071#5002_434_90072#5003_434_90074#3013_434_90073", - "npcLv": [ - 1081, - 1081, - 1081, - 1081, - 1081, - 1081 - ], - "isboss": 0, - "ghname": "npc_ghname_5" - }, - "15405": { - "npcId": 15405, - "attr": {}, - "npclist": "3005_434_90072#5004_434_90070#4012_434_90071#4010_434_90072#4014_434_90074#3002_434_90073", - "npcLv": [ - 1081, - 1081, - 1081, - 1081, - 1081, - 1081 - ], - "isboss": 0, - "ghname": "npc_ghname_6" - }, - "15406": { - "npcId": 15406, - "attr": {}, - "npclist": "4001_437_90072#3015_437_90070#4004_437_90071#3010_437_90072#4001_437_90074#4013_437_90073", - "npcLv": [ - 1089, - 1089, - 1089, - 1089, - 1089, - 1089 - ], - "isboss": 0, - "ghname": "npc_ghname_1" - }, - "15407": { - "npcId": 15407, - "attr": {}, - "npclist": "4015_437_90072#4012_437_90070#5004_437_90071#5003_437_90072#5005_437_90074#5002_437_90073", - "npcLv": [ - 1089, - 1089, - 1089, - 1089, - 1089, - 1089 - ], - "isboss": 0, "ghname": "npc_ghname_2" }, "15408": { "npcId": 15408, "attr": {}, - "npclist": "4009_440_90072#4014_440_90070#4013_440_90071#4007_440_90072#4010_440_90074#3010_440_90073", + "npclist": "4009_241_90072#4014_241_90070#4013_241_90071#4007_241_90072#4010_241_90074#3010_241_90073", "npcLv": [ - 1098, - 1098, - 1098, - 1098, - 1098, - 1098 + 609, + 609, + 609, + 609, + 609, + 609 ], "isboss": 0, "ghname": "npc_ghname_3" @@ -17448,7 +17448,2857 @@ "15409": { "npcId": 15409, "attr": {}, - "npclist": "4012_440_90072#4011_440_90070#4001_440_90071#3015_440_90072#3013_440_90074#3001_440_90073", + "npclist": "4012_241_90072#4011_241_90070#4001_241_90071#3015_241_90072#3013_241_90074#3001_241_90073", + "npcLv": [ + 610, + 610, + 610, + 610, + 610, + 610 + ], + "isboss": 0, + "ghname": "npc_ghname_4" + }, + "15410": { + "npcId": 15410, + "attr": {}, + "npclist": "3012_242_90072#5005_242_90070#4015_242_90071#3005_242_90072#4008_242_90074#5004_242_90073", + "npcLv": [ + 611, + 611, + 611, + 611, + 611, + 611 + ], + "isboss": 0, + "ghname": "npc_ghname_5" + }, + "15411": { + "npcId": 15411, + "attr": {}, + "npclist": "3013_242_90072#3011_242_90070#5003_242_90071#5002_242_90072#3005_242_90074#4005_242_90073", + "npcLv": [ + 612, + 612, + 612, + 612, + 612, + 612 + ], + "isboss": 0, + "ghname": "npc_ghname_6" + }, + "15412": { + "npcId": 15412, + "attr": {}, + "npclist": "4013_242_90072#3009_242_90070#4006_242_90071#4003_242_90072#4015_242_90074#3007_242_90073", + "npcLv": [ + 613, + 613, + 613, + 613, + 613, + 613 + ], + "isboss": 0, + "ghname": "npc_ghname_1" + }, + "15413": { + "npcId": 15413, + "attr": {}, + "npclist": "5005_242_90072#4007_242_90070#4012_242_90071#5004_242_90072#3001_242_90074#4010_242_90073", + "npcLv": [ + 614, + 614, + 614, + 614, + 614, + 614 + ], + "isboss": 0, + "ghname": "npc_ghname_2" + }, + "15414": { + "npcId": 15414, + "attr": {}, + "npclist": "4011_243_90072#3010_243_90070#2002_243_90071#4004_243_90072#4014_243_90074#5004_243_90073", + "npcLv": [ + 615, + 615, + 615, + 615, + 615, + 615 + ], + "isboss": 0, + "ghname": "npc_ghname_3" + }, + "15415": { + "npcId": 15415, + "attr": {}, + "npclist": "5003_243_90072#5002_243_90070#5005_243_90071#3010_243_90072#4006_243_90074#4003_243_90073", + "npcLv": [ + 616, + 616, + 616, + 616, + 616, + 616 + ], + "isboss": 0, + "ghname": "npc_ghname_4" + }, + "15416": { + "npcId": 15416, + "attr": {}, + "npclist": "3013_243_90072#5001_243_90070#4009_243_90071#3008_243_90072#4012_243_90074#3009_243_90073", + "npcLv": [ + 617, + 617, + 617, + 617, + 617, + 617 + ], + "isboss": 0, + "ghname": "npc_ghname_5" + }, + "15417": { + "npcId": 15417, + "attr": {}, + "npclist": "4004_243_90072#4011_243_90070#5004_243_90071#3001_243_90072#4005_243_90074#4015_243_90073", + "npcLv": [ + 618, + 618, + 618, + 618, + 618, + 618 + ], + "isboss": 0, + "ghname": "npc_ghname_6" + }, + "15418": { + "npcId": 15418, + "attr": {}, + "npclist": "5002_244_90072#4002_244_90070#3006_244_90071#4010_244_90072#5005_244_90074#3009_244_90073", + "npcLv": [ + 619, + 619, + 619, + 619, + 619, + 619 + ], + "isboss": 0, + "ghname": "npc_ghname_1" + }, + "15419": { + "npcId": 15419, + "attr": {}, + "npclist": "3014_244_90072#5004_244_90070#5003_244_90071#4003_244_90072#4015_244_90074#4011_244_90073", + "npcLv": [ + 620, + 620, + 620, + 620, + 620, + 620 + ], + "isboss": 0, + "ghname": "npc_ghname_2" + }, + "15420": { + "npcId": 15420, + "attr": {}, + "npclist": "3001_244_90072#4014_244_90070#4013_244_90071#3002_244_90072#4009_244_90074#3014_244_90073", + "npcLv": [ + 621, + 621, + 621, + 621, + 621, + 621 + ], + "isboss": 0, + "ghname": "npc_ghname_3" + }, + "15421": { + "npcId": 15421, + "attr": {}, + "npclist": "5004_244_90072#3009_244_90070#5002_244_90071#4013_244_90072#3005_244_90074#4012_244_90073", + "npcLv": [ + 622, + 622, + 622, + 622, + 622, + 622 + ], + "isboss": 0, + "ghname": "npc_ghname_4" + }, + "15422": { + "npcId": 15422, + "attr": {}, + "npclist": "5001_245_90072#4015_245_90070#4005_245_90071#3011_245_90072#4003_245_90074#5005_245_90073", + "npcLv": [ + 623, + 623, + 623, + 623, + 623, + 623 + ], + "isboss": 0, + "ghname": "npc_ghname_5" + }, + "15423": { + "npcId": 15423, + "attr": {}, + "npclist": "4014_245_90072#3007_245_90070#3013_245_90071#4002_245_90072#5002_245_90074#4009_245_90073", + "npcLv": [ + 624, + 624, + 624, + 624, + 624, + 624 + ], + "isboss": 0, + "ghname": "npc_ghname_6" + }, + "15424": { + "npcId": 15424, + "attr": {}, + "npclist": "4015_245_90072#4007_245_90070#5004_245_90071#4012_245_90072#4011_245_90074#4001_245_90073", + "npcLv": [ + 625, + 625, + 625, + 625, + 625, + 625 + ], + "isboss": 0, + "ghname": "npc_ghname_1" + }, + "15425": { + "npcId": 15425, + "attr": {}, + "npclist": "3006_245_90072#4004_245_90070#3015_245_90071#5005_245_90072#5003_245_90074#4013_245_90073", + "npcLv": [ + 626, + 626, + 626, + 626, + 626, + 626 + ], + "isboss": 0, + "ghname": "npc_ghname_2" + }, + "15426": { + "npcId": 15426, + "attr": {}, + "npclist": "3002_246_90072#4010_246_90070#5001_246_90071#4007_246_90072#3013_246_90074#4008_246_90073", + "npcLv": [ + 627, + 627, + 627, + 627, + 627, + 627 + ], + "isboss": 0, + "ghname": "npc_ghname_3" + }, + "15427": { + "npcId": 15427, + "attr": {}, + "npclist": "5005_246_90072#2002_246_90070#3010_246_90071#4013_246_90072#3011_246_90074#5002_246_90073", + "npcLv": [ + 628, + 628, + 628, + 628, + 628, + 628 + ], + "isboss": 0, + "ghname": "npc_ghname_4" + }, + "15428": { + "npcId": 15428, + "attr": {}, + "npclist": "4010_246_90072#4011_246_90070#4006_246_90071#4003_246_90072#3009_246_90074#5004_246_90073", + "npcLv": [ + 629, + 629, + 629, + 629, + 629, + 629 + ], + "isboss": 0, + "ghname": "npc_ghname_5" + }, + "15429": { + "npcId": 15429, + "attr": {}, + "npclist": "3001_246_90072#4014_246_90070#4015_246_90071#5005_246_90072#5001_246_90074#4002_246_90073", + "npcLv": [ + 630, + 630, + 630, + 630, + 630, + 630 + ], + "isboss": 0, + "ghname": "npc_ghname_6" + }, + "15430": { + "npcId": 15430, + "attr": {}, + "npclist": "3010_247_90072#4013_247_90070#4005_247_90071#5002_247_90072#4007_247_90074#3013_247_90073", + "npcLv": [ + 631, + 631, + 631, + 631, + 631, + 631 + ], + "isboss": 0, + "ghname": "npc_ghname_1" + }, + "15431": { + "npcId": 15431, + "attr": {}, + "npclist": "4011_247_90072#4001_247_90070#4012_247_90071#4009_247_90072#4015_247_90074#5003_247_90073", + "npcLv": [ + 632, + 632, + 632, + 632, + 632, + 632 + ], + "isboss": 0, + "ghname": "npc_ghname_2" + }, + "15432": { + "npcId": 15432, + "attr": {}, + "npclist": "3015_247_90072#5002_247_90070#4003_247_90071#5004_247_90072#5005_247_90074#4014_247_90073", + "npcLv": [ + 633, + 633, + 633, + 633, + 633, + 633 + ], + "isboss": 0, + "ghname": "npc_ghname_3" + }, + "15433": { + "npcId": 15433, + "attr": {}, + "npclist": "4013_247_90072#4006_247_90070#3002_247_90071#3007_247_90072#3015_247_90074#3007_247_90073", + "npcLv": [ + 634, + 634, + 634, + 634, + 634, + 634 + ], + "isboss": 0, + "ghname": "npc_ghname_4" + }, + "15434": { + "npcId": 15434, + "attr": {}, + "npclist": "4012_248_90072#5004_248_90070#4011_248_90071#3013_248_90072#3007_248_90074#4015_248_90073", + "npcLv": [ + 635, + 635, + 635, + 635, + 635, + 635 + ], + "isboss": 0, + "ghname": "npc_ghname_5" + }, + "15435": { + "npcId": 15435, + "attr": {}, + "npclist": "5002_248_90072#4008_248_90070#4010_248_90071#5001_248_90072#4004_248_90074#3007_248_90073", + "npcLv": [ + 636, + 636, + 636, + 636, + 636, + 636 + ], + "isboss": 0, + "ghname": "npc_ghname_6" + }, + "15436": { + "npcId": 15436, + "attr": {}, + "npclist": "3010_248_90072#3005_248_90070#4006_248_90071#4015_248_90072#5003_248_90074#4014_248_90073", + "npcLv": [ + 637, + 637, + 637, + 637, + 637, + 637 + ], + "isboss": 0, + "ghname": "npc_ghname_1" + }, + "15437": { + "npcId": 15437, + "attr": {}, + "npclist": "4009_248_90072#4015_248_90070#4013_248_90071#4010_248_90072#4005_248_90074#4003_248_90073", + "npcLv": [ + 638, + 638, + 638, + 638, + 638, + 638 + ], + "isboss": 0, + "ghname": "npc_ghname_2" + }, + "15438": { + "npcId": 15438, + "attr": {}, + "npclist": "4002_249_90072#4012_249_90070#5002_249_90071#5005_249_90072#3009_249_90074#4011_249_90073", + "npcLv": [ + 639, + 639, + 639, + 639, + 639, + 639 + ], + "isboss": 0, + "ghname": "npc_ghname_3" + }, + "15439": { + "npcId": 15439, + "attr": {}, + "npclist": "3013_249_90072#3005_249_90070#3014_249_90071#4013_249_90072#3011_249_90074#5004_249_90073", + "npcLv": [ + 640, + 640, + 640, + 640, + 640, + 640 + ], + "isboss": 0, + "ghname": "npc_ghname_4" + }, + "15440": { + "npcId": 15440, + "attr": {}, + "npclist": "4014_249_90072#4007_249_90070#4011_249_90071#4012_249_90072#5002_249_90074#4010_249_90073", + "npcLv": [ + 641, + 641, + 641, + 641, + 641, + 641 + ], + "isboss": 0, + "ghname": "npc_ghname_5" + }, + "15441": { + "npcId": 15441, + "attr": {}, + "npclist": "4008_249_90072#4015_249_90070#5003_249_90071#4006_249_90072#4009_249_90074#3002_249_90073", + "npcLv": [ + 642, + 642, + 642, + 642, + 642, + 642 + ], + "isboss": 0, + "ghname": "npc_ghname_6" + }, + "15442": { + "npcId": 15442, + "attr": {}, + "npclist": "3005_250_90072#5001_250_90070#5005_250_90071#4003_250_90072#3009_250_90074#5002_250_90073", + "npcLv": [ + 643, + 643, + 643, + 643, + 643, + 643 + ], + "isboss": 0, + "ghname": "npc_ghname_1" + }, + "15443": { + "npcId": 15443, + "attr": {}, + "npclist": "4015_250_90072#4011_250_90070#4004_250_90071#5004_250_90072#4012_250_90074#4001_250_90073", + "npcLv": [ + 644, + 644, + 644, + 644, + 644, + 644 + ], + "isboss": 0, + "ghname": "npc_ghname_2" + }, + "15444": { + "npcId": 15444, + "attr": {}, + "npclist": "4007_250_90072#3009_250_90070#5003_250_90071#3013_250_90072#4006_250_90074#4009_250_90073", + "npcLv": [ + 645, + 645, + 645, + 645, + 645, + 645 + ], + "isboss": 0, + "ghname": "npc_ghname_3" + }, + "15445": { + "npcId": 15445, + "attr": {}, + "npclist": "3010_250_90072#4014_250_90070#4002_250_90071#4005_250_90072#4013_250_90074#3007_250_90073", + "npcLv": [ + 646, + 646, + 646, + 646, + 646, + 646 + ], + "isboss": 0, + "ghname": "npc_ghname_4" + }, + "15446": { + "npcId": 15446, + "attr": {}, + "npclist": "4011_251_90072#5004_251_90070#4015_251_90071#5005_251_90072#5002_251_90074#4012_251_90073", + "npcLv": [ + 647, + 647, + 647, + 647, + 647, + 647 + ], + "isboss": 0, + "ghname": "npc_ghname_5" + }, + "15447": { + "npcId": 15447, + "attr": {}, + "npclist": "3009_251_90072#3015_251_90070#4010_251_90071#4014_251_90072#3002_251_90074#4013_251_90073", + "npcLv": [ + 648, + 648, + 648, + 648, + 648, + 648 + ], + "isboss": 0, + "ghname": "npc_ghname_6" + }, + "15448": { + "npcId": 15448, + "attr": {}, + "npclist": "5001_251_90072#5002_251_90070#3002_251_90071#4012_251_90072#3006_251_90074#2002_251_90073", + "npcLv": [ + 649, + 649, + 649, + 649, + 649, + 649 + ], + "isboss": 0, + "ghname": "npc_ghname_1" + }, + "15449": { + "npcId": 15449, + "attr": {}, + "npclist": "3011_251_90072#4009_251_90070#4011_251_90071#4015_251_90072#3001_251_90074#4006_251_90073", + "npcLv": [ + 650, + 650, + 650, + 650, + 650, + 650 + ], + "isboss": 0, + "ghname": "npc_ghname_2" + }, + "15450": { + "npcId": 15450, + "attr": {}, + "npclist": "4010_252_90072#3013_252_90070#4008_252_90071#3010_252_90072#4014_252_90074#3012_252_90073", + "npcLv": [ + 651, + 651, + 651, + 651, + 651, + 651 + ], + "isboss": 0, + "ghname": "npc_ghname_3" + }, + "15451": { + "npcId": 15451, + "attr": {}, + "npclist": "5002_252_90072#3007_252_90070#3009_252_90071#5003_252_90072#4005_252_90074#5005_252_90073", + "npcLv": [ + 652, + 652, + 652, + 652, + 652, + 652 + ], + "isboss": 0, + "ghname": "npc_ghname_4" + }, + "15452": { + "npcId": 15452, + "attr": {}, + "npclist": "4001_252_90072#3010_252_90070#4003_252_90071#5004_252_90072#4011_252_90074#4014_252_90073", + "npcLv": [ + 653, + 653, + 653, + 653, + 653, + 653 + ], + "isboss": 0, + "ghname": "npc_ghname_5" + }, + "15453": { + "npcId": 15453, + "attr": {}, + "npclist": "3007_252_90072#4013_252_90070#5002_252_90071#5005_252_90072#4015_252_90074#3001_252_90073", + "npcLv": [ + 654, + 654, + 654, + 654, + 654, + 654 + ], + "isboss": 0, + "ghname": "npc_ghname_6" + }, + "15454": { + "npcId": 15454, + "attr": {}, + "npclist": "4013_253_90072#5003_253_90070#4012_253_90071#3015_253_90072#3010_253_90074#4011_253_90073", + "npcLv": [ + 655, + 655, + 655, + 655, + 655, + 655 + ], + "isboss": 0, + "ghname": "npc_ghname_1" + }, + "15455": { + "npcId": 15455, + "attr": {}, + "npclist": "4003_253_90072#4014_253_90070#3011_253_90071#4008_253_90072#4002_253_90074#3007_253_90073", + "npcLv": [ + 656, + 656, + 656, + 656, + 656, + 656 + ], + "isboss": 0, + "ghname": "npc_ghname_2" + }, + "15456": { + "npcId": 15456, + "attr": {}, + "npclist": "3002_253_90072#3009_253_90070#4009_253_90071#5001_253_90072#5002_253_90074#4015_253_90073", + "npcLv": [ + 657, + 657, + 657, + 657, + 657, + 657 + ], + "isboss": 0, + "ghname": "npc_ghname_3" + }, + "15457": { + "npcId": 15457, + "attr": {}, + "npclist": "4012_253_90072#3005_253_90070#3009_253_90071#4010_253_90072#4014_253_90074#5004_253_90073", + "npcLv": [ + 658, + 658, + 658, + 658, + 658, + 658 + ], + "isboss": 0, + "ghname": "npc_ghname_4" + }, + "15458": { + "npcId": 15458, + "attr": {}, + "npclist": "4014_254_90072#4013_254_90070#4007_254_90071#5005_254_90072#3011_254_90074#5002_254_90073", + "npcLv": [ + 659, + 659, + 659, + 659, + 659, + 659 + ], + "isboss": 0, + "ghname": "npc_ghname_5" + }, + "15459": { + "npcId": 15459, + "attr": {}, + "npclist": "3005_254_90072#4006_254_90070#3014_254_90071#4003_254_90072#5001_254_90074#4002_254_90073", + "npcLv": [ + 660, + 660, + 660, + 660, + 660, + 660 + ], + "isboss": 0, + "ghname": "npc_ghname_6" + }, + "15460": { + "npcId": 15460, + "attr": {}, + "npclist": "5003_254_90072#4012_254_90070#4015_254_90071#4013_254_90072#4007_254_90074#3010_254_90073", + "npcLv": [ + 661, + 661, + 661, + 661, + 661, + 661 + ], + "isboss": 0, + "ghname": "npc_ghname_1" + }, + "15461": { + "npcId": 15461, + "attr": {}, + "npclist": "4014_254_90072#5002_254_90070#4011_254_90071#5004_254_90072#3014_254_90074#4009_254_90073", + "npcLv": [ + 662, + 662, + 662, + 662, + 662, + 662 + ], + "isboss": 0, + "ghname": "npc_ghname_2" + }, + "15462": { + "npcId": 15462, + "attr": {}, + "npclist": "4006_255_90072#4015_255_90070#4005_255_90071#4004_255_90072#4013_255_90074#3015_255_90073", + "npcLv": [ + 663, + 663, + 663, + 663, + 663, + 663 + ], + "isboss": 0, + "ghname": "npc_ghname_3" + }, + "15463": { + "npcId": 15463, + "attr": {}, + "npclist": "3013_255_90072#3015_255_90070#5004_255_90071#4012_255_90072#4010_255_90074#3005_255_90073", + "npcLv": [ + 664, + 664, + 664, + 664, + 664, + 664 + ], + "isboss": 0, + "ghname": "npc_ghname_4" + }, + "15464": { + "npcId": 15464, + "attr": {}, + "npclist": "4011_255_90072#4014_255_90070#5003_255_90071#3001_255_90072#5005_255_90074#4010_255_90073", + "npcLv": [ + 665, + 665, + 665, + 665, + 665, + 665 + ], + "isboss": 0, + "ghname": "npc_ghname_5" + }, + "15465": { + "npcId": 15465, + "attr": {}, + "npclist": "4015_255_90072#4005_255_90070#5002_255_90071#4002_255_90072#3005_255_90074#4013_255_90073", + "npcLv": [ + 666, + 666, + 666, + 666, + 666, + 666 + ], + "isboss": 0, + "ghname": "npc_ghname_6" + }, + "15466": { + "npcId": 15466, + "attr": {}, + "npclist": "3014_256_90072#5004_256_90070#4011_256_90071#3002_256_90072#4008_256_90074#3006_256_90073", + "npcLv": [ + 667, + 667, + 667, + 667, + 667, + 667 + ], + "isboss": 0, + "ghname": "npc_ghname_1" + }, + "15467": { + "npcId": 15467, + "attr": {}, + "npclist": "3007_256_90072#4015_256_90070#4003_256_90071#4010_256_90072#5002_256_90074#4012_256_90073", + "npcLv": [ + 668, + 668, + 668, + 668, + 668, + 668 + ], + "isboss": 0, + "ghname": "npc_ghname_2" + }, + "15468": { + "npcId": 15468, + "attr": {}, + "npclist": "3009_256_90072#4013_256_90070#3001_256_90071#4014_256_90072#2002_256_90074#4007_256_90073", + "npcLv": [ + 669, + 669, + 669, + 669, + 669, + 669 + ], + "isboss": 0, + "ghname": "npc_ghname_3" + }, + "15469": { + "npcId": 15469, + "attr": {}, + "npclist": "5002_256_90072#3006_256_90070#4006_256_90071#3013_256_90072#5003_256_90074#5005_256_90073", + "npcLv": [ + 670, + 670, + 670, + 670, + 670, + 670 + ], + "isboss": 0, + "ghname": "npc_ghname_4" + }, + "15470": { + "npcId": 15470, + "attr": {}, + "npclist": "5004_257_90072#3010_257_90070#3007_257_90071#4012_257_90072#4014_257_90074#4011_257_90073", + "npcLv": [ + 671, + 671, + 671, + 671, + 671, + 671 + ], + "isboss": 0, + "ghname": "npc_ghname_5" + }, + "15471": { + "npcId": 15471, + "attr": {}, + "npclist": "4013_257_90072#4008_257_90070#4009_257_90071#3010_257_90072#4002_257_90074#3002_257_90073", + "npcLv": [ + 672, + 672, + 672, + 672, + 672, + 672 + ], + "isboss": 0, + "ghname": "npc_ghname_6" + }, + "15472": { + "npcId": 15472, + "attr": {}, + "npclist": "3001_257_90072#4002_257_90070#5001_257_90071#4005_257_90072#5002_257_90074#4001_257_90073", + "npcLv": [ + 673, + 673, + 673, + 673, + 673, + 673 + ], + "isboss": 0, + "ghname": "npc_ghname_1" + }, + "15473": { + "npcId": 15473, + "attr": {}, + "npclist": "3013_257_90072#4013_257_90070#4007_257_90071#4015_257_90072#5005_257_90074#4014_257_90073", + "npcLv": [ + 674, + 674, + 674, + 674, + 674, + 674 + ], + "isboss": 0, + "ghname": "npc_ghname_2" + }, + "15474": { + "npcId": 15474, + "attr": {}, + "npclist": "4009_258_90072#4010_258_90070#5004_258_90071#4011_258_90072#4012_258_90074#4003_258_90073", + "npcLv": [ + 675, + 675, + 675, + 675, + 675, + 675 + ], + "isboss": 0, + "ghname": "npc_ghname_3" + }, + "15475": { + "npcId": 15475, + "attr": {}, + "npclist": "4002_258_90072#5001_258_90070#3007_258_90071#5003_258_90072#3007_258_90074#4015_258_90073", + "npcLv": [ + 676, + 676, + 676, + 676, + 676, + 676 + ], + "isboss": 0, + "ghname": "npc_ghname_4" + }, + "15476": { + "npcId": 15476, + "attr": {}, + "npclist": "4008_258_90072#4014_258_90070#4013_258_90071#5005_258_90072#5002_258_90074#3011_258_90073", + "npcLv": [ + 677, + 677, + 677, + 677, + 677, + 677 + ], + "isboss": 0, + "ghname": "npc_ghname_5" + }, + "15477": { + "npcId": 15477, + "attr": {}, + "npclist": "4001_258_90072#4003_258_90070#4011_258_90071#4006_258_90072#4005_258_90074#4012_258_90073", + "npcLv": [ + 678, + 678, + 678, + 678, + 678, + 678 + ], + "isboss": 0, + "ghname": "npc_ghname_6" + }, + "15478": { + "npcId": 15478, + "attr": {}, + "npclist": "4014_259_90072#5003_259_90070#4013_259_90071#3010_259_90072#5001_259_90074#5004_259_90073", + "npcLv": [ + 679, + 679, + 679, + 679, + 679, + 679 + ], + "isboss": 0, + "ghname": "npc_ghname_1" + }, + "15479": { + "npcId": 15479, + "attr": {}, + "npclist": "4010_259_90072#4014_259_90070#4008_259_90071#4004_259_90072#4013_259_90074#3007_259_90073", + "npcLv": [ + 680, + 680, + 680, + 680, + 680, + 680 + ], + "isboss": 0, + "ghname": "npc_ghname_2" + }, + "15480": { + "npcId": 15480, + "attr": {}, + "npclist": "4015_259_90072#3015_259_90070#4002_259_90071#3005_259_90072#3001_259_90074#3002_259_90073", + "npcLv": [ + 681, + 681, + 681, + 681, + 681, + 681 + ], + "isboss": 0, + "ghname": "npc_ghname_3" + }, + "15481": { + "npcId": 15481, + "attr": {}, + "npclist": "4011_259_90072#5002_259_90070#5004_259_90071#4014_259_90072#3014_259_90074#4012_259_90073", + "npcLv": [ + 682, + 682, + 682, + 682, + 682, + 682 + ], + "isboss": 0, + "ghname": "npc_ghname_4" + }, + "15482": { + "npcId": 15482, + "attr": {}, + "npclist": "4007_260_90072#3010_260_90070#4009_260_90071#3005_260_90072#3009_260_90074#5005_260_90073", + "npcLv": [ + 683, + 683, + 683, + 683, + 683, + 683 + ], + "isboss": 0, + "ghname": "npc_ghname_5" + }, + "15483": { + "npcId": 15483, + "attr": {}, + "npclist": "5003_260_90072#4013_260_90070#4015_260_90071#3011_260_90072#4010_260_90074#5001_260_90073", + "npcLv": [ + 684, + 684, + 684, + 684, + 684, + 684 + ], + "isboss": 0, + "ghname": "npc_ghname_6" + }, + "15484": { + "npcId": 15484, + "attr": {}, + "npclist": "5004_260_90072#4004_260_90070#4006_260_90071#3013_260_90072#4015_260_90074#4003_260_90073", + "npcLv": [ + 685, + 685, + 685, + 685, + 685, + 685 + ], + "isboss": 0, + "ghname": "npc_ghname_1" + }, + "15485": { + "npcId": 15485, + "attr": {}, + "npclist": "3006_260_90072#4012_260_90070#3002_260_90071#5005_260_90072#4006_260_90074#5002_260_90073", + "npcLv": [ + 686, + 686, + 686, + 686, + 686, + 686 + ], + "isboss": 0, + "ghname": "npc_ghname_2" + }, + "15486": { + "npcId": 15486, + "attr": {}, + "npclist": "4013_260_90072#4011_260_90070#4007_260_90071#4009_260_90072#4014_260_90074#3001_260_90073", + "npcLv": [ + 687, + 687, + 687, + 687, + 687, + 687 + ], + "isboss": 0, + "ghname": "npc_ghname_3" + }, + "15487": { + "npcId": 15487, + "attr": {}, + "npclist": "3011_260_90072#3005_260_90070#5002_260_90071#5003_260_90072#4004_260_90074#4010_260_90073", + "npcLv": [ + 688, + 688, + 688, + 688, + 688, + 688 + ], + "isboss": 0, + "ghname": "npc_ghname_4" + }, + "15488": { + "npcId": 15488, + "attr": {}, + "npclist": "5004_260_90072#4003_260_90070#4013_260_90071#4011_260_90072#4008_260_90074#4015_260_90073", + "npcLv": [ + 689, + 689, + 689, + 689, + 689, + 689 + ], + "isboss": 0, + "ghname": "npc_ghname_5" + }, + "15489": { + "npcId": 15489, + "attr": {}, + "npclist": "3013_260_90072#5001_260_90070#4014_260_90071#4002_260_90072#5003_260_90074#4009_260_90073", + "npcLv": [ + 690, + 690, + 690, + 690, + 690, + 690 + ], + "isboss": 0, + "ghname": "npc_ghname_6" + }, + "15490": { + "npcId": 15490, + "attr": {}, + "npclist": "4014_260_90072#3015_260_90070#5005_260_90071#5004_260_90072#3010_260_90074#4011_260_90073", + "npcLv": [ + 691, + 691, + 691, + 691, + 691, + 691 + ], + "isboss": 0, + "ghname": "npc_ghname_1" + }, + "15491": { + "npcId": 15491, + "attr": {}, + "npclist": "4013_261_90072#4015_261_90070#4010_261_90071#3007_261_90072#3002_261_90074#3014_261_90073", + "npcLv": [ + 692, + 692, + 692, + 692, + 692, + 692 + ], + "isboss": 0, + "ghname": "npc_ghname_2" + }, + "15492": { + "npcId": 15492, + "attr": {}, + "npclist": "5001_261_90072#5002_261_90070#4012_261_90071#4007_261_90072#4002_261_90074#4004_261_90073", + "npcLv": [ + 693, + 693, + 693, + 693, + 693, + 693 + ], + "isboss": 0, + "ghname": "npc_ghname_3" + }, + "15493": { + "npcId": 15493, + "attr": {}, + "npclist": "4015_261_90072#4014_261_90070#3010_261_90071#4011_261_90072#4013_261_90074#5003_261_90073", + "npcLv": [ + 694, + 694, + 694, + 694, + 694, + 694 + ], + "isboss": 0, + "ghname": "npc_ghname_4" + }, + "15494": { + "npcId": 15494, + "attr": {}, + "npclist": "4003_261_90072#4010_261_90070#4001_261_90071#4005_261_90072#5005_261_90074#5004_261_90073", + "npcLv": [ + 695, + 695, + 695, + 695, + 695, + 695 + ], + "isboss": 0, + "ghname": "npc_ghname_5" + }, + "15495": { + "npcId": 15495, + "attr": {}, + "npclist": "3010_260_90072#4015_260_90070#3007_260_90071#5003_260_90072#5002_260_90074#4002_260_90073", + "npcLv": [ + 696, + 696, + 696, + 696, + 696, + 696 + ], + "isboss": 0, + "ghname": "npc_ghname_6" + }, + "15496": { + "npcId": 15496, + "attr": {}, + "npclist": "4012_260_90072#4009_260_90070#4014_260_90071#3009_260_90072#3002_260_90074#5005_260_90073", + "npcLv": [ + 697, + 697, + 697, + 697, + 697, + 697 + ], + "isboss": 0, + "ghname": "npc_ghname_1" + }, + "15497": { + "npcId": 15497, + "attr": {}, + "npclist": "3007_260_90072#4008_260_90070#5004_260_90071#5002_260_90072#4006_260_90074#4015_260_90073", + "npcLv": [ + 698, + 698, + 698, + 698, + 698, + 698 + ], + "isboss": 0, + "ghname": "npc_ghname_2" + }, + "15498": { + "npcId": 15498, + "attr": {}, + "npclist": "4005_260_90072#3010_260_90070#5001_260_90071#4015_260_90072#3013_260_90074#4012_260_90073", + "npcLv": [ + 699, + 699, + 699, + 699, + 699, + 699 + ], + "isboss": 0, + "ghname": "npc_ghname_3" + }, + "15499": { + "npcId": 15499, + "attr": {}, + "npclist": "5004_260_90072#5002_260_90070#3012_260_90071#4010_260_90072#4013_260_90074#5003_260_90073", + "npcLv": [ + 700, + 700, + 700, + 700, + 700, + 700 + ], + "isboss": 0, + "ghname": "npc_ghname_4" + }, + "15500": { + "npcId": 15500, + "attr": {}, + "npclist": "5002_260_90072#4004_260_90070#4011_260_90071#5005_260_90072#5001_260_90074#4007_260_90073", + "npcLv": [ + 701, + 701, + 701, + 701, + 701, + 701 + ], + "isboss": 0, + "ghname": "npc_ghname_5" + }, + "15501": { + "npcId": 15501, + "attr": {}, + "npclist": "4003_261_90072#5004_261_90070#3006_261_90071#4007_261_90070#4014_261_90074#5005_261_90073", + "npcLv": [ + 704, + 704, + 704, + 704, + 704, + 704 + ], + "isboss": 0, + "ghname": "npc_ghname_6" + }, + "15502": { + "npcId": 15502, + "attr": {}, + "npclist": "5002_261_90072#3014_261_90070#5005_261_90071#4010_261_90072#4009_261_90074#4004_261_90073", + "npcLv": [ + 707, + 707, + 707, + 707, + 707, + 707 + ], + "isboss": 0, + "ghname": "npc_ghname_1" + }, + "15503": { + "npcId": 15503, + "attr": {}, + "npclist": "4008_261_90072#5005_261_90070#4005_261_90071#4015_261_90072#4012_261_90074#4013_261_90073", + "npcLv": [ + 710, + 710, + 710, + 710, + 710, + 710 + ], + "isboss": 0, + "ghname": "npc_ghname_2" + }, + "15504": { + "npcId": 15504, + "attr": {}, + "npclist": "5005_262_90072#3010_262_90070#4011_262_90071#4003_262_90072#5001_262_90074#5003_262_90073", + "npcLv": [ + 713, + 713, + 713, + 713, + 713, + 713 + ], + "isboss": 0, + "ghname": "npc_ghname_3" + }, + "15505": { + "npcId": 15505, + "attr": {}, + "npclist": "4010_262_90072#5002_262_90070#3013_262_90071#3002_262_90072#4014_262_90074#3012_262_90073", + "npcLv": [ + 716, + 716, + 716, + 716, + 716, + 716 + ], + "isboss": 0, + "ghname": "npc_ghname_4" + }, + "15506": { + "npcId": 15506, + "attr": {}, + "npclist": "3014_262_90072#4005_262_90070#4015_262_90071#4012_262_90072#3006_262_90074#4009_262_90073", + "npcLv": [ + 719, + 719, + 719, + 719, + 719, + 719 + ], + "isboss": 0, + "ghname": "npc_ghname_5" + }, + "15507": { + "npcId": 15507, + "attr": {}, + "npclist": "4014_263_90072#4013_263_90070#4004_263_90071#5005_263_90072#5004_263_90074#3002_263_90073", + "npcLv": [ + 722, + 722, + 722, + 722, + 722, + 722 + ], + "isboss": 0, + "ghname": "npc_ghname_6" + }, + "15508": { + "npcId": 15508, + "attr": {}, + "npclist": "4011_263_90072#3005_263_90070#5003_263_90071#4008_263_90072#5001_263_90074#4003_263_90073", + "npcLv": [ + 725, + 725, + 725, + 725, + 725, + 725 + ], + "isboss": 0, + "ghname": "npc_ghname_1" + }, + "15509": { + "npcId": 15509, + "attr": {}, + "npclist": "4012_263_90072#4007_263_90070#4002_263_90071#3013_263_90072#4015_263_90074#3004_263_90073", + "npcLv": [ + 728, + 728, + 728, + 728, + 728, + 728 + ], + "isboss": 0, + "ghname": "npc_ghname_2" + }, + "15510": { + "npcId": 15510, + "attr": {}, + "npclist": "4004_264_90072#4006_264_90070#4009_264_90071#5002_264_90072#4010_264_90074#5004_264_90073", + "npcLv": [ + 731, + 731, + 731, + 731, + 731, + 731 + ], + "isboss": 0, + "ghname": "npc_ghname_3" + }, + "15511": { + "npcId": 15511, + "attr": {}, + "npclist": "4013_264_90072#4001_264_90070#3007_264_90071#4011_264_90072#3013_264_90074#4008_264_90073", + "npcLv": [ + 734, + 734, + 734, + 734, + 734, + 734 + ], + "isboss": 0, + "ghname": "npc_ghname_4" + }, + "15512": { + "npcId": 15512, + "attr": {}, + "npclist": "3004_264_90072#4014_264_90070#5004_264_90071#5003_264_90072#5005_264_90074#5001_264_90073", + "npcLv": [ + 737, + 737, + 737, + 737, + 737, + 737 + ], + "isboss": 0, + "ghname": "npc_ghname_5" + }, + "15513": { + "npcId": 15513, + "attr": {}, + "npclist": "5002_265_90072#2002_265_90070#4012_265_90071#3009_265_90072#4005_265_90074#4015_265_90073", + "npcLv": [ + 740, + 740, + 740, + 740, + 740, + 740 + ], + "isboss": 0, + "ghname": "npc_ghname_6" + }, + "15514": { + "npcId": 15514, + "attr": {}, + "npclist": "4009_265_90072#4013_265_90070#4003_265_90071#4008_265_90072#4014_265_90074#4010_265_90073", + "npcLv": [ + 743, + 743, + 743, + 743, + 743, + 743 + ], + "isboss": 0, + "ghname": "npc_ghname_1" + }, + "15515": { + "npcId": 15515, + "attr": {}, + "npclist": "3012_265_90072#3008_265_90070#3002_265_90071#5004_265_90072#4012_265_90074#3013_265_90073", + "npcLv": [ + 746, + 746, + 746, + 746, + 746, + 746 + ], + "isboss": 0, + "ghname": "npc_ghname_2" + }, + "15516": { + "npcId": 15516, + "attr": {}, + "npclist": "4007_266_90072#4014_266_90070#4004_266_90071#4013_266_90072#3005_266_90074#5003_266_90073", + "npcLv": [ + 749, + 749, + 749, + 749, + 749, + 749 + ], + "isboss": 0, + "ghname": "npc_ghname_3" + }, + "15517": { + "npcId": 15517, + "attr": {}, + "npclist": "5001_266_90072#4015_266_90070#3013_266_90071#5002_266_90072#5005_266_90074#4005_266_90073", + "npcLv": [ + 752, + 752, + 752, + 752, + 752, + 752 + ], + "isboss": 0, + "ghname": "npc_ghname_4" + }, + "15518": { + "npcId": 15518, + "attr": {}, + "npclist": "4012_266_90072#4003_266_90070#4009_266_90071#4010_266_90072#4006_266_90074#4011_266_90073", + "npcLv": [ + 755, + 755, + 755, + 755, + 755, + 755 + ], + "isboss": 0, + "ghname": "npc_ghname_5" + }, + "15519": { + "npcId": 15519, + "attr": {}, + "npclist": "4008_267_90072#4002_267_90070#5003_267_90071#3015_267_90072#4004_267_90074#5004_267_90073", + "npcLv": [ + 758, + 758, + 758, + 758, + 758, + 758 + ], + "isboss": 0, + "ghname": "npc_ghname_6" + }, + "15520": { + "npcId": 15520, + "attr": {}, + "npclist": "3013_267_90072#3012_267_90070#4011_267_90071#5005_267_90072#5002_267_90074#4013_267_90073", + "npcLv": [ + 761, + 761, + 761, + 761, + 761, + 761 + ], + "isboss": 0, + "ghname": "npc_ghname_1" + }, + "15521": { + "npcId": 15521, + "attr": {}, + "npclist": "4014_267_90072#5004_267_90070#4012_267_90071#4005_267_90072#4009_267_90074#3009_267_90073", + "npcLv": [ + 764, + 764, + 764, + 764, + 764, + 764 + ], + "isboss": 0, + "ghname": "npc_ghname_2" + }, + "15522": { + "npcId": 15522, + "attr": {}, + "npclist": "3015_268_90072#4010_268_90070#4007_268_90071#4015_268_90072#3014_268_90074#3001_268_90073", + "npcLv": [ + 767, + 767, + 767, + 767, + 767, + 767 + ], + "isboss": 0, + "ghname": "npc_ghname_3" + }, + "15523": { + "npcId": 15523, + "attr": {}, + "npclist": "4003_268_90072#4008_268_90070#5002_268_90071#3007_268_90072#3010_268_90074#4004_268_90073", + "npcLv": [ + 770, + 770, + 770, + 770, + 770, + 770 + ], + "isboss": 0, + "ghname": "npc_ghname_4" + }, + "15524": { + "npcId": 15524, + "attr": {}, + "npclist": "5003_268_90072#4005_268_90070#5005_268_90071#3005_268_90072#4013_268_90074#4006_268_90073", + "npcLv": [ + 773, + 773, + 773, + 773, + 773, + 773 + ], + "isboss": 0, + "ghname": "npc_ghname_5" + }, + "15525": { + "npcId": 15525, + "attr": {}, + "npclist": "5002_269_90072#4014_269_90070#3013_269_90071#4006_269_90072#4012_269_90074#4015_269_90073", + "npcLv": [ + 776, + 776, + 776, + 776, + 776, + 776 + ], + "isboss": 0, + "ghname": "npc_ghname_6" + }, + "15526": { + "npcId": 15526, + "attr": {}, + "npclist": "4010_269_90072#3009_269_90070#4003_269_90071#5004_269_90072#3002_269_90074#3012_269_90073", + "npcLv": [ + 779, + 779, + 779, + 779, + 779, + 779 + ], + "isboss": 0, + "ghname": "npc_ghname_1" + }, + "15527": { + "npcId": 15527, + "attr": {}, + "npclist": "3001_269_90072#4011_269_90070#5001_269_90071#4005_269_90072#3011_269_90074#4009_269_90073", + "npcLv": [ + 782, + 782, + 782, + 782, + 782, + 782 + ], + "isboss": 0, + "ghname": "npc_ghname_2" + }, + "15528": { + "npcId": 15528, + "attr": {}, + "npclist": "3006_270_90072#4013_270_90070#4012_270_90071#4014_270_90072#5005_270_90074#4008_270_90073", + "npcLv": [ + 785, + 785, + 785, + 785, + 785, + 785 + ], + "isboss": 0, + "ghname": "npc_ghname_3" + }, + "15529": { + "npcId": 15529, + "attr": {}, + "npclist": "4015_270_90072#4004_270_90070#3015_270_90071#3013_270_90072#5001_270_90074#3010_270_90073", + "npcLv": [ + 788, + 788, + 788, + 788, + 788, + 788 + ], + "isboss": 0, + "ghname": "npc_ghname_4" + }, + "15530": { + "npcId": 15530, + "attr": {}, + "npclist": "4013_270_90072#4001_270_90070#4006_270_90071#5003_270_90072#4014_270_90074#4005_270_90073", + "npcLv": [ + 791, + 791, + 791, + 791, + 791, + 791 + ], + "isboss": 0, + "ghname": "npc_ghname_5" + }, + "15531": { + "npcId": 15531, + "attr": {}, + "npclist": "4008_271_90072#4012_271_90070#4002_271_90071#4009_271_90072#2002_271_90074#5005_271_90073", + "npcLv": [ + 794, + 794, + 794, + 794, + 794, + 794 + ], + "isboss": 0, + "ghname": "npc_ghname_6" + }, + "15532": { + "npcId": 15532, + "attr": {}, + "npclist": "4011_271_90072#4015_271_90070#5002_271_90071#4003_271_90072#5005_271_90074#4014_271_90073", + "npcLv": [ + 797, + 797, + 797, + 797, + 797, + 797 + ], + "isboss": 0, + "ghname": "npc_ghname_1" + }, + "15533": { + "npcId": 15533, + "attr": {}, + "npclist": "3008_271_90072#4006_271_90070#5003_271_90071#4010_271_90072#5001_271_90074#3010_271_90073", + "npcLv": [ + 800, + 800, + 800, + 800, + 800, + 800 + ], + "isboss": 0, + "ghname": "npc_ghname_2" + }, + "15534": { + "npcId": 15534, + "attr": {}, + "npclist": "4009_272_90072#3012_272_90070#4004_272_90071#4013_272_90072#4014_272_90074#4010_272_90073", + "npcLv": [ + 803, + 803, + 803, + 803, + 803, + 803 + ], + "isboss": 0, + "ghname": "npc_ghname_3" + }, + "15535": { + "npcId": 15535, + "attr": {}, + "npclist": "5005_272_90072#5004_272_90070#4012_272_90071#3005_272_90072#3015_272_90074#4003_272_90073", + "npcLv": [ + 806, + 806, + 806, + 806, + 806, + 806 + ], + "isboss": 0, + "ghname": "npc_ghname_4" + }, + "15536": { + "npcId": 15536, + "attr": {}, + "npclist": "4006_272_90072#4005_272_90070#3014_272_90071#5002_272_90072#4013_272_90074#3008_272_90073", + "npcLv": [ + 809, + 809, + 809, + 809, + 809, + 809 + ], + "isboss": 0, + "ghname": "npc_ghname_5" + }, + "15537": { + "npcId": 15537, + "attr": {}, + "npclist": "4014_273_90072#3005_273_90070#4008_273_90071#4012_273_90072#4007_273_90074#3001_273_90073", + "npcLv": [ + 812, + 812, + 812, + 812, + 812, + 812 + ], + "isboss": 0, + "ghname": "npc_ghname_6" + }, + "15538": { + "npcId": 15538, + "attr": {}, + "npclist": "4003_273_90072#4015_273_90070#4009_273_90071#4011_273_90072#4002_273_90074#4008_273_90073", + "npcLv": [ + 815, + 815, + 815, + 815, + 815, + 815 + ], + "isboss": 0, + "ghname": "npc_ghname_1" + }, + "15539": { + "npcId": 15539, + "attr": {}, + "npclist": "5001_273_90072#3014_273_90070#4014_273_90071#4005_273_90072#5003_273_90074#4013_273_90073", + "npcLv": [ + 818, + 818, + 818, + 818, + 818, + 818 + ], + "isboss": 0, + "ghname": "npc_ghname_2" + }, + "15540": { + "npcId": 15540, + "attr": {}, + "npclist": "3006_274_90072#5002_274_90070#3010_274_90071#4012_274_90072#3007_274_90074#3015_274_90073", + "npcLv": [ + 821, + 821, + 821, + 821, + 821, + 821 + ], + "isboss": 0, + "ghname": "npc_ghname_3" + }, + "15541": { + "npcId": 15541, + "attr": {}, + "npclist": "5005_274_90072#5001_274_90070#4010_274_90071#4001_274_90072#4009_274_90074#5004_274_90073", + "npcLv": [ + 824, + 824, + 824, + 824, + 824, + 824 + ], + "isboss": 0, + "ghname": "npc_ghname_4" + }, + "15542": { + "npcId": 15542, + "attr": {}, + "npclist": "4004_274_90072#4013_274_90070#4003_274_90071#3010_274_90072#4008_274_90074#4015_274_90073", + "npcLv": [ + 827, + 827, + 827, + 827, + 827, + 827 + ], + "isboss": 0, + "ghname": "npc_ghname_5" + }, + "15543": { + "npcId": 15543, + "attr": {}, + "npclist": "3005_275_90072#4006_275_90070#3002_275_90071#4014_275_90072#4012_275_90074#4009_275_90073", + "npcLv": [ + 830, + 830, + 830, + 830, + 830, + 830 + ], + "isboss": 0, + "ghname": "npc_ghname_6" + }, + "15544": { + "npcId": 15544, + "attr": {}, + "npclist": "4010_275_90072#3006_275_90070#5005_275_90071#4008_275_90072#5002_275_90074#3013_275_90073", + "npcLv": [ + 833, + 833, + 833, + 833, + 833, + 833 + ], + "isboss": 0, + "ghname": "npc_ghname_1" + }, + "15545": { + "npcId": 15545, + "attr": {}, + "npclist": "3011_275_90072#5004_275_90070#4011_275_90071#5001_275_90072#3010_275_90074#5003_275_90073", + "npcLv": [ + 836, + 836, + 836, + 836, + 836, + 836 + ], + "isboss": 0, + "ghname": "npc_ghname_2" + }, + "15546": { + "npcId": 15546, + "attr": {}, + "npclist": "4013_276_90072#4012_276_90070#4004_276_90071#4009_276_90072#4003_276_90074#4014_276_90073", + "npcLv": [ + 839, + 839, + 839, + 839, + 839, + 839 + ], + "isboss": 0, + "ghname": "npc_ghname_3" + }, + "15547": { + "npcId": 15547, + "attr": {}, + "npclist": "3012_276_90072#3010_276_90070#4015_276_90071#4002_276_90072#3007_276_90074#4005_276_90073", + "npcLv": [ + 842, + 842, + 842, + 842, + 842, + 842 + ], + "isboss": 0, + "ghname": "npc_ghname_4" + }, + "15548": { + "npcId": 15548, + "attr": {}, + "npclist": "4014_276_90072#4009_276_90070#4011_276_90071#3013_276_90072#3005_276_90074#5001_276_90073", + "npcLv": [ + 845, + 845, + 845, + 845, + 845, + 845 + ], + "isboss": 0, + "ghname": "npc_ghname_5" + }, + "15549": { + "npcId": 15549, + "attr": {}, + "npclist": "3010_277_90072#4008_277_90070#3007_277_90071#5003_277_90072#5005_277_90074#5002_277_90073", + "npcLv": [ + 848, + 848, + 848, + 848, + 848, + 848 + ], + "isboss": 0, + "ghname": "npc_ghname_6" + }, + "15550": { + "npcId": 15550, + "attr": {}, + "npclist": "3009_275_90072#4013_275_90070#3005_275_90071#4006_275_90072#3001_275_90074#3011_275_90073", + "npcLv": [ + 853, + 853, + 853, + 853, + 853, + 853 + ], + "isboss": 0, + "ghname": "npc_ghname_1" + }, + "15551": { + "npcId": 15551, + "attr": {}, + "npclist": "4012_275_90072#3011_275_90070#4015_275_90071#5005_275_90072#4014_275_90074#3002_275_90073", + "npcLv": [ + 858, + 858, + 858, + 858, + 858, + 858 + ], + "isboss": 0, + "ghname": "npc_ghname_2" + }, + "15552": { + "npcId": 15552, + "attr": {}, + "npclist": "4009_276_90072#2002_276_90070#4008_276_90071#4010_276_90072#4004_276_90074#4007_276_90073", + "npcLv": [ + 863, + 863, + 863, + 863, + 863, + 863 + ], + "isboss": 0, + "ghname": "npc_ghname_3" + }, + "15553": { + "npcId": 15553, + "attr": {}, + "npclist": "5001_276_90072#4011_276_90070#3015_276_90071#3009_276_90072#5002_276_90074#5003_276_90073", + "npcLv": [ + 868, + 868, + 868, + 868, + 868, + 868 + ], + "isboss": 0, + "ghname": "npc_ghname_4" + }, + "15554": { + "npcId": 15554, + "attr": {}, + "npclist": "4015_277_90072#4012_277_90070#5001_277_90071#4013_277_90072#4008_277_90074#4002_277_90073", + "npcLv": [ + 873, + 873, + 873, + 873, + 873, + 873 + ], + "isboss": 0, + "ghname": "npc_ghname_5" + }, + "15555": { + "npcId": 15555, + "attr": {}, + "npclist": "3010_277_90072#3008_277_90070#4009_277_90071#4014_277_90072#4001_277_90074#4004_277_90073", + "npcLv": [ + 878, + 878, + 878, + 878, + 878, + 878 + ], + "isboss": 0, + "ghname": "npc_ghname_6" + }, + "15556": { + "npcId": 15556, + "attr": {}, + "npclist": "4014_278_90072#5002_278_90070#4015_278_90071#4012_278_90072#5004_278_90074#3005_278_90073", + "npcLv": [ + 883, + 883, + 883, + 883, + 883, + 883 + ], + "isboss": 0, + "ghname": "npc_ghname_1" + }, + "15557": { + "npcId": 15557, + "attr": {}, + "npclist": "3009_278_90072#5001_278_90070#3013_278_90071#5003_278_90072#4009_278_90074#4013_278_90073", + "npcLv": [ + 888, + 888, + 888, + 888, + 888, + 888 + ], + "isboss": 0, + "ghname": "npc_ghname_2" + }, + "15558": { + "npcId": 15558, + "attr": {}, + "npclist": "3007_279_90072#4008_279_90070#4013_279_90071#4003_279_90072#3008_279_90074#3012_279_90073", + "npcLv": [ + 893, + 893, + 893, + 893, + 893, + 893 + ], + "isboss": 0, + "ghname": "npc_ghname_3" + }, + "15559": { + "npcId": 15559, + "attr": {}, + "npclist": "5005_279_90072#4001_279_90070#3013_279_90071#3007_279_90072#3010_279_90074#3011_279_90073", + "npcLv": [ + 898, + 898, + 898, + 898, + 898, + 898 + ], + "isboss": 0, + "ghname": "npc_ghname_4" + }, + "15560": { + "npcId": 15560, + "attr": {}, + "npclist": "4013_280_90072#4014_280_90070#5004_280_90071#5002_280_90072#4012_280_90074#4010_280_90073", + "npcLv": [ + 903, + 903, + 903, + 903, + 903, + 903 + ], + "isboss": 0, + "ghname": "npc_ghname_5" + }, + "15561": { + "npcId": 15561, + "attr": {}, + "npclist": "5001_280_90072#4004_280_90070#4002_280_90071#4011_280_90072#4006_280_90074#3002_280_90073", + "npcLv": [ + 908, + 908, + 908, + 908, + 908, + 908 + ], + "isboss": 0, + "ghname": "npc_ghname_6" + }, + "15562": { + "npcId": 15562, + "attr": {}, + "npclist": "4008_281_90072#4013_281_90070#4005_281_90071#5005_281_90072#3014_281_90074#3008_281_90073", + "npcLv": [ + 913, + 913, + 913, + 913, + 913, + 913 + ], + "isboss": 0, + "ghname": "npc_ghname_1" + }, + "15563": { + "npcId": 15563, + "attr": {}, + "npclist": "3013_281_90072#3010_281_90070#4007_281_90071#4004_281_90072#4014_281_90074#4009_281_90073", + "npcLv": [ + 918, + 918, + 918, + 918, + 918, + 918 + ], + "isboss": 0, + "ghname": "npc_ghname_2" + }, + "15564": { + "npcId": 15564, + "attr": {}, + "npclist": "4014_282_90072#4012_282_90070#3007_282_90071#5001_282_90072#4013_282_90074#4015_282_90073", + "npcLv": [ + 923, + 923, + 923, + 923, + 923, + 923 + ], + "isboss": 0, + "ghname": "npc_ghname_3" + }, + "15565": { + "npcId": 15565, + "attr": {}, + "npclist": "5003_282_90072#3013_282_90070#4008_282_90071#4003_282_90072#5002_282_90074#5004_282_90073", + "npcLv": [ + 928, + 928, + 928, + 928, + 928, + 928 + ], + "isboss": 0, + "ghname": "npc_ghname_4" + }, + "15566": { + "npcId": 15566, + "attr": {}, + "npclist": "4011_283_90072#4002_283_90070#3007_283_90071#4010_283_90072#4009_283_90074#4004_283_90073", + "npcLv": [ + 933, + 933, + 933, + 933, + 933, + 933 + ], + "isboss": 0, + "ghname": "npc_ghname_5" + }, + "15567": { + "npcId": 15567, + "attr": {}, + "npclist": "3001_283_90072#4014_283_90070#4015_283_90071#3009_283_90072#3013_283_90074#4013_283_90073", + "npcLv": [ + 938, + 938, + 938, + 938, + 938, + 938 + ], + "isboss": 0, + "ghname": "npc_ghname_6" + }, + "15568": { + "npcId": 15568, + "attr": {}, + "npclist": "5002_284_90072#4012_284_90070#4011_284_90071#3010_284_90072#3005_284_90074#5005_284_90073", + "npcLv": [ + 943, + 943, + 943, + 943, + 943, + 943 + ], + "isboss": 0, + "ghname": "npc_ghname_1" + }, + "15569": { + "npcId": 15569, + "attr": {}, + "npclist": "3015_284_90072#3012_284_90070#3002_284_90071#4014_284_90072#4005_284_90074#4008_284_90073", + "npcLv": [ + 948, + 948, + 948, + 948, + 948, + 948 + ], + "isboss": 0, + "ghname": "npc_ghname_2" + }, + "15570": { + "npcId": 15570, + "attr": {}, + "npclist": "4010_285_90072#4013_285_90070#3010_285_90071#4009_285_90072#5001_285_90074#4003_285_90073", + "npcLv": [ + 953, + 953, + 953, + 953, + 953, + 953 + ], + "isboss": 0, + "ghname": "npc_ghname_3" + }, + "15571": { + "npcId": 15571, + "attr": {}, + "npclist": "4007_285_90072#4004_285_90070#5003_285_90071#5004_285_90072#2002_285_90074#3011_285_90073", + "npcLv": [ + 958, + 958, + 958, + 958, + 958, + 958 + ], + "isboss": 0, + "ghname": "npc_ghname_4" + }, + "15572": { + "npcId": 15572, + "attr": {}, + "npclist": "4013_286_90072#4015_286_90070#4012_286_90071#5002_286_90072#4014_286_90074#5003_286_90073", + "npcLv": [ + 963, + 963, + 963, + 963, + 963, + 963 + ], + "isboss": 0, + "ghname": "npc_ghname_5" + }, + "15573": { + "npcId": 15573, + "attr": {}, + "npclist": "4001_286_90072#4002_286_90070#5001_286_90071#4004_286_90072#5005_286_90074#3009_286_90073", + "npcLv": [ + 968, + 968, + 968, + 968, + 968, + 968 + ], + "isboss": 0, + "ghname": "npc_ghname_6" + }, + "15574": { + "npcId": 15574, + "attr": {}, + "npclist": "3010_287_90072#4009_287_90070#4007_287_90071#3015_287_90072#5002_287_90074#5005_287_90073", + "npcLv": [ + 973, + 973, + 973, + 973, + 973, + 973 + ], + "isboss": 0, + "ghname": "npc_ghname_1" + }, + "15575": { + "npcId": 15575, + "attr": {}, + "npclist": "4014_287_90072#4008_287_90070#4003_287_90071#4012_287_90072#4001_287_90074#4011_287_90073", + "npcLv": [ + 978, + 978, + 978, + 978, + 978, + 978 + ], + "isboss": 0, + "ghname": "npc_ghname_2" + }, + "15576": { + "npcId": 15576, + "attr": {}, + "npclist": "4003_288_90072#5001_288_90070#4013_288_90071#4015_288_90072#5003_288_90074#4006_288_90073", + "npcLv": [ + 983, + 983, + 983, + 983, + 983, + 983 + ], + "isboss": 0, + "ghname": "npc_ghname_3" + }, + "15577": { + "npcId": 15577, + "attr": {}, + "npclist": "3005_288_90072#3007_288_90070#4010_288_90071#3005_288_90072#4013_288_90074#5002_288_90073", + "npcLv": [ + 988, + 988, + 988, + 988, + 988, + 988 + ], + "isboss": 0, + "ghname": "npc_ghname_4" + }, + "15578": { + "npcId": 15578, + "attr": {}, + "npclist": "4009_289_90072#4014_289_90070#3014_289_90071#3006_289_90072#3011_289_90074#4012_289_90073", + "npcLv": [ + 993, + 993, + 993, + 993, + 993, + 993 + ], + "isboss": 0, + "ghname": "npc_ghname_5" + }, + "15579": { + "npcId": 15579, + "attr": {}, + "npclist": "4008_289_90072#5004_289_90070#5005_289_90071#4014_289_90072#3001_289_90074#4013_289_90073", + "npcLv": [ + 998, + 998, + 998, + 998, + 998, + 998 + ], + "isboss": 0, + "ghname": "npc_ghname_6" + }, + "15580": { + "npcId": 15580, + "attr": {}, + "npclist": "3011_290_90072#4013_290_90070#5003_290_90071#5002_290_90072#4010_290_90074#4001_290_90073", + "npcLv": [ + 1003, + 1003, + 1003, + 1003, + 1003, + 1003 + ], + "isboss": 0, + "ghname": "npc_ghname_1" + }, + "15581": { + "npcId": 15581, + "attr": {}, + "npclist": "4014_291_90072#2002_291_90070#4004_291_90071#4011_291_90072#3010_291_90074#4015_291_90073", + "npcLv": [ + 1008, + 1008, + 1008, + 1008, + 1008, + 1008 + ], + "isboss": 0, + "ghname": "npc_ghname_2" + }, + "15582": { + "npcId": 15582, + "attr": {}, + "npclist": "5004_292_90072#4009_292_90070#4012_292_90071#4006_292_90072#3013_292_90074#3008_292_90073", + "npcLv": [ + 1013, + 1013, + 1013, + 1013, + 1013, + 1013 + ], + "isboss": 0, + "ghname": "npc_ghname_3" + }, + "15583": { + "npcId": 15583, + "attr": {}, + "npclist": "4013_293_90072#4005_293_90070#3005_293_90071#5005_293_90072#4003_293_90074#4014_293_90073", + "npcLv": [ + 1018, + 1018, + 1018, + 1018, + 1018, + 1018 + ], + "isboss": 0, + "ghname": "npc_ghname_4" + }, + "15584": { + "npcId": 15584, + "attr": {}, + "npclist": "5002_294_90072#4015_294_90070#4008_294_90071#4009_294_90072#3006_294_90074#3001_294_90073", + "npcLv": [ + 1023, + 1023, + 1023, + 1023, + 1023, + 1023 + ], + "isboss": 0, + "ghname": "npc_ghname_5" + }, + "15585": { + "npcId": 15585, + "attr": {}, + "npclist": "4004_295_90072#4011_295_90070#3005_295_90071#5001_295_90072#3007_295_90074#4010_295_90073", + "npcLv": [ + 1028, + 1028, + 1028, + 1028, + 1028, + 1028 + ], + "isboss": 0, + "ghname": "npc_ghname_6" + }, + "15586": { + "npcId": 15586, + "attr": {}, + "npclist": "3010_296_90072#4013_296_90070#5004_296_90071#4003_296_90072#4007_296_90074#5005_296_90073", + "npcLv": [ + 1033, + 1033, + 1033, + 1033, + 1033, + 1033 + ], + "isboss": 0, + "ghname": "npc_ghname_1" + }, + "15587": { + "npcId": 15587, + "attr": {}, + "npclist": "4012_297_90072#3014_297_90070#4013_297_90071#5005_297_90072#5003_297_90074#4009_297_90073", + "npcLv": [ + 1038, + 1038, + 1038, + 1038, + 1038, + 1038 + ], + "isboss": 0, + "ghname": "npc_ghname_2" + }, + "15588": { + "npcId": 15588, + "attr": {}, + "npclist": "4011_298_90072#4014_298_90070#4010_298_90071#4002_298_90072#4008_298_90074#3015_298_90073", + "npcLv": [ + 1043, + 1043, + 1043, + 1043, + 1043, + 1043 + ], + "isboss": 0, + "ghname": "npc_ghname_3" + }, + "15589": { + "npcId": 15589, + "attr": {}, + "npclist": "3002_299_90072#5001_299_90070#5002_299_90071#3007_299_90072#4013_299_90074#5004_299_90073", + "npcLv": [ + 1048, + 1048, + 1048, + 1048, + 1048, + 1048 + ], + "isboss": 0, + "ghname": "npc_ghname_4" + }, + "15590": { + "npcId": 15590, + "attr": {}, + "npclist": "5003_300_90072#4012_300_90070#4011_300_90071#4014_300_90072#3015_300_90074#4013_300_90073", + "npcLv": [ + 1053, + 1053, + 1053, + 1053, + 1053, + 1053 + ], + "isboss": 0, + "ghname": "npc_ghname_5" + }, + "15591": { + "npcId": 15591, + "attr": {}, + "npclist": "4015_301_90072#3008_301_90070#4003_301_90071#3007_301_90072#3005_301_90074#4007_301_90073", + "npcLv": [ + 1058, + 1058, + 1058, + 1058, + 1058, + 1058 + ], + "isboss": 0, + "ghname": "npc_ghname_6" + }, + "15592": { + "npcId": 15592, + "attr": {}, + "npclist": "4008_302_90072#5001_302_90070#5005_302_90071#5004_302_90072#4005_302_90074#5002_302_90073", + "npcLv": [ + 1063, + 1063, + 1063, + 1063, + 1063, + 1063 + ], + "isboss": 0, + "ghname": "npc_ghname_1" + }, + "15593": { + "npcId": 15593, + "attr": {}, + "npclist": "4014_303_90072#4006_303_90070#5004_303_90071#4004_303_90072#3010_303_90074#3011_303_90073", + "npcLv": [ + 1068, + 1068, + 1068, + 1068, + 1068, + 1068 + ], + "isboss": 0, + "ghname": "npc_ghname_2" + }, + "15594": { + "npcId": 15594, + "attr": {}, + "npclist": "3013_304_90072#4013_304_90070#4012_304_90071#5001_304_90072#5002_304_90074#4003_304_90073", + "npcLv": [ + 1073, + 1073, + 1073, + 1073, + 1073, + 1073 + ], + "isboss": 0, + "ghname": "npc_ghname_3" + }, + "15595": { + "npcId": 15595, + "attr": {}, + "npclist": "4010_305_90072#5003_305_90070#4015_305_90071#4008_305_90072#4009_305_90074#5005_305_90073", + "npcLv": [ + 1078, + 1078, + 1078, + 1078, + 1078, + 1078 + ], + "isboss": 0, + "ghname": "npc_ghname_4" + }, + "15596": { + "npcId": 15596, + "attr": {}, + "npclist": "3010_306_90072#3015_306_90070#4001_306_90071#3001_306_90072#4007_306_90074#3007_306_90073", + "npcLv": [ + 1083, + 1083, + 1083, + 1083, + 1083, + 1083 + ], + "isboss": 0, + "ghname": "npc_ghname_5" + }, + "15597": { + "npcId": 15597, + "attr": {}, + "npclist": "4013_307_90072#5004_307_90070#3002_307_90071#4012_307_90072#4015_307_90074#3007_307_90073", + "npcLv": [ + 1088, + 1088, + 1088, + 1088, + 1088, + 1088 + ], + "isboss": 0, + "ghname": "npc_ghname_6" + }, + "15598": { + "npcId": 15598, + "attr": {}, + "npclist": "5002_308_90072#4013_308_90070#3010_308_90071#3013_308_90072#4011_308_90074#3005_308_90073", + "npcLv": [ + 1093, + 1093, + 1093, + 1093, + 1093, + 1093 + ], + "isboss": 0, + "ghname": "npc_ghname_1" + }, + "15599": { + "npcId": 15599, + "attr": {}, + "npclist": "3007_309_90072#4009_309_90070#4014_309_90071#5001_309_90072#5005_309_90074#4015_309_90073", "npcLv": [ 1098, 1098, @@ -17458,2869 +20308,19 @@ 1098 ], "isboss": 0, - "ghname": "npc_ghname_4" - }, - "15410": { - "npcId": 15410, - "attr": {}, - "npclist": "3012_443_90072#5005_443_90070#4015_443_90071#3005_443_90072#4008_443_90074#5004_443_90073", - "npcLv": [ - 1107, - 1107, - 1107, - 1107, - 1107, - 1107 - ], - "isboss": 0, - "ghname": "npc_ghname_5" - }, - "15411": { - "npcId": 15411, - "attr": {}, - "npclist": "3013_443_90072#3011_443_90070#5003_443_90071#5002_443_90072#3005_443_90074#4005_443_90073", - "npcLv": [ - 1107, - 1107, - 1107, - 1107, - 1107, - 1107 - ], - "isboss": 0, - "ghname": "npc_ghname_6" - }, - "15412": { - "npcId": 15412, - "attr": {}, - "npclist": "4013_446_90072#3009_446_90070#4006_446_90071#4003_446_90072#4015_446_90074#3007_446_90073", - "npcLv": [ - 1115, - 1115, - 1115, - 1115, - 1115, - 1115 - ], - "isboss": 0, - "ghname": "npc_ghname_1" - }, - "15413": { - "npcId": 15413, - "attr": {}, - "npclist": "5005_446_90072#4007_446_90070#4012_446_90071#5004_446_90072#3001_446_90074#4010_446_90073", - "npcLv": [ - 1115, - 1115, - 1115, - 1115, - 1115, - 1115 - ], - "isboss": 0, - "ghname": "npc_ghname_2" - }, - "15414": { - "npcId": 15414, - "attr": {}, - "npclist": "4011_449_90072#3010_449_90070#2002_449_90071#4004_449_90072#4014_449_90074#5004_449_90073", - "npcLv": [ - 1124, - 1124, - 1124, - 1124, - 1124, - 1124 - ], - "isboss": 0, - "ghname": "npc_ghname_3" - }, - "15415": { - "npcId": 15415, - "attr": {}, - "npclist": "5003_449_90072#5002_449_90070#5005_449_90071#3010_449_90072#4006_449_90074#4003_449_90073", - "npcLv": [ - 1124, - 1124, - 1124, - 1124, - 1124, - 1124 - ], - "isboss": 0, - "ghname": "npc_ghname_4" - }, - "15416": { - "npcId": 15416, - "attr": {}, - "npclist": "3013_452_90072#5001_452_90070#4009_452_90071#3008_452_90072#4012_452_90074#3009_452_90073", - "npcLv": [ - 1132, - 1132, - 1132, - 1132, - 1132, - 1132 - ], - "isboss": 0, - "ghname": "npc_ghname_5" - }, - "15417": { - "npcId": 15417, - "attr": {}, - "npclist": "4004_452_90072#4011_452_90070#5004_452_90071#3001_452_90072#4005_452_90074#4015_452_90073", - "npcLv": [ - 1132, - 1132, - 1132, - 1132, - 1132, - 1132 - ], - "isboss": 0, - "ghname": "npc_ghname_6" - }, - "15418": { - "npcId": 15418, - "attr": {}, - "npclist": "5002_455_90072#4002_455_90070#3006_455_90071#4010_455_90072#5005_455_90074#3009_455_90073", - "npcLv": [ - 1141, - 1141, - 1141, - 1141, - 1141, - 1141 - ], - "isboss": 0, - "ghname": "npc_ghname_1" - }, - "15419": { - "npcId": 15419, - "attr": {}, - "npclist": "3014_455_90072#5004_455_90070#5003_455_90071#4003_455_90072#4015_455_90074#4011_455_90073", - "npcLv": [ - 1141, - 1141, - 1141, - 1141, - 1141, - 1141 - ], - "isboss": 0, - "ghname": "npc_ghname_2" - }, - "15420": { - "npcId": 15420, - "attr": {}, - "npclist": "3001_458_90072#4014_458_90070#4013_458_90071#3002_458_90072#4009_458_90074#3014_458_90073", - "npcLv": [ - 1150, - 1150, - 1150, - 1150, - 1150, - 1150 - ], - "isboss": 0, - "ghname": "npc_ghname_3" - }, - "15421": { - "npcId": 15421, - "attr": {}, - "npclist": "5004_458_90072#3009_458_90070#5002_458_90071#4013_458_90072#3005_458_90074#4012_458_90073", - "npcLv": [ - 1150, - 1150, - 1150, - 1150, - 1150, - 1150 - ], - "isboss": 0, - "ghname": "npc_ghname_4" - }, - "15422": { - "npcId": 15422, - "attr": {}, - "npclist": "5001_461_90072#4015_461_90070#4005_461_90071#3011_461_90072#4003_461_90074#5005_461_90073", - "npcLv": [ - 1158, - 1158, - 1158, - 1158, - 1158, - 1158 - ], - "isboss": 0, - "ghname": "npc_ghname_5" - }, - "15423": { - "npcId": 15423, - "attr": {}, - "npclist": "4014_461_90072#3007_461_90070#3013_461_90071#4002_461_90072#5002_461_90074#4009_461_90073", - "npcLv": [ - 1158, - 1158, - 1158, - 1158, - 1158, - 1158 - ], - "isboss": 0, - "ghname": "npc_ghname_6" - }, - "15424": { - "npcId": 15424, - "attr": {}, - "npclist": "4015_464_90072#4007_464_90070#5004_464_90071#4012_464_90072#4011_464_90074#4001_464_90073", - "npcLv": [ - 1167, - 1167, - 1167, - 1167, - 1167, - 1167 - ], - "isboss": 0, - "ghname": "npc_ghname_1" - }, - "15425": { - "npcId": 15425, - "attr": {}, - "npclist": "3006_464_90072#4004_464_90070#3015_464_90071#5005_464_90072#5003_464_90074#4013_464_90073", - "npcLv": [ - 1167, - 1167, - 1167, - 1167, - 1167, - 1167 - ], - "isboss": 0, - "ghname": "npc_ghname_2" - }, - "15426": { - "npcId": 15426, - "attr": {}, - "npclist": "3002_467_90072#4010_467_90070#5001_467_90071#4007_467_90072#3013_467_90074#4008_467_90073", - "npcLv": [ - 1176, - 1176, - 1176, - 1176, - 1176, - 1176 - ], - "isboss": 0, - "ghname": "npc_ghname_3" - }, - "15427": { - "npcId": 15427, - "attr": {}, - "npclist": "5005_467_90072#2002_467_90070#3010_467_90071#4013_467_90072#3011_467_90074#5002_467_90073", - "npcLv": [ - 1176, - 1176, - 1176, - 1176, - 1176, - 1176 - ], - "isboss": 0, - "ghname": "npc_ghname_4" - }, - "15428": { - "npcId": 15428, - "attr": {}, - "npclist": "4010_470_90072#4011_470_90070#4006_470_90071#4003_470_90072#3009_470_90074#5004_470_90073", - "npcLv": [ - 1184, - 1184, - 1184, - 1184, - 1184, - 1184 - ], - "isboss": 0, - "ghname": "npc_ghname_5" - }, - "15429": { - "npcId": 15429, - "attr": {}, - "npclist": "3001_470_90072#4014_470_90070#4015_470_90071#5005_470_90072#5001_470_90074#4002_470_90073", - "npcLv": [ - 1184, - 1184, - 1184, - 1184, - 1184, - 1184 - ], - "isboss": 0, - "ghname": "npc_ghname_6" - }, - "15430": { - "npcId": 15430, - "attr": {}, - "npclist": "3010_473_90072#4013_473_90070#4005_473_90071#5002_473_90072#4007_473_90074#3013_473_90073", - "npcLv": [ - 1193, - 1193, - 1193, - 1193, - 1193, - 1193 - ], - "isboss": 0, - "ghname": "npc_ghname_1" - }, - "15431": { - "npcId": 15431, - "attr": {}, - "npclist": "4011_473_90072#4001_473_90070#4012_473_90071#4009_473_90072#4015_473_90074#5003_473_90073", - "npcLv": [ - 1193, - 1193, - 1193, - 1193, - 1193, - 1193 - ], - "isboss": 0, - "ghname": "npc_ghname_2" - }, - "15432": { - "npcId": 15432, - "attr": {}, - "npclist": "3015_476_90072#5002_476_90070#4003_476_90071#5004_476_90072#5005_476_90074#4014_476_90073", - "npcLv": [ - 1202, - 1202, - 1202, - 1202, - 1202, - 1202 - ], - "isboss": 0, - "ghname": "npc_ghname_3" - }, - "15433": { - "npcId": 15433, - "attr": {}, - "npclist": "4013_476_90072#4006_476_90070#3002_476_90071#3007_476_90072#3015_476_90074#3007_476_90073", - "npcLv": [ - 1202, - 1202, - 1202, - 1202, - 1202, - 1202 - ], - "isboss": 0, - "ghname": "npc_ghname_4" - }, - "15434": { - "npcId": 15434, - "attr": {}, - "npclist": "4012_479_90072#5004_479_90070#4011_479_90071#3013_479_90072#3007_479_90074#4015_479_90073", - "npcLv": [ - 1210, - 1210, - 1210, - 1210, - 1210, - 1210 - ], - "isboss": 0, - "ghname": "npc_ghname_5" - }, - "15435": { - "npcId": 15435, - "attr": {}, - "npclist": "5002_479_90072#4008_479_90070#4010_479_90071#5001_479_90072#4004_479_90074#3007_479_90073", - "npcLv": [ - 1210, - 1210, - 1210, - 1210, - 1210, - 1210 - ], - "isboss": 0, - "ghname": "npc_ghname_6" - }, - "15436": { - "npcId": 15436, - "attr": {}, - "npclist": "3010_482_90072#3005_482_90070#4006_482_90071#4015_482_90072#5003_482_90074#4014_482_90073", - "npcLv": [ - 1219, - 1219, - 1219, - 1219, - 1219, - 1219 - ], - "isboss": 0, - "ghname": "npc_ghname_1" - }, - "15437": { - "npcId": 15437, - "attr": {}, - "npclist": "4009_482_90072#4015_482_90070#4013_482_90071#4010_482_90072#4005_482_90074#4003_482_90073", - "npcLv": [ - 1219, - 1219, - 1219, - 1219, - 1219, - 1219 - ], - "isboss": 0, - "ghname": "npc_ghname_2" - }, - "15438": { - "npcId": 15438, - "attr": {}, - "npclist": "4002_485_90072#4012_485_90070#5002_485_90071#5005_485_90072#3009_485_90074#4011_485_90073", - "npcLv": [ - 1228, - 1228, - 1228, - 1228, - 1228, - 1228 - ], - "isboss": 0, - "ghname": "npc_ghname_3" - }, - "15439": { - "npcId": 15439, - "attr": {}, - "npclist": "3013_485_90072#3005_485_90070#3014_485_90071#4013_485_90072#3011_485_90074#5004_485_90073", - "npcLv": [ - 1228, - 1228, - 1228, - 1228, - 1228, - 1228 - ], - "isboss": 0, - "ghname": "npc_ghname_4" - }, - "15440": { - "npcId": 15440, - "attr": {}, - "npclist": "4014_488_90072#4007_488_90070#4011_488_90071#4012_488_90072#5002_488_90074#4010_488_90073", - "npcLv": [ - 1237, - 1237, - 1237, - 1237, - 1237, - 1237 - ], - "isboss": 0, - "ghname": "npc_ghname_5" - }, - "15441": { - "npcId": 15441, - "attr": {}, - "npclist": "4008_488_90072#4015_488_90070#5003_488_90071#4006_488_90072#4009_488_90074#3002_488_90073", - "npcLv": [ - 1237, - 1237, - 1237, - 1237, - 1237, - 1237 - ], - "isboss": 0, - "ghname": "npc_ghname_6" - }, - "15442": { - "npcId": 15442, - "attr": {}, - "npclist": "3005_491_90072#5001_491_90070#5005_491_90071#4003_491_90072#3009_491_90074#5002_491_90073", - "npcLv": [ - 1245, - 1245, - 1245, - 1245, - 1245, - 1245 - ], - "isboss": 0, - "ghname": "npc_ghname_1" - }, - "15443": { - "npcId": 15443, - "attr": {}, - "npclist": "4015_491_90072#4011_491_90070#4004_491_90071#5004_491_90072#4012_491_90074#4001_491_90073", - "npcLv": [ - 1245, - 1245, - 1245, - 1245, - 1245, - 1245 - ], - "isboss": 0, - "ghname": "npc_ghname_2" - }, - "15444": { - "npcId": 15444, - "attr": {}, - "npclist": "4007_494_90072#3009_494_90070#5003_494_90071#3013_494_90072#4006_494_90074#4009_494_90073", - "npcLv": [ - 1254, - 1254, - 1254, - 1254, - 1254, - 1254 - ], - "isboss": 0, - "ghname": "npc_ghname_3" - }, - "15445": { - "npcId": 15445, - "attr": {}, - "npclist": "3010_494_90072#4014_494_90070#4002_494_90071#4005_494_90072#4013_494_90074#3007_494_90073", - "npcLv": [ - 1254, - 1254, - 1254, - 1254, - 1254, - 1254 - ], - "isboss": 0, - "ghname": "npc_ghname_4" - }, - "15446": { - "npcId": 15446, - "attr": {}, - "npclist": "4011_497_90072#5004_497_90070#4015_497_90071#5005_497_90072#5002_497_90074#4012_497_90073", - "npcLv": [ - 1263, - 1263, - 1263, - 1263, - 1263, - 1263 - ], - "isboss": 0, - "ghname": "npc_ghname_5" - }, - "15447": { - "npcId": 15447, - "attr": {}, - "npclist": "3009_497_90072#3015_497_90070#4010_497_90071#4014_497_90072#3002_497_90074#4013_497_90073", - "npcLv": [ - 1263, - 1263, - 1263, - 1263, - 1263, - 1263 - ], - "isboss": 0, - "ghname": "npc_ghname_6" - }, - "15448": { - "npcId": 15448, - "attr": {}, - "npclist": "5001_500_90072#5002_500_90070#3002_500_90071#4012_500_90072#3006_500_90074#2002_500_90073", - "npcLv": [ - 1272, - 1272, - 1272, - 1272, - 1272, - 1272 - ], - "isboss": 0, - "ghname": "npc_ghname_1" - }, - "15449": { - "npcId": 15449, - "attr": {}, - "npclist": "3011_500_90072#4009_500_90070#4011_500_90071#4015_500_90072#3001_500_90074#4006_500_90073", - "npcLv": [ - 1272, - 1272, - 1272, - 1272, - 1272, - 1272 - ], - "isboss": 0, - "ghname": "npc_ghname_2" - }, - "15450": { - "npcId": 15450, - "attr": {}, - "npclist": "4010_503_90072#3013_503_90070#4008_503_90071#3010_503_90072#4014_503_90074#3012_503_90073", - "npcLv": [ - 1280, - 1280, - 1280, - 1280, - 1280, - 1280 - ], - "isboss": 0, - "ghname": "npc_ghname_3" - }, - "15451": { - "npcId": 15451, - "attr": {}, - "npclist": "5002_503_90072#3007_503_90070#3009_503_90071#5003_503_90072#4005_503_90074#5005_503_90073", - "npcLv": [ - 1280, - 1280, - 1280, - 1280, - 1280, - 1280 - ], - "isboss": 0, - "ghname": "npc_ghname_4" - }, - "15452": { - "npcId": 15452, - "attr": {}, - "npclist": "4001_506_90072#3010_506_90070#4003_506_90071#5004_506_90072#4011_506_90074#4014_506_90073", - "npcLv": [ - 1289, - 1289, - 1289, - 1289, - 1289, - 1289 - ], - "isboss": 0, - "ghname": "npc_ghname_5" - }, - "15453": { - "npcId": 15453, - "attr": {}, - "npclist": "3007_506_90072#4013_506_90070#5002_506_90071#5005_506_90072#4015_506_90074#3001_506_90073", - "npcLv": [ - 1289, - 1289, - 1289, - 1289, - 1289, - 1289 - ], - "isboss": 0, - "ghname": "npc_ghname_6" - }, - "15454": { - "npcId": 15454, - "attr": {}, - "npclist": "4013_509_90072#5003_509_90070#4012_509_90071#3015_509_90072#3010_509_90074#4011_509_90073", - "npcLv": [ - 1298, - 1298, - 1298, - 1298, - 1298, - 1298 - ], - "isboss": 0, - "ghname": "npc_ghname_1" - }, - "15455": { - "npcId": 15455, - "attr": {}, - "npclist": "4003_509_90072#4014_509_90070#3011_509_90071#4008_509_90072#4002_509_90074#3007_509_90073", - "npcLv": [ - 1298, - 1298, - 1298, - 1298, - 1298, - 1298 - ], - "isboss": 0, - "ghname": "npc_ghname_2" - }, - "15456": { - "npcId": 15456, - "attr": {}, - "npclist": "3002_512_90072#3009_512_90070#4009_512_90071#5001_512_90072#5002_512_90074#4015_512_90073", - "npcLv": [ - 1307, - 1307, - 1307, - 1307, - 1307, - 1307 - ], - "isboss": 0, - "ghname": "npc_ghname_3" - }, - "15457": { - "npcId": 15457, - "attr": {}, - "npclist": "4012_512_90072#3005_512_90070#3009_512_90071#4010_512_90072#4014_512_90074#5004_512_90073", - "npcLv": [ - 1307, - 1307, - 1307, - 1307, - 1307, - 1307 - ], - "isboss": 0, - "ghname": "npc_ghname_4" - }, - "15458": { - "npcId": 15458, - "attr": {}, - "npclist": "4014_515_90072#4013_515_90070#4007_515_90071#5005_515_90072#3011_515_90074#5002_515_90073", - "npcLv": [ - 1315, - 1315, - 1315, - 1315, - 1315, - 1315 - ], - "isboss": 0, - "ghname": "npc_ghname_5" - }, - "15459": { - "npcId": 15459, - "attr": {}, - "npclist": "3005_515_90072#4006_515_90070#3014_515_90071#4003_515_90072#5001_515_90074#4002_515_90073", - "npcLv": [ - 1315, - 1315, - 1315, - 1315, - 1315, - 1315 - ], - "isboss": 0, - "ghname": "npc_ghname_6" - }, - "15460": { - "npcId": 15460, - "attr": {}, - "npclist": "5003_518_90072#4012_518_90070#4015_518_90071#4013_518_90072#4007_518_90074#3010_518_90073", - "npcLv": [ - 1324, - 1324, - 1324, - 1324, - 1324, - 1324 - ], - "isboss": 0, - "ghname": "npc_ghname_1" - }, - "15461": { - "npcId": 15461, - "attr": {}, - "npclist": "4014_518_90072#5002_518_90070#4011_518_90071#5004_518_90072#3014_518_90074#4009_518_90073", - "npcLv": [ - 1324, - 1324, - 1324, - 1324, - 1324, - 1324 - ], - "isboss": 0, - "ghname": "npc_ghname_2" - }, - "15462": { - "npcId": 15462, - "attr": {}, - "npclist": "4006_521_90072#4015_521_90070#4005_521_90071#4004_521_90072#4013_521_90074#3015_521_90073", - "npcLv": [ - 1333, - 1333, - 1333, - 1333, - 1333, - 1333 - ], - "isboss": 0, - "ghname": "npc_ghname_3" - }, - "15463": { - "npcId": 15463, - "attr": {}, - "npclist": "3013_521_90072#3015_521_90070#5004_521_90071#4012_521_90072#4010_521_90074#3005_521_90073", - "npcLv": [ - 1333, - 1333, - 1333, - 1333, - 1333, - 1333 - ], - "isboss": 0, - "ghname": "npc_ghname_4" - }, - "15464": { - "npcId": 15464, - "attr": {}, - "npclist": "4011_524_90072#4014_524_90070#5003_524_90071#3001_524_90072#5005_524_90074#4010_524_90073", - "npcLv": [ - 1342, - 1342, - 1342, - 1342, - 1342, - 1342 - ], - "isboss": 0, - "ghname": "npc_ghname_5" - }, - "15465": { - "npcId": 15465, - "attr": {}, - "npclist": "4015_524_90072#4005_524_90070#5002_524_90071#4002_524_90072#3005_524_90074#4013_524_90073", - "npcLv": [ - 1342, - 1342, - 1342, - 1342, - 1342, - 1342 - ], - "isboss": 0, - "ghname": "npc_ghname_6" - }, - "15466": { - "npcId": 15466, - "attr": {}, - "npclist": "3014_527_90072#5004_527_90070#4011_527_90071#3002_527_90072#4008_527_90074#3006_527_90073", - "npcLv": [ - 1351, - 1351, - 1351, - 1351, - 1351, - 1351 - ], - "isboss": 0, - "ghname": "npc_ghname_1" - }, - "15467": { - "npcId": 15467, - "attr": {}, - "npclist": "3007_527_90072#4015_527_90070#4003_527_90071#4010_527_90072#5002_527_90074#4012_527_90073", - "npcLv": [ - 1351, - 1351, - 1351, - 1351, - 1351, - 1351 - ], - "isboss": 0, - "ghname": "npc_ghname_2" - }, - "15468": { - "npcId": 15468, - "attr": {}, - "npclist": "3009_530_90072#4013_530_90070#3001_530_90071#4014_530_90072#2002_530_90074#4007_530_90073", - "npcLv": [ - 1360, - 1360, - 1360, - 1360, - 1360, - 1360 - ], - "isboss": 0, - "ghname": "npc_ghname_3" - }, - "15469": { - "npcId": 15469, - "attr": {}, - "npclist": "5002_530_90072#3006_530_90070#4006_530_90071#3013_530_90072#5003_530_90074#5005_530_90073", - "npcLv": [ - 1360, - 1360, - 1360, - 1360, - 1360, - 1360 - ], - "isboss": 0, - "ghname": "npc_ghname_4" - }, - "15470": { - "npcId": 15470, - "attr": {}, - "npclist": "5004_533_90072#3010_533_90070#3007_533_90071#4012_533_90072#4014_533_90074#4011_533_90073", - "npcLv": [ - 1368, - 1368, - 1368, - 1368, - 1368, - 1368 - ], - "isboss": 0, - "ghname": "npc_ghname_5" - }, - "15471": { - "npcId": 15471, - "attr": {}, - "npclist": "4013_533_90072#4008_533_90070#4009_533_90071#3010_533_90072#4002_533_90074#3002_533_90073", - "npcLv": [ - 1368, - 1368, - 1368, - 1368, - 1368, - 1368 - ], - "isboss": 0, - "ghname": "npc_ghname_6" - }, - "15472": { - "npcId": 15472, - "attr": {}, - "npclist": "3001_536_90072#4002_536_90070#5001_536_90071#4005_536_90072#5002_536_90074#4001_536_90073", - "npcLv": [ - 1377, - 1377, - 1377, - 1377, - 1377, - 1377 - ], - "isboss": 0, - "ghname": "npc_ghname_1" - }, - "15473": { - "npcId": 15473, - "attr": {}, - "npclist": "3013_536_90072#4013_536_90070#4007_536_90071#4015_536_90072#5005_536_90074#4014_536_90073", - "npcLv": [ - 1377, - 1377, - 1377, - 1377, - 1377, - 1377 - ], - "isboss": 0, - "ghname": "npc_ghname_2" - }, - "15474": { - "npcId": 15474, - "attr": {}, - "npclist": "4009_539_90072#4010_539_90070#5004_539_90071#4011_539_90072#4012_539_90074#4003_539_90073", - "npcLv": [ - 1386, - 1386, - 1386, - 1386, - 1386, - 1386 - ], - "isboss": 0, - "ghname": "npc_ghname_3" - }, - "15475": { - "npcId": 15475, - "attr": {}, - "npclist": "4002_539_90072#5001_539_90070#3007_539_90071#5003_539_90072#3007_539_90074#4015_539_90073", - "npcLv": [ - 1386, - 1386, - 1386, - 1386, - 1386, - 1386 - ], - "isboss": 0, - "ghname": "npc_ghname_4" - }, - "15476": { - "npcId": 15476, - "attr": {}, - "npclist": "4008_542_90072#4014_542_90070#4013_542_90071#5005_542_90072#5002_542_90074#3011_542_90073", - "npcLv": [ - 1395, - 1395, - 1395, - 1395, - 1395, - 1395 - ], - "isboss": 0, - "ghname": "npc_ghname_5" - }, - "15477": { - "npcId": 15477, - "attr": {}, - "npclist": "4001_542_90072#4003_542_90070#4011_542_90071#4006_542_90072#4005_542_90074#4012_542_90073", - "npcLv": [ - 1395, - 1395, - 1395, - 1395, - 1395, - 1395 - ], - "isboss": 0, - "ghname": "npc_ghname_6" - }, - "15478": { - "npcId": 15478, - "attr": {}, - "npclist": "4014_545_90072#5003_545_90070#4013_545_90071#3010_545_90072#5001_545_90074#5004_545_90073", - "npcLv": [ - 1404, - 1404, - 1404, - 1404, - 1404, - 1404 - ], - "isboss": 0, - "ghname": "npc_ghname_1" - }, - "15479": { - "npcId": 15479, - "attr": {}, - "npclist": "4010_545_90072#4014_545_90070#4008_545_90071#4004_545_90072#4013_545_90074#3007_545_90073", - "npcLv": [ - 1404, - 1404, - 1404, - 1404, - 1404, - 1404 - ], - "isboss": 0, - "ghname": "npc_ghname_2" - }, - "15480": { - "npcId": 15480, - "attr": {}, - "npclist": "4015_548_90072#3015_548_90070#4002_548_90071#3005_548_90072#3001_548_90074#3002_548_90073", - "npcLv": [ - 1413, - 1413, - 1413, - 1413, - 1413, - 1413 - ], - "isboss": 0, - "ghname": "npc_ghname_3" - }, - "15481": { - "npcId": 15481, - "attr": {}, - "npclist": "4011_548_90072#5002_548_90070#5004_548_90071#4014_548_90072#3014_548_90074#4012_548_90073", - "npcLv": [ - 1413, - 1413, - 1413, - 1413, - 1413, - 1413 - ], - "isboss": 0, - "ghname": "npc_ghname_4" - }, - "15482": { - "npcId": 15482, - "attr": {}, - "npclist": "4007_551_90072#3010_551_90070#4009_551_90071#3005_551_90072#3009_551_90074#5005_551_90073", - "npcLv": [ - 1422, - 1422, - 1422, - 1422, - 1422, - 1422 - ], - "isboss": 0, - "ghname": "npc_ghname_5" - }, - "15483": { - "npcId": 15483, - "attr": {}, - "npclist": "5003_551_90072#4013_551_90070#4015_551_90071#3011_551_90072#4010_551_90074#5001_551_90073", - "npcLv": [ - 1422, - 1422, - 1422, - 1422, - 1422, - 1422 - ], - "isboss": 0, - "ghname": "npc_ghname_6" - }, - "15484": { - "npcId": 15484, - "attr": {}, - "npclist": "5004_554_90072#4004_554_90070#4006_554_90071#3013_554_90072#4015_554_90074#4003_554_90073", - "npcLv": [ - 1431, - 1431, - 1431, - 1431, - 1431, - 1431 - ], - "isboss": 0, - "ghname": "npc_ghname_1" - }, - "15485": { - "npcId": 15485, - "attr": {}, - "npclist": "3006_554_90072#4012_554_90070#3002_554_90071#5005_554_90072#4006_554_90074#5002_554_90073", - "npcLv": [ - 1431, - 1431, - 1431, - 1431, - 1431, - 1431 - ], - "isboss": 0, - "ghname": "npc_ghname_2" - }, - "15486": { - "npcId": 15486, - "attr": {}, - "npclist": "4013_557_90072#4011_557_90070#4007_557_90071#4009_557_90072#4014_557_90074#3001_557_90073", - "npcLv": [ - 1439, - 1439, - 1439, - 1439, - 1439, - 1439 - ], - "isboss": 0, - "ghname": "npc_ghname_3" - }, - "15487": { - "npcId": 15487, - "attr": {}, - "npclist": "3011_557_90072#3005_557_90070#5002_557_90071#5003_557_90072#4004_557_90074#4010_557_90073", - "npcLv": [ - 1439, - 1439, - 1439, - 1439, - 1439, - 1439 - ], - "isboss": 0, - "ghname": "npc_ghname_4" - }, - "15488": { - "npcId": 15488, - "attr": {}, - "npclist": "5004_560_90072#4003_560_90070#4013_560_90071#4011_560_90072#4008_560_90074#4015_560_90073", - "npcLv": [ - 1448, - 1448, - 1448, - 1448, - 1448, - 1448 - ], - "isboss": 0, - "ghname": "npc_ghname_5" - }, - "15489": { - "npcId": 15489, - "attr": {}, - "npclist": "3013_560_90072#5001_560_90070#4014_560_90071#4002_560_90072#5003_560_90074#4009_560_90073", - "npcLv": [ - 1448, - 1448, - 1448, - 1448, - 1448, - 1448 - ], - "isboss": 0, - "ghname": "npc_ghname_6" - }, - "15490": { - "npcId": 15490, - "attr": {}, - "npclist": "4014_563_90072#3015_563_90070#5005_563_90071#5004_563_90072#3010_563_90074#4011_563_90073", - "npcLv": [ - 1457, - 1457, - 1457, - 1457, - 1457, - 1457 - ], - "isboss": 0, - "ghname": "npc_ghname_1" - }, - "15491": { - "npcId": 15491, - "attr": {}, - "npclist": "4013_563_90072#4015_563_90070#4010_563_90071#3007_563_90072#3002_563_90074#3014_563_90073", - "npcLv": [ - 1457, - 1457, - 1457, - 1457, - 1457, - 1457 - ], - "isboss": 0, - "ghname": "npc_ghname_2" - }, - "15492": { - "npcId": 15492, - "attr": {}, - "npclist": "5001_566_90072#5002_566_90070#4012_566_90071#4007_566_90072#4002_566_90074#4004_566_90073", - "npcLv": [ - 1466, - 1466, - 1466, - 1466, - 1466, - 1466 - ], - "isboss": 0, - "ghname": "npc_ghname_3" - }, - "15493": { - "npcId": 15493, - "attr": {}, - "npclist": "4015_566_90072#4014_566_90070#3010_566_90071#4011_566_90072#4013_566_90074#5003_566_90073", - "npcLv": [ - 1466, - 1466, - 1466, - 1466, - 1466, - 1466 - ], - "isboss": 0, - "ghname": "npc_ghname_4" - }, - "15494": { - "npcId": 15494, - "attr": {}, - "npclist": "4003_569_90072#4010_569_90070#4001_569_90071#4005_569_90072#5005_569_90074#5004_569_90073", - "npcLv": [ - 1475, - 1475, - 1475, - 1475, - 1475, - 1475 - ], - "isboss": 0, - "ghname": "npc_ghname_5" - }, - "15495": { - "npcId": 15495, - "attr": {}, - "npclist": "3010_569_90072#4015_569_90070#3007_569_90071#5003_569_90072#5002_569_90074#4002_569_90073", - "npcLv": [ - 1475, - 1475, - 1475, - 1475, - 1475, - 1475 - ], - "isboss": 0, - "ghname": "npc_ghname_6" - }, - "15496": { - "npcId": 15496, - "attr": {}, - "npclist": "4012_572_90072#4009_572_90070#4014_572_90071#3009_572_90072#3002_572_90074#5005_572_90073", - "npcLv": [ - 1484, - 1484, - 1484, - 1484, - 1484, - 1484 - ], - "isboss": 0, - "ghname": "npc_ghname_1" - }, - "15497": { - "npcId": 15497, - "attr": {}, - "npclist": "3007_572_90072#4008_572_90070#5004_572_90071#5002_572_90072#4006_572_90074#4015_572_90073", - "npcLv": [ - 1484, - 1484, - 1484, - 1484, - 1484, - 1484 - ], - "isboss": 0, - "ghname": "npc_ghname_2" - }, - "15498": { - "npcId": 15498, - "attr": {}, - "npclist": "4005_575_90072#3010_575_90070#5001_575_90071#4015_575_90072#3013_575_90074#4012_575_90073", - "npcLv": [ - 1493, - 1493, - 1493, - 1493, - 1493, - 1493 - ], - "isboss": 0, - "ghname": "npc_ghname_3" - }, - "15499": { - "npcId": 15499, - "attr": {}, - "npclist": "5004_575_90072#5002_575_90070#3012_575_90071#4010_575_90072#4013_575_90074#5003_575_90073", - "npcLv": [ - 1493, - 1493, - 1493, - 1493, - 1493, - 1493 - ], - "isboss": 0, - "ghname": "npc_ghname_4" - }, - "15500": { - "npcId": 15500, - "attr": {}, - "npclist": "5002_578_90072#4004_578_90070#4011_578_90071#5005_578_90072#5001_578_90074#4007_578_90073", - "npcLv": [ - 1502, - 1502, - 1502, - 1502, - 1502, - 1502 - ], - "isboss": 0, - "ghname": "npc_ghname_5" - }, - "15501": { - "npcId": 15501, - "attr": {}, - "npclist": "4003_578_90072#5004_578_90070#3006_578_90071#4007_578_90070#4014_578_90074#5005_578_90073", - "npcLv": [ - 1502, - 1502, - 1502, - 1502, - 1502, - 1502 - ], - "isboss": 0, - "ghname": "npc_ghname_6" - }, - "15502": { - "npcId": 15502, - "attr": {}, - "npclist": "5002_581_90072#3014_581_90070#5005_581_90071#4010_581_90072#4009_581_90074#4004_581_90073", - "npcLv": [ - 1511, - 1511, - 1511, - 1511, - 1511, - 1511 - ], - "isboss": 0, - "ghname": "npc_ghname_1" - }, - "15503": { - "npcId": 15503, - "attr": {}, - "npclist": "4008_581_90072#5005_581_90070#4005_581_90071#4015_581_90072#4012_581_90074#4013_581_90073", - "npcLv": [ - 1511, - 1511, - 1511, - 1511, - 1511, - 1511 - ], - "isboss": 0, - "ghname": "npc_ghname_2" - }, - "15504": { - "npcId": 15504, - "attr": {}, - "npclist": "5005_584_90072#3010_584_90070#4011_584_90071#4003_584_90072#5001_584_90074#5003_584_90073", - "npcLv": [ - 1520, - 1520, - 1520, - 1520, - 1520, - 1520 - ], - "isboss": 0, - "ghname": "npc_ghname_3" - }, - "15505": { - "npcId": 15505, - "attr": {}, - "npclist": "4010_584_90072#5002_584_90070#3013_584_90071#3002_584_90072#4014_584_90074#3012_584_90073", - "npcLv": [ - 1520, - 1520, - 1520, - 1520, - 1520, - 1520 - ], - "isboss": 0, - "ghname": "npc_ghname_4" - }, - "15506": { - "npcId": 15506, - "attr": {}, - "npclist": "3014_587_90072#4005_587_90070#4015_587_90071#4012_587_90072#3006_587_90074#4009_587_90073", - "npcLv": [ - 1529, - 1529, - 1529, - 1529, - 1529, - 1529 - ], - "isboss": 0, - "ghname": "npc_ghname_5" - }, - "15507": { - "npcId": 15507, - "attr": {}, - "npclist": "4014_587_90072#4013_587_90070#4004_587_90071#5005_587_90072#5004_587_90074#3002_587_90073", - "npcLv": [ - 1529, - 1529, - 1529, - 1529, - 1529, - 1529 - ], - "isboss": 0, - "ghname": "npc_ghname_6" - }, - "15508": { - "npcId": 15508, - "attr": {}, - "npclist": "4011_590_90072#3005_590_90070#5003_590_90071#4008_590_90072#5001_590_90074#4003_590_90073", - "npcLv": [ - 1538, - 1538, - 1538, - 1538, - 1538, - 1538 - ], - "isboss": 0, - "ghname": "npc_ghname_1" - }, - "15509": { - "npcId": 15509, - "attr": {}, - "npclist": "4012_590_90072#4007_590_90070#4002_590_90071#3013_590_90072#4015_590_90074#3004_590_90073", - "npcLv": [ - 1538, - 1538, - 1538, - 1538, - 1538, - 1538 - ], - "isboss": 0, - "ghname": "npc_ghname_2" - }, - "15510": { - "npcId": 15510, - "attr": {}, - "npclist": "4004_593_90072#4006_593_90070#4009_593_90071#5002_593_90072#4010_593_90074#5004_593_90073", - "npcLv": [ - 1547, - 1547, - 1547, - 1547, - 1547, - 1547 - ], - "isboss": 0, - "ghname": "npc_ghname_3" - }, - "15511": { - "npcId": 15511, - "attr": {}, - "npclist": "4013_593_90072#4001_593_90070#3007_593_90071#4011_593_90072#3013_593_90074#4008_593_90073", - "npcLv": [ - 1547, - 1547, - 1547, - 1547, - 1547, - 1547 - ], - "isboss": 0, - "ghname": "npc_ghname_4" - }, - "15512": { - "npcId": 15512, - "attr": {}, - "npclist": "3004_596_90072#4014_596_90070#5004_596_90071#5003_596_90072#5005_596_90074#5001_596_90073", - "npcLv": [ - 1556, - 1556, - 1556, - 1556, - 1556, - 1556 - ], - "isboss": 0, - "ghname": "npc_ghname_5" - }, - "15513": { - "npcId": 15513, - "attr": {}, - "npclist": "5002_596_90072#2002_596_90070#4012_596_90071#3009_596_90072#4005_596_90074#4015_596_90073", - "npcLv": [ - 1556, - 1556, - 1556, - 1556, - 1556, - 1556 - ], - "isboss": 0, - "ghname": "npc_ghname_6" - }, - "15514": { - "npcId": 15514, - "attr": {}, - "npclist": "4009_599_90072#4013_599_90070#4003_599_90071#4008_599_90072#4014_599_90074#4010_599_90073", - "npcLv": [ - 1565, - 1565, - 1565, - 1565, - 1565, - 1565 - ], - "isboss": 0, - "ghname": "npc_ghname_1" - }, - "15515": { - "npcId": 15515, - "attr": {}, - "npclist": "3012_599_90072#3008_599_90070#3002_599_90071#5004_599_90072#4012_599_90074#3013_599_90073", - "npcLv": [ - 1565, - 1565, - 1565, - 1565, - 1565, - 1565 - ], - "isboss": 0, - "ghname": "npc_ghname_2" - }, - "15516": { - "npcId": 15516, - "attr": {}, - "npclist": "4007_602_90072#4014_602_90070#4004_602_90071#4013_602_90072#3005_602_90074#5003_602_90073", - "npcLv": [ - 1574, - 1574, - 1574, - 1574, - 1574, - 1574 - ], - "isboss": 0, - "ghname": "npc_ghname_3" - }, - "15517": { - "npcId": 15517, - "attr": {}, - "npclist": "5001_602_90072#4015_602_90070#3013_602_90071#5002_602_90072#5005_602_90074#4005_602_90073", - "npcLv": [ - 1574, - 1574, - 1574, - 1574, - 1574, - 1574 - ], - "isboss": 0, - "ghname": "npc_ghname_4" - }, - "15518": { - "npcId": 15518, - "attr": {}, - "npclist": "4012_605_90072#4003_605_90070#4009_605_90071#4010_605_90072#4006_605_90074#4011_605_90073", - "npcLv": [ - 1583, - 1583, - 1583, - 1583, - 1583, - 1583 - ], - "isboss": 0, - "ghname": "npc_ghname_5" - }, - "15519": { - "npcId": 15519, - "attr": {}, - "npclist": "4008_605_90072#4002_605_90070#5003_605_90071#3015_605_90072#4004_605_90074#5004_605_90073", - "npcLv": [ - 1583, - 1583, - 1583, - 1583, - 1583, - 1583 - ], - "isboss": 0, - "ghname": "npc_ghname_6" - }, - "15520": { - "npcId": 15520, - "attr": {}, - "npclist": "3013_608_90072#3012_608_90070#4011_608_90071#5005_608_90072#5002_608_90074#4013_608_90073", - "npcLv": [ - 1592, - 1592, - 1592, - 1592, - 1592, - 1592 - ], - "isboss": 0, - "ghname": "npc_ghname_1" - }, - "15521": { - "npcId": 15521, - "attr": {}, - "npclist": "4014_608_90072#5004_608_90070#4012_608_90071#4005_608_90072#4009_608_90074#3009_608_90073", - "npcLv": [ - 1592, - 1592, - 1592, - 1592, - 1592, - 1592 - ], - "isboss": 0, - "ghname": "npc_ghname_2" - }, - "15522": { - "npcId": 15522, - "attr": {}, - "npclist": "3015_611_90072#4010_611_90070#4007_611_90071#4015_611_90072#3014_611_90074#3001_611_90073", - "npcLv": [ - 1601, - 1601, - 1601, - 1601, - 1601, - 1601 - ], - "isboss": 0, - "ghname": "npc_ghname_3" - }, - "15523": { - "npcId": 15523, - "attr": {}, - "npclist": "4003_611_90072#4008_611_90070#5002_611_90071#3007_611_90072#3010_611_90074#4004_611_90073", - "npcLv": [ - 1601, - 1601, - 1601, - 1601, - 1601, - 1601 - ], - "isboss": 0, - "ghname": "npc_ghname_4" - }, - "15524": { - "npcId": 15524, - "attr": {}, - "npclist": "5003_614_90072#4005_614_90070#5005_614_90071#3005_614_90072#4013_614_90074#4006_614_90073", - "npcLv": [ - 1610, - 1610, - 1610, - 1610, - 1610, - 1610 - ], - "isboss": 0, - "ghname": "npc_ghname_5" - }, - "15525": { - "npcId": 15525, - "attr": {}, - "npclist": "5002_614_90072#4014_614_90070#3013_614_90071#4006_614_90072#4012_614_90074#4015_614_90073", - "npcLv": [ - 1610, - 1610, - 1610, - 1610, - 1610, - 1610 - ], - "isboss": 0, - "ghname": "npc_ghname_6" - }, - "15526": { - "npcId": 15526, - "attr": {}, - "npclist": "4010_617_90072#3009_617_90070#4003_617_90071#5004_617_90072#3002_617_90074#3012_617_90073", - "npcLv": [ - 1619, - 1619, - 1619, - 1619, - 1619, - 1619 - ], - "isboss": 0, - "ghname": "npc_ghname_1" - }, - "15527": { - "npcId": 15527, - "attr": {}, - "npclist": "3001_617_90072#4011_617_90070#5001_617_90071#4005_617_90072#3011_617_90074#4009_617_90073", - "npcLv": [ - 1619, - 1619, - 1619, - 1619, - 1619, - 1619 - ], - "isboss": 0, - "ghname": "npc_ghname_2" - }, - "15528": { - "npcId": 15528, - "attr": {}, - "npclist": "3006_620_90072#4013_620_90070#4012_620_90071#4014_620_90072#5005_620_90074#4008_620_90073", - "npcLv": [ - 1628, - 1628, - 1628, - 1628, - 1628, - 1628 - ], - "isboss": 0, - "ghname": "npc_ghname_3" - }, - "15529": { - "npcId": 15529, - "attr": {}, - "npclist": "4015_620_90072#4004_620_90070#3015_620_90071#3013_620_90072#5001_620_90074#3010_620_90073", - "npcLv": [ - 1628, - 1628, - 1628, - 1628, - 1628, - 1628 - ], - "isboss": 0, - "ghname": "npc_ghname_4" - }, - "15530": { - "npcId": 15530, - "attr": {}, - "npclist": "4013_623_90072#4001_623_90070#4006_623_90071#5003_623_90072#4014_623_90074#4005_623_90073", - "npcLv": [ - 1637, - 1637, - 1637, - 1637, - 1637, - 1637 - ], - "isboss": 0, - "ghname": "npc_ghname_5" - }, - "15531": { - "npcId": 15531, - "attr": {}, - "npclist": "4008_623_90072#4012_623_90070#4002_623_90071#4009_623_90072#2002_623_90074#5005_623_90073", - "npcLv": [ - 1637, - 1637, - 1637, - 1637, - 1637, - 1637 - ], - "isboss": 0, - "ghname": "npc_ghname_6" - }, - "15532": { - "npcId": 15532, - "attr": {}, - "npclist": "4011_626_90072#4015_626_90070#5002_626_90071#4003_626_90072#5005_626_90074#4014_626_90073", - "npcLv": [ - 1646, - 1646, - 1646, - 1646, - 1646, - 1646 - ], - "isboss": 0, - "ghname": "npc_ghname_1" - }, - "15533": { - "npcId": 15533, - "attr": {}, - "npclist": "3008_626_90072#4006_626_90070#5003_626_90071#4010_626_90072#5001_626_90074#3010_626_90073", - "npcLv": [ - 1646, - 1646, - 1646, - 1646, - 1646, - 1646 - ], - "isboss": 0, - "ghname": "npc_ghname_2" - }, - "15534": { - "npcId": 15534, - "attr": {}, - "npclist": "4009_629_90072#3012_629_90070#4004_629_90071#4013_629_90072#4014_629_90074#4010_629_90073", - "npcLv": [ - 1655, - 1655, - 1655, - 1655, - 1655, - 1655 - ], - "isboss": 0, - "ghname": "npc_ghname_3" - }, - "15535": { - "npcId": 15535, - "attr": {}, - "npclist": "5005_629_90072#5004_629_90070#4012_629_90071#3005_629_90072#3015_629_90074#4003_629_90073", - "npcLv": [ - 1655, - 1655, - 1655, - 1655, - 1655, - 1655 - ], - "isboss": 0, - "ghname": "npc_ghname_4" - }, - "15536": { - "npcId": 15536, - "attr": {}, - "npclist": "4006_632_90072#4005_632_90070#3014_632_90071#5002_632_90072#4013_632_90074#3008_632_90073", - "npcLv": [ - 1664, - 1664, - 1664, - 1664, - 1664, - 1664 - ], - "isboss": 0, - "ghname": "npc_ghname_5" - }, - "15537": { - "npcId": 15537, - "attr": {}, - "npclist": "4014_632_90072#3005_632_90070#4008_632_90071#4012_632_90072#4007_632_90074#3001_632_90073", - "npcLv": [ - 1664, - 1664, - 1664, - 1664, - 1664, - 1664 - ], - "isboss": 0, - "ghname": "npc_ghname_6" - }, - "15538": { - "npcId": 15538, - "attr": {}, - "npclist": "4003_635_90072#4015_635_90070#4009_635_90071#4011_635_90072#4002_635_90074#4008_635_90073", - "npcLv": [ - 1673, - 1673, - 1673, - 1673, - 1673, - 1673 - ], - "isboss": 0, - "ghname": "npc_ghname_1" - }, - "15539": { - "npcId": 15539, - "attr": {}, - "npclist": "5001_635_90072#3014_635_90070#4014_635_90071#4005_635_90072#5003_635_90074#4013_635_90073", - "npcLv": [ - 1673, - 1673, - 1673, - 1673, - 1673, - 1673 - ], - "isboss": 0, - "ghname": "npc_ghname_2" - }, - "15540": { - "npcId": 15540, - "attr": {}, - "npclist": "3006_638_90072#5002_638_90070#3010_638_90071#4012_638_90072#3007_638_90074#3015_638_90073", - "npcLv": [ - 1682, - 1682, - 1682, - 1682, - 1682, - 1682 - ], - "isboss": 0, - "ghname": "npc_ghname_3" - }, - "15541": { - "npcId": 15541, - "attr": {}, - "npclist": "5005_638_90072#5001_638_90070#4010_638_90071#4001_638_90072#4009_638_90074#5004_638_90073", - "npcLv": [ - 1682, - 1682, - 1682, - 1682, - 1682, - 1682 - ], - "isboss": 0, - "ghname": "npc_ghname_4" - }, - "15542": { - "npcId": 15542, - "attr": {}, - "npclist": "4004_641_90072#4013_641_90070#4003_641_90071#3010_641_90072#4008_641_90074#4015_641_90073", - "npcLv": [ - 1691, - 1691, - 1691, - 1691, - 1691, - 1691 - ], - "isboss": 0, - "ghname": "npc_ghname_5" - }, - "15543": { - "npcId": 15543, - "attr": {}, - "npclist": "3005_641_90072#4006_641_90070#3002_641_90071#4014_641_90072#4012_641_90074#4009_641_90073", - "npcLv": [ - 1691, - 1691, - 1691, - 1691, - 1691, - 1691 - ], - "isboss": 0, - "ghname": "npc_ghname_6" - }, - "15544": { - "npcId": 15544, - "attr": {}, - "npclist": "4010_644_90072#3006_644_90070#5005_644_90071#4008_644_90072#5002_644_90074#3013_644_90073", - "npcLv": [ - 1700, - 1700, - 1700, - 1700, - 1700, - 1700 - ], - "isboss": 0, - "ghname": "npc_ghname_1" - }, - "15545": { - "npcId": 15545, - "attr": {}, - "npclist": "3011_644_90072#5004_644_90070#4011_644_90071#5001_644_90072#3010_644_90074#5003_644_90073", - "npcLv": [ - 1700, - 1700, - 1700, - 1700, - 1700, - 1700 - ], - "isboss": 0, - "ghname": "npc_ghname_2" - }, - "15546": { - "npcId": 15546, - "attr": {}, - "npclist": "4013_647_90072#4012_647_90070#4004_647_90071#4009_647_90072#4003_647_90074#4014_647_90073", - "npcLv": [ - 1709, - 1709, - 1709, - 1709, - 1709, - 1709 - ], - "isboss": 0, - "ghname": "npc_ghname_3" - }, - "15547": { - "npcId": 15547, - "attr": {}, - "npclist": "3012_647_90072#3010_647_90070#4015_647_90071#4002_647_90072#3007_647_90074#4005_647_90073", - "npcLv": [ - 1709, - 1709, - 1709, - 1709, - 1709, - 1709 - ], - "isboss": 0, - "ghname": "npc_ghname_4" - }, - "15548": { - "npcId": 15548, - "attr": {}, - "npclist": "4014_650_90072#4009_650_90070#4011_650_90071#3013_650_90072#3005_650_90074#5001_650_90073", - "npcLv": [ - 1718, - 1718, - 1718, - 1718, - 1718, - 1718 - ], - "isboss": 0, - "ghname": "npc_ghname_5" - }, - "15549": { - "npcId": 15549, - "attr": {}, - "npclist": "3010_650_90072#4008_650_90070#3007_650_90071#5003_650_90072#5005_650_90074#5002_650_90073", - "npcLv": [ - 1718, - 1718, - 1718, - 1718, - 1718, - 1718 - ], - "isboss": 0, - "ghname": "npc_ghname_6" - }, - "15550": { - "npcId": 15550, - "attr": {}, - "npclist": "3009_653_90072#4013_653_90070#3005_653_90071#4006_653_90072#3001_653_90074#3011_653_90073", - "npcLv": [ - 1727, - 1727, - 1727, - 1727, - 1727, - 1727 - ], - "isboss": 0, - "ghname": "npc_ghname_1" - }, - "15551": { - "npcId": 15551, - "attr": {}, - "npclist": "4012_653_90072#3011_653_90070#4015_653_90071#5005_653_90072#4014_653_90074#3002_653_90073", - "npcLv": [ - 1727, - 1727, - 1727, - 1727, - 1727, - 1727 - ], - "isboss": 0, - "ghname": "npc_ghname_2" - }, - "15552": { - "npcId": 15552, - "attr": {}, - "npclist": "4009_656_90072#2002_656_90070#4008_656_90071#4010_656_90072#4004_656_90074#4007_656_90073", - "npcLv": [ - 1736, - 1736, - 1736, - 1736, - 1736, - 1736 - ], - "isboss": 0, - "ghname": "npc_ghname_3" - }, - "15553": { - "npcId": 15553, - "attr": {}, - "npclist": "5001_656_90072#4011_656_90070#3015_656_90071#3009_656_90072#5002_656_90074#5003_656_90073", - "npcLv": [ - 1736, - 1736, - 1736, - 1736, - 1736, - 1736 - ], - "isboss": 0, - "ghname": "npc_ghname_4" - }, - "15554": { - "npcId": 15554, - "attr": {}, - "npclist": "4015_659_90072#4012_659_90070#5001_659_90071#4013_659_90072#4008_659_90074#4002_659_90073", - "npcLv": [ - 1745, - 1745, - 1745, - 1745, - 1745, - 1745 - ], - "isboss": 0, - "ghname": "npc_ghname_5" - }, - "15555": { - "npcId": 15555, - "attr": {}, - "npclist": "3010_659_90072#3008_659_90070#4009_659_90071#4014_659_90072#4001_659_90074#4004_659_90073", - "npcLv": [ - 1745, - 1745, - 1745, - 1745, - 1745, - 1745 - ], - "isboss": 0, - "ghname": "npc_ghname_6" - }, - "15556": { - "npcId": 15556, - "attr": {}, - "npclist": "4014_662_90072#5002_662_90070#4015_662_90071#4012_662_90072#5004_662_90074#3005_662_90073", - "npcLv": [ - 1754, - 1754, - 1754, - 1754, - 1754, - 1754 - ], - "isboss": 0, - "ghname": "npc_ghname_1" - }, - "15557": { - "npcId": 15557, - "attr": {}, - "npclist": "3009_662_90072#5001_662_90070#3013_662_90071#5003_662_90072#4009_662_90074#4013_662_90073", - "npcLv": [ - 1754, - 1754, - 1754, - 1754, - 1754, - 1754 - ], - "isboss": 0, - "ghname": "npc_ghname_2" - }, - "15558": { - "npcId": 15558, - "attr": {}, - "npclist": "3007_665_90072#4008_665_90070#4013_665_90071#4003_665_90072#3008_665_90074#3012_665_90073", - "npcLv": [ - 1763, - 1763, - 1763, - 1763, - 1763, - 1763 - ], - "isboss": 0, - "ghname": "npc_ghname_3" - }, - "15559": { - "npcId": 15559, - "attr": {}, - "npclist": "5005_665_90072#4001_665_90070#3013_665_90071#3007_665_90072#3010_665_90074#3011_665_90073", - "npcLv": [ - 1763, - 1763, - 1763, - 1763, - 1763, - 1763 - ], - "isboss": 0, - "ghname": "npc_ghname_4" - }, - "15560": { - "npcId": 15560, - "attr": {}, - "npclist": "4013_668_90072#4014_668_90070#5004_668_90071#5002_668_90072#4012_668_90074#4010_668_90073", - "npcLv": [ - 1772, - 1772, - 1772, - 1772, - 1772, - 1772 - ], - "isboss": 0, - "ghname": "npc_ghname_5" - }, - "15561": { - "npcId": 15561, - "attr": {}, - "npclist": "5001_668_90072#4004_668_90070#4002_668_90071#4011_668_90072#4006_668_90074#3002_668_90073", - "npcLv": [ - 1772, - 1772, - 1772, - 1772, - 1772, - 1772 - ], - "isboss": 0, - "ghname": "npc_ghname_6" - }, - "15562": { - "npcId": 15562, - "attr": {}, - "npclist": "4008_671_90072#4013_671_90070#4005_671_90071#5005_671_90072#3014_671_90074#3008_671_90073", - "npcLv": [ - 1781, - 1781, - 1781, - 1781, - 1781, - 1781 - ], - "isboss": 0, - "ghname": "npc_ghname_1" - }, - "15563": { - "npcId": 15563, - "attr": {}, - "npclist": "3013_671_90072#3010_671_90070#4007_671_90071#4004_671_90072#4014_671_90074#4009_671_90073", - "npcLv": [ - 1781, - 1781, - 1781, - 1781, - 1781, - 1781 - ], - "isboss": 0, - "ghname": "npc_ghname_2" - }, - "15564": { - "npcId": 15564, - "attr": {}, - "npclist": "4014_674_90072#4012_674_90070#3007_674_90071#5001_674_90072#4013_674_90074#4015_674_90073", - "npcLv": [ - 1790, - 1790, - 1790, - 1790, - 1790, - 1790 - ], - "isboss": 0, - "ghname": "npc_ghname_3" - }, - "15565": { - "npcId": 15565, - "attr": {}, - "npclist": "5003_674_90072#3013_674_90070#4008_674_90071#4003_674_90072#5002_674_90074#5004_674_90073", - "npcLv": [ - 1790, - 1790, - 1790, - 1790, - 1790, - 1790 - ], - "isboss": 0, - "ghname": "npc_ghname_4" - }, - "15566": { - "npcId": 15566, - "attr": {}, - "npclist": "4011_677_90072#4002_677_90070#3007_677_90071#4010_677_90072#4009_677_90074#4004_677_90073", - "npcLv": [ - 1799, - 1799, - 1799, - 1799, - 1799, - 1799 - ], - "isboss": 0, - "ghname": "npc_ghname_5" - }, - "15567": { - "npcId": 15567, - "attr": {}, - "npclist": "3001_677_90072#4014_677_90070#4015_677_90071#3009_677_90072#3013_677_90074#4013_677_90073", - "npcLv": [ - 1799, - 1799, - 1799, - 1799, - 1799, - 1799 - ], - "isboss": 0, - "ghname": "npc_ghname_6" - }, - "15568": { - "npcId": 15568, - "attr": {}, - "npclist": "5002_680_90072#4012_680_90070#4011_680_90071#3010_680_90072#3005_680_90074#5005_680_90073", - "npcLv": [ - 1808, - 1808, - 1808, - 1808, - 1808, - 1808 - ], - "isboss": 0, - "ghname": "npc_ghname_1" - }, - "15569": { - "npcId": 15569, - "attr": {}, - "npclist": "3015_680_90072#3012_680_90070#3002_680_90071#4014_680_90072#4005_680_90074#4008_680_90073", - "npcLv": [ - 1808, - 1808, - 1808, - 1808, - 1808, - 1808 - ], - "isboss": 0, - "ghname": "npc_ghname_2" - }, - "15570": { - "npcId": 15570, - "attr": {}, - "npclist": "4010_683_90072#4013_683_90070#3010_683_90071#4009_683_90072#5001_683_90074#4003_683_90073", - "npcLv": [ - 1817, - 1817, - 1817, - 1817, - 1817, - 1817 - ], - "isboss": 0, - "ghname": "npc_ghname_3" - }, - "15571": { - "npcId": 15571, - "attr": {}, - "npclist": "4007_683_90072#4004_683_90070#5003_683_90071#5004_683_90072#2002_683_90074#3011_683_90073", - "npcLv": [ - 1817, - 1817, - 1817, - 1817, - 1817, - 1817 - ], - "isboss": 0, - "ghname": "npc_ghname_4" - }, - "15572": { - "npcId": 15572, - "attr": {}, - "npclist": "4013_686_90072#4015_686_90070#4012_686_90071#5002_686_90072#4014_686_90074#5003_686_90073", - "npcLv": [ - 1826, - 1826, - 1826, - 1826, - 1826, - 1826 - ], - "isboss": 0, - "ghname": "npc_ghname_5" - }, - "15573": { - "npcId": 15573, - "attr": {}, - "npclist": "4001_686_90072#4002_686_90070#5001_686_90071#4004_686_90072#5005_686_90074#3009_686_90073", - "npcLv": [ - 1826, - 1826, - 1826, - 1826, - 1826, - 1826 - ], - "isboss": 0, - "ghname": "npc_ghname_6" - }, - "15574": { - "npcId": 15574, - "attr": {}, - "npclist": "3010_689_90072#4009_689_90070#4007_689_90071#3015_689_90072#5002_689_90074#5005_689_90073", - "npcLv": [ - 1835, - 1835, - 1835, - 1835, - 1835, - 1835 - ], - "isboss": 0, - "ghname": "npc_ghname_1" - }, - "15575": { - "npcId": 15575, - "attr": {}, - "npclist": "4014_689_90072#4008_689_90070#4003_689_90071#4012_689_90072#4001_689_90074#4011_689_90073", - "npcLv": [ - 1835, - 1835, - 1835, - 1835, - 1835, - 1835 - ], - "isboss": 0, - "ghname": "npc_ghname_2" - }, - "15576": { - "npcId": 15576, - "attr": {}, - "npclist": "4003_692_90072#5001_692_90070#4013_692_90071#4015_692_90072#5003_692_90074#4006_692_90073", - "npcLv": [ - 1844, - 1844, - 1844, - 1844, - 1844, - 1844 - ], - "isboss": 0, - "ghname": "npc_ghname_3" - }, - "15577": { - "npcId": 15577, - "attr": {}, - "npclist": "3005_692_90072#3007_692_90070#4010_692_90071#3005_692_90072#4013_692_90074#5002_692_90073", - "npcLv": [ - 1844, - 1844, - 1844, - 1844, - 1844, - 1844 - ], - "isboss": 0, - "ghname": "npc_ghname_4" - }, - "15578": { - "npcId": 15578, - "attr": {}, - "npclist": "4009_695_90072#4014_695_90070#3014_695_90071#3006_695_90072#3011_695_90074#4012_695_90073", - "npcLv": [ - 1853, - 1853, - 1853, - 1853, - 1853, - 1853 - ], - "isboss": 0, - "ghname": "npc_ghname_5" - }, - "15579": { - "npcId": 15579, - "attr": {}, - "npclist": "4008_695_90072#5004_695_90070#5005_695_90071#4014_695_90072#3001_695_90074#4013_695_90073", - "npcLv": [ - 1853, - 1853, - 1853, - 1853, - 1853, - 1853 - ], - "isboss": 0, - "ghname": "npc_ghname_6" - }, - "15580": { - "npcId": 15580, - "attr": {}, - "npclist": "3011_698_90072#4013_698_90070#5003_698_90071#5002_698_90072#4010_698_90074#4001_698_90073", - "npcLv": [ - 1862, - 1862, - 1862, - 1862, - 1862, - 1862 - ], - "isboss": 0, - "ghname": "npc_ghname_1" - }, - "15581": { - "npcId": 15581, - "attr": {}, - "npclist": "4014_698_90072#2002_698_90070#4004_698_90071#4011_698_90072#3010_698_90074#4015_698_90073", - "npcLv": [ - 1862, - 1862, - 1862, - 1862, - 1862, - 1862 - ], - "isboss": 0, - "ghname": "npc_ghname_2" - }, - "15582": { - "npcId": 15582, - "attr": {}, - "npclist": "5004_701_90072#4009_701_90070#4012_701_90071#4006_701_90072#3013_701_90074#3008_701_90073", - "npcLv": [ - 1871, - 1871, - 1871, - 1871, - 1871, - 1871 - ], - "isboss": 0, - "ghname": "npc_ghname_3" - }, - "15583": { - "npcId": 15583, - "attr": {}, - "npclist": "4013_701_90072#4005_701_90070#3005_701_90071#5005_701_90072#4003_701_90074#4014_701_90073", - "npcLv": [ - 1871, - 1871, - 1871, - 1871, - 1871, - 1871 - ], - "isboss": 0, - "ghname": "npc_ghname_4" - }, - "15584": { - "npcId": 15584, - "attr": {}, - "npclist": "5002_704_90072#4015_704_90070#4008_704_90071#4009_704_90072#3006_704_90074#3001_704_90073", - "npcLv": [ - 1880, - 1880, - 1880, - 1880, - 1880, - 1880 - ], - "isboss": 0, - "ghname": "npc_ghname_5" - }, - "15585": { - "npcId": 15585, - "attr": {}, - "npclist": "4004_704_90072#4011_704_90070#3005_704_90071#5001_704_90072#3007_704_90074#4010_704_90073", - "npcLv": [ - 1880, - 1880, - 1880, - 1880, - 1880, - 1880 - ], - "isboss": 0, - "ghname": "npc_ghname_6" - }, - "15586": { - "npcId": 15586, - "attr": {}, - "npclist": "3010_707_90072#4013_707_90070#5004_707_90071#4003_707_90072#4007_707_90074#5005_707_90073", - "npcLv": [ - 1889, - 1889, - 1889, - 1889, - 1889, - 1889 - ], - "isboss": 0, - "ghname": "npc_ghname_1" - }, - "15587": { - "npcId": 15587, - "attr": {}, - "npclist": "4012_707_90072#3014_707_90070#4013_707_90071#5005_707_90072#5003_707_90074#4009_707_90073", - "npcLv": [ - 1889, - 1889, - 1889, - 1889, - 1889, - 1889 - ], - "isboss": 0, - "ghname": "npc_ghname_2" - }, - "15588": { - "npcId": 15588, - "attr": {}, - "npclist": "4011_710_90072#4014_710_90070#4010_710_90071#4002_710_90072#4008_710_90074#3015_710_90073", - "npcLv": [ - 1898, - 1898, - 1898, - 1898, - 1898, - 1898 - ], - "isboss": 0, - "ghname": "npc_ghname_3" - }, - "15589": { - "npcId": 15589, - "attr": {}, - "npclist": "3002_710_90072#5001_710_90070#5002_710_90071#3007_710_90072#4013_710_90074#5004_710_90073", - "npcLv": [ - 1898, - 1898, - 1898, - 1898, - 1898, - 1898 - ], - "isboss": 0, - "ghname": "npc_ghname_4" - }, - "15590": { - "npcId": 15590, - "attr": {}, - "npclist": "5003_713_90072#4012_713_90070#4011_713_90071#4014_713_90072#3015_713_90074#4013_713_90073", - "npcLv": [ - 1907, - 1907, - 1907, - 1907, - 1907, - 1907 - ], - "isboss": 0, - "ghname": "npc_ghname_5" - }, - "15591": { - "npcId": 15591, - "attr": {}, - "npclist": "4015_713_90072#3008_713_90070#4003_713_90071#3007_713_90072#3005_713_90074#4007_713_90073", - "npcLv": [ - 1907, - 1907, - 1907, - 1907, - 1907, - 1907 - ], - "isboss": 0, - "ghname": "npc_ghname_6" - }, - "15592": { - "npcId": 15592, - "attr": {}, - "npclist": "4008_716_90072#5001_716_90070#5005_716_90071#5004_716_90072#4005_716_90074#5002_716_90073", - "npcLv": [ - 1916, - 1916, - 1916, - 1916, - 1916, - 1916 - ], - "isboss": 0, - "ghname": "npc_ghname_1" - }, - "15593": { - "npcId": 15593, - "attr": {}, - "npclist": "4014_716_90072#4006_716_90070#5004_716_90071#4004_716_90072#3010_716_90074#3011_716_90073", - "npcLv": [ - 1916, - 1916, - 1916, - 1916, - 1916, - 1916 - ], - "isboss": 0, - "ghname": "npc_ghname_2" - }, - "15594": { - "npcId": 15594, - "attr": {}, - "npclist": "3013_719_90072#4013_719_90070#4012_719_90071#5001_719_90072#5002_719_90074#4003_719_90073", - "npcLv": [ - 1925, - 1925, - 1925, - 1925, - 1925, - 1925 - ], - "isboss": 0, - "ghname": "npc_ghname_3" - }, - "15595": { - "npcId": 15595, - "attr": {}, - "npclist": "4010_719_90072#5003_719_90070#4015_719_90071#4008_719_90072#4009_719_90074#5005_719_90073", - "npcLv": [ - 1925, - 1925, - 1925, - 1925, - 1925, - 1925 - ], - "isboss": 0, - "ghname": "npc_ghname_4" - }, - "15596": { - "npcId": 15596, - "attr": {}, - "npclist": "3010_722_90072#3015_722_90070#4001_722_90071#3001_722_90072#4007_722_90074#3007_722_90073", - "npcLv": [ - 1934, - 1934, - 1934, - 1934, - 1934, - 1934 - ], - "isboss": 0, - "ghname": "npc_ghname_5" - }, - "15597": { - "npcId": 15597, - "attr": {}, - "npclist": "4013_722_90072#5004_722_90070#3002_722_90071#4012_722_90072#4015_722_90074#3007_722_90073", - "npcLv": [ - 1934, - 1934, - 1934, - 1934, - 1934, - 1934 - ], - "isboss": 0, - "ghname": "npc_ghname_6" - }, - "15598": { - "npcId": 15598, - "attr": {}, - "npclist": "5002_725_90072#4013_725_90070#3010_725_90071#3013_725_90072#4011_725_90074#3005_725_90073", - "npcLv": [ - 1943, - 1943, - 1943, - 1943, - 1943, - 1943 - ], - "isboss": 0, - "ghname": "npc_ghname_1" - }, - "15599": { - "npcId": 15599, - "attr": {}, - "npclist": "3007_725_90072#4009_725_90070#4014_725_90071#5001_725_90072#5005_725_90074#4015_725_90073", - "npcLv": [ - 1943, - 1943, - 1943, - 1943, - 1943, - 1943 - ], - "isboss": 0, "ghname": "npc_ghname_2" }, "15600": { "npcId": 15600, "attr": {}, - "npclist": "3010_728_90072#3009_728_90070#5003_728_90071#4013_728_90072#3010_728_90074#4004_728_90073", + "npclist": "3010_310_90072#3009_310_90070#5003_310_90071#4013_310_90072#3010_310_90074#4004_310_90073", "npcLv": [ - 1952, - 1952, - 1952, - 1952, - 1952, - 1952 + 1103, + 1103, + 1103, + 1103, + 1103, + 1103 ], "isboss": 0, "ghname": "npc_ghname_3" @@ -20328,14 +20328,14 @@ "15601": { "npcId": 15601, "attr": {}, - "npclist": "4014_728_90072#5002_728_90070#4010_728_90071#4006_728_90072#3009_728_90074#4012_728_90073", + "npclist": "4014_311_90072#5002_311_90070#4010_311_90071#4006_311_90072#3009_311_90074#4012_311_90073", "npcLv": [ - 1952, - 1952, - 1952, - 1952, - 1952, - 1952 + 1108, + 1108, + 1108, + 1108, + 1108, + 1108 ], "isboss": 0, "ghname": "npc_ghname_4" @@ -20343,14 +20343,14 @@ "15602": { "npcId": 15602, "attr": {}, - "npclist": "5004_731_90072#4005_731_90070#5005_731_90071#3002_731_90072#4002_731_90074#3001_731_90073", + "npclist": "5004_312_90072#4005_312_90070#5005_312_90071#3002_312_90072#4002_312_90074#3001_312_90073", "npcLv": [ - 1961, - 1961, - 1961, - 1961, - 1961, - 1961 + 1113, + 1113, + 1113, + 1113, + 1113, + 1113 ], "isboss": 0, "ghname": "npc_ghname_5" @@ -20358,14 +20358,14 @@ "15603": { "npcId": 15603, "attr": {}, - "npclist": "4008_731_90072#3005_731_90070#4002_731_90071#3011_731_90072#4013_731_90074#4011_731_90073", + "npclist": "4008_313_90072#3005_313_90070#4002_313_90071#3011_313_90072#4013_313_90074#4011_313_90073", "npcLv": [ - 1961, - 1961, - 1961, - 1961, - 1961, - 1961 + 1118, + 1118, + 1118, + 1118, + 1118, + 1118 ], "isboss": 0, "ghname": "npc_ghname_6" @@ -20373,14 +20373,14 @@ "15604": { "npcId": 15604, "attr": {}, - "npclist": "5001_734_90072#4003_734_90070#3011_734_90071#5002_734_90072#5003_734_90074#3013_734_90073", + "npclist": "5001_314_90072#4003_314_90070#3011_314_90071#5002_314_90072#5003_314_90074#3013_314_90073", "npcLv": [ - 1970, - 1970, - 1970, - 1970, - 1970, - 1970 + 1123, + 1123, + 1123, + 1123, + 1123, + 1123 ], "isboss": 0, "ghname": "npc_ghname_1" @@ -20388,14 +20388,14 @@ "15605": { "npcId": 15605, "attr": {}, - "npclist": "3005_734_90072#5004_734_90070#4012_734_90071#4010_734_90072#4014_734_90074#3002_734_90073", + "npclist": "3005_315_90072#5004_315_90070#4012_315_90071#4010_315_90072#4014_315_90074#3002_315_90073", "npcLv": [ - 1970, - 1970, - 1970, - 1970, - 1970, - 1970 + 1128, + 1128, + 1128, + 1128, + 1128, + 1128 ], "isboss": 0, "ghname": "npc_ghname_2" @@ -20403,14 +20403,14 @@ "15606": { "npcId": 15606, "attr": {}, - "npclist": "4001_737_90072#3015_737_90070#4004_737_90071#3010_737_90072#4001_737_90074#4013_737_90073", + "npclist": "4001_316_90072#3015_316_90070#4004_316_90071#3010_316_90072#4001_316_90074#4013_316_90073", "npcLv": [ - 1979, - 1979, - 1979, - 1979, - 1979, - 1979 + 1133, + 1133, + 1133, + 1133, + 1133, + 1133 ], "isboss": 0, "ghname": "npc_ghname_3" @@ -20418,14 +20418,14 @@ "15607": { "npcId": 15607, "attr": {}, - "npclist": "4015_737_90072#4012_737_90070#5004_737_90071#5003_737_90072#5005_737_90074#5002_737_90073", + "npclist": "4015_317_90072#4012_317_90070#5004_317_90071#5003_317_90072#5005_317_90074#5002_317_90073", "npcLv": [ - 1979, - 1979, - 1979, - 1979, - 1979, - 1979 + 1138, + 1138, + 1138, + 1138, + 1138, + 1138 ], "isboss": 0, "ghname": "npc_ghname_4" @@ -20433,14 +20433,14 @@ "15608": { "npcId": 15608, "attr": {}, - "npclist": "4009_740_90072#4014_740_90070#4013_740_90071#4007_740_90072#4010_740_90074#3010_740_90073", + "npclist": "4009_318_90072#4014_318_90070#4013_318_90071#4007_318_90072#4010_318_90074#3010_318_90073", "npcLv": [ - 1988, - 1988, - 1988, - 1988, - 1988, - 1988 + 1143, + 1143, + 1143, + 1143, + 1143, + 1143 ], "isboss": 0, "ghname": "npc_ghname_5" @@ -20448,14 +20448,14 @@ "15609": { "npcId": 15609, "attr": {}, - "npclist": "4012_740_90072#4011_740_90070#4001_740_90071#3015_740_90072#3013_740_90074#3001_740_90073", + "npclist": "4012_319_90072#4011_319_90070#4001_319_90071#3015_319_90072#3013_319_90074#3001_319_90073", "npcLv": [ - 1988, - 1988, - 1988, - 1988, - 1988, - 1988 + 1148, + 1148, + 1148, + 1148, + 1148, + 1148 ], "isboss": 0, "ghname": "npc_ghname_6" @@ -20463,14 +20463,14 @@ "15610": { "npcId": 15610, "attr": {}, - "npclist": "3012_743_90072#5005_743_90070#4015_743_90071#3005_743_90072#4008_743_90074#5004_743_90073", + "npclist": "3012_320_90072#5005_320_90070#4015_320_90071#3005_320_90072#4008_320_90074#5004_320_90073", "npcLv": [ - 1997, - 1997, - 1997, - 1997, - 1997, - 1997 + 1153, + 1153, + 1153, + 1153, + 1153, + 1153 ], "isboss": 0, "ghname": "npc_ghname_1" @@ -20478,14 +20478,14 @@ "15611": { "npcId": 15611, "attr": {}, - "npclist": "3013_743_90072#3011_743_90070#5003_743_90071#5002_743_90072#3005_743_90074#4005_743_90073", + "npclist": "3013_321_90072#3011_321_90070#5003_321_90071#5002_321_90072#3005_321_90074#4005_321_90073", "npcLv": [ - 1997, - 1997, - 1997, - 1997, - 1997, - 1997 + 1158, + 1158, + 1158, + 1158, + 1158, + 1158 ], "isboss": 0, "ghname": "npc_ghname_2" @@ -20493,14 +20493,14 @@ "15612": { "npcId": 15612, "attr": {}, - "npclist": "4013_746_90072#3009_746_90070#4006_746_90071#4003_746_90072#4015_746_90074#3007_746_90073", + "npclist": "4013_322_90072#3009_322_90070#4006_322_90071#4003_322_90072#4015_322_90074#3007_322_90073", "npcLv": [ - 2006, - 2006, - 2006, - 2006, - 2006, - 2006 + 1163, + 1163, + 1163, + 1163, + 1163, + 1163 ], "isboss": 0, "ghname": "npc_ghname_3" @@ -20508,14 +20508,14 @@ "15613": { "npcId": 15613, "attr": {}, - "npclist": "5005_746_90072#4007_746_90070#4012_746_90071#5004_746_90072#3001_746_90074#4010_746_90073", + "npclist": "5005_323_90072#4007_323_90070#4012_323_90071#5004_323_90072#3001_323_90074#4010_323_90073", "npcLv": [ - 2006, - 2006, - 2006, - 2006, - 2006, - 2006 + 1168, + 1168, + 1168, + 1168, + 1168, + 1168 ], "isboss": 0, "ghname": "npc_ghname_4" @@ -20523,14 +20523,14 @@ "15614": { "npcId": 15614, "attr": {}, - "npclist": "4011_749_90072#3010_749_90070#2002_749_90071#4004_749_90072#4014_749_90074#5004_749_90073", + "npclist": "4011_324_90072#3010_324_90070#2002_324_90071#4004_324_90072#4014_324_90074#5004_324_90073", "npcLv": [ - 2015, - 2015, - 2015, - 2015, - 2015, - 2015 + 1173, + 1173, + 1173, + 1173, + 1173, + 1173 ], "isboss": 0, "ghname": "npc_ghname_5" @@ -20538,14 +20538,14 @@ "15615": { "npcId": 15615, "attr": {}, - "npclist": "5003_749_90072#5002_749_90070#5005_749_90071#3010_749_90072#4006_749_90074#4003_749_90073", + "npclist": "5003_325_90072#5002_325_90070#5005_325_90071#3010_325_90072#4006_325_90074#4003_325_90073", "npcLv": [ - 2015, - 2015, - 2015, - 2015, - 2015, - 2015 + 1178, + 1178, + 1178, + 1178, + 1178, + 1178 ], "isboss": 0, "ghname": "npc_ghname_6" @@ -20553,14 +20553,14 @@ "15616": { "npcId": 15616, "attr": {}, - "npclist": "3013_752_90072#5001_752_90070#4009_752_90071#3008_752_90072#4012_752_90074#3009_752_90073", + "npclist": "3013_326_90072#5001_326_90070#4009_326_90071#3008_326_90072#4012_326_90074#3009_326_90073", "npcLv": [ - 2024, - 2024, - 2024, - 2024, - 2024, - 2024 + 1183, + 1183, + 1183, + 1183, + 1183, + 1183 ], "isboss": 0, "ghname": "npc_ghname_1" @@ -20568,14 +20568,14 @@ "15617": { "npcId": 15617, "attr": {}, - "npclist": "4004_752_90072#4011_752_90070#5004_752_90071#3001_752_90072#4005_752_90074#4015_752_90073", + "npclist": "4004_327_90072#4011_327_90070#5004_327_90071#3001_327_90072#4005_327_90074#4015_327_90073", "npcLv": [ - 2024, - 2024, - 2024, - 2024, - 2024, - 2024 + 1188, + 1188, + 1188, + 1188, + 1188, + 1188 ], "isboss": 0, "ghname": "npc_ghname_2" @@ -20583,14 +20583,14 @@ "15618": { "npcId": 15618, "attr": {}, - "npclist": "5002_755_90072#4002_755_90070#3006_755_90071#4010_755_90072#5005_755_90074#3009_755_90073", + "npclist": "5002_328_90072#4002_328_90070#3006_328_90071#4010_328_90072#5005_328_90074#3009_328_90073", "npcLv": [ - 2033, - 2033, - 2033, - 2033, - 2033, - 2033 + 1193, + 1193, + 1193, + 1193, + 1193, + 1193 ], "isboss": 0, "ghname": "npc_ghname_3" @@ -20598,14 +20598,14 @@ "15619": { "npcId": 15619, "attr": {}, - "npclist": "3014_755_90072#5004_755_90070#5003_755_90071#4003_755_90072#4015_755_90074#4011_755_90073", + "npclist": "3014_329_90072#5004_329_90070#5003_329_90071#4003_329_90072#4015_329_90074#4011_329_90073", "npcLv": [ - 2033, - 2033, - 2033, - 2033, - 2033, - 2033 + 1198, + 1198, + 1198, + 1198, + 1198, + 1198 ], "isboss": 0, "ghname": "npc_ghname_4" @@ -20613,14 +20613,14 @@ "15620": { "npcId": 15620, "attr": {}, - "npclist": "3001_758_90072#4014_758_90070#4013_758_90071#3002_758_90072#4009_758_90074#3014_758_90073", + "npclist": "3001_330_90072#4014_330_90070#4013_330_90071#3002_330_90072#4009_330_90074#3014_330_90073", "npcLv": [ - 2042, - 2042, - 2042, - 2042, - 2042, - 2042 + 1203, + 1203, + 1203, + 1203, + 1203, + 1203 ], "isboss": 0, "ghname": "npc_ghname_5" @@ -20628,14 +20628,14 @@ "15621": { "npcId": 15621, "attr": {}, - "npclist": "5004_758_90072#3009_758_90070#5002_758_90071#4013_758_90072#3005_758_90074#4012_758_90073", + "npclist": "5004_331_90072#3009_331_90070#5002_331_90071#4013_331_90072#3005_331_90074#4012_331_90073", "npcLv": [ - 2042, - 2042, - 2042, - 2042, - 2042, - 2042 + 1208, + 1208, + 1208, + 1208, + 1208, + 1208 ], "isboss": 0, "ghname": "npc_ghname_6" @@ -20643,14 +20643,14 @@ "15622": { "npcId": 15622, "attr": {}, - "npclist": "5001_761_90072#4015_761_90070#4005_761_90071#3011_761_90072#4003_761_90074#5005_761_90073", + "npclist": "5001_332_90072#4015_332_90070#4005_332_90071#3011_332_90072#4003_332_90074#5005_332_90073", "npcLv": [ - 2051, - 2051, - 2051, - 2051, - 2051, - 2051 + 1213, + 1213, + 1213, + 1213, + 1213, + 1213 ], "isboss": 0, "ghname": "npc_ghname_1" @@ -20658,14 +20658,14 @@ "15623": { "npcId": 15623, "attr": {}, - "npclist": "4014_761_90072#3007_761_90070#3013_761_90071#4002_761_90072#5002_761_90074#4009_761_90073", + "npclist": "4014_333_90072#3007_333_90070#3013_333_90071#4002_333_90072#5002_333_90074#4009_333_90073", "npcLv": [ - 2051, - 2051, - 2051, - 2051, - 2051, - 2051 + 1218, + 1218, + 1218, + 1218, + 1218, + 1218 ], "isboss": 0, "ghname": "npc_ghname_2" @@ -20673,14 +20673,14 @@ "15624": { "npcId": 15624, "attr": {}, - "npclist": "4015_764_90072#4007_764_90070#5004_764_90071#4012_764_90072#4011_764_90074#4001_764_90073", + "npclist": "4015_334_90072#4007_334_90070#5004_334_90071#4012_334_90072#4011_334_90074#4001_334_90073", "npcLv": [ - 2060, - 2060, - 2060, - 2060, - 2060, - 2060 + 1223, + 1223, + 1223, + 1223, + 1223, + 1223 ], "isboss": 0, "ghname": "npc_ghname_3" @@ -20688,14 +20688,14 @@ "15625": { "npcId": 15625, "attr": {}, - "npclist": "3006_764_90072#4004_764_90070#3015_764_90071#5005_764_90072#5003_764_90074#4013_764_90073", + "npclist": "3006_335_90072#4004_335_90070#3015_335_90071#5005_335_90072#5003_335_90074#4013_335_90073", "npcLv": [ - 2060, - 2060, - 2060, - 2060, - 2060, - 2060 + 1228, + 1228, + 1228, + 1228, + 1228, + 1228 ], "isboss": 0, "ghname": "npc_ghname_4" @@ -20703,14 +20703,14 @@ "15626": { "npcId": 15626, "attr": {}, - "npclist": "3002_767_90072#4010_767_90070#5001_767_90071#4007_767_90072#3013_767_90074#4008_767_90073", + "npclist": "3002_336_90072#4010_336_90070#5001_336_90071#4007_336_90072#3013_336_90074#4008_336_90073", "npcLv": [ - 2069, - 2069, - 2069, - 2069, - 2069, - 2069 + 1233, + 1233, + 1233, + 1233, + 1233, + 1233 ], "isboss": 0, "ghname": "npc_ghname_5" @@ -20718,14 +20718,14 @@ "15627": { "npcId": 15627, "attr": {}, - "npclist": "5005_767_90072#2002_767_90070#3010_767_90071#4013_767_90072#3011_767_90074#5002_767_90073", + "npclist": "5005_337_90072#2002_337_90070#3010_337_90071#4013_337_90072#3011_337_90074#5002_337_90073", "npcLv": [ - 2069, - 2069, - 2069, - 2069, - 2069, - 2069 + 1238, + 1238, + 1238, + 1238, + 1238, + 1238 ], "isboss": 0, "ghname": "npc_ghname_6" @@ -20733,14 +20733,14 @@ "15628": { "npcId": 15628, "attr": {}, - "npclist": "4010_770_90072#4011_770_90070#4006_770_90071#4003_770_90072#3009_770_90074#5004_770_90073", + "npclist": "4010_338_90072#4011_338_90070#4006_338_90071#4003_338_90072#3009_338_90074#5004_338_90073", "npcLv": [ - 2078, - 2078, - 2078, - 2078, - 2078, - 2078 + 1243, + 1243, + 1243, + 1243, + 1243, + 1243 ], "isboss": 0, "ghname": "npc_ghname_1" @@ -20748,14 +20748,14 @@ "15629": { "npcId": 15629, "attr": {}, - "npclist": "3001_770_90072#4014_770_90070#4015_770_90071#5005_770_90072#5001_770_90074#4002_770_90073", + "npclist": "3001_339_90072#4014_339_90070#4015_339_90071#5005_339_90072#5001_339_90074#4002_339_90073", "npcLv": [ - 2078, - 2078, - 2078, - 2078, - 2078, - 2078 + 1248, + 1248, + 1248, + 1248, + 1248, + 1248 ], "isboss": 0, "ghname": "npc_ghname_2" @@ -20763,14 +20763,14 @@ "15630": { "npcId": 15630, "attr": {}, - "npclist": "3010_773_90072#4013_773_90070#4005_773_90071#5002_773_90072#4007_773_90074#3013_773_90073", + "npclist": "3010_340_90072#4013_340_90070#4005_340_90071#5002_340_90072#4007_340_90074#3013_340_90073", "npcLv": [ - 2087, - 2087, - 2087, - 2087, - 2087, - 2087 + 1253, + 1253, + 1253, + 1253, + 1253, + 1253 ], "isboss": 0, "ghname": "npc_ghname_3" @@ -20778,14 +20778,14 @@ "15631": { "npcId": 15631, "attr": {}, - "npclist": "4011_773_90072#4001_773_90070#4012_773_90071#4009_773_90072#4015_773_90074#5003_773_90073", + "npclist": "4011_341_90072#4001_341_90070#4012_341_90071#4009_341_90072#4015_341_90074#5003_341_90073", "npcLv": [ - 2087, - 2087, - 2087, - 2087, - 2087, - 2087 + 1258, + 1258, + 1258, + 1258, + 1258, + 1258 ], "isboss": 0, "ghname": "npc_ghname_4" @@ -20793,14 +20793,14 @@ "15632": { "npcId": 15632, "attr": {}, - "npclist": "3015_776_90072#5002_776_90070#4003_776_90071#5004_776_90072#5005_776_90074#4014_776_90073", + "npclist": "3015_342_90072#5002_342_90070#4003_342_90071#5004_342_90072#5005_342_90074#4014_342_90073", "npcLv": [ - 2096, - 2096, - 2096, - 2096, - 2096, - 2096 + 1263, + 1263, + 1263, + 1263, + 1263, + 1263 ], "isboss": 0, "ghname": "npc_ghname_5" @@ -20808,14 +20808,14 @@ "15633": { "npcId": 15633, "attr": {}, - "npclist": "4013_776_90072#4006_776_90070#3002_776_90071#3007_776_90072#3015_776_90074#3007_776_90073", + "npclist": "4013_343_90072#4006_343_90070#3002_343_90071#3007_343_90072#3015_343_90074#3007_343_90073", "npcLv": [ - 2096, - 2096, - 2096, - 2096, - 2096, - 2096 + 1268, + 1268, + 1268, + 1268, + 1268, + 1268 ], "isboss": 0, "ghname": "npc_ghname_6" @@ -20823,14 +20823,14 @@ "15634": { "npcId": 15634, "attr": {}, - "npclist": "4012_779_90072#5004_779_90070#4011_779_90071#3013_779_90072#3007_779_90074#4015_779_90073", + "npclist": "4012_344_90072#5004_344_90070#4011_344_90071#3013_344_90072#3007_344_90074#4015_344_90073", "npcLv": [ - 2105, - 2105, - 2105, - 2105, - 2105, - 2105 + 1273, + 1273, + 1273, + 1273, + 1273, + 1273 ], "isboss": 0, "ghname": "npc_ghname_1" @@ -20838,14 +20838,14 @@ "15635": { "npcId": 15635, "attr": {}, - "npclist": "5002_779_90072#4008_779_90070#4010_779_90071#5001_779_90072#4004_779_90074#3007_779_90073", + "npclist": "5002_345_90072#4008_345_90070#4010_345_90071#5001_345_90072#4004_345_90074#3007_345_90073", "npcLv": [ - 2105, - 2105, - 2105, - 2105, - 2105, - 2105 + 1278, + 1278, + 1278, + 1278, + 1278, + 1278 ], "isboss": 0, "ghname": "npc_ghname_2" @@ -20853,14 +20853,14 @@ "15636": { "npcId": 15636, "attr": {}, - "npclist": "3010_782_90072#3005_782_90070#4006_782_90071#4015_782_90072#5003_782_90074#4014_782_90073", + "npclist": "3010_346_90072#3005_346_90070#4006_346_90071#4015_346_90072#5003_346_90074#4014_346_90073", "npcLv": [ - 2114, - 2114, - 2114, - 2114, - 2114, - 2114 + 1283, + 1283, + 1283, + 1283, + 1283, + 1283 ], "isboss": 0, "ghname": "npc_ghname_3" @@ -20868,14 +20868,14 @@ "15637": { "npcId": 15637, "attr": {}, - "npclist": "4009_782_90072#4015_782_90070#4013_782_90071#4010_782_90072#4005_782_90074#4003_782_90073", + "npclist": "4009_347_90072#4015_347_90070#4013_347_90071#4010_347_90072#4005_347_90074#4003_347_90073", "npcLv": [ - 2114, - 2114, - 2114, - 2114, - 2114, - 2114 + 1288, + 1288, + 1288, + 1288, + 1288, + 1288 ], "isboss": 0, "ghname": "npc_ghname_4" @@ -20883,14 +20883,14 @@ "15638": { "npcId": 15638, "attr": {}, - "npclist": "4002_785_90072#4012_785_90070#5002_785_90071#5005_785_90072#3009_785_90074#4011_785_90073", + "npclist": "4002_348_90072#4012_348_90070#5002_348_90071#5005_348_90072#3009_348_90074#4011_348_90073", "npcLv": [ - 2123, - 2123, - 2123, - 2123, - 2123, - 2123 + 1293, + 1293, + 1293, + 1293, + 1293, + 1293 ], "isboss": 0, "ghname": "npc_ghname_5" @@ -20898,14 +20898,14 @@ "15639": { "npcId": 15639, "attr": {}, - "npclist": "3013_785_90072#3005_785_90070#3014_785_90071#4013_785_90072#3011_785_90074#5004_785_90073", + "npclist": "3013_349_90072#3005_349_90070#3014_349_90071#4013_349_90072#3011_349_90074#5004_349_90073", "npcLv": [ - 2123, - 2123, - 2123, - 2123, - 2123, - 2123 + 1298, + 1298, + 1298, + 1298, + 1298, + 1298 ], "isboss": 0, "ghname": "npc_ghname_6" @@ -20913,14 +20913,14 @@ "15640": { "npcId": 15640, "attr": {}, - "npclist": "4014_788_90072#4007_788_90070#4011_788_90071#4012_788_90072#5002_788_90074#4010_788_90073", + "npclist": "4014_350_90072#4007_350_90070#4011_350_90071#4012_350_90072#5002_350_90074#4010_350_90073", "npcLv": [ - 2132, - 2132, - 2132, - 2132, - 2132, - 2132 + 1303, + 1303, + 1303, + 1303, + 1303, + 1303 ], "isboss": 0, "ghname": "npc_ghname_1" @@ -20928,14 +20928,14 @@ "15641": { "npcId": 15641, "attr": {}, - "npclist": "4008_788_90072#4015_788_90070#5003_788_90071#4006_788_90072#4009_788_90074#3002_788_90073", + "npclist": "4008_351_90072#4015_351_90070#5003_351_90071#4006_351_90072#4009_351_90074#3002_351_90073", "npcLv": [ - 2132, - 2132, - 2132, - 2132, - 2132, - 2132 + 1308, + 1308, + 1308, + 1308, + 1308, + 1308 ], "isboss": 0, "ghname": "npc_ghname_2" @@ -20943,14 +20943,14 @@ "15642": { "npcId": 15642, "attr": {}, - "npclist": "3005_791_90072#5001_791_90070#5005_791_90071#4003_791_90072#3009_791_90074#5002_791_90073", + "npclist": "3005_352_90072#5001_352_90070#5005_352_90071#4003_352_90072#3009_352_90074#5002_352_90073", "npcLv": [ - 2141, - 2141, - 2141, - 2141, - 2141, - 2141 + 1313, + 1313, + 1313, + 1313, + 1313, + 1313 ], "isboss": 0, "ghname": "npc_ghname_3" @@ -20958,14 +20958,14 @@ "15643": { "npcId": 15643, "attr": {}, - "npclist": "4015_791_90072#4011_791_90070#4004_791_90071#5004_791_90072#4012_791_90074#4001_791_90073", + "npclist": "4015_353_90072#4011_353_90070#4004_353_90071#5004_353_90072#4012_353_90074#4001_353_90073", "npcLv": [ - 2141, - 2141, - 2141, - 2141, - 2141, - 2141 + 1318, + 1318, + 1318, + 1318, + 1318, + 1318 ], "isboss": 0, "ghname": "npc_ghname_4" @@ -20973,14 +20973,14 @@ "15644": { "npcId": 15644, "attr": {}, - "npclist": "4007_794_90072#3009_794_90070#5003_794_90071#3013_794_90072#4006_794_90074#4009_794_90073", + "npclist": "4007_354_90072#3009_354_90070#5003_354_90071#3013_354_90072#4006_354_90074#4009_354_90073", "npcLv": [ - 2150, - 2150, - 2150, - 2150, - 2150, - 2150 + 1323, + 1323, + 1323, + 1323, + 1323, + 1323 ], "isboss": 0, "ghname": "npc_ghname_5" @@ -20988,14 +20988,14 @@ "15645": { "npcId": 15645, "attr": {}, - "npclist": "3010_794_90072#4014_794_90070#4002_794_90071#4005_794_90072#4013_794_90074#3007_794_90073", + "npclist": "3010_355_90072#4014_355_90070#4002_355_90071#4005_355_90072#4013_355_90074#3007_355_90073", "npcLv": [ - 2150, - 2150, - 2150, - 2150, - 2150, - 2150 + 1328, + 1328, + 1328, + 1328, + 1328, + 1328 ], "isboss": 0, "ghname": "npc_ghname_6" @@ -21003,14 +21003,14 @@ "15646": { "npcId": 15646, "attr": {}, - "npclist": "4011_797_90072#5004_797_90070#4015_797_90071#5005_797_90072#5002_797_90074#4012_797_90073", + "npclist": "4011_356_90072#5004_356_90070#4015_356_90071#5005_356_90072#5002_356_90074#4012_356_90073", "npcLv": [ - 2159, - 2159, - 2159, - 2159, - 2159, - 2159 + 1333, + 1333, + 1333, + 1333, + 1333, + 1333 ], "isboss": 0, "ghname": "npc_ghname_1" @@ -21018,14 +21018,14 @@ "15647": { "npcId": 15647, "attr": {}, - "npclist": "3009_797_90072#3015_797_90070#4010_797_90071#4014_797_90072#3002_797_90074#4013_797_90073", + "npclist": "3009_357_90072#3015_357_90070#4010_357_90071#4014_357_90072#3002_357_90074#4013_357_90073", "npcLv": [ - 2159, - 2159, - 2159, - 2159, - 2159, - 2159 + 1338, + 1338, + 1338, + 1338, + 1338, + 1338 ], "isboss": 0, "ghname": "npc_ghname_2" @@ -21033,14 +21033,14 @@ "15648": { "npcId": 15648, "attr": {}, - "npclist": "5001_800_90072#5002_800_90070#3002_800_90071#4012_800_90072#3006_800_90074#2002_800_90073", + "npclist": "5001_358_90072#5002_358_90070#3002_358_90071#4012_358_90072#3006_358_90074#2002_358_90073", "npcLv": [ - 2168, - 2168, - 2168, - 2168, - 2168, - 2168 + 1343, + 1343, + 1343, + 1343, + 1343, + 1343 ], "isboss": 0, "ghname": "npc_ghname_3" @@ -21048,14 +21048,14 @@ "15649": { "npcId": 15649, "attr": {}, - "npclist": "3011_800_90072#4009_800_90070#4011_800_90071#4015_800_90072#3001_800_90074#4006_800_90073", + "npclist": "3011_359_90072#4009_359_90070#4011_359_90071#4015_359_90072#3001_359_90074#4006_359_90073", "npcLv": [ - 2168, - 2168, - 2168, - 2168, - 2168, - 2168 + 1348, + 1348, + 1348, + 1348, + 1348, + 1348 ], "isboss": 0, "ghname": "npc_ghname_4" @@ -21063,14 +21063,14 @@ "15650": { "npcId": 15650, "attr": {}, - "npclist": "4010_803_90072#3013_803_90070#4008_803_90071#3010_803_90072#4014_803_90074#3012_803_90073", + "npclist": "4010_360_90072#3013_360_90070#4008_360_90071#3010_360_90072#4014_360_90074#3012_360_90073", "npcLv": [ - 2177, - 2177, - 2177, - 2177, - 2177, - 2177 + 1353, + 1353, + 1353, + 1353, + 1353, + 1353 ], "isboss": 0, "ghname": "npc_ghname_5" @@ -21078,14 +21078,14 @@ "15651": { "npcId": 15651, "attr": {}, - "npclist": "5002_803_90072#3007_803_90070#3009_803_90071#5003_803_90072#4005_803_90074#5005_803_90073", + "npclist": "5002_361_90072#3007_361_90070#3009_361_90071#5003_361_90072#4005_361_90074#5005_361_90073", "npcLv": [ - 2177, - 2177, - 2177, - 2177, - 2177, - 2177 + 1358, + 1358, + 1358, + 1358, + 1358, + 1358 ], "isboss": 0, "ghname": "npc_ghname_6" @@ -21093,14 +21093,14 @@ "15652": { "npcId": 15652, "attr": {}, - "npclist": "4001_806_90072#3010_806_90070#4003_806_90071#5004_806_90072#4011_806_90074#4014_806_90073", + "npclist": "4001_362_90072#3010_362_90070#4003_362_90071#5004_362_90072#4011_362_90074#4014_362_90073", "npcLv": [ - 2186, - 2186, - 2186, - 2186, - 2186, - 2186 + 1363, + 1363, + 1363, + 1363, + 1363, + 1363 ], "isboss": 0, "ghname": "npc_ghname_1" @@ -21108,14 +21108,14 @@ "15653": { "npcId": 15653, "attr": {}, - "npclist": "3007_806_90072#4013_806_90070#5002_806_90071#5005_806_90072#4015_806_90074#3001_806_90073", + "npclist": "3007_363_90072#4013_363_90070#5002_363_90071#5005_363_90072#4015_363_90074#3001_363_90073", "npcLv": [ - 2186, - 2186, - 2186, - 2186, - 2186, - 2186 + 1368, + 1368, + 1368, + 1368, + 1368, + 1368 ], "isboss": 0, "ghname": "npc_ghname_2" @@ -21123,14 +21123,14 @@ "15654": { "npcId": 15654, "attr": {}, - "npclist": "4013_809_90072#5003_809_90070#4012_809_90071#3015_809_90072#3010_809_90074#4011_809_90073", + "npclist": "4013_364_90072#5003_364_90070#4012_364_90071#3015_364_90072#3010_364_90074#4011_364_90073", "npcLv": [ - 2195, - 2195, - 2195, - 2195, - 2195, - 2195 + 1373, + 1373, + 1373, + 1373, + 1373, + 1373 ], "isboss": 0, "ghname": "npc_ghname_3" @@ -21138,14 +21138,14 @@ "15655": { "npcId": 15655, "attr": {}, - "npclist": "4003_809_90072#4014_809_90070#3011_809_90071#4008_809_90072#4002_809_90074#3007_809_90073", + "npclist": "4003_365_90072#4014_365_90070#3011_365_90071#4008_365_90072#4002_365_90074#3007_365_90073", "npcLv": [ - 2195, - 2195, - 2195, - 2195, - 2195, - 2195 + 1378, + 1378, + 1378, + 1378, + 1378, + 1378 ], "isboss": 0, "ghname": "npc_ghname_4" @@ -21153,14 +21153,14 @@ "15656": { "npcId": 15656, "attr": {}, - "npclist": "3002_812_90072#3009_812_90070#4009_812_90071#5001_812_90072#5002_812_90074#4015_812_90073", + "npclist": "3002_366_90072#3009_366_90070#4009_366_90071#5001_366_90072#5002_366_90074#4015_366_90073", "npcLv": [ - 2204, - 2204, - 2204, - 2204, - 2204, - 2204 + 1383, + 1383, + 1383, + 1383, + 1383, + 1383 ], "isboss": 0, "ghname": "npc_ghname_5" @@ -21168,14 +21168,14 @@ "15657": { "npcId": 15657, "attr": {}, - "npclist": "4012_812_90072#3005_812_90070#3009_812_90071#4010_812_90072#4014_812_90074#5004_812_90073", + "npclist": "4012_367_90072#3005_367_90070#3009_367_90071#4010_367_90072#4014_367_90074#5004_367_90073", "npcLv": [ - 2204, - 2204, - 2204, - 2204, - 2204, - 2204 + 1388, + 1388, + 1388, + 1388, + 1388, + 1388 ], "isboss": 0, "ghname": "npc_ghname_6" @@ -21183,14 +21183,14 @@ "15658": { "npcId": 15658, "attr": {}, - "npclist": "4014_815_90072#4013_815_90070#4007_815_90071#5005_815_90072#3011_815_90074#5002_815_90073", + "npclist": "4014_368_90072#4013_368_90070#4007_368_90071#5005_368_90072#3011_368_90074#5002_368_90073", "npcLv": [ - 2213, - 2213, - 2213, - 2213, - 2213, - 2213 + 1393, + 1393, + 1393, + 1393, + 1393, + 1393 ], "isboss": 0, "ghname": "npc_ghname_1" @@ -21198,14 +21198,14 @@ "15659": { "npcId": 15659, "attr": {}, - "npclist": "3005_815_90072#4006_815_90070#3014_815_90071#4003_815_90072#5001_815_90074#4002_815_90073", + "npclist": "3005_369_90072#4006_369_90070#3014_369_90071#4003_369_90072#5001_369_90074#4002_369_90073", "npcLv": [ - 2213, - 2213, - 2213, - 2213, - 2213, - 2213 + 1398, + 1398, + 1398, + 1398, + 1398, + 1398 ], "isboss": 0, "ghname": "npc_ghname_2" @@ -21213,14 +21213,14 @@ "15660": { "npcId": 15660, "attr": {}, - "npclist": "5003_818_90072#4012_818_90070#4015_818_90071#4013_818_90072#4007_818_90074#3010_818_90073", + "npclist": "5003_370_90072#4012_370_90070#4015_370_90071#4013_370_90072#4007_370_90074#3010_370_90073", "npcLv": [ - 2222, - 2222, - 2222, - 2222, - 2222, - 2222 + 1403, + 1403, + 1403, + 1403, + 1403, + 1403 ], "isboss": 0, "ghname": "npc_ghname_3" @@ -21228,14 +21228,14 @@ "15661": { "npcId": 15661, "attr": {}, - "npclist": "4014_818_90072#5002_818_90070#4011_818_90071#5004_818_90072#3014_818_90074#4009_818_90073", + "npclist": "4014_370_90072#5002_370_90070#4011_370_90071#5004_370_90072#3014_370_90074#4009_370_90073", "npcLv": [ - 2222, - 2222, - 2222, - 2222, - 2222, - 2222 + 1408, + 1408, + 1408, + 1408, + 1408, + 1408 ], "isboss": 0, "ghname": "npc_ghname_4" @@ -21243,14 +21243,14 @@ "15662": { "npcId": 15662, "attr": {}, - "npclist": "4006_821_90072#4015_821_90070#4005_821_90071#4004_821_90072#4013_821_90074#3015_821_90073", + "npclist": "4006_371_90072#4015_371_90070#4005_371_90071#4004_371_90072#4013_371_90074#3015_371_90073", "npcLv": [ - 2231, - 2231, - 2231, - 2231, - 2231, - 2231 + 1413, + 1413, + 1413, + 1413, + 1413, + 1413 ], "isboss": 0, "ghname": "npc_ghname_5" @@ -21258,14 +21258,14 @@ "15663": { "npcId": 15663, "attr": {}, - "npclist": "3013_821_90072#3015_821_90070#5004_821_90071#4012_821_90072#4010_821_90074#3005_821_90073", + "npclist": "3013_371_90072#3015_371_90070#5004_371_90071#4012_371_90072#4010_371_90074#3005_371_90073", "npcLv": [ - 2231, - 2231, - 2231, - 2231, - 2231, - 2231 + 1418, + 1418, + 1418, + 1418, + 1418, + 1418 ], "isboss": 0, "ghname": "npc_ghname_6" @@ -21273,14 +21273,14 @@ "15664": { "npcId": 15664, "attr": {}, - "npclist": "4011_824_90072#4014_824_90070#5003_824_90071#3001_824_90072#5005_824_90074#4010_824_90073", + "npclist": "4011_372_90072#4014_372_90070#5003_372_90071#3001_372_90072#5005_372_90074#4010_372_90073", "npcLv": [ - 2240, - 2240, - 2240, - 2240, - 2240, - 2240 + 1423, + 1423, + 1423, + 1423, + 1423, + 1423 ], "isboss": 0, "ghname": "npc_ghname_1" @@ -21288,14 +21288,14 @@ "15665": { "npcId": 15665, "attr": {}, - "npclist": "4015_824_90072#4005_824_90070#5002_824_90071#4002_824_90072#3005_824_90074#4013_824_90073", + "npclist": "4015_372_90072#4005_372_90070#5002_372_90071#4002_372_90072#3005_372_90074#4013_372_90073", "npcLv": [ - 2240, - 2240, - 2240, - 2240, - 2240, - 2240 + 1428, + 1428, + 1428, + 1428, + 1428, + 1428 ], "isboss": 0, "ghname": "npc_ghname_2" @@ -21303,14 +21303,14 @@ "15666": { "npcId": 15666, "attr": {}, - "npclist": "3014_827_90072#5004_827_90070#4011_827_90071#3002_827_90072#4008_827_90074#3006_827_90073", + "npclist": "3014_373_90072#5004_373_90070#4011_373_90071#3002_373_90072#4008_373_90074#3006_373_90073", "npcLv": [ - 2249, - 2249, - 2249, - 2249, - 2249, - 2249 + 1433, + 1433, + 1433, + 1433, + 1433, + 1433 ], "isboss": 0, "ghname": "npc_ghname_3" @@ -21318,14 +21318,14 @@ "15667": { "npcId": 15667, "attr": {}, - "npclist": "3007_827_90072#4015_827_90070#4003_827_90071#4010_827_90072#5002_827_90074#4012_827_90073", + "npclist": "3007_373_90072#4015_373_90070#4003_373_90071#4010_373_90072#5002_373_90074#4012_373_90073", "npcLv": [ - 2249, - 2249, - 2249, - 2249, - 2249, - 2249 + 1438, + 1438, + 1438, + 1438, + 1438, + 1438 ], "isboss": 0, "ghname": "npc_ghname_4" @@ -21333,14 +21333,14 @@ "15668": { "npcId": 15668, "attr": {}, - "npclist": "3009_830_90072#4013_830_90070#3001_830_90071#4014_830_90072#2002_830_90074#4007_830_90073", + "npclist": "3009_374_90072#4013_374_90070#3001_374_90071#4014_374_90072#2002_374_90074#4007_374_90073", "npcLv": [ - 2258, - 2258, - 2258, - 2258, - 2258, - 2258 + 1443, + 1443, + 1443, + 1443, + 1443, + 1443 ], "isboss": 0, "ghname": "npc_ghname_5" @@ -21348,14 +21348,14 @@ "15669": { "npcId": 15669, "attr": {}, - "npclist": "5002_830_90072#3006_830_90070#4006_830_90071#3013_830_90072#5003_830_90074#5005_830_90073", + "npclist": "5002_374_90072#3006_374_90070#4006_374_90071#3013_374_90072#5003_374_90074#5005_374_90073", "npcLv": [ - 2258, - 2258, - 2258, - 2258, - 2258, - 2258 + 1448, + 1448, + 1448, + 1448, + 1448, + 1448 ], "isboss": 0, "ghname": "npc_ghname_6" @@ -21363,14 +21363,14 @@ "15670": { "npcId": 15670, "attr": {}, - "npclist": "5004_833_90072#3010_833_90070#3007_833_90071#4012_833_90072#4014_833_90074#4011_833_90073", + "npclist": "5004_375_90072#3010_375_90070#3007_375_90071#4012_375_90072#4014_375_90074#4011_375_90073", "npcLv": [ - 2267, - 2267, - 2267, - 2267, - 2267, - 2267 + 1453, + 1453, + 1453, + 1453, + 1453, + 1453 ], "isboss": 0, "ghname": "npc_ghname_1" @@ -21378,14 +21378,14 @@ "15671": { "npcId": 15671, "attr": {}, - "npclist": "4013_833_90072#4008_833_90070#4009_833_90071#3010_833_90072#4002_833_90074#3002_833_90073", + "npclist": "4013_375_90072#4008_375_90070#4009_375_90071#3010_375_90072#4002_375_90074#3002_375_90073", "npcLv": [ - 2267, - 2267, - 2267, - 2267, - 2267, - 2267 + 1458, + 1458, + 1458, + 1458, + 1458, + 1458 ], "isboss": 0, "ghname": "npc_ghname_2" @@ -21393,14 +21393,14 @@ "15672": { "npcId": 15672, "attr": {}, - "npclist": "3001_836_90072#4002_836_90070#5001_836_90071#4005_836_90072#5002_836_90074#4001_836_90073", + "npclist": "3001_376_90072#4002_376_90070#5001_376_90071#4005_376_90072#5002_376_90074#4001_376_90073", "npcLv": [ - 2276, - 2276, - 2276, - 2276, - 2276, - 2276 + 1463, + 1463, + 1463, + 1463, + 1463, + 1463 ], "isboss": 0, "ghname": "npc_ghname_3" @@ -21408,14 +21408,14 @@ "15673": { "npcId": 15673, "attr": {}, - "npclist": "3013_836_90072#4013_836_90070#4007_836_90071#4015_836_90072#5005_836_90074#4014_836_90073", + "npclist": "3013_376_90072#4013_376_90070#4007_376_90071#4015_376_90072#5005_376_90074#4014_376_90073", "npcLv": [ - 2276, - 2276, - 2276, - 2276, - 2276, - 2276 + 1468, + 1468, + 1468, + 1468, + 1468, + 1468 ], "isboss": 0, "ghname": "npc_ghname_4" @@ -21423,14 +21423,14 @@ "15674": { "npcId": 15674, "attr": {}, - "npclist": "4009_839_90072#4010_839_90070#5004_839_90071#4011_839_90072#4012_839_90074#4003_839_90073", + "npclist": "4009_377_90072#4010_377_90070#5004_377_90071#4011_377_90072#4012_377_90074#4003_377_90073", "npcLv": [ - 2285, - 2285, - 2285, - 2285, - 2285, - 2285 + 1473, + 1473, + 1473, + 1473, + 1473, + 1473 ], "isboss": 0, "ghname": "npc_ghname_5" @@ -21438,14 +21438,14 @@ "15675": { "npcId": 15675, "attr": {}, - "npclist": "4002_839_90072#5001_839_90070#3007_839_90071#5003_839_90072#3007_839_90074#4015_839_90073", + "npclist": "4002_377_90072#5001_377_90070#3007_377_90071#5003_377_90072#3007_377_90074#4015_377_90073", "npcLv": [ - 2285, - 2285, - 2285, - 2285, - 2285, - 2285 + 1478, + 1478, + 1478, + 1478, + 1478, + 1478 ], "isboss": 0, "ghname": "npc_ghname_6" @@ -21453,14 +21453,14 @@ "15676": { "npcId": 15676, "attr": {}, - "npclist": "4008_842_90072#4014_842_90070#4013_842_90071#5005_842_90072#5002_842_90074#3011_842_90073", + "npclist": "4008_378_90072#4014_378_90070#4013_378_90071#5005_378_90072#5002_378_90074#3011_378_90073", "npcLv": [ - 2294, - 2294, - 2294, - 2294, - 2294, - 2294 + 1483, + 1483, + 1483, + 1483, + 1483, + 1483 ], "isboss": 0, "ghname": "npc_ghname_1" @@ -21468,14 +21468,14 @@ "15677": { "npcId": 15677, "attr": {}, - "npclist": "4001_842_90072#4003_842_90070#4011_842_90071#4006_842_90072#4005_842_90074#4012_842_90073", + "npclist": "4001_378_90072#4003_378_90070#4011_378_90071#4006_378_90072#4005_378_90074#4012_378_90073", "npcLv": [ - 2294, - 2294, - 2294, - 2294, - 2294, - 2294 + 1488, + 1488, + 1488, + 1488, + 1488, + 1488 ], "isboss": 0, "ghname": "npc_ghname_2" @@ -21483,14 +21483,14 @@ "15678": { "npcId": 15678, "attr": {}, - "npclist": "4014_845_90072#5003_845_90070#4013_845_90071#3010_845_90072#5001_845_90074#5004_845_90073", + "npclist": "4014_379_90072#5003_379_90070#4013_379_90071#3010_379_90072#5001_379_90074#5004_379_90073", "npcLv": [ - 2303, - 2303, - 2303, - 2303, - 2303, - 2303 + 1493, + 1493, + 1493, + 1493, + 1493, + 1493 ], "isboss": 0, "ghname": "npc_ghname_3" @@ -21498,14 +21498,14 @@ "15679": { "npcId": 15679, "attr": {}, - "npclist": "4010_845_90072#4014_845_90070#4008_845_90071#4004_845_90072#4013_845_90074#3007_845_90073", + "npclist": "4010_379_90072#4014_379_90070#4008_379_90071#4004_379_90072#4013_379_90074#3007_379_90073", "npcLv": [ - 2303, - 2303, - 2303, - 2303, - 2303, - 2303 + 1498, + 1498, + 1498, + 1498, + 1498, + 1498 ], "isboss": 0, "ghname": "npc_ghname_4" @@ -21513,14 +21513,14 @@ "15680": { "npcId": 15680, "attr": {}, - "npclist": "4015_848_90072#3015_848_90070#4002_848_90071#3005_848_90072#3001_848_90074#3002_848_90073", + "npclist": "4015_380_90072#3015_380_90070#4002_380_90071#3005_380_90072#3001_380_90074#3002_380_90073", "npcLv": [ - 2312, - 2312, - 2312, - 2312, - 2312, - 2312 + 1503, + 1503, + 1503, + 1503, + 1503, + 1503 ], "isboss": 0, "ghname": "npc_ghname_5" @@ -21528,14 +21528,14 @@ "15681": { "npcId": 15681, "attr": {}, - "npclist": "4011_848_90072#5002_848_90070#5004_848_90071#4014_848_90072#3014_848_90074#4012_848_90073", + "npclist": "4011_381_90072#5002_381_90070#5004_381_90071#4014_381_90072#3014_381_90074#4012_381_90073", "npcLv": [ - 2312, - 2312, - 2312, - 2312, - 2312, - 2312 + 1508, + 1508, + 1508, + 1508, + 1508, + 1508 ], "isboss": 0, "ghname": "npc_ghname_6" @@ -21543,14 +21543,14 @@ "15682": { "npcId": 15682, "attr": {}, - "npclist": "4007_851_90072#3010_851_90070#4009_851_90071#3005_851_90072#3009_851_90074#5005_851_90073", + "npclist": "4007_382_90072#3010_382_90070#4009_382_90071#3005_382_90072#3009_382_90074#5005_382_90073", "npcLv": [ - 2321, - 2321, - 2321, - 2321, - 2321, - 2321 + 1513, + 1513, + 1513, + 1513, + 1513, + 1513 ], "isboss": 0, "ghname": "npc_ghname_1" @@ -21558,14 +21558,14 @@ "15683": { "npcId": 15683, "attr": {}, - "npclist": "5003_851_90072#4013_851_90070#4015_851_90071#3011_851_90072#4010_851_90074#5001_851_90073", + "npclist": "5003_383_90072#4013_383_90070#4015_383_90071#3011_383_90072#4010_383_90074#5001_383_90073", "npcLv": [ - 2321, - 2321, - 2321, - 2321, - 2321, - 2321 + 1518, + 1518, + 1518, + 1518, + 1518, + 1518 ], "isboss": 0, "ghname": "npc_ghname_2" @@ -21573,14 +21573,14 @@ "15684": { "npcId": 15684, "attr": {}, - "npclist": "5004_854_90072#4004_854_90070#4006_854_90071#3013_854_90072#4015_854_90074#4003_854_90073", + "npclist": "5004_384_90072#4004_384_90070#4006_384_90071#3013_384_90072#4015_384_90074#4003_384_90073", "npcLv": [ - 2330, - 2330, - 2330, - 2330, - 2330, - 2330 + 1523, + 1523, + 1523, + 1523, + 1523, + 1523 ], "isboss": 0, "ghname": "npc_ghname_3" @@ -21588,14 +21588,14 @@ "15685": { "npcId": 15685, "attr": {}, - "npclist": "3006_854_90072#4012_854_90070#3002_854_90071#5005_854_90072#4006_854_90074#5002_854_90073", + "npclist": "3006_385_90072#4012_385_90070#3002_385_90071#5005_385_90072#4006_385_90074#5002_385_90073", "npcLv": [ - 2330, - 2330, - 2330, - 2330, - 2330, - 2330 + 1528, + 1528, + 1528, + 1528, + 1528, + 1528 ], "isboss": 0, "ghname": "npc_ghname_4" @@ -21603,14 +21603,14 @@ "15686": { "npcId": 15686, "attr": {}, - "npclist": "4013_857_90072#4011_857_90070#4007_857_90071#4009_857_90072#4014_857_90074#3001_857_90073", + "npclist": "4013_386_90072#4011_386_90070#4007_386_90071#4009_386_90072#4014_386_90074#3001_386_90073", "npcLv": [ - 2339, - 2339, - 2339, - 2339, - 2339, - 2339 + 1533, + 1533, + 1533, + 1533, + 1533, + 1533 ], "isboss": 0, "ghname": "npc_ghname_5" @@ -21618,14 +21618,14 @@ "15687": { "npcId": 15687, "attr": {}, - "npclist": "3011_857_90072#3005_857_90070#5002_857_90071#5003_857_90072#4004_857_90074#4010_857_90073", + "npclist": "3011_387_90072#3005_387_90070#5002_387_90071#5003_387_90072#4004_387_90074#4010_387_90073", "npcLv": [ - 2339, - 2339, - 2339, - 2339, - 2339, - 2339 + 1538, + 1538, + 1538, + 1538, + 1538, + 1538 ], "isboss": 0, "ghname": "npc_ghname_6" @@ -21633,14 +21633,14 @@ "15688": { "npcId": 15688, "attr": {}, - "npclist": "5004_860_90072#4003_860_90070#4013_860_90071#4011_860_90072#4008_860_90074#4015_860_90073", + "npclist": "5004_388_90072#4003_388_90070#4013_388_90071#4011_388_90072#4008_388_90074#4015_388_90073", "npcLv": [ - 2348, - 2348, - 2348, - 2348, - 2348, - 2348 + 1543, + 1543, + 1543, + 1543, + 1543, + 1543 ], "isboss": 0, "ghname": "npc_ghname_1" @@ -21648,14 +21648,14 @@ "15689": { "npcId": 15689, "attr": {}, - "npclist": "3013_860_90072#5001_860_90070#4014_860_90071#4002_860_90072#5003_860_90074#4009_860_90073", + "npclist": "3013_389_90072#5001_389_90070#4014_389_90071#4002_389_90072#5003_389_90074#4009_389_90073", "npcLv": [ - 2348, - 2348, - 2348, - 2348, - 2348, - 2348 + 1548, + 1548, + 1548, + 1548, + 1548, + 1548 ], "isboss": 0, "ghname": "npc_ghname_2" @@ -21663,14 +21663,14 @@ "15690": { "npcId": 15690, "attr": {}, - "npclist": "4014_863_90072#3015_863_90070#5005_863_90071#5004_863_90072#3010_863_90074#4011_863_90073", + "npclist": "4014_390_90072#3015_390_90070#5005_390_90071#5004_390_90072#3010_390_90074#4011_390_90073", "npcLv": [ - 2357, - 2357, - 2357, - 2357, - 2357, - 2357 + 1553, + 1553, + 1553, + 1553, + 1553, + 1553 ], "isboss": 0, "ghname": "npc_ghname_3" @@ -21678,14 +21678,14 @@ "15691": { "npcId": 15691, "attr": {}, - "npclist": "4013_863_90072#4015_863_90070#4010_863_90071#3007_863_90072#3002_863_90074#3014_863_90073", + "npclist": "4013_391_90072#4015_391_90070#4010_391_90071#3007_391_90072#3002_391_90074#3014_391_90073", "npcLv": [ - 2357, - 2357, - 2357, - 2357, - 2357, - 2357 + 1558, + 1558, + 1558, + 1558, + 1558, + 1558 ], "isboss": 0, "ghname": "npc_ghname_4" @@ -21693,14 +21693,14 @@ "15692": { "npcId": 15692, "attr": {}, - "npclist": "5001_866_90072#5002_866_90070#4012_866_90071#4007_866_90072#4002_866_90074#4004_866_90073", + "npclist": "5001_392_90072#5002_392_90070#4012_392_90071#4007_392_90072#4002_392_90074#4004_392_90073", "npcLv": [ - 2366, - 2366, - 2366, - 2366, - 2366, - 2366 + 1563, + 1563, + 1563, + 1563, + 1563, + 1563 ], "isboss": 0, "ghname": "npc_ghname_5" @@ -21708,14 +21708,14 @@ "15693": { "npcId": 15693, "attr": {}, - "npclist": "4015_866_90072#4014_866_90070#3010_866_90071#4011_866_90072#4013_866_90074#5003_866_90073", + "npclist": "4015_393_90072#4014_393_90070#3010_393_90071#4011_393_90072#4013_393_90074#5003_393_90073", "npcLv": [ - 2366, - 2366, - 2366, - 2366, - 2366, - 2366 + 1568, + 1568, + 1568, + 1568, + 1568, + 1568 ], "isboss": 0, "ghname": "npc_ghname_6" @@ -21723,14 +21723,14 @@ "15694": { "npcId": 15694, "attr": {}, - "npclist": "4003_869_90072#4010_869_90070#4001_869_90071#4005_869_90072#5005_869_90074#5004_869_90073", + "npclist": "4003_394_90072#4010_394_90070#4001_394_90071#4005_394_90072#5005_394_90074#5004_394_90073", "npcLv": [ - 2375, - 2375, - 2375, - 2375, - 2375, - 2375 + 1573, + 1573, + 1573, + 1573, + 1573, + 1573 ], "isboss": 0, "ghname": "npc_ghname_1" @@ -21738,14 +21738,14 @@ "15695": { "npcId": 15695, "attr": {}, - "npclist": "3010_869_90072#4015_869_90070#3007_869_90071#5003_869_90072#5002_869_90074#4002_869_90073", + "npclist": "3010_395_90072#4015_395_90070#3007_395_90071#5003_395_90072#5002_395_90074#4002_395_90073", "npcLv": [ - 2375, - 2375, - 2375, - 2375, - 2375, - 2375 + 1578, + 1578, + 1578, + 1578, + 1578, + 1578 ], "isboss": 0, "ghname": "npc_ghname_2" @@ -21753,14 +21753,14 @@ "15696": { "npcId": 15696, "attr": {}, - "npclist": "4012_872_90072#4009_872_90070#4014_872_90071#3009_872_90072#3002_872_90074#5005_872_90073", + "npclist": "4012_396_90072#4009_396_90070#4014_396_90071#3009_396_90072#3002_396_90074#5005_396_90073", "npcLv": [ - 2384, - 2384, - 2384, - 2384, - 2384, - 2384 + 1583, + 1583, + 1583, + 1583, + 1583, + 1583 ], "isboss": 0, "ghname": "npc_ghname_3" @@ -21768,14 +21768,14 @@ "15697": { "npcId": 15697, "attr": {}, - "npclist": "3007_872_90072#4008_872_90070#5004_872_90071#5002_872_90072#4006_872_90074#4015_872_90073", + "npclist": "3007_397_90072#4008_397_90070#5004_397_90071#5002_397_90072#4006_397_90074#4015_397_90073", "npcLv": [ - 2384, - 2384, - 2384, - 2384, - 2384, - 2384 + 1588, + 1588, + 1588, + 1588, + 1588, + 1588 ], "isboss": 0, "ghname": "npc_ghname_4" @@ -21783,14 +21783,14 @@ "15698": { "npcId": 15698, "attr": {}, - "npclist": "4005_875_90072#3010_875_90070#5001_875_90071#4015_875_90072#3013_875_90074#4012_875_90073", + "npclist": "4005_398_90072#3010_398_90070#5001_398_90071#4015_398_90072#3013_398_90074#4012_398_90073", "npcLv": [ - 2393, - 2393, - 2393, - 2393, - 2393, - 2393 + 1593, + 1593, + 1593, + 1593, + 1593, + 1593 ], "isboss": 0, "ghname": "npc_ghname_5" @@ -21798,14 +21798,14 @@ "15699": { "npcId": 15699, "attr": {}, - "npclist": "5004_875_90072#5002_875_90070#3012_875_90071#4010_875_90072#4013_875_90074#5003_875_90073", + "npclist": "5004_399_90072#5002_399_90070#3012_399_90071#4010_399_90072#4013_399_90074#5003_399_90073", "npcLv": [ - 2393, - 2393, - 2393, - 2393, - 2393, - 2393 + 1598, + 1598, + 1598, + 1598, + 1598, + 1598 ], "isboss": 0, "ghname": "npc_ghname_6" @@ -21813,14 +21813,14 @@ "15700": { "npcId": 15700, "attr": {}, - "npclist": "5002_878_90072#4004_878_90070#4011_878_90071#5005_878_90072#5001_878_90074#4007_878_90073", + "npclist": "5002_400_90072#4004_400_90070#4011_400_90071#5005_400_90072#5001_400_90074#4007_400_90073", "npcLv": [ - 2402, - 2402, - 2402, - 2402, - 2402, - 2402 + 1603, + 1603, + 1603, + 1603, + 1603, + 1603 ], "isboss": 0, "ghname": "npc_ghname_5" @@ -27941,14 +27941,14 @@ "20381": { "npcId": 20381, "attr": {}, - "npclist": "5002_198_90072#3002_198_90071#3007_198_90076#3012_198_90079#4002_198_90079#4007_198_90079", + "npclist": "5002_192_90072#3002_192_90071#3007_192_90076#3012_192_90079#4002_192_90079#4007_192_90079", "npcLv": [ - 435, - 435, - 435, - 435, - 435, - 435 + 431, + 431, + 431, + 431, + 431, + 431 ], "isboss": 1, "ghname": "npc_ghname_3", @@ -27957,14 +27957,14 @@ "20382": { "npcId": 20382, "attr": {}, - "npclist": "5003_200_90072#3003_200_90071#3008_200_90076#3013_200_90079#4003_200_90079#4008_200_90079", + "npclist": "5003_193_90072#3003_193_90071#3008_193_90076#3013_193_90079#4003_193_90079#4008_193_90079", "npcLv": [ - 435, - 435, - 435, - 435, - 435, - 435 + 431, + 431, + 431, + 431, + 431, + 431 ], "isboss": 1, "ghname": "npc_ghname_4", @@ -27973,7 +27973,103 @@ "20383": { "npcId": 20383, "attr": {}, - "npclist": "5004_200_90072#3004_200_90071#3009_200_90076#3014_200_90079#4004_200_90079#4009_200_90079", + "npclist": "5004_193_90072#3004_193_90071#3009_193_90076#3014_193_90079#4004_193_90079#4009_193_90079", + "npcLv": [ + 432, + 432, + 432, + 432, + 432, + 432 + ], + "isboss": 1, + "ghname": "npc_ghname_5", + "npcname": "jjc_npc_name_5" + }, + "20384": { + "npcId": 20384, + "attr": {}, + "npclist": "5005_195_90072#3005_195_90071#3010_195_90076#3015_195_90079#4005_195_90079#4010_195_90079", + "npcLv": [ + 432, + 432, + 432, + 432, + 432, + 432 + ], + "isboss": 1, + "ghname": "npc_ghname_6", + "npcname": "jjc_npc_name_6" + }, + "20385": { + "npcId": 20385, + "attr": {}, + "npclist": "3001_195_90072#3006_195_90071#3011_195_90076#4001_195_90079#4006_195_90079#4011_195_90079", + "npcLv": [ + 433, + 433, + 433, + 433, + 433, + 433 + ], + "isboss": 1, + "ghname": "npc_ghname_1", + "npcname": "jjc_npc_name_1" + }, + "20386": { + "npcId": 20386, + "attr": {}, + "npclist": "3002_196_90072#3007_196_90071#3012_196_90076#4002_196_90079#4007_196_90079#4012_196_90079", + "npcLv": [ + 433, + 433, + 433, + 433, + 433, + 433 + ], + "isboss": 1, + "ghname": "npc_ghname_2", + "npcname": "jjc_npc_name_2" + }, + "20387": { + "npcId": 20387, + "attr": {}, + "npclist": "3003_196_90072#3008_196_90071#3013_196_90076#4003_196_90079#4008_196_90079#4013_196_90079", + "npcLv": [ + 434, + 434, + 434, + 434, + 434, + 434 + ], + "isboss": 1, + "ghname": "npc_ghname_3", + "npcname": "jjc_npc_name_3" + }, + "20388": { + "npcId": 20388, + "attr": {}, + "npclist": "3004_197_90072#3009_197_90071#3014_197_90076#4004_197_90079#4009_197_90079#4014_197_90079", + "npcLv": [ + 434, + 434, + 434, + 434, + 434, + 434 + ], + "isboss": 1, + "ghname": "npc_ghname_4", + "npcname": "jjc_npc_name_4" + }, + "20389": { + "npcId": 20389, + "attr": {}, + "npclist": "3005_197_90072#3010_197_90071#3015_197_90076#4005_197_90079#4010_197_90079#4015_197_90079", "npcLv": [ 435, 435, @@ -27986,113 +28082,17 @@ "ghname": "npc_ghname_5", "npcname": "jjc_npc_name_5" }, - "20384": { - "npcId": 20384, - "attr": {}, - "npclist": "5005_201_90072#3005_201_90071#3010_201_90076#3015_201_90079#4005_201_90079#4010_201_90079", - "npcLv": [ - 440, - 440, - 440, - 440, - 440, - 440 - ], - "isboss": 1, - "ghname": "npc_ghname_6", - "npcname": "jjc_npc_name_6" - }, - "20385": { - "npcId": 20385, - "attr": {}, - "npclist": "3001_201_90072#3006_201_90071#3011_201_90076#4001_201_90079#4006_201_90079#4011_201_90079", - "npcLv": [ - 440, - 440, - 440, - 440, - 440, - 440 - ], - "isboss": 1, - "ghname": "npc_ghname_1", - "npcname": "jjc_npc_name_1" - }, - "20386": { - "npcId": 20386, - "attr": {}, - "npclist": "3002_202_90072#3007_202_90071#3012_202_90076#4002_202_90079#4007_202_90079#4012_202_90079", - "npcLv": [ - 440, - 440, - 440, - 440, - 440, - 440 - ], - "isboss": 1, - "ghname": "npc_ghname_2", - "npcname": "jjc_npc_name_2" - }, - "20387": { - "npcId": 20387, - "attr": {}, - "npclist": "3003_202_90072#3008_202_90071#3013_202_90076#4003_202_90079#4008_202_90079#4013_202_90079", - "npcLv": [ - 445, - 445, - 445, - 445, - 445, - 445 - ], - "isboss": 1, - "ghname": "npc_ghname_3", - "npcname": "jjc_npc_name_3" - }, - "20388": { - "npcId": 20388, - "attr": {}, - "npclist": "3004_204_90072#3009_204_90071#3014_204_90076#4004_204_90079#4009_204_90079#4014_204_90079", - "npcLv": [ - 445, - 445, - 445, - 445, - 445, - 445 - ], - "isboss": 1, - "ghname": "npc_ghname_4", - "npcname": "jjc_npc_name_4" - }, - "20389": { - "npcId": 20389, - "attr": {}, - "npclist": "3005_204_90072#3010_204_90071#3015_204_90076#4005_204_90079#4010_204_90079#4015_204_90079", - "npcLv": [ - 445, - 445, - 445, - 445, - 445, - 445 - ], - "isboss": 1, - "ghname": "npc_ghname_5", - "npcname": "jjc_npc_name_5" - }, "20390": { "npcId": 20390, "attr": {}, - "npclist": "3006_219_90072#3011_219_90071#4001_219_90076#4006_219_90079#4011_219_90079#5001_219_90079", + "npclist": "3006_198_90072#3011_198_90071#4001_198_90076#4006_198_90079#4011_198_90079#5001_198_90079", "npcLv": [ - 450, - 450, - 450, - 450, - 450, - 450 + 435, + 435, + 435, + 435, + 435, + 435 ], "isboss": 1, "ghname": "npc_ghname_6", @@ -28101,14 +28101,14 @@ "20391": { "npcId": 20391, "attr": {}, - "npclist": "3007_205_90072#3012_205_90071#4002_205_90076#4007_205_90079#4012_205_90079#5002_205_90079", + "npclist": "3007_198_90072#3012_198_90071#4002_198_90076#4007_198_90079#4012_198_90079#5002_198_90079", "npcLv": [ - 450, - 450, - 450, - 450, - 450, - 450 + 436, + 436, + 436, + 436, + 436, + 436 ], "isboss": 1, "ghname": "npc_ghname_1", @@ -28117,7 +28117,439 @@ "20392": { "npcId": 20392, "attr": {}, - "npclist": "3008_206_90072#3013_206_90071#4003_206_90076#4008_206_90079#4013_206_90079#5003_206_90079", + "npclist": "3008_199_90072#3013_199_90071#4003_199_90076#4008_199_90079#4013_199_90079#5003_199_90079", + "npcLv": [ + 436, + 436, + 436, + 436, + 436, + 436 + ], + "isboss": 1, + "ghname": "npc_ghname_2", + "npcname": "jjc_npc_name_2" + }, + "20393": { + "npcId": 20393, + "attr": {}, + "npclist": "3009_212_90072#3014_212_90071#4004_212_90076#4009_212_90079#4014_212_90079#5004_212_90079", + "npcLv": [ + 437, + 437, + 437, + 437, + 437, + 437 + ], + "isboss": 1, + "ghname": "npc_ghname_3", + "npcname": "jjc_npc_name_3" + }, + "20394": { + "npcId": 20394, + "attr": {}, + "npclist": "3010_193_90072#3015_193_90071#4005_193_90076#4010_193_90079#4015_193_90079#5005_193_90079", + "npcLv": [ + 437, + 437, + 437, + 437, + 437, + 437 + ], + "isboss": 1, + "ghname": "npc_ghname_4", + "npcname": "jjc_npc_name_4" + }, + "20395": { + "npcId": 20395, + "attr": {}, + "npclist": "3011_195_90072#4001_195_90071#4006_195_90076#4011_195_90079#5001_195_90079#3001_195_90079", + "npcLv": [ + 438, + 438, + 438, + 438, + 438, + 438 + ], + "isboss": 1, + "ghname": "npc_ghname_5", + "npcname": "jjc_npc_name_5" + }, + "20396": { + "npcId": 20396, + "attr": {}, + "npclist": "3012_195_90072#4002_195_90071#4007_195_90076#4012_195_90079#5002_195_90079#3002_195_90079", + "npcLv": [ + 438, + 438, + 438, + 438, + 438, + 438 + ], + "isboss": 1, + "ghname": "npc_ghname_6", + "npcname": "jjc_npc_name_6" + }, + "20397": { + "npcId": 20397, + "attr": {}, + "npclist": "3013_196_90072#4003_196_90071#4008_196_90076#4013_196_90079#5003_196_90079#3003_196_90079", + "npcLv": [ + 439, + 439, + 439, + 439, + 439, + 439 + ], + "isboss": 1, + "ghname": "npc_ghname_1", + "npcname": "jjc_npc_name_1" + }, + "20398": { + "npcId": 20398, + "attr": {}, + "npclist": "3014_196_90072#4004_196_90071#4009_196_90076#4014_196_90079#5004_196_90079#3004_196_90079", + "npcLv": [ + 439, + 439, + 439, + 439, + 439, + 439 + ], + "isboss": 1, + "ghname": "npc_ghname_2", + "npcname": "jjc_npc_name_2" + }, + "20399": { + "npcId": 20399, + "attr": {}, + "npclist": "3015_197_90072#4005_197_90071#4010_197_90076#4015_197_90079#5005_197_90079#3005_197_90079", + "npcLv": [ + 440, + 440, + 440, + 440, + 440, + 440 + ], + "isboss": 1, + "ghname": "npc_ghname_3", + "npcname": "jjc_npc_name_3" + }, + "20400": { + "npcId": 20400, + "attr": {}, + "npclist": "4001_197_90072#4006_197_90071#4011_197_90076#5001_197_90079#3001_197_90079#3006_197_90079", + "npcLv": [ + 440, + 440, + 440, + 440, + 440, + 440 + ], + "isboss": 1, + "ghname": "npc_ghname_4", + "npcname": "jjc_npc_name_4" + }, + "20401": { + "npcId": 20401, + "attr": {}, + "npclist": "4002_198_90072#4007_198_90071#4012_198_90076#5002_198_90079#3002_198_90079#3007_198_90079", + "npcLv": [ + 441, + 441, + 441, + 441, + 441, + 441 + ], + "isboss": 1, + "ghname": "npc_ghname_5", + "npcname": "jjc_npc_name_5" + }, + "20402": { + "npcId": 20402, + "attr": {}, + "npclist": "4003_198_90072#4008_198_90071#4013_198_90076#5003_198_90079#3003_198_90079#3008_198_90079", + "npcLv": [ + 441, + 441, + 441, + 441, + 441, + 441 + ], + "isboss": 1, + "ghname": "npc_ghname_6", + "npcname": "jjc_npc_name_6" + }, + "20403": { + "npcId": 20403, + "attr": {}, + "npclist": "4004_199_90072#4009_199_90071#4014_199_90076#5004_199_90079#3004_199_90079#3009_199_90079", + "npcLv": [ + 442, + 442, + 442, + 442, + 442, + 442 + ], + "isboss": 1, + "ghname": "npc_ghname_1", + "npcname": "jjc_npc_name_1" + }, + "20404": { + "npcId": 20404, + "attr": {}, + "npclist": "4005_199_90072#4010_199_90071#4015_199_90076#5005_199_90079#3005_199_90079#3010_199_90079", + "npcLv": [ + 442, + 442, + 442, + 442, + 442, + 442 + ], + "isboss": 1, + "ghname": "npc_ghname_2", + "npcname": "jjc_npc_name_2" + }, + "20405": { + "npcId": 20405, + "attr": {}, + "npclist": "4006_213_90072#4011_213_90071#5001_213_90076#3001_213_90079#3006_213_90079#3011_213_90079", + "npcLv": [ + 443, + 443, + 443, + 443, + 443, + 443 + ], + "isboss": 1, + "ghname": "npc_ghname_3", + "npcname": "jjc_npc_name_3" + }, + "20406": { + "npcId": 20406, + "attr": {}, + "npclist": "4007_196_90072#4012_196_90071#5002_196_90076#3002_196_90079#3007_196_90079#3012_196_90079", + "npcLv": [ + 443, + 443, + 443, + 443, + 443, + 443 + ], + "isboss": 1, + "ghname": "npc_ghname_4", + "npcname": "jjc_npc_name_4" + }, + "20407": { + "npcId": 20407, + "attr": {}, + "npclist": "4008_196_90072#4013_196_90071#5003_196_90076#3003_196_90079#3008_196_90079#3013_196_90079", + "npcLv": [ + 444, + 444, + 444, + 444, + 444, + 444 + ], + "isboss": 1, + "ghname": "npc_ghname_5", + "npcname": "jjc_npc_name_5" + }, + "20408": { + "npcId": 20408, + "attr": {}, + "npclist": "4009_197_90072#4014_197_90071#5004_197_90076#3004_197_90079#3009_197_90079#3014_197_90079", + "npcLv": [ + 444, + 444, + 444, + 444, + 444, + 444 + ], + "isboss": 1, + "ghname": "npc_ghname_6", + "npcname": "jjc_npc_name_6" + }, + "20409": { + "npcId": 20409, + "attr": {}, + "npclist": "4010_197_90072#4015_197_90071#5005_197_90076#3005_197_90079#3010_197_90079#3015_197_90079", + "npcLv": [ + 445, + 445, + 445, + 445, + 445, + 445 + ], + "isboss": 1, + "ghname": "npc_ghname_1", + "npcname": "jjc_npc_name_1" + }, + "20410": { + "npcId": 20410, + "attr": {}, + "npclist": "4011_198_90072#5001_198_90071#3001_198_90076#3006_198_90079#3011_198_90079#4001_198_90079", + "npcLv": [ + 445, + 445, + 445, + 445, + 445, + 445 + ], + "isboss": 1, + "ghname": "npc_ghname_2", + "npcname": "jjc_npc_name_2" + }, + "20411": { + "npcId": 20411, + "attr": {}, + "npclist": "4012_198_90072#5002_198_90071#3002_198_90076#3007_198_90079#3012_198_90079#4002_198_90079", + "npcLv": [ + 446, + 446, + 446, + 446, + 446, + 446 + ], + "isboss": 1, + "ghname": "npc_ghname_3", + "npcname": "jjc_npc_name_3" + }, + "20412": { + "npcId": 20412, + "attr": {}, + "npclist": "4013_199_90072#5003_199_90071#3003_199_90076#3008_199_90079#3013_199_90079#4003_199_90079", + "npcLv": [ + 446, + 446, + 446, + 446, + 446, + 446 + ], + "isboss": 1, + "ghname": "npc_ghname_4", + "npcname": "jjc_npc_name_4" + }, + "20413": { + "npcId": 20413, + "attr": {}, + "npclist": "4014_199_90072#5004_199_90071#3004_199_90076#3009_199_90079#3014_199_90079#4004_199_90079", + "npcLv": [ + 447, + 447, + 447, + 447, + 447, + 447 + ], + "isboss": 1, + "ghname": "npc_ghname_5", + "npcname": "jjc_npc_name_5" + }, + "20414": { + "npcId": 20414, + "attr": {}, + "npclist": "4015_200_90072#5005_200_90071#3005_200_90076#3010_200_90079#3015_200_90079#4005_200_90079", + "npcLv": [ + 447, + 447, + 447, + 447, + 447, + 447 + ], + "isboss": 1, + "ghname": "npc_ghname_6", + "npcname": "jjc_npc_name_6" + }, + "20415": { + "npcId": 20415, + "attr": {}, + "npclist": "5001_200_90072#3001_200_90071#3006_200_90076#3011_200_90079#4001_200_90079#4006_200_90079", + "npcLv": [ + 448, + 448, + 448, + 448, + 448, + 448 + ], + "isboss": 1, + "ghname": "npc_ghname_1", + "npcname": "jjc_npc_name_1" + }, + "20416": { + "npcId": 20416, + "attr": {}, + "npclist": "5002_201_90072#3002_201_90071#3007_201_90076#3012_201_90079#4002_201_90079#4007_201_90079", + "npcLv": [ + 448, + 448, + 448, + 448, + 448, + 448 + ], + "isboss": 1, + "ghname": "npc_ghname_2", + "npcname": "jjc_npc_name_2" + }, + "20417": { + "npcId": 20417, + "attr": {}, + "npclist": "5003_201_90072#3003_201_90071#3008_201_90076#3013_201_90079#4003_201_90079#4008_201_90079", + "npcLv": [ + 449, + 449, + 449, + 449, + 449, + 449 + ], + "isboss": 1, + "ghname": "npc_ghname_3", + "npcname": "jjc_npc_name_3" + }, + "20418": { + "npcId": 20418, + "attr": {}, + "npclist": "5004_214_90072#3004_214_90071#3009_214_90076#3014_214_90079#4004_214_90079#4009_214_90079", + "npcLv": [ + 449, + 449, + 449, + 449, + 449, + 449 + ], + "isboss": 1, + "ghname": "npc_ghname_4", + "npcname": "jjc_npc_name_4" + }, + "20419": { + "npcId": 20419, + "attr": {}, + "npclist": "5005_197_90072#3005_197_90071#3010_197_90076#3015_197_90079#4005_197_90079#4010_197_90079", "npcLv": [ 450, 450, @@ -28127,452 +28559,20 @@ 450 ], "isboss": 1, - "ghname": "npc_ghname_2", - "npcname": "jjc_npc_name_2" - }, - "20393": { - "npcId": 20393, - "attr": {}, - "npclist": "3009_206_90072#3014_206_90071#4004_206_90076#4009_206_90079#4014_206_90079#5004_206_90079", - "npcLv": [ - 455, - 455, - 455, - 455, - 455, - 455 - ], - "isboss": 1, - "ghname": "npc_ghname_3", - "npcname": "jjc_npc_name_3" - }, - "20394": { - "npcId": 20394, - "attr": {}, - "npclist": "3010_208_90072#3015_208_90071#4005_208_90076#4010_208_90079#4015_208_90079#5005_208_90079", - "npcLv": [ - 455, - 455, - 455, - 455, - 455, - 455 - ], - "isboss": 1, - "ghname": "npc_ghname_4", - "npcname": "jjc_npc_name_4" - }, - "20395": { - "npcId": 20395, - "attr": {}, - "npclist": "3011_208_90072#4001_208_90071#4006_208_90076#4011_208_90079#5001_208_90079#3001_208_90079", - "npcLv": [ - 455, - 455, - 455, - 455, - 455, - 455 - ], - "isboss": 1, - "ghname": "npc_ghname_5", - "npcname": "jjc_npc_name_5" - }, - "20396": { - "npcId": 20396, - "attr": {}, - "npclist": "3012_209_90072#4002_209_90071#4007_209_90076#4012_209_90079#5002_209_90079#3002_209_90079", - "npcLv": [ - 461, - 461, - 461, - 461, - 461, - 461 - ], - "isboss": 1, - "ghname": "npc_ghname_6", - "npcname": "jjc_npc_name_6" - }, - "20397": { - "npcId": 20397, - "attr": {}, - "npclist": "3013_209_90072#4003_209_90071#4008_209_90076#4013_209_90079#5003_209_90079#3003_209_90079", - "npcLv": [ - 461, - 461, - 461, - 461, - 461, - 461 - ], - "isboss": 1, - "ghname": "npc_ghname_1", - "npcname": "jjc_npc_name_1" - }, - "20398": { - "npcId": 20398, - "attr": {}, - "npclist": "3014_210_90072#4004_210_90071#4009_210_90076#4014_210_90079#5004_210_90079#3004_210_90079", - "npcLv": [ - 461, - 461, - 461, - 461, - 461, - 461 - ], - "isboss": 1, - "ghname": "npc_ghname_2", - "npcname": "jjc_npc_name_2" - }, - "20399": { - "npcId": 20399, - "attr": {}, - "npclist": "3015_210_90072#4005_210_90071#4010_210_90076#4015_210_90079#5005_210_90079#3005_210_90079", - "npcLv": [ - 466, - 466, - 466, - 466, - 466, - 466 - ], - "isboss": 1, - "ghname": "npc_ghname_3", - "npcname": "jjc_npc_name_3" - }, - "20400": { - "npcId": 20400, - "attr": {}, - "npclist": "4001_226_90072#4006_226_90071#4011_226_90076#5001_226_90079#3001_226_90079#3006_226_90079", - "npcLv": [ - 466, - 466, - 466, - 466, - 466, - 466 - ], - "isboss": 1, - "ghname": "npc_ghname_4", - "npcname": "jjc_npc_name_4" - }, - "20401": { - "npcId": 20401, - "attr": {}, - "npclist": "4002_211_90072#4007_211_90071#4012_211_90076#5002_211_90079#3002_211_90079#3007_211_90079", - "npcLv": [ - 466, - 466, - 466, - 466, - 466, - 466 - ], - "isboss": 1, - "ghname": "npc_ghname_5", - "npcname": "jjc_npc_name_5" - }, - "20402": { - "npcId": 20402, - "attr": {}, - "npclist": "4003_212_90072#4008_212_90071#4013_212_90076#5003_212_90079#3003_212_90079#3008_212_90079", - "npcLv": [ - 471, - 471, - 471, - 471, - 471, - 471 - ], - "isboss": 1, - "ghname": "npc_ghname_6", - "npcname": "jjc_npc_name_6" - }, - "20403": { - "npcId": 20403, - "attr": {}, - "npclist": "4004_213_90072#4009_213_90071#4014_213_90076#5004_213_90079#3004_213_90079#3009_213_90079", - "npcLv": [ - 471, - 471, - 471, - 471, - 471, - 471 - ], - "isboss": 1, - "ghname": "npc_ghname_1", - "npcname": "jjc_npc_name_1" - }, - "20404": { - "npcId": 20404, - "attr": {}, - "npclist": "4005_214_90072#4010_214_90071#4015_214_90076#5005_214_90079#3005_214_90079#3010_214_90079", - "npcLv": [ - 471, - 471, - 471, - 471, - 471, - 471 - ], - "isboss": 1, - "ghname": "npc_ghname_2", - "npcname": "jjc_npc_name_2" - }, - "20405": { - "npcId": 20405, - "attr": {}, - "npclist": "4006_214_90072#4011_214_90071#5001_214_90076#3001_214_90079#3006_214_90079#3011_214_90079", - "npcLv": [ - 476, - 476, - 476, - 476, - 476, - 476 - ], - "isboss": 1, - "ghname": "npc_ghname_3", - "npcname": "jjc_npc_name_3" - }, - "20406": { - "npcId": 20406, - "attr": {}, - "npclist": "4007_215_90072#4012_215_90071#5002_215_90076#3002_215_90079#3007_215_90079#3012_215_90079", - "npcLv": [ - 476, - 476, - 476, - 476, - 476, - 476 - ], - "isboss": 1, - "ghname": "npc_ghname_4", - "npcname": "jjc_npc_name_4" - }, - "20407": { - "npcId": 20407, - "attr": {}, - "npclist": "4008_215_90072#4013_215_90071#5003_215_90076#3003_215_90079#3008_215_90079#3013_215_90079", - "npcLv": [ - 476, - 476, - 476, - 476, - 476, - 476 - ], - "isboss": 1, - "ghname": "npc_ghname_5", - "npcname": "jjc_npc_name_5" - }, - "20408": { - "npcId": 20408, - "attr": {}, - "npclist": "4009_217_90072#4014_217_90071#5004_217_90076#3004_217_90079#3009_217_90079#3014_217_90079", - "npcLv": [ - 481, - 481, - 481, - 481, - 481, - 481 - ], - "isboss": 1, - "ghname": "npc_ghname_6", - "npcname": "jjc_npc_name_6" - }, - "20409": { - "npcId": 20409, - "attr": {}, - "npclist": "4010_217_90072#4015_217_90071#5005_217_90076#3005_217_90079#3010_217_90079#3015_217_90079", - "npcLv": [ - 481, - 481, - 481, - 481, - 481, - 481 - ], - "isboss": 1, - "ghname": "npc_ghname_1", - "npcname": "jjc_npc_name_1" - }, - "20410": { - "npcId": 20410, - "attr": {}, - "npclist": "4011_231_90072#5001_231_90071#3001_231_90076#3006_231_90079#3011_231_90079#4001_231_90079", - "npcLv": [ - 481, - 481, - 481, - 481, - 481, - 481 - ], - "isboss": 1, - "ghname": "npc_ghname_2", - "npcname": "jjc_npc_name_2" - }, - "20411": { - "npcId": 20411, - "attr": {}, - "npclist": "4012_218_90072#5002_218_90071#3002_218_90076#3007_218_90079#3012_218_90079#4002_218_90079", - "npcLv": [ - 486, - 486, - 486, - 486, - 486, - 486 - ], - "isboss": 1, - "ghname": "npc_ghname_3", - "npcname": "jjc_npc_name_3" - }, - "20412": { - "npcId": 20412, - "attr": {}, - "npclist": "4013_219_90072#5003_219_90071#3003_219_90076#3008_219_90079#3013_219_90079#4003_219_90079", - "npcLv": [ - 486, - 486, - 486, - 486, - 486, - 486 - ], - "isboss": 1, - "ghname": "npc_ghname_4", - "npcname": "jjc_npc_name_4" - }, - "20413": { - "npcId": 20413, - "attr": {}, - "npclist": "4014_219_90072#5004_219_90071#3004_219_90076#3009_219_90079#3014_219_90079#4004_219_90079", - "npcLv": [ - 486, - 486, - 486, - 486, - 486, - 486 - ], - "isboss": 1, - "ghname": "npc_ghname_5", - "npcname": "jjc_npc_name_5" - }, - "20414": { - "npcId": 20414, - "attr": {}, - "npclist": "4015_221_90072#5005_221_90071#3005_221_90076#3010_221_90079#3015_221_90079#4005_221_90079", - "npcLv": [ - 491, - 491, - 491, - 491, - 491, - 491 - ], - "isboss": 1, - "ghname": "npc_ghname_6", - "npcname": "jjc_npc_name_6" - }, - "20415": { - "npcId": 20415, - "attr": {}, - "npclist": "5001_221_90072#3001_221_90071#3006_221_90076#3011_221_90079#4001_221_90079#4006_221_90079", - "npcLv": [ - 491, - 491, - 491, - 491, - 491, - 491 - ], - "isboss": 1, - "ghname": "npc_ghname_1", - "npcname": "jjc_npc_name_1" - }, - "20416": { - "npcId": 20416, - "attr": {}, - "npclist": "5002_222_90072#3002_222_90071#3007_222_90076#3012_222_90079#4002_222_90079#4007_222_90079", - "npcLv": [ - 491, - 491, - 491, - 491, - 491, - 491 - ], - "isboss": 1, - "ghname": "npc_ghname_2", - "npcname": "jjc_npc_name_2" - }, - "20417": { - "npcId": 20417, - "attr": {}, - "npclist": "5003_222_90072#3003_222_90071#3008_222_90076#3013_222_90079#4003_222_90079#4008_222_90079", - "npcLv": [ - 497, - 497, - 497, - 497, - 497, - 497 - ], - "isboss": 1, - "ghname": "npc_ghname_3", - "npcname": "jjc_npc_name_3" - }, - "20418": { - "npcId": 20418, - "attr": {}, - "npclist": "5004_223_90072#3004_223_90071#3009_223_90076#3014_223_90079#4004_223_90079#4009_223_90079", - "npcLv": [ - 497, - 497, - 497, - 497, - 497, - 497 - ], - "isboss": 1, - "ghname": "npc_ghname_4", - "npcname": "jjc_npc_name_4" - }, - "20419": { - "npcId": 20419, - "attr": {}, - "npclist": "5005_223_90072#3005_223_90071#3010_223_90076#3015_223_90079#4005_223_90079#4010_223_90079", - "npcLv": [ - 497, - 497, - 497, - 497, - 497, - 497 - ], - "isboss": 1, "ghname": "npc_ghname_5", "npcname": "jjc_npc_name_5" }, "20420": { "npcId": 20420, "attr": {}, - "npclist": "3001_235_90072#3006_235_90071#3011_235_90076#4001_235_90079#4006_235_90079#4011_235_90079", + "npclist": "3001_197_90072#3006_197_90071#3011_197_90076#4001_197_90079#4006_197_90079#4011_197_90079", "npcLv": [ - 502, - 502, - 502, - 502, - 502, - 502 + 450, + 450, + 450, + 450, + 450, + 450 ], "isboss": 1, "ghname": "npc_ghname_6", @@ -28581,14 +28581,14 @@ "20421": { "npcId": 20421, "attr": {}, - "npclist": "3002_224_90072#3007_224_90071#3012_224_90076#4002_224_90079#4007_224_90079#4012_224_90079", + "npclist": "3002_198_90072#3007_198_90071#3012_198_90076#4002_198_90079#4007_198_90079#4012_198_90079", "npcLv": [ - 502, - 502, - 502, - 502, - 502, - 502 + 451, + 451, + 451, + 451, + 451, + 451 ], "isboss": 1, "ghname": "npc_ghname_1", @@ -28597,7 +28597,1639 @@ "20422": { "npcId": 20422, "attr": {}, - "npclist": "3003_226_90072#3008_226_90071#3013_226_90076#4003_226_90079#4008_226_90079#4013_226_90079", + "npclist": "3003_198_90072#3008_198_90071#3013_198_90076#4003_198_90079#4008_198_90079#4013_198_90079", + "npcLv": [ + 451, + 451, + 451, + 451, + 451, + 451 + ], + "isboss": 1, + "ghname": "npc_ghname_2", + "npcname": "jjc_npc_name_2" + }, + "20423": { + "npcId": 20423, + "attr": {}, + "npclist": "3004_199_90072#3009_199_90071#3014_199_90076#4004_199_90079#4009_199_90079#4014_199_90079", + "npcLv": [ + 452, + 452, + 452, + 452, + 452, + 452 + ], + "isboss": 1, + "ghname": "npc_ghname_3", + "npcname": "jjc_npc_name_3" + }, + "20424": { + "npcId": 20424, + "attr": {}, + "npclist": "3005_199_90072#3010_199_90071#3015_199_90076#4005_199_90079#4010_199_90079#4015_199_90079", + "npcLv": [ + 452, + 452, + 452, + 452, + 452, + 452 + ], + "isboss": 1, + "ghname": "npc_ghname_4", + "npcname": "jjc_npc_name_4" + }, + "20425": { + "npcId": 20425, + "attr": {}, + "npclist": "3006_200_90072#3011_200_90071#4001_200_90076#4006_200_90079#4011_200_90079#5001_200_90079", + "npcLv": [ + 453, + 453, + 453, + 453, + 453, + 453 + ], + "isboss": 1, + "ghname": "npc_ghname_5", + "npcname": "jjc_npc_name_5" + }, + "20426": { + "npcId": 20426, + "attr": {}, + "npclist": "3007_200_90072#3012_200_90071#4002_200_90076#4007_200_90079#4012_200_90079#5002_200_90079", + "npcLv": [ + 453, + 453, + 453, + 453, + 453, + 453 + ], + "isboss": 1, + "ghname": "npc_ghname_6", + "npcname": "jjc_npc_name_6" + }, + "20427": { + "npcId": 20427, + "attr": {}, + "npclist": "3008_201_90072#3013_201_90071#4003_201_90076#4008_201_90079#4013_201_90079#5003_201_90079", + "npcLv": [ + 454, + 454, + 454, + 454, + 454, + 454 + ], + "isboss": 1, + "ghname": "npc_ghname_1", + "npcname": "jjc_npc_name_1" + }, + "20428": { + "npcId": 20428, + "attr": {}, + "npclist": "3009_201_90072#3014_201_90071#4004_201_90076#4009_201_90079#4014_201_90079#5004_201_90079", + "npcLv": [ + 454, + 454, + 454, + 454, + 454, + 454 + ], + "isboss": 1, + "ghname": "npc_ghname_2", + "npcname": "jjc_npc_name_2" + }, + "20429": { + "npcId": 20429, + "attr": {}, + "npclist": "3010_202_90072#3015_202_90071#4005_202_90076#4010_202_90079#4015_202_90079#5005_202_90079", + "npcLv": [ + 455, + 455, + 455, + 455, + 455, + 455 + ], + "isboss": 1, + "ghname": "npc_ghname_3", + "npcname": "jjc_npc_name_3" + }, + "20430": { + "npcId": 20430, + "attr": {}, + "npclist": "3011_215_90072#4001_215_90071#4006_215_90076#4011_215_90079#5001_215_90079#3001_215_90079", + "npcLv": [ + 455, + 455, + 455, + 455, + 455, + 455 + ], + "isboss": 1, + "ghname": "npc_ghname_4", + "npcname": "jjc_npc_name_4" + }, + "20431": { + "npcId": 20431, + "attr": {}, + "npclist": "3012_197_90072#4002_197_90071#4007_197_90076#4012_197_90079#5002_197_90079#3002_197_90079", + "npcLv": [ + 456, + 456, + 456, + 456, + 456, + 456 + ], + "isboss": 1, + "ghname": "npc_ghname_5", + "npcname": "jjc_npc_name_5" + }, + "20432": { + "npcId": 20432, + "attr": {}, + "npclist": "3013_198_90072#4003_198_90071#4008_198_90076#4013_198_90079#5003_198_90079#3003_198_90079", + "npcLv": [ + 456, + 456, + 456, + 456, + 456, + 456 + ], + "isboss": 1, + "ghname": "npc_ghname_6", + "npcname": "jjc_npc_name_6" + }, + "20433": { + "npcId": 20433, + "attr": {}, + "npclist": "3014_198_90072#4004_198_90071#4009_198_90076#4014_198_90079#5004_198_90079#3004_198_90079", + "npcLv": [ + 457, + 457, + 457, + 457, + 457, + 457 + ], + "isboss": 1, + "ghname": "npc_ghname_1", + "npcname": "jjc_npc_name_1" + }, + "20434": { + "npcId": 20434, + "attr": {}, + "npclist": "3015_199_90072#4005_199_90071#4010_199_90076#4015_199_90079#5005_199_90079#3005_199_90079", + "npcLv": [ + 457, + 457, + 457, + 457, + 457, + 457 + ], + "isboss": 1, + "ghname": "npc_ghname_2", + "npcname": "jjc_npc_name_2" + }, + "20435": { + "npcId": 20435, + "attr": {}, + "npclist": "4001_199_90072#4006_199_90071#4011_199_90076#5001_199_90079#3001_199_90079#3006_199_90079", + "npcLv": [ + 458, + 458, + 458, + 458, + 458, + 458 + ], + "isboss": 1, + "ghname": "npc_ghname_3", + "npcname": "jjc_npc_name_3" + }, + "20436": { + "npcId": 20436, + "attr": {}, + "npclist": "4002_200_90072#4007_200_90071#4012_200_90076#5002_200_90079#3002_200_90079#3007_200_90079", + "npcLv": [ + 458, + 458, + 458, + 458, + 458, + 458 + ], + "isboss": 1, + "ghname": "npc_ghname_4", + "npcname": "jjc_npc_name_4" + }, + "20437": { + "npcId": 20437, + "attr": {}, + "npclist": "4003_200_90072#4008_200_90071#4013_200_90076#5003_200_90079#3003_200_90079#3008_200_90079", + "npcLv": [ + 459, + 459, + 459, + 459, + 459, + 459 + ], + "isboss": 1, + "ghname": "npc_ghname_5", + "npcname": "jjc_npc_name_5" + }, + "20438": { + "npcId": 20438, + "attr": {}, + "npclist": "4004_201_90072#4009_201_90071#4014_201_90076#5004_201_90079#3004_201_90079#3009_201_90079", + "npcLv": [ + 459, + 459, + 459, + 459, + 459, + 459 + ], + "isboss": 1, + "ghname": "npc_ghname_6", + "npcname": "jjc_npc_name_6" + }, + "20439": { + "npcId": 20439, + "attr": {}, + "npclist": "4005_201_90072#4010_201_90071#4015_201_90076#5005_201_90079#3005_201_90079#3010_201_90079", + "npcLv": [ + 460, + 460, + 460, + 460, + 460, + 460 + ], + "isboss": 1, + "ghname": "npc_ghname_1", + "npcname": "jjc_npc_name_1" + }, + "20440": { + "npcId": 20440, + "attr": {}, + "npclist": "4006_202_90072#4011_202_90071#5001_202_90076#3001_202_90079#3006_202_90079#3011_202_90079", + "npcLv": [ + 460, + 460, + 460, + 460, + 460, + 460 + ], + "isboss": 1, + "ghname": "npc_ghname_2", + "npcname": "jjc_npc_name_2" + }, + "20441": { + "npcId": 20441, + "attr": {}, + "npclist": "4007_202_90072#4012_202_90071#5002_202_90076#3002_202_90079#3007_202_90079#3012_202_90079", + "npcLv": [ + 461, + 461, + 461, + 461, + 461, + 461 + ], + "isboss": 1, + "ghname": "npc_ghname_3", + "npcname": "jjc_npc_name_3" + }, + "20442": { + "npcId": 20442, + "attr": {}, + "npclist": "4008_216_90072#4013_216_90071#5003_216_90076#3003_216_90079#3008_216_90079#3013_216_90079", + "npcLv": [ + 461, + 461, + 461, + 461, + 461, + 461 + ], + "isboss": 1, + "ghname": "npc_ghname_4", + "npcname": "jjc_npc_name_4" + }, + "20443": { + "npcId": 20443, + "attr": {}, + "npclist": "4009_198_90072#4014_198_90071#5004_198_90076#3004_198_90079#3009_198_90079#3014_198_90079", + "npcLv": [ + 462, + 462, + 462, + 462, + 462, + 462 + ], + "isboss": 1, + "ghname": "npc_ghname_5", + "npcname": "jjc_npc_name_5" + }, + "20444": { + "npcId": 20444, + "attr": {}, + "npclist": "4010_198_90072#4015_198_90071#5005_198_90076#3005_198_90079#3010_198_90079#3015_198_90079", + "npcLv": [ + 462, + 462, + 462, + 462, + 462, + 462 + ], + "isboss": 1, + "ghname": "npc_ghname_6", + "npcname": "jjc_npc_name_6" + }, + "20445": { + "npcId": 20445, + "attr": {}, + "npclist": "4011_199_90072#5001_199_90071#3001_199_90076#3006_199_90079#3011_199_90079#4001_199_90079", + "npcLv": [ + 463, + 463, + 463, + 463, + 463, + 463 + ], + "isboss": 1, + "ghname": "npc_ghname_1", + "npcname": "jjc_npc_name_1" + }, + "20446": { + "npcId": 20446, + "attr": {}, + "npclist": "4012_199_90072#5002_199_90071#3002_199_90076#3007_199_90079#3012_199_90079#4002_199_90079", + "npcLv": [ + 463, + 463, + 463, + 463, + 463, + 463 + ], + "isboss": 1, + "ghname": "npc_ghname_2", + "npcname": "jjc_npc_name_2" + }, + "20447": { + "npcId": 20447, + "attr": {}, + "npclist": "4013_200_90072#5003_200_90071#3003_200_90076#3008_200_90079#3013_200_90079#4003_200_90079", + "npcLv": [ + 464, + 464, + 464, + 464, + 464, + 464 + ], + "isboss": 1, + "ghname": "npc_ghname_3", + "npcname": "jjc_npc_name_3" + }, + "20448": { + "npcId": 20448, + "attr": {}, + "npclist": "4014_200_90072#5004_200_90071#3004_200_90076#3009_200_90079#3014_200_90079#4004_200_90079", + "npcLv": [ + 464, + 464, + 464, + 464, + 464, + 464 + ], + "isboss": 1, + "ghname": "npc_ghname_4", + "npcname": "jjc_npc_name_4" + }, + "20449": { + "npcId": 20449, + "attr": {}, + "npclist": "4015_201_90072#5005_201_90071#3005_201_90076#3010_201_90079#3015_201_90079#4005_201_90079", + "npcLv": [ + 465, + 465, + 465, + 465, + 465, + 465 + ], + "isboss": 1, + "ghname": "npc_ghname_5", + "npcname": "jjc_npc_name_5" + }, + "20450": { + "npcId": 20450, + "attr": {}, + "npclist": "5001_201_90072#3001_201_90071#3006_201_90076#3011_201_90079#4001_201_90079#4006_201_90079", + "npcLv": [ + 465, + 465, + 465, + 465, + 465, + 465 + ], + "isboss": 1, + "ghname": "npc_ghname_6", + "npcname": "jjc_npc_name_6" + }, + "20451": { + "npcId": 20451, + "attr": {}, + "npclist": "5002_202_90072#3002_202_90071#3007_202_90076#3012_202_90079#4002_202_90079#4007_202_90079", + "npcLv": [ + 466, + 466, + 466, + 466, + 466, + 466 + ], + "isboss": 1, + "ghname": "npc_ghname_1", + "npcname": "jjc_npc_name_1" + }, + "20452": { + "npcId": 20452, + "attr": {}, + "npclist": "5003_202_90072#3003_202_90071#3008_202_90076#3013_202_90079#4003_202_90079#4008_202_90079", + "npcLv": [ + 466, + 466, + 466, + 466, + 466, + 466 + ], + "isboss": 1, + "ghname": "npc_ghname_2", + "npcname": "jjc_npc_name_2" + }, + "20453": { + "npcId": 20453, + "attr": {}, + "npclist": "5004_203_90072#3004_203_90071#3009_203_90076#3014_203_90079#4004_203_90079#4009_203_90079", + "npcLv": [ + 467, + 467, + 467, + 467, + 467, + 467 + ], + "isboss": 1, + "ghname": "npc_ghname_3", + "npcname": "jjc_npc_name_3" + }, + "20454": { + "npcId": 20454, + "attr": {}, + "npclist": "5005_217_90072#3005_217_90071#3010_217_90076#3015_217_90079#4005_217_90079#4010_217_90079", + "npcLv": [ + 467, + 467, + 467, + 467, + 467, + 467 + ], + "isboss": 1, + "ghname": "npc_ghname_4", + "npcname": "jjc_npc_name_4" + }, + "20455": { + "npcId": 20455, + "attr": {}, + "npclist": "3001_198_90072#3006_198_90071#3011_198_90076#4001_198_90079#4006_198_90079#4011_198_90079", + "npcLv": [ + 468, + 468, + 468, + 468, + 468, + 468 + ], + "isboss": 1, + "ghname": "npc_ghname_5", + "npcname": "jjc_npc_name_5" + }, + "20456": { + "npcId": 20456, + "attr": {}, + "npclist": "3002_199_90072#3007_199_90071#3012_199_90076#4002_199_90079#4007_199_90079#4012_199_90079", + "npcLv": [ + 468, + 468, + 468, + 468, + 468, + 468 + ], + "isboss": 1, + "ghname": "npc_ghname_6", + "npcname": "jjc_npc_name_6" + }, + "20457": { + "npcId": 20457, + "attr": {}, + "npclist": "3003_199_90072#3008_199_90071#3013_199_90076#4003_199_90079#4008_199_90079#4013_199_90079", + "npcLv": [ + 469, + 469, + 469, + 469, + 469, + 469 + ], + "isboss": 1, + "ghname": "npc_ghname_1", + "npcname": "jjc_npc_name_1" + }, + "20458": { + "npcId": 20458, + "attr": {}, + "npclist": "3004_200_90072#3009_200_90071#3014_200_90076#4004_200_90079#4009_200_90079#4014_200_90079", + "npcLv": [ + 469, + 469, + 469, + 469, + 469, + 469 + ], + "isboss": 1, + "ghname": "npc_ghname_2", + "npcname": "jjc_npc_name_2" + }, + "20459": { + "npcId": 20459, + "attr": {}, + "npclist": "3005_200_90072#3010_200_90071#3015_200_90076#4005_200_90079#4010_200_90079#4015_200_90079", + "npcLv": [ + 470, + 470, + 470, + 470, + 470, + 470 + ], + "isboss": 1, + "ghname": "npc_ghname_3", + "npcname": "jjc_npc_name_3" + }, + "20460": { + "npcId": 20460, + "attr": {}, + "npclist": "3006_201_90072#3011_201_90071#4001_201_90076#4006_201_90079#4011_201_90079#5001_201_90079", + "npcLv": [ + 470, + 470, + 470, + 470, + 470, + 470 + ], + "isboss": 1, + "ghname": "npc_ghname_4", + "npcname": "jjc_npc_name_4" + }, + "20461": { + "npcId": 20461, + "attr": {}, + "npclist": "3007_201_90072#3012_201_90071#4002_201_90076#4007_201_90079#4012_201_90079#5002_201_90079", + "npcLv": [ + 471, + 471, + 471, + 471, + 471, + 471 + ], + "isboss": 1, + "ghname": "npc_ghname_5", + "npcname": "jjc_npc_name_5" + }, + "20462": { + "npcId": 20462, + "attr": {}, + "npclist": "3008_202_90072#3013_202_90071#4003_202_90076#4008_202_90079#4013_202_90079#5003_202_90079", + "npcLv": [ + 471, + 471, + 471, + 471, + 471, + 471 + ], + "isboss": 1, + "ghname": "npc_ghname_6", + "npcname": "jjc_npc_name_6" + }, + "20463": { + "npcId": 20463, + "attr": {}, + "npclist": "3009_202_90072#3014_202_90071#4004_202_90076#4009_202_90079#4014_202_90079#5004_202_90079", + "npcLv": [ + 472, + 472, + 472, + 472, + 472, + 472 + ], + "isboss": 1, + "ghname": "npc_ghname_1", + "npcname": "jjc_npc_name_1" + }, + "20464": { + "npcId": 20464, + "attr": {}, + "npclist": "3010_203_90072#3015_203_90071#4005_203_90076#4010_203_90079#4015_203_90079#5005_203_90079", + "npcLv": [ + 472, + 472, + 472, + 472, + 472, + 472 + ], + "isboss": 1, + "ghname": "npc_ghname_2", + "npcname": "jjc_npc_name_2" + }, + "20465": { + "npcId": 20465, + "attr": {}, + "npclist": "3011_203_90072#4001_203_90071#4006_203_90076#4011_203_90079#5001_203_90079#3001_203_90079", + "npcLv": [ + 473, + 473, + 473, + 473, + 473, + 473 + ], + "isboss": 1, + "ghname": "npc_ghname_3", + "npcname": "jjc_npc_name_3" + }, + "20466": { + "npcId": 20466, + "attr": {}, + "npclist": "3012_218_90072#4002_218_90071#4007_218_90076#4012_218_90079#5002_218_90079#3002_218_90079", + "npcLv": [ + 473, + 473, + 473, + 473, + 473, + 473 + ], + "isboss": 1, + "ghname": "npc_ghname_4", + "npcname": "jjc_npc_name_4" + }, + "20467": { + "npcId": 20467, + "attr": {}, + "npclist": "3013_198_90072#4003_198_90071#4008_198_90076#4013_198_90079#5003_198_90079#3003_198_90079", + "npcLv": [ + 474, + 474, + 474, + 474, + 474, + 474 + ], + "isboss": 1, + "ghname": "npc_ghname_5", + "npcname": "jjc_npc_name_5" + }, + "20468": { + "npcId": 20468, + "attr": {}, + "npclist": "3014_198_90072#4004_198_90071#4009_198_90076#4014_198_90079#5004_198_90079#3004_198_90079", + "npcLv": [ + 474, + 474, + 474, + 474, + 474, + 474 + ], + "isboss": 1, + "ghname": "npc_ghname_6", + "npcname": "jjc_npc_name_6" + }, + "20469": { + "npcId": 20469, + "attr": {}, + "npclist": "3015_199_90072#4005_199_90071#4010_199_90076#4015_199_90079#5005_199_90079#3005_199_90079", + "npcLv": [ + 475, + 475, + 475, + 475, + 475, + 475 + ], + "isboss": 1, + "ghname": "npc_ghname_1", + "npcname": "jjc_npc_name_1" + }, + "20470": { + "npcId": 20470, + "attr": {}, + "npclist": "4001_199_90072#4006_199_90071#4011_199_90076#5001_199_90079#3001_199_90079#3006_199_90079", + "npcLv": [ + 475, + 475, + 475, + 475, + 475, + 475 + ], + "isboss": 1, + "ghname": "npc_ghname_2", + "npcname": "jjc_npc_name_2" + }, + "20471": { + "npcId": 20471, + "attr": {}, + "npclist": "4002_200_90072#4007_200_90071#4012_200_90076#5002_200_90079#3002_200_90079#3007_200_90079", + "npcLv": [ + 476, + 476, + 476, + 476, + 476, + 476 + ], + "isboss": 1, + "ghname": "npc_ghname_3", + "npcname": "jjc_npc_name_3" + }, + "20472": { + "npcId": 20472, + "attr": {}, + "npclist": "4003_200_90072#4008_200_90071#4013_200_90076#5003_200_90079#3003_200_90079#3008_200_90079", + "npcLv": [ + 476, + 476, + 476, + 476, + 476, + 476 + ], + "isboss": 1, + "ghname": "npc_ghname_4", + "npcname": "jjc_npc_name_4" + }, + "20473": { + "npcId": 20473, + "attr": {}, + "npclist": "4004_201_90072#4009_201_90071#4014_201_90076#5004_201_90079#3004_201_90079#3009_201_90079", + "npcLv": [ + 477, + 477, + 477, + 477, + 477, + 477 + ], + "isboss": 1, + "ghname": "npc_ghname_5", + "npcname": "jjc_npc_name_5" + }, + "20474": { + "npcId": 20474, + "attr": {}, + "npclist": "4005_201_90072#4010_201_90071#4015_201_90076#5005_201_90079#3005_201_90079#3010_201_90079", + "npcLv": [ + 477, + 477, + 477, + 477, + 477, + 477 + ], + "isboss": 1, + "ghname": "npc_ghname_6", + "npcname": "jjc_npc_name_6" + }, + "20475": { + "npcId": 20475, + "attr": {}, + "npclist": "4006_202_90072#4011_202_90071#5001_202_90076#3001_202_90079#3006_202_90079#3011_202_90079", + "npcLv": [ + 478, + 478, + 478, + 478, + 478, + 478 + ], + "isboss": 1, + "ghname": "npc_ghname_1", + "npcname": "jjc_npc_name_1" + }, + "20476": { + "npcId": 20476, + "attr": {}, + "npclist": "4007_202_90072#4012_202_90071#5002_202_90076#3002_202_90079#3007_202_90079#3012_202_90079", + "npcLv": [ + 478, + 478, + 478, + 478, + 478, + 478 + ], + "isboss": 1, + "ghname": "npc_ghname_2", + "npcname": "jjc_npc_name_2" + }, + "20477": { + "npcId": 20477, + "attr": {}, + "npclist": "4008_203_90072#4013_203_90071#5003_203_90076#3003_203_90079#3008_203_90079#3013_203_90079", + "npcLv": [ + 479, + 479, + 479, + 479, + 479, + 479 + ], + "isboss": 1, + "ghname": "npc_ghname_3", + "npcname": "jjc_npc_name_3" + }, + "20478": { + "npcId": 20478, + "attr": {}, + "npclist": "4009_203_90072#4014_203_90071#5004_203_90076#3004_203_90079#3009_203_90079#3014_203_90079", + "npcLv": [ + 479, + 479, + 479, + 479, + 479, + 479 + ], + "isboss": 1, + "ghname": "npc_ghname_4", + "npcname": "jjc_npc_name_4" + }, + "20479": { + "npcId": 20479, + "attr": {}, + "npclist": "4010_204_90072#4015_204_90071#5005_204_90076#3005_204_90079#3010_204_90079#3015_204_90079", + "npcLv": [ + 480, + 480, + 480, + 480, + 480, + 480 + ], + "isboss": 1, + "ghname": "npc_ghname_5", + "npcname": "jjc_npc_name_5" + }, + "20480": { + "npcId": 20480, + "attr": {}, + "npclist": "4011_219_90072#5001_219_90071#3001_219_90076#3006_219_90079#3011_219_90079#4001_219_90079", + "npcLv": [ + 480, + 480, + 480, + 480, + 480, + 480 + ], + "isboss": 1, + "ghname": "npc_ghname_6", + "npcname": "jjc_npc_name_6" + }, + "20481": { + "npcId": 20481, + "attr": {}, + "npclist": "4012_199_90072#5002_199_90071#3002_199_90076#3007_199_90079#3012_199_90079#4002_199_90079", + "npcLv": [ + 481, + 481, + 481, + 481, + 481, + 481 + ], + "isboss": 1, + "ghname": "npc_ghname_1", + "npcname": "jjc_npc_name_1" + }, + "20482": { + "npcId": 20482, + "attr": {}, + "npclist": "4013_200_90072#5003_200_90071#3003_200_90076#3008_200_90079#3013_200_90079#4003_200_90079", + "npcLv": [ + 481, + 481, + 481, + 481, + 481, + 481 + ], + "isboss": 1, + "ghname": "npc_ghname_2", + "npcname": "jjc_npc_name_2" + }, + "20483": { + "npcId": 20483, + "attr": {}, + "npclist": "4014_200_90072#5004_200_90071#3004_200_90076#3009_200_90079#3014_200_90079#4004_200_90079", + "npcLv": [ + 482, + 482, + 482, + 482, + 482, + 482 + ], + "isboss": 1, + "ghname": "npc_ghname_3", + "npcname": "jjc_npc_name_3" + }, + "20484": { + "npcId": 20484, + "attr": {}, + "npclist": "4015_201_90072#5005_201_90071#3005_201_90076#3010_201_90079#3015_201_90079#4005_201_90079", + "npcLv": [ + 482, + 482, + 482, + 482, + 482, + 482 + ], + "isboss": 1, + "ghname": "npc_ghname_4", + "npcname": "jjc_npc_name_4" + }, + "20485": { + "npcId": 20485, + "attr": {}, + "npclist": "5001_201_90072#3001_201_90071#3006_201_90076#3011_201_90079#4001_201_90079#4006_201_90079", + "npcLv": [ + 483, + 483, + 483, + 483, + 483, + 483 + ], + "isboss": 1, + "ghname": "npc_ghname_5", + "npcname": "jjc_npc_name_5" + }, + "20486": { + "npcId": 20486, + "attr": {}, + "npclist": "5002_202_90072#3002_202_90071#3007_202_90076#3012_202_90079#4002_202_90079#4007_202_90079", + "npcLv": [ + 483, + 483, + 483, + 483, + 483, + 483 + ], + "isboss": 1, + "ghname": "npc_ghname_6", + "npcname": "jjc_npc_name_6" + }, + "20487": { + "npcId": 20487, + "attr": {}, + "npclist": "5003_202_90072#3003_202_90071#3008_202_90076#3013_202_90079#4003_202_90079#4008_202_90079", + "npcLv": [ + 484, + 484, + 484, + 484, + 484, + 484 + ], + "isboss": 1, + "ghname": "npc_ghname_1", + "npcname": "jjc_npc_name_1" + }, + "20488": { + "npcId": 20488, + "attr": {}, + "npclist": "5004_203_90072#3004_203_90071#3009_203_90076#3014_203_90079#4004_203_90079#4009_203_90079", + "npcLv": [ + 484, + 484, + 484, + 484, + 484, + 484 + ], + "isboss": 1, + "ghname": "npc_ghname_2", + "npcname": "jjc_npc_name_2" + }, + "20489": { + "npcId": 20489, + "attr": {}, + "npclist": "5005_203_90072#3005_203_90071#3010_203_90076#3015_203_90079#4005_203_90079#4010_203_90079", + "npcLv": [ + 485, + 485, + 485, + 485, + 485, + 485 + ], + "isboss": 1, + "ghname": "npc_ghname_3", + "npcname": "jjc_npc_name_3" + }, + "20490": { + "npcId": 20490, + "attr": {}, + "npclist": "3001_204_90072#3006_204_90071#3011_204_90076#4001_204_90079#4006_204_90079#4011_204_90079", + "npcLv": [ + 485, + 485, + 485, + 485, + 485, + 485 + ], + "isboss": 1, + "ghname": "npc_ghname_4", + "npcname": "jjc_npc_name_4" + }, + "20491": { + "npcId": 20491, + "attr": {}, + "npclist": "3002_204_90072#3007_204_90071#3012_204_90076#4002_204_90079#4007_204_90079#4012_204_90079", + "npcLv": [ + 486, + 486, + 486, + 486, + 486, + 486 + ], + "isboss": 1, + "ghname": "npc_ghname_5", + "npcname": "jjc_npc_name_5" + }, + "20492": { + "npcId": 20492, + "attr": {}, + "npclist": "3003_220_90072#3008_220_90071#3013_220_90076#4003_220_90079#4008_220_90079#4013_220_90079", + "npcLv": [ + 486, + 486, + 486, + 486, + 486, + 486 + ], + "isboss": 1, + "ghname": "npc_ghname_6", + "npcname": "jjc_npc_name_6" + }, + "20493": { + "npcId": 20493, + "attr": {}, + "npclist": "3004_200_90072#3009_200_90071#3014_200_90076#4004_200_90079#4009_200_90079#4014_200_90079", + "npcLv": [ + 487, + 487, + 487, + 487, + 487, + 487 + ], + "isboss": 1, + "ghname": "npc_ghname_1", + "npcname": "jjc_npc_name_1" + }, + "20494": { + "npcId": 20494, + "attr": {}, + "npclist": "3005_200_90072#3010_200_90071#3015_200_90076#4005_200_90079#4010_200_90079#4015_200_90079", + "npcLv": [ + 487, + 487, + 487, + 487, + 487, + 487 + ], + "isboss": 1, + "ghname": "npc_ghname_2", + "npcname": "jjc_npc_name_2" + }, + "20495": { + "npcId": 20495, + "attr": {}, + "npclist": "3006_201_90072#3011_201_90071#4001_201_90076#4006_201_90079#4011_201_90079#5001_201_90079", + "npcLv": [ + 488, + 488, + 488, + 488, + 488, + 488 + ], + "isboss": 1, + "ghname": "npc_ghname_3", + "npcname": "jjc_npc_name_3" + }, + "20496": { + "npcId": 20496, + "attr": {}, + "npclist": "3007_201_90072#3012_201_90071#4002_201_90076#4007_201_90079#4012_201_90079#5002_201_90079", + "npcLv": [ + 488, + 488, + 488, + 488, + 488, + 488 + ], + "isboss": 1, + "ghname": "npc_ghname_4", + "npcname": "jjc_npc_name_4" + }, + "20497": { + "npcId": 20497, + "attr": {}, + "npclist": "3008_202_90072#3013_202_90071#4003_202_90076#4008_202_90079#4013_202_90079#5003_202_90079", + "npcLv": [ + 489, + 489, + 489, + 489, + 489, + 489 + ], + "isboss": 1, + "ghname": "npc_ghname_5", + "npcname": "jjc_npc_name_5" + }, + "20498": { + "npcId": 20498, + "attr": {}, + "npclist": "3009_202_90072#3014_202_90071#4004_202_90076#4009_202_90079#4014_202_90079#5004_202_90079", + "npcLv": [ + 489, + 489, + 489, + 489, + 489, + 489 + ], + "isboss": 1, + "ghname": "npc_ghname_6", + "npcname": "jjc_npc_name_6" + }, + "20499": { + "npcId": 20499, + "attr": {}, + "npclist": "3010_203_90072#3015_203_90071#4005_203_90076#4010_203_90079#4015_203_90079#5005_203_90079", + "npcLv": [ + 490, + 490, + 490, + 490, + 490, + 490 + ], + "isboss": 1, + "ghname": "npc_ghname_1", + "npcname": "jjc_npc_name_1" + }, + "20500": { + "npcId": 20500, + "attr": {}, + "npclist": "3011_203_90072#4001_203_90071#4006_203_90076#4011_203_90079#5001_203_90079#3001_203_90079", + "npcLv": [ + 490, + 490, + 490, + 490, + 490, + 490 + ], + "isboss": 1, + "ghname": "npc_ghname_2", + "npcname": "jjc_npc_name_2" + }, + "20501": { + "npcId": 20501, + "attr": {}, + "npclist": "3012_204_90072#4002_204_90071#4007_204_90076#4012_204_90079#5002_204_90079#3002_204_90079", + "npcLv": [ + 491, + 491, + 491, + 491, + 491, + 491 + ], + "isboss": 1, + "ghname": "npc_ghname_3", + "npcname": "jjc_npc_name_3" + }, + "20502": { + "npcId": 20502, + "attr": {}, + "npclist": "3013_204_90072#4003_204_90071#4008_204_90076#4013_204_90079#5003_204_90079#3003_204_90079", + "npcLv": [ + 491, + 491, + 491, + 491, + 491, + 491 + ], + "isboss": 1, + "ghname": "npc_ghname_4", + "npcname": "jjc_npc_name_4" + }, + "20503": { + "npcId": 20503, + "attr": {}, + "npclist": "3014_205_90072#4004_205_90071#4009_205_90076#4014_205_90079#5004_205_90079#3004_205_90079", + "npcLv": [ + 492, + 492, + 492, + 492, + 492, + 492 + ], + "isboss": 1, + "ghname": "npc_ghname_5", + "npcname": "jjc_npc_name_5" + }, + "20504": { + "npcId": 20504, + "attr": {}, + "npclist": "3015_221_90072#4005_221_90071#4010_221_90076#4015_221_90079#5005_221_90079#3005_221_90079", + "npcLv": [ + 492, + 492, + 492, + 492, + 492, + 492 + ], + "isboss": 1, + "ghname": "npc_ghname_6", + "npcname": "jjc_npc_name_6" + }, + "20505": { + "npcId": 20505, + "attr": {}, + "npclist": "4001_200_90072#4006_200_90071#4011_200_90076#5001_200_90079#3001_200_90079#3006_200_90079", + "npcLv": [ + 493, + 493, + 493, + 493, + 493, + 493 + ], + "isboss": 1, + "ghname": "npc_ghname_1", + "npcname": "jjc_npc_name_1" + }, + "20506": { + "npcId": 20506, + "attr": {}, + "npclist": "4002_201_90072#4007_201_90071#4012_201_90076#5002_201_90079#3002_201_90079#3007_201_90079", + "npcLv": [ + 493, + 493, + 493, + 493, + 493, + 493 + ], + "isboss": 1, + "ghname": "npc_ghname_2", + "npcname": "jjc_npc_name_2" + }, + "20507": { + "npcId": 20507, + "attr": {}, + "npclist": "4003_201_90072#4008_201_90071#4013_201_90076#5003_201_90079#3003_201_90079#3008_201_90079", + "npcLv": [ + 494, + 494, + 494, + 494, + 494, + 494 + ], + "isboss": 1, + "ghname": "npc_ghname_3", + "npcname": "jjc_npc_name_3" + }, + "20508": { + "npcId": 20508, + "attr": {}, + "npclist": "4004_202_90072#4009_202_90071#4014_202_90076#5004_202_90079#3004_202_90079#3009_202_90079", + "npcLv": [ + 494, + 494, + 494, + 494, + 494, + 494 + ], + "isboss": 1, + "ghname": "npc_ghname_4", + "npcname": "jjc_npc_name_4" + }, + "20509": { + "npcId": 20509, + "attr": {}, + "npclist": "4005_202_90072#4010_202_90071#4015_202_90076#5005_202_90079#3005_202_90079#3010_202_90079", + "npcLv": [ + 495, + 495, + 495, + 495, + 495, + 495 + ], + "isboss": 1, + "ghname": "npc_ghname_5", + "npcname": "jjc_npc_name_5" + }, + "20510": { + "npcId": 20510, + "attr": {}, + "npclist": "4006_203_90072#4011_203_90071#5001_203_90076#3001_203_90079#3006_203_90079#3011_203_90079", + "npcLv": [ + 495, + 495, + 495, + 495, + 495, + 495 + ], + "isboss": 1, + "ghname": "npc_ghname_6", + "npcname": "jjc_npc_name_6" + }, + "20511": { + "npcId": 20511, + "attr": {}, + "npclist": "4007_203_90072#4012_203_90071#5002_203_90076#3002_203_90079#3007_203_90079#3012_203_90079", + "npcLv": [ + 496, + 496, + 496, + 496, + 496, + 496 + ], + "isboss": 1, + "ghname": "npc_ghname_1", + "npcname": "jjc_npc_name_1" + }, + "20512": { + "npcId": 20512, + "attr": {}, + "npclist": "4008_204_90072#4013_204_90071#5003_204_90076#3003_204_90079#3008_204_90079#3013_204_90079", + "npcLv": [ + 496, + 496, + 496, + 496, + 496, + 496 + ], + "isboss": 1, + "ghname": "npc_ghname_2", + "npcname": "jjc_npc_name_2" + }, + "20513": { + "npcId": 20513, + "attr": {}, + "npclist": "4009_204_90072#4014_204_90071#5004_204_90076#3004_204_90079#3009_204_90079#3014_204_90079", + "npcLv": [ + 497, + 497, + 497, + 497, + 497, + 497 + ], + "isboss": 1, + "ghname": "npc_ghname_3", + "npcname": "jjc_npc_name_3" + }, + "20514": { + "npcId": 20514, + "attr": {}, + "npclist": "4010_205_90072#4015_205_90071#5005_205_90076#3005_205_90079#3010_205_90079#3015_205_90079", + "npcLv": [ + 497, + 497, + 497, + 497, + 497, + 497 + ], + "isboss": 1, + "ghname": "npc_ghname_4", + "npcname": "jjc_npc_name_4" + }, + "20515": { + "npcId": 20515, + "attr": {}, + "npclist": "4011_205_90072#5001_205_90071#3001_205_90076#3006_205_90079#3011_205_90079#4001_205_90079", + "npcLv": [ + 498, + 498, + 498, + 498, + 498, + 498 + ], + "isboss": 1, + "ghname": "npc_ghname_5", + "npcname": "jjc_npc_name_5" + }, + "20516": { + "npcId": 20516, + "attr": {}, + "npclist": "4012_222_90072#5002_222_90071#3002_222_90076#3007_222_90079#3012_222_90079#4002_222_90079", + "npcLv": [ + 498, + 498, + 498, + 498, + 498, + 498 + ], + "isboss": 1, + "ghname": "npc_ghname_6", + "npcname": "jjc_npc_name_6" + }, + "20517": { + "npcId": 20517, + "attr": {}, + "npclist": "4013_200_90072#5003_200_90071#3003_200_90076#3008_200_90079#3013_200_90079#4003_200_90079", + "npcLv": [ + 499, + 499, + 499, + 499, + 499, + 499 + ], + "isboss": 1, + "ghname": "npc_ghname_1", + "npcname": "jjc_npc_name_1" + }, + "20518": { + "npcId": 20518, + "attr": {}, + "npclist": "4014_201_90072#5004_201_90071#3004_201_90076#3009_201_90079#3014_201_90079#4004_201_90079", + "npcLv": [ + 499, + 499, + 499, + 499, + 499, + 499 + ], + "isboss": 1, + "ghname": "npc_ghname_2", + "npcname": "jjc_npc_name_2" + }, + "20519": { + "npcId": 20519, + "attr": {}, + "npclist": "4015_201_90072#5005_201_90071#3005_201_90076#3010_201_90079#3015_201_90079#4005_201_90079", + "npcLv": [ + 500, + 500, + 500, + 500, + 500, + 500 + ], + "isboss": 1, + "ghname": "npc_ghname_3", + "npcname": "jjc_npc_name_3" + }, + "20520": { + "npcId": 20520, + "attr": {}, + "npclist": "5001_202_90072#3001_202_90071#3006_202_90076#3011_202_90079#4001_202_90079#4006_202_90079", + "npcLv": [ + 500, + 500, + 500, + 500, + 500, + 500 + ], + "isboss": 1, + "ghname": "npc_ghname_4", + "npcname": "jjc_npc_name_4" + }, + "20521": { + "npcId": 20521, + "attr": {}, + "npclist": "5002_202_90072#3002_202_90071#3007_202_90076#3012_202_90079#4002_202_90079#4007_202_90079", + "npcLv": [ + 501, + 501, + 501, + 501, + 501, + 501 + ], + "isboss": 1, + "ghname": "npc_ghname_5", + "npcname": "jjc_npc_name_5" + }, + "20522": { + "npcId": 20522, + "attr": {}, + "npclist": "5003_203_90072#3003_203_90071#3008_203_90076#3013_203_90079#4003_203_90079#4008_203_90079", + "npcLv": [ + 501, + 501, + 501, + 501, + 501, + 501 + ], + "isboss": 1, + "ghname": "npc_ghname_6", + "npcname": "jjc_npc_name_6" + }, + "20523": { + "npcId": 20523, + "attr": {}, + "npclist": "5004_203_90072#3004_203_90071#3009_203_90076#3014_203_90079#4004_203_90079#4009_203_90079", + "npcLv": [ + 502, + 502, + 502, + 502, + 502, + 502 + ], + "isboss": 1, + "ghname": "npc_ghname_1", + "npcname": "jjc_npc_name_1" + }, + "20524": { + "npcId": 20524, + "attr": {}, + "npclist": "5005_204_90072#3005_204_90071#3010_204_90076#3015_204_90079#4005_204_90079#4010_204_90079", "npcLv": [ 502, 502, @@ -28610,1649 +30242,17 @@ "ghname": "npc_ghname_2", "npcname": "jjc_npc_name_2" }, - "20423": { - "npcId": 20423, - "attr": {}, - "npclist": "3004_226_90072#3009_226_90071#3014_226_90076#4004_226_90079#4009_226_90079#4014_226_90079", - "npcLv": [ - 507, - 507, - 507, - 507, - 507, - 507 - ], - "isboss": 1, - "ghname": "npc_ghname_3", - "npcname": "jjc_npc_name_3" - }, - "20424": { - "npcId": 20424, - "attr": {}, - "npclist": "3005_227_90072#3010_227_90071#3015_227_90076#4005_227_90079#4010_227_90079#4015_227_90079", - "npcLv": [ - 507, - 507, - 507, - 507, - 507, - 507 - ], - "isboss": 1, - "ghname": "npc_ghname_4", - "npcname": "jjc_npc_name_4" - }, - "20425": { - "npcId": 20425, - "attr": {}, - "npclist": "3006_227_90072#3011_227_90071#4001_227_90076#4006_227_90079#4011_227_90079#5001_227_90079", - "npcLv": [ - 507, - 507, - 507, - 507, - 507, - 507 - ], - "isboss": 1, - "ghname": "npc_ghname_5", - "npcname": "jjc_npc_name_5" - }, - "20426": { - "npcId": 20426, - "attr": {}, - "npclist": "3007_228_90072#3012_228_90071#4002_228_90076#4007_228_90079#4012_228_90079#5002_228_90079", - "npcLv": [ - 512, - 512, - 512, - 512, - 512, - 512 - ], - "isboss": 1, - "ghname": "npc_ghname_6", - "npcname": "jjc_npc_name_6" - }, - "20427": { - "npcId": 20427, - "attr": {}, - "npclist": "3008_228_90072#3013_228_90071#4003_228_90076#4008_228_90079#4013_228_90079#5003_228_90079", - "npcLv": [ - 512, - 512, - 512, - 512, - 512, - 512 - ], - "isboss": 1, - "ghname": "npc_ghname_1", - "npcname": "jjc_npc_name_1" - }, - "20428": { - "npcId": 20428, - "attr": {}, - "npclist": "3009_230_90072#3014_230_90071#4004_230_90076#4009_230_90079#4014_230_90079#5004_230_90079", - "npcLv": [ - 512, - 512, - 512, - 512, - 512, - 512 - ], - "isboss": 1, - "ghname": "npc_ghname_2", - "npcname": "jjc_npc_name_2" - }, - "20429": { - "npcId": 20429, - "attr": {}, - "npclist": "3010_230_90072#3015_230_90071#4005_230_90076#4010_230_90079#4015_230_90079#5005_230_90079", - "npcLv": [ - 517, - 517, - 517, - 517, - 517, - 517 - ], - "isboss": 1, - "ghname": "npc_ghname_3", - "npcname": "jjc_npc_name_3" - }, - "20430": { - "npcId": 20430, - "attr": {}, - "npclist": "3011_242_90072#4001_242_90071#4006_242_90076#4011_242_90079#5001_242_90079#3001_242_90079", - "npcLv": [ - 517, - 517, - 517, - 517, - 517, - 517 - ], - "isboss": 1, - "ghname": "npc_ghname_4", - "npcname": "jjc_npc_name_4" - }, - "20431": { - "npcId": 20431, - "attr": {}, - "npclist": "3012_231_90072#4002_231_90071#4007_231_90076#4012_231_90079#5002_231_90079#3002_231_90079", - "npcLv": [ - 517, - 517, - 517, - 517, - 517, - 517 - ], - "isboss": 1, - "ghname": "npc_ghname_5", - "npcname": "jjc_npc_name_5" - }, - "20432": { - "npcId": 20432, - "attr": {}, - "npclist": "3013_232_90072#4003_232_90071#4008_232_90076#4013_232_90079#5003_232_90079#3003_232_90079", - "npcLv": [ - 522, - 522, - 522, - 522, - 522, - 522 - ], - "isboss": 1, - "ghname": "npc_ghname_6", - "npcname": "jjc_npc_name_6" - }, - "20433": { - "npcId": 20433, - "attr": {}, - "npclist": "3014_232_90072#4004_232_90071#4009_232_90076#4014_232_90079#5004_232_90079#3004_232_90079", - "npcLv": [ - 522, - 522, - 522, - 522, - 522, - 522 - ], - "isboss": 1, - "ghname": "npc_ghname_1", - "npcname": "jjc_npc_name_1" - }, - "20434": { - "npcId": 20434, - "attr": {}, - "npclist": "3015_234_90072#4005_234_90071#4010_234_90076#4015_234_90079#5005_234_90079#3005_234_90079", - "npcLv": [ - 522, - 522, - 522, - 522, - 522, - 522 - ], - "isboss": 1, - "ghname": "npc_ghname_2", - "npcname": "jjc_npc_name_2" - }, - "20435": { - "npcId": 20435, - "attr": {}, - "npclist": "4001_234_90072#4006_234_90071#4011_234_90076#5001_234_90079#3001_234_90079#3006_234_90079", - "npcLv": [ - 528, - 528, - 528, - 528, - 528, - 528 - ], - "isboss": 1, - "ghname": "npc_ghname_3", - "npcname": "jjc_npc_name_3" - }, - "20436": { - "npcId": 20436, - "attr": {}, - "npclist": "4002_235_90072#4007_235_90071#4012_235_90076#5002_235_90079#3002_235_90079#3007_235_90079", - "npcLv": [ - 528, - 528, - 528, - 528, - 528, - 528 - ], - "isboss": 1, - "ghname": "npc_ghname_4", - "npcname": "jjc_npc_name_4" - }, - "20437": { - "npcId": 20437, - "attr": {}, - "npclist": "4003_235_90072#4008_235_90071#4013_235_90076#5003_235_90079#3003_235_90079#3008_235_90079", - "npcLv": [ - 528, - 528, - 528, - 528, - 528, - 528 - ], - "isboss": 1, - "ghname": "npc_ghname_5", - "npcname": "jjc_npc_name_5" - }, - "20438": { - "npcId": 20438, - "attr": {}, - "npclist": "4004_236_90072#4009_236_90071#4014_236_90076#5004_236_90079#3004_236_90079#3009_236_90079", - "npcLv": [ - 533, - 533, - 533, - 533, - 533, - 533 - ], - "isboss": 1, - "ghname": "npc_ghname_6", - "npcname": "jjc_npc_name_6" - }, - "20439": { - "npcId": 20439, - "attr": {}, - "npclist": "4005_236_90072#4010_236_90071#4015_236_90076#5005_236_90079#3005_236_90079#3010_236_90079", - "npcLv": [ - 533, - 533, - 533, - 533, - 533, - 533 - ], - "isboss": 1, - "ghname": "npc_ghname_1", - "npcname": "jjc_npc_name_1" - }, - "20440": { - "npcId": 20440, - "attr": {}, - "npclist": "4006_250_90072#4011_250_90071#5001_250_90076#3001_250_90079#3006_250_90079#3011_250_90079", - "npcLv": [ - 533, - 533, - 533, - 533, - 533, - 533 - ], - "isboss": 1, - "ghname": "npc_ghname_2", - "npcname": "jjc_npc_name_2" - }, - "20441": { - "npcId": 20441, - "attr": {}, - "npclist": "4007_237_90072#4012_237_90071#5002_237_90076#3002_237_90079#3007_237_90079#3012_237_90079", - "npcLv": [ - 538, - 538, - 538, - 538, - 538, - 538 - ], - "isboss": 1, - "ghname": "npc_ghname_3", - "npcname": "jjc_npc_name_3" - }, - "20442": { - "npcId": 20442, - "attr": {}, - "npclist": "4008_239_90072#4013_239_90071#5003_239_90076#3003_239_90079#3008_239_90079#3013_239_90079", - "npcLv": [ - 538, - 538, - 538, - 538, - 538, - 538 - ], - "isboss": 1, - "ghname": "npc_ghname_4", - "npcname": "jjc_npc_name_4" - }, - "20443": { - "npcId": 20443, - "attr": {}, - "npclist": "4009_239_90072#4014_239_90071#5004_239_90076#3004_239_90079#3009_239_90079#3014_239_90079", - "npcLv": [ - 538, - 538, - 538, - 538, - 538, - 538 - ], - "isboss": 1, - "ghname": "npc_ghname_5", - "npcname": "jjc_npc_name_5" - }, - "20444": { - "npcId": 20444, - "attr": {}, - "npclist": "4010_240_90072#4015_240_90071#5005_240_90076#3005_240_90079#3010_240_90079#3015_240_90079", - "npcLv": [ - 543, - 543, - 543, - 543, - 543, - 543 - ], - "isboss": 1, - "ghname": "npc_ghname_6", - "npcname": "jjc_npc_name_6" - }, - "20445": { - "npcId": 20445, - "attr": {}, - "npclist": "4011_240_90072#5001_240_90071#3001_240_90076#3006_240_90079#3011_240_90079#4001_240_90079", - "npcLv": [ - 543, - 543, - 543, - 543, - 543, - 543 - ], - "isboss": 1, - "ghname": "npc_ghname_1", - "npcname": "jjc_npc_name_1" - }, - "20446": { - "npcId": 20446, - "attr": {}, - "npclist": "4012_241_90072#5002_241_90071#3002_241_90076#3007_241_90079#3012_241_90079#4002_241_90079", - "npcLv": [ - 543, - 543, - 543, - 543, - 543, - 543 - ], - "isboss": 1, - "ghname": "npc_ghname_2", - "npcname": "jjc_npc_name_2" - }, - "20447": { - "npcId": 20447, - "attr": {}, - "npclist": "4013_241_90072#5003_241_90071#3003_241_90076#3008_241_90079#3013_241_90079#4003_241_90079", - "npcLv": [ - 549, - 549, - 549, - 549, - 549, - 549 - ], - "isboss": 1, - "ghname": "npc_ghname_3", - "npcname": "jjc_npc_name_3" - }, - "20448": { - "npcId": 20448, - "attr": {}, - "npclist": "4014_243_90072#5004_243_90071#3004_243_90076#3009_243_90079#3014_243_90079#4004_243_90079", - "npcLv": [ - 549, - 549, - 549, - 549, - 549, - 549 - ], - "isboss": 1, - "ghname": "npc_ghname_4", - "npcname": "jjc_npc_name_4" - }, - "20449": { - "npcId": 20449, - "attr": {}, - "npclist": "4015_243_90072#5005_243_90071#3005_243_90076#3010_243_90079#3015_243_90079#4005_243_90079", - "npcLv": [ - 549, - 549, - 549, - 549, - 549, - 549 - ], - "isboss": 1, - "ghname": "npc_ghname_5", - "npcname": "jjc_npc_name_5" - }, - "20450": { - "npcId": 20450, - "attr": {}, - "npclist": "5001_255_90072#3001_255_90071#3006_255_90076#3011_255_90079#4001_255_90079#4006_255_90079", - "npcLv": [ - 554, - 554, - 554, - 554, - 554, - 554 - ], - "isboss": 1, - "ghname": "npc_ghname_6", - "npcname": "jjc_npc_name_6" - }, - "20451": { - "npcId": 20451, - "attr": {}, - "npclist": "5002_244_90072#3002_244_90071#3007_244_90076#3012_244_90079#4002_244_90079#4007_244_90079", - "npcLv": [ - 554, - 554, - 554, - 554, - 554, - 554 - ], - "isboss": 1, - "ghname": "npc_ghname_1", - "npcname": "jjc_npc_name_1" - }, - "20452": { - "npcId": 20452, - "attr": {}, - "npclist": "5003_245_90072#3003_245_90071#3008_245_90076#3013_245_90079#4003_245_90079#4008_245_90079", - "npcLv": [ - 554, - 554, - 554, - 554, - 554, - 554 - ], - "isboss": 1, - "ghname": "npc_ghname_2", - "npcname": "jjc_npc_name_2" - }, - "20453": { - "npcId": 20453, - "attr": {}, - "npclist": "5004_245_90072#3004_245_90071#3009_245_90076#3014_245_90079#4004_245_90079#4009_245_90079", - "npcLv": [ - 559, - 559, - 559, - 559, - 559, - 559 - ], - "isboss": 1, - "ghname": "npc_ghname_3", - "npcname": "jjc_npc_name_3" - }, - "20454": { - "npcId": 20454, - "attr": {}, - "npclist": "5005_247_90072#3005_247_90071#3010_247_90076#3015_247_90079#4005_247_90079#4010_247_90079", - "npcLv": [ - 559, - 559, - 559, - 559, - 559, - 559 - ], - "isboss": 1, - "ghname": "npc_ghname_4", - "npcname": "jjc_npc_name_4" - }, - "20455": { - "npcId": 20455, - "attr": {}, - "npclist": "3001_247_90072#3006_247_90071#3011_247_90076#4001_247_90079#4006_247_90079#4011_247_90079", - "npcLv": [ - 559, - 559, - 559, - 559, - 559, - 559 - ], - "isboss": 1, - "ghname": "npc_ghname_5", - "npcname": "jjc_npc_name_5" - }, - "20456": { - "npcId": 20456, - "attr": {}, - "npclist": "3002_248_90072#3007_248_90071#3012_248_90076#4002_248_90079#4007_248_90079#4012_248_90079", - "npcLv": [ - 564, - 564, - 564, - 564, - 564, - 564 - ], - "isboss": 1, - "ghname": "npc_ghname_6", - "npcname": "jjc_npc_name_6" - }, - "20457": { - "npcId": 20457, - "attr": {}, - "npclist": "3003_248_90072#3008_248_90071#3013_248_90076#4003_248_90079#4008_248_90079#4013_248_90079", - "npcLv": [ - 564, - 564, - 564, - 564, - 564, - 564 - ], - "isboss": 1, - "ghname": "npc_ghname_1", - "npcname": "jjc_npc_name_1" - }, - "20458": { - "npcId": 20458, - "attr": {}, - "npclist": "3004_249_90072#3009_249_90071#3014_249_90076#4004_249_90079#4009_249_90079#4014_249_90079", - "npcLv": [ - 564, - 564, - 564, - 564, - 564, - 564 - ], - "isboss": 1, - "ghname": "npc_ghname_2", - "npcname": "jjc_npc_name_2" - }, - "20459": { - "npcId": 20459, - "attr": {}, - "npclist": "3005_249_90072#3010_249_90071#3015_249_90076#4005_249_90079#4010_249_90079#4015_249_90079", - "npcLv": [ - 570, - 570, - 570, - 570, - 570, - 570 - ], - "isboss": 1, - "ghname": "npc_ghname_3", - "npcname": "jjc_npc_name_3" - }, - "20460": { - "npcId": 20460, - "attr": {}, - "npclist": "3006_260_90072#3011_260_90071#4001_260_90076#4006_260_90079#4011_260_90079#5001_260_90079", - "npcLv": [ - 570, - 570, - 570, - 570, - 570, - 570 - ], - "isboss": 1, - "ghname": "npc_ghname_4", - "npcname": "jjc_npc_name_4" - }, - "20461": { - "npcId": 20461, - "attr": {}, - "npclist": "3007_250_90072#3012_250_90071#4002_250_90076#4007_250_90079#4012_250_90079#5002_250_90079", - "npcLv": [ - 570, - 570, - 570, - 570, - 570, - 570 - ], - "isboss": 1, - "ghname": "npc_ghname_5", - "npcname": "jjc_npc_name_5" - }, - "20462": { - "npcId": 20462, - "attr": {}, - "npclist": "3008_252_90072#3013_252_90071#4003_252_90076#4008_252_90079#4013_252_90079#5003_252_90079", - "npcLv": [ - 575, - 575, - 575, - 575, - 575, - 575 - ], - "isboss": 1, - "ghname": "npc_ghname_6", - "npcname": "jjc_npc_name_6" - }, - "20463": { - "npcId": 20463, - "attr": {}, - "npclist": "3009_252_90072#3014_252_90071#4004_252_90076#4009_252_90079#4014_252_90079#5004_252_90079", - "npcLv": [ - 575, - 575, - 575, - 575, - 575, - 575 - ], - "isboss": 1, - "ghname": "npc_ghname_1", - "npcname": "jjc_npc_name_1" - }, - "20464": { - "npcId": 20464, - "attr": {}, - "npclist": "3010_253_90072#3015_253_90071#4005_253_90076#4010_253_90079#4015_253_90079#5005_253_90079", - "npcLv": [ - 575, - 575, - 575, - 575, - 575, - 575 - ], - "isboss": 1, - "ghname": "npc_ghname_2", - "npcname": "jjc_npc_name_2" - }, - "20465": { - "npcId": 20465, - "attr": {}, - "npclist": "3011_253_90072#4001_253_90071#4006_253_90076#4011_253_90079#5001_253_90079#3001_253_90079", - "npcLv": [ - 580, - 580, - 580, - 580, - 580, - 580 - ], - "isboss": 1, - "ghname": "npc_ghname_3", - "npcname": "jjc_npc_name_3" - }, - "20466": { - "npcId": 20466, - "attr": {}, - "npclist": "3012_254_90072#4002_254_90071#4007_254_90076#4012_254_90079#5002_254_90079#3002_254_90079", - "npcLv": [ - 580, - 580, - 580, - 580, - 580, - 580 - ], - "isboss": 1, - "ghname": "npc_ghname_4", - "npcname": "jjc_npc_name_4" - }, - "20467": { - "npcId": 20467, - "attr": {}, - "npclist": "3013_254_90072#4003_254_90071#4008_254_90076#4013_254_90079#5003_254_90079#3003_254_90079", - "npcLv": [ - 580, - 580, - 580, - 580, - 580, - 580 - ], - "isboss": 1, - "ghname": "npc_ghname_5", - "npcname": "jjc_npc_name_5" - }, - "20468": { - "npcId": 20468, - "attr": {}, - "npclist": "3014_256_90072#4004_256_90071#4009_256_90076#4014_256_90079#5004_256_90079#3004_256_90079", - "npcLv": [ - 585, - 585, - 585, - 585, - 585, - 585 - ], - "isboss": 1, - "ghname": "npc_ghname_6", - "npcname": "jjc_npc_name_6" - }, - "20469": { - "npcId": 20469, - "attr": {}, - "npclist": "3015_256_90072#4005_256_90071#4010_256_90076#4015_256_90079#5005_256_90079#3005_256_90079", - "npcLv": [ - 585, - 585, - 585, - 585, - 585, - 585 - ], - "isboss": 1, - "ghname": "npc_ghname_1", - "npcname": "jjc_npc_name_1" - }, - "20470": { - "npcId": 20470, - "attr": {}, - "npclist": "4001_267_90072#4006_267_90071#4011_267_90076#5001_267_90079#3001_267_90079#3006_267_90079", - "npcLv": [ - 585, - 585, - 585, - 585, - 585, - 585 - ], - "isboss": 1, - "ghname": "npc_ghname_2", - "npcname": "jjc_npc_name_2" - }, - "20471": { - "npcId": 20471, - "attr": {}, - "npclist": "4002_257_90072#4007_257_90071#4012_257_90076#5002_257_90079#3002_257_90079#3007_257_90079", - "npcLv": [ - 591, - 591, - 591, - 591, - 591, - 591 - ], - "isboss": 1, - "ghname": "npc_ghname_3", - "npcname": "jjc_npc_name_3" - }, - "20472": { - "npcId": 20472, - "attr": {}, - "npclist": "4003_258_90072#4008_258_90071#4013_258_90076#5003_258_90079#3003_258_90079#3008_258_90079", - "npcLv": [ - 591, - 591, - 591, - 591, - 591, - 591 - ], - "isboss": 1, - "ghname": "npc_ghname_4", - "npcname": "jjc_npc_name_4" - }, - "20473": { - "npcId": 20473, - "attr": {}, - "npclist": "4004_258_90072#4009_258_90071#4014_258_90076#5004_258_90079#3004_258_90079#3009_258_90079", - "npcLv": [ - 591, - 591, - 591, - 591, - 591, - 591 - ], - "isboss": 1, - "ghname": "npc_ghname_5", - "npcname": "jjc_npc_name_5" - }, - "20474": { - "npcId": 20474, - "attr": {}, - "npclist": "4005_260_90072#4010_260_90071#4015_260_90076#5005_260_90079#3005_260_90079#3010_260_90079", - "npcLv": [ - 596, - 596, - 596, - 596, - 596, - 596 - ], - "isboss": 1, - "ghname": "npc_ghname_6", - "npcname": "jjc_npc_name_6" - }, - "20475": { - "npcId": 20475, - "attr": {}, - "npclist": "4006_260_90072#4011_260_90071#5001_260_90076#3001_260_90079#3006_260_90079#3011_260_90079", - "npcLv": [ - 596, - 596, - 596, - 596, - 596, - 596 - ], - "isboss": 1, - "ghname": "npc_ghname_1", - "npcname": "jjc_npc_name_1" - }, - "20476": { - "npcId": 20476, - "attr": {}, - "npclist": "4007_261_90072#4012_261_90071#5002_261_90076#3002_261_90079#3007_261_90079#3012_261_90079", - "npcLv": [ - 596, - 596, - 596, - 596, - 596, - 596 - ], - "isboss": 1, - "ghname": "npc_ghname_2", - "npcname": "jjc_npc_name_2" - }, - "20477": { - "npcId": 20477, - "attr": {}, - "npclist": "4008_261_90072#4013_261_90071#5003_261_90076#3003_261_90079#3008_261_90079#3013_261_90079", - "npcLv": [ - 601, - 601, - 601, - 601, - 601, - 601 - ], - "isboss": 1, - "ghname": "npc_ghname_3", - "npcname": "jjc_npc_name_3" - }, - "20478": { - "npcId": 20478, - "attr": {}, - "npclist": "4009_262_90072#4014_262_90071#5004_262_90076#3004_262_90079#3009_262_90079#3014_262_90079", - "npcLv": [ - 601, - 601, - 601, - 601, - 601, - 601 - ], - "isboss": 1, - "ghname": "npc_ghname_4", - "npcname": "jjc_npc_name_4" - }, - "20479": { - "npcId": 20479, - "attr": {}, - "npclist": "4010_262_90072#4015_262_90071#5005_262_90076#3005_262_90079#3010_262_90079#3015_262_90079", - "npcLv": [ - 601, - 601, - 601, - 601, - 601, - 601 - ], - "isboss": 1, - "ghname": "npc_ghname_5", - "npcname": "jjc_npc_name_5" - }, - "20480": { - "npcId": 20480, - "attr": {}, - "npclist": "4011_272_90072#5001_272_90071#3001_272_90076#3006_272_90079#3011_272_90079#4001_272_90079", - "npcLv": [ - 607, - 607, - 607, - 607, - 607, - 607 - ], - "isboss": 1, - "ghname": "npc_ghname_6", - "npcname": "jjc_npc_name_6" - }, - "20481": { - "npcId": 20481, - "attr": {}, - "npclist": "4012_263_90072#5002_263_90071#3002_263_90076#3007_263_90079#3012_263_90079#4002_263_90079", - "npcLv": [ - 607, - 607, - 607, - 607, - 607, - 607 - ], - "isboss": 1, - "ghname": "npc_ghname_1", - "npcname": "jjc_npc_name_1" - }, - "20482": { - "npcId": 20482, - "attr": {}, - "npclist": "4013_265_90072#5003_265_90071#3003_265_90076#3008_265_90079#3013_265_90079#4003_265_90079", - "npcLv": [ - 607, - 607, - 607, - 607, - 607, - 607 - ], - "isboss": 1, - "ghname": "npc_ghname_2", - "npcname": "jjc_npc_name_2" - }, - "20483": { - "npcId": 20483, - "attr": {}, - "npclist": "4014_265_90072#5004_265_90071#3004_265_90076#3009_265_90079#3014_265_90079#4004_265_90079", - "npcLv": [ - 612, - 612, - 612, - 612, - 612, - 612 - ], - "isboss": 1, - "ghname": "npc_ghname_3", - "npcname": "jjc_npc_name_3" - }, - "20484": { - "npcId": 20484, - "attr": {}, - "npclist": "4015_266_90072#5005_266_90071#3005_266_90076#3010_266_90079#3015_266_90079#4005_266_90079", - "npcLv": [ - 612, - 612, - 612, - 612, - 612, - 612 - ], - "isboss": 1, - "ghname": "npc_ghname_4", - "npcname": "jjc_npc_name_4" - }, - "20485": { - "npcId": 20485, - "attr": {}, - "npclist": "5001_266_90072#3001_266_90071#3006_266_90076#3011_266_90079#4001_266_90079#4006_266_90079", - "npcLv": [ - 612, - 612, - 612, - 612, - 612, - 612 - ], - "isboss": 1, - "ghname": "npc_ghname_5", - "npcname": "jjc_npc_name_5" - }, - "20486": { - "npcId": 20486, - "attr": {}, - "npclist": "5002_267_90072#3002_267_90071#3007_267_90076#3012_267_90079#4002_267_90079#4007_267_90079", - "npcLv": [ - 617, - 617, - 617, - 617, - 617, - 617 - ], - "isboss": 1, - "ghname": "npc_ghname_6", - "npcname": "jjc_npc_name_6" - }, - "20487": { - "npcId": 20487, - "attr": {}, - "npclist": "5003_267_90072#3003_267_90071#3008_267_90076#3013_267_90079#4003_267_90079#4008_267_90079", - "npcLv": [ - 617, - 617, - 617, - 617, - 617, - 617 - ], - "isboss": 1, - "ghname": "npc_ghname_1", - "npcname": "jjc_npc_name_1" - }, - "20488": { - "npcId": 20488, - "attr": {}, - "npclist": "5004_269_90072#3004_269_90071#3009_269_90076#3014_269_90079#4004_269_90079#4009_269_90079", - "npcLv": [ - 617, - 617, - 617, - 617, - 617, - 617 - ], - "isboss": 1, - "ghname": "npc_ghname_2", - "npcname": "jjc_npc_name_2" - }, - "20489": { - "npcId": 20489, - "attr": {}, - "npclist": "5005_269_90072#3005_269_90071#3010_269_90076#3015_269_90079#4005_269_90079#4010_269_90079", - "npcLv": [ - 622, - 622, - 622, - 622, - 622, - 622 - ], - "isboss": 1, - "ghname": "npc_ghname_3", - "npcname": "jjc_npc_name_3" - }, - "20490": { - "npcId": 20490, - "attr": {}, - "npclist": "3001_280_90072#3006_280_90071#3011_280_90076#4001_280_90079#4006_280_90079#4011_280_90079", - "npcLv": [ - 622, - 622, - 622, - 622, - 622, - 622 - ], - "isboss": 1, - "ghname": "npc_ghname_4", - "npcname": "jjc_npc_name_4" - }, - "20491": { - "npcId": 20491, - "attr": {}, - "npclist": "3002_270_90072#3007_270_90071#3012_270_90076#4002_270_90079#4007_270_90079#4012_270_90079", - "npcLv": [ - 622, - 622, - 622, - 622, - 622, - 622 - ], - "isboss": 1, - "ghname": "npc_ghname_5", - "npcname": "jjc_npc_name_5" - }, - "20492": { - "npcId": 20492, - "attr": {}, - "npclist": "3003_271_90072#3008_271_90071#3013_271_90076#4003_271_90079#4008_271_90079#4013_271_90079", - "npcLv": [ - 628, - 628, - 628, - 628, - 628, - 628 - ], - "isboss": 1, - "ghname": "npc_ghname_6", - "npcname": "jjc_npc_name_6" - }, - "20493": { - "npcId": 20493, - "attr": {}, - "npclist": "3004_271_90072#3009_271_90071#3014_271_90076#4004_271_90079#4009_271_90079#4014_271_90079", - "npcLv": [ - 628, - 628, - 628, - 628, - 628, - 628 - ], - "isboss": 1, - "ghname": "npc_ghname_1", - "npcname": "jjc_npc_name_1" - }, - "20494": { - "npcId": 20494, - "attr": {}, - "npclist": "3005_273_90072#3010_273_90071#3015_273_90076#4005_273_90079#4010_273_90079#4015_273_90079", - "npcLv": [ - 628, - 628, - 628, - 628, - 628, - 628 - ], - "isboss": 1, - "ghname": "npc_ghname_2", - "npcname": "jjc_npc_name_2" - }, - "20495": { - "npcId": 20495, - "attr": {}, - "npclist": "3006_273_90072#3011_273_90071#4001_273_90076#4006_273_90079#4011_273_90079#5001_273_90079", - "npcLv": [ - 633, - 633, - 633, - 633, - 633, - 633 - ], - "isboss": 1, - "ghname": "npc_ghname_3", - "npcname": "jjc_npc_name_3" - }, - "20496": { - "npcId": 20496, - "attr": {}, - "npclist": "3007_274_90072#3012_274_90071#4002_274_90076#4007_274_90079#4012_274_90079#5002_274_90079", - "npcLv": [ - 633, - 633, - 633, - 633, - 633, - 633 - ], - "isboss": 1, - "ghname": "npc_ghname_4", - "npcname": "jjc_npc_name_4" - }, - "20497": { - "npcId": 20497, - "attr": {}, - "npclist": "3008_274_90072#3013_274_90071#4003_274_90076#4008_274_90079#4013_274_90079#5003_274_90079", - "npcLv": [ - 633, - 633, - 633, - 633, - 633, - 633 - ], - "isboss": 1, - "ghname": "npc_ghname_5", - "npcname": "jjc_npc_name_5" - }, - "20498": { - "npcId": 20498, - "attr": {}, - "npclist": "3009_275_90072#3014_275_90071#4004_275_90076#4009_275_90079#4014_275_90079#5004_275_90079", - "npcLv": [ - 638, - 638, - 638, - 638, - 638, - 638 - ], - "isboss": 1, - "ghname": "npc_ghname_6", - "npcname": "jjc_npc_name_6" - }, - "20499": { - "npcId": 20499, - "attr": {}, - "npclist": "3010_275_90072#3015_275_90071#4005_275_90076#4010_275_90079#4015_275_90079#5005_275_90079", - "npcLv": [ - 638, - 638, - 638, - 638, - 638, - 638 - ], - "isboss": 1, - "ghname": "npc_ghname_1", - "npcname": "jjc_npc_name_1" - }, - "20500": { - "npcId": 20500, - "attr": {}, - "npclist": "3011_283_90072#4001_283_90071#4006_283_90076#4011_283_90079#5001_283_90079#3001_283_90079", - "npcLv": [ - 638, - 638, - 638, - 638, - 638, - 638 - ], - "isboss": 1, - "ghname": "npc_ghname_2", - "npcname": "jjc_npc_name_2" - }, - "20501": { - "npcId": 20501, - "attr": {}, - "npclist": "3012_276_90072#4002_276_90071#4007_276_90076#4012_276_90079#5002_276_90079#3002_276_90079", - "npcLv": [ - 644, - 644, - 644, - 644, - 644, - 644 - ], - "isboss": 1, - "ghname": "npc_ghname_3", - "npcname": "jjc_npc_name_3" - }, - "20502": { - "npcId": 20502, - "attr": {}, - "npclist": "3013_278_90072#4003_278_90071#4008_278_90076#4013_278_90079#5003_278_90079#3003_278_90079", - "npcLv": [ - 644, - 644, - 644, - 644, - 644, - 644 - ], - "isboss": 1, - "ghname": "npc_ghname_4", - "npcname": "jjc_npc_name_4" - }, - "20503": { - "npcId": 20503, - "attr": {}, - "npclist": "3014_278_90072#4004_278_90071#4009_278_90076#4014_278_90079#5004_278_90079#3004_278_90079", - "npcLv": [ - 644, - 644, - 644, - 644, - 644, - 644 - ], - "isboss": 1, - "ghname": "npc_ghname_5", - "npcname": "jjc_npc_name_5" - }, - "20504": { - "npcId": 20504, - "attr": {}, - "npclist": "3015_279_90072#4005_279_90071#4010_279_90076#4015_279_90079#5005_279_90079#3005_279_90079", - "npcLv": [ - 649, - 649, - 649, - 649, - 649, - 649 - ], - "isboss": 1, - "ghname": "npc_ghname_6", - "npcname": "jjc_npc_name_6" - }, - "20505": { - "npcId": 20505, - "attr": {}, - "npclist": "4001_279_90072#4006_279_90071#4011_279_90076#5001_279_90079#3001_279_90079#3006_279_90079", - "npcLv": [ - 649, - 649, - 649, - 649, - 649, - 649 - ], - "isboss": 1, - "ghname": "npc_ghname_1", - "npcname": "jjc_npc_name_1" - }, - "20506": { - "npcId": 20506, - "attr": {}, - "npclist": "4002_280_90072#4007_280_90071#4012_280_90076#5002_280_90079#3002_280_90079#3007_280_90079", - "npcLv": [ - 649, - 649, - 649, - 649, - 649, - 649 - ], - "isboss": 1, - "ghname": "npc_ghname_2", - "npcname": "jjc_npc_name_2" - }, - "20507": { - "npcId": 20507, - "attr": {}, - "npclist": "4003_280_90072#4008_280_90071#4013_280_90076#5003_280_90079#3003_280_90079#3008_280_90079", - "npcLv": [ - 654, - 654, - 654, - 654, - 654, - 654 - ], - "isboss": 1, - "ghname": "npc_ghname_3", - "npcname": "jjc_npc_name_3" - }, - "20508": { - "npcId": 20508, - "attr": {}, - "npclist": "4004_282_90072#4009_282_90071#4014_282_90076#5004_282_90079#3004_282_90079#3009_282_90079", - "npcLv": [ - 654, - 654, - 654, - 654, - 654, - 654 - ], - "isboss": 1, - "ghname": "npc_ghname_4", - "npcname": "jjc_npc_name_4" - }, - "20509": { - "npcId": 20509, - "attr": {}, - "npclist": "4005_282_90072#4010_282_90071#4015_282_90076#5005_282_90079#3005_282_90079#3010_282_90079", - "npcLv": [ - 654, - 654, - 654, - 654, - 654, - 654 - ], - "isboss": 1, - "ghname": "npc_ghname_5", - "npcname": "jjc_npc_name_5" - }, - "20510": { - "npcId": 20510, - "attr": {}, - "npclist": "4006_289_90072#4011_289_90071#5001_289_90076#3001_289_90079#3006_289_90079#3011_289_90079", - "npcLv": [ - 660, - 660, - 660, - 660, - 660, - 660 - ], - "isboss": 1, - "ghname": "npc_ghname_6", - "npcname": "jjc_npc_name_6" - }, - "20511": { - "npcId": 20511, - "attr": {}, - "npclist": "4007_281_90072#4012_281_90071#5002_281_90076#3002_281_90079#3007_281_90079#3012_281_90079", - "npcLv": [ - 660, - 660, - 660, - 660, - 660, - 660 - ], - "isboss": 1, - "ghname": "npc_ghname_1", - "npcname": "jjc_npc_name_1" - }, - "20512": { - "npcId": 20512, - "attr": {}, - "npclist": "4008_282_90072#4013_282_90071#5003_282_90076#3003_282_90079#3008_282_90079#3013_282_90079", - "npcLv": [ - 660, - 660, - 660, - 660, - 660, - 660 - ], - "isboss": 1, - "ghname": "npc_ghname_2", - "npcname": "jjc_npc_name_2" - }, - "20513": { - "npcId": 20513, - "attr": {}, - "npclist": "4009_282_90072#4014_282_90071#5004_282_90076#3004_282_90079#3009_282_90079#3014_282_90079", - "npcLv": [ - 665, - 665, - 665, - 665, - 665, - 665 - ], - "isboss": 1, - "ghname": "npc_ghname_3", - "npcname": "jjc_npc_name_3" - }, - "20514": { - "npcId": 20514, - "attr": {}, - "npclist": "4010_283_90072#4015_283_90071#5005_283_90076#3005_283_90079#3010_283_90079#3015_283_90079", - "npcLv": [ - 665, - 665, - 665, - 665, - 665, - 665 - ], - "isboss": 1, - "ghname": "npc_ghname_4", - "npcname": "jjc_npc_name_4" - }, - "20515": { - "npcId": 20515, - "attr": {}, - "npclist": "4011_283_90072#5001_283_90071#3001_283_90076#3006_283_90079#3011_283_90079#4001_283_90079", - "npcLv": [ - 665, - 665, - 665, - 665, - 665, - 665 - ], - "isboss": 1, - "ghname": "npc_ghname_5", - "npcname": "jjc_npc_name_5" - }, - "20516": { - "npcId": 20516, - "attr": {}, - "npclist": "4012_285_90072#5002_285_90071#3002_285_90076#3007_285_90079#3012_285_90079#4002_285_90079", - "npcLv": [ - 671, - 671, - 671, - 671, - 671, - 671 - ], - "isboss": 1, - "ghname": "npc_ghname_6", - "npcname": "jjc_npc_name_6" - }, - "20517": { - "npcId": 20517, - "attr": {}, - "npclist": "4013_285_90072#5003_285_90071#3003_285_90076#3008_285_90079#3013_285_90079#4003_285_90079", - "npcLv": [ - 671, - 671, - 671, - 671, - 671, - 671 - ], - "isboss": 1, - "ghname": "npc_ghname_1", - "npcname": "jjc_npc_name_1" - }, - "20518": { - "npcId": 20518, - "attr": {}, - "npclist": "4014_286_90072#5004_286_90071#3004_286_90076#3009_286_90079#3014_286_90079#4004_286_90079", - "npcLv": [ - 671, - 671, - 671, - 671, - 671, - 671 - ], - "isboss": 1, - "ghname": "npc_ghname_2", - "npcname": "jjc_npc_name_2" - }, - "20519": { - "npcId": 20519, - "attr": {}, - "npclist": "4015_286_90072#5005_286_90071#3005_286_90076#3010_286_90079#3015_286_90079#4005_286_90079", - "npcLv": [ - 676, - 676, - 676, - 676, - 676, - 676 - ], - "isboss": 1, - "ghname": "npc_ghname_3", - "npcname": "jjc_npc_name_3" - }, - "20520": { - "npcId": 20520, - "attr": {}, - "npclist": "5001_296_90072#3001_296_90071#3006_296_90076#3011_296_90079#4001_296_90079#4006_296_90079", - "npcLv": [ - 676, - 676, - 676, - 676, - 676, - 676 - ], - "isboss": 1, - "ghname": "npc_ghname_4", - "npcname": "jjc_npc_name_4" - }, - "20521": { - "npcId": 20521, - "attr": {}, - "npclist": "5002_285_90072#3002_285_90071#3007_285_90076#3012_285_90079#4002_285_90079#4007_285_90079", - "npcLv": [ - 676, - 676, - 676, - 676, - 676, - 676 - ], - "isboss": 1, - "ghname": "npc_ghname_5", - "npcname": "jjc_npc_name_5" - }, - "20522": { - "npcId": 20522, - "attr": {}, - "npclist": "5003_286_90072#3003_286_90071#3008_286_90076#3013_286_90079#4003_286_90079#4008_286_90079", - "npcLv": [ - 681, - 681, - 681, - 681, - 681, - 681 - ], - "isboss": 1, - "ghname": "npc_ghname_6", - "npcname": "jjc_npc_name_6" - }, - "20523": { - "npcId": 20523, - "attr": {}, - "npclist": "5004_286_90072#3004_286_90071#3009_286_90076#3014_286_90079#4004_286_90079#4009_286_90079", - "npcLv": [ - 681, - 681, - 681, - 681, - 681, - 681 - ], - "isboss": 1, - "ghname": "npc_ghname_1", - "npcname": "jjc_npc_name_1" - }, - "20524": { - "npcId": 20524, - "attr": {}, - "npclist": "5005_288_90072#3005_288_90071#3010_288_90076#3015_288_90079#4005_288_90079#4010_288_90079", - "npcLv": [ - 681, - 681, - 681, - 681, - 681, - 681 - ], - "isboss": 1, - "ghname": "npc_ghname_2", - "npcname": "jjc_npc_name_2" - }, "20525": { "npcId": 20525, "attr": {}, - "npclist": "3001_288_90072#3006_288_90071#3011_288_90076#4001_288_90079#4006_288_90079#4011_288_90079", + "npclist": "3001_204_90072#3006_204_90071#3011_204_90076#4001_204_90079#4006_204_90079#4011_204_90079", "npcLv": [ - 687, - 687, - 687, - 687, - 687, - 687 + 503, + 503, + 503, + 503, + 503, + 503 ], "isboss": 1, "ghname": "npc_ghname_3", @@ -30261,14 +30261,14 @@ "20526": { "npcId": 20526, "attr": {}, - "npclist": "3002_289_90072#3007_289_90071#3012_289_90076#4002_289_90079#4007_289_90079#4012_289_90079", + "npclist": "3002_205_90072#3007_205_90071#3012_205_90076#4002_205_90079#4007_205_90079#4012_205_90079", "npcLv": [ - 687, - 687, - 687, - 687, - 687, - 687 + 503, + 503, + 503, + 503, + 503, + 503 ], "isboss": 1, "ghname": "npc_ghname_4", @@ -30277,7 +30277,5751 @@ "20527": { "npcId": 20527, "attr": {}, - "npclist": "3003_289_90072#3008_289_90071#3013_289_90076#4003_289_90079#4008_289_90079#4013_289_90079", + "npclist": "3003_205_90072#3008_205_90071#3013_205_90076#4003_205_90079#4008_205_90079#4013_205_90079", + "npcLv": [ + 504, + 504, + 504, + 504, + 504, + 504 + ], + "isboss": 1, + "ghname": "npc_ghname_5", + "npcname": "jjc_npc_name_5" + }, + "20528": { + "npcId": 20528, + "attr": {}, + "npclist": "3004_206_90072#3009_206_90071#3014_206_90076#4004_206_90079#4009_206_90079#4014_206_90079", + "npcLv": [ + 504, + 504, + 504, + 504, + 504, + 504 + ], + "isboss": 1, + "ghname": "npc_ghname_6", + "npcname": "jjc_npc_name_6" + }, + "20529": { + "npcId": 20529, + "attr": {}, + "npclist": "3005_206_90072#3010_206_90071#3015_206_90076#4005_206_90079#4010_206_90079#4015_206_90079", + "npcLv": [ + 505, + 505, + 505, + 505, + 505, + 505 + ], + "isboss": 1, + "ghname": "npc_ghname_1", + "npcname": "jjc_npc_name_1" + }, + "20530": { + "npcId": 20530, + "attr": {}, + "npclist": "3006_223_90072#3011_223_90071#4001_223_90076#4006_223_90079#4011_223_90079#5001_223_90079", + "npcLv": [ + 505, + 505, + 505, + 505, + 505, + 505 + ], + "isboss": 1, + "ghname": "npc_ghname_2", + "npcname": "jjc_npc_name_2" + }, + "20531": { + "npcId": 20531, + "attr": {}, + "npclist": "3007_202_90072#3012_202_90071#4002_202_90076#4007_202_90079#4012_202_90079#5002_202_90079", + "npcLv": [ + 506, + 506, + 506, + 506, + 506, + 506 + ], + "isboss": 1, + "ghname": "npc_ghname_3", + "npcname": "jjc_npc_name_3" + }, + "20532": { + "npcId": 20532, + "attr": {}, + "npclist": "3008_203_90072#3013_203_90071#4003_203_90076#4008_203_90079#4013_203_90079#5003_203_90079", + "npcLv": [ + 506, + 506, + 506, + 506, + 506, + 506 + ], + "isboss": 1, + "ghname": "npc_ghname_4", + "npcname": "jjc_npc_name_4" + }, + "20533": { + "npcId": 20533, + "attr": {}, + "npclist": "3009_203_90072#3014_203_90071#4004_203_90076#4009_203_90079#4014_203_90079#5004_203_90079", + "npcLv": [ + 507, + 507, + 507, + 507, + 507, + 507 + ], + "isboss": 1, + "ghname": "npc_ghname_5", + "npcname": "jjc_npc_name_5" + }, + "20534": { + "npcId": 20534, + "attr": {}, + "npclist": "3010_204_90072#3015_204_90071#4005_204_90076#4010_204_90079#4015_204_90079#5005_204_90079", + "npcLv": [ + 507, + 507, + 507, + 507, + 507, + 507 + ], + "isboss": 1, + "ghname": "npc_ghname_6", + "npcname": "jjc_npc_name_6" + }, + "20535": { + "npcId": 20535, + "attr": {}, + "npclist": "3011_204_90072#4001_204_90071#4006_204_90076#4011_204_90079#5001_204_90079#3001_204_90079", + "npcLv": [ + 508, + 508, + 508, + 508, + 508, + 508 + ], + "isboss": 1, + "ghname": "npc_ghname_1", + "npcname": "jjc_npc_name_1" + }, + "20536": { + "npcId": 20536, + "attr": {}, + "npclist": "3012_205_90072#4002_205_90071#4007_205_90076#4012_205_90079#5002_205_90079#3002_205_90079", + "npcLv": [ + 508, + 508, + 508, + 508, + 508, + 508 + ], + "isboss": 1, + "ghname": "npc_ghname_2", + "npcname": "jjc_npc_name_2" + }, + "20537": { + "npcId": 20537, + "attr": {}, + "npclist": "3013_205_90072#4003_205_90071#4008_205_90076#4013_205_90079#5003_205_90079#3003_205_90079", + "npcLv": [ + 509, + 509, + 509, + 509, + 509, + 509 + ], + "isboss": 1, + "ghname": "npc_ghname_3", + "npcname": "jjc_npc_name_3" + }, + "20538": { + "npcId": 20538, + "attr": {}, + "npclist": "3014_206_90072#4004_206_90071#4009_206_90076#4014_206_90079#5004_206_90079#3004_206_90079", + "npcLv": [ + 509, + 509, + 509, + 509, + 509, + 509 + ], + "isboss": 1, + "ghname": "npc_ghname_4", + "npcname": "jjc_npc_name_4" + }, + "20539": { + "npcId": 20539, + "attr": {}, + "npclist": "3015_206_90072#4005_206_90071#4010_206_90076#4015_206_90079#5005_206_90079#3005_206_90079", + "npcLv": [ + 510, + 510, + 510, + 510, + 510, + 510 + ], + "isboss": 1, + "ghname": "npc_ghname_5", + "npcname": "jjc_npc_name_5" + }, + "20540": { + "npcId": 20540, + "attr": {}, + "npclist": "4001_207_90072#4006_207_90071#4011_207_90076#5001_207_90079#3001_207_90079#3006_207_90079", + "npcLv": [ + 510, + 510, + 510, + 510, + 510, + 510 + ], + "isboss": 1, + "ghname": "npc_ghname_6", + "npcname": "jjc_npc_name_6" + }, + "20541": { + "npcId": 20541, + "attr": {}, + "npclist": "4002_207_90072#4007_207_90071#4012_207_90076#5002_207_90079#3002_207_90079#3007_207_90079", + "npcLv": [ + 511, + 511, + 511, + 511, + 511, + 511 + ], + "isboss": 1, + "ghname": "npc_ghname_1", + "npcname": "jjc_npc_name_1" + }, + "20542": { + "npcId": 20542, + "attr": {}, + "npclist": "4003_224_90072#4008_224_90071#4013_224_90076#5003_224_90079#3003_224_90079#3008_224_90079", + "npcLv": [ + 511, + 511, + 511, + 511, + 511, + 511 + ], + "isboss": 1, + "ghname": "npc_ghname_2", + "npcname": "jjc_npc_name_2" + }, + "20543": { + "npcId": 20543, + "attr": {}, + "npclist": "4004_203_90072#4009_203_90071#4014_203_90076#5004_203_90079#3004_203_90079#3009_203_90079", + "npcLv": [ + 512, + 512, + 512, + 512, + 512, + 512 + ], + "isboss": 1, + "ghname": "npc_ghname_3", + "npcname": "jjc_npc_name_3" + }, + "20544": { + "npcId": 20544, + "attr": {}, + "npclist": "4005_203_90072#4010_203_90071#4015_203_90076#5005_203_90079#3005_203_90079#3010_203_90079", + "npcLv": [ + 512, + 512, + 512, + 512, + 512, + 512 + ], + "isboss": 1, + "ghname": "npc_ghname_4", + "npcname": "jjc_npc_name_4" + }, + "20545": { + "npcId": 20545, + "attr": {}, + "npclist": "4006_204_90072#4011_204_90071#5001_204_90076#3001_204_90079#3006_204_90079#3011_204_90079", + "npcLv": [ + 513, + 513, + 513, + 513, + 513, + 513 + ], + "isboss": 1, + "ghname": "npc_ghname_5", + "npcname": "jjc_npc_name_5" + }, + "20546": { + "npcId": 20546, + "attr": {}, + "npclist": "4007_204_90072#4012_204_90071#5002_204_90076#3002_204_90079#3007_204_90079#3012_204_90079", + "npcLv": [ + 513, + 513, + 513, + 513, + 513, + 513 + ], + "isboss": 1, + "ghname": "npc_ghname_6", + "npcname": "jjc_npc_name_6" + }, + "20547": { + "npcId": 20547, + "attr": {}, + "npclist": "4008_205_90072#4013_205_90071#5003_205_90076#3003_205_90079#3008_205_90079#3013_205_90079", + "npcLv": [ + 514, + 514, + 514, + 514, + 514, + 514 + ], + "isboss": 1, + "ghname": "npc_ghname_1", + "npcname": "jjc_npc_name_1" + }, + "20548": { + "npcId": 20548, + "attr": {}, + "npclist": "4009_205_90072#4014_205_90071#5004_205_90076#3004_205_90079#3009_205_90079#3014_205_90079", + "npcLv": [ + 514, + 514, + 514, + 514, + 514, + 514 + ], + "isboss": 1, + "ghname": "npc_ghname_2", + "npcname": "jjc_npc_name_2" + }, + "20549": { + "npcId": 20549, + "attr": {}, + "npclist": "4010_206_90072#4015_206_90071#5005_206_90076#3005_206_90079#3010_206_90079#3015_206_90079", + "npcLv": [ + 515, + 515, + 515, + 515, + 515, + 515 + ], + "isboss": 1, + "ghname": "npc_ghname_3", + "npcname": "jjc_npc_name_3" + }, + "20550": { + "npcId": 20550, + "attr": {}, + "npclist": "4011_206_90072#5001_206_90071#3001_206_90076#3006_206_90079#3011_206_90079#4001_206_90079", + "npcLv": [ + 515, + 515, + 515, + 515, + 515, + 515 + ], + "isboss": 1, + "ghname": "npc_ghname_4", + "npcname": "jjc_npc_name_4" + }, + "20551": { + "npcId": 20551, + "attr": {}, + "npclist": "4012_207_90072#5002_207_90071#3002_207_90076#3007_207_90079#3012_207_90079#4002_207_90079", + "npcLv": [ + 516, + 516, + 516, + 516, + 516, + 516 + ], + "isboss": 1, + "ghname": "npc_ghname_5", + "npcname": "jjc_npc_name_5" + }, + "20552": { + "npcId": 20552, + "attr": {}, + "npclist": "4013_207_90072#5003_207_90071#3003_207_90076#3008_207_90079#3013_207_90079#4003_207_90079", + "npcLv": [ + 516, + 516, + 516, + 516, + 516, + 516 + ], + "isboss": 1, + "ghname": "npc_ghname_6", + "npcname": "jjc_npc_name_6" + }, + "20553": { + "npcId": 20553, + "attr": {}, + "npclist": "4014_208_90072#5004_208_90071#3004_208_90076#3009_208_90079#3014_208_90079#4004_208_90079", + "npcLv": [ + 517, + 517, + 517, + 517, + 517, + 517 + ], + "isboss": 1, + "ghname": "npc_ghname_1", + "npcname": "jjc_npc_name_1" + }, + "20554": { + "npcId": 20554, + "attr": {}, + "npclist": "4015_225_90072#5005_225_90071#3005_225_90076#3010_225_90079#3015_225_90079#4005_225_90079", + "npcLv": [ + 517, + 517, + 517, + 517, + 517, + 517 + ], + "isboss": 1, + "ghname": "npc_ghname_2", + "npcname": "jjc_npc_name_2" + }, + "20555": { + "npcId": 20555, + "attr": {}, + "npclist": "5001_203_90072#3001_203_90071#3006_203_90076#3011_203_90079#4001_203_90079#4006_203_90079", + "npcLv": [ + 518, + 518, + 518, + 518, + 518, + 518 + ], + "isboss": 1, + "ghname": "npc_ghname_3", + "npcname": "jjc_npc_name_3" + }, + "20556": { + "npcId": 20556, + "attr": {}, + "npclist": "5002_204_90072#3002_204_90071#3007_204_90076#3012_204_90079#4002_204_90079#4007_204_90079", + "npcLv": [ + 518, + 518, + 518, + 518, + 518, + 518 + ], + "isboss": 1, + "ghname": "npc_ghname_4", + "npcname": "jjc_npc_name_4" + }, + "20557": { + "npcId": 20557, + "attr": {}, + "npclist": "5003_204_90072#3003_204_90071#3008_204_90076#3013_204_90079#4003_204_90079#4008_204_90079", + "npcLv": [ + 519, + 519, + 519, + 519, + 519, + 519 + ], + "isboss": 1, + "ghname": "npc_ghname_5", + "npcname": "jjc_npc_name_5" + }, + "20558": { + "npcId": 20558, + "attr": {}, + "npclist": "5004_205_90072#3004_205_90071#3009_205_90076#3014_205_90079#4004_205_90079#4009_205_90079", + "npcLv": [ + 519, + 519, + 519, + 519, + 519, + 519 + ], + "isboss": 1, + "ghname": "npc_ghname_6", + "npcname": "jjc_npc_name_6" + }, + "20559": { + "npcId": 20559, + "attr": {}, + "npclist": "5005_205_90072#3005_205_90071#3010_205_90076#3015_205_90079#4005_205_90079#4010_205_90079", + "npcLv": [ + 520, + 520, + 520, + 520, + 520, + 520 + ], + "isboss": 1, + "ghname": "npc_ghname_1", + "npcname": "jjc_npc_name_1" + }, + "20560": { + "npcId": 20560, + "attr": {}, + "npclist": "3001_206_90072#3006_206_90071#3011_206_90076#4001_206_90079#4006_206_90079#4011_206_90079", + "npcLv": [ + 520, + 520, + 520, + 520, + 520, + 520 + ], + "isboss": 1, + "ghname": "npc_ghname_2", + "npcname": "jjc_npc_name_2" + }, + "20561": { + "npcId": 20561, + "attr": {}, + "npclist": "3002_206_90072#3007_206_90071#3012_206_90076#4002_206_90079#4007_206_90079#4012_206_90079", + "npcLv": [ + 521, + 521, + 521, + 521, + 521, + 521 + ], + "isboss": 1, + "ghname": "npc_ghname_3", + "npcname": "jjc_npc_name_3" + }, + "20562": { + "npcId": 20562, + "attr": {}, + "npclist": "3003_207_90072#3008_207_90071#3013_207_90076#4003_207_90079#4008_207_90079#4013_207_90079", + "npcLv": [ + 521, + 521, + 521, + 521, + 521, + 521 + ], + "isboss": 1, + "ghname": "npc_ghname_4", + "npcname": "jjc_npc_name_4" + }, + "20563": { + "npcId": 20563, + "attr": {}, + "npclist": "3004_207_90072#3009_207_90071#3014_207_90076#4004_207_90079#4009_207_90079#4014_207_90079", + "npcLv": [ + 522, + 522, + 522, + 522, + 522, + 522 + ], + "isboss": 1, + "ghname": "npc_ghname_5", + "npcname": "jjc_npc_name_5" + }, + "20564": { + "npcId": 20564, + "attr": {}, + "npclist": "3005_208_90072#3010_208_90071#3015_208_90076#4005_208_90079#4010_208_90079#4015_208_90079", + "npcLv": [ + 522, + 522, + 522, + 522, + 522, + 522 + ], + "isboss": 1, + "ghname": "npc_ghname_6", + "npcname": "jjc_npc_name_6" + }, + "20565": { + "npcId": 20565, + "attr": {}, + "npclist": "3006_208_90072#3011_208_90071#4001_208_90076#4006_208_90079#4011_208_90079#5001_208_90079", + "npcLv": [ + 523, + 523, + 523, + 523, + 523, + 523 + ], + "isboss": 1, + "ghname": "npc_ghname_1", + "npcname": "jjc_npc_name_1" + }, + "20566": { + "npcId": 20566, + "attr": {}, + "npclist": "3007_226_90072#3012_226_90071#4002_226_90076#4007_226_90079#4012_226_90079#5002_226_90079", + "npcLv": [ + 523, + 523, + 523, + 523, + 523, + 523 + ], + "isboss": 1, + "ghname": "npc_ghname_2", + "npcname": "jjc_npc_name_2" + }, + "20567": { + "npcId": 20567, + "attr": {}, + "npclist": "3008_204_90072#3013_204_90071#4003_204_90076#4008_204_90079#4013_204_90079#5003_204_90079", + "npcLv": [ + 524, + 524, + 524, + 524, + 524, + 524 + ], + "isboss": 1, + "ghname": "npc_ghname_3", + "npcname": "jjc_npc_name_3" + }, + "20568": { + "npcId": 20568, + "attr": {}, + "npclist": "3009_204_90072#3014_204_90071#4004_204_90076#4009_204_90079#4014_204_90079#5004_204_90079", + "npcLv": [ + 524, + 524, + 524, + 524, + 524, + 524 + ], + "isboss": 1, + "ghname": "npc_ghname_4", + "npcname": "jjc_npc_name_4" + }, + "20569": { + "npcId": 20569, + "attr": {}, + "npclist": "3010_205_90072#3015_205_90071#4005_205_90076#4010_205_90079#4015_205_90079#5005_205_90079", + "npcLv": [ + 525, + 525, + 525, + 525, + 525, + 525 + ], + "isboss": 1, + "ghname": "npc_ghname_5", + "npcname": "jjc_npc_name_5" + }, + "20570": { + "npcId": 20570, + "attr": {}, + "npclist": "3011_205_90072#4001_205_90071#4006_205_90076#4011_205_90079#5001_205_90079#3001_205_90079", + "npcLv": [ + 525, + 525, + 525, + 525, + 525, + 525 + ], + "isboss": 1, + "ghname": "npc_ghname_6", + "npcname": "jjc_npc_name_6" + }, + "20571": { + "npcId": 20571, + "attr": {}, + "npclist": "3012_206_90072#4002_206_90071#4007_206_90076#4012_206_90079#5002_206_90079#3002_206_90079", + "npcLv": [ + 526, + 526, + 526, + 526, + 526, + 526 + ], + "isboss": 1, + "ghname": "npc_ghname_1", + "npcname": "jjc_npc_name_1" + }, + "20572": { + "npcId": 20572, + "attr": {}, + "npclist": "3013_206_90072#4003_206_90071#4008_206_90076#4013_206_90079#5003_206_90079#3003_206_90079", + "npcLv": [ + 526, + 526, + 526, + 526, + 526, + 526 + ], + "isboss": 1, + "ghname": "npc_ghname_2", + "npcname": "jjc_npc_name_2" + }, + "20573": { + "npcId": 20573, + "attr": {}, + "npclist": "3014_207_90072#4004_207_90071#4009_207_90076#4014_207_90079#5004_207_90079#3004_207_90079", + "npcLv": [ + 527, + 527, + 527, + 527, + 527, + 527 + ], + "isboss": 1, + "ghname": "npc_ghname_3", + "npcname": "jjc_npc_name_3" + }, + "20574": { + "npcId": 20574, + "attr": {}, + "npclist": "3015_207_90072#4005_207_90071#4010_207_90076#4015_207_90079#5005_207_90079#3005_207_90079", + "npcLv": [ + 527, + 527, + 527, + 527, + 527, + 527 + ], + "isboss": 1, + "ghname": "npc_ghname_4", + "npcname": "jjc_npc_name_4" + }, + "20575": { + "npcId": 20575, + "attr": {}, + "npclist": "4001_208_90072#4006_208_90071#4011_208_90076#5001_208_90079#3001_208_90079#3006_208_90079", + "npcLv": [ + 528, + 528, + 528, + 528, + 528, + 528 + ], + "isboss": 1, + "ghname": "npc_ghname_5", + "npcname": "jjc_npc_name_5" + }, + "20576": { + "npcId": 20576, + "attr": {}, + "npclist": "4002_208_90072#4007_208_90071#4012_208_90076#5002_208_90079#3002_208_90079#3007_208_90079", + "npcLv": [ + 528, + 528, + 528, + 528, + 528, + 528 + ], + "isboss": 1, + "ghname": "npc_ghname_6", + "npcname": "jjc_npc_name_6" + }, + "20577": { + "npcId": 20577, + "attr": {}, + "npclist": "4003_209_90072#4008_209_90071#4013_209_90076#5003_209_90079#3003_209_90079#3008_209_90079", + "npcLv": [ + 529, + 529, + 529, + 529, + 529, + 529 + ], + "isboss": 1, + "ghname": "npc_ghname_1", + "npcname": "jjc_npc_name_1" + }, + "20578": { + "npcId": 20578, + "attr": {}, + "npclist": "4004_209_90072#4009_209_90071#4014_209_90076#5004_209_90079#3004_209_90079#3009_209_90079", + "npcLv": [ + 529, + 529, + 529, + 529, + 529, + 529 + ], + "isboss": 1, + "ghname": "npc_ghname_2", + "npcname": "jjc_npc_name_2" + }, + "20579": { + "npcId": 20579, + "attr": {}, + "npclist": "4005_210_90072#4010_210_90071#4015_210_90076#5005_210_90079#3005_210_90079#3010_210_90079", + "npcLv": [ + 530, + 530, + 530, + 530, + 530, + 530 + ], + "isboss": 1, + "ghname": "npc_ghname_3", + "npcname": "jjc_npc_name_3" + }, + "20580": { + "npcId": 20580, + "attr": {}, + "npclist": "4006_227_90072#4011_227_90071#5001_227_90076#3001_227_90079#3006_227_90079#3011_227_90079", + "npcLv": [ + 530, + 530, + 530, + 530, + 530, + 530 + ], + "isboss": 1, + "ghname": "npc_ghname_4", + "npcname": "jjc_npc_name_4" + }, + "20581": { + "npcId": 20581, + "attr": {}, + "npclist": "4007_205_90072#4012_205_90071#5002_205_90076#3002_205_90079#3007_205_90079#3012_205_90079", + "npcLv": [ + 531, + 531, + 531, + 531, + 531, + 531 + ], + "isboss": 1, + "ghname": "npc_ghname_5", + "npcname": "jjc_npc_name_5" + }, + "20582": { + "npcId": 20582, + "attr": {}, + "npclist": "4008_206_90072#4013_206_90071#5003_206_90076#3003_206_90079#3008_206_90079#3013_206_90079", + "npcLv": [ + 531, + 531, + 531, + 531, + 531, + 531 + ], + "isboss": 1, + "ghname": "npc_ghname_6", + "npcname": "jjc_npc_name_6" + }, + "20583": { + "npcId": 20583, + "attr": {}, + "npclist": "4009_206_90072#4014_206_90071#5004_206_90076#3004_206_90079#3009_206_90079#3014_206_90079", + "npcLv": [ + 532, + 532, + 532, + 532, + 532, + 532 + ], + "isboss": 1, + "ghname": "npc_ghname_1", + "npcname": "jjc_npc_name_1" + }, + "20584": { + "npcId": 20584, + "attr": {}, + "npclist": "4010_207_90072#4015_207_90071#5005_207_90076#3005_207_90079#3010_207_90079#3015_207_90079", + "npcLv": [ + 532, + 532, + 532, + 532, + 532, + 532 + ], + "isboss": 1, + "ghname": "npc_ghname_2", + "npcname": "jjc_npc_name_2" + }, + "20585": { + "npcId": 20585, + "attr": {}, + "npclist": "4011_207_90072#5001_207_90071#3001_207_90076#3006_207_90079#3011_207_90079#4001_207_90079", + "npcLv": [ + 533, + 533, + 533, + 533, + 533, + 533 + ], + "isboss": 1, + "ghname": "npc_ghname_3", + "npcname": "jjc_npc_name_3" + }, + "20586": { + "npcId": 20586, + "attr": {}, + "npclist": "4012_208_90072#5002_208_90071#3002_208_90076#3007_208_90079#3012_208_90079#4002_208_90079", + "npcLv": [ + 533, + 533, + 533, + 533, + 533, + 533 + ], + "isboss": 1, + "ghname": "npc_ghname_4", + "npcname": "jjc_npc_name_4" + }, + "20587": { + "npcId": 20587, + "attr": {}, + "npclist": "4013_208_90072#5003_208_90071#3003_208_90076#3008_208_90079#3013_208_90079#4003_208_90079", + "npcLv": [ + 534, + 534, + 534, + 534, + 534, + 534 + ], + "isboss": 1, + "ghname": "npc_ghname_5", + "npcname": "jjc_npc_name_5" + }, + "20588": { + "npcId": 20588, + "attr": {}, + "npclist": "4014_209_90072#5004_209_90071#3004_209_90076#3009_209_90079#3014_209_90079#4004_209_90079", + "npcLv": [ + 534, + 534, + 534, + 534, + 534, + 534 + ], + "isboss": 1, + "ghname": "npc_ghname_6", + "npcname": "jjc_npc_name_6" + }, + "20589": { + "npcId": 20589, + "attr": {}, + "npclist": "4015_209_90072#5005_209_90071#3005_209_90076#3010_209_90079#3015_209_90079#4005_209_90079", + "npcLv": [ + 535, + 535, + 535, + 535, + 535, + 535 + ], + "isboss": 1, + "ghname": "npc_ghname_1", + "npcname": "jjc_npc_name_1" + }, + "20590": { + "npcId": 20590, + "attr": {}, + "npclist": "5001_210_90072#3001_210_90071#3006_210_90076#3011_210_90079#4001_210_90079#4006_210_90079", + "npcLv": [ + 535, + 535, + 535, + 535, + 535, + 535 + ], + "isboss": 1, + "ghname": "npc_ghname_2", + "npcname": "jjc_npc_name_2" + }, + "20591": { + "npcId": 20591, + "attr": {}, + "npclist": "5002_210_90072#3002_210_90071#3007_210_90076#3012_210_90079#4002_210_90079#4007_210_90079", + "npcLv": [ + 536, + 536, + 536, + 536, + 536, + 536 + ], + "isboss": 1, + "ghname": "npc_ghname_3", + "npcname": "jjc_npc_name_3" + }, + "20592": { + "npcId": 20592, + "attr": {}, + "npclist": "5003_228_90072#3003_228_90071#3008_228_90076#3013_228_90079#4003_228_90079#4008_228_90079", + "npcLv": [ + 536, + 536, + 536, + 536, + 536, + 536 + ], + "isboss": 1, + "ghname": "npc_ghname_4", + "npcname": "jjc_npc_name_4" + }, + "20593": { + "npcId": 20593, + "attr": {}, + "npclist": "5004_206_90072#3004_206_90071#3009_206_90076#3014_206_90079#4004_206_90079#4009_206_90079", + "npcLv": [ + 537, + 537, + 537, + 537, + 537, + 537 + ], + "isboss": 1, + "ghname": "npc_ghname_5", + "npcname": "jjc_npc_name_5" + }, + "20594": { + "npcId": 20594, + "attr": {}, + "npclist": "5005_206_90072#3005_206_90071#3010_206_90076#3015_206_90079#4005_206_90079#4010_206_90079", + "npcLv": [ + 537, + 537, + 537, + 537, + 537, + 537 + ], + "isboss": 1, + "ghname": "npc_ghname_6", + "npcname": "jjc_npc_name_6" + }, + "20595": { + "npcId": 20595, + "attr": {}, + "npclist": "3001_207_90072#3006_207_90071#3011_207_90076#4001_207_90079#4006_207_90079#4011_207_90079", + "npcLv": [ + 538, + 538, + 538, + 538, + 538, + 538 + ], + "isboss": 1, + "ghname": "npc_ghname_1", + "npcname": "jjc_npc_name_1" + }, + "20596": { + "npcId": 20596, + "attr": {}, + "npclist": "3002_207_90072#3007_207_90071#3012_207_90076#4002_207_90079#4007_207_90079#4012_207_90079", + "npcLv": [ + 538, + 538, + 538, + 538, + 538, + 538 + ], + "isboss": 1, + "ghname": "npc_ghname_2", + "npcname": "jjc_npc_name_2" + }, + "20597": { + "npcId": 20597, + "attr": {}, + "npclist": "3003_208_90072#3008_208_90071#3013_208_90076#4003_208_90079#4008_208_90079#4013_208_90079", + "npcLv": [ + 539, + 539, + 539, + 539, + 539, + 539 + ], + "isboss": 1, + "ghname": "npc_ghname_3", + "npcname": "jjc_npc_name_3" + }, + "20598": { + "npcId": 20598, + "attr": {}, + "npclist": "3004_208_90072#3009_208_90071#3014_208_90076#4004_208_90079#4009_208_90079#4014_208_90079", + "npcLv": [ + 539, + 539, + 539, + 539, + 539, + 539 + ], + "isboss": 1, + "ghname": "npc_ghname_4", + "npcname": "jjc_npc_name_4" + }, + "20599": { + "npcId": 20599, + "attr": {}, + "npclist": "3005_209_90072#3010_209_90071#3015_209_90076#4005_209_90079#4010_209_90079#4015_209_90079", + "npcLv": [ + 540, + 540, + 540, + 540, + 540, + 540 + ], + "isboss": 1, + "ghname": "npc_ghname_5", + "npcname": "jjc_npc_name_5" + }, + "20600": { + "npcId": 20600, + "attr": {}, + "npclist": "3006_209_90072#3011_209_90071#4001_209_90076#4006_209_90079#4011_209_90079#5001_209_90079", + "npcLv": [ + 540, + 540, + 540, + 540, + 540, + 540 + ], + "isboss": 1, + "ghname": "npc_ghname_6", + "npcname": "jjc_npc_name_6" + }, + "20601": { + "npcId": 20601, + "attr": {}, + "npclist": "3007_210_90072#3012_210_90071#4002_210_90076#4007_210_90079#4012_210_90079#5002_210_90079", + "npcLv": [ + 541, + 541, + 541, + 541, + 541, + 541 + ], + "isboss": 1, + "ghname": "npc_ghname_1", + "npcname": "jjc_npc_name_1" + }, + "20602": { + "npcId": 20602, + "attr": {}, + "npclist": "3008_210_90072#3013_210_90071#4003_210_90076#4008_210_90079#4013_210_90079#5003_210_90079", + "npcLv": [ + 541, + 541, + 541, + 541, + 541, + 541 + ], + "isboss": 1, + "ghname": "npc_ghname_2", + "npcname": "jjc_npc_name_2" + }, + "20603": { + "npcId": 20603, + "attr": {}, + "npclist": "3009_211_90072#3014_211_90071#4004_211_90076#4009_211_90079#4014_211_90079#5004_211_90079", + "npcLv": [ + 542, + 542, + 542, + 542, + 542, + 542 + ], + "isboss": 1, + "ghname": "npc_ghname_3", + "npcname": "jjc_npc_name_3" + }, + "20604": { + "npcId": 20604, + "attr": {}, + "npclist": "3010_229_90072#3015_229_90071#4005_229_90076#4010_229_90079#4015_229_90079#5005_229_90079", + "npcLv": [ + 542, + 542, + 542, + 542, + 542, + 542 + ], + "isboss": 1, + "ghname": "npc_ghname_4", + "npcname": "jjc_npc_name_4" + }, + "20605": { + "npcId": 20605, + "attr": {}, + "npclist": "3011_206_90072#4001_206_90071#4006_206_90076#4011_206_90079#5001_206_90079#3001_206_90079", + "npcLv": [ + 543, + 543, + 543, + 543, + 543, + 543 + ], + "isboss": 1, + "ghname": "npc_ghname_5", + "npcname": "jjc_npc_name_5" + }, + "20606": { + "npcId": 20606, + "attr": {}, + "npclist": "3012_207_90072#4002_207_90071#4007_207_90076#4012_207_90079#5002_207_90079#3002_207_90079", + "npcLv": [ + 543, + 543, + 543, + 543, + 543, + 543 + ], + "isboss": 1, + "ghname": "npc_ghname_6", + "npcname": "jjc_npc_name_6" + }, + "20607": { + "npcId": 20607, + "attr": {}, + "npclist": "3013_207_90072#4003_207_90071#4008_207_90076#4013_207_90079#5003_207_90079#3003_207_90079", + "npcLv": [ + 544, + 544, + 544, + 544, + 544, + 544 + ], + "isboss": 1, + "ghname": "npc_ghname_1", + "npcname": "jjc_npc_name_1" + }, + "20608": { + "npcId": 20608, + "attr": {}, + "npclist": "3014_208_90072#4004_208_90071#4009_208_90076#4014_208_90079#5004_208_90079#3004_208_90079", + "npcLv": [ + 544, + 544, + 544, + 544, + 544, + 544 + ], + "isboss": 1, + "ghname": "npc_ghname_2", + "npcname": "jjc_npc_name_2" + }, + "20609": { + "npcId": 20609, + "attr": {}, + "npclist": "3015_208_90072#4005_208_90071#4010_208_90076#4015_208_90079#5005_208_90079#3005_208_90079", + "npcLv": [ + 545, + 545, + 545, + 545, + 545, + 545 + ], + "isboss": 1, + "ghname": "npc_ghname_3", + "npcname": "jjc_npc_name_3" + }, + "20610": { + "npcId": 20610, + "attr": {}, + "npclist": "4001_209_90072#4006_209_90071#4011_209_90076#5001_209_90079#3001_209_90079#3006_209_90079", + "npcLv": [ + 545, + 545, + 545, + 545, + 545, + 545 + ], + "isboss": 1, + "ghname": "npc_ghname_4", + "npcname": "jjc_npc_name_4" + }, + "20611": { + "npcId": 20611, + "attr": {}, + "npclist": "4002_209_90072#4007_209_90071#4012_209_90076#5002_209_90079#3002_209_90079#3007_209_90079", + "npcLv": [ + 546, + 546, + 546, + 546, + 546, + 546 + ], + "isboss": 1, + "ghname": "npc_ghname_5", + "npcname": "jjc_npc_name_5" + }, + "20612": { + "npcId": 20612, + "attr": {}, + "npclist": "4003_210_90072#4008_210_90071#4013_210_90076#5003_210_90079#3003_210_90079#3008_210_90079", + "npcLv": [ + 546, + 546, + 546, + 546, + 546, + 546 + ], + "isboss": 1, + "ghname": "npc_ghname_6", + "npcname": "jjc_npc_name_6" + }, + "20613": { + "npcId": 20613, + "attr": {}, + "npclist": "4004_210_90072#4009_210_90071#4014_210_90076#5004_210_90079#3004_210_90079#3009_210_90079", + "npcLv": [ + 547, + 547, + 547, + 547, + 547, + 547 + ], + "isboss": 1, + "ghname": "npc_ghname_1", + "npcname": "jjc_npc_name_1" + }, + "20614": { + "npcId": 20614, + "attr": {}, + "npclist": "4005_211_90072#4010_211_90071#4015_211_90076#5005_211_90079#3005_211_90079#3010_211_90079", + "npcLv": [ + 547, + 547, + 547, + 547, + 547, + 547 + ], + "isboss": 1, + "ghname": "npc_ghname_2", + "npcname": "jjc_npc_name_2" + }, + "20615": { + "npcId": 20615, + "attr": {}, + "npclist": "4006_211_90072#4011_211_90071#5001_211_90076#3001_211_90079#3006_211_90079#3011_211_90079", + "npcLv": [ + 548, + 548, + 548, + 548, + 548, + 548 + ], + "isboss": 1, + "ghname": "npc_ghname_3", + "npcname": "jjc_npc_name_3" + }, + "20616": { + "npcId": 20616, + "attr": {}, + "npclist": "4007_230_90072#4012_230_90071#5002_230_90076#3002_230_90079#3007_230_90079#3012_230_90079", + "npcLv": [ + 548, + 548, + 548, + 548, + 548, + 548 + ], + "isboss": 1, + "ghname": "npc_ghname_4", + "npcname": "jjc_npc_name_4" + }, + "20617": { + "npcId": 20617, + "attr": {}, + "npclist": "4008_206_90072#4013_206_90071#5003_206_90076#3003_206_90079#3008_206_90079#3013_206_90079", + "npcLv": [ + 549, + 549, + 549, + 549, + 549, + 549 + ], + "isboss": 1, + "ghname": "npc_ghname_5", + "npcname": "jjc_npc_name_5" + }, + "20618": { + "npcId": 20618, + "attr": {}, + "npclist": "4009_207_90072#4014_207_90071#5004_207_90076#3004_207_90079#3009_207_90079#3014_207_90079", + "npcLv": [ + 549, + 549, + 549, + 549, + 549, + 549 + ], + "isboss": 1, + "ghname": "npc_ghname_6", + "npcname": "jjc_npc_name_6" + }, + "20619": { + "npcId": 20619, + "attr": {}, + "npclist": "4010_207_90072#4015_207_90071#5005_207_90076#3005_207_90079#3010_207_90079#3015_207_90079", + "npcLv": [ + 550, + 550, + 550, + 550, + 550, + 550 + ], + "isboss": 1, + "ghname": "npc_ghname_1", + "npcname": "jjc_npc_name_1" + }, + "20620": { + "npcId": 20620, + "attr": {}, + "npclist": "4011_208_90072#5001_208_90071#3001_208_90076#3006_208_90079#3011_208_90079#4001_208_90079", + "npcLv": [ + 550, + 550, + 550, + 550, + 550, + 550 + ], + "isboss": 1, + "ghname": "npc_ghname_2", + "npcname": "jjc_npc_name_2" + }, + "20621": { + "npcId": 20621, + "attr": {}, + "npclist": "4012_208_90072#5002_208_90071#3002_208_90076#3007_208_90079#3012_208_90079#4002_208_90079", + "npcLv": [ + 551, + 551, + 551, + 551, + 551, + 551 + ], + "isboss": 1, + "ghname": "npc_ghname_3", + "npcname": "jjc_npc_name_3" + }, + "20622": { + "npcId": 20622, + "attr": {}, + "npclist": "4013_209_90072#5003_209_90071#3003_209_90076#3008_209_90079#3013_209_90079#4003_209_90079", + "npcLv": [ + 551, + 551, + 551, + 551, + 551, + 551 + ], + "isboss": 1, + "ghname": "npc_ghname_4", + "npcname": "jjc_npc_name_4" + }, + "20623": { + "npcId": 20623, + "attr": {}, + "npclist": "4014_209_90072#5004_209_90071#3004_209_90076#3009_209_90079#3014_209_90079#4004_209_90079", + "npcLv": [ + 552, + 552, + 552, + 552, + 552, + 552 + ], + "isboss": 1, + "ghname": "npc_ghname_5", + "npcname": "jjc_npc_name_5" + }, + "20624": { + "npcId": 20624, + "attr": {}, + "npclist": "4015_210_90072#5005_210_90071#3005_210_90076#3010_210_90079#3015_210_90079#4005_210_90079", + "npcLv": [ + 552, + 552, + 552, + 552, + 552, + 552 + ], + "isboss": 1, + "ghname": "npc_ghname_6", + "npcname": "jjc_npc_name_6" + }, + "20625": { + "npcId": 20625, + "attr": {}, + "npclist": "5001_210_90072#3001_210_90071#3006_210_90076#3011_210_90079#4001_210_90079#4006_210_90079", + "npcLv": [ + 553, + 553, + 553, + 553, + 553, + 553 + ], + "isboss": 1, + "ghname": "npc_ghname_1", + "npcname": "jjc_npc_name_1" + }, + "20626": { + "npcId": 20626, + "attr": {}, + "npclist": "5002_211_90072#3002_211_90071#3007_211_90076#3012_211_90079#4002_211_90079#4007_211_90079", + "npcLv": [ + 553, + 553, + 553, + 553, + 553, + 553 + ], + "isboss": 1, + "ghname": "npc_ghname_2", + "npcname": "jjc_npc_name_2" + }, + "20627": { + "npcId": 20627, + "attr": {}, + "npclist": "5003_211_90072#3003_211_90071#3008_211_90076#3013_211_90079#4003_211_90079#4008_211_90079", + "npcLv": [ + 554, + 554, + 554, + 554, + 554, + 554 + ], + "isboss": 1, + "ghname": "npc_ghname_3", + "npcname": "jjc_npc_name_3" + }, + "20628": { + "npcId": 20628, + "attr": {}, + "npclist": "5004_212_90072#3004_212_90071#3009_212_90076#3014_212_90079#4004_212_90079#4009_212_90079", + "npcLv": [ + 554, + 554, + 554, + 554, + 554, + 554 + ], + "isboss": 1, + "ghname": "npc_ghname_4", + "npcname": "jjc_npc_name_4" + }, + "20629": { + "npcId": 20629, + "attr": {}, + "npclist": "5005_212_90072#3005_212_90071#3010_212_90076#3015_212_90079#4005_212_90079#4010_212_90079", + "npcLv": [ + 555, + 555, + 555, + 555, + 555, + 555 + ], + "isboss": 1, + "ghname": "npc_ghname_5", + "npcname": "jjc_npc_name_5" + }, + "20630": { + "npcId": 20630, + "attr": {}, + "npclist": "3001_231_90072#3006_231_90071#3011_231_90076#4001_231_90079#4006_231_90079#4011_231_90079", + "npcLv": [ + 555, + 555, + 555, + 555, + 555, + 555 + ], + "isboss": 1, + "ghname": "npc_ghname_6", + "npcname": "jjc_npc_name_6" + }, + "20631": { + "npcId": 20631, + "attr": {}, + "npclist": "3002_207_90072#3007_207_90071#3012_207_90076#4002_207_90079#4007_207_90079#4012_207_90079", + "npcLv": [ + 556, + 556, + 556, + 556, + 556, + 556 + ], + "isboss": 1, + "ghname": "npc_ghname_1", + "npcname": "jjc_npc_name_1" + }, + "20632": { + "npcId": 20632, + "attr": {}, + "npclist": "3003_207_90072#3008_207_90071#3013_207_90076#4003_207_90079#4008_207_90079#4013_207_90079", + "npcLv": [ + 556, + 556, + 556, + 556, + 556, + 556 + ], + "isboss": 1, + "ghname": "npc_ghname_2", + "npcname": "jjc_npc_name_2" + }, + "20633": { + "npcId": 20633, + "attr": {}, + "npclist": "3004_208_90072#3009_208_90071#3014_208_90076#4004_208_90079#4009_208_90079#4014_208_90079", + "npcLv": [ + 557, + 557, + 557, + 557, + 557, + 557 + ], + "isboss": 1, + "ghname": "npc_ghname_3", + "npcname": "jjc_npc_name_3" + }, + "20634": { + "npcId": 20634, + "attr": {}, + "npclist": "3005_208_90072#3010_208_90071#3015_208_90076#4005_208_90079#4010_208_90079#4015_208_90079", + "npcLv": [ + 557, + 557, + 557, + 557, + 557, + 557 + ], + "isboss": 1, + "ghname": "npc_ghname_4", + "npcname": "jjc_npc_name_4" + }, + "20635": { + "npcId": 20635, + "attr": {}, + "npclist": "3006_209_90072#3011_209_90071#4001_209_90076#4006_209_90079#4011_209_90079#5001_209_90079", + "npcLv": [ + 558, + 558, + 558, + 558, + 558, + 558 + ], + "isboss": 1, + "ghname": "npc_ghname_5", + "npcname": "jjc_npc_name_5" + }, + "20636": { + "npcId": 20636, + "attr": {}, + "npclist": "3007_209_90072#3012_209_90071#4002_209_90076#4007_209_90079#4012_209_90079#5002_209_90079", + "npcLv": [ + 558, + 558, + 558, + 558, + 558, + 558 + ], + "isboss": 1, + "ghname": "npc_ghname_6", + "npcname": "jjc_npc_name_6" + }, + "20637": { + "npcId": 20637, + "attr": {}, + "npclist": "3008_210_90072#3013_210_90071#4003_210_90076#4008_210_90079#4013_210_90079#5003_210_90079", + "npcLv": [ + 559, + 559, + 559, + 559, + 559, + 559 + ], + "isboss": 1, + "ghname": "npc_ghname_1", + "npcname": "jjc_npc_name_1" + }, + "20638": { + "npcId": 20638, + "attr": {}, + "npclist": "3009_210_90072#3014_210_90071#4004_210_90076#4009_210_90079#4014_210_90079#5004_210_90079", + "npcLv": [ + 559, + 559, + 559, + 559, + 559, + 559 + ], + "isboss": 1, + "ghname": "npc_ghname_2", + "npcname": "jjc_npc_name_2" + }, + "20639": { + "npcId": 20639, + "attr": {}, + "npclist": "3010_211_90072#3015_211_90071#4005_211_90076#4010_211_90079#4015_211_90079#5005_211_90079", + "npcLv": [ + 560, + 560, + 560, + 560, + 560, + 560 + ], + "isboss": 1, + "ghname": "npc_ghname_3", + "npcname": "jjc_npc_name_3" + }, + "20640": { + "npcId": 20640, + "attr": {}, + "npclist": "3011_211_90072#4001_211_90071#4006_211_90076#4011_211_90079#5001_211_90079#3001_211_90079", + "npcLv": [ + 560, + 560, + 560, + 560, + 560, + 560 + ], + "isboss": 1, + "ghname": "npc_ghname_4", + "npcname": "jjc_npc_name_4" + }, + "20641": { + "npcId": 20641, + "attr": {}, + "npclist": "3012_212_90072#4002_212_90071#4007_212_90076#4012_212_90079#5002_212_90079#3002_212_90079", + "npcLv": [ + 561, + 561, + 561, + 561, + 561, + 561 + ], + "isboss": 1, + "ghname": "npc_ghname_5", + "npcname": "jjc_npc_name_5" + }, + "20642": { + "npcId": 20642, + "attr": {}, + "npclist": "3013_212_90072#4003_212_90071#4008_212_90076#4013_212_90079#5003_212_90079#3003_212_90079", + "npcLv": [ + 561, + 561, + 561, + 561, + 561, + 561 + ], + "isboss": 1, + "ghname": "npc_ghname_6", + "npcname": "jjc_npc_name_6" + }, + "20643": { + "npcId": 20643, + "attr": {}, + "npclist": "3014_213_90072#4004_213_90071#4009_213_90076#4014_213_90079#5004_213_90079#3004_213_90079", + "npcLv": [ + 562, + 562, + 562, + 562, + 562, + 562 + ], + "isboss": 1, + "ghname": "npc_ghname_1", + "npcname": "jjc_npc_name_1" + }, + "20644": { + "npcId": 20644, + "attr": {}, + "npclist": "3015_213_90072#4005_213_90071#4010_213_90076#4015_213_90079#5005_213_90079#3005_213_90079", + "npcLv": [ + 562, + 562, + 562, + 562, + 562, + 562 + ], + "isboss": 1, + "ghname": "npc_ghname_2", + "npcname": "jjc_npc_name_2" + }, + "20645": { + "npcId": 20645, + "attr": {}, + "npclist": "4001_214_90072#4006_214_90071#4011_214_90076#5001_214_90079#3001_214_90079#3006_214_90079", + "npcLv": [ + 563, + 563, + 563, + 563, + 563, + 563 + ], + "isboss": 1, + "ghname": "npc_ghname_3", + "npcname": "jjc_npc_name_3" + }, + "20646": { + "npcId": 20646, + "attr": {}, + "npclist": "4002_232_90072#4007_232_90071#4012_232_90076#5002_232_90079#3002_232_90079#3007_232_90079", + "npcLv": [ + 563, + 563, + 563, + 563, + 563, + 563 + ], + "isboss": 1, + "ghname": "npc_ghname_4", + "npcname": "jjc_npc_name_4" + }, + "20647": { + "npcId": 20647, + "attr": {}, + "npclist": "4003_207_90072#4008_207_90071#4013_207_90076#5003_207_90079#3003_207_90079#3008_207_90079", + "npcLv": [ + 564, + 564, + 564, + 564, + 564, + 564 + ], + "isboss": 1, + "ghname": "npc_ghname_5", + "npcname": "jjc_npc_name_5" + }, + "20648": { + "npcId": 20648, + "attr": {}, + "npclist": "4004_208_90072#4009_208_90071#4014_208_90076#5004_208_90079#3004_208_90079#3009_208_90079", + "npcLv": [ + 564, + 564, + 564, + 564, + 564, + 564 + ], + "isboss": 1, + "ghname": "npc_ghname_6", + "npcname": "jjc_npc_name_6" + }, + "20649": { + "npcId": 20649, + "attr": {}, + "npclist": "4005_208_90072#4010_208_90071#4015_208_90076#5005_208_90079#3005_208_90079#3010_208_90079", + "npcLv": [ + 565, + 565, + 565, + 565, + 565, + 565 + ], + "isboss": 1, + "ghname": "npc_ghname_1", + "npcname": "jjc_npc_name_1" + }, + "20650": { + "npcId": 20650, + "attr": {}, + "npclist": "4006_209_90072#4011_209_90071#5001_209_90076#3001_209_90079#3006_209_90079#3011_209_90079", + "npcLv": [ + 565, + 565, + 565, + 565, + 565, + 565 + ], + "isboss": 1, + "ghname": "npc_ghname_2", + "npcname": "jjc_npc_name_2" + }, + "20651": { + "npcId": 20651, + "attr": {}, + "npclist": "4007_209_90072#4012_209_90071#5002_209_90076#3002_209_90079#3007_209_90079#3012_209_90079", + "npcLv": [ + 566, + 566, + 566, + 566, + 566, + 566 + ], + "isboss": 1, + "ghname": "npc_ghname_3", + "npcname": "jjc_npc_name_3" + }, + "20652": { + "npcId": 20652, + "attr": {}, + "npclist": "4008_210_90072#4013_210_90071#5003_210_90076#3003_210_90079#3008_210_90079#3013_210_90079", + "npcLv": [ + 566, + 566, + 566, + 566, + 566, + 566 + ], + "isboss": 1, + "ghname": "npc_ghname_4", + "npcname": "jjc_npc_name_4" + }, + "20653": { + "npcId": 20653, + "attr": {}, + "npclist": "4009_210_90072#4014_210_90071#5004_210_90076#3004_210_90079#3009_210_90079#3014_210_90079", + "npcLv": [ + 567, + 567, + 567, + 567, + 567, + 567 + ], + "isboss": 1, + "ghname": "npc_ghname_5", + "npcname": "jjc_npc_name_5" + }, + "20654": { + "npcId": 20654, + "attr": {}, + "npclist": "4010_211_90072#4015_211_90071#5005_211_90076#3005_211_90079#3010_211_90079#3015_211_90079", + "npcLv": [ + 567, + 567, + 567, + 567, + 567, + 567 + ], + "isboss": 1, + "ghname": "npc_ghname_6", + "npcname": "jjc_npc_name_6" + }, + "20655": { + "npcId": 20655, + "attr": {}, + "npclist": "4011_211_90072#5001_211_90071#3001_211_90076#3006_211_90079#3011_211_90079#4001_211_90079", + "npcLv": [ + 568, + 568, + 568, + 568, + 568, + 568 + ], + "isboss": 1, + "ghname": "npc_ghname_1", + "npcname": "jjc_npc_name_1" + }, + "20656": { + "npcId": 20656, + "attr": {}, + "npclist": "4012_212_90072#5002_212_90071#3002_212_90076#3007_212_90079#3012_212_90079#4002_212_90079", + "npcLv": [ + 568, + 568, + 568, + 568, + 568, + 568 + ], + "isboss": 1, + "ghname": "npc_ghname_2", + "npcname": "jjc_npc_name_2" + }, + "20657": { + "npcId": 20657, + "attr": {}, + "npclist": "4013_212_90072#5003_212_90071#3003_212_90076#3008_212_90079#3013_212_90079#4003_212_90079", + "npcLv": [ + 569, + 569, + 569, + 569, + 569, + 569 + ], + "isboss": 1, + "ghname": "npc_ghname_3", + "npcname": "jjc_npc_name_3" + }, + "20658": { + "npcId": 20658, + "attr": {}, + "npclist": "4014_213_90072#5004_213_90071#3004_213_90076#3009_213_90079#3014_213_90079#4004_213_90079", + "npcLv": [ + 569, + 569, + 569, + 569, + 569, + 569 + ], + "isboss": 1, + "ghname": "npc_ghname_4", + "npcname": "jjc_npc_name_4" + }, + "20659": { + "npcId": 20659, + "attr": {}, + "npclist": "4015_213_90072#5005_213_90071#3005_213_90076#3010_213_90079#3015_213_90079#4005_213_90079", + "npcLv": [ + 570, + 570, + 570, + 570, + 570, + 570 + ], + "isboss": 1, + "ghname": "npc_ghname_5", + "npcname": "jjc_npc_name_5" + }, + "20660": { + "npcId": 20660, + "attr": {}, + "npclist": "5001_214_90072#3001_214_90071#3006_214_90076#3011_214_90079#4001_214_90079#4006_214_90079", + "npcLv": [ + 570, + 570, + 570, + 570, + 570, + 570 + ], + "isboss": 1, + "ghname": "npc_ghname_6", + "npcname": "jjc_npc_name_6" + }, + "20661": { + "npcId": 20661, + "attr": {}, + "npclist": "5002_214_90072#3002_214_90071#3007_214_90076#3012_214_90079#4002_214_90079#4007_214_90079", + "npcLv": [ + 571, + 571, + 571, + 571, + 571, + 571 + ], + "isboss": 1, + "ghname": "npc_ghname_1", + "npcname": "jjc_npc_name_1" + }, + "20662": { + "npcId": 20662, + "attr": {}, + "npclist": "5003_233_90072#3003_233_90071#3008_233_90076#3013_233_90079#4003_233_90079#4008_233_90079", + "npcLv": [ + 571, + 571, + 571, + 571, + 571, + 571 + ], + "isboss": 1, + "ghname": "npc_ghname_2", + "npcname": "jjc_npc_name_2" + }, + "20663": { + "npcId": 20663, + "attr": {}, + "npclist": "5004_208_90072#3004_208_90071#3009_208_90076#3014_208_90079#4004_208_90079#4009_208_90079", + "npcLv": [ + 572, + 572, + 572, + 572, + 572, + 572 + ], + "isboss": 1, + "ghname": "npc_ghname_3", + "npcname": "jjc_npc_name_3" + }, + "20664": { + "npcId": 20664, + "attr": {}, + "npclist": "5005_208_90072#3005_208_90071#3010_208_90076#3015_208_90079#4005_208_90079#4010_208_90079", + "npcLv": [ + 572, + 572, + 572, + 572, + 572, + 572 + ], + "isboss": 1, + "ghname": "npc_ghname_4", + "npcname": "jjc_npc_name_4" + }, + "20665": { + "npcId": 20665, + "attr": {}, + "npclist": "3001_209_90072#3006_209_90071#3011_209_90076#4001_209_90079#4006_209_90079#4011_209_90079", + "npcLv": [ + 573, + 573, + 573, + 573, + 573, + 573 + ], + "isboss": 1, + "ghname": "npc_ghname_5", + "npcname": "jjc_npc_name_5" + }, + "20666": { + "npcId": 20666, + "attr": {}, + "npclist": "3002_209_90072#3007_209_90071#3012_209_90076#4002_209_90079#4007_209_90079#4012_209_90079", + "npcLv": [ + 573, + 573, + 573, + 573, + 573, + 573 + ], + "isboss": 1, + "ghname": "npc_ghname_6", + "npcname": "jjc_npc_name_6" + }, + "20667": { + "npcId": 20667, + "attr": {}, + "npclist": "3003_210_90072#3008_210_90071#3013_210_90076#4003_210_90079#4008_210_90079#4013_210_90079", + "npcLv": [ + 574, + 574, + 574, + 574, + 574, + 574 + ], + "isboss": 1, + "ghname": "npc_ghname_1", + "npcname": "jjc_npc_name_1" + }, + "20668": { + "npcId": 20668, + "attr": {}, + "npclist": "3004_210_90072#3009_210_90071#3014_210_90076#4004_210_90079#4009_210_90079#4014_210_90079", + "npcLv": [ + 574, + 574, + 574, + 574, + 574, + 574 + ], + "isboss": 1, + "ghname": "npc_ghname_2", + "npcname": "jjc_npc_name_2" + }, + "20669": { + "npcId": 20669, + "attr": {}, + "npclist": "3005_211_90072#3010_211_90071#3015_211_90076#4005_211_90079#4010_211_90079#4015_211_90079", + "npcLv": [ + 575, + 575, + 575, + 575, + 575, + 575 + ], + "isboss": 1, + "ghname": "npc_ghname_3", + "npcname": "jjc_npc_name_3" + }, + "20670": { + "npcId": 20670, + "attr": {}, + "npclist": "3006_211_90072#3011_211_90071#4001_211_90076#4006_211_90079#4011_211_90079#5001_211_90079", + "npcLv": [ + 575, + 575, + 575, + 575, + 575, + 575 + ], + "isboss": 1, + "ghname": "npc_ghname_4", + "npcname": "jjc_npc_name_4" + }, + "20671": { + "npcId": 20671, + "attr": {}, + "npclist": "3007_212_90072#3012_212_90071#4002_212_90076#4007_212_90079#4012_212_90079#5002_212_90079", + "npcLv": [ + 576, + 576, + 576, + 576, + 576, + 576 + ], + "isboss": 1, + "ghname": "npc_ghname_5", + "npcname": "jjc_npc_name_5" + }, + "20672": { + "npcId": 20672, + "attr": {}, + "npclist": "3008_212_90072#3013_212_90071#4003_212_90076#4008_212_90079#4013_212_90079#5003_212_90079", + "npcLv": [ + 576, + 576, + 576, + 576, + 576, + 576 + ], + "isboss": 1, + "ghname": "npc_ghname_6", + "npcname": "jjc_npc_name_6" + }, + "20673": { + "npcId": 20673, + "attr": {}, + "npclist": "3009_213_90072#3014_213_90071#4004_213_90076#4009_213_90079#4014_213_90079#5004_213_90079", + "npcLv": [ + 577, + 577, + 577, + 577, + 577, + 577 + ], + "isboss": 1, + "ghname": "npc_ghname_1", + "npcname": "jjc_npc_name_1" + }, + "20674": { + "npcId": 20674, + "attr": {}, + "npclist": "3010_213_90072#3015_213_90071#4005_213_90076#4010_213_90079#4015_213_90079#5005_213_90079", + "npcLv": [ + 577, + 577, + 577, + 577, + 577, + 577 + ], + "isboss": 1, + "ghname": "npc_ghname_2", + "npcname": "jjc_npc_name_2" + }, + "20675": { + "npcId": 20675, + "attr": {}, + "npclist": "3011_214_90072#4001_214_90071#4006_214_90076#4011_214_90079#5001_214_90079#3001_214_90079", + "npcLv": [ + 578, + 578, + 578, + 578, + 578, + 578 + ], + "isboss": 1, + "ghname": "npc_ghname_3", + "npcname": "jjc_npc_name_3" + }, + "20676": { + "npcId": 20676, + "attr": {}, + "npclist": "3012_214_90072#4002_214_90071#4007_214_90076#4012_214_90079#5002_214_90079#3002_214_90079", + "npcLv": [ + 578, + 578, + 578, + 578, + 578, + 578 + ], + "isboss": 1, + "ghname": "npc_ghname_4", + "npcname": "jjc_npc_name_4" + }, + "20677": { + "npcId": 20677, + "attr": {}, + "npclist": "3013_215_90072#4003_215_90071#4008_215_90076#4013_215_90079#5003_215_90079#3003_215_90079", + "npcLv": [ + 579, + 579, + 579, + 579, + 579, + 579 + ], + "isboss": 1, + "ghname": "npc_ghname_5", + "npcname": "jjc_npc_name_5" + }, + "20678": { + "npcId": 20678, + "attr": {}, + "npclist": "3014_215_90072#4004_215_90071#4009_215_90076#4014_215_90079#5004_215_90079#3004_215_90079", + "npcLv": [ + 579, + 579, + 579, + 579, + 579, + 579 + ], + "isboss": 1, + "ghname": "npc_ghname_6", + "npcname": "jjc_npc_name_6" + }, + "20679": { + "npcId": 20679, + "attr": {}, + "npclist": "3015_216_90072#4005_216_90071#4010_216_90076#4015_216_90079#5005_216_90079#3005_216_90079", + "npcLv": [ + 580, + 580, + 580, + 580, + 580, + 580 + ], + "isboss": 1, + "ghname": "npc_ghname_1", + "npcname": "jjc_npc_name_1" + }, + "20680": { + "npcId": 20680, + "attr": {}, + "npclist": "4001_234_90072#4006_234_90071#4011_234_90076#5001_234_90079#3001_234_90079#3006_234_90079", + "npcLv": [ + 580, + 580, + 580, + 580, + 580, + 580 + ], + "isboss": 1, + "ghname": "npc_ghname_2", + "npcname": "jjc_npc_name_2" + }, + "20681": { + "npcId": 20681, + "attr": {}, + "npclist": "4002_211_90072#4007_211_90071#4012_211_90076#5002_211_90079#3002_211_90079#3007_211_90079", + "npcLv": [ + 581, + 581, + 581, + 581, + 581, + 581 + ], + "isboss": 1, + "ghname": "npc_ghname_3", + "npcname": "jjc_npc_name_3" + }, + "20682": { + "npcId": 20682, + "attr": {}, + "npclist": "4003_212_90072#4008_212_90071#4013_212_90076#5003_212_90079#3003_212_90079#3008_212_90079", + "npcLv": [ + 581, + 581, + 581, + 581, + 581, + 581 + ], + "isboss": 1, + "ghname": "npc_ghname_4", + "npcname": "jjc_npc_name_4" + }, + "20683": { + "npcId": 20683, + "attr": {}, + "npclist": "4004_212_90072#4009_212_90071#4014_212_90076#5004_212_90079#3004_212_90079#3009_212_90079", + "npcLv": [ + 582, + 582, + 582, + 582, + 582, + 582 + ], + "isboss": 1, + "ghname": "npc_ghname_5", + "npcname": "jjc_npc_name_5" + }, + "20684": { + "npcId": 20684, + "attr": {}, + "npclist": "4005_213_90072#4010_213_90071#4015_213_90076#5005_213_90079#3005_213_90079#3010_213_90079", + "npcLv": [ + 582, + 582, + 582, + 582, + 582, + 582 + ], + "isboss": 1, + "ghname": "npc_ghname_6", + "npcname": "jjc_npc_name_6" + }, + "20685": { + "npcId": 20685, + "attr": {}, + "npclist": "4006_213_90072#4011_213_90071#5001_213_90076#3001_213_90079#3006_213_90079#3011_213_90079", + "npcLv": [ + 583, + 583, + 583, + 583, + 583, + 583 + ], + "isboss": 1, + "ghname": "npc_ghname_1", + "npcname": "jjc_npc_name_1" + }, + "20686": { + "npcId": 20686, + "attr": {}, + "npclist": "4007_214_90072#4012_214_90071#5002_214_90076#3002_214_90079#3007_214_90079#3012_214_90079", + "npcLv": [ + 583, + 583, + 583, + 583, + 583, + 583 + ], + "isboss": 1, + "ghname": "npc_ghname_2", + "npcname": "jjc_npc_name_2" + }, + "20687": { + "npcId": 20687, + "attr": {}, + "npclist": "4008_214_90072#4013_214_90071#5003_214_90076#3003_214_90079#3008_214_90079#3013_214_90079", + "npcLv": [ + 584, + 584, + 584, + 584, + 584, + 584 + ], + "isboss": 1, + "ghname": "npc_ghname_3", + "npcname": "jjc_npc_name_3" + }, + "20688": { + "npcId": 20688, + "attr": {}, + "npclist": "4009_215_90072#4014_215_90071#5004_215_90076#3004_215_90079#3009_215_90079#3014_215_90079", + "npcLv": [ + 584, + 584, + 584, + 584, + 584, + 584 + ], + "isboss": 1, + "ghname": "npc_ghname_4", + "npcname": "jjc_npc_name_4" + }, + "20689": { + "npcId": 20689, + "attr": {}, + "npclist": "4010_215_90072#4015_215_90071#5005_215_90076#3005_215_90079#3010_215_90079#3015_215_90079", + "npcLv": [ + 585, + 585, + 585, + 585, + 585, + 585 + ], + "isboss": 1, + "ghname": "npc_ghname_5", + "npcname": "jjc_npc_name_5" + }, + "20690": { + "npcId": 20690, + "attr": {}, + "npclist": "4011_216_90072#5001_216_90071#3001_216_90076#3006_216_90079#3011_216_90079#4001_216_90079", + "npcLv": [ + 585, + 585, + 585, + 585, + 585, + 585 + ], + "isboss": 1, + "ghname": "npc_ghname_6", + "npcname": "jjc_npc_name_6" + }, + "20691": { + "npcId": 20691, + "attr": {}, + "npclist": "4012_216_90072#5002_216_90071#3002_216_90076#3007_216_90079#3012_216_90079#4002_216_90079", + "npcLv": [ + 586, + 586, + 586, + 586, + 586, + 586 + ], + "isboss": 1, + "ghname": "npc_ghname_1", + "npcname": "jjc_npc_name_1" + }, + "20692": { + "npcId": 20692, + "attr": {}, + "npclist": "4013_235_90072#5003_235_90071#3003_235_90076#3008_235_90079#3013_235_90079#4003_235_90079", + "npcLv": [ + 586, + 586, + 586, + 586, + 586, + 586 + ], + "isboss": 1, + "ghname": "npc_ghname_2", + "npcname": "jjc_npc_name_2" + }, + "20693": { + "npcId": 20693, + "attr": {}, + "npclist": "4014_212_90072#5004_212_90071#3004_212_90076#3009_212_90079#3014_212_90079#4004_212_90079", + "npcLv": [ + 587, + 587, + 587, + 587, + 587, + 587 + ], + "isboss": 1, + "ghname": "npc_ghname_3", + "npcname": "jjc_npc_name_3" + }, + "20694": { + "npcId": 20694, + "attr": {}, + "npclist": "4015_212_90072#5005_212_90071#3005_212_90076#3010_212_90079#3015_212_90079#4005_212_90079", + "npcLv": [ + 587, + 587, + 587, + 587, + 587, + 587 + ], + "isboss": 1, + "ghname": "npc_ghname_4", + "npcname": "jjc_npc_name_4" + }, + "20695": { + "npcId": 20695, + "attr": {}, + "npclist": "5001_213_90072#3001_213_90071#3006_213_90076#3011_213_90079#4001_213_90079#4006_213_90079", + "npcLv": [ + 588, + 588, + 588, + 588, + 588, + 588 + ], + "isboss": 1, + "ghname": "npc_ghname_5", + "npcname": "jjc_npc_name_5" + }, + "20696": { + "npcId": 20696, + "attr": {}, + "npclist": "5002_213_90072#3002_213_90071#3007_213_90076#3012_213_90079#4002_213_90079#4007_213_90079", + "npcLv": [ + 588, + 588, + 588, + 588, + 588, + 588 + ], + "isboss": 1, + "ghname": "npc_ghname_6", + "npcname": "jjc_npc_name_6" + }, + "20697": { + "npcId": 20697, + "attr": {}, + "npclist": "5003_214_90072#3003_214_90071#3008_214_90076#3013_214_90079#4003_214_90079#4008_214_90079", + "npcLv": [ + 589, + 589, + 589, + 589, + 589, + 589 + ], + "isboss": 1, + "ghname": "npc_ghname_1", + "npcname": "jjc_npc_name_1" + }, + "20698": { + "npcId": 20698, + "attr": {}, + "npclist": "5004_214_90072#3004_214_90071#3009_214_90076#3014_214_90079#4004_214_90079#4009_214_90079", + "npcLv": [ + 589, + 589, + 589, + 589, + 589, + 589 + ], + "isboss": 1, + "ghname": "npc_ghname_2", + "npcname": "jjc_npc_name_2" + }, + "20699": { + "npcId": 20699, + "attr": {}, + "npclist": "5005_215_90072#3005_215_90071#3010_215_90076#3015_215_90079#4005_215_90079#4010_215_90079", + "npcLv": [ + 590, + 590, + 590, + 590, + 590, + 590 + ], + "isboss": 1, + "ghname": "npc_ghname_3", + "npcname": "jjc_npc_name_3" + }, + "20700": { + "npcId": 20700, + "attr": {}, + "npclist": "3001_215_90072#3006_215_90071#3011_215_90076#4001_215_90079#4006_215_90079#4011_215_90079", + "npcLv": [ + 590, + 590, + 590, + 590, + 590, + 590 + ], + "isboss": 1, + "ghname": "npc_ghname_4", + "npcname": "jjc_npc_name_4" + }, + "20701": { + "npcId": 20701, + "attr": {}, + "npclist": "3002_216_90072#3007_216_90071#3012_216_90076#4002_216_90079#4007_216_90079#4012_216_90079", + "npcLv": [ + 591, + 591, + 591, + 591, + 591, + 591 + ], + "isboss": 1, + "ghname": "npc_ghname_5", + "npcname": "jjc_npc_name_5" + }, + "20702": { + "npcId": 20702, + "attr": {}, + "npclist": "3003_216_90072#3008_216_90071#3013_216_90076#4003_216_90079#4008_216_90079#4013_216_90079", + "npcLv": [ + 591, + 591, + 591, + 591, + 591, + 591 + ], + "isboss": 1, + "ghname": "npc_ghname_6", + "npcname": "jjc_npc_name_6" + }, + "20703": { + "npcId": 20703, + "attr": {}, + "npclist": "3004_217_90072#3009_217_90071#3014_217_90076#4004_217_90079#4009_217_90079#4014_217_90079", + "npcLv": [ + 592, + 592, + 592, + 592, + 592, + 592 + ], + "isboss": 1, + "ghname": "npc_ghname_1", + "npcname": "jjc_npc_name_1" + }, + "20704": { + "npcId": 20704, + "attr": {}, + "npclist": "3005_236_90072#3010_236_90071#3015_236_90076#4005_236_90079#4010_236_90079#4015_236_90079", + "npcLv": [ + 592, + 592, + 592, + 592, + 592, + 592 + ], + "isboss": 1, + "ghname": "npc_ghname_2", + "npcname": "jjc_npc_name_2" + }, + "20705": { + "npcId": 20705, + "attr": {}, + "npclist": "3006_212_90072#3011_212_90071#4001_212_90076#4006_212_90079#4011_212_90079#5001_212_90079", + "npcLv": [ + 593, + 593, + 593, + 593, + 593, + 593 + ], + "isboss": 1, + "ghname": "npc_ghname_3", + "npcname": "jjc_npc_name_3" + }, + "20706": { + "npcId": 20706, + "attr": {}, + "npclist": "3007_213_90072#3012_213_90071#4002_213_90076#4007_213_90079#4012_213_90079#5002_213_90079", + "npcLv": [ + 593, + 593, + 593, + 593, + 593, + 593 + ], + "isboss": 1, + "ghname": "npc_ghname_4", + "npcname": "jjc_npc_name_4" + }, + "20707": { + "npcId": 20707, + "attr": {}, + "npclist": "3008_213_90072#3013_213_90071#4003_213_90076#4008_213_90079#4013_213_90079#5003_213_90079", + "npcLv": [ + 594, + 594, + 594, + 594, + 594, + 594 + ], + "isboss": 1, + "ghname": "npc_ghname_5", + "npcname": "jjc_npc_name_5" + }, + "20708": { + "npcId": 20708, + "attr": {}, + "npclist": "3009_214_90072#3014_214_90071#4004_214_90076#4009_214_90079#4014_214_90079#5004_214_90079", + "npcLv": [ + 594, + 594, + 594, + 594, + 594, + 594 + ], + "isboss": 1, + "ghname": "npc_ghname_6", + "npcname": "jjc_npc_name_6" + }, + "20709": { + "npcId": 20709, + "attr": {}, + "npclist": "3010_214_90072#3015_214_90071#4005_214_90076#4010_214_90079#4015_214_90079#5005_214_90079", + "npcLv": [ + 595, + 595, + 595, + 595, + 595, + 595 + ], + "isboss": 1, + "ghname": "npc_ghname_1", + "npcname": "jjc_npc_name_1" + }, + "20710": { + "npcId": 20710, + "attr": {}, + "npclist": "3011_215_90072#4001_215_90071#4006_215_90076#4011_215_90079#5001_215_90079#3001_215_90079", + "npcLv": [ + 595, + 595, + 595, + 595, + 595, + 595 + ], + "isboss": 1, + "ghname": "npc_ghname_2", + "npcname": "jjc_npc_name_2" + }, + "20711": { + "npcId": 20711, + "attr": {}, + "npclist": "3012_215_90072#4002_215_90071#4007_215_90076#4012_215_90079#5002_215_90079#3002_215_90079", + "npcLv": [ + 596, + 596, + 596, + 596, + 596, + 596 + ], + "isboss": 1, + "ghname": "npc_ghname_3", + "npcname": "jjc_npc_name_3" + }, + "20712": { + "npcId": 20712, + "attr": {}, + "npclist": "3013_216_90072#4003_216_90071#4008_216_90076#4013_216_90079#5003_216_90079#3003_216_90079", + "npcLv": [ + 596, + 596, + 596, + 596, + 596, + 596 + ], + "isboss": 1, + "ghname": "npc_ghname_4", + "npcname": "jjc_npc_name_4" + }, + "20713": { + "npcId": 20713, + "attr": {}, + "npclist": "3014_216_90072#4004_216_90071#4009_216_90076#4014_216_90079#5004_216_90079#3004_216_90079", + "npcLv": [ + 597, + 597, + 597, + 597, + 597, + 597 + ], + "isboss": 1, + "ghname": "npc_ghname_5", + "npcname": "jjc_npc_name_5" + }, + "20714": { + "npcId": 20714, + "attr": {}, + "npclist": "3015_217_90072#4005_217_90071#4010_217_90076#4015_217_90079#5005_217_90079#3005_217_90079", + "npcLv": [ + 597, + 597, + 597, + 597, + 597, + 597 + ], + "isboss": 1, + "ghname": "npc_ghname_6", + "npcname": "jjc_npc_name_6" + }, + "20715": { + "npcId": 20715, + "attr": {}, + "npclist": "4001_217_90072#4006_217_90071#4011_217_90076#5001_217_90079#3001_217_90079#3006_217_90079", + "npcLv": [ + 598, + 598, + 598, + 598, + 598, + 598 + ], + "isboss": 1, + "ghname": "npc_ghname_1", + "npcname": "jjc_npc_name_1" + }, + "20716": { + "npcId": 20716, + "attr": {}, + "npclist": "4002_237_90072#4007_237_90071#4012_237_90076#5002_237_90079#3002_237_90079#3007_237_90079", + "npcLv": [ + 598, + 598, + 598, + 598, + 598, + 598 + ], + "isboss": 1, + "ghname": "npc_ghname_2", + "npcname": "jjc_npc_name_2" + }, + "20717": { + "npcId": 20717, + "attr": {}, + "npclist": "4003_212_90072#4008_212_90071#4013_212_90076#5003_212_90079#3003_212_90079#3008_212_90079", + "npcLv": [ + 599, + 599, + 599, + 599, + 599, + 599 + ], + "isboss": 1, + "ghname": "npc_ghname_3", + "npcname": "jjc_npc_name_3" + }, + "20718": { + "npcId": 20718, + "attr": {}, + "npclist": "4004_212_90072#4009_212_90071#4014_212_90076#5004_212_90079#3004_212_90079#3009_212_90079", + "npcLv": [ + 599, + 599, + 599, + 599, + 599, + 599 + ], + "isboss": 1, + "ghname": "npc_ghname_4", + "npcname": "jjc_npc_name_4" + }, + "20719": { + "npcId": 20719, + "attr": {}, + "npclist": "4005_213_90072#4010_213_90071#4015_213_90076#5005_213_90079#3005_213_90079#3010_213_90079", + "npcLv": [ + 600, + 600, + 600, + 600, + 600, + 600 + ], + "isboss": 1, + "ghname": "npc_ghname_5", + "npcname": "jjc_npc_name_5" + }, + "20720": { + "npcId": 20720, + "attr": {}, + "npclist": "4006_213_90072#4011_213_90071#5001_213_90076#3001_213_90079#3006_213_90079#3011_213_90079", + "npcLv": [ + 600, + 600, + 600, + 600, + 600, + 600 + ], + "isboss": 1, + "ghname": "npc_ghname_6", + "npcname": "jjc_npc_name_6" + }, + "20721": { + "npcId": 20721, + "attr": {}, + "npclist": "4007_214_90072#4012_214_90071#5002_214_90076#3002_214_90079#3007_214_90079#3012_214_90079", + "npcLv": [ + 601, + 601, + 601, + 601, + 601, + 601 + ], + "isboss": 1, + "ghname": "npc_ghname_1", + "npcname": "jjc_npc_name_1" + }, + "20722": { + "npcId": 20722, + "attr": {}, + "npclist": "4008_214_90072#4013_214_90071#5003_214_90076#3003_214_90079#3008_214_90079#3013_214_90079", + "npcLv": [ + 601, + 601, + 601, + 601, + 601, + 601 + ], + "isboss": 1, + "ghname": "npc_ghname_2", + "npcname": "jjc_npc_name_2" + }, + "20723": { + "npcId": 20723, + "attr": {}, + "npclist": "4009_215_90072#4014_215_90071#5004_215_90076#3004_215_90079#3009_215_90079#3014_215_90079", + "npcLv": [ + 602, + 602, + 602, + 602, + 602, + 602 + ], + "isboss": 1, + "ghname": "npc_ghname_3", + "npcname": "jjc_npc_name_3" + }, + "20724": { + "npcId": 20724, + "attr": {}, + "npclist": "4010_215_90072#4015_215_90071#5005_215_90076#3005_215_90079#3010_215_90079#3015_215_90079", + "npcLv": [ + 602, + 602, + 602, + 602, + 602, + 602 + ], + "isboss": 1, + "ghname": "npc_ghname_4", + "npcname": "jjc_npc_name_4" + }, + "20725": { + "npcId": 20725, + "attr": {}, + "npclist": "4011_216_90072#5001_216_90071#3001_216_90076#3006_216_90079#3011_216_90079#4001_216_90079", + "npcLv": [ + 603, + 603, + 603, + 603, + 603, + 603 + ], + "isboss": 1, + "ghname": "npc_ghname_5", + "npcname": "jjc_npc_name_5" + }, + "20726": { + "npcId": 20726, + "attr": {}, + "npclist": "4012_216_90072#5002_216_90071#3002_216_90076#3007_216_90079#3012_216_90079#4002_216_90079", + "npcLv": [ + 603, + 603, + 603, + 603, + 603, + 603 + ], + "isboss": 1, + "ghname": "npc_ghname_6", + "npcname": "jjc_npc_name_6" + }, + "20727": { + "npcId": 20727, + "attr": {}, + "npclist": "4013_217_90072#5003_217_90071#3003_217_90076#3008_217_90079#3013_217_90079#4003_217_90079", + "npcLv": [ + 604, + 604, + 604, + 604, + 604, + 604 + ], + "isboss": 1, + "ghname": "npc_ghname_1", + "npcname": "jjc_npc_name_1" + }, + "20728": { + "npcId": 20728, + "attr": {}, + "npclist": "4014_217_90072#5004_217_90071#3004_217_90076#3009_217_90079#3014_217_90079#4004_217_90079", + "npcLv": [ + 604, + 604, + 604, + 604, + 604, + 604 + ], + "isboss": 1, + "ghname": "npc_ghname_2", + "npcname": "jjc_npc_name_2" + }, + "20729": { + "npcId": 20729, + "attr": {}, + "npclist": "4015_218_90072#5005_218_90071#3005_218_90076#3010_218_90079#3015_218_90079#4005_218_90079", + "npcLv": [ + 605, + 605, + 605, + 605, + 605, + 605 + ], + "isboss": 1, + "ghname": "npc_ghname_3", + "npcname": "jjc_npc_name_3" + }, + "20730": { + "npcId": 20730, + "attr": {}, + "npclist": "5001_238_90072#3001_238_90071#3006_238_90076#3011_238_90079#4001_238_90079#4006_238_90079", + "npcLv": [ + 605, + 605, + 605, + 605, + 605, + 605 + ], + "isboss": 1, + "ghname": "npc_ghname_4", + "npcname": "jjc_npc_name_4" + }, + "20731": { + "npcId": 20731, + "attr": {}, + "npclist": "5002_213_90072#3002_213_90071#3007_213_90076#3012_213_90079#4002_213_90079#4007_213_90079", + "npcLv": [ + 606, + 606, + 606, + 606, + 606, + 606 + ], + "isboss": 1, + "ghname": "npc_ghname_5", + "npcname": "jjc_npc_name_5" + }, + "20732": { + "npcId": 20732, + "attr": {}, + "npclist": "5003_214_90072#3003_214_90071#3008_214_90076#3013_214_90079#4003_214_90079#4008_214_90079", + "npcLv": [ + 606, + 606, + 606, + 606, + 606, + 606 + ], + "isboss": 1, + "ghname": "npc_ghname_6", + "npcname": "jjc_npc_name_6" + }, + "20733": { + "npcId": 20733, + "attr": {}, + "npclist": "5004_214_90072#3004_214_90071#3009_214_90076#3014_214_90079#4004_214_90079#4009_214_90079", + "npcLv": [ + 607, + 607, + 607, + 607, + 607, + 607 + ], + "isboss": 1, + "ghname": "npc_ghname_1", + "npcname": "jjc_npc_name_1" + }, + "20734": { + "npcId": 20734, + "attr": {}, + "npclist": "5005_215_90072#3005_215_90071#3010_215_90076#3015_215_90079#4005_215_90079#4010_215_90079", + "npcLv": [ + 607, + 607, + 607, + 607, + 607, + 607 + ], + "isboss": 1, + "ghname": "npc_ghname_2", + "npcname": "jjc_npc_name_2" + }, + "20735": { + "npcId": 20735, + "attr": {}, + "npclist": "3001_215_90072#3006_215_90071#3011_215_90076#4001_215_90079#4006_215_90079#4011_215_90079", + "npcLv": [ + 608, + 608, + 608, + 608, + 608, + 608 + ], + "isboss": 1, + "ghname": "npc_ghname_3", + "npcname": "jjc_npc_name_3" + }, + "20736": { + "npcId": 20736, + "attr": {}, + "npclist": "3002_216_90072#3007_216_90071#3012_216_90076#4002_216_90079#4007_216_90079#4012_216_90079", + "npcLv": [ + 608, + 608, + 608, + 608, + 608, + 608 + ], + "isboss": 1, + "ghname": "npc_ghname_4", + "npcname": "jjc_npc_name_4" + }, + "20737": { + "npcId": 20737, + "attr": {}, + "npclist": "3003_216_90072#3008_216_90071#3013_216_90076#4003_216_90079#4008_216_90079#4013_216_90079", + "npcLv": [ + 609, + 609, + 609, + 609, + 609, + 609 + ], + "isboss": 1, + "ghname": "npc_ghname_5", + "npcname": "jjc_npc_name_5" + }, + "20738": { + "npcId": 20738, + "attr": {}, + "npclist": "3004_217_90072#3009_217_90071#3014_217_90076#4004_217_90079#4009_217_90079#4014_217_90079", + "npcLv": [ + 609, + 609, + 609, + 609, + 609, + 609 + ], + "isboss": 1, + "ghname": "npc_ghname_6", + "npcname": "jjc_npc_name_6" + }, + "20739": { + "npcId": 20739, + "attr": {}, + "npclist": "3005_217_90072#3010_217_90071#3015_217_90076#4005_217_90079#4010_217_90079#4015_217_90079", + "npcLv": [ + 610, + 610, + 610, + 610, + 610, + 610 + ], + "isboss": 1, + "ghname": "npc_ghname_1", + "npcname": "jjc_npc_name_1" + }, + "20740": { + "npcId": 20740, + "attr": {}, + "npclist": "3006_218_90072#3011_218_90071#4001_218_90076#4006_218_90079#4011_218_90079#5001_218_90079", + "npcLv": [ + 610, + 610, + 610, + 610, + 610, + 610 + ], + "isboss": 1, + "ghname": "npc_ghname_2", + "npcname": "jjc_npc_name_2" + }, + "20741": { + "npcId": 20741, + "attr": {}, + "npclist": "3007_218_90072#3012_218_90071#4002_218_90076#4007_218_90079#4012_218_90079#5002_218_90079", + "npcLv": [ + 611, + 611, + 611, + 611, + 611, + 611 + ], + "isboss": 1, + "ghname": "npc_ghname_3", + "npcname": "jjc_npc_name_3" + }, + "20742": { + "npcId": 20742, + "attr": {}, + "npclist": "3008_239_90072#3013_239_90071#4003_239_90076#4008_239_90079#4013_239_90079#5003_239_90079", + "npcLv": [ + 611, + 611, + 611, + 611, + 611, + 611 + ], + "isboss": 1, + "ghname": "npc_ghname_4", + "npcname": "jjc_npc_name_4" + }, + "20743": { + "npcId": 20743, + "attr": {}, + "npclist": "3009_214_90072#3014_214_90071#4004_214_90076#4009_214_90079#4014_214_90079#5004_214_90079", + "npcLv": [ + 612, + 612, + 612, + 612, + 612, + 612 + ], + "isboss": 1, + "ghname": "npc_ghname_5", + "npcname": "jjc_npc_name_5" + }, + "20744": { + "npcId": 20744, + "attr": {}, + "npclist": "3010_214_90072#3015_214_90071#4005_214_90076#4010_214_90079#4015_214_90079#5005_214_90079", + "npcLv": [ + 612, + 612, + 612, + 612, + 612, + 612 + ], + "isboss": 1, + "ghname": "npc_ghname_6", + "npcname": "jjc_npc_name_6" + }, + "20745": { + "npcId": 20745, + "attr": {}, + "npclist": "3011_215_90072#4001_215_90071#4006_215_90076#4011_215_90079#5001_215_90079#3001_215_90079", + "npcLv": [ + 613, + 613, + 613, + 613, + 613, + 613 + ], + "isboss": 1, + "ghname": "npc_ghname_1", + "npcname": "jjc_npc_name_1" + }, + "20746": { + "npcId": 20746, + "attr": {}, + "npclist": "3012_215_90072#4002_215_90071#4007_215_90076#4012_215_90079#5002_215_90079#3002_215_90079", + "npcLv": [ + 613, + 613, + 613, + 613, + 613, + 613 + ], + "isboss": 1, + "ghname": "npc_ghname_2", + "npcname": "jjc_npc_name_2" + }, + "20747": { + "npcId": 20747, + "attr": {}, + "npclist": "3013_216_90072#4003_216_90071#4008_216_90076#4013_216_90079#5003_216_90079#3003_216_90079", + "npcLv": [ + 614, + 614, + 614, + 614, + 614, + 614 + ], + "isboss": 1, + "ghname": "npc_ghname_3", + "npcname": "jjc_npc_name_3" + }, + "20748": { + "npcId": 20748, + "attr": {}, + "npclist": "3014_216_90072#4004_216_90071#4009_216_90076#4014_216_90079#5004_216_90079#3004_216_90079", + "npcLv": [ + 614, + 614, + 614, + 614, + 614, + 614 + ], + "isboss": 1, + "ghname": "npc_ghname_4", + "npcname": "jjc_npc_name_4" + }, + "20749": { + "npcId": 20749, + "attr": {}, + "npclist": "3015_217_90072#4005_217_90071#4010_217_90076#4015_217_90079#5005_217_90079#3005_217_90079", + "npcLv": [ + 615, + 615, + 615, + 615, + 615, + 615 + ], + "isboss": 1, + "ghname": "npc_ghname_5", + "npcname": "jjc_npc_name_5" + }, + "20750": { + "npcId": 20750, + "attr": {}, + "npclist": "4001_217_90072#4006_217_90071#4011_217_90076#5001_217_90079#3001_217_90079#3006_217_90079", + "npcLv": [ + 615, + 615, + 615, + 615, + 615, + 615 + ], + "isboss": 1, + "ghname": "npc_ghname_6", + "npcname": "jjc_npc_name_6" + }, + "20751": { + "npcId": 20751, + "attr": {}, + "npclist": "4002_218_90072#4007_218_90071#4012_218_90076#5002_218_90079#3002_218_90079#3007_218_90079", + "npcLv": [ + 616, + 616, + 616, + 616, + 616, + 616 + ], + "isboss": 1, + "ghname": "npc_ghname_1", + "npcname": "jjc_npc_name_1" + }, + "20752": { + "npcId": 20752, + "attr": {}, + "npclist": "4003_218_90072#4008_218_90071#4013_218_90076#5003_218_90079#3003_218_90079#3008_218_90079", + "npcLv": [ + 616, + 616, + 616, + 616, + 616, + 616 + ], + "isboss": 1, + "ghname": "npc_ghname_2", + "npcname": "jjc_npc_name_2" + }, + "20753": { + "npcId": 20753, + "attr": {}, + "npclist": "4004_219_90072#4009_219_90071#4014_219_90076#5004_219_90079#3004_219_90079#3009_219_90079", + "npcLv": [ + 617, + 617, + 617, + 617, + 617, + 617 + ], + "isboss": 1, + "ghname": "npc_ghname_3", + "npcname": "jjc_npc_name_3" + }, + "20754": { + "npcId": 20754, + "attr": {}, + "npclist": "4005_240_90072#4010_240_90071#4015_240_90076#5005_240_90079#3005_240_90079#3010_240_90079", + "npcLv": [ + 617, + 617, + 617, + 617, + 617, + 617 + ], + "isboss": 1, + "ghname": "npc_ghname_4", + "npcname": "jjc_npc_name_4" + }, + "20755": { + "npcId": 20755, + "attr": {}, + "npclist": "4006_214_90072#4011_214_90071#5001_214_90076#3001_214_90079#3006_214_90079#3011_214_90079", + "npcLv": [ + 618, + 618, + 618, + 618, + 618, + 618 + ], + "isboss": 1, + "ghname": "npc_ghname_5", + "npcname": "jjc_npc_name_5" + }, + "20756": { + "npcId": 20756, + "attr": {}, + "npclist": "4007_215_90072#4012_215_90071#5002_215_90076#3002_215_90079#3007_215_90079#3012_215_90079", + "npcLv": [ + 618, + 618, + 618, + 618, + 618, + 618 + ], + "isboss": 1, + "ghname": "npc_ghname_6", + "npcname": "jjc_npc_name_6" + }, + "20757": { + "npcId": 20757, + "attr": {}, + "npclist": "4008_215_90072#4013_215_90071#5003_215_90076#3003_215_90079#3008_215_90079#3013_215_90079", + "npcLv": [ + 619, + 619, + 619, + 619, + 619, + 619 + ], + "isboss": 1, + "ghname": "npc_ghname_1", + "npcname": "jjc_npc_name_1" + }, + "20758": { + "npcId": 20758, + "attr": {}, + "npclist": "4009_216_90072#4014_216_90071#5004_216_90076#3004_216_90079#3009_216_90079#3014_216_90079", + "npcLv": [ + 619, + 619, + 619, + 619, + 619, + 619 + ], + "isboss": 1, + "ghname": "npc_ghname_2", + "npcname": "jjc_npc_name_2" + }, + "20759": { + "npcId": 20759, + "attr": {}, + "npclist": "4010_216_90072#4015_216_90071#5005_216_90076#3005_216_90079#3010_216_90079#3015_216_90079", + "npcLv": [ + 620, + 620, + 620, + 620, + 620, + 620 + ], + "isboss": 1, + "ghname": "npc_ghname_3", + "npcname": "jjc_npc_name_3" + }, + "20760": { + "npcId": 20760, + "attr": {}, + "npclist": "4011_217_90072#5001_217_90071#3001_217_90076#3006_217_90079#3011_217_90079#4001_217_90079", + "npcLv": [ + 620, + 620, + 620, + 620, + 620, + 620 + ], + "isboss": 1, + "ghname": "npc_ghname_4", + "npcname": "jjc_npc_name_4" + }, + "20761": { + "npcId": 20761, + "attr": {}, + "npclist": "4012_217_90072#5002_217_90071#3002_217_90076#3007_217_90079#3012_217_90079#4002_217_90079", + "npcLv": [ + 621, + 621, + 621, + 621, + 621, + 621 + ], + "isboss": 1, + "ghname": "npc_ghname_5", + "npcname": "jjc_npc_name_5" + }, + "20762": { + "npcId": 20762, + "attr": {}, + "npclist": "4013_218_90072#5003_218_90071#3003_218_90076#3008_218_90079#3013_218_90079#4003_218_90079", + "npcLv": [ + 621, + 621, + 621, + 621, + 621, + 621 + ], + "isboss": 1, + "ghname": "npc_ghname_6", + "npcname": "jjc_npc_name_6" + }, + "20763": { + "npcId": 20763, + "attr": {}, + "npclist": "4014_218_90072#5004_218_90071#3004_218_90076#3009_218_90079#3014_218_90079#4004_218_90079", + "npcLv": [ + 622, + 622, + 622, + 622, + 622, + 622 + ], + "isboss": 1, + "ghname": "npc_ghname_1", + "npcname": "jjc_npc_name_1" + }, + "20764": { + "npcId": 20764, + "attr": {}, + "npclist": "4015_219_90072#5005_219_90071#3005_219_90076#3010_219_90079#3015_219_90079#4005_219_90079", + "npcLv": [ + 622, + 622, + 622, + 622, + 622, + 622 + ], + "isboss": 1, + "ghname": "npc_ghname_2", + "npcname": "jjc_npc_name_2" + }, + "20765": { + "npcId": 20765, + "attr": {}, + "npclist": "5001_219_90072#3001_219_90071#3006_219_90076#3011_219_90079#4001_219_90079#4006_219_90079", + "npcLv": [ + 623, + 623, + 623, + 623, + 623, + 623 + ], + "isboss": 1, + "ghname": "npc_ghname_3", + "npcname": "jjc_npc_name_3" + }, + "20766": { + "npcId": 20766, + "attr": {}, + "npclist": "5002_241_90072#3002_241_90071#3007_241_90076#3012_241_90079#4002_241_90079#4007_241_90079", + "npcLv": [ + 623, + 623, + 623, + 623, + 623, + 623 + ], + "isboss": 1, + "ghname": "npc_ghname_4", + "npcname": "jjc_npc_name_4" + }, + "20767": { + "npcId": 20767, + "attr": {}, + "npclist": "5003_214_90072#3003_214_90071#3008_214_90076#3013_214_90079#4003_214_90079#4008_214_90079", + "npcLv": [ + 624, + 624, + 624, + 624, + 624, + 624 + ], + "isboss": 1, + "ghname": "npc_ghname_5", + "npcname": "jjc_npc_name_5" + }, + "20768": { + "npcId": 20768, + "attr": {}, + "npclist": "5004_215_90072#3004_215_90071#3009_215_90076#3014_215_90079#4004_215_90079#4009_215_90079", + "npcLv": [ + 624, + 624, + 624, + 624, + 624, + 624 + ], + "isboss": 1, + "ghname": "npc_ghname_6", + "npcname": "jjc_npc_name_6" + }, + "20769": { + "npcId": 20769, + "attr": {}, + "npclist": "5005_215_90072#3005_215_90071#3010_215_90076#3015_215_90079#4005_215_90079#4010_215_90079", + "npcLv": [ + 625, + 625, + 625, + 625, + 625, + 625 + ], + "isboss": 1, + "ghname": "npc_ghname_1", + "npcname": "jjc_npc_name_1" + }, + "20770": { + "npcId": 20770, + "attr": {}, + "npclist": "3001_216_90072#3006_216_90071#3011_216_90076#4001_216_90079#4006_216_90079#4011_216_90079", + "npcLv": [ + 625, + 625, + 625, + 625, + 625, + 625 + ], + "isboss": 1, + "ghname": "npc_ghname_2", + "npcname": "jjc_npc_name_2" + }, + "20771": { + "npcId": 20771, + "attr": {}, + "npclist": "3002_216_90072#3007_216_90071#3012_216_90076#4002_216_90079#4007_216_90079#4012_216_90079", + "npcLv": [ + 626, + 626, + 626, + 626, + 626, + 626 + ], + "isboss": 1, + "ghname": "npc_ghname_3", + "npcname": "jjc_npc_name_3" + }, + "20772": { + "npcId": 20772, + "attr": {}, + "npclist": "3003_217_90072#3008_217_90071#3013_217_90076#4003_217_90079#4008_217_90079#4013_217_90079", + "npcLv": [ + 626, + 626, + 626, + 626, + 626, + 626 + ], + "isboss": 1, + "ghname": "npc_ghname_4", + "npcname": "jjc_npc_name_4" + }, + "20773": { + "npcId": 20773, + "attr": {}, + "npclist": "3004_217_90072#3009_217_90071#3014_217_90076#4004_217_90079#4009_217_90079#4014_217_90079", + "npcLv": [ + 627, + 627, + 627, + 627, + 627, + 627 + ], + "isboss": 1, + "ghname": "npc_ghname_5", + "npcname": "jjc_npc_name_5" + }, + "20774": { + "npcId": 20774, + "attr": {}, + "npclist": "3005_218_90072#3010_218_90071#3015_218_90076#4005_218_90079#4010_218_90079#4015_218_90079", + "npcLv": [ + 627, + 627, + 627, + 627, + 627, + 627 + ], + "isboss": 1, + "ghname": "npc_ghname_6", + "npcname": "jjc_npc_name_6" + }, + "20775": { + "npcId": 20775, + "attr": {}, + "npclist": "3006_218_90072#3011_218_90071#4001_218_90076#4006_218_90079#4011_218_90079#5001_218_90079", + "npcLv": [ + 628, + 628, + 628, + 628, + 628, + 628 + ], + "isboss": 1, + "ghname": "npc_ghname_1", + "npcname": "jjc_npc_name_1" + }, + "20776": { + "npcId": 20776, + "attr": {}, + "npclist": "3007_219_90072#3012_219_90071#4002_219_90076#4007_219_90079#4012_219_90079#5002_219_90079", + "npcLv": [ + 628, + 628, + 628, + 628, + 628, + 628 + ], + "isboss": 1, + "ghname": "npc_ghname_2", + "npcname": "jjc_npc_name_2" + }, + "20777": { + "npcId": 20777, + "attr": {}, + "npclist": "3008_219_90072#3013_219_90071#4003_219_90076#4008_219_90079#4013_219_90079#5003_219_90079", + "npcLv": [ + 629, + 629, + 629, + 629, + 629, + 629 + ], + "isboss": 1, + "ghname": "npc_ghname_3", + "npcname": "jjc_npc_name_3" + }, + "20778": { + "npcId": 20778, + "attr": {}, + "npclist": "3009_220_90072#3014_220_90071#4004_220_90076#4009_220_90079#4014_220_90079#5004_220_90079", + "npcLv": [ + 629, + 629, + 629, + 629, + 629, + 629 + ], + "isboss": 1, + "ghname": "npc_ghname_4", + "npcname": "jjc_npc_name_4" + }, + "20779": { + "npcId": 20779, + "attr": {}, + "npclist": "3010_220_90072#3015_220_90071#4005_220_90076#4010_220_90079#4015_220_90079#5005_220_90079", + "npcLv": [ + 630, + 630, + 630, + 630, + 630, + 630 + ], + "isboss": 1, + "ghname": "npc_ghname_5", + "npcname": "jjc_npc_name_5" + }, + "20780": { + "npcId": 20780, + "attr": {}, + "npclist": "3011_242_90072#4001_242_90071#4006_242_90076#4011_242_90079#5001_242_90079#3001_242_90079", + "npcLv": [ + 630, + 630, + 630, + 630, + 630, + 630 + ], + "isboss": 1, + "ghname": "npc_ghname_6", + "npcname": "jjc_npc_name_6" + }, + "20781": { + "npcId": 20781, + "attr": {}, + "npclist": "3012_214_90072#4002_214_90071#4007_214_90076#4012_214_90079#5002_214_90079#3002_214_90079", + "npcLv": [ + 631, + 631, + 631, + 631, + 631, + 631 + ], + "isboss": 1, + "ghname": "npc_ghname_1", + "npcname": "jjc_npc_name_1" + }, + "20782": { + "npcId": 20782, + "attr": {}, + "npclist": "3013_214_90072#4003_214_90071#4008_214_90076#4013_214_90079#5003_214_90079#3003_214_90079", + "npcLv": [ + 631, + 631, + 631, + 631, + 631, + 631 + ], + "isboss": 1, + "ghname": "npc_ghname_2", + "npcname": "jjc_npc_name_2" + }, + "20783": { + "npcId": 20783, + "attr": {}, + "npclist": "3014_215_90072#4004_215_90071#4009_215_90076#4014_215_90079#5004_215_90079#3004_215_90079", + "npcLv": [ + 632, + 632, + 632, + 632, + 632, + 632 + ], + "isboss": 1, + "ghname": "npc_ghname_3", + "npcname": "jjc_npc_name_3" + }, + "20784": { + "npcId": 20784, + "attr": {}, + "npclist": "3015_215_90072#4005_215_90071#4010_215_90076#4015_215_90079#5005_215_90079#3005_215_90079", + "npcLv": [ + 632, + 632, + 632, + 632, + 632, + 632 + ], + "isboss": 1, + "ghname": "npc_ghname_4", + "npcname": "jjc_npc_name_4" + }, + "20785": { + "npcId": 20785, + "attr": {}, + "npclist": "4001_216_90072#4006_216_90071#4011_216_90076#5001_216_90079#3001_216_90079#3006_216_90079", + "npcLv": [ + 633, + 633, + 633, + 633, + 633, + 633 + ], + "isboss": 1, + "ghname": "npc_ghname_5", + "npcname": "jjc_npc_name_5" + }, + "20786": { + "npcId": 20786, + "attr": {}, + "npclist": "4002_216_90072#4007_216_90071#4012_216_90076#5002_216_90079#3002_216_90079#3007_216_90079", + "npcLv": [ + 633, + 633, + 633, + 633, + 633, + 633 + ], + "isboss": 1, + "ghname": "npc_ghname_6", + "npcname": "jjc_npc_name_6" + }, + "20787": { + "npcId": 20787, + "attr": {}, + "npclist": "4003_217_90072#4008_217_90071#4013_217_90076#5003_217_90079#3003_217_90079#3008_217_90079", + "npcLv": [ + 634, + 634, + 634, + 634, + 634, + 634 + ], + "isboss": 1, + "ghname": "npc_ghname_1", + "npcname": "jjc_npc_name_1" + }, + "20788": { + "npcId": 20788, + "attr": {}, + "npclist": "4004_217_90072#4009_217_90071#4014_217_90076#5004_217_90079#3004_217_90079#3009_217_90079", + "npcLv": [ + 634, + 634, + 634, + 634, + 634, + 634 + ], + "isboss": 1, + "ghname": "npc_ghname_2", + "npcname": "jjc_npc_name_2" + }, + "20789": { + "npcId": 20789, + "attr": {}, + "npclist": "4005_218_90072#4010_218_90071#4015_218_90076#5005_218_90079#3005_218_90079#3010_218_90079", + "npcLv": [ + 635, + 635, + 635, + 635, + 635, + 635 + ], + "isboss": 1, + "ghname": "npc_ghname_3", + "npcname": "jjc_npc_name_3" + }, + "20790": { + "npcId": 20790, + "attr": {}, + "npclist": "4006_218_90072#4011_218_90071#5001_218_90076#3001_218_90079#3006_218_90079#3011_218_90079", + "npcLv": [ + 635, + 635, + 635, + 635, + 635, + 635 + ], + "isboss": 1, + "ghname": "npc_ghname_4", + "npcname": "jjc_npc_name_4" + }, + "20791": { + "npcId": 20791, + "attr": {}, + "npclist": "4007_219_90072#4012_219_90071#5002_219_90076#3002_219_90079#3007_219_90079#3012_219_90079", + "npcLv": [ + 636, + 636, + 636, + 636, + 636, + 636 + ], + "isboss": 1, + "ghname": "npc_ghname_5", + "npcname": "jjc_npc_name_5" + }, + "20792": { + "npcId": 20792, + "attr": {}, + "npclist": "4008_219_90072#4013_219_90071#5003_219_90076#3003_219_90079#3008_219_90079#3013_219_90079", + "npcLv": [ + 636, + 636, + 636, + 636, + 636, + 636 + ], + "isboss": 1, + "ghname": "npc_ghname_6", + "npcname": "jjc_npc_name_6" + }, + "20793": { + "npcId": 20793, + "attr": {}, + "npclist": "4009_220_90072#4014_220_90071#5004_220_90076#3004_220_90079#3009_220_90079#3014_220_90079", + "npcLv": [ + 637, + 637, + 637, + 637, + 637, + 637 + ], + "isboss": 1, + "ghname": "npc_ghname_1", + "npcname": "jjc_npc_name_1" + }, + "20794": { + "npcId": 20794, + "attr": {}, + "npclist": "4010_220_90072#4015_220_90071#5005_220_90076#3005_220_90079#3010_220_90079#3015_220_90079", + "npcLv": [ + 637, + 637, + 637, + 637, + 637, + 637 + ], + "isboss": 1, + "ghname": "npc_ghname_2", + "npcname": "jjc_npc_name_2" + }, + "20795": { + "npcId": 20795, + "attr": {}, + "npclist": "4011_221_90072#5001_221_90071#3001_221_90076#3006_221_90079#3011_221_90079#4001_221_90079", + "npcLv": [ + 638, + 638, + 638, + 638, + 638, + 638 + ], + "isboss": 1, + "ghname": "npc_ghname_3", + "npcname": "jjc_npc_name_3" + }, + "20796": { + "npcId": 20796, + "attr": {}, + "npclist": "4012_243_90072#5002_243_90071#3002_243_90076#3007_243_90079#3012_243_90079#4002_243_90079", + "npcLv": [ + 638, + 638, + 638, + 638, + 638, + 638 + ], + "isboss": 1, + "ghname": "npc_ghname_4", + "npcname": "jjc_npc_name_4" + }, + "20797": { + "npcId": 20797, + "attr": {}, + "npclist": "4013_214_90072#5003_214_90071#3003_214_90076#3008_214_90079#3013_214_90079#4003_214_90079", + "npcLv": [ + 639, + 639, + 639, + 639, + 639, + 639 + ], + "isboss": 1, + "ghname": "npc_ghname_5", + "npcname": "jjc_npc_name_5" + }, + "20798": { + "npcId": 20798, + "attr": {}, + "npclist": "4014_215_90072#5004_215_90071#3004_215_90076#3009_215_90079#3014_215_90079#4004_215_90079", + "npcLv": [ + 639, + 639, + 639, + 639, + 639, + 639 + ], + "isboss": 1, + "ghname": "npc_ghname_6", + "npcname": "jjc_npc_name_6" + }, + "20799": { + "npcId": 20799, + "attr": {}, + "npclist": "4015_215_90072#5005_215_90071#3005_215_90076#3010_215_90079#3015_215_90079#4005_215_90079", + "npcLv": [ + 640, + 640, + 640, + 640, + 640, + 640 + ], + "isboss": 1, + "ghname": "npc_ghname_1", + "npcname": "jjc_npc_name_1" + }, + "20800": { + "npcId": 20800, + "attr": {}, + "npclist": "5001_216_90072#3001_216_90071#3006_216_90076#3011_216_90079#4001_216_90079#4006_216_90079", + "npcLv": [ + 640, + 640, + 640, + 640, + 640, + 640 + ], + "isboss": 1, + "ghname": "npc_ghname_2", + "npcname": "jjc_npc_name_2" + }, + "20801": { + "npcId": 20801, + "attr": {}, + "npclist": "5002_216_90072#3002_216_90071#3007_216_90076#3012_216_90079#4002_216_90079#4007_216_90079", + "npcLv": [ + 641, + 641, + 641, + 641, + 641, + 641 + ], + "isboss": 1, + "ghname": "npc_ghname_3", + "npcname": "jjc_npc_name_3" + }, + "20802": { + "npcId": 20802, + "attr": {}, + "npclist": "5003_217_90072#3003_217_90071#3008_217_90076#3013_217_90079#4003_217_90079#4008_217_90079", + "npcLv": [ + 641, + 641, + 641, + 641, + 641, + 641 + ], + "isboss": 1, + "ghname": "npc_ghname_4", + "npcname": "jjc_npc_name_4" + }, + "20803": { + "npcId": 20803, + "attr": {}, + "npclist": "5004_217_90072#3004_217_90071#3009_217_90076#3014_217_90079#4004_217_90079#4009_217_90079", + "npcLv": [ + 642, + 642, + 642, + 642, + 642, + 642 + ], + "isboss": 1, + "ghname": "npc_ghname_5", + "npcname": "jjc_npc_name_5" + }, + "20804": { + "npcId": 20804, + "attr": {}, + "npclist": "5005_218_90072#3005_218_90071#3010_218_90076#3015_218_90079#4005_218_90079#4010_218_90079", + "npcLv": [ + 642, + 642, + 642, + 642, + 642, + 642 + ], + "isboss": 1, + "ghname": "npc_ghname_6", + "npcname": "jjc_npc_name_6" + }, + "20805": { + "npcId": 20805, + "attr": {}, + "npclist": "3001_218_90072#3006_218_90071#3011_218_90076#4001_218_90079#4006_218_90079#4011_218_90079", + "npcLv": [ + 643, + 643, + 643, + 643, + 643, + 643 + ], + "isboss": 1, + "ghname": "npc_ghname_1", + "npcname": "jjc_npc_name_1" + }, + "20806": { + "npcId": 20806, + "attr": {}, + "npclist": "3002_219_90072#3007_219_90071#3012_219_90076#4002_219_90079#4007_219_90079#4012_219_90079", + "npcLv": [ + 643, + 643, + 643, + 643, + 643, + 643 + ], + "isboss": 1, + "ghname": "npc_ghname_2", + "npcname": "jjc_npc_name_2" + }, + "20807": { + "npcId": 20807, + "attr": {}, + "npclist": "3003_219_90072#3008_219_90071#3013_219_90076#4003_219_90079#4008_219_90079#4013_219_90079", + "npcLv": [ + 644, + 644, + 644, + 644, + 644, + 644 + ], + "isboss": 1, + "ghname": "npc_ghname_3", + "npcname": "jjc_npc_name_3" + }, + "20808": { + "npcId": 20808, + "attr": {}, + "npclist": "3004_220_90072#3009_220_90071#3014_220_90076#4004_220_90079#4009_220_90079#4014_220_90079", + "npcLv": [ + 644, + 644, + 644, + 644, + 644, + 644 + ], + "isboss": 1, + "ghname": "npc_ghname_4", + "npcname": "jjc_npc_name_4" + }, + "20809": { + "npcId": 20809, + "attr": {}, + "npclist": "3005_220_90072#3010_220_90071#3015_220_90076#4005_220_90079#4010_220_90079#4015_220_90079", + "npcLv": [ + 645, + 645, + 645, + 645, + 645, + 645 + ], + "isboss": 1, + "ghname": "npc_ghname_5", + "npcname": "jjc_npc_name_5" + }, + "20810": { + "npcId": 20810, + "attr": {}, + "npclist": "3006_221_90072#3011_221_90071#4001_221_90076#4006_221_90079#4011_221_90079#5001_221_90079", + "npcLv": [ + 645, + 645, + 645, + 645, + 645, + 645 + ], + "isboss": 1, + "ghname": "npc_ghname_6", + "npcname": "jjc_npc_name_6" + }, + "20811": { + "npcId": 20811, + "attr": {}, + "npclist": "3007_221_90072#3012_221_90071#4002_221_90076#4007_221_90079#4012_221_90079#5002_221_90079", + "npcLv": [ + 646, + 646, + 646, + 646, + 646, + 646 + ], + "isboss": 1, + "ghname": "npc_ghname_1", + "npcname": "jjc_npc_name_1" + }, + "20812": { + "npcId": 20812, + "attr": {}, + "npclist": "3008_244_90072#3013_244_90071#4003_244_90076#4008_244_90079#4013_244_90079#5003_244_90079", + "npcLv": [ + 646, + 646, + 646, + 646, + 646, + 646 + ], + "isboss": 1, + "ghname": "npc_ghname_2", + "npcname": "jjc_npc_name_2" + }, + "20813": { + "npcId": 20813, + "attr": {}, + "npclist": "3009_215_90072#3014_215_90071#4004_215_90076#4009_215_90079#4014_215_90079#5004_215_90079", + "npcLv": [ + 647, + 647, + 647, + 647, + 647, + 647 + ], + "isboss": 1, + "ghname": "npc_ghname_3", + "npcname": "jjc_npc_name_3" + }, + "20814": { + "npcId": 20814, + "attr": {}, + "npclist": "3010_215_90072#3015_215_90071#4005_215_90076#4010_215_90079#4015_215_90079#5005_215_90079", + "npcLv": [ + 647, + 647, + 647, + 647, + 647, + 647 + ], + "isboss": 1, + "ghname": "npc_ghname_4", + "npcname": "jjc_npc_name_4" + }, + "20815": { + "npcId": 20815, + "attr": {}, + "npclist": "3011_216_90072#4001_216_90071#4006_216_90076#4011_216_90079#5001_216_90079#3001_216_90079", + "npcLv": [ + 648, + 648, + 648, + 648, + 648, + 648 + ], + "isboss": 1, + "ghname": "npc_ghname_5", + "npcname": "jjc_npc_name_5" + }, + "20816": { + "npcId": 20816, + "attr": {}, + "npclist": "3012_216_90072#4002_216_90071#4007_216_90076#4012_216_90079#5002_216_90079#3002_216_90079", + "npcLv": [ + 648, + 648, + 648, + 648, + 648, + 648 + ], + "isboss": 1, + "ghname": "npc_ghname_6", + "npcname": "jjc_npc_name_6" + }, + "20817": { + "npcId": 20817, + "attr": {}, + "npclist": "3013_217_90072#4003_217_90071#4008_217_90076#4013_217_90079#5003_217_90079#3003_217_90079", + "npcLv": [ + 649, + 649, + 649, + 649, + 649, + 649 + ], + "isboss": 1, + "ghname": "npc_ghname_1", + "npcname": "jjc_npc_name_1" + }, + "20818": { + "npcId": 20818, + "attr": {}, + "npclist": "3014_217_90072#4004_217_90071#4009_217_90076#4014_217_90079#5004_217_90079#3004_217_90079", + "npcLv": [ + 649, + 649, + 649, + 649, + 649, + 649 + ], + "isboss": 1, + "ghname": "npc_ghname_2", + "npcname": "jjc_npc_name_2" + }, + "20819": { + "npcId": 20819, + "attr": {}, + "npclist": "3015_218_90072#4005_218_90071#4010_218_90076#4015_218_90079#5005_218_90079#3005_218_90079", + "npcLv": [ + 650, + 650, + 650, + 650, + 650, + 650 + ], + "isboss": 1, + "ghname": "npc_ghname_3", + "npcname": "jjc_npc_name_3" + }, + "20820": { + "npcId": 20820, + "attr": {}, + "npclist": "4001_218_90072#4006_218_90071#4011_218_90076#5001_218_90079#3001_218_90079#3006_218_90079", + "npcLv": [ + 650, + 650, + 650, + 650, + 650, + 650 + ], + "isboss": 1, + "ghname": "npc_ghname_4", + "npcname": "jjc_npc_name_4" + }, + "20821": { + "npcId": 20821, + "attr": {}, + "npclist": "4002_219_90072#4007_219_90071#4012_219_90076#5002_219_90079#3002_219_90079#3007_219_90079", + "npcLv": [ + 651, + 651, + 651, + 651, + 651, + 651 + ], + "isboss": 1, + "ghname": "npc_ghname_5", + "npcname": "jjc_npc_name_5" + }, + "20822": { + "npcId": 20822, + "attr": {}, + "npclist": "4003_219_90072#4008_219_90071#4013_219_90076#5003_219_90079#3003_219_90079#3008_219_90079", + "npcLv": [ + 651, + 651, + 651, + 651, + 651, + 651 + ], + "isboss": 1, + "ghname": "npc_ghname_6", + "npcname": "jjc_npc_name_6" + }, + "20823": { + "npcId": 20823, + "attr": {}, + "npclist": "4004_220_90072#4009_220_90071#4014_220_90076#5004_220_90079#3004_220_90079#3009_220_90079", + "npcLv": [ + 652, + 652, + 652, + 652, + 652, + 652 + ], + "isboss": 1, + "ghname": "npc_ghname_1", + "npcname": "jjc_npc_name_1" + }, + "20824": { + "npcId": 20824, + "attr": {}, + "npclist": "4005_220_90072#4010_220_90071#4015_220_90076#5005_220_90079#3005_220_90079#3010_220_90079", + "npcLv": [ + 652, + 652, + 652, + 652, + 652, + 652 + ], + "isboss": 1, + "ghname": "npc_ghname_2", + "npcname": "jjc_npc_name_2" + }, + "20825": { + "npcId": 20825, + "attr": {}, + "npclist": "4006_221_90072#4011_221_90071#5001_221_90076#3001_221_90079#3006_221_90079#3011_221_90079", + "npcLv": [ + 653, + 653, + 653, + 653, + 653, + 653 + ], + "isboss": 1, + "ghname": "npc_ghname_3", + "npcname": "jjc_npc_name_3" + }, + "20826": { + "npcId": 20826, + "attr": {}, + "npclist": "4007_221_90072#4012_221_90071#5002_221_90076#3002_221_90079#3007_221_90079#3012_221_90079", + "npcLv": [ + 653, + 653, + 653, + 653, + 653, + 653 + ], + "isboss": 1, + "ghname": "npc_ghname_4", + "npcname": "jjc_npc_name_4" + }, + "20827": { + "npcId": 20827, + "attr": {}, + "npclist": "4008_222_90072#4013_222_90071#5003_222_90076#3003_222_90079#3008_222_90079#3013_222_90079", + "npcLv": [ + 654, + 654, + 654, + 654, + 654, + 654 + ], + "isboss": 1, + "ghname": "npc_ghname_5", + "npcname": "jjc_npc_name_5" + }, + "20828": { + "npcId": 20828, + "attr": {}, + "npclist": "4009_222_90072#4014_222_90071#5004_222_90076#3004_222_90079#3009_222_90079#3014_222_90079", + "npcLv": [ + 654, + 654, + 654, + 654, + 654, + 654 + ], + "isboss": 1, + "ghname": "npc_ghname_6", + "npcname": "jjc_npc_name_6" + }, + "20829": { + "npcId": 20829, + "attr": {}, + "npclist": "4010_223_90072#4015_223_90071#5005_223_90076#3005_223_90079#3010_223_90079#3015_223_90079", + "npcLv": [ + 655, + 655, + 655, + 655, + 655, + 655 + ], + "isboss": 1, + "ghname": "npc_ghname_1", + "npcname": "jjc_npc_name_1" + }, + "20830": { + "npcId": 20830, + "attr": {}, + "npclist": "4011_245_90072#5001_245_90071#3001_245_90076#3006_245_90079#3011_245_90079#4001_245_90079", + "npcLv": [ + 655, + 655, + 655, + 655, + 655, + 655 + ], + "isboss": 1, + "ghname": "npc_ghname_2", + "npcname": "jjc_npc_name_2" + }, + "20831": { + "npcId": 20831, + "attr": {}, + "npclist": "4012_218_90072#5002_218_90071#3002_218_90076#3007_218_90079#3012_218_90079#4002_218_90079", + "npcLv": [ + 656, + 656, + 656, + 656, + 656, + 656 + ], + "isboss": 1, + "ghname": "npc_ghname_3", + "npcname": "jjc_npc_name_3" + }, + "20832": { + "npcId": 20832, + "attr": {}, + "npclist": "4013_219_90072#5003_219_90071#3003_219_90076#3008_219_90079#3013_219_90079#4003_219_90079", + "npcLv": [ + 656, + 656, + 656, + 656, + 656, + 656 + ], + "isboss": 1, + "ghname": "npc_ghname_4", + "npcname": "jjc_npc_name_4" + }, + "20833": { + "npcId": 20833, + "attr": {}, + "npclist": "4014_219_90072#5004_219_90071#3004_219_90076#3009_219_90079#3014_219_90079#4004_219_90079", + "npcLv": [ + 657, + 657, + 657, + 657, + 657, + 657 + ], + "isboss": 1, + "ghname": "npc_ghname_5", + "npcname": "jjc_npc_name_5" + }, + "20834": { + "npcId": 20834, + "attr": {}, + "npclist": "4015_220_90072#5005_220_90071#3005_220_90076#3010_220_90079#3015_220_90079#4005_220_90079", + "npcLv": [ + 657, + 657, + 657, + 657, + 657, + 657 + ], + "isboss": 1, + "ghname": "npc_ghname_6", + "npcname": "jjc_npc_name_6" + }, + "20835": { + "npcId": 20835, + "attr": {}, + "npclist": "5001_220_90072#3001_220_90071#3006_220_90076#3011_220_90079#4001_220_90079#4006_220_90079", + "npcLv": [ + 658, + 658, + 658, + 658, + 658, + 658 + ], + "isboss": 1, + "ghname": "npc_ghname_1", + "npcname": "jjc_npc_name_1" + }, + "20836": { + "npcId": 20836, + "attr": {}, + "npclist": "5002_221_90072#3002_221_90071#3007_221_90076#3012_221_90079#4002_221_90079#4007_221_90079", + "npcLv": [ + 658, + 658, + 658, + 658, + 658, + 658 + ], + "isboss": 1, + "ghname": "npc_ghname_2", + "npcname": "jjc_npc_name_2" + }, + "20837": { + "npcId": 20837, + "attr": {}, + "npclist": "5003_221_90072#3003_221_90071#3008_221_90076#3013_221_90079#4003_221_90079#4008_221_90079", + "npcLv": [ + 659, + 659, + 659, + 659, + 659, + 659 + ], + "isboss": 1, + "ghname": "npc_ghname_3", + "npcname": "jjc_npc_name_3" + }, + "20838": { + "npcId": 20838, + "attr": {}, + "npclist": "5004_222_90072#3004_222_90071#3009_222_90076#3014_222_90079#4004_222_90079#4009_222_90079", + "npcLv": [ + 659, + 659, + 659, + 659, + 659, + 659 + ], + "isboss": 1, + "ghname": "npc_ghname_4", + "npcname": "jjc_npc_name_4" + }, + "20839": { + "npcId": 20839, + "attr": {}, + "npclist": "5005_222_90072#3005_222_90071#3010_222_90076#3015_222_90079#4005_222_90079#4010_222_90079", + "npcLv": [ + 660, + 660, + 660, + 660, + 660, + 660 + ], + "isboss": 1, + "ghname": "npc_ghname_5", + "npcname": "jjc_npc_name_5" + }, + "20840": { + "npcId": 20840, + "attr": {}, + "npclist": "3001_223_90072#3006_223_90071#3011_223_90076#4001_223_90079#4006_223_90079#4011_223_90079", + "npcLv": [ + 660, + 660, + 660, + 660, + 660, + 660 + ], + "isboss": 1, + "ghname": "npc_ghname_6", + "npcname": "jjc_npc_name_6" + }, + "20841": { + "npcId": 20841, + "attr": {}, + "npclist": "3002_223_90072#3007_223_90071#3012_223_90076#4002_223_90079#4007_223_90079#4012_223_90079", + "npcLv": [ + 661, + 661, + 661, + 661, + 661, + 661 + ], + "isboss": 1, + "ghname": "npc_ghname_1", + "npcname": "jjc_npc_name_1" + }, + "20842": { + "npcId": 20842, + "attr": {}, + "npclist": "3003_246_90072#3008_246_90071#3013_246_90076#4003_246_90079#4008_246_90079#4013_246_90079", + "npcLv": [ + 661, + 661, + 661, + 661, + 661, + 661 + ], + "isboss": 1, + "ghname": "npc_ghname_2", + "npcname": "jjc_npc_name_2" + }, + "20843": { + "npcId": 20843, + "attr": {}, + "npclist": "3004_219_90072#3009_219_90071#3014_219_90076#4004_219_90079#4009_219_90079#4014_219_90079", + "npcLv": [ + 662, + 662, + 662, + 662, + 662, + 662 + ], + "isboss": 1, + "ghname": "npc_ghname_3", + "npcname": "jjc_npc_name_3" + }, + "20844": { + "npcId": 20844, + "attr": {}, + "npclist": "3005_219_90072#3010_219_90071#3015_219_90076#4005_219_90079#4010_219_90079#4015_219_90079", + "npcLv": [ + 662, + 662, + 662, + 662, + 662, + 662 + ], + "isboss": 1, + "ghname": "npc_ghname_4", + "npcname": "jjc_npc_name_4" + }, + "20845": { + "npcId": 20845, + "attr": {}, + "npclist": "3006_220_90072#3011_220_90071#4001_220_90076#4006_220_90079#4011_220_90079#5001_220_90079", + "npcLv": [ + 663, + 663, + 663, + 663, + 663, + 663 + ], + "isboss": 1, + "ghname": "npc_ghname_5", + "npcname": "jjc_npc_name_5" + }, + "20846": { + "npcId": 20846, + "attr": {}, + "npclist": "3007_220_90072#3012_220_90071#4002_220_90076#4007_220_90079#4012_220_90079#5002_220_90079", + "npcLv": [ + 663, + 663, + 663, + 663, + 663, + 663 + ], + "isboss": 1, + "ghname": "npc_ghname_6", + "npcname": "jjc_npc_name_6" + }, + "20847": { + "npcId": 20847, + "attr": {}, + "npclist": "3008_221_90072#3013_221_90071#4003_221_90076#4008_221_90079#4013_221_90079#5003_221_90079", + "npcLv": [ + 664, + 664, + 664, + 664, + 664, + 664 + ], + "isboss": 1, + "ghname": "npc_ghname_1", + "npcname": "jjc_npc_name_1" + }, + "20848": { + "npcId": 20848, + "attr": {}, + "npclist": "3009_221_90072#3014_221_90071#4004_221_90076#4009_221_90079#4014_221_90079#5004_221_90079", + "npcLv": [ + 664, + 664, + 664, + 664, + 664, + 664 + ], + "isboss": 1, + "ghname": "npc_ghname_2", + "npcname": "jjc_npc_name_2" + }, + "20849": { + "npcId": 20849, + "attr": {}, + "npclist": "3010_222_90072#3015_222_90071#4005_222_90076#4010_222_90079#4015_222_90079#5005_222_90079", + "npcLv": [ + 665, + 665, + 665, + 665, + 665, + 665 + ], + "isboss": 1, + "ghname": "npc_ghname_3", + "npcname": "jjc_npc_name_3" + }, + "20850": { + "npcId": 20850, + "attr": {}, + "npclist": "3011_222_90072#4001_222_90071#4006_222_90076#4011_222_90079#5001_222_90079#3001_222_90079", + "npcLv": [ + 665, + 665, + 665, + 665, + 665, + 665 + ], + "isboss": 1, + "ghname": "npc_ghname_4", + "npcname": "jjc_npc_name_4" + }, + "20851": { + "npcId": 20851, + "attr": {}, + "npclist": "3012_223_90072#4002_223_90071#4007_223_90076#4012_223_90079#5002_223_90079#3002_223_90079", + "npcLv": [ + 666, + 666, + 666, + 666, + 666, + 666 + ], + "isboss": 1, + "ghname": "npc_ghname_5", + "npcname": "jjc_npc_name_5" + }, + "20852": { + "npcId": 20852, + "attr": {}, + "npclist": "3013_223_90072#4003_223_90071#4008_223_90076#4013_223_90079#5003_223_90079#3003_223_90079", + "npcLv": [ + 666, + 666, + 666, + 666, + 666, + 666 + ], + "isboss": 1, + "ghname": "npc_ghname_6", + "npcname": "jjc_npc_name_6" + }, + "20853": { + "npcId": 20853, + "attr": {}, + "npclist": "3014_224_90072#4004_224_90071#4009_224_90076#4014_224_90079#5004_224_90079#3004_224_90079", + "npcLv": [ + 667, + 667, + 667, + 667, + 667, + 667 + ], + "isboss": 1, + "ghname": "npc_ghname_1", + "npcname": "jjc_npc_name_1" + }, + "20854": { + "npcId": 20854, + "attr": {}, + "npclist": "3015_247_90072#4005_247_90071#4010_247_90076#4015_247_90079#5005_247_90079#3005_247_90079", + "npcLv": [ + 667, + 667, + 667, + 667, + 667, + 667 + ], + "isboss": 1, + "ghname": "npc_ghname_2", + "npcname": "jjc_npc_name_2" + }, + "20855": { + "npcId": 20855, + "attr": {}, + "npclist": "4001_219_90072#4006_219_90071#4011_219_90076#5001_219_90079#3001_219_90079#3006_219_90079", + "npcLv": [ + 668, + 668, + 668, + 668, + 668, + 668 + ], + "isboss": 1, + "ghname": "npc_ghname_3", + "npcname": "jjc_npc_name_3" + }, + "20856": { + "npcId": 20856, + "attr": {}, + "npclist": "4002_220_90072#4007_220_90071#4012_220_90076#5002_220_90079#3002_220_90079#3007_220_90079", + "npcLv": [ + 668, + 668, + 668, + 668, + 668, + 668 + ], + "isboss": 1, + "ghname": "npc_ghname_4", + "npcname": "jjc_npc_name_4" + }, + "20857": { + "npcId": 20857, + "attr": {}, + "npclist": "4003_220_90072#4008_220_90071#4013_220_90076#5003_220_90079#3003_220_90079#3008_220_90079", + "npcLv": [ + 669, + 669, + 669, + 669, + 669, + 669 + ], + "isboss": 1, + "ghname": "npc_ghname_5", + "npcname": "jjc_npc_name_5" + }, + "20858": { + "npcId": 20858, + "attr": {}, + "npclist": "4004_221_90072#4009_221_90071#4014_221_90076#5004_221_90079#3004_221_90079#3009_221_90079", + "npcLv": [ + 669, + 669, + 669, + 669, + 669, + 669 + ], + "isboss": 1, + "ghname": "npc_ghname_6", + "npcname": "jjc_npc_name_6" + }, + "20859": { + "npcId": 20859, + "attr": {}, + "npclist": "4005_221_90072#4010_221_90071#4015_221_90076#5005_221_90079#3005_221_90079#3010_221_90079", + "npcLv": [ + 670, + 670, + 670, + 670, + 670, + 670 + ], + "isboss": 1, + "ghname": "npc_ghname_1", + "npcname": "jjc_npc_name_1" + }, + "20860": { + "npcId": 20860, + "attr": {}, + "npclist": "4006_222_90072#4011_222_90071#5001_222_90076#3001_222_90079#3006_222_90079#3011_222_90079", + "npcLv": [ + 670, + 670, + 670, + 670, + 670, + 670 + ], + "isboss": 1, + "ghname": "npc_ghname_2", + "npcname": "jjc_npc_name_2" + }, + "20861": { + "npcId": 20861, + "attr": {}, + "npclist": "4007_222_90072#4012_222_90071#5002_222_90076#3002_222_90079#3007_222_90079#3012_222_90079", + "npcLv": [ + 671, + 671, + 671, + 671, + 671, + 671 + ], + "isboss": 1, + "ghname": "npc_ghname_3", + "npcname": "jjc_npc_name_3" + }, + "20862": { + "npcId": 20862, + "attr": {}, + "npclist": "4008_223_90072#4013_223_90071#5003_223_90076#3003_223_90079#3008_223_90079#3013_223_90079", + "npcLv": [ + 671, + 671, + 671, + 671, + 671, + 671 + ], + "isboss": 1, + "ghname": "npc_ghname_4", + "npcname": "jjc_npc_name_4" + }, + "20863": { + "npcId": 20863, + "attr": {}, + "npclist": "4009_223_90072#4014_223_90071#5004_223_90076#3004_223_90079#3009_223_90079#3014_223_90079", + "npcLv": [ + 672, + 672, + 672, + 672, + 672, + 672 + ], + "isboss": 1, + "ghname": "npc_ghname_5", + "npcname": "jjc_npc_name_5" + }, + "20864": { + "npcId": 20864, + "attr": {}, + "npclist": "4010_224_90072#4015_224_90071#5005_224_90076#3005_224_90079#3010_224_90079#3015_224_90079", + "npcLv": [ + 672, + 672, + 672, + 672, + 672, + 672 + ], + "isboss": 1, + "ghname": "npc_ghname_6", + "npcname": "jjc_npc_name_6" + }, + "20865": { + "npcId": 20865, + "attr": {}, + "npclist": "4011_224_90072#5001_224_90071#3001_224_90076#3006_224_90079#3011_224_90079#4001_224_90079", + "npcLv": [ + 673, + 673, + 673, + 673, + 673, + 673 + ], + "isboss": 1, + "ghname": "npc_ghname_1", + "npcname": "jjc_npc_name_1" + }, + "20866": { + "npcId": 20866, + "attr": {}, + "npclist": "4012_248_90072#5002_248_90071#3002_248_90076#3007_248_90079#3012_248_90079#4002_248_90079", + "npcLv": [ + 673, + 673, + 673, + 673, + 673, + 673 + ], + "isboss": 1, + "ghname": "npc_ghname_2", + "npcname": "jjc_npc_name_2" + }, + "20867": { + "npcId": 20867, + "attr": {}, + "npclist": "4013_219_90072#5003_219_90071#3003_219_90076#3008_219_90079#3013_219_90079#4003_219_90079", + "npcLv": [ + 674, + 674, + 674, + 674, + 674, + 674 + ], + "isboss": 1, + "ghname": "npc_ghname_3", + "npcname": "jjc_npc_name_3" + }, + "20868": { + "npcId": 20868, + "attr": {}, + "npclist": "4014_219_90072#5004_219_90071#3004_219_90076#3009_219_90079#3014_219_90079#4004_219_90079", + "npcLv": [ + 674, + 674, + 674, + 674, + 674, + 674 + ], + "isboss": 1, + "ghname": "npc_ghname_4", + "npcname": "jjc_npc_name_4" + }, + "20869": { + "npcId": 20869, + "attr": {}, + "npclist": "4015_220_90072#5005_220_90071#3005_220_90076#3010_220_90079#3015_220_90079#4005_220_90079", + "npcLv": [ + 675, + 675, + 675, + 675, + 675, + 675 + ], + "isboss": 1, + "ghname": "npc_ghname_5", + "npcname": "jjc_npc_name_5" + }, + "20870": { + "npcId": 20870, + "attr": {}, + "npclist": "5001_220_90072#3001_220_90071#3006_220_90076#3011_220_90079#4001_220_90079#4006_220_90079", + "npcLv": [ + 675, + 675, + 675, + 675, + 675, + 675 + ], + "isboss": 1, + "ghname": "npc_ghname_6", + "npcname": "jjc_npc_name_6" + }, + "20871": { + "npcId": 20871, + "attr": {}, + "npclist": "5002_221_90072#3002_221_90071#3007_221_90076#3012_221_90079#4002_221_90079#4007_221_90079", + "npcLv": [ + 676, + 676, + 676, + 676, + 676, + 676 + ], + "isboss": 1, + "ghname": "npc_ghname_1", + "npcname": "jjc_npc_name_1" + }, + "20872": { + "npcId": 20872, + "attr": {}, + "npclist": "5003_221_90072#3003_221_90071#3008_221_90076#3013_221_90079#4003_221_90079#4008_221_90079", + "npcLv": [ + 676, + 676, + 676, + 676, + 676, + 676 + ], + "isboss": 1, + "ghname": "npc_ghname_2", + "npcname": "jjc_npc_name_2" + }, + "20873": { + "npcId": 20873, + "attr": {}, + "npclist": "5004_222_90072#3004_222_90071#3009_222_90076#3014_222_90079#4004_222_90079#4009_222_90079", + "npcLv": [ + 677, + 677, + 677, + 677, + 677, + 677 + ], + "isboss": 1, + "ghname": "npc_ghname_3", + "npcname": "jjc_npc_name_3" + }, + "20874": { + "npcId": 20874, + "attr": {}, + "npclist": "5005_222_90072#3005_222_90071#3010_222_90076#3015_222_90079#4005_222_90079#4010_222_90079", + "npcLv": [ + 677, + 677, + 677, + 677, + 677, + 677 + ], + "isboss": 1, + "ghname": "npc_ghname_4", + "npcname": "jjc_npc_name_4" + }, + "20875": { + "npcId": 20875, + "attr": {}, + "npclist": "3001_223_90072#3006_223_90071#3011_223_90076#4001_223_90079#4006_223_90079#4011_223_90079", + "npcLv": [ + 678, + 678, + 678, + 678, + 678, + 678 + ], + "isboss": 1, + "ghname": "npc_ghname_5", + "npcname": "jjc_npc_name_5" + }, + "20876": { + "npcId": 20876, + "attr": {}, + "npclist": "3002_223_90072#3007_223_90071#3012_223_90076#4002_223_90079#4007_223_90079#4012_223_90079", + "npcLv": [ + 678, + 678, + 678, + 678, + 678, + 678 + ], + "isboss": 1, + "ghname": "npc_ghname_6", + "npcname": "jjc_npc_name_6" + }, + "20877": { + "npcId": 20877, + "attr": {}, + "npclist": "3003_224_90072#3008_224_90071#3013_224_90076#4003_224_90079#4008_224_90079#4013_224_90079", + "npcLv": [ + 679, + 679, + 679, + 679, + 679, + 679 + ], + "isboss": 1, + "ghname": "npc_ghname_1", + "npcname": "jjc_npc_name_1" + }, + "20878": { + "npcId": 20878, + "attr": {}, + "npclist": "3004_224_90072#3009_224_90071#3014_224_90076#4004_224_90079#4009_224_90079#4014_224_90079", + "npcLv": [ + 679, + 679, + 679, + 679, + 679, + 679 + ], + "isboss": 1, + "ghname": "npc_ghname_2", + "npcname": "jjc_npc_name_2" + }, + "20879": { + "npcId": 20879, + "attr": {}, + "npclist": "3005_225_90072#3010_225_90071#3015_225_90076#4005_225_90079#4010_225_90079#4015_225_90079", + "npcLv": [ + 680, + 680, + 680, + 680, + 680, + 680 + ], + "isboss": 1, + "ghname": "npc_ghname_3", + "npcname": "jjc_npc_name_3" + }, + "20880": { + "npcId": 20880, + "attr": {}, + "npclist": "3006_249_90072#3011_249_90071#4001_249_90076#4006_249_90079#4011_249_90079#5001_249_90079", + "npcLv": [ + 681, + 681, + 681, + 681, + 681, + 681 + ], + "isboss": 1, + "ghname": "npc_ghname_4", + "npcname": "jjc_npc_name_4" + }, + "20881": { + "npcId": 20881, + "attr": {}, + "npclist": "3007_221_90072#3012_221_90071#4002_221_90076#4007_221_90079#4012_221_90079#5002_221_90079", + "npcLv": [ + 682, + 682, + 682, + 682, + 682, + 682 + ], + "isboss": 1, + "ghname": "npc_ghname_5", + "npcname": "jjc_npc_name_5" + }, + "20882": { + "npcId": 20882, + "attr": {}, + "npclist": "3008_222_90072#3013_222_90071#4003_222_90076#4008_222_90079#4013_222_90079#5003_222_90079", + "npcLv": [ + 683, + 683, + 683, + 683, + 683, + 683 + ], + "isboss": 1, + "ghname": "npc_ghname_6", + "npcname": "jjc_npc_name_6" + }, + "20883": { + "npcId": 20883, + "attr": {}, + "npclist": "3009_222_90072#3014_222_90071#4004_222_90076#4009_222_90079#4014_222_90079#5004_222_90079", + "npcLv": [ + 684, + 684, + 684, + 684, + 684, + 684 + ], + "isboss": 1, + "ghname": "npc_ghname_1", + "npcname": "jjc_npc_name_1" + }, + "20884": { + "npcId": 20884, + "attr": {}, + "npclist": "3010_223_90072#3015_223_90071#4005_223_90076#4010_223_90079#4015_223_90079#5005_223_90079", + "npcLv": [ + 685, + 685, + 685, + 685, + 685, + 685 + ], + "isboss": 1, + "ghname": "npc_ghname_2", + "npcname": "jjc_npc_name_2" + }, + "20885": { + "npcId": 20885, + "attr": {}, + "npclist": "3011_223_90072#4001_223_90071#4006_223_90076#4011_223_90079#5001_223_90079#3001_223_90079", + "npcLv": [ + 686, + 686, + 686, + 686, + 686, + 686 + ], + "isboss": 1, + "ghname": "npc_ghname_3", + "npcname": "jjc_npc_name_3" + }, + "20886": { + "npcId": 20886, + "attr": {}, + "npclist": "3012_224_90072#4002_224_90071#4007_224_90076#4012_224_90079#5002_224_90079#3002_224_90079", "npcLv": [ 687, 687, @@ -30287,5764 +36031,20 @@ 687 ], "isboss": 1, - "ghname": "npc_ghname_5", - "npcname": "jjc_npc_name_5" - }, - "20528": { - "npcId": 20528, - "attr": {}, - "npclist": "3004_290_90072#3009_290_90071#3014_290_90076#4004_290_90079#4009_290_90079#4014_290_90079", - "npcLv": [ - 692, - 692, - 692, - 692, - 692, - 692 - ], - "isboss": 1, - "ghname": "npc_ghname_6", - "npcname": "jjc_npc_name_6" - }, - "20529": { - "npcId": 20529, - "attr": {}, - "npclist": "3005_290_90072#3010_290_90071#3015_290_90076#4005_290_90079#4010_290_90079#4015_290_90079", - "npcLv": [ - 692, - 692, - 692, - 692, - 692, - 692 - ], - "isboss": 1, - "ghname": "npc_ghname_1", - "npcname": "jjc_npc_name_1" - }, - "20530": { - "npcId": 20530, - "attr": {}, - "npclist": "3006_303_90072#3011_303_90071#4001_303_90076#4006_303_90079#4011_303_90079#5001_303_90079", - "npcLv": [ - 692, - 692, - 692, - 692, - 692, - 692 - ], - "isboss": 1, - "ghname": "npc_ghname_2", - "npcname": "jjc_npc_name_2" - }, - "20531": { - "npcId": 20531, - "attr": {}, - "npclist": "3007_291_90072#3012_291_90071#4002_291_90076#4007_291_90079#4012_291_90079#5002_291_90079", - "npcLv": [ - 698, - 698, - 698, - 698, - 698, - 698 - ], - "isboss": 1, - "ghname": "npc_ghname_3", - "npcname": "jjc_npc_name_3" - }, - "20532": { - "npcId": 20532, - "attr": {}, - "npclist": "3008_293_90072#3013_293_90071#4003_293_90076#4008_293_90079#4013_293_90079#5003_293_90079", - "npcLv": [ - 698, - 698, - 698, - 698, - 698, - 698 - ], - "isboss": 1, - "ghname": "npc_ghname_4", - "npcname": "jjc_npc_name_4" - }, - "20533": { - "npcId": 20533, - "attr": {}, - "npclist": "3009_293_90072#3014_293_90071#4004_293_90076#4009_293_90079#4014_293_90079#5004_293_90079", - "npcLv": [ - 698, - 698, - 698, - 698, - 698, - 698 - ], - "isboss": 1, - "ghname": "npc_ghname_5", - "npcname": "jjc_npc_name_5" - }, - "20534": { - "npcId": 20534, - "attr": {}, - "npclist": "3010_294_90072#3015_294_90071#4005_294_90076#4010_294_90079#4015_294_90079#5005_294_90079", - "npcLv": [ - 703, - 703, - 703, - 703, - 703, - 703 - ], - "isboss": 1, - "ghname": "npc_ghname_6", - "npcname": "jjc_npc_name_6" - }, - "20535": { - "npcId": 20535, - "attr": {}, - "npclist": "3011_294_90072#4001_294_90071#4006_294_90076#4011_294_90079#5001_294_90079#3001_294_90079", - "npcLv": [ - 703, - 703, - 703, - 703, - 703, - 703 - ], - "isboss": 1, - "ghname": "npc_ghname_1", - "npcname": "jjc_npc_name_1" - }, - "20536": { - "npcId": 20536, - "attr": {}, - "npclist": "3012_295_90072#4002_295_90071#4007_295_90076#4012_295_90079#5002_295_90079#3002_295_90079", - "npcLv": [ - 703, - 703, - 703, - 703, - 703, - 703 - ], - "isboss": 1, - "ghname": "npc_ghname_2", - "npcname": "jjc_npc_name_2" - }, - "20537": { - "npcId": 20537, - "attr": {}, - "npclist": "3013_295_90072#4003_295_90071#4008_295_90076#4013_295_90079#5003_295_90079#3003_295_90079", - "npcLv": [ - 708, - 708, - 708, - 708, - 708, - 708 - ], - "isboss": 1, - "ghname": "npc_ghname_3", - "npcname": "jjc_npc_name_3" - }, - "20538": { - "npcId": 20538, - "attr": {}, - "npclist": "3014_296_90072#4004_296_90071#4009_296_90076#4014_296_90079#5004_296_90079#3004_296_90079", - "npcLv": [ - 708, - 708, - 708, - 708, - 708, - 708 - ], - "isboss": 1, - "ghname": "npc_ghname_4", - "npcname": "jjc_npc_name_4" - }, - "20539": { - "npcId": 20539, - "attr": {}, - "npclist": "3015_296_90072#4005_296_90071#4010_296_90076#4015_296_90079#5005_296_90079#3005_296_90079", - "npcLv": [ - 708, - 708, - 708, - 708, - 708, - 708 - ], - "isboss": 1, - "ghname": "npc_ghname_5", - "npcname": "jjc_npc_name_5" - }, - "20540": { - "npcId": 20540, - "attr": {}, - "npclist": "4001_307_90072#4006_307_90071#4011_307_90076#5001_307_90079#3001_307_90079#3006_307_90079", - "npcLv": [ - 714, - 714, - 714, - 714, - 714, - 714 - ], - "isboss": 1, - "ghname": "npc_ghname_6", - "npcname": "jjc_npc_name_6" - }, - "20541": { - "npcId": 20541, - "attr": {}, - "npclist": "4002_291_90072#4007_291_90071#4012_291_90076#5002_291_90079#3002_291_90079#3007_291_90079", - "npcLv": [ - 714, - 714, - 714, - 714, - 714, - 714 - ], - "isboss": 1, - "ghname": "npc_ghname_1", - "npcname": "jjc_npc_name_1" - }, - "20542": { - "npcId": 20542, - "attr": {}, - "npclist": "4003_292_90072#4008_292_90071#4013_292_90076#5003_292_90079#3003_292_90079#3008_292_90079", - "npcLv": [ - 714, - 714, - 714, - 714, - 714, - 714 - ], - "isboss": 1, - "ghname": "npc_ghname_2", - "npcname": "jjc_npc_name_2" - }, - "20543": { - "npcId": 20543, - "attr": {}, - "npclist": "4004_292_90072#4009_292_90071#4014_292_90076#5004_292_90079#3004_292_90079#3009_292_90079", - "npcLv": [ - 719, - 719, - 719, - 719, - 719, - 719 - ], - "isboss": 1, - "ghname": "npc_ghname_3", - "npcname": "jjc_npc_name_3" - }, - "20544": { - "npcId": 20544, - "attr": {}, - "npclist": "4005_293_90072#4010_293_90071#4015_293_90076#5005_293_90079#3005_293_90079#3010_293_90079", - "npcLv": [ - 719, - 719, - 719, - 719, - 719, - 719 - ], - "isboss": 1, - "ghname": "npc_ghname_4", - "npcname": "jjc_npc_name_4" - }, - "20545": { - "npcId": 20545, - "attr": {}, - "npclist": "4006_293_90072#4011_293_90071#5001_293_90076#3001_293_90079#3006_293_90079#3011_293_90079", - "npcLv": [ - 719, - 719, - 719, - 719, - 719, - 719 - ], - "isboss": 1, - "ghname": "npc_ghname_5", - "npcname": "jjc_npc_name_5" - }, - "20546": { - "npcId": 20546, - "attr": {}, - "npclist": "4007_295_90072#4012_295_90071#5002_295_90076#3002_295_90079#3007_295_90079#3012_295_90079", - "npcLv": [ - 725, - 725, - 725, - 725, - 725, - 725 - ], - "isboss": 1, - "ghname": "npc_ghname_6", - "npcname": "jjc_npc_name_6" - }, - "20547": { - "npcId": 20547, - "attr": {}, - "npclist": "4008_295_90072#4013_295_90071#5003_295_90076#3003_295_90079#3008_295_90079#3013_295_90079", - "npcLv": [ - 725, - 725, - 725, - 725, - 725, - 725 - ], - "isboss": 1, - "ghname": "npc_ghname_1", - "npcname": "jjc_npc_name_1" - }, - "20548": { - "npcId": 20548, - "attr": {}, - "npclist": "4009_296_90072#4014_296_90071#5004_296_90076#3004_296_90079#3009_296_90079#3014_296_90079", - "npcLv": [ - 725, - 725, - 725, - 725, - 725, - 725 - ], - "isboss": 1, - "ghname": "npc_ghname_2", - "npcname": "jjc_npc_name_2" - }, - "20549": { - "npcId": 20549, - "attr": {}, - "npclist": "4010_296_90072#4015_296_90071#5005_296_90076#3005_296_90079#3010_296_90079#3015_296_90079", - "npcLv": [ - 730, - 730, - 730, - 730, - 730, - 730 - ], - "isboss": 1, - "ghname": "npc_ghname_3", - "npcname": "jjc_npc_name_3" - }, - "20550": { - "npcId": 20550, - "attr": {}, - "npclist": "4011_311_90072#5001_311_90071#3001_311_90076#3006_311_90079#3011_311_90079#4001_311_90079", - "npcLv": [ - 730, - 730, - 730, - 730, - 730, - 730 - ], - "isboss": 1, - "ghname": "npc_ghname_4", - "npcname": "jjc_npc_name_4" - }, - "20551": { - "npcId": 20551, - "attr": {}, - "npclist": "4012_297_90072#5002_297_90071#3002_297_90076#3007_297_90079#3012_297_90079#4002_297_90079", - "npcLv": [ - 730, - 730, - 730, - 730, - 730, - 730 - ], - "isboss": 1, - "ghname": "npc_ghname_5", - "npcname": "jjc_npc_name_5" - }, - "20552": { - "npcId": 20552, - "attr": {}, - "npclist": "4013_298_90072#5003_298_90071#3003_298_90076#3008_298_90079#3013_298_90079#4003_298_90079", - "npcLv": [ - 735, - 735, - 735, - 735, - 735, - 735 - ], - "isboss": 1, - "ghname": "npc_ghname_6", - "npcname": "jjc_npc_name_6" - }, - "20553": { - "npcId": 20553, - "attr": {}, - "npclist": "4014_298_90072#5004_298_90071#3004_298_90076#3009_298_90079#3014_298_90079#4004_298_90079", - "npcLv": [ - 735, - 735, - 735, - 735, - 735, - 735 - ], - "isboss": 1, - "ghname": "npc_ghname_1", - "npcname": "jjc_npc_name_1" - }, - "20554": { - "npcId": 20554, - "attr": {}, - "npclist": "4015_300_90072#5005_300_90071#3005_300_90076#3010_300_90079#3015_300_90079#4005_300_90079", - "npcLv": [ - 735, - 735, - 735, - 735, - 735, - 735 - ], - "isboss": 1, - "ghname": "npc_ghname_2", - "npcname": "jjc_npc_name_2" - }, - "20555": { - "npcId": 20555, - "attr": {}, - "npclist": "5001_300_90072#3001_300_90071#3006_300_90076#3011_300_90079#4001_300_90079#4006_300_90079", - "npcLv": [ - 741, - 741, - 741, - 741, - 741, - 741 - ], - "isboss": 1, - "ghname": "npc_ghname_3", - "npcname": "jjc_npc_name_3" - }, - "20556": { - "npcId": 20556, - "attr": {}, - "npclist": "5002_301_90072#3002_301_90071#3007_301_90076#3012_301_90079#4002_301_90079#4007_301_90079", - "npcLv": [ - 741, - 741, - 741, - 741, - 741, - 741 - ], - "isboss": 1, - "ghname": "npc_ghname_4", - "npcname": "jjc_npc_name_4" - }, - "20557": { - "npcId": 20557, - "attr": {}, - "npclist": "5003_301_90072#3003_301_90071#3008_301_90076#3013_301_90079#4003_301_90079#4008_301_90079", - "npcLv": [ - 741, - 741, - 741, - 741, - 741, - 741 - ], - "isboss": 1, - "ghname": "npc_ghname_5", - "npcname": "jjc_npc_name_5" - }, - "20558": { - "npcId": 20558, - "attr": {}, - "npclist": "5004_302_90072#3004_302_90071#3009_302_90076#3014_302_90079#4004_302_90079#4009_302_90079", - "npcLv": [ - 746, - 746, - 746, - 746, - 746, - 746 - ], - "isboss": 1, - "ghname": "npc_ghname_6", - "npcname": "jjc_npc_name_6" - }, - "20559": { - "npcId": 20559, - "attr": {}, - "npclist": "5005_302_90072#3005_302_90071#3010_302_90076#3015_302_90079#4005_302_90079#4010_302_90079", - "npcLv": [ - 746, - 746, - 746, - 746, - 746, - 746 - ], - "isboss": 1, - "ghname": "npc_ghname_1", - "npcname": "jjc_npc_name_1" - }, - "20560": { - "npcId": 20560, - "attr": {}, - "npclist": "3001_315_90072#3006_315_90071#3011_315_90076#4001_315_90079#4006_315_90079#4011_315_90079", - "npcLv": [ - 746, - 746, - 746, - 746, - 746, - 746 - ], - "isboss": 1, - "ghname": "npc_ghname_2", - "npcname": "jjc_npc_name_2" - }, - "20561": { - "npcId": 20561, - "attr": {}, - "npclist": "3002_303_90072#3007_303_90071#3012_303_90076#4002_303_90079#4007_303_90079#4012_303_90079", - "npcLv": [ - 752, - 752, - 752, - 752, - 752, - 752 - ], - "isboss": 1, - "ghname": "npc_ghname_3", - "npcname": "jjc_npc_name_3" - }, - "20562": { - "npcId": 20562, - "attr": {}, - "npclist": "3003_305_90072#3008_305_90071#3013_305_90076#4003_305_90079#4008_305_90079#4013_305_90079", - "npcLv": [ - 752, - 752, - 752, - 752, - 752, - 752 - ], - "isboss": 1, - "ghname": "npc_ghname_4", - "npcname": "jjc_npc_name_4" - }, - "20563": { - "npcId": 20563, - "attr": {}, - "npclist": "3004_305_90072#3009_305_90071#3014_305_90076#4004_305_90079#4009_305_90079#4014_305_90079", - "npcLv": [ - 752, - 752, - 752, - 752, - 752, - 752 - ], - "isboss": 1, - "ghname": "npc_ghname_5", - "npcname": "jjc_npc_name_5" - }, - "20564": { - "npcId": 20564, - "attr": {}, - "npclist": "3005_306_90072#3010_306_90071#3015_306_90076#4005_306_90079#4010_306_90079#4015_306_90079", - "npcLv": [ - 757, - 757, - 757, - 757, - 757, - 757 - ], - "isboss": 1, - "ghname": "npc_ghname_6", - "npcname": "jjc_npc_name_6" - }, - "20565": { - "npcId": 20565, - "attr": {}, - "npclist": "3006_306_90072#3011_306_90071#4001_306_90076#4006_306_90079#4011_306_90079#5001_306_90079", - "npcLv": [ - 757, - 757, - 757, - 757, - 757, - 757 - ], - "isboss": 1, - "ghname": "npc_ghname_1", - "npcname": "jjc_npc_name_1" - }, - "20566": { - "npcId": 20566, - "attr": {}, - "npclist": "3007_307_90072#3012_307_90071#4002_307_90076#4007_307_90079#4012_307_90079#5002_307_90079", - "npcLv": [ - 757, - 757, - 757, - 757, - 757, - 757 - ], - "isboss": 1, - "ghname": "npc_ghname_2", - "npcname": "jjc_npc_name_2" - }, - "20567": { - "npcId": 20567, - "attr": {}, - "npclist": "3008_307_90072#3013_307_90071#4003_307_90076#4008_307_90079#4013_307_90079#5003_307_90079", - "npcLv": [ - 763, - 763, - 763, - 763, - 763, - 763 - ], - "isboss": 1, - "ghname": "npc_ghname_3", - "npcname": "jjc_npc_name_3" - }, - "20568": { - "npcId": 20568, - "attr": {}, - "npclist": "3009_308_90072#3014_308_90071#4004_308_90076#4009_308_90079#4014_308_90079#5004_308_90079", - "npcLv": [ - 763, - 763, - 763, - 763, - 763, - 763 - ], - "isboss": 1, - "ghname": "npc_ghname_4", - "npcname": "jjc_npc_name_4" - }, - "20569": { - "npcId": 20569, - "attr": {}, - "npclist": "3010_308_90072#3015_308_90071#4005_308_90076#4010_308_90079#4015_308_90079#5005_308_90079", - "npcLv": [ - 763, - 763, - 763, - 763, - 763, - 763 - ], - "isboss": 1, - "ghname": "npc_ghname_5", - "npcname": "jjc_npc_name_5" - }, - "20570": { - "npcId": 20570, - "attr": {}, - "npclist": "3011_319_90072#4001_319_90071#4006_319_90076#4011_319_90079#5001_319_90079#3001_319_90079", - "npcLv": [ - 768, - 768, - 768, - 768, - 768, - 768 - ], - "isboss": 1, - "ghname": "npc_ghname_6", - "npcname": "jjc_npc_name_6" - }, - "20571": { - "npcId": 20571, - "attr": {}, - "npclist": "3012_310_90072#4002_310_90071#4007_310_90076#4012_310_90079#5002_310_90079#3002_310_90079", - "npcLv": [ - 768, - 768, - 768, - 768, - 768, - 768 - ], - "isboss": 1, - "ghname": "npc_ghname_1", - "npcname": "jjc_npc_name_1" - }, - "20572": { - "npcId": 20572, - "attr": {}, - "npclist": "3013_307_90072#4003_307_90071#4008_307_90076#4013_307_90079#5003_307_90079#3003_307_90079", - "npcLv": [ - 768, - 768, - 768, - 768, - 768, - 768 - ], - "isboss": 1, - "ghname": "npc_ghname_2", - "npcname": "jjc_npc_name_2" - }, - "20573": { - "npcId": 20573, - "attr": {}, - "npclist": "3014_307_90072#4004_307_90071#4009_307_90076#4014_307_90079#5004_307_90079#3004_307_90079", - "npcLv": [ - 774, - 774, - 774, - 774, - 774, - 774 - ], - "isboss": 1, - "ghname": "npc_ghname_3", - "npcname": "jjc_npc_name_3" - }, - "20574": { - "npcId": 20574, - "attr": {}, - "npclist": "3015_308_90072#4005_308_90071#4010_308_90076#4015_308_90079#5005_308_90079#3005_308_90079", - "npcLv": [ - 774, - 774, - 774, - 774, - 774, - 774 - ], - "isboss": 1, - "ghname": "npc_ghname_4", - "npcname": "jjc_npc_name_4" - }, - "20575": { - "npcId": 20575, - "attr": {}, - "npclist": "4001_308_90072#4006_308_90071#4011_308_90076#5001_308_90079#3001_308_90079#3006_308_90079", - "npcLv": [ - 774, - 774, - 774, - 774, - 774, - 774 - ], - "isboss": 1, - "ghname": "npc_ghname_5", - "npcname": "jjc_npc_name_5" - }, - "20576": { - "npcId": 20576, - "attr": {}, - "npclist": "4002_309_90072#4007_309_90071#4012_309_90076#5002_309_90079#3002_309_90079#3007_309_90079", - "npcLv": [ - 779, - 779, - 779, - 779, - 779, - 779 - ], - "isboss": 1, - "ghname": "npc_ghname_6", - "npcname": "jjc_npc_name_6" - }, - "20577": { - "npcId": 20577, - "attr": {}, - "npclist": "4003_309_90072#4008_309_90071#4013_309_90076#5003_309_90079#3003_309_90079#3008_309_90079", - "npcLv": [ - 779, - 779, - 779, - 779, - 779, - 779 - ], - "isboss": 1, - "ghname": "npc_ghname_1", - "npcname": "jjc_npc_name_1" - }, - "20578": { - "npcId": 20578, - "attr": {}, - "npclist": "4004_311_90072#4009_311_90071#4014_311_90076#5004_311_90079#3004_311_90079#3009_311_90079", - "npcLv": [ - 779, - 779, - 779, - 779, - 779, - 779 - ], - "isboss": 1, - "ghname": "npc_ghname_2", - "npcname": "jjc_npc_name_2" - }, - "20579": { - "npcId": 20579, - "attr": {}, - "npclist": "4005_311_90072#4010_311_90071#4015_311_90076#5005_311_90079#3005_311_90079#3010_311_90079", - "npcLv": [ - 785, - 785, - 785, - 785, - 785, - 785 - ], - "isboss": 1, - "ghname": "npc_ghname_3", - "npcname": "jjc_npc_name_3" - }, - "20580": { - "npcId": 20580, - "attr": {}, - "npclist": "4006_326_90072#4011_326_90071#5001_326_90076#3001_326_90079#3006_326_90079#3011_326_90079", - "npcLv": [ - 785, - 785, - 785, - 785, - 785, - 785 - ], - "isboss": 1, - "ghname": "npc_ghname_4", - "npcname": "jjc_npc_name_4" - }, - "20581": { - "npcId": 20581, - "attr": {}, - "npclist": "4007_316_90072#4012_316_90071#5002_316_90076#3002_316_90079#3007_316_90079#3012_316_90079", - "npcLv": [ - 785, - 785, - 785, - 785, - 785, - 785 - ], - "isboss": 1, - "ghname": "npc_ghname_5", - "npcname": "jjc_npc_name_5" - }, - "20582": { - "npcId": 20582, - "attr": {}, - "npclist": "4008_317_90072#4013_317_90071#5003_317_90076#3003_317_90079#3008_317_90079#3013_317_90079", - "npcLv": [ - 790, - 790, - 790, - 790, - 790, - 790 - ], - "isboss": 1, - "ghname": "npc_ghname_6", - "npcname": "jjc_npc_name_6" - }, - "20583": { - "npcId": 20583, - "attr": {}, - "npclist": "4009_317_90072#4014_317_90071#5004_317_90076#3004_317_90079#3009_317_90079#3014_317_90079", - "npcLv": [ - 790, - 790, - 790, - 790, - 790, - 790 - ], - "isboss": 1, - "ghname": "npc_ghname_1", - "npcname": "jjc_npc_name_1" - }, - "20584": { - "npcId": 20584, - "attr": {}, - "npclist": "4010_318_90072#4015_318_90071#5005_318_90076#3005_318_90079#3010_318_90079#3015_318_90079", - "npcLv": [ - 790, - 790, - 790, - 790, - 790, - 790 - ], - "isboss": 1, - "ghname": "npc_ghname_2", - "npcname": "jjc_npc_name_2" - }, - "20585": { - "npcId": 20585, - "attr": {}, - "npclist": "4011_318_90072#5001_318_90071#3001_318_90076#3006_318_90079#3011_318_90079#4001_318_90079", - "npcLv": [ - 796, - 796, - 796, - 796, - 796, - 796 - ], - "isboss": 1, - "ghname": "npc_ghname_3", - "npcname": "jjc_npc_name_3" - }, - "20586": { - "npcId": 20586, - "attr": {}, - "npclist": "4012_320_90072#5002_320_90071#3002_320_90076#3007_320_90079#3012_320_90079#4002_320_90079", - "npcLv": [ - 796, - 796, - 796, - 796, - 796, - 796 - ], - "isboss": 1, - "ghname": "npc_ghname_4", - "npcname": "jjc_npc_name_4" - }, - "20587": { - "npcId": 20587, - "attr": {}, - "npclist": "4013_320_90072#5003_320_90071#3003_320_90076#3008_320_90079#3013_320_90079#4003_320_90079", - "npcLv": [ - 796, - 796, - 796, - 796, - 796, - 796 - ], - "isboss": 1, - "ghname": "npc_ghname_5", - "npcname": "jjc_npc_name_5" - }, - "20588": { - "npcId": 20588, - "attr": {}, - "npclist": "4014_321_90072#5004_321_90071#3004_321_90076#3009_321_90079#3014_321_90079#4004_321_90079", - "npcLv": [ - 801, - 801, - 801, - 801, - 801, - 801 - ], - "isboss": 1, - "ghname": "npc_ghname_6", - "npcname": "jjc_npc_name_6" - }, - "20589": { - "npcId": 20589, - "attr": {}, - "npclist": "4015_321_90072#5005_321_90071#3005_321_90076#3010_321_90079#3015_321_90079#4005_321_90079", - "npcLv": [ - 801, - 801, - 801, - 801, - 801, - 801 - ], - "isboss": 1, - "ghname": "npc_ghname_1", - "npcname": "jjc_npc_name_1" - }, - "20590": { - "npcId": 20590, - "attr": {}, - "npclist": "5001_332_90072#3001_332_90071#3006_332_90076#3011_332_90079#4001_332_90079#4006_332_90079", - "npcLv": [ - 801, - 801, - 801, - 801, - 801, - 801 - ], - "isboss": 1, - "ghname": "npc_ghname_2", - "npcname": "jjc_npc_name_2" - }, - "20591": { - "npcId": 20591, - "attr": {}, - "npclist": "5002_322_90072#3002_322_90071#3007_322_90076#3012_322_90079#4002_322_90079#4007_322_90079", - "npcLv": [ - 807, - 807, - 807, - 807, - 807, - 807 - ], - "isboss": 1, - "ghname": "npc_ghname_3", - "npcname": "jjc_npc_name_3" - }, - "20592": { - "npcId": 20592, - "attr": {}, - "npclist": "5003_323_90072#3003_323_90071#3008_323_90076#3013_323_90079#4003_323_90079#4008_323_90079", - "npcLv": [ - 807, - 807, - 807, - 807, - 807, - 807 - ], - "isboss": 1, - "ghname": "npc_ghname_4", - "npcname": "jjc_npc_name_4" - }, - "20593": { - "npcId": 20593, - "attr": {}, - "npclist": "5004_323_90072#3004_323_90071#3009_323_90076#3014_323_90079#4004_323_90079#4009_323_90079", - "npcLv": [ - 807, - 807, - 807, - 807, - 807, - 807 - ], - "isboss": 1, - "ghname": "npc_ghname_5", - "npcname": "jjc_npc_name_5" - }, - "20594": { - "npcId": 20594, - "attr": {}, - "npclist": "5005_325_90072#3005_325_90071#3010_325_90076#3015_325_90079#4005_325_90079#4010_325_90079", - "npcLv": [ - 812, - 812, - 812, - 812, - 812, - 812 - ], - "isboss": 1, - "ghname": "npc_ghname_6", - "npcname": "jjc_npc_name_6" - }, - "20595": { - "npcId": 20595, - "attr": {}, - "npclist": "3001_325_90072#3006_325_90071#3011_325_90076#4001_325_90079#4006_325_90079#4011_325_90079", - "npcLv": [ - 812, - 812, - 812, - 812, - 812, - 812 - ], - "isboss": 1, - "ghname": "npc_ghname_1", - "npcname": "jjc_npc_name_1" - }, - "20596": { - "npcId": 20596, - "attr": {}, - "npclist": "3002_326_90072#3007_326_90071#3012_326_90076#4002_326_90079#4007_326_90079#4012_326_90079", - "npcLv": [ - 812, - 812, - 812, - 812, - 812, - 812 - ], - "isboss": 1, - "ghname": "npc_ghname_2", - "npcname": "jjc_npc_name_2" - }, - "20597": { - "npcId": 20597, - "attr": {}, - "npclist": "3003_326_90072#3008_326_90071#3013_326_90076#4003_326_90079#4008_326_90079#4013_326_90079", - "npcLv": [ - 818, - 818, - 818, - 818, - 818, - 818 - ], - "isboss": 1, - "ghname": "npc_ghname_3", - "npcname": "jjc_npc_name_3" - }, - "20598": { - "npcId": 20598, - "attr": {}, - "npclist": "3004_327_90072#3009_327_90071#3014_327_90076#4004_327_90079#4009_327_90079#4014_327_90079", - "npcLv": [ - 818, - 818, - 818, - 818, - 818, - 818 - ], - "isboss": 1, - "ghname": "npc_ghname_4", - "npcname": "jjc_npc_name_4" - }, - "20599": { - "npcId": 20599, - "attr": {}, - "npclist": "3005_327_90072#3010_327_90071#3015_327_90076#4005_327_90079#4010_327_90079#4015_327_90079", - "npcLv": [ - 818, - 818, - 818, - 818, - 818, - 818 - ], - "isboss": 1, - "ghname": "npc_ghname_5", - "npcname": "jjc_npc_name_5" - }, - "20600": { - "npcId": 20600, - "attr": {}, - "npclist": "3006_339_90072#3011_339_90071#4001_339_90076#4006_339_90079#4011_339_90079#5001_339_90079", - "npcLv": [ - 823, - 823, - 823, - 823, - 823, - 823 - ], - "isboss": 1, - "ghname": "npc_ghname_6", - "npcname": "jjc_npc_name_6" - }, - "20601": { - "npcId": 20601, - "attr": {}, - "npclist": "3007_328_90072#3012_328_90071#4002_328_90076#4007_328_90079#4012_328_90079#5002_328_90079", - "npcLv": [ - 823, - 823, - 823, - 823, - 823, - 823 - ], - "isboss": 1, - "ghname": "npc_ghname_1", - "npcname": "jjc_npc_name_1" - }, - "20602": { - "npcId": 20602, - "attr": {}, - "npclist": "3008_330_90072#3013_330_90071#4003_330_90076#4008_330_90079#4013_330_90079#5003_330_90079", - "npcLv": [ - 823, - 823, - 823, - 823, - 823, - 823 - ], - "isboss": 1, - "ghname": "npc_ghname_2", - "npcname": "jjc_npc_name_2" - }, - "20603": { - "npcId": 20603, - "attr": {}, - "npclist": "3009_330_90072#3014_330_90071#4004_330_90076#4009_330_90079#4014_330_90079#5004_330_90079", - "npcLv": [ - 829, - 829, - 829, - 829, - 829, - 829 - ], - "isboss": 1, - "ghname": "npc_ghname_3", - "npcname": "jjc_npc_name_3" - }, - "20604": { - "npcId": 20604, - "attr": {}, - "npclist": "3010_331_90072#3015_331_90071#4005_331_90076#4010_331_90079#4015_331_90079#5005_331_90079", - "npcLv": [ - 829, - 829, - 829, - 829, - 829, - 829 - ], - "isboss": 1, - "ghname": "npc_ghname_4", - "npcname": "jjc_npc_name_4" - }, - "20605": { - "npcId": 20605, - "attr": {}, - "npclist": "3011_331_90072#4001_331_90071#4006_331_90076#4011_331_90079#5001_331_90079#3001_331_90079", - "npcLv": [ - 829, - 829, - 829, - 829, - 829, - 829 - ], - "isboss": 1, - "ghname": "npc_ghname_5", - "npcname": "jjc_npc_name_5" - }, - "20606": { - "npcId": 20606, - "attr": {}, - "npclist": "3012_332_90072#4002_332_90071#4007_332_90076#4012_332_90079#5002_332_90079#3002_332_90079", - "npcLv": [ - 834, - 834, - 834, - 834, - 834, - 834 - ], - "isboss": 1, - "ghname": "npc_ghname_6", - "npcname": "jjc_npc_name_6" - }, - "20607": { - "npcId": 20607, - "attr": {}, - "npclist": "3013_332_90072#4003_332_90071#4008_332_90076#4013_332_90079#5003_332_90079#3003_332_90079", - "npcLv": [ - 834, - 834, - 834, - 834, - 834, - 834 - ], - "isboss": 1, - "ghname": "npc_ghname_1", - "npcname": "jjc_npc_name_1" - }, - "20608": { - "npcId": 20608, - "attr": {}, - "npclist": "3014_333_90072#4004_333_90071#4009_333_90076#4014_333_90079#5004_333_90079#3004_333_90079", - "npcLv": [ - 834, - 834, - 834, - 834, - 834, - 834 - ], - "isboss": 1, - "ghname": "npc_ghname_2", - "npcname": "jjc_npc_name_2" - }, - "20609": { - "npcId": 20609, - "attr": {}, - "npclist": "3015_333_90072#4005_333_90071#4010_333_90076#4015_333_90079#5005_333_90079#3005_333_90079", - "npcLv": [ - 840, - 840, - 840, - 840, - 840, - 840 - ], - "isboss": 1, - "ghname": "npc_ghname_3", - "npcname": "jjc_npc_name_3" - }, - "20610": { - "npcId": 20610, - "attr": {}, - "npclist": "4001_345_90072#4006_345_90071#4011_345_90076#5001_345_90079#3001_345_90079#3006_345_90079", - "npcLv": [ - 840, - 840, - 840, - 840, - 840, - 840 - ], - "isboss": 1, - "ghname": "npc_ghname_4", - "npcname": "jjc_npc_name_4" - }, - "20611": { - "npcId": 20611, - "attr": {}, - "npclist": "4002_335_90072#4007_335_90071#4012_335_90076#5002_335_90079#3002_335_90079#3007_335_90079", - "npcLv": [ - 840, - 840, - 840, - 840, - 840, - 840 - ], - "isboss": 1, - "ghname": "npc_ghname_5", - "npcname": "jjc_npc_name_5" - }, - "20612": { - "npcId": 20612, - "attr": {}, - "npclist": "4003_336_90072#4008_336_90071#4013_336_90076#5003_336_90079#3003_336_90079#3008_336_90079", - "npcLv": [ - 845, - 845, - 845, - 845, - 845, - 845 - ], - "isboss": 1, - "ghname": "npc_ghname_6", - "npcname": "jjc_npc_name_6" - }, - "20613": { - "npcId": 20613, - "attr": {}, - "npclist": "4004_336_90072#4009_336_90071#4014_336_90076#5004_336_90079#3004_336_90079#3009_336_90079", - "npcLv": [ - 845, - 845, - 845, - 845, - 845, - 845 - ], - "isboss": 1, - "ghname": "npc_ghname_1", - "npcname": "jjc_npc_name_1" - }, - "20614": { - "npcId": 20614, - "attr": {}, - "npclist": "4005_337_90072#4010_337_90071#4015_337_90076#5005_337_90079#3005_337_90079#3010_337_90079", - "npcLv": [ - 845, - 845, - 845, - 845, - 845, - 845 - ], - "isboss": 1, - "ghname": "npc_ghname_2", - "npcname": "jjc_npc_name_2" - }, - "20615": { - "npcId": 20615, - "attr": {}, - "npclist": "4006_337_90072#4011_337_90071#5001_337_90076#3001_337_90079#3006_337_90079#3011_337_90079", - "npcLv": [ - 851, - 851, - 851, - 851, - 851, - 851 - ], - "isboss": 1, - "ghname": "npc_ghname_3", - "npcname": "jjc_npc_name_3" - }, - "20616": { - "npcId": 20616, - "attr": {}, - "npclist": "4007_338_90072#4012_338_90071#5002_338_90076#3002_338_90079#3007_338_90079#3012_338_90079", - "npcLv": [ - 851, - 851, - 851, - 851, - 851, - 851 - ], - "isboss": 1, - "ghname": "npc_ghname_4", - "npcname": "jjc_npc_name_4" - }, - "20617": { - "npcId": 20617, - "attr": {}, - "npclist": "4008_338_90072#4013_338_90071#5003_338_90076#3003_338_90079#3008_338_90079#3013_338_90079", - "npcLv": [ - 851, - 851, - 851, - 851, - 851, - 851 - ], - "isboss": 1, - "ghname": "npc_ghname_5", - "npcname": "jjc_npc_name_5" - }, - "20618": { - "npcId": 20618, - "attr": {}, - "npclist": "4009_340_90072#4014_340_90071#5004_340_90076#3004_340_90079#3009_340_90079#3014_340_90079", - "npcLv": [ - 856, - 856, - 856, - 856, - 856, - 856 - ], - "isboss": 1, - "ghname": "npc_ghname_6", - "npcname": "jjc_npc_name_6" - }, - "20619": { - "npcId": 20619, - "attr": {}, - "npclist": "4010_340_90072#4015_340_90071#5005_340_90076#3005_340_90079#3010_340_90079#3015_340_90079", - "npcLv": [ - 856, - 856, - 856, - 856, - 856, - 856 - ], - "isboss": 1, - "ghname": "npc_ghname_1", - "npcname": "jjc_npc_name_1" - }, - "20620": { - "npcId": 20620, - "attr": {}, - "npclist": "4011_352_90072#5001_352_90071#3001_352_90076#3006_352_90079#3011_352_90079#4001_352_90079", - "npcLv": [ - 856, - 856, - 856, - 856, - 856, - 856 - ], - "isboss": 1, - "ghname": "npc_ghname_2", - "npcname": "jjc_npc_name_2" - }, - "20621": { - "npcId": 20621, - "attr": {}, - "npclist": "4012_341_90072#5002_341_90071#3002_341_90076#3007_341_90079#3012_341_90079#4002_341_90079", - "npcLv": [ - 862, - 862, - 862, - 862, - 862, - 862 - ], - "isboss": 1, - "ghname": "npc_ghname_3", - "npcname": "jjc_npc_name_3" - }, - "20622": { - "npcId": 20622, - "attr": {}, - "npclist": "4013_342_90072#5003_342_90071#3003_342_90076#3008_342_90079#3013_342_90079#4003_342_90079", - "npcLv": [ - 862, - 862, - 862, - 862, - 862, - 862 - ], - "isboss": 1, - "ghname": "npc_ghname_4", - "npcname": "jjc_npc_name_4" - }, - "20623": { - "npcId": 20623, - "attr": {}, - "npclist": "4014_342_90072#5004_342_90071#3004_342_90076#3009_342_90079#3014_342_90079#4004_342_90079", - "npcLv": [ - 862, - 862, - 862, - 862, - 862, - 862 - ], - "isboss": 1, - "ghname": "npc_ghname_5", - "npcname": "jjc_npc_name_5" - }, - "20624": { - "npcId": 20624, - "attr": {}, - "npclist": "4015_343_90072#5005_343_90071#3005_343_90076#3010_343_90079#3015_343_90079#4005_343_90079", - "npcLv": [ - 867, - 867, - 867, - 867, - 867, - 867 - ], - "isboss": 1, - "ghname": "npc_ghname_6", - "npcname": "jjc_npc_name_6" - }, - "20625": { - "npcId": 20625, - "attr": {}, - "npclist": "5001_343_90072#3001_343_90071#3006_343_90076#3011_343_90079#4001_343_90079#4006_343_90079", - "npcLv": [ - 867, - 867, - 867, - 867, - 867, - 867 - ], - "isboss": 1, - "ghname": "npc_ghname_1", - "npcname": "jjc_npc_name_1" - }, - "20626": { - "npcId": 20626, - "attr": {}, - "npclist": "5002_345_90072#3002_345_90071#3007_345_90076#3012_345_90079#4002_345_90079#4007_345_90079", - "npcLv": [ - 867, - 867, - 867, - 867, - 867, - 867 - ], - "isboss": 1, - "ghname": "npc_ghname_2", - "npcname": "jjc_npc_name_2" - }, - "20627": { - "npcId": 20627, - "attr": {}, - "npclist": "5003_345_90072#3003_345_90071#3008_345_90076#3013_345_90079#4003_345_90079#4008_345_90079", - "npcLv": [ - 873, - 873, - 873, - 873, - 873, - 873 - ], - "isboss": 1, - "ghname": "npc_ghname_3", - "npcname": "jjc_npc_name_3" - }, - "20628": { - "npcId": 20628, - "attr": {}, - "npclist": "5004_346_90072#3004_346_90071#3009_346_90076#3014_346_90079#4004_346_90079#4009_346_90079", - "npcLv": [ - 873, - 873, - 873, - 873, - 873, - 873 - ], - "isboss": 1, - "ghname": "npc_ghname_4", - "npcname": "jjc_npc_name_4" - }, - "20629": { - "npcId": 20629, - "attr": {}, - "npclist": "5005_346_90072#3005_346_90071#3010_346_90076#3015_346_90079#4005_346_90079#4010_346_90079", - "npcLv": [ - 873, - 873, - 873, - 873, - 873, - 873 - ], - "isboss": 1, - "ghname": "npc_ghname_5", - "npcname": "jjc_npc_name_5" - }, - "20630": { - "npcId": 20630, - "attr": {}, - "npclist": "3001_358_90072#3006_358_90071#3011_358_90076#4001_358_90079#4006_358_90079#4011_358_90079", - "npcLv": [ - 879, - 879, - 879, - 879, - 879, - 879 - ], - "isboss": 1, - "ghname": "npc_ghname_6", - "npcname": "jjc_npc_name_6" - }, - "20631": { - "npcId": 20631, - "attr": {}, - "npclist": "3002_347_90072#3007_347_90071#3012_347_90076#4002_347_90079#4007_347_90079#4012_347_90079", - "npcLv": [ - 879, - 879, - 879, - 879, - 879, - 879 - ], - "isboss": 1, - "ghname": "npc_ghname_1", - "npcname": "jjc_npc_name_1" - }, - "20632": { - "npcId": 20632, - "attr": {}, - "npclist": "3003_348_90072#3008_348_90071#3013_348_90076#4003_348_90079#4008_348_90079#4013_348_90079", - "npcLv": [ - 879, - 879, - 879, - 879, - 879, - 879 - ], - "isboss": 1, - "ghname": "npc_ghname_2", - "npcname": "jjc_npc_name_2" - }, - "20633": { - "npcId": 20633, - "attr": {}, - "npclist": "3004_348_90072#3009_348_90071#3014_348_90076#4004_348_90079#4009_348_90079#4014_348_90079", - "npcLv": [ - 884, - 884, - 884, - 884, - 884, - 884 - ], - "isboss": 1, - "ghname": "npc_ghname_3", - "npcname": "jjc_npc_name_3" - }, - "20634": { - "npcId": 20634, - "attr": {}, - "npclist": "3005_350_90072#3010_350_90071#3015_350_90076#4005_350_90079#4010_350_90079#4015_350_90079", - "npcLv": [ - 884, - 884, - 884, - 884, - 884, - 884 - ], - "isboss": 1, - "ghname": "npc_ghname_4", - "npcname": "jjc_npc_name_4" - }, - "20635": { - "npcId": 20635, - "attr": {}, - "npclist": "3006_350_90072#3011_350_90071#4001_350_90076#4006_350_90079#4011_350_90079#5001_350_90079", - "npcLv": [ - 884, - 884, - 884, - 884, - 884, - 884 - ], - "isboss": 1, - "ghname": "npc_ghname_5", - "npcname": "jjc_npc_name_5" - }, - "20636": { - "npcId": 20636, - "attr": {}, - "npclist": "3007_351_90072#3012_351_90071#4002_351_90076#4007_351_90079#4012_351_90079#5002_351_90079", - "npcLv": [ - 890, - 890, - 890, - 890, - 890, - 890 - ], - "isboss": 1, - "ghname": "npc_ghname_6", - "npcname": "jjc_npc_name_6" - }, - "20637": { - "npcId": 20637, - "attr": {}, - "npclist": "3008_351_90072#3013_351_90071#4003_351_90076#4008_351_90079#4013_351_90079#5003_351_90079", - "npcLv": [ - 890, - 890, - 890, - 890, - 890, - 890 - ], - "isboss": 1, - "ghname": "npc_ghname_1", - "npcname": "jjc_npc_name_1" - }, - "20638": { - "npcId": 20638, - "attr": {}, - "npclist": "3009_352_90072#3014_352_90071#4004_352_90076#4009_352_90079#4014_352_90079#5004_352_90079", - "npcLv": [ - 890, - 890, - 890, - 890, - 890, - 890 - ], - "isboss": 1, - "ghname": "npc_ghname_2", - "npcname": "jjc_npc_name_2" - }, - "20639": { - "npcId": 20639, - "attr": {}, - "npclist": "3010_352_90072#3015_352_90071#4005_352_90076#4010_352_90079#4015_352_90079#5005_352_90079", - "npcLv": [ - 895, - 895, - 895, - 895, - 895, - 895 - ], - "isboss": 1, - "ghname": "npc_ghname_3", - "npcname": "jjc_npc_name_3" - }, - "20640": { - "npcId": 20640, - "attr": {}, - "npclist": "3011_365_90072#4001_365_90071#4006_365_90076#4011_365_90079#5001_365_90079#3001_365_90079", - "npcLv": [ - 895, - 895, - 895, - 895, - 895, - 895 - ], - "isboss": 1, - "ghname": "npc_ghname_4", - "npcname": "jjc_npc_name_4" - }, - "20641": { - "npcId": 20641, - "attr": {}, - "npclist": "3012_353_90072#4002_353_90071#4007_353_90076#4012_353_90079#5002_353_90079#3002_353_90079", - "npcLv": [ - 895, - 895, - 895, - 895, - 895, - 895 - ], - "isboss": 1, - "ghname": "npc_ghname_5", - "npcname": "jjc_npc_name_5" - }, - "20642": { - "npcId": 20642, - "attr": {}, - "npclist": "3013_355_90072#4003_355_90071#4008_355_90076#4013_355_90079#5003_355_90079#3003_355_90079", - "npcLv": [ - 901, - 901, - 901, - 901, - 901, - 901 - ], - "isboss": 1, - "ghname": "npc_ghname_6", - "npcname": "jjc_npc_name_6" - }, - "20643": { - "npcId": 20643, - "attr": {}, - "npclist": "3014_355_90072#4004_355_90071#4009_355_90076#4014_355_90079#5004_355_90079#3004_355_90079", - "npcLv": [ - 901, - 901, - 901, - 901, - 901, - 901 - ], - "isboss": 1, - "ghname": "npc_ghname_1", - "npcname": "jjc_npc_name_1" - }, - "20644": { - "npcId": 20644, - "attr": {}, - "npclist": "3015_356_90072#4005_356_90071#4010_356_90076#4015_356_90079#5005_356_90079#3005_356_90079", - "npcLv": [ - 901, - 901, - 901, - 901, - 901, - 901 - ], - "isboss": 1, - "ghname": "npc_ghname_2", - "npcname": "jjc_npc_name_2" - }, - "20645": { - "npcId": 20645, - "attr": {}, - "npclist": "4001_356_90072#4006_356_90071#4011_356_90076#5001_356_90079#3001_356_90079#3006_356_90079", - "npcLv": [ - 906, - 906, - 906, - 906, - 906, - 906 - ], - "isboss": 1, - "ghname": "npc_ghname_3", - "npcname": "jjc_npc_name_3" - }, - "20646": { - "npcId": 20646, - "attr": {}, - "npclist": "4002_357_90072#4007_357_90071#4012_357_90076#5002_357_90079#3002_357_90079#3007_357_90079", - "npcLv": [ - 906, - 906, - 906, - 906, - 906, - 906 - ], - "isboss": 1, - "ghname": "npc_ghname_4", - "npcname": "jjc_npc_name_4" - }, - "20647": { - "npcId": 20647, - "attr": {}, - "npclist": "4003_357_90072#4008_357_90071#4013_357_90076#5003_357_90079#3003_357_90079#3008_357_90079", - "npcLv": [ - 906, - 906, - 906, - 906, - 906, - 906 - ], - "isboss": 1, - "ghname": "npc_ghname_5", - "npcname": "jjc_npc_name_5" - }, - "20648": { - "npcId": 20648, - "attr": {}, - "npclist": "4004_358_90072#4009_358_90071#4014_358_90076#5004_358_90079#3004_358_90079#3009_358_90079", - "npcLv": [ - 912, - 912, - 912, - 912, - 912, - 912 - ], - "isboss": 1, - "ghname": "npc_ghname_6", - "npcname": "jjc_npc_name_6" - }, - "20649": { - "npcId": 20649, - "attr": {}, - "npclist": "4005_358_90072#4010_358_90071#4015_358_90076#5005_358_90079#3005_358_90079#3010_358_90079", - "npcLv": [ - 912, - 912, - 912, - 912, - 912, - 912 - ], - "isboss": 1, - "ghname": "npc_ghname_1", - "npcname": "jjc_npc_name_1" - }, - "20650": { - "npcId": 20650, - "attr": {}, - "npclist": "4006_371_90072#4011_371_90071#5001_371_90076#3001_371_90079#3006_371_90079#3011_371_90079", - "npcLv": [ - 912, - 912, - 912, - 912, - 912, - 912 - ], - "isboss": 1, - "ghname": "npc_ghname_2", - "npcname": "jjc_npc_name_2" - }, - "20651": { - "npcId": 20651, - "attr": {}, - "npclist": "4007_360_90072#4012_360_90071#5002_360_90076#3002_360_90079#3007_360_90079#3012_360_90079", - "npcLv": [ - 918, - 918, - 918, - 918, - 918, - 918 - ], - "isboss": 1, - "ghname": "npc_ghname_3", - "npcname": "jjc_npc_name_3" - }, - "20652": { - "npcId": 20652, - "attr": {}, - "npclist": "4008_361_90072#4013_361_90071#5003_361_90076#3003_361_90079#3008_361_90079#3013_361_90079", - "npcLv": [ - 918, - 918, - 918, - 918, - 918, - 918 - ], - "isboss": 1, - "ghname": "npc_ghname_4", - "npcname": "jjc_npc_name_4" - }, - "20653": { - "npcId": 20653, - "attr": {}, - "npclist": "4009_361_90072#4014_361_90071#5004_361_90076#3004_361_90079#3009_361_90079#3014_361_90079", - "npcLv": [ - 918, - 918, - 918, - 918, - 918, - 918 - ], - "isboss": 1, - "ghname": "npc_ghname_5", - "npcname": "jjc_npc_name_5" - }, - "20654": { - "npcId": 20654, - "attr": {}, - "npclist": "4010_362_90072#4015_362_90071#5005_362_90076#3005_362_90079#3010_362_90079#3015_362_90079", - "npcLv": [ - 923, - 923, - 923, - 923, - 923, - 923 - ], - "isboss": 1, - "ghname": "npc_ghname_6", - "npcname": "jjc_npc_name_6" - }, - "20655": { - "npcId": 20655, - "attr": {}, - "npclist": "4011_362_90072#5001_362_90071#3001_362_90076#3006_362_90079#3011_362_90079#4001_362_90079", - "npcLv": [ - 923, - 923, - 923, - 923, - 923, - 923 - ], - "isboss": 1, - "ghname": "npc_ghname_1", - "npcname": "jjc_npc_name_1" - }, - "20656": { - "npcId": 20656, - "attr": {}, - "npclist": "4012_363_90072#5002_363_90071#3002_363_90076#3007_363_90079#3012_363_90079#4002_363_90079", - "npcLv": [ - 923, - 923, - 923, - 923, - 923, - 923 - ], - "isboss": 1, - "ghname": "npc_ghname_2", - "npcname": "jjc_npc_name_2" - }, - "20657": { - "npcId": 20657, - "attr": {}, - "npclist": "4013_363_90072#5003_363_90071#3003_363_90076#3008_363_90079#3013_363_90079#4003_363_90079", - "npcLv": [ - 929, - 929, - 929, - 929, - 929, - 929 - ], - "isboss": 1, - "ghname": "npc_ghname_3", - "npcname": "jjc_npc_name_3" - }, - "20658": { - "npcId": 20658, - "attr": {}, - "npclist": "4014_365_90072#5004_365_90071#3004_365_90076#3009_365_90079#3014_365_90079#4004_365_90079", - "npcLv": [ - 929, - 929, - 929, - 929, - 929, - 929 - ], - "isboss": 1, - "ghname": "npc_ghname_4", - "npcname": "jjc_npc_name_4" - }, - "20659": { - "npcId": 20659, - "attr": {}, - "npclist": "4015_365_90072#5005_365_90071#3005_365_90076#3010_365_90079#3015_365_90079#4005_365_90079", - "npcLv": [ - 929, - 929, - 929, - 929, - 929, - 929 - ], - "isboss": 1, - "ghname": "npc_ghname_5", - "npcname": "jjc_npc_name_5" - }, - "20660": { - "npcId": 20660, - "attr": {}, - "npclist": "5001_377_90072#3001_377_90071#3006_377_90076#3011_377_90079#4001_377_90079#4006_377_90079", - "npcLv": [ - 934, - 934, - 934, - 934, - 934, - 934 - ], - "isboss": 1, - "ghname": "npc_ghname_6", - "npcname": "jjc_npc_name_6" - }, - "20661": { - "npcId": 20661, - "attr": {}, - "npclist": "5002_366_90072#3002_366_90071#3007_366_90076#3012_366_90079#4002_366_90079#4007_366_90079", - "npcLv": [ - 934, - 934, - 934, - 934, - 934, - 934 - ], - "isboss": 1, - "ghname": "npc_ghname_1", - "npcname": "jjc_npc_name_1" - }, - "20662": { - "npcId": 20662, - "attr": {}, - "npclist": "5003_367_90072#3003_367_90071#3008_367_90076#3013_367_90079#4003_367_90079#4008_367_90079", - "npcLv": [ - 934, - 934, - 934, - 934, - 934, - 934 - ], - "isboss": 1, - "ghname": "npc_ghname_2", - "npcname": "jjc_npc_name_2" - }, - "20663": { - "npcId": 20663, - "attr": {}, - "npclist": "5004_367_90072#3004_367_90071#3009_367_90076#3014_367_90079#4004_367_90079#4009_367_90079", - "npcLv": [ - 940, - 940, - 940, - 940, - 940, - 940 - ], - "isboss": 1, - "ghname": "npc_ghname_3", - "npcname": "jjc_npc_name_3" - }, - "20664": { - "npcId": 20664, - "attr": {}, - "npclist": "5005_368_90072#3005_368_90071#3010_368_90076#3015_368_90079#4005_368_90079#4010_368_90079", - "npcLv": [ - 940, - 940, - 940, - 940, - 940, - 940 - ], - "isboss": 1, - "ghname": "npc_ghname_4", - "npcname": "jjc_npc_name_4" - }, - "20665": { - "npcId": 20665, - "attr": {}, - "npclist": "3001_368_90072#3006_368_90071#3011_368_90076#4001_368_90079#4006_368_90079#4011_368_90079", - "npcLv": [ - 940, - 940, - 940, - 940, - 940, - 940 - ], - "isboss": 1, - "ghname": "npc_ghname_5", - "npcname": "jjc_npc_name_5" - }, - "20666": { - "npcId": 20666, - "attr": {}, - "npclist": "3002_370_90072#3007_370_90071#3012_370_90076#4002_370_90079#4007_370_90079#4012_370_90079", - "npcLv": [ - 946, - 946, - 946, - 946, - 946, - 946 - ], - "isboss": 1, - "ghname": "npc_ghname_6", - "npcname": "jjc_npc_name_6" - }, - "20667": { - "npcId": 20667, - "attr": {}, - "npclist": "3003_370_90072#3008_370_90071#3013_370_90076#4003_370_90079#4008_370_90079#4013_370_90079", - "npcLv": [ - 946, - 946, - 946, - 946, - 946, - 946 - ], - "isboss": 1, - "ghname": "npc_ghname_1", - "npcname": "jjc_npc_name_1" - }, - "20668": { - "npcId": 20668, - "attr": {}, - "npclist": "3004_371_90072#3009_371_90071#3014_371_90076#4004_371_90079#4009_371_90079#4014_371_90079", - "npcLv": [ - 946, - 946, - 946, - 946, - 946, - 946 - ], - "isboss": 1, - "ghname": "npc_ghname_2", - "npcname": "jjc_npc_name_2" - }, - "20669": { - "npcId": 20669, - "attr": {}, - "npclist": "3005_371_90072#3010_371_90071#3015_371_90076#4005_371_90079#4010_371_90079#4015_371_90079", - "npcLv": [ - 951, - 951, - 951, - 951, - 951, - 951 - ], - "isboss": 1, - "ghname": "npc_ghname_3", - "npcname": "jjc_npc_name_3" - }, - "20670": { - "npcId": 20670, - "attr": {}, - "npclist": "3006_384_90072#3011_384_90071#4001_384_90076#4006_384_90079#4011_384_90079#5001_384_90079", - "npcLv": [ - 951, - 951, - 951, - 951, - 951, - 951 - ], - "isboss": 1, - "ghname": "npc_ghname_4", - "npcname": "jjc_npc_name_4" - }, - "20671": { - "npcId": 20671, - "attr": {}, - "npclist": "3007_372_90072#3012_372_90071#4002_372_90076#4007_372_90079#4012_372_90079#5002_372_90079", - "npcLv": [ - 951, - 951, - 951, - 951, - 951, - 951 - ], - "isboss": 1, - "ghname": "npc_ghname_5", - "npcname": "jjc_npc_name_5" - }, - "20672": { - "npcId": 20672, - "attr": {}, - "npclist": "3008_373_90072#3013_373_90071#4003_373_90076#4008_373_90079#4013_373_90079#5003_373_90079", - "npcLv": [ - 957, - 957, - 957, - 957, - 957, - 957 - ], - "isboss": 1, - "ghname": "npc_ghname_6", - "npcname": "jjc_npc_name_6" - }, - "20673": { - "npcId": 20673, - "attr": {}, - "npclist": "3009_373_90072#3014_373_90071#4004_373_90076#4009_373_90079#4014_373_90079#5004_373_90079", - "npcLv": [ - 957, - 957, - 957, - 957, - 957, - 957 - ], - "isboss": 1, - "ghname": "npc_ghname_1", - "npcname": "jjc_npc_name_1" - }, - "20674": { - "npcId": 20674, - "attr": {}, - "npclist": "3010_375_90072#3015_375_90071#4005_375_90076#4010_375_90079#4015_375_90079#5005_375_90079", - "npcLv": [ - 957, - 957, - 957, - 957, - 957, - 957 - ], - "isboss": 1, - "ghname": "npc_ghname_2", - "npcname": "jjc_npc_name_2" - }, - "20675": { - "npcId": 20675, - "attr": {}, - "npclist": "3011_375_90072#4001_375_90071#4006_375_90076#4011_375_90079#5001_375_90079#3001_375_90079", - "npcLv": [ - 963, - 963, - 963, - 963, - 963, - 963 - ], - "isboss": 1, - "ghname": "npc_ghname_3", - "npcname": "jjc_npc_name_3" - }, - "20676": { - "npcId": 20676, - "attr": {}, - "npclist": "3012_376_90072#4002_376_90071#4007_376_90076#4012_376_90079#5002_376_90079#3002_376_90079", - "npcLv": [ - 963, - 963, - 963, - 963, - 963, - 963 - ], - "isboss": 1, - "ghname": "npc_ghname_4", - "npcname": "jjc_npc_name_4" - }, - "20677": { - "npcId": 20677, - "attr": {}, - "npclist": "3013_376_90072#4003_376_90071#4008_376_90076#4013_376_90079#5003_376_90079#3003_376_90079", - "npcLv": [ - 963, - 963, - 963, - 963, - 963, - 963 - ], - "isboss": 1, - "ghname": "npc_ghname_5", - "npcname": "jjc_npc_name_5" - }, - "20678": { - "npcId": 20678, - "attr": {}, - "npclist": "3014_377_90072#4004_377_90071#4009_377_90076#4014_377_90079#5004_377_90079#3004_377_90079", - "npcLv": [ - 968, - 968, - 968, - 968, - 968, - 968 - ], - "isboss": 1, - "ghname": "npc_ghname_6", - "npcname": "jjc_npc_name_6" - }, - "20679": { - "npcId": 20679, - "attr": {}, - "npclist": "3015_377_90072#4005_377_90071#4010_377_90076#4015_377_90079#5005_377_90079#3005_377_90079", - "npcLv": [ - 968, - 968, - 968, - 968, - 968, - 968 - ], - "isboss": 1, - "ghname": "npc_ghname_1", - "npcname": "jjc_npc_name_1" - }, - "20680": { - "npcId": 20680, - "attr": {}, - "npclist": "4001_390_90072#4006_390_90071#4011_390_90076#5001_390_90079#3001_390_90079#3006_390_90079", - "npcLv": [ - 968, - 968, - 968, - 968, - 968, - 968 - ], - "isboss": 1, - "ghname": "npc_ghname_2", - "npcname": "jjc_npc_name_2" - }, - "20681": { - "npcId": 20681, - "attr": {}, - "npclist": "4002_378_90072#4007_378_90071#4012_378_90076#5002_378_90079#3002_378_90079#3007_378_90079", - "npcLv": [ - 974, - 974, - 974, - 974, - 974, - 974 - ], - "isboss": 1, - "ghname": "npc_ghname_3", - "npcname": "jjc_npc_name_3" - }, - "20682": { - "npcId": 20682, - "attr": {}, - "npclist": "4003_380_90072#4008_380_90071#4013_380_90076#5003_380_90079#3003_380_90079#3008_380_90079", - "npcLv": [ - 974, - 974, - 974, - 974, - 974, - 974 - ], - "isboss": 1, - "ghname": "npc_ghname_4", - "npcname": "jjc_npc_name_4" - }, - "20683": { - "npcId": 20683, - "attr": {}, - "npclist": "4004_380_90072#4009_380_90071#4014_380_90076#5004_380_90079#3004_380_90079#3009_380_90079", - "npcLv": [ - 974, - 974, - 974, - 974, - 974, - 974 - ], - "isboss": 1, - "ghname": "npc_ghname_5", - "npcname": "jjc_npc_name_5" - }, - "20684": { - "npcId": 20684, - "attr": {}, - "npclist": "4005_381_90072#4010_381_90071#4015_381_90076#5005_381_90079#3005_381_90079#3010_381_90079", - "npcLv": [ - 979, - 979, - 979, - 979, - 979, - 979 - ], - "isboss": 1, - "ghname": "npc_ghname_6", - "npcname": "jjc_npc_name_6" - }, - "20685": { - "npcId": 20685, - "attr": {}, - "npclist": "4006_381_90072#4011_381_90071#5001_381_90076#3001_381_90079#3006_381_90079#3011_381_90079", - "npcLv": [ - 979, - 979, - 979, - 979, - 979, - 979 - ], - "isboss": 1, - "ghname": "npc_ghname_1", - "npcname": "jjc_npc_name_1" - }, - "20686": { - "npcId": 20686, - "attr": {}, - "npclist": "4007_382_90072#4012_382_90071#5002_382_90076#3002_382_90079#3007_382_90079#3012_382_90079", - "npcLv": [ - 979, - 979, - 979, - 979, - 979, - 979 - ], - "isboss": 1, - "ghname": "npc_ghname_2", - "npcname": "jjc_npc_name_2" - }, - "20687": { - "npcId": 20687, - "attr": {}, - "npclist": "4008_382_90072#4013_382_90071#5003_382_90076#3003_382_90079#3008_382_90079#3013_382_90079", - "npcLv": [ - 985, - 985, - 985, - 985, - 985, - 985 - ], - "isboss": 1, - "ghname": "npc_ghname_3", - "npcname": "jjc_npc_name_3" - }, - "20688": { - "npcId": 20688, - "attr": {}, - "npclist": "4009_383_90072#4014_383_90071#5004_383_90076#3004_383_90079#3009_383_90079#3014_383_90079", - "npcLv": [ - 985, - 985, - 985, - 985, - 985, - 985 - ], - "isboss": 1, - "ghname": "npc_ghname_4", - "npcname": "jjc_npc_name_4" - }, - "20689": { - "npcId": 20689, - "attr": {}, - "npclist": "4010_383_90072#4015_383_90071#5005_383_90076#3005_383_90079#3010_383_90079#3015_383_90079", - "npcLv": [ - 985, - 985, - 985, - 985, - 985, - 985 - ], - "isboss": 1, - "ghname": "npc_ghname_5", - "npcname": "jjc_npc_name_5" - }, - "20690": { - "npcId": 20690, - "attr": {}, - "npclist": "4011_397_90072#5001_397_90071#3001_397_90076#3006_397_90079#3011_397_90079#4001_397_90079", - "npcLv": [ - 991, - 991, - 991, - 991, - 991, - 991 - ], - "isboss": 1, - "ghname": "npc_ghname_6", - "npcname": "jjc_npc_name_6" - }, - "20691": { - "npcId": 20691, - "attr": {}, - "npclist": "4012_385_90072#5002_385_90071#3002_385_90076#3007_385_90079#3012_385_90079#4002_385_90079", - "npcLv": [ - 991, - 991, - 991, - 991, - 991, - 991 - ], - "isboss": 1, - "ghname": "npc_ghname_1", - "npcname": "jjc_npc_name_1" - }, - "20692": { - "npcId": 20692, - "attr": {}, - "npclist": "4013_386_90072#5003_386_90071#3003_386_90076#3008_386_90079#3013_386_90079#4003_386_90079", - "npcLv": [ - 991, - 991, - 991, - 991, - 991, - 991 - ], - "isboss": 1, - "ghname": "npc_ghname_2", - "npcname": "jjc_npc_name_2" - }, - "20693": { - "npcId": 20693, - "attr": {}, - "npclist": "4014_386_90072#5004_386_90071#3004_386_90076#3009_386_90079#3014_386_90079#4004_386_90079", - "npcLv": [ - 996, - 996, - 996, - 996, - 996, - 996 - ], - "isboss": 1, - "ghname": "npc_ghname_3", - "npcname": "jjc_npc_name_3" - }, - "20694": { - "npcId": 20694, - "attr": {}, - "npclist": "4015_387_90072#5005_387_90071#3005_387_90076#3010_387_90079#3015_387_90079#4005_387_90079", - "npcLv": [ - 996, - 996, - 996, - 996, - 996, - 996 - ], - "isboss": 1, - "ghname": "npc_ghname_4", - "npcname": "jjc_npc_name_4" - }, - "20695": { - "npcId": 20695, - "attr": {}, - "npclist": "5001_387_90072#3001_387_90071#3006_387_90076#3011_387_90079#4001_387_90079#4006_387_90079", - "npcLv": [ - 996, - 996, - 996, - 996, - 996, - 996 - ], - "isboss": 1, - "ghname": "npc_ghname_5", - "npcname": "jjc_npc_name_5" - }, - "20696": { - "npcId": 20696, - "attr": {}, - "npclist": "5002_388_90072#3002_388_90071#3007_388_90076#3012_388_90079#4002_388_90079#4007_388_90079", - "npcLv": [ - 1002, - 1002, - 1002, - 1002, - 1002, - 1002 - ], - "isboss": 1, - "ghname": "npc_ghname_6", - "npcname": "jjc_npc_name_6" - }, - "20697": { - "npcId": 20697, - "attr": {}, - "npclist": "5003_388_90072#3003_388_90071#3008_388_90076#3013_388_90079#4003_388_90079#4008_388_90079", - "npcLv": [ - 1002, - 1002, - 1002, - 1002, - 1002, - 1002 - ], - "isboss": 1, - "ghname": "npc_ghname_1", - "npcname": "jjc_npc_name_1" - }, - "20698": { - "npcId": 20698, - "attr": {}, - "npclist": "5004_390_90072#3004_390_90071#3009_390_90076#3014_390_90079#4004_390_90079#4009_390_90079", - "npcLv": [ - 1002, - 1002, - 1002, - 1002, - 1002, - 1002 - ], - "isboss": 1, - "ghname": "npc_ghname_2", - "npcname": "jjc_npc_name_2" - }, - "20699": { - "npcId": 20699, - "attr": {}, - "npclist": "5005_390_90072#3005_390_90071#3010_390_90076#3015_390_90079#4005_390_90079#4010_390_90079", - "npcLv": [ - 1008, - 1008, - 1008, - 1008, - 1008, - 1008 - ], - "isboss": 1, - "ghname": "npc_ghname_3", - "npcname": "jjc_npc_name_3" - }, - "20700": { - "npcId": 20700, - "attr": {}, - "npclist": "3001_400_90072#3006_400_90071#3011_400_90076#4001_400_90079#4006_400_90079#4011_400_90079", - "npcLv": [ - 1008, - 1008, - 1008, - 1008, - 1008, - 1008 - ], - "isboss": 1, - "ghname": "npc_ghname_4", - "npcname": "jjc_npc_name_4" - }, - "20701": { - "npcId": 20701, - "attr": {}, - "npclist": "3002_391_90072#3007_391_90071#3012_391_90076#4002_391_90079#4007_391_90079#4012_391_90079", - "npcLv": [ - 1008, - 1008, - 1008, - 1008, - 1008, - 1008 - ], - "isboss": 1, - "ghname": "npc_ghname_5", - "npcname": "jjc_npc_name_5" - }, - "20702": { - "npcId": 20702, - "attr": {}, - "npclist": "3003_392_90072#3008_392_90071#3013_392_90076#4003_392_90079#4008_392_90079#4013_392_90079", - "npcLv": [ - 1013, - 1013, - 1013, - 1013, - 1013, - 1013 - ], - "isboss": 1, - "ghname": "npc_ghname_6", - "npcname": "jjc_npc_name_6" - }, - "20703": { - "npcId": 20703, - "attr": {}, - "npclist": "3004_392_90072#3009_392_90071#3014_392_90076#4004_392_90079#4009_392_90079#4014_392_90079", - "npcLv": [ - 1013, - 1013, - 1013, - 1013, - 1013, - 1013 - ], - "isboss": 1, - "ghname": "npc_ghname_1", - "npcname": "jjc_npc_name_1" - }, - "20704": { - "npcId": 20704, - "attr": {}, - "npclist": "3005_393_90072#3010_393_90071#3015_393_90076#4005_393_90079#4010_393_90079#4015_393_90079", - "npcLv": [ - 1013, - 1013, - 1013, - 1013, - 1013, - 1013 - ], - "isboss": 1, - "ghname": "npc_ghname_2", - "npcname": "jjc_npc_name_2" - }, - "20705": { - "npcId": 20705, - "attr": {}, - "npclist": "3006_393_90072#3011_393_90071#4001_393_90076#4006_393_90079#4011_393_90079#5001_393_90079", - "npcLv": [ - 1019, - 1019, - 1019, - 1019, - 1019, - 1019 - ], - "isboss": 1, - "ghname": "npc_ghname_3", - "npcname": "jjc_npc_name_3" - }, - "20706": { - "npcId": 20706, - "attr": {}, - "npclist": "3007_395_90072#3012_395_90071#4002_395_90076#4007_395_90079#4012_395_90079#5002_395_90079", - "npcLv": [ - 1019, - 1019, - 1019, - 1019, - 1019, - 1019 - ], - "isboss": 1, - "ghname": "npc_ghname_4", - "npcname": "jjc_npc_name_4" - }, - "20707": { - "npcId": 20707, - "attr": {}, - "npclist": "3008_395_90072#3013_395_90071#4003_395_90076#4008_395_90079#4013_395_90079#5003_395_90079", - "npcLv": [ - 1019, - 1019, - 1019, - 1019, - 1019, - 1019 - ], - "isboss": 1, - "ghname": "npc_ghname_5", - "npcname": "jjc_npc_name_5" - }, - "20708": { - "npcId": 20708, - "attr": {}, - "npclist": "3009_396_90072#3014_396_90071#4004_396_90076#4009_396_90079#4014_396_90079#5004_396_90079", - "npcLv": [ - 1025, - 1025, - 1025, - 1025, - 1025, - 1025 - ], - "isboss": 1, - "ghname": "npc_ghname_6", - "npcname": "jjc_npc_name_6" - }, - "20709": { - "npcId": 20709, - "attr": {}, - "npclist": "3010_396_90072#3015_396_90071#4005_396_90076#4010_396_90079#4015_396_90079#5005_396_90079", - "npcLv": [ - 1025, - 1025, - 1025, - 1025, - 1025, - 1025 - ], - "isboss": 1, - "ghname": "npc_ghname_1", - "npcname": "jjc_npc_name_1" - }, - "20710": { - "npcId": 20710, - "attr": {}, - "npclist": "3011_407_90072#4001_407_90071#4006_407_90076#4011_407_90079#5001_407_90079#3001_407_90079", - "npcLv": [ - 1025, - 1025, - 1025, - 1025, - 1025, - 1025 - ], - "isboss": 1, - "ghname": "npc_ghname_2", - "npcname": "jjc_npc_name_2" - }, - "20711": { - "npcId": 20711, - "attr": {}, - "npclist": "3012_400_90072#4002_400_90071#4007_400_90076#4012_400_90079#5002_400_90079#3002_400_90079", - "npcLv": [ - 1030, - 1030, - 1030, - 1030, - 1030, - 1030 - ], - "isboss": 1, - "ghname": "npc_ghname_3", - "npcname": "jjc_npc_name_3" - }, - "20712": { - "npcId": 20712, - "attr": {}, - "npclist": "3013_401_90072#4003_401_90071#4008_401_90076#4013_401_90079#5003_401_90079#3003_401_90079", - "npcLv": [ - 1030, - 1030, - 1030, - 1030, - 1030, - 1030 - ], - "isboss": 1, - "ghname": "npc_ghname_4", - "npcname": "jjc_npc_name_4" - }, - "20713": { - "npcId": 20713, - "attr": {}, - "npclist": "3014_401_90072#4004_401_90071#4009_401_90076#4014_401_90079#5004_401_90079#3004_401_90079", - "npcLv": [ - 1030, - 1030, - 1030, - 1030, - 1030, - 1030 - ], - "isboss": 1, - "ghname": "npc_ghname_5", - "npcname": "jjc_npc_name_5" - }, - "20714": { - "npcId": 20714, - "attr": {}, - "npclist": "3015_403_90072#4005_403_90071#4010_403_90076#4015_403_90079#5005_403_90079#3005_403_90079", - "npcLv": [ - 1036, - 1036, - 1036, - 1036, - 1036, - 1036 - ], - "isboss": 1, - "ghname": "npc_ghname_6", - "npcname": "jjc_npc_name_6" - }, - "20715": { - "npcId": 20715, - "attr": {}, - "npclist": "4001_403_90072#4006_403_90071#4011_403_90076#5001_403_90079#3001_403_90079#3006_403_90079", - "npcLv": [ - 1036, - 1036, - 1036, - 1036, - 1036, - 1036 - ], - "isboss": 1, - "ghname": "npc_ghname_1", - "npcname": "jjc_npc_name_1" - }, - "20716": { - "npcId": 20716, - "attr": {}, - "npclist": "4002_404_90072#4007_404_90071#4012_404_90076#5002_404_90079#3002_404_90079#3007_404_90079", - "npcLv": [ - 1036, - 1036, - 1036, - 1036, - 1036, - 1036 - ], - "isboss": 1, - "ghname": "npc_ghname_2", - "npcname": "jjc_npc_name_2" - }, - "20717": { - "npcId": 20717, - "attr": {}, - "npclist": "4003_404_90072#4008_404_90071#4013_404_90076#5003_404_90079#3003_404_90079#3008_404_90079", - "npcLv": [ - 1042, - 1042, - 1042, - 1042, - 1042, - 1042 - ], - "isboss": 1, - "ghname": "npc_ghname_3", - "npcname": "jjc_npc_name_3" - }, - "20718": { - "npcId": 20718, - "attr": {}, - "npclist": "4004_405_90072#4009_405_90071#4014_405_90076#5004_405_90079#3004_405_90079#3009_405_90079", - "npcLv": [ - 1042, - 1042, - 1042, - 1042, - 1042, - 1042 - ], - "isboss": 1, - "ghname": "npc_ghname_4", - "npcname": "jjc_npc_name_4" - }, - "20719": { - "npcId": 20719, - "attr": {}, - "npclist": "4005_405_90072#4010_405_90071#4015_405_90076#5005_405_90079#3005_405_90079#3010_405_90079", - "npcLv": [ - 1042, - 1042, - 1042, - 1042, - 1042, - 1042 - ], - "isboss": 1, - "ghname": "npc_ghname_5", - "npcname": "jjc_npc_name_5" - }, - "20720": { - "npcId": 20720, - "attr": {}, - "npclist": "4006_413_90072#4011_413_90071#5001_413_90076#3001_413_90079#3006_413_90079#3011_413_90079", - "npcLv": [ - 1047, - 1047, - 1047, - 1047, - 1047, - 1047 - ], - "isboss": 1, - "ghname": "npc_ghname_6", - "npcname": "jjc_npc_name_6" - }, - "20721": { - "npcId": 20721, - "attr": {}, - "npclist": "4007_406_90072#4012_406_90071#5002_406_90076#3002_406_90079#3007_406_90079#3012_406_90079", - "npcLv": [ - 1047, - 1047, - 1047, - 1047, - 1047, - 1047 - ], - "isboss": 1, - "ghname": "npc_ghname_1", - "npcname": "jjc_npc_name_1" - }, - "20722": { - "npcId": 20722, - "attr": {}, - "npclist": "4008_408_90072#4013_408_90071#5003_408_90076#3003_408_90079#3008_408_90079#3013_408_90079", - "npcLv": [ - 1047, - 1047, - 1047, - 1047, - 1047, - 1047 - ], - "isboss": 1, - "ghname": "npc_ghname_2", - "npcname": "jjc_npc_name_2" - }, - "20723": { - "npcId": 20723, - "attr": {}, - "npclist": "4009_408_90072#4014_408_90071#5004_408_90076#3004_408_90079#3009_408_90079#3014_408_90079", - "npcLv": [ - 1053, - 1053, - 1053, - 1053, - 1053, - 1053 - ], - "isboss": 1, - "ghname": "npc_ghname_3", - "npcname": "jjc_npc_name_3" - }, - "20724": { - "npcId": 20724, - "attr": {}, - "npclist": "4010_409_90072#4015_409_90071#5005_409_90076#3005_409_90079#3010_409_90079#3015_409_90079", - "npcLv": [ - 1053, - 1053, - 1053, - 1053, - 1053, - 1053 - ], - "isboss": 1, - "ghname": "npc_ghname_4", - "npcname": "jjc_npc_name_4" - }, - "20725": { - "npcId": 20725, - "attr": {}, - "npclist": "4011_409_90072#5001_409_90071#3001_409_90076#3006_409_90079#3011_409_90079#4001_409_90079", - "npcLv": [ - 1053, - 1053, - 1053, - 1053, - 1053, - 1053 - ], - "isboss": 1, - "ghname": "npc_ghname_5", - "npcname": "jjc_npc_name_5" - }, - "20726": { - "npcId": 20726, - "attr": {}, - "npclist": "4012_410_90072#5002_410_90071#3002_410_90076#3007_410_90079#3012_410_90079#4002_410_90079", - "npcLv": [ - 1059, - 1059, - 1059, - 1059, - 1059, - 1059 - ], - "isboss": 1, - "ghname": "npc_ghname_6", - "npcname": "jjc_npc_name_6" - }, - "20727": { - "npcId": 20727, - "attr": {}, - "npclist": "4013_410_90072#5003_410_90071#3003_410_90076#3008_410_90079#3013_410_90079#4003_410_90079", - "npcLv": [ - 1059, - 1059, - 1059, - 1059, - 1059, - 1059 - ], - "isboss": 1, - "ghname": "npc_ghname_1", - "npcname": "jjc_npc_name_1" - }, - "20728": { - "npcId": 20728, - "attr": {}, - "npclist": "4014_412_90072#5004_412_90071#3004_412_90076#3009_412_90079#3014_412_90079#4004_412_90079", - "npcLv": [ - 1059, - 1059, - 1059, - 1059, - 1059, - 1059 - ], - "isboss": 1, - "ghname": "npc_ghname_2", - "npcname": "jjc_npc_name_2" - }, - "20729": { - "npcId": 20729, - "attr": {}, - "npclist": "4015_412_90072#5005_412_90071#3005_412_90076#3010_412_90079#3015_412_90079#4005_412_90079", - "npcLv": [ - 1065, - 1065, - 1065, - 1065, - 1065, - 1065 - ], - "isboss": 1, - "ghname": "npc_ghname_3", - "npcname": "jjc_npc_name_3" - }, - "20730": { - "npcId": 20730, - "attr": {}, - "npclist": "5001_419_90072#3001_419_90071#3006_419_90076#3011_419_90079#4001_419_90079#4006_419_90079", - "npcLv": [ - 1065, - 1065, - 1065, - 1065, - 1065, - 1065 - ], - "isboss": 1, - "ghname": "npc_ghname_4", - "npcname": "jjc_npc_name_4" - }, - "20731": { - "npcId": 20731, - "attr": {}, - "npclist": "5002_410_90072#3002_410_90071#3007_410_90076#3012_410_90079#4002_410_90079#4007_410_90079", - "npcLv": [ - 1065, - 1065, - 1065, - 1065, - 1065, - 1065 - ], - "isboss": 1, - "ghname": "npc_ghname_5", - "npcname": "jjc_npc_name_5" - }, - "20732": { - "npcId": 20732, - "attr": {}, - "npclist": "5003_411_90072#3003_411_90071#3008_411_90076#3013_411_90079#4003_411_90079#4008_411_90079", - "npcLv": [ - 1070, - 1070, - 1070, - 1070, - 1070, - 1070 - ], - "isboss": 1, - "ghname": "npc_ghname_6", - "npcname": "jjc_npc_name_6" - }, - "20733": { - "npcId": 20733, - "attr": {}, - "npclist": "5004_411_90072#3004_411_90071#3009_411_90076#3014_411_90079#4004_411_90079#4009_411_90079", - "npcLv": [ - 1070, - 1070, - 1070, - 1070, - 1070, - 1070 - ], - "isboss": 1, - "ghname": "npc_ghname_1", - "npcname": "jjc_npc_name_1" - }, - "20734": { - "npcId": 20734, - "attr": {}, - "npclist": "5005_412_90072#3005_412_90071#3010_412_90076#3015_412_90079#4005_412_90079#4010_412_90079", - "npcLv": [ - 1070, - 1070, - 1070, - 1070, - 1070, - 1070 - ], - "isboss": 1, - "ghname": "npc_ghname_2", - "npcname": "jjc_npc_name_2" - }, - "20735": { - "npcId": 20735, - "attr": {}, - "npclist": "3001_412_90072#3006_412_90071#3011_412_90076#4001_412_90079#4006_412_90079#4011_412_90079", - "npcLv": [ - 1076, - 1076, - 1076, - 1076, - 1076, - 1076 - ], - "isboss": 1, - "ghname": "npc_ghname_3", - "npcname": "jjc_npc_name_3" - }, - "20736": { - "npcId": 20736, - "attr": {}, - "npclist": "3002_413_90072#3007_413_90071#3012_413_90076#4002_413_90079#4007_413_90079#4012_413_90079", - "npcLv": [ - 1076, - 1076, - 1076, - 1076, - 1076, - 1076 - ], - "isboss": 1, - "ghname": "npc_ghname_4", - "npcname": "jjc_npc_name_4" - }, - "20737": { - "npcId": 20737, - "attr": {}, - "npclist": "3003_413_90072#3008_413_90071#3013_413_90076#4003_413_90079#4008_413_90079#4013_413_90079", - "npcLv": [ - 1076, - 1076, - 1076, - 1076, - 1076, - 1076 - ], - "isboss": 1, - "ghname": "npc_ghname_5", - "npcname": "jjc_npc_name_5" - }, - "20738": { - "npcId": 20738, - "attr": {}, - "npclist": "3004_415_90072#3009_415_90071#3014_415_90076#4004_415_90079#4009_415_90079#4014_415_90079", - "npcLv": [ - 1082, - 1082, - 1082, - 1082, - 1082, - 1082 - ], - "isboss": 1, - "ghname": "npc_ghname_6", - "npcname": "jjc_npc_name_6" - }, - "20739": { - "npcId": 20739, - "attr": {}, - "npclist": "3005_415_90072#3010_415_90071#3015_415_90076#4005_415_90079#4010_415_90079#4015_415_90079", - "npcLv": [ - 1082, - 1082, - 1082, - 1082, - 1082, - 1082 - ], - "isboss": 1, - "ghname": "npc_ghname_1", - "npcname": "jjc_npc_name_1" - }, - "20740": { - "npcId": 20740, - "attr": {}, - "npclist": "3006_422_90072#3011_422_90071#4001_422_90076#4006_422_90079#4011_422_90079#5001_422_90079", - "npcLv": [ - 1082, - 1082, - 1082, - 1082, - 1082, - 1082 - ], - "isboss": 1, - "ghname": "npc_ghname_2", - "npcname": "jjc_npc_name_2" - }, - "20741": { - "npcId": 20741, - "attr": {}, - "npclist": "3007_412_90072#3012_412_90071#4002_412_90076#4007_412_90079#4012_412_90079#5002_412_90079", - "npcLv": [ - 1087, - 1087, - 1087, - 1087, - 1087, - 1087 - ], - "isboss": 1, - "ghname": "npc_ghname_3", - "npcname": "jjc_npc_name_3" - }, - "20742": { - "npcId": 20742, - "attr": {}, - "npclist": "3008_414_90072#3013_414_90071#4003_414_90076#4008_414_90079#4013_414_90079#5003_414_90079", - "npcLv": [ - 1087, - 1087, - 1087, - 1087, - 1087, - 1087 - ], - "isboss": 1, - "ghname": "npc_ghname_4", - "npcname": "jjc_npc_name_4" - }, - "20743": { - "npcId": 20743, - "attr": {}, - "npclist": "3009_414_90072#3014_414_90071#4004_414_90076#4009_414_90079#4014_414_90079#5004_414_90079", - "npcLv": [ - 1087, - 1087, - 1087, - 1087, - 1087, - 1087 - ], - "isboss": 1, - "ghname": "npc_ghname_5", - "npcname": "jjc_npc_name_5" - }, - "20744": { - "npcId": 20744, - "attr": {}, - "npclist": "3010_415_90072#3015_415_90071#4005_415_90076#4010_415_90079#4015_415_90079#5005_415_90079", - "npcLv": [ - 1093, - 1093, - 1093, - 1093, - 1093, - 1093 - ], - "isboss": 1, - "ghname": "npc_ghname_6", - "npcname": "jjc_npc_name_6" - }, - "20745": { - "npcId": 20745, - "attr": {}, - "npclist": "3011_415_90072#4001_415_90071#4006_415_90076#4011_415_90079#5001_415_90079#3001_415_90079", - "npcLv": [ - 1093, - 1093, - 1093, - 1093, - 1093, - 1093 - ], - "isboss": 1, - "ghname": "npc_ghname_1", - "npcname": "jjc_npc_name_1" - }, - "20746": { - "npcId": 20746, - "attr": {}, - "npclist": "3012_416_90072#4002_416_90071#4007_416_90076#4012_416_90079#5002_416_90079#3002_416_90079", - "npcLv": [ - 1093, - 1093, - 1093, - 1093, - 1093, - 1093 - ], - "isboss": 1, - "ghname": "npc_ghname_2", - "npcname": "jjc_npc_name_2" - }, - "20747": { - "npcId": 20747, - "attr": {}, - "npclist": "3013_416_90072#4003_416_90071#4008_416_90076#4013_416_90079#5003_416_90079#3003_416_90079", - "npcLv": [ - 1099, - 1099, - 1099, - 1099, - 1099, - 1099 - ], - "isboss": 1, - "ghname": "npc_ghname_3", - "npcname": "jjc_npc_name_3" - }, - "20748": { - "npcId": 20748, - "attr": {}, - "npclist": "3014_417_90072#4004_417_90071#4009_417_90076#4014_417_90079#5004_417_90079#3004_417_90079", - "npcLv": [ - 1099, - 1099, - 1099, - 1099, - 1099, - 1099 - ], - "isboss": 1, - "ghname": "npc_ghname_4", - "npcname": "jjc_npc_name_4" - }, - "20749": { - "npcId": 20749, - "attr": {}, - "npclist": "3015_417_90072#4005_417_90071#4010_417_90076#4015_417_90079#5005_417_90079#3005_417_90079", - "npcLv": [ - 1099, - 1099, - 1099, - 1099, - 1099, - 1099 - ], - "isboss": 1, - "ghname": "npc_ghname_5", - "npcname": "jjc_npc_name_5" - }, - "20750": { - "npcId": 20750, - "attr": {}, - "npclist": "4001_425_90072#4006_425_90071#4011_425_90076#5001_425_90079#3001_425_90079#3006_425_90079", - "npcLv": [ - 1105, - 1105, - 1105, - 1105, - 1105, - 1105 - ], - "isboss": 1, - "ghname": "npc_ghname_6", - "npcname": "jjc_npc_name_6" - }, - "20751": { - "npcId": 20751, - "attr": {}, - "npclist": "4002_419_90072#4007_419_90071#4012_419_90076#5002_419_90079#3002_419_90079#3007_419_90079", - "npcLv": [ - 1105, - 1105, - 1105, - 1105, - 1105, - 1105 - ], - "isboss": 1, - "ghname": "npc_ghname_1", - "npcname": "jjc_npc_name_1" - }, - "20752": { - "npcId": 20752, - "attr": {}, - "npclist": "4003_420_90072#4008_420_90071#4013_420_90076#5003_420_90079#3003_420_90079#3008_420_90079", - "npcLv": [ - 1105, - 1105, - 1105, - 1105, - 1105, - 1105 - ], - "isboss": 1, - "ghname": "npc_ghname_2", - "npcname": "jjc_npc_name_2" - }, - "20753": { - "npcId": 20753, - "attr": {}, - "npclist": "4004_420_90072#4009_420_90071#4014_420_90076#5004_420_90079#3004_420_90079#3009_420_90079", - "npcLv": [ - 1110, - 1110, - 1110, - 1110, - 1110, - 1110 - ], - "isboss": 1, - "ghname": "npc_ghname_3", - "npcname": "jjc_npc_name_3" - }, - "20754": { - "npcId": 20754, - "attr": {}, - "npclist": "4005_421_90072#4010_421_90071#4015_421_90076#5005_421_90079#3005_421_90079#3010_421_90079", - "npcLv": [ - 1110, - 1110, - 1110, - 1110, - 1110, - 1110 - ], - "isboss": 1, - "ghname": "npc_ghname_4", - "npcname": "jjc_npc_name_4" - }, - "20755": { - "npcId": 20755, - "attr": {}, - "npclist": "4006_421_90072#4011_421_90071#5001_421_90076#3001_421_90079#3006_421_90079#3011_421_90079", - "npcLv": [ - 1110, - 1110, - 1110, - 1110, - 1110, - 1110 - ], - "isboss": 1, - "ghname": "npc_ghname_5", - "npcname": "jjc_npc_name_5" - }, - "20756": { - "npcId": 20756, - "attr": {}, - "npclist": "4007_422_90072#4012_422_90071#5002_422_90076#3002_422_90079#3007_422_90079#3012_422_90079", - "npcLv": [ - 1116, - 1116, - 1116, - 1116, - 1116, - 1116 - ], - "isboss": 1, - "ghname": "npc_ghname_6", - "npcname": "jjc_npc_name_6" - }, - "20757": { - "npcId": 20757, - "attr": {}, - "npclist": "4008_422_90072#4013_422_90071#5003_422_90076#3003_422_90079#3008_422_90079#3013_422_90079", - "npcLv": [ - 1116, - 1116, - 1116, - 1116, - 1116, - 1116 - ], - "isboss": 1, - "ghname": "npc_ghname_1", - "npcname": "jjc_npc_name_1" - }, - "20758": { - "npcId": 20758, - "attr": {}, - "npclist": "4009_424_90072#4014_424_90071#5004_424_90076#3004_424_90079#3009_424_90079#3014_424_90079", - "npcLv": [ - 1116, - 1116, - 1116, - 1116, - 1116, - 1116 - ], - "isboss": 1, - "ghname": "npc_ghname_2", - "npcname": "jjc_npc_name_2" - }, - "20759": { - "npcId": 20759, - "attr": {}, - "npclist": "4010_424_90072#4015_424_90071#5005_424_90076#3005_424_90079#3010_424_90079#3015_424_90079", - "npcLv": [ - 1122, - 1122, - 1122, - 1122, - 1122, - 1122 - ], - "isboss": 1, - "ghname": "npc_ghname_3", - "npcname": "jjc_npc_name_3" - }, - "20760": { - "npcId": 20760, - "attr": {}, - "npclist": "4011_432_90072#5001_432_90071#3001_432_90076#3006_432_90079#3011_432_90079#4001_432_90079", - "npcLv": [ - 1122, - 1122, - 1122, - 1122, - 1122, - 1122 - ], - "isboss": 1, - "ghname": "npc_ghname_4", - "npcname": "jjc_npc_name_4" - }, - "20761": { - "npcId": 20761, - "attr": {}, - "npclist": "4012_428_90072#5002_428_90071#3002_428_90076#3007_428_90079#3012_428_90079#4002_428_90079", - "npcLv": [ - 1122, - 1122, - 1122, - 1122, - 1122, - 1122 - ], - "isboss": 1, - "ghname": "npc_ghname_5", - "npcname": "jjc_npc_name_5" - }, - "20762": { - "npcId": 20762, - "attr": {}, - "npclist": "4013_430_90072#5003_430_90071#3003_430_90076#3008_430_90079#3013_430_90079#4003_430_90079", - "npcLv": [ - 1128, - 1128, - 1128, - 1128, - 1128, - 1128 - ], - "isboss": 1, - "ghname": "npc_ghname_6", - "npcname": "jjc_npc_name_6" - }, - "20763": { - "npcId": 20763, - "attr": {}, - "npclist": "4014_430_90072#5004_430_90071#3004_430_90076#3009_430_90079#3014_430_90079#4004_430_90079", - "npcLv": [ - 1128, - 1128, - 1128, - 1128, - 1128, - 1128 - ], - "isboss": 1, - "ghname": "npc_ghname_1", - "npcname": "jjc_npc_name_1" - }, - "20764": { - "npcId": 20764, - "attr": {}, - "npclist": "4015_431_90072#5005_431_90071#3005_431_90076#3010_431_90079#3015_431_90079#4005_431_90079", - "npcLv": [ - 1128, - 1128, - 1128, - 1128, - 1128, - 1128 - ], - "isboss": 1, - "ghname": "npc_ghname_2", - "npcname": "jjc_npc_name_2" - }, - "20765": { - "npcId": 20765, - "attr": {}, - "npclist": "5001_431_90072#3001_431_90071#3006_431_90076#3011_431_90079#4001_431_90079#4006_431_90079", - "npcLv": [ - 1133, - 1133, - 1133, - 1133, - 1133, - 1133 - ], - "isboss": 1, - "ghname": "npc_ghname_3", - "npcname": "jjc_npc_name_3" - }, - "20766": { - "npcId": 20766, - "attr": {}, - "npclist": "5002_432_90072#3002_432_90071#3007_432_90076#3012_432_90079#4002_432_90079#4007_432_90079", - "npcLv": [ - 1133, - 1133, - 1133, - 1133, - 1133, - 1133 - ], - "isboss": 1, - "ghname": "npc_ghname_4", - "npcname": "jjc_npc_name_4" - }, - "20767": { - "npcId": 20767, - "attr": {}, - "npclist": "5003_432_90072#3003_432_90071#3008_432_90076#3013_432_90079#4003_432_90079#4008_432_90079", - "npcLv": [ - 1133, - 1133, - 1133, - 1133, - 1133, - 1133 - ], - "isboss": 1, - "ghname": "npc_ghname_5", - "npcname": "jjc_npc_name_5" - }, - "20768": { - "npcId": 20768, - "attr": {}, - "npclist": "5004_433_90072#3004_433_90071#3009_433_90076#3014_433_90079#4004_433_90079#4009_433_90079", - "npcLv": [ - 1139, - 1139, - 1139, - 1139, - 1139, - 1139 - ], - "isboss": 1, - "ghname": "npc_ghname_6", - "npcname": "jjc_npc_name_6" - }, - "20769": { - "npcId": 20769, - "attr": {}, - "npclist": "5005_451_90072#3005_451_90071#3010_451_90076#3015_451_90079#4005_451_90079#4010_451_90079", - "npcLv": [ - 1139, - 1139, - 1139, - 1139, - 1139, - 1139 - ], - "isboss": 1, - "ghname": "npc_ghname_1", - "npcname": "jjc_npc_name_1" - }, - "20770": { - "npcId": 20770, - "attr": {}, - "npclist": "3001_436_90072#3006_436_90071#3011_436_90076#4001_436_90079#4006_436_90079#4011_436_90079", - "npcLv": [ - 1139, - 1139, - 1139, - 1139, - 1139, - 1139 - ], - "isboss": 1, - "ghname": "npc_ghname_2", - "npcname": "jjc_npc_name_2" - }, - "20771": { - "npcId": 20771, - "attr": {}, - "npclist": "3002_435_90072#3007_435_90071#3012_435_90076#4002_435_90079#4007_435_90079#4012_435_90079", - "npcLv": [ - 1145, - 1145, - 1145, - 1145, - 1145, - 1145 - ], - "isboss": 1, - "ghname": "npc_ghname_3", - "npcname": "jjc_npc_name_3" - }, - "20772": { - "npcId": 20772, - "attr": {}, - "npclist": "3003_427_90072#3008_427_90071#3013_427_90076#4003_427_90079#4008_427_90079#4013_427_90079", - "npcLv": [ - 1145, - 1145, - 1145, - 1145, - 1145, - 1145 - ], - "isboss": 1, - "ghname": "npc_ghname_4", - "npcname": "jjc_npc_name_4" - }, - "20773": { - "npcId": 20773, - "attr": {}, - "npclist": "3004_427_90072#3009_427_90071#3014_427_90076#4004_427_90079#4009_427_90079#4014_427_90079", - "npcLv": [ - 1145, - 1145, - 1145, - 1145, - 1145, - 1145 - ], - "isboss": 1, - "ghname": "npc_ghname_5", - "npcname": "jjc_npc_name_5" - }, - "20774": { - "npcId": 20774, - "attr": {}, - "npclist": "3005_428_90072#3010_428_90071#3015_428_90076#4005_428_90079#4010_428_90079#4015_428_90079", - "npcLv": [ - 1151, - 1151, - 1151, - 1151, - 1151, - 1151 - ], - "isboss": 1, - "ghname": "npc_ghname_6", - "npcname": "jjc_npc_name_6" - }, - "20775": { - "npcId": 20775, - "attr": {}, - "npclist": "3006_428_90072#3011_428_90071#4001_428_90076#4006_428_90079#4011_428_90079#5001_428_90079", - "npcLv": [ - 1151, - 1151, - 1151, - 1151, - 1151, - 1151 - ], - "isboss": 1, - "ghname": "npc_ghname_1", - "npcname": "jjc_npc_name_1" - }, - "20776": { - "npcId": 20776, - "attr": {}, - "npclist": "3007_429_90072#3012_429_90071#4002_429_90076#4007_429_90079#4012_429_90079#5002_429_90079", - "npcLv": [ - 1151, - 1151, - 1151, - 1151, - 1151, - 1151 - ], - "isboss": 1, - "ghname": "npc_ghname_2", - "npcname": "jjc_npc_name_2" - }, - "20777": { - "npcId": 20777, - "attr": {}, - "npclist": "3008_429_90072#3013_429_90071#4003_429_90076#4008_429_90079#4013_429_90079#5003_429_90079", - "npcLv": [ - 1156, - 1156, - 1156, - 1156, - 1156, - 1156 - ], - "isboss": 1, - "ghname": "npc_ghname_3", - "npcname": "jjc_npc_name_3" - }, - "20778": { - "npcId": 20778, - "attr": {}, - "npclist": "3009_431_90072#3014_431_90071#4004_431_90076#4009_431_90079#4014_431_90079#5004_431_90079", - "npcLv": [ - 1156, - 1156, - 1156, - 1156, - 1156, - 1156 - ], - "isboss": 1, - "ghname": "npc_ghname_4", - "npcname": "jjc_npc_name_4" - }, - "20779": { - "npcId": 20779, - "attr": {}, - "npclist": "3010_431_90072#3015_431_90071#4005_431_90076#4010_431_90079#4015_431_90079#5005_431_90079", - "npcLv": [ - 1156, - 1156, - 1156, - 1156, - 1156, - 1156 - ], - "isboss": 1, - "ghname": "npc_ghname_5", - "npcname": "jjc_npc_name_5" - }, - "20780": { - "npcId": 20780, - "attr": {}, - "npclist": "3011_441_90072#4001_441_90071#4006_441_90076#4011_441_90079#5001_441_90079#3001_441_90079", - "npcLv": [ - 1162, - 1162, - 1162, - 1162, - 1162, - 1162 - ], - "isboss": 1, - "ghname": "npc_ghname_6", - "npcname": "jjc_npc_name_6" - }, - "20781": { - "npcId": 20781, - "attr": {}, - "npclist": "3012_441_90072#4002_441_90071#4007_441_90076#4012_441_90079#5002_441_90079#3002_441_90079", - "npcLv": [ - 1162, - 1162, - 1162, - 1162, - 1162, - 1162 - ], - "isboss": 1, - "ghname": "npc_ghname_1", - "npcname": "jjc_npc_name_1" - }, - "20782": { - "npcId": 20782, - "attr": {}, - "npclist": "3013_442_90072#4003_442_90071#4008_442_90076#4013_442_90079#5003_442_90079#3003_442_90079", - "npcLv": [ - 1162, - 1162, - 1162, - 1162, - 1162, - 1162 - ], - "isboss": 1, - "ghname": "npc_ghname_2", - "npcname": "jjc_npc_name_2" - }, - "20783": { - "npcId": 20783, - "attr": {}, - "npclist": "3014_442_90072#4004_442_90071#4009_442_90076#4014_442_90079#5004_442_90079#3004_442_90079", - "npcLv": [ - 1168, - 1168, - 1168, - 1168, - 1168, - 1168 - ], - "isboss": 1, - "ghname": "npc_ghname_3", - "npcname": "jjc_npc_name_3" - }, - "20784": { - "npcId": 20784, - "attr": {}, - "npclist": "3015_443_90072#4005_443_90071#4010_443_90076#4015_443_90079#5005_443_90079#3005_443_90079", - "npcLv": [ - 1168, - 1168, - 1168, - 1168, - 1168, - 1168 - ], - "isboss": 1, - "ghname": "npc_ghname_4", - "npcname": "jjc_npc_name_4" - }, - "20785": { - "npcId": 20785, - "attr": {}, - "npclist": "4001_443_90072#4006_443_90071#4011_443_90076#5001_443_90079#3001_443_90079#3006_443_90079", - "npcLv": [ - 1168, - 1168, - 1168, - 1168, - 1168, - 1168 - ], - "isboss": 1, - "ghname": "npc_ghname_5", - "npcname": "jjc_npc_name_5" - }, - "20786": { - "npcId": 20786, - "attr": {}, - "npclist": "4002_445_90072#4007_445_90071#4012_445_90076#5002_445_90079#3002_445_90079#3007_445_90079", - "npcLv": [ - 1174, - 1174, - 1174, - 1174, - 1174, - 1174 - ], - "isboss": 1, - "ghname": "npc_ghname_6", - "npcname": "jjc_npc_name_6" - }, - "20787": { - "npcId": 20787, - "attr": {}, - "npclist": "4003_445_90072#4008_445_90071#4013_445_90076#5003_445_90079#3003_445_90079#3008_445_90079", - "npcLv": [ - 1174, - 1174, - 1174, - 1174, - 1174, - 1174 - ], - "isboss": 1, - "ghname": "npc_ghname_1", - "npcname": "jjc_npc_name_1" - }, - "20788": { - "npcId": 20788, - "attr": {}, - "npclist": "4004_446_90072#4009_446_90071#4014_446_90076#5004_446_90079#3004_446_90079#3009_446_90079", - "npcLv": [ - 1174, - 1174, - 1174, - 1174, - 1174, - 1174 - ], - "isboss": 1, - "ghname": "npc_ghname_2", - "npcname": "jjc_npc_name_2" - }, - "20789": { - "npcId": 20789, - "attr": {}, - "npclist": "4005_464_90072#4010_464_90071#4015_464_90076#5005_464_90079#3005_464_90079#3010_464_90079", - "npcLv": [ - 1180, - 1180, - 1180, - 1180, - 1180, - 1180 - ], - "isboss": 1, - "ghname": "npc_ghname_3", - "npcname": "jjc_npc_name_3" - }, - "20790": { - "npcId": 20790, - "attr": {}, - "npclist": "4006_447_90072#4011_447_90071#5001_447_90076#3001_447_90079#3006_447_90079#3011_447_90079", - "npcLv": [ - 1180, - 1180, - 1180, - 1180, - 1180, - 1180 - ], - "isboss": 1, - "ghname": "npc_ghname_4", - "npcname": "jjc_npc_name_4" - }, - "20791": { - "npcId": 20791, - "attr": {}, - "npclist": "4007_438_90072#4012_438_90071#5002_438_90076#3002_438_90079#3007_438_90079#3012_438_90079", - "npcLv": [ - 1180, - 1180, - 1180, - 1180, - 1180, - 1180 - ], - "isboss": 1, - "ghname": "npc_ghname_5", - "npcname": "jjc_npc_name_5" - }, - "20792": { - "npcId": 20792, - "attr": {}, - "npclist": "4008_439_90072#4013_439_90071#5003_439_90076#3003_439_90079#3008_439_90079#3013_439_90079", - "npcLv": [ - 1185, - 1185, - 1185, - 1185, - 1185, - 1185 - ], - "isboss": 1, - "ghname": "npc_ghname_6", - "npcname": "jjc_npc_name_6" - }, - "20793": { - "npcId": 20793, - "attr": {}, - "npclist": "4009_439_90072#4014_439_90071#5004_439_90076#3004_439_90079#3009_439_90079#3014_439_90079", - "npcLv": [ - 1185, - 1185, - 1185, - 1185, - 1185, - 1185 - ], - "isboss": 1, - "ghname": "npc_ghname_1", - "npcname": "jjc_npc_name_1" - }, - "20794": { - "npcId": 20794, - "attr": {}, - "npclist": "4010_441_90072#4015_441_90071#5005_441_90076#3005_441_90079#3010_441_90079#3015_441_90079", - "npcLv": [ - 1185, - 1185, - 1185, - 1185, - 1185, - 1185 - ], - "isboss": 1, - "ghname": "npc_ghname_2", - "npcname": "jjc_npc_name_2" - }, - "20795": { - "npcId": 20795, - "attr": {}, - "npclist": "4011_441_90072#5001_441_90071#3001_441_90076#3006_441_90079#3011_441_90079#4001_441_90079", - "npcLv": [ - 1191, - 1191, - 1191, - 1191, - 1191, - 1191 - ], - "isboss": 1, - "ghname": "npc_ghname_3", - "npcname": "jjc_npc_name_3" - }, - "20796": { - "npcId": 20796, - "attr": {}, - "npclist": "4012_442_90072#5002_442_90071#3002_442_90076#3007_442_90079#3012_442_90079#4002_442_90079", - "npcLv": [ - 1191, - 1191, - 1191, - 1191, - 1191, - 1191 - ], - "isboss": 1, - "ghname": "npc_ghname_4", - "npcname": "jjc_npc_name_4" - }, - "20797": { - "npcId": 20797, - "attr": {}, - "npclist": "4013_442_90072#5003_442_90071#3003_442_90076#3008_442_90079#3013_442_90079#4003_442_90079", - "npcLv": [ - 1191, - 1191, - 1191, - 1191, - 1191, - 1191 - ], - "isboss": 1, - "ghname": "npc_ghname_5", - "npcname": "jjc_npc_name_5" - }, - "20798": { - "npcId": 20798, - "attr": {}, - "npclist": "4014_443_90072#5004_443_90071#3004_443_90076#3009_443_90079#3014_443_90079#4004_443_90079", - "npcLv": [ - 1197, - 1197, - 1197, - 1197, - 1197, - 1197 - ], - "isboss": 1, - "ghname": "npc_ghname_6", - "npcname": "jjc_npc_name_6" - }, - "20799": { - "npcId": 20799, - "attr": {}, - "npclist": "4015_443_90072#5005_443_90071#3005_443_90076#3010_443_90079#3015_443_90079#4005_443_90079", - "npcLv": [ - 1197, - 1197, - 1197, - 1197, - 1197, - 1197 - ], - "isboss": 1, - "ghname": "npc_ghname_1", - "npcname": "jjc_npc_name_1" - }, - "20800": { - "npcId": 20800, - "attr": {}, - "npclist": "5001_451_90072#3001_451_90071#3006_451_90076#3011_451_90079#4001_451_90079#4006_451_90079", - "npcLv": [ - 1197, - 1197, - 1197, - 1197, - 1197, - 1197 - ], - "isboss": 1, - "ghname": "npc_ghname_2", - "npcname": "jjc_npc_name_2" - }, - "20801": { - "npcId": 20801, - "attr": {}, - "npclist": "5002_444_90072#3002_444_90071#3007_444_90076#3012_444_90079#4002_444_90079#4007_444_90079", - "npcLv": [ - 1203, - 1203, - 1203, - 1203, - 1203, - 1203 - ], - "isboss": 1, - "ghname": "npc_ghname_3", - "npcname": "jjc_npc_name_3" - }, - "20802": { - "npcId": 20802, - "attr": {}, - "npclist": "5003_445_90072#3003_445_90071#3008_445_90076#3013_445_90079#4003_445_90079#4008_445_90079", - "npcLv": [ - 1203, - 1203, - 1203, - 1203, - 1203, - 1203 - ], - "isboss": 1, - "ghname": "npc_ghname_4", - "npcname": "jjc_npc_name_4" - }, - "20803": { - "npcId": 20803, - "attr": {}, - "npclist": "5004_445_90072#3004_445_90071#3009_445_90076#3014_445_90079#4004_445_90079#4009_445_90079", - "npcLv": [ - 1203, - 1203, - 1203, - 1203, - 1203, - 1203 - ], - "isboss": 1, - "ghname": "npc_ghname_5", - "npcname": "jjc_npc_name_5" - }, - "20804": { - "npcId": 20804, - "attr": {}, - "npclist": "5005_447_90072#3005_447_90071#3010_447_90076#3015_447_90079#4005_447_90079#4010_447_90079", - "npcLv": [ - 1208, - 1208, - 1208, - 1208, - 1208, - 1208 - ], - "isboss": 1, - "ghname": "npc_ghname_6", - "npcname": "jjc_npc_name_6" - }, - "20805": { - "npcId": 20805, - "attr": {}, - "npclist": "3001_447_90072#3006_447_90071#3011_447_90076#4001_447_90079#4006_447_90079#4011_447_90079", - "npcLv": [ - 1208, - 1208, - 1208, - 1208, - 1208, - 1208 - ], - "isboss": 1, - "ghname": "npc_ghname_1", - "npcname": "jjc_npc_name_1" - }, - "20806": { - "npcId": 20806, - "attr": {}, - "npclist": "3002_448_90072#3007_448_90071#3012_448_90076#4002_448_90079#4007_448_90079#4012_448_90079", - "npcLv": [ - 1208, - 1208, - 1208, - 1208, - 1208, - 1208 - ], - "isboss": 1, - "ghname": "npc_ghname_2", - "npcname": "jjc_npc_name_2" - }, - "20807": { - "npcId": 20807, - "attr": {}, - "npclist": "3003_448_90072#3008_448_90071#3013_448_90076#4003_448_90079#4008_448_90079#4013_448_90079", - "npcLv": [ - 1214, - 1214, - 1214, - 1214, - 1214, - 1214 - ], - "isboss": 1, - "ghname": "npc_ghname_3", - "npcname": "jjc_npc_name_3" - }, - "20808": { - "npcId": 20808, - "attr": {}, - "npclist": "3004_449_90072#3009_449_90071#3014_449_90076#4004_449_90079#4009_449_90079#4014_449_90079", - "npcLv": [ - 1214, - 1214, - 1214, - 1214, - 1214, - 1214 - ], - "isboss": 1, - "ghname": "npc_ghname_4", - "npcname": "jjc_npc_name_4" - }, - "20809": { - "npcId": 20809, - "attr": {}, - "npclist": "3005_449_90072#3010_449_90071#3015_449_90076#4005_449_90079#4010_449_90079#4015_449_90079", - "npcLv": [ - 1214, - 1214, - 1214, - 1214, - 1214, - 1214 - ], - "isboss": 1, - "ghname": "npc_ghname_5", - "npcname": "jjc_npc_name_5" - }, - "20810": { - "npcId": 20810, - "attr": {}, - "npclist": "3006_458_90072#3011_458_90071#4001_458_90076#4006_458_90079#4011_458_90079#5001_458_90079", - "npcLv": [ - 1220, - 1220, - 1220, - 1220, - 1220, - 1220 - ], - "isboss": 1, - "ghname": "npc_ghname_6", - "npcname": "jjc_npc_name_6" - }, - "20811": { - "npcId": 20811, - "attr": {}, - "npclist": "3007_450_90072#3012_450_90071#4002_450_90076#4007_450_90079#4012_450_90079#5002_450_90079", - "npcLv": [ - 1220, - 1220, - 1220, - 1220, - 1220, - 1220 - ], - "isboss": 1, - "ghname": "npc_ghname_1", - "npcname": "jjc_npc_name_1" - }, - "20812": { - "npcId": 20812, - "attr": {}, - "npclist": "3008_452_90072#3013_452_90071#4003_452_90076#4008_452_90079#4013_452_90079#5003_452_90079", - "npcLv": [ - 1220, - 1220, - 1220, - 1220, - 1220, - 1220 - ], - "isboss": 1, - "ghname": "npc_ghname_2", - "npcname": "jjc_npc_name_2" - }, - "20813": { - "npcId": 20813, - "attr": {}, - "npclist": "3009_452_90072#3014_452_90071#4004_452_90076#4009_452_90079#4014_452_90079#5004_452_90079", - "npcLv": [ - 1226, - 1226, - 1226, - 1226, - 1226, - 1226 - ], - "isboss": 1, - "ghname": "npc_ghname_3", - "npcname": "jjc_npc_name_3" - }, - "20814": { - "npcId": 20814, - "attr": {}, - "npclist": "3010_453_90072#3015_453_90071#4005_453_90076#4010_453_90079#4015_453_90079#5005_453_90079", - "npcLv": [ - 1226, - 1226, - 1226, - 1226, - 1226, - 1226 - ], - "isboss": 1, - "ghname": "npc_ghname_4", - "npcname": "jjc_npc_name_4" - }, - "20815": { - "npcId": 20815, - "attr": {}, - "npclist": "3011_453_90072#4001_453_90071#4006_453_90076#4011_453_90079#5001_453_90079#3001_453_90079", - "npcLv": [ - 1226, - 1226, - 1226, - 1226, - 1226, - 1226 - ], - "isboss": 1, - "ghname": "npc_ghname_5", - "npcname": "jjc_npc_name_5" - }, - "20816": { - "npcId": 20816, - "attr": {}, - "npclist": "3012_454_90072#4002_454_90071#4007_454_90076#4012_454_90079#5002_454_90079#3002_454_90079", - "npcLv": [ - 1232, - 1232, - 1232, - 1232, - 1232, - 1232 - ], - "isboss": 1, - "ghname": "npc_ghname_6", - "npcname": "jjc_npc_name_6" - }, - "20817": { - "npcId": 20817, - "attr": {}, - "npclist": "3013_454_90072#4003_454_90071#4008_454_90076#4013_454_90079#5003_454_90079#3003_454_90079", - "npcLv": [ - 1232, - 1232, - 1232, - 1232, - 1232, - 1232 - ], - "isboss": 1, - "ghname": "npc_ghname_1", - "npcname": "jjc_npc_name_1" - }, - "20818": { - "npcId": 20818, - "attr": {}, - "npclist": "3014_455_90072#4004_455_90071#4009_455_90076#4014_455_90079#5004_455_90079#3004_455_90079", - "npcLv": [ - 1232, - 1232, - 1232, - 1232, - 1232, - 1232 - ], - "isboss": 1, - "ghname": "npc_ghname_2", - "npcname": "jjc_npc_name_2" - }, - "20819": { - "npcId": 20819, - "attr": {}, - "npclist": "3015_455_90072#4005_455_90071#4010_455_90076#4015_455_90079#5005_455_90079#3005_455_90079", - "npcLv": [ - 1238, - 1238, - 1238, - 1238, - 1238, - 1238 - ], - "isboss": 1, - "ghname": "npc_ghname_3", - "npcname": "jjc_npc_name_3" - }, - "20820": { - "npcId": 20820, - "attr": {}, - "npclist": "4001_464_90072#4006_464_90071#4011_464_90076#5001_464_90079#3001_464_90079#3006_464_90079", - "npcLv": [ - 1238, - 1238, - 1238, - 1238, - 1238, - 1238 - ], - "isboss": 1, - "ghname": "npc_ghname_4", - "npcname": "jjc_npc_name_4" - }, - "20821": { - "npcId": 20821, - "attr": {}, - "npclist": "4002_456_90072#4007_456_90071#4012_456_90076#5002_456_90079#3002_456_90079#3007_456_90079", - "npcLv": [ - 1238, - 1238, - 1238, - 1238, - 1238, - 1238 - ], - "isboss": 1, - "ghname": "npc_ghname_5", - "npcname": "jjc_npc_name_5" - }, - "20822": { - "npcId": 20822, - "attr": {}, - "npclist": "4003_458_90072#4008_458_90071#4013_458_90076#5003_458_90079#3003_458_90079#3008_458_90079", - "npcLv": [ - 1243, - 1243, - 1243, - 1243, - 1243, - 1243 - ], - "isboss": 1, - "ghname": "npc_ghname_6", - "npcname": "jjc_npc_name_6" - }, - "20823": { - "npcId": 20823, - "attr": {}, - "npclist": "4004_458_90072#4009_458_90071#4014_458_90076#5004_458_90079#3004_458_90079#3009_458_90079", - "npcLv": [ - 1243, - 1243, - 1243, - 1243, - 1243, - 1243 - ], - "isboss": 1, - "ghname": "npc_ghname_1", - "npcname": "jjc_npc_name_1" - }, - "20824": { - "npcId": 20824, - "attr": {}, - "npclist": "4005_459_90072#4010_459_90071#4015_459_90076#5005_459_90079#3005_459_90079#3010_459_90079", - "npcLv": [ - 1243, - 1243, - 1243, - 1243, - 1243, - 1243 - ], - "isboss": 1, - "ghname": "npc_ghname_2", - "npcname": "jjc_npc_name_2" - }, - "20825": { - "npcId": 20825, - "attr": {}, - "npclist": "4006_459_90072#4011_459_90071#5001_459_90076#3001_459_90079#3006_459_90079#3011_459_90079", - "npcLv": [ - 1249, - 1249, - 1249, - 1249, - 1249, - 1249 - ], - "isboss": 1, - "ghname": "npc_ghname_3", - "npcname": "jjc_npc_name_3" - }, - "20826": { - "npcId": 20826, - "attr": {}, - "npclist": "4007_460_90072#4012_460_90071#5002_460_90076#3002_460_90079#3007_460_90079#3012_460_90079", - "npcLv": [ - 1249, - 1249, - 1249, - 1249, - 1249, - 1249 - ], - "isboss": 1, - "ghname": "npc_ghname_4", - "npcname": "jjc_npc_name_4" - }, - "20827": { - "npcId": 20827, - "attr": {}, - "npclist": "4008_460_90072#4013_460_90071#5003_460_90076#3003_460_90079#3008_460_90079#3013_460_90079", - "npcLv": [ - 1249, - 1249, - 1249, - 1249, - 1249, - 1249 - ], - "isboss": 1, - "ghname": "npc_ghname_5", - "npcname": "jjc_npc_name_5" - }, - "20828": { - "npcId": 20828, - "attr": {}, - "npclist": "4009_461_90072#4014_461_90071#5004_461_90076#3004_461_90079#3009_461_90079#3014_461_90079", - "npcLv": [ - 1255, - 1255, - 1255, - 1255, - 1255, - 1255 - ], - "isboss": 1, - "ghname": "npc_ghname_6", - "npcname": "jjc_npc_name_6" - }, - "20829": { - "npcId": 20829, - "attr": {}, - "npclist": "4010_461_90072#4015_461_90071#5005_461_90076#3005_461_90079#3010_461_90079#3015_461_90079", - "npcLv": [ - 1255, - 1255, - 1255, - 1255, - 1255, - 1255 - ], - "isboss": 1, - "ghname": "npc_ghname_1", - "npcname": "jjc_npc_name_1" - }, - "20830": { - "npcId": 20830, - "attr": {}, - "npclist": "4011_470_90072#5001_470_90071#3001_470_90076#3006_470_90079#3011_470_90079#4001_470_90079", - "npcLv": [ - 1255, - 1255, - 1255, - 1255, - 1255, - 1255 - ], - "isboss": 1, - "ghname": "npc_ghname_2", - "npcname": "jjc_npc_name_2" - }, - "20831": { - "npcId": 20831, - "attr": {}, - "npclist": "4012_463_90072#5002_463_90071#3002_463_90076#3007_463_90079#3012_463_90079#4002_463_90079", - "npcLv": [ - 1261, - 1261, - 1261, - 1261, - 1261, - 1261 - ], - "isboss": 1, - "ghname": "npc_ghname_3", - "npcname": "jjc_npc_name_3" - }, - "20832": { - "npcId": 20832, - "attr": {}, - "npclist": "4013_464_90072#5003_464_90071#3003_464_90076#3008_464_90079#3013_464_90079#4003_464_90079", - "npcLv": [ - 1261, - 1261, - 1261, - 1261, - 1261, - 1261 - ], - "isboss": 1, - "ghname": "npc_ghname_4", - "npcname": "jjc_npc_name_4" - }, - "20833": { - "npcId": 20833, - "attr": {}, - "npclist": "4014_464_90072#5004_464_90071#3004_464_90076#3009_464_90079#3014_464_90079#4004_464_90079", - "npcLv": [ - 1261, - 1261, - 1261, - 1261, - 1261, - 1261 - ], - "isboss": 1, - "ghname": "npc_ghname_5", - "npcname": "jjc_npc_name_5" - }, - "20834": { - "npcId": 20834, - "attr": {}, - "npclist": "4015_465_90072#5005_465_90071#3005_465_90076#3010_465_90079#3015_465_90079#4005_465_90079", - "npcLv": [ - 1267, - 1267, - 1267, - 1267, - 1267, - 1267 - ], - "isboss": 1, - "ghname": "npc_ghname_6", - "npcname": "jjc_npc_name_6" - }, - "20835": { - "npcId": 20835, - "attr": {}, - "npclist": "5001_465_90072#3001_465_90071#3006_465_90076#3011_465_90079#4001_465_90079#4006_465_90079", - "npcLv": [ - 1267, - 1267, - 1267, - 1267, - 1267, - 1267 - ], - "isboss": 1, - "ghname": "npc_ghname_1", - "npcname": "jjc_npc_name_1" - }, - "20836": { - "npcId": 20836, - "attr": {}, - "npclist": "5002_466_90072#3002_466_90071#3007_466_90076#3012_466_90079#4002_466_90079#4007_466_90079", - "npcLv": [ - 1267, - 1267, - 1267, - 1267, - 1267, - 1267 - ], - "isboss": 1, - "ghname": "npc_ghname_2", - "npcname": "jjc_npc_name_2" - }, - "20837": { - "npcId": 20837, - "attr": {}, - "npclist": "5003_466_90072#3003_466_90071#3008_466_90076#3013_466_90079#4003_466_90079#4008_466_90079", - "npcLv": [ - 1273, - 1273, - 1273, - 1273, - 1273, - 1273 - ], - "isboss": 1, - "ghname": "npc_ghname_3", - "npcname": "jjc_npc_name_3" - }, - "20838": { - "npcId": 20838, - "attr": {}, - "npclist": "5004_467_90072#3004_467_90071#3009_467_90076#3014_467_90079#4004_467_90079#4009_467_90079", - "npcLv": [ - 1273, - 1273, - 1273, - 1273, - 1273, - 1273 - ], - "isboss": 1, - "ghname": "npc_ghname_4", - "npcname": "jjc_npc_name_4" - }, - "20839": { - "npcId": 20839, - "attr": {}, - "npclist": "5005_467_90072#3005_467_90071#3010_467_90076#3015_467_90079#4005_467_90079#4010_467_90079", - "npcLv": [ - 1273, - 1273, - 1273, - 1273, - 1273, - 1273 - ], - "isboss": 1, - "ghname": "npc_ghname_5", - "npcname": "jjc_npc_name_5" - }, - "20840": { - "npcId": 20840, - "attr": {}, - "npclist": "3001_476_90072#3006_476_90071#3011_476_90076#4001_476_90079#4006_476_90079#4011_476_90079", - "npcLv": [ - 1278, - 1278, - 1278, - 1278, - 1278, - 1278 - ], - "isboss": 1, - "ghname": "npc_ghname_6", - "npcname": "jjc_npc_name_6" - }, - "20841": { - "npcId": 20841, - "attr": {}, - "npclist": "3002_469_90072#3007_469_90071#3012_469_90076#4002_469_90079#4007_469_90079#4012_469_90079", - "npcLv": [ - 1278, - 1278, - 1278, - 1278, - 1278, - 1278 - ], - "isboss": 1, - "ghname": "npc_ghname_1", - "npcname": "jjc_npc_name_1" - }, - "20842": { - "npcId": 20842, - "attr": {}, - "npclist": "3003_470_90072#3008_470_90071#3013_470_90076#4003_470_90079#4008_470_90079#4013_470_90079", - "npcLv": [ - 1278, - 1278, - 1278, - 1278, - 1278, - 1278 - ], - "isboss": 1, - "ghname": "npc_ghname_2", - "npcname": "jjc_npc_name_2" - }, - "20843": { - "npcId": 20843, - "attr": {}, - "npclist": "3004_470_90072#3009_470_90071#3014_470_90076#4004_470_90079#4009_470_90079#4014_470_90079", - "npcLv": [ - 1284, - 1284, - 1284, - 1284, - 1284, - 1284 - ], - "isboss": 1, - "ghname": "npc_ghname_3", - "npcname": "jjc_npc_name_3" - }, - "20844": { - "npcId": 20844, - "attr": {}, - "npclist": "3005_471_90072#3010_471_90071#3015_471_90076#4005_471_90079#4010_471_90079#4015_471_90079", - "npcLv": [ - 1284, - 1284, - 1284, - 1284, - 1284, - 1284 - ], - "isboss": 1, - "ghname": "npc_ghname_4", - "npcname": "jjc_npc_name_4" - }, - "20845": { - "npcId": 20845, - "attr": {}, - "npclist": "3006_471_90072#3011_471_90071#4001_471_90076#4006_471_90079#4011_471_90079#5001_471_90079", - "npcLv": [ - 1284, - 1284, - 1284, - 1284, - 1284, - 1284 - ], - "isboss": 1, - "ghname": "npc_ghname_5", - "npcname": "jjc_npc_name_5" - }, - "20846": { - "npcId": 20846, - "attr": {}, - "npclist": "3007_472_90072#3012_472_90071#4002_472_90076#4007_472_90079#4012_472_90079#5002_472_90079", - "npcLv": [ - 1290, - 1290, - 1290, - 1290, - 1290, - 1290 - ], - "isboss": 1, - "ghname": "npc_ghname_6", - "npcname": "jjc_npc_name_6" - }, - "20847": { - "npcId": 20847, - "attr": {}, - "npclist": "3008_472_90072#3013_472_90071#4003_472_90076#4008_472_90079#4013_472_90079#5003_472_90079", - "npcLv": [ - 1290, - 1290, - 1290, - 1290, - 1290, - 1290 - ], - "isboss": 1, - "ghname": "npc_ghname_1", - "npcname": "jjc_npc_name_1" - }, - "20848": { - "npcId": 20848, - "attr": {}, - "npclist": "3009_474_90072#3014_474_90071#4004_474_90076#4009_474_90079#4014_474_90079#5004_474_90079", - "npcLv": [ - 1290, - 1290, - 1290, - 1290, - 1290, - 1290 - ], - "isboss": 1, - "ghname": "npc_ghname_2", - "npcname": "jjc_npc_name_2" - }, - "20849": { - "npcId": 20849, - "attr": {}, - "npclist": "3010_474_90072#3015_474_90071#4005_474_90076#4010_474_90079#4015_474_90079#5005_474_90079", - "npcLv": [ - 1296, - 1296, - 1296, - 1296, - 1296, - 1296 - ], - "isboss": 1, - "ghname": "npc_ghname_3", - "npcname": "jjc_npc_name_3" - }, - "20850": { - "npcId": 20850, - "attr": {}, - "npclist": "3011_483_90072#4001_483_90071#4006_483_90076#4011_483_90079#5001_483_90079#3001_483_90079", - "npcLv": [ - 1296, - 1296, - 1296, - 1296, - 1296, - 1296 - ], - "isboss": 1, - "ghname": "npc_ghname_4", - "npcname": "jjc_npc_name_4" - }, - "20851": { - "npcId": 20851, - "attr": {}, - "npclist": "3012_481_90072#4002_481_90071#4007_481_90076#4012_481_90079#5002_481_90079#3002_481_90079", - "npcLv": [ - 1296, - 1296, - 1296, - 1296, - 1296, - 1296 - ], - "isboss": 1, - "ghname": "npc_ghname_5", - "npcname": "jjc_npc_name_5" - }, - "20852": { - "npcId": 20852, - "attr": {}, - "npclist": "3013_478_90072#4003_478_90071#4008_478_90076#4013_478_90079#5003_478_90079#3003_478_90079", - "npcLv": [ - 1302, - 1302, - 1302, - 1302, - 1302, - 1302 - ], - "isboss": 1, - "ghname": "npc_ghname_6", - "npcname": "jjc_npc_name_6" - }, - "20853": { - "npcId": 20853, - "attr": {}, - "npclist": "3014_478_90072#4004_478_90071#4009_478_90076#4014_478_90079#5004_478_90079#3004_478_90079", - "npcLv": [ - 1302, - 1302, - 1302, - 1302, - 1302, - 1302 - ], - "isboss": 1, - "ghname": "npc_ghname_1", - "npcname": "jjc_npc_name_1" - }, - "20854": { - "npcId": 20854, - "attr": {}, - "npclist": "3015_479_90072#4005_479_90071#4010_479_90076#4015_479_90079#5005_479_90079#3005_479_90079", - "npcLv": [ - 1302, - 1302, - 1302, - 1302, - 1302, - 1302 - ], - "isboss": 1, - "ghname": "npc_ghname_2", - "npcname": "jjc_npc_name_2" - }, - "20855": { - "npcId": 20855, - "attr": {}, - "npclist": "4001_479_90072#4006_479_90071#4011_479_90076#5001_479_90079#3001_479_90079#3006_479_90079", - "npcLv": [ - 1308, - 1308, - 1308, - 1308, - 1308, - 1308 - ], - "isboss": 1, - "ghname": "npc_ghname_3", - "npcname": "jjc_npc_name_3" - }, - "20856": { - "npcId": 20856, - "attr": {}, - "npclist": "4002_480_90072#4007_480_90071#4012_480_90076#5002_480_90079#3002_480_90079#3007_480_90079", - "npcLv": [ - 1308, - 1308, - 1308, - 1308, - 1308, - 1308 - ], - "isboss": 1, - "ghname": "npc_ghname_4", - "npcname": "jjc_npc_name_4" - }, - "20857": { - "npcId": 20857, - "attr": {}, - "npclist": "4003_480_90072#4008_480_90071#4013_480_90076#5003_480_90079#3003_480_90079#3008_480_90079", - "npcLv": [ - 1308, - 1308, - 1308, - 1308, - 1308, - 1308 - ], - "isboss": 1, - "ghname": "npc_ghname_5", - "npcname": "jjc_npc_name_5" - }, - "20858": { - "npcId": 20858, - "attr": {}, - "npclist": "4004_482_90072#4009_482_90071#4014_482_90076#5004_482_90079#3004_482_90079#3009_482_90079", - "npcLv": [ - 1314, - 1314, - 1314, - 1314, - 1314, - 1314 - ], - "isboss": 1, - "ghname": "npc_ghname_6", - "npcname": "jjc_npc_name_6" - }, - "20859": { - "npcId": 20859, - "attr": {}, - "npclist": "4005_482_90072#4010_482_90071#4015_482_90076#5005_482_90079#3005_482_90079#3010_482_90079", - "npcLv": [ - 1314, - 1314, - 1314, - 1314, - 1314, - 1314 - ], - "isboss": 1, - "ghname": "npc_ghname_1", - "npcname": "jjc_npc_name_1" - }, - "20860": { - "npcId": 20860, - "attr": {}, - "npclist": "4006_489_90072#4011_489_90071#5001_489_90076#3001_489_90079#3006_489_90079#3011_489_90079", - "npcLv": [ - 1314, - 1314, - 1314, - 1314, - 1314, - 1314 - ], - "isboss": 1, - "ghname": "npc_ghname_2", - "npcname": "jjc_npc_name_2" - }, - "20861": { - "npcId": 20861, - "attr": {}, - "npclist": "4007_487_90072#4012_487_90071#5002_487_90076#3002_487_90079#3007_487_90079#3012_487_90079", - "npcLv": [ - 1319, - 1319, - 1319, - 1319, - 1319, - 1319 - ], - "isboss": 1, - "ghname": "npc_ghname_3", - "npcname": "jjc_npc_name_3" - }, - "20862": { - "npcId": 20862, - "attr": {}, - "npclist": "4008_488_90072#4013_488_90071#5003_488_90076#3003_488_90079#3008_488_90079#3013_488_90079", - "npcLv": [ - 1319, - 1319, - 1319, - 1319, - 1319, - 1319 - ], - "isboss": 1, - "ghname": "npc_ghname_4", - "npcname": "jjc_npc_name_4" - }, - "20863": { - "npcId": 20863, - "attr": {}, - "npclist": "4009_488_90072#4014_488_90071#5004_488_90076#3004_488_90079#3009_488_90079#3014_488_90079", - "npcLv": [ - 1319, - 1319, - 1319, - 1319, - 1319, - 1319 - ], - "isboss": 1, - "ghname": "npc_ghname_5", - "npcname": "jjc_npc_name_5" - }, - "20864": { - "npcId": 20864, - "attr": {}, - "npclist": "4010_489_90072#4015_489_90071#5005_489_90076#3005_489_90079#3010_489_90079#3015_489_90079", - "npcLv": [ - 1325, - 1325, - 1325, - 1325, - 1325, - 1325 - ], - "isboss": 1, - "ghname": "npc_ghname_6", - "npcname": "jjc_npc_name_6" - }, - "20865": { - "npcId": 20865, - "attr": {}, - "npclist": "4011_489_90072#5001_489_90071#3001_489_90076#3006_489_90079#3011_489_90079#4001_489_90079", - "npcLv": [ - 1325, - 1325, - 1325, - 1325, - 1325, - 1325 - ], - "isboss": 1, - "ghname": "npc_ghname_1", - "npcname": "jjc_npc_name_1" - }, - "20866": { - "npcId": 20866, - "attr": {}, - "npclist": "4012_491_90072#5002_491_90071#3002_491_90076#3007_491_90079#3012_491_90079#4002_491_90079", - "npcLv": [ - 1325, - 1325, - 1325, - 1325, - 1325, - 1325 - ], - "isboss": 1, - "ghname": "npc_ghname_2", - "npcname": "jjc_npc_name_2" - }, - "20867": { - "npcId": 20867, - "attr": {}, - "npclist": "4013_491_90072#5003_491_90071#3003_491_90076#3008_491_90079#3013_491_90079#4003_491_90079", - "npcLv": [ - 1331, - 1331, - 1331, - 1331, - 1331, - 1331 - ], - "isboss": 1, - "ghname": "npc_ghname_3", - "npcname": "jjc_npc_name_3" - }, - "20868": { - "npcId": 20868, - "attr": {}, - "npclist": "4014_492_90072#5004_492_90071#3004_492_90076#3009_492_90079#3014_492_90079#4004_492_90079", - "npcLv": [ - 1331, - 1331, - 1331, - 1331, - 1331, - 1331 - ], - "isboss": 1, - "ghname": "npc_ghname_4", - "npcname": "jjc_npc_name_4" - }, - "20869": { - "npcId": 20869, - "attr": {}, - "npclist": "4015_492_90072#5005_492_90071#3005_492_90076#3010_492_90079#3015_492_90079#4005_492_90079", - "npcLv": [ - 1331, - 1331, - 1331, - 1331, - 1331, - 1331 - ], - "isboss": 1, - "ghname": "npc_ghname_5", - "npcname": "jjc_npc_name_5" - }, - "20870": { - "npcId": 20870, - "attr": {}, - "npclist": "5001_495_90072#3001_495_90071#3006_495_90076#3011_495_90079#4001_495_90079#4006_495_90079", - "npcLv": [ - 1337, - 1337, - 1337, - 1337, - 1337, - 1337 - ], - "isboss": 1, - "ghname": "npc_ghname_6", - "npcname": "jjc_npc_name_6" - }, - "20871": { - "npcId": 20871, - "attr": {}, - "npclist": "5002_489_90072#3002_489_90071#3007_489_90076#3012_489_90079#4002_489_90079#4007_489_90079", - "npcLv": [ - 1337, - 1337, - 1337, - 1337, - 1337, - 1337 - ], - "isboss": 1, - "ghname": "npc_ghname_1", - "npcname": "jjc_npc_name_1" - }, - "20872": { - "npcId": 20872, - "attr": {}, - "npclist": "5003_490_90072#3003_490_90071#3008_490_90076#3013_490_90079#4003_490_90079#4008_490_90079", - "npcLv": [ - 1337, - 1337, - 1337, - 1337, - 1337, - 1337 - ], - "isboss": 1, - "ghname": "npc_ghname_2", - "npcname": "jjc_npc_name_2" - }, - "20873": { - "npcId": 20873, - "attr": {}, - "npclist": "5004_490_90072#3004_490_90071#3009_490_90076#3014_490_90079#4004_490_90079#4009_490_90079", - "npcLv": [ - 1343, - 1343, - 1343, - 1343, - 1343, - 1343 - ], - "isboss": 1, - "ghname": "npc_ghname_3", - "npcname": "jjc_npc_name_3" - }, - "20874": { - "npcId": 20874, - "attr": {}, - "npclist": "5005_492_90072#3005_492_90071#3010_492_90076#3015_492_90079#4005_492_90079#4010_492_90079", - "npcLv": [ - 1343, - 1343, - 1343, - 1343, - 1343, - 1343 - ], - "isboss": 1, - "ghname": "npc_ghname_4", - "npcname": "jjc_npc_name_4" - }, - "20875": { - "npcId": 20875, - "attr": {}, - "npclist": "3001_493_90072#3006_493_90071#3011_493_90076#4001_493_90079#4006_493_90079#4011_493_90079", - "npcLv": [ - 1343, - 1343, - 1343, - 1343, - 1343, - 1343 - ], - "isboss": 1, - "ghname": "npc_ghname_5", - "npcname": "jjc_npc_name_5" - }, - "20876": { - "npcId": 20876, - "attr": {}, - "npclist": "3002_494_90072#3007_494_90071#3012_494_90076#4002_494_90079#4007_494_90079#4012_494_90079", - "npcLv": [ - 1349, - 1349, - 1349, - 1349, - 1349, - 1349 - ], - "isboss": 1, - "ghname": "npc_ghname_6", - "npcname": "jjc_npc_name_6" - }, - "20877": { - "npcId": 20877, - "attr": {}, - "npclist": "3003_495_90072#3008_495_90071#3013_495_90076#4003_495_90079#4008_495_90079#4013_495_90079", - "npcLv": [ - 1349, - 1349, - 1349, - 1349, - 1349, - 1349 - ], - "isboss": 1, - "ghname": "npc_ghname_1", - "npcname": "jjc_npc_name_1" - }, - "20878": { - "npcId": 20878, - "attr": {}, - "npclist": "3004_496_90072#3009_496_90071#3014_496_90076#4004_496_90079#4009_496_90079#4014_496_90079", - "npcLv": [ - 1349, - 1349, - 1349, - 1349, - 1349, - 1349 - ], - "isboss": 1, - "ghname": "npc_ghname_2", - "npcname": "jjc_npc_name_2" - }, - "20879": { - "npcId": 20879, - "attr": {}, - "npclist": "3005_498_90072#3010_498_90071#3015_498_90076#4005_498_90079#4010_498_90079#4015_498_90079", - "npcLv": [ - 1355, - 1355, - 1355, - 1355, - 1355, - 1355 - ], - "isboss": 1, - "ghname": "npc_ghname_3", - "npcname": "jjc_npc_name_3" - }, - "20880": { - "npcId": 20880, - "attr": {}, - "npclist": "3006_507_90072#3011_507_90071#4001_507_90076#4006_507_90079#4011_507_90079#5001_507_90079", - "npcLv": [ - 1355, - 1355, - 1355, - 1355, - 1355, - 1355 - ], - "isboss": 1, - "ghname": "npc_ghname_4", - "npcname": "jjc_npc_name_4" - }, - "20881": { - "npcId": 20881, - "attr": {}, - "npclist": "3007_504_90072#3012_504_90071#4002_504_90076#4007_504_90079#4012_504_90079#5002_504_90079", - "npcLv": [ - 1355, - 1355, - 1355, - 1355, - 1355, - 1355 - ], - "isboss": 1, - "ghname": "npc_ghname_5", - "npcname": "jjc_npc_name_5" - }, - "20882": { - "npcId": 20882, - "attr": {}, - "npclist": "3008_505_90072#3013_505_90071#4003_505_90076#4008_505_90079#4013_505_90079#5003_505_90079", - "npcLv": [ - 1361, - 1361, - 1361, - 1361, - 1361, - 1361 - ], - "isboss": 1, - "ghname": "npc_ghname_6", - "npcname": "jjc_npc_name_6" - }, - "20883": { - "npcId": 20883, - "attr": {}, - "npclist": "3009_507_90072#3014_507_90071#4004_507_90076#4009_507_90079#4014_507_90079#5004_507_90079", - "npcLv": [ - 1361, - 1361, - 1361, - 1361, - 1361, - 1361 - ], - "isboss": 1, - "ghname": "npc_ghname_1", - "npcname": "jjc_npc_name_1" - }, - "20884": { - "npcId": 20884, - "attr": {}, - "npclist": "3010_508_90072#3015_508_90071#4005_508_90076#4010_508_90079#4015_508_90079#5005_508_90079", - "npcLv": [ - 1361, - 1361, - 1361, - 1361, - 1361, - 1361 - ], - "isboss": 1, - "ghname": "npc_ghname_2", - "npcname": "jjc_npc_name_2" - }, - "20885": { - "npcId": 20885, - "attr": {}, - "npclist": "3011_509_90072#4001_509_90071#4006_509_90076#4011_509_90079#5001_509_90079#3001_509_90079", - "npcLv": [ - 1366, - 1366, - 1366, - 1366, - 1366, - 1366 - ], - "isboss": 1, - "ghname": "npc_ghname_3", - "npcname": "jjc_npc_name_3" - }, - "20886": { - "npcId": 20886, - "attr": {}, - "npclist": "3012_510_90072#4002_510_90071#4007_510_90076#4012_510_90079#5002_510_90079#3002_510_90079", - "npcLv": [ - 1366, - 1366, - 1366, - 1366, - 1366, - 1366 - ], - "isboss": 1, "ghname": "npc_ghname_4", "npcname": "jjc_npc_name_4" }, "20887": { "npcId": 20887, "attr": {}, - "npclist": "3013_512_90072#4003_512_90071#4008_512_90076#4013_512_90079#5003_512_90079#3003_512_90079", + "npclist": "3013_224_90072#4003_224_90071#4008_224_90076#4013_224_90079#5003_224_90079#3003_224_90079", "npcLv": [ - 1366, - 1366, - 1366, - 1366, - 1366, - 1366 + 688, + 688, + 688, + 688, + 688, + 688 ], "isboss": 1, "ghname": "npc_ghname_5", @@ -36053,14 +36053,14 @@ "20888": { "npcId": 20888, "attr": {}, - "npclist": "3014_513_90072#4004_513_90071#4009_513_90076#4014_513_90079#5004_513_90079#3004_513_90079", + "npclist": "3014_225_90072#4004_225_90071#4009_225_90076#4014_225_90079#5004_225_90079#3004_225_90079", "npcLv": [ - 1372, - 1372, - 1372, - 1372, - 1372, - 1372 + 689, + 689, + 689, + 689, + 689, + 689 ], "isboss": 1, "ghname": "npc_ghname_6", @@ -36069,14 +36069,14 @@ "20889": { "npcId": 20889, "attr": {}, - "npclist": "3015_514_90072#4005_514_90071#4010_514_90076#4015_514_90079#5005_514_90079#3005_514_90079", + "npclist": "3015_225_90072#4005_225_90071#4010_225_90076#4015_225_90079#5005_225_90079#3005_225_90079", "npcLv": [ - 1372, - 1372, - 1372, - 1372, - 1372, - 1372 + 690, + 690, + 690, + 690, + 690, + 690 ], "isboss": 1, "ghname": "npc_ghname_1", @@ -36085,14 +36085,14 @@ "20890": { "npcId": 20890, "attr": {}, - "npclist": "4001_520_90072#4006_520_90071#4011_520_90076#5001_520_90079#3001_520_90079#3006_520_90079", + "npclist": "4001_250_90072#4006_250_90071#4011_250_90076#5001_250_90079#3001_250_90079#3006_250_90079", "npcLv": [ - 1372, - 1372, - 1372, - 1372, - 1372, - 1372 + 691, + 691, + 691, + 691, + 691, + 691 ], "isboss": 1, "ghname": "npc_ghname_2", @@ -36101,14 +36101,14 @@ "20891": { "npcId": 20891, "attr": {}, - "npclist": "4002_517_90072#4007_517_90071#4012_517_90076#5002_517_90079#3002_517_90079#3007_517_90079", + "npclist": "4002_223_90072#4007_223_90071#4012_223_90076#5002_223_90079#3002_223_90079#3007_223_90079", "npcLv": [ - 1378, - 1378, - 1378, - 1378, - 1378, - 1378 + 692, + 692, + 692, + 692, + 692, + 692 ], "isboss": 1, "ghname": "npc_ghname_3", @@ -36117,14 +36117,14 @@ "20892": { "npcId": 20892, "attr": {}, - "npclist": "4003_518_90072#4008_518_90071#4013_518_90076#5003_518_90079#3003_518_90079#3008_518_90079", + "npclist": "4003_224_90072#4008_224_90071#4013_224_90076#5003_224_90079#3003_224_90079#3008_224_90079", "npcLv": [ - 1378, - 1378, - 1378, - 1378, - 1378, - 1378 + 693, + 693, + 693, + 693, + 693, + 693 ], "isboss": 1, "ghname": "npc_ghname_4", @@ -36133,14 +36133,14 @@ "20893": { "npcId": 20893, "attr": {}, - "npclist": "4004_519_90072#4009_519_90071#4014_519_90076#5004_519_90079#3004_519_90079#3009_519_90079", + "npclist": "4004_225_90072#4009_225_90071#4014_225_90076#5004_225_90079#3004_225_90079#3009_225_90079", "npcLv": [ - 1378, - 1378, - 1378, - 1378, - 1378, - 1378 + 694, + 694, + 694, + 694, + 694, + 694 ], "isboss": 1, "ghname": "npc_ghname_5", @@ -36149,14 +36149,14 @@ "20894": { "npcId": 20894, "attr": {}, - "npclist": "4005_520_90072#4010_520_90071#4015_520_90076#5005_520_90079#3005_520_90079#3010_520_90079", + "npclist": "4005_226_90072#4010_226_90071#4015_226_90076#5005_226_90079#3005_226_90079#3010_226_90079", "npcLv": [ - 1384, - 1384, - 1384, - 1384, - 1384, - 1384 + 695, + 695, + 695, + 695, + 695, + 695 ], "isboss": 1, "ghname": "npc_ghname_6", @@ -36165,14 +36165,14 @@ "20895": { "npcId": 20895, "attr": {}, - "npclist": "4006_522_90072#4011_522_90071#5001_522_90076#3001_522_90079#3006_522_90079#3011_522_90079", + "npclist": "4006_227_90072#4011_227_90071#5001_227_90076#3001_227_90079#3006_227_90079#3011_227_90079", "npcLv": [ - 1384, - 1384, - 1384, - 1384, - 1384, - 1384 + 696, + 696, + 696, + 696, + 696, + 696 ], "isboss": 1, "ghname": "npc_ghname_1", @@ -36181,14 +36181,14 @@ "20896": { "npcId": 20896, "attr": {}, - "npclist": "4007_523_90072#4012_523_90071#5002_523_90076#3002_523_90079#3007_523_90079#3012_523_90079", + "npclist": "4007_228_90072#4012_228_90071#5002_228_90076#3002_228_90079#3007_228_90079#3012_228_90079", "npcLv": [ - 1384, - 1384, - 1384, - 1384, - 1384, - 1384 + 697, + 697, + 697, + 697, + 697, + 697 ], "isboss": 1, "ghname": "npc_ghname_2", @@ -36197,14 +36197,14 @@ "20897": { "npcId": 20897, "attr": {}, - "npclist": "4008_524_90072#4013_524_90071#5003_524_90076#3003_524_90079#3008_524_90079#3013_524_90079", + "npclist": "4008_229_90072#4013_229_90071#5003_229_90076#3003_229_90079#3008_229_90079#3013_229_90079", "npcLv": [ - 1390, - 1390, - 1390, - 1390, - 1390, - 1390 + 698, + 698, + 698, + 698, + 698, + 698 ], "isboss": 1, "ghname": "npc_ghname_3", @@ -36213,14 +36213,14 @@ "20898": { "npcId": 20898, "attr": {}, - "npclist": "4009_525_90072#4014_525_90071#5004_525_90076#3004_525_90079#3009_525_90079#3014_525_90079", + "npclist": "4009_230_90072#4014_230_90071#5004_230_90076#3004_230_90079#3009_230_90079#3014_230_90079", "npcLv": [ - 1390, - 1390, - 1390, - 1390, - 1390, - 1390 + 699, + 699, + 699, + 699, + 699, + 699 ], "isboss": 1, "ghname": "npc_ghname_4", @@ -36229,14 +36229,14 @@ "20899": { "npcId": 20899, "attr": {}, - "npclist": "4010_527_90072#4015_527_90071#5005_527_90076#3005_527_90079#3010_527_90079#3015_527_90079", + "npclist": "4010_231_90072#4015_231_90071#5005_231_90076#3005_231_90079#3010_231_90079#3015_231_90079", "npcLv": [ - 1390, - 1390, - 1390, - 1390, - 1390, - 1390 + 700, + 700, + 700, + 700, + 700, + 700 ], "isboss": 1, "ghname": "npc_ghname_5", @@ -36245,14 +36245,14 @@ "20900": { "npcId": 20900, "attr": {}, - "npclist": "4011_532_90072#5001_532_90071#3001_532_90076#3006_532_90079#3011_532_90079#4001_532_90079", + "npclist": "4011_256_90072#5001_256_90071#3001_256_90076#3006_256_90079#3011_256_90079#4001_256_90079", "npcLv": [ - 1396, - 1396, - 1396, - 1396, - 1396, - 1396 + 701, + 701, + 701, + 701, + 701, + 701 ], "isboss": 1, "ghname": "npc_ghname_6", @@ -36261,14 +36261,14 @@ "20901": { "npcId": 20901, "attr": {}, - "npclist": "4012_529_90072#5002_529_90071#3002_529_90076#3007_529_90079#3012_529_90079#4002_529_90079", + "npclist": "4012_227_90072#5002_227_90071#3002_227_90076#3007_227_90079#3012_227_90079#4002_227_90079", "npcLv": [ - 1396, - 1396, - 1396, - 1396, - 1396, - 1396 + 702, + 702, + 702, + 702, + 702, + 702 ], "isboss": 1, "ghname": "npc_ghname_1", @@ -36277,14 +36277,14 @@ "20902": { "npcId": 20902, "attr": {}, - "npclist": "4013_530_90072#5003_530_90071#3003_530_90076#3008_530_90079#3013_530_90079#4003_530_90079", + "npclist": "4013_228_90072#5003_228_90071#3003_228_90076#3008_228_90079#3013_228_90079#4003_228_90079", "npcLv": [ - 1396, - 1396, - 1396, - 1396, - 1396, - 1396 + 703, + 703, + 703, + 703, + 703, + 703 ], "isboss": 1, "ghname": "npc_ghname_2", @@ -36293,14 +36293,14 @@ "20903": { "npcId": 20903, "attr": {}, - "npclist": "4014_531_90072#5004_531_90071#3004_531_90076#3009_531_90079#3014_531_90079#4004_531_90079", + "npclist": "4014_229_90072#5004_229_90071#3004_229_90076#3009_229_90079#3014_229_90079#4004_229_90079", "npcLv": [ - 1402, - 1402, - 1402, - 1402, - 1402, - 1402 + 704, + 704, + 704, + 704, + 704, + 704 ], "isboss": 1, "ghname": "npc_ghname_3", @@ -36309,14 +36309,14 @@ "20904": { "npcId": 20904, "attr": {}, - "npclist": "4015_533_90072#5005_533_90071#3005_533_90076#3010_533_90079#3015_533_90079#4005_533_90079", + "npclist": "4015_230_90072#5005_230_90071#3005_230_90076#3010_230_90079#3015_230_90079#4005_230_90079", "npcLv": [ - 1402, - 1402, - 1402, - 1402, - 1402, - 1402 + 705, + 705, + 705, + 705, + 705, + 705 ], "isboss": 1, "ghname": "npc_ghname_4", @@ -36325,14 +36325,14 @@ "20905": { "npcId": 20905, "attr": {}, - "npclist": "5001_534_90072#3001_534_90071#3006_534_90076#3011_534_90079#4001_534_90079#4006_534_90079", + "npclist": "5001_231_90072#3001_231_90071#3006_231_90076#3011_231_90079#4001_231_90079#4006_231_90079", "npcLv": [ - 1402, - 1402, - 1402, - 1402, - 1402, - 1402 + 706, + 706, + 706, + 706, + 706, + 706 ], "isboss": 1, "ghname": "npc_ghname_5", @@ -36341,14 +36341,14 @@ "20906": { "npcId": 20906, "attr": {}, - "npclist": "5002_535_90072#3002_535_90071#3007_535_90076#3012_535_90079#4002_535_90079#4007_535_90079", + "npclist": "5002_232_90072#3002_232_90071#3007_232_90076#3012_232_90079#4002_232_90079#4007_232_90079", "npcLv": [ - 1408, - 1408, - 1408, - 1408, - 1408, - 1408 + 707, + 707, + 707, + 707, + 707, + 707 ], "isboss": 1, "ghname": "npc_ghname_6", @@ -36357,14 +36357,14 @@ "20907": { "npcId": 20907, "attr": {}, - "npclist": "5003_536_90072#3003_536_90071#3008_536_90076#3013_536_90079#4003_536_90079#4008_536_90079", + "npclist": "5003_233_90072#3003_233_90071#3008_233_90076#3013_233_90079#4003_233_90079#4008_233_90079", "npcLv": [ - 1408, - 1408, - 1408, - 1408, - 1408, - 1408 + 708, + 708, + 708, + 708, + 708, + 708 ], "isboss": 1, "ghname": "npc_ghname_1", @@ -36373,14 +36373,14 @@ "20908": { "npcId": 20908, "attr": {}, - "npclist": "5004_538_90072#3004_538_90071#3009_538_90076#3014_538_90079#4004_538_90079#4009_538_90079", + "npclist": "5004_234_90072#3004_234_90071#3009_234_90076#3014_234_90079#4004_234_90079#4009_234_90079", "npcLv": [ - 1408, - 1408, - 1408, - 1408, - 1408, - 1408 + 709, + 709, + 709, + 709, + 709, + 709 ], "isboss": 1, "ghname": "npc_ghname_2", @@ -36389,14 +36389,14 @@ "20909": { "npcId": 20909, "attr": {}, - "npclist": "5005_539_90072#3005_539_90071#3010_539_90076#3015_539_90079#4005_539_90079#4010_539_90079", + "npclist": "5005_235_90072#3005_235_90071#3010_235_90076#3015_235_90079#4005_235_90079#4010_235_90079", "npcLv": [ - 1414, - 1414, - 1414, - 1414, - 1414, - 1414 + 710, + 710, + 710, + 710, + 710, + 710 ], "isboss": 1, "ghname": "npc_ghname_3", @@ -36405,14 +36405,14 @@ "20910": { "npcId": 20910, "attr": {}, - "npclist": "3001_545_90072#3006_545_90071#3011_545_90076#4001_545_90079#4006_545_90079#4011_545_90079", + "npclist": "3001_262_90072#3006_262_90071#3011_262_90076#4001_262_90079#4006_262_90079#4011_262_90079", "npcLv": [ - 1414, - 1414, - 1414, - 1414, - 1414, - 1414 + 711, + 711, + 711, + 711, + 711, + 711 ], "isboss": 1, "ghname": "npc_ghname_4", @@ -36421,14 +36421,14 @@ "20911": { "npcId": 20911, "attr": {}, - "npclist": "3002_544_90072#3007_544_90071#3012_544_90076#4002_544_90079#4007_544_90079#4012_544_90079", + "npclist": "3002_231_90072#3007_231_90071#3012_231_90076#4002_231_90079#4007_231_90079#4012_231_90079", "npcLv": [ - 1414, - 1414, - 1414, - 1414, - 1414, - 1414 + 712, + 712, + 712, + 712, + 712, + 712 ], "isboss": 1, "ghname": "npc_ghname_5", @@ -36437,14 +36437,14 @@ "20912": { "npcId": 20912, "attr": {}, - "npclist": "3003_545_90072#3008_545_90071#3013_545_90076#4003_545_90079#4008_545_90079#4013_545_90079", + "npclist": "3003_232_90072#3008_232_90071#3013_232_90076#4003_232_90079#4008_232_90079#4013_232_90079", "npcLv": [ - 1420, - 1420, - 1420, - 1420, - 1420, - 1420 + 713, + 713, + 713, + 713, + 713, + 713 ], "isboss": 1, "ghname": "npc_ghname_6", @@ -36453,14 +36453,14 @@ "20913": { "npcId": 20913, "attr": {}, - "npclist": "3004_546_90072#3009_546_90071#3014_546_90076#4004_546_90079#4009_546_90079#4014_546_90079", + "npclist": "3004_233_90072#3009_233_90071#3014_233_90076#4004_233_90079#4009_233_90079#4014_233_90079", "npcLv": [ - 1420, - 1420, - 1420, - 1420, - 1420, - 1420 + 714, + 714, + 714, + 714, + 714, + 714 ], "isboss": 1, "ghname": "npc_ghname_1", @@ -36469,14 +36469,14 @@ "20914": { "npcId": 20914, "attr": {}, - "npclist": "3005_547_90072#3010_547_90071#3015_547_90076#4005_547_90079#4010_547_90079#4015_547_90079", + "npclist": "3005_234_90072#3010_234_90071#3015_234_90076#4005_234_90079#4010_234_90079#4015_234_90079", "npcLv": [ - 1420, - 1420, - 1420, - 1420, - 1420, - 1420 + 715, + 715, + 715, + 715, + 715, + 715 ], "isboss": 1, "ghname": "npc_ghname_2", @@ -36485,14 +36485,14 @@ "20915": { "npcId": 20915, "attr": {}, - "npclist": "3006_549_90072#3011_549_90071#4001_549_90076#4006_549_90079#4011_549_90079#5001_549_90079", + "npclist": "3006_235_90072#3011_235_90071#4001_235_90076#4006_235_90079#4011_235_90079#5001_235_90079", "npcLv": [ - 1426, - 1426, - 1426, - 1426, - 1426, - 1426 + 716, + 716, + 716, + 716, + 716, + 716 ], "isboss": 1, "ghname": "npc_ghname_3", @@ -36501,14 +36501,14 @@ "20916": { "npcId": 20916, "attr": {}, - "npclist": "3007_550_90072#3012_550_90071#4002_550_90076#4007_550_90079#4012_550_90079#5002_550_90079", + "npclist": "3007_236_90072#3012_236_90071#4002_236_90076#4007_236_90079#4012_236_90079#5002_236_90079", "npcLv": [ - 1426, - 1426, - 1426, - 1426, - 1426, - 1426 + 717, + 717, + 717, + 717, + 717, + 717 ], "isboss": 1, "ghname": "npc_ghname_4", @@ -36517,14 +36517,14 @@ "20917": { "npcId": 20917, "attr": {}, - "npclist": "3008_551_90072#3013_551_90071#4003_551_90076#4008_551_90079#4013_551_90079#5003_551_90079", + "npclist": "3008_237_90072#3013_237_90071#4003_237_90076#4008_237_90079#4013_237_90079#5003_237_90079", "npcLv": [ - 1426, - 1426, - 1426, - 1426, - 1426, - 1426 + 718, + 718, + 718, + 718, + 718, + 718 ], "isboss": 1, "ghname": "npc_ghname_5", @@ -36533,14 +36533,14 @@ "20918": { "npcId": 20918, "attr": {}, - "npclist": "3009_552_90072#3014_552_90071#4004_552_90076#4009_552_90079#4014_552_90079#5004_552_90079", + "npclist": "3009_238_90072#3014_238_90071#4004_238_90076#4009_238_90079#4014_238_90079#5004_238_90079", "npcLv": [ - 1432, - 1432, - 1432, - 1432, - 1432, - 1432 + 719, + 719, + 719, + 719, + 719, + 719 ], "isboss": 1, "ghname": "npc_ghname_6", @@ -36549,14 +36549,14 @@ "20919": { "npcId": 20919, "attr": {}, - "npclist": "3010_554_90072#3015_554_90071#4005_554_90076#4010_554_90079#4015_554_90079#5005_554_90079", + "npclist": "3010_239_90072#3015_239_90071#4005_239_90076#4010_239_90079#4015_239_90079#5005_239_90079", "npcLv": [ - 1432, - 1432, - 1432, - 1432, - 1432, - 1432 + 720, + 720, + 720, + 720, + 720, + 720 ], "isboss": 1, "ghname": "npc_ghname_1", @@ -36565,14 +36565,14 @@ "20920": { "npcId": 20920, "attr": {}, - "npclist": "3011_557_90072#4001_557_90071#4006_557_90076#4011_557_90079#5001_557_90079#3001_557_90079", + "npclist": "3011_268_90072#4001_268_90071#4006_268_90076#4011_268_90079#5001_268_90079#3001_268_90079", "npcLv": [ - 1432, - 1432, - 1432, - 1432, - 1432, - 1432 + 721, + 721, + 721, + 721, + 721, + 721 ], "isboss": 1, "ghname": "npc_ghname_2", @@ -36581,14 +36581,14 @@ "20921": { "npcId": 20921, "attr": {}, - "npclist": "3012_556_90072#4002_556_90071#4007_556_90076#4012_556_90079#5002_556_90079#3002_556_90079", + "npclist": "3012_235_90072#4002_235_90071#4007_235_90076#4012_235_90079#5002_235_90079#3002_235_90079", "npcLv": [ - 1437, - 1437, - 1437, - 1437, - 1437, - 1437 + 722, + 722, + 722, + 722, + 722, + 722 ], "isboss": 1, "ghname": "npc_ghname_3", @@ -36597,14 +36597,14 @@ "20922": { "npcId": 20922, "attr": {}, - "npclist": "3013_557_90072#4003_557_90071#4008_557_90076#4013_557_90079#5003_557_90079#3003_557_90079", + "npclist": "3013_236_90072#4003_236_90071#4008_236_90076#4013_236_90079#5003_236_90079#3003_236_90079", "npcLv": [ - 1437, - 1437, - 1437, - 1437, - 1437, - 1437 + 723, + 723, + 723, + 723, + 723, + 723 ], "isboss": 1, "ghname": "npc_ghname_4", @@ -36613,14 +36613,14 @@ "20923": { "npcId": 20923, "attr": {}, - "npclist": "3014_559_90072#4004_559_90071#4009_559_90076#4014_559_90079#5004_559_90079#3004_559_90079", + "npclist": "3014_237_90072#4004_237_90071#4009_237_90076#4014_237_90079#5004_237_90079#3004_237_90079", "npcLv": [ - 1437, - 1437, - 1437, - 1437, - 1437, - 1437 + 724, + 724, + 724, + 724, + 724, + 724 ], "isboss": 1, "ghname": "npc_ghname_5", @@ -36629,14 +36629,14 @@ "20924": { "npcId": 20924, "attr": {}, - "npclist": "3015_560_90072#4005_560_90071#4010_560_90076#4015_560_90079#5005_560_90079#3005_560_90079", + "npclist": "3015_238_90072#4005_238_90071#4010_238_90076#4015_238_90079#5005_238_90079#3005_238_90079", "npcLv": [ - 1443, - 1443, - 1443, - 1443, - 1443, - 1443 + 725, + 725, + 725, + 725, + 725, + 725 ], "isboss": 1, "ghname": "npc_ghname_6", @@ -36645,14 +36645,14 @@ "20925": { "npcId": 20925, "attr": {}, - "npclist": "4001_561_90072#4006_561_90071#4011_561_90076#5001_561_90079#3001_561_90079#3006_561_90079", + "npclist": "4001_239_90072#4006_239_90071#4011_239_90076#5001_239_90079#3001_239_90079#3006_239_90079", "npcLv": [ - 1443, - 1443, - 1443, - 1443, - 1443, - 1443 + 726, + 726, + 726, + 726, + 726, + 726 ], "isboss": 1, "ghname": "npc_ghname_1", @@ -36661,14 +36661,14 @@ "20926": { "npcId": 20926, "attr": {}, - "npclist": "4002_562_90072#4007_562_90071#4012_562_90076#5002_562_90079#3002_562_90079#3007_562_90079", + "npclist": "4002_240_90072#4007_240_90071#4012_240_90076#5002_240_90079#3002_240_90079#3007_240_90079", "npcLv": [ - 1443, - 1443, - 1443, - 1443, - 1443, - 1443 + 727, + 727, + 727, + 727, + 727, + 727 ], "isboss": 1, "ghname": "npc_ghname_2", @@ -36677,14 +36677,14 @@ "20927": { "npcId": 20927, "attr": {}, - "npclist": "4003_563_90072#4008_563_90071#4013_563_90076#5003_563_90079#3003_563_90079#3008_563_90079", + "npclist": "4003_241_90072#4008_241_90071#4013_241_90076#5003_241_90079#3003_241_90079#3008_241_90079", "npcLv": [ - 1449, - 1449, - 1449, - 1449, - 1449, - 1449 + 728, + 728, + 728, + 728, + 728, + 728 ], "isboss": 1, "ghname": "npc_ghname_3", @@ -36693,14 +36693,14 @@ "20928": { "npcId": 20928, "attr": {}, - "npclist": "4004_565_90072#4009_565_90071#4014_565_90076#5004_565_90079#3004_565_90079#3009_565_90079", + "npclist": "4004_242_90072#4009_242_90071#4014_242_90076#5004_242_90079#3004_242_90079#3009_242_90079", "npcLv": [ - 1449, - 1449, - 1449, - 1449, - 1449, - 1449 + 729, + 729, + 729, + 729, + 729, + 729 ], "isboss": 1, "ghname": "npc_ghname_4", @@ -36709,14 +36709,14 @@ "20929": { "npcId": 20929, "attr": {}, - "npclist": "4005_566_90072#4010_566_90071#4015_566_90076#5005_566_90079#3005_566_90079#3010_566_90079", + "npclist": "4005_243_90072#4010_243_90071#4015_243_90076#5005_243_90079#3005_243_90079#3010_243_90079", "npcLv": [ - 1449, - 1449, - 1449, - 1449, - 1449, - 1449 + 730, + 730, + 730, + 730, + 730, + 730 ], "isboss": 1, "ghname": "npc_ghname_5", @@ -36725,14 +36725,14 @@ "20930": { "npcId": 20930, "attr": {}, - "npclist": "4006_570_90072#4011_570_90071#5001_570_90076#3001_570_90079#3006_570_90079#3011_570_90079", + "npclist": "4006_274_90072#4011_274_90071#5001_274_90076#3001_274_90079#3006_274_90079#3011_274_90079", "npcLv": [ - 1455, - 1455, - 1455, - 1455, - 1455, - 1455 + 731, + 731, + 731, + 731, + 731, + 731 ], "isboss": 1, "ghname": "npc_ghname_6", @@ -36741,14 +36741,14 @@ "20931": { "npcId": 20931, "attr": {}, - "npclist": "4007_566_90072#4012_566_90071#5002_566_90076#3002_566_90079#3007_566_90079#3012_566_90079", + "npclist": "4007_239_90072#4012_239_90071#5002_239_90076#3002_239_90079#3007_239_90079#3012_239_90079", "npcLv": [ - 1455, - 1455, - 1455, - 1455, - 1455, - 1455 + 732, + 732, + 732, + 732, + 732, + 732 ], "isboss": 1, "ghname": "npc_ghname_1", @@ -36757,14 +36757,14 @@ "20932": { "npcId": 20932, "attr": {}, - "npclist": "4008_567_90072#4013_567_90071#5003_567_90076#3003_567_90079#3008_567_90079#3013_567_90079", + "npclist": "4008_240_90072#4013_240_90071#5003_240_90076#3003_240_90079#3008_240_90079#3013_240_90079", "npcLv": [ - 1455, - 1455, - 1455, - 1455, - 1455, - 1455 + 733, + 733, + 733, + 733, + 733, + 733 ], "isboss": 1, "ghname": "npc_ghname_2", @@ -36773,14 +36773,14 @@ "20933": { "npcId": 20933, "attr": {}, - "npclist": "4009_569_90072#4014_569_90071#5004_569_90076#3004_569_90079#3009_569_90079#3014_569_90079", + "npclist": "4009_241_90072#4014_241_90071#5004_241_90076#3004_241_90079#3009_241_90079#3014_241_90079", "npcLv": [ - 1461, - 1461, - 1461, - 1461, - 1461, - 1461 + 734, + 734, + 734, + 734, + 734, + 734 ], "isboss": 1, "ghname": "npc_ghname_3", @@ -36789,14 +36789,14 @@ "20934": { "npcId": 20934, "attr": {}, - "npclist": "4010_570_90072#4015_570_90071#5005_570_90076#3005_570_90079#3010_570_90079#3015_570_90079", + "npclist": "4010_242_90072#4015_242_90071#5005_242_90076#3005_242_90079#3010_242_90079#3015_242_90079", "npcLv": [ - 1461, - 1461, - 1461, - 1461, - 1461, - 1461 + 735, + 735, + 735, + 735, + 735, + 735 ], "isboss": 1, "ghname": "npc_ghname_4", @@ -36805,14 +36805,14 @@ "20935": { "npcId": 20935, "attr": {}, - "npclist": "4011_571_90072#5001_571_90071#3001_571_90076#3006_571_90079#3011_571_90079#4001_571_90079", + "npclist": "4011_243_90072#5001_243_90071#3001_243_90076#3006_243_90079#3011_243_90079#4001_243_90079", "npcLv": [ - 1461, - 1461, - 1461, - 1461, - 1461, - 1461 + 736, + 736, + 736, + 736, + 736, + 736 ], "isboss": 1, "ghname": "npc_ghname_5", @@ -36821,14 +36821,14 @@ "20936": { "npcId": 20936, "attr": {}, - "npclist": "4012_572_90072#5002_572_90071#3002_572_90076#3007_572_90079#3012_572_90079#4002_572_90079", + "npclist": "4012_244_90072#5002_244_90071#3002_244_90076#3007_244_90079#3012_244_90079#4002_244_90079", "npcLv": [ - 1467, - 1467, - 1467, - 1467, - 1467, - 1467 + 737, + 737, + 737, + 737, + 737, + 737 ], "isboss": 1, "ghname": "npc_ghname_6", @@ -36837,14 +36837,14 @@ "20937": { "npcId": 20937, "attr": {}, - "npclist": "4013_574_90072#5003_574_90071#3003_574_90076#3008_574_90079#3013_574_90079#4003_574_90079", + "npclist": "4013_245_90072#5003_245_90071#3003_245_90076#3008_245_90079#3013_245_90079#4003_245_90079", "npcLv": [ - 1467, - 1467, - 1467, - 1467, - 1467, - 1467 + 738, + 738, + 738, + 738, + 738, + 738 ], "isboss": 1, "ghname": "npc_ghname_1", @@ -36853,14 +36853,14 @@ "20938": { "npcId": 20938, "attr": {}, - "npclist": "4014_575_90072#5004_575_90071#3004_575_90076#3009_575_90079#3014_575_90079#4004_575_90079", + "npclist": "4014_246_90072#5004_246_90071#3004_246_90076#3009_246_90079#3014_246_90079#4004_246_90079", "npcLv": [ - 1467, - 1467, - 1467, - 1467, - 1467, - 1467 + 739, + 739, + 739, + 739, + 739, + 739 ], "isboss": 1, "ghname": "npc_ghname_2", @@ -36869,14 +36869,14 @@ "20939": { "npcId": 20939, "attr": {}, - "npclist": "4015_576_90072#5005_576_90071#3005_576_90076#3010_576_90079#3015_576_90079#4005_576_90079", + "npclist": "4015_247_90072#5005_247_90071#3005_247_90076#3010_247_90079#3015_247_90079#4005_247_90079", "npcLv": [ - 1473, - 1473, - 1473, - 1473, - 1473, - 1473 + 740, + 740, + 740, + 740, + 740, + 740 ], "isboss": 1, "ghname": "npc_ghname_3", @@ -36885,14 +36885,14 @@ "20940": { "npcId": 20940, "attr": {}, - "npclist": "5001_582_90072#3001_582_90071#3006_582_90076#3011_582_90079#4001_582_90079#4006_582_90079", + "npclist": "5001_280_90072#3001_280_90071#3006_280_90076#3011_280_90079#4001_280_90079#4006_280_90079", "npcLv": [ - 1473, - 1473, - 1473, - 1473, - 1473, - 1473 + 741, + 741, + 741, + 741, + 741, + 741 ], "isboss": 1, "ghname": "npc_ghname_4", @@ -36901,14 +36901,14 @@ "20941": { "npcId": 20941, "attr": {}, - "npclist": "5002_574_90072#3002_574_90071#3007_574_90076#3012_574_90079#4002_574_90079#4007_574_90079", + "npclist": "5002_243_90072#3002_243_90071#3007_243_90076#3012_243_90079#4002_243_90079#4007_243_90079", "npcLv": [ - 1473, - 1473, - 1473, - 1473, - 1473, - 1473 + 742, + 742, + 742, + 742, + 742, + 742 ], "isboss": 1, "ghname": "npc_ghname_5", @@ -36917,14 +36917,14 @@ "20942": { "npcId": 20942, "attr": {}, - "npclist": "5003_575_90072#3003_575_90071#3008_575_90076#3013_575_90079#4003_575_90079#4008_575_90079", + "npclist": "5003_244_90072#3003_244_90071#3008_244_90076#3013_244_90079#4003_244_90079#4008_244_90079", "npcLv": [ - 1479, - 1479, - 1479, - 1479, - 1479, - 1479 + 743, + 743, + 743, + 743, + 743, + 743 ], "isboss": 1, "ghname": "npc_ghname_6", @@ -36933,14 +36933,14 @@ "20943": { "npcId": 20943, "attr": {}, - "npclist": "5004_576_90072#3004_576_90071#3009_576_90076#3014_576_90079#4004_576_90079#4009_576_90079", + "npclist": "5004_245_90072#3004_245_90071#3009_245_90076#3014_245_90079#4004_245_90079#4009_245_90079", "npcLv": [ - 1479, - 1479, - 1479, - 1479, - 1479, - 1479 + 744, + 744, + 744, + 744, + 744, + 744 ], "isboss": 1, "ghname": "npc_ghname_1", @@ -36949,14 +36949,14 @@ "20944": { "npcId": 20944, "attr": {}, - "npclist": "5005_578_90072#3005_578_90071#3010_578_90076#3015_578_90079#4005_578_90079#4010_578_90079", + "npclist": "5005_246_90072#3005_246_90071#3010_246_90076#3015_246_90079#4005_246_90079#4010_246_90079", "npcLv": [ - 1479, - 1479, - 1479, - 1479, - 1479, - 1479 + 745, + 745, + 745, + 745, + 745, + 745 ], "isboss": 1, "ghname": "npc_ghname_2", @@ -36965,14 +36965,14 @@ "20945": { "npcId": 20945, "attr": {}, - "npclist": "3001_579_90072#3006_579_90071#3011_579_90076#4001_579_90079#4006_579_90079#4011_579_90079", + "npclist": "3001_247_90072#3006_247_90071#3011_247_90076#4001_247_90079#4006_247_90079#4011_247_90079", "npcLv": [ - 1485, - 1485, - 1485, - 1485, - 1485, - 1485 + 746, + 746, + 746, + 746, + 746, + 746 ], "isboss": 1, "ghname": "npc_ghname_3", @@ -36981,14 +36981,14 @@ "20946": { "npcId": 20946, "attr": {}, - "npclist": "3002_580_90072#3007_580_90071#3012_580_90076#4002_580_90079#4007_580_90079#4012_580_90079", + "npclist": "3002_248_90072#3007_248_90071#3012_248_90076#4002_248_90079#4007_248_90079#4012_248_90079", "npcLv": [ - 1485, - 1485, - 1485, - 1485, - 1485, - 1485 + 747, + 747, + 747, + 747, + 747, + 747 ], "isboss": 1, "ghname": "npc_ghname_4", @@ -36997,14 +36997,14 @@ "20947": { "npcId": 20947, "attr": {}, - "npclist": "3003_581_90072#3008_581_90071#3013_581_90076#4003_581_90079#4008_581_90079#4013_581_90079", + "npclist": "3003_249_90072#3008_249_90071#3013_249_90076#4003_249_90079#4008_249_90079#4013_249_90079", "npcLv": [ - 1485, - 1485, - 1485, - 1485, - 1485, - 1485 + 748, + 748, + 748, + 748, + 748, + 748 ], "isboss": 1, "ghname": "npc_ghname_5", @@ -37013,14 +37013,14 @@ "20948": { "npcId": 20948, "attr": {}, - "npclist": "3004_583_90072#3009_583_90071#3014_583_90076#4004_583_90079#4009_583_90079#4014_583_90079", + "npclist": "3004_250_90072#3009_250_90071#3014_250_90076#4004_250_90079#4009_250_90079#4014_250_90079", "npcLv": [ - 1491, - 1491, - 1491, - 1491, - 1491, - 1491 + 749, + 749, + 749, + 749, + 749, + 749 ], "isboss": 1, "ghname": "npc_ghname_6", @@ -37029,14 +37029,14 @@ "20949": { "npcId": 20949, "attr": {}, - "npclist": "3005_584_90072#3010_584_90071#3015_584_90076#4005_584_90079#4010_584_90079#4015_584_90079", + "npclist": "3005_251_90072#3010_251_90071#3015_251_90076#4005_251_90079#4010_251_90079#4015_251_90079", "npcLv": [ - 1491, - 1491, - 1491, - 1491, - 1491, - 1491 + 750, + 750, + 750, + 750, + 750, + 750 ], "isboss": 1, "ghname": "npc_ghname_1", @@ -37045,14 +37045,14 @@ "20950": { "npcId": 20950, "attr": {}, - "npclist": "3006_595_90072#3011_595_90071#4001_595_90076#4006_595_90079#4011_595_90079#5001_595_90079", + "npclist": "3006_286_90072#3011_286_90071#4001_286_90076#4006_286_90079#4011_286_90079#5001_286_90079", "npcLv": [ - 1491, - 1491, - 1491, - 1491, - 1491, - 1491 + 751, + 751, + 751, + 751, + 751, + 751 ], "isboss": 1, "ghname": "npc_ghname_2", @@ -37061,14 +37061,14 @@ "20951": { "npcId": 20951, "attr": {}, - "npclist": "3007_596_90072#3012_596_90071#4002_596_90076#4007_596_90079#4012_596_90079#5002_596_90079", + "npclist": "3007_247_90072#3012_247_90071#4002_247_90076#4007_247_90079#4012_247_90079#5002_247_90079", "npcLv": [ - 1497, - 1497, - 1497, - 1497, - 1497, - 1497 + 752, + 752, + 752, + 752, + 752, + 752 ], "isboss": 1, "ghname": "npc_ghname_3", @@ -37077,14 +37077,14 @@ "20952": { "npcId": 20952, "attr": {}, - "npclist": "3008_597_90072#3013_597_90071#4003_597_90076#4008_597_90079#4013_597_90079#5003_597_90079", + "npclist": "3008_248_90072#3013_248_90071#4003_248_90076#4008_248_90079#4013_248_90079#5003_248_90079", "npcLv": [ - 1497, - 1497, - 1497, - 1497, - 1497, - 1497 + 753, + 753, + 753, + 753, + 753, + 753 ], "isboss": 1, "ghname": "npc_ghname_4", @@ -37093,14 +37093,14 @@ "20953": { "npcId": 20953, "attr": {}, - "npclist": "3009_598_90072#3014_598_90071#4004_598_90076#4009_598_90079#4014_598_90079#5004_598_90079", + "npclist": "3009_249_90072#3014_249_90071#4004_249_90076#4009_249_90079#4014_249_90079#5004_249_90079", "npcLv": [ - 1497, - 1497, - 1497, - 1497, - 1497, - 1497 + 754, + 754, + 754, + 754, + 754, + 754 ], "isboss": 1, "ghname": "npc_ghname_5", @@ -37109,14 +37109,14 @@ "20954": { "npcId": 20954, "attr": {}, - "npclist": "3010_600_90072#3015_600_90071#4005_600_90076#4010_600_90079#4015_600_90079#5005_600_90079", + "npclist": "3010_250_90072#3015_250_90071#4005_250_90076#4010_250_90079#4015_250_90079#5005_250_90079", "npcLv": [ - 1503, - 1503, - 1503, - 1503, - 1503, - 1503 + 755, + 755, + 755, + 755, + 755, + 755 ], "isboss": 1, "ghname": "npc_ghname_6", @@ -37125,14 +37125,14 @@ "20955": { "npcId": 20955, "attr": {}, - "npclist": "3011_601_90072#4001_601_90071#4006_601_90076#4011_601_90079#5001_601_90079#3001_601_90079", + "npclist": "3011_251_90072#4001_251_90071#4006_251_90076#4011_251_90079#5001_251_90079#3001_251_90079", "npcLv": [ - 1503, - 1503, - 1503, - 1503, - 1503, - 1503 + 756, + 756, + 756, + 756, + 756, + 756 ], "isboss": 1, "ghname": "npc_ghname_1", @@ -37141,14 +37141,14 @@ "20956": { "npcId": 20956, "attr": {}, - "npclist": "3012_602_90072#4002_602_90071#4007_602_90076#4012_602_90079#5002_602_90079#3002_602_90079", + "npclist": "3012_252_90072#4002_252_90071#4007_252_90076#4012_252_90079#5002_252_90079#3002_252_90079", "npcLv": [ - 1503, - 1503, - 1503, - 1503, - 1503, - 1503 + 757, + 757, + 757, + 757, + 757, + 757 ], "isboss": 1, "ghname": "npc_ghname_2", @@ -37157,14 +37157,14 @@ "20957": { "npcId": 20957, "attr": {}, - "npclist": "3013_603_90072#4003_603_90071#4008_603_90076#4013_603_90079#5003_603_90079#3003_603_90079", + "npclist": "3013_253_90072#4003_253_90071#4008_253_90076#4013_253_90079#5003_253_90079#3003_253_90079", "npcLv": [ - 1509, - 1509, - 1509, - 1509, - 1509, - 1509 + 758, + 758, + 758, + 758, + 758, + 758 ], "isboss": 1, "ghname": "npc_ghname_3", @@ -37173,14 +37173,14 @@ "20958": { "npcId": 20958, "attr": {}, - "npclist": "3014_605_90072#4004_605_90071#4009_605_90076#4014_605_90079#5004_605_90079#3004_605_90079", + "npclist": "3014_254_90072#4004_254_90071#4009_254_90076#4014_254_90079#5004_254_90079#3004_254_90079", "npcLv": [ - 1509, - 1509, - 1509, - 1509, - 1509, - 1509 + 759, + 759, + 759, + 759, + 759, + 759 ], "isboss": 1, "ghname": "npc_ghname_4", @@ -37189,14 +37189,14 @@ "20959": { "npcId": 20959, "attr": {}, - "npclist": "3015_606_90072#4005_606_90071#4010_606_90076#4015_606_90079#5005_606_90079#3005_606_90079", + "npclist": "3015_255_90072#4005_255_90071#4010_255_90076#4015_255_90079#5005_255_90079#3005_255_90079", "npcLv": [ - 1509, - 1509, - 1509, - 1509, - 1509, - 1509 + 760, + 760, + 760, + 760, + 760, + 760 ], "isboss": 1, "ghname": "npc_ghname_5", @@ -37205,14 +37205,14 @@ "20960": { "npcId": 20960, "attr": {}, - "npclist": "4001_607_90072#4006_607_90071#4011_607_90076#5001_607_90079#3001_607_90079#3006_607_90079", + "npclist": "4001_292_90072#4006_292_90071#4011_292_90076#5001_292_90079#3001_292_90079#3006_292_90079", "npcLv": [ - 1515, - 1515, - 1515, - 1515, - 1515, - 1515 + 761, + 761, + 761, + 761, + 761, + 761 ], "isboss": 1, "ghname": "npc_ghname_6", @@ -37221,14 +37221,14 @@ "20961": { "npcId": 20961, "attr": {}, - "npclist": "4002_599_90072#4007_599_90071#4012_599_90076#5002_599_90079#3002_599_90079#3007_599_90079", + "npclist": "4002_251_90072#4007_251_90071#4012_251_90076#5002_251_90079#3002_251_90079#3007_251_90079", "npcLv": [ - 1515, - 1515, - 1515, - 1515, - 1515, - 1515 + 762, + 762, + 762, + 762, + 762, + 762 ], "isboss": 1, "ghname": "npc_ghname_1", @@ -37237,14 +37237,14 @@ "20962": { "npcId": 20962, "attr": {}, - "npclist": "4003_600_90072#4008_600_90071#4013_600_90076#5003_600_90079#3003_600_90079#3008_600_90079", + "npclist": "4003_252_90072#4008_252_90071#4013_252_90076#5003_252_90079#3003_252_90079#3008_252_90079", "npcLv": [ - 1515, - 1515, - 1515, - 1515, - 1515, - 1515 + 763, + 763, + 763, + 763, + 763, + 763 ], "isboss": 1, "ghname": "npc_ghname_2", @@ -37253,14 +37253,14 @@ "20963": { "npcId": 20963, "attr": {}, - "npclist": "4004_601_90072#4009_601_90071#4014_601_90076#5004_601_90079#3004_601_90079#3009_601_90079", + "npclist": "4004_253_90072#4009_253_90071#4014_253_90076#5004_253_90079#3004_253_90079#3009_253_90079", "npcLv": [ - 1521, - 1521, - 1521, - 1521, - 1521, - 1521 + 764, + 764, + 764, + 764, + 764, + 764 ], "isboss": 1, "ghname": "npc_ghname_3", @@ -37269,14 +37269,14 @@ "20964": { "npcId": 20964, "attr": {}, - "npclist": "4005_602_90072#4010_602_90071#4015_602_90076#5005_602_90079#3005_602_90079#3010_602_90079", + "npclist": "4005_254_90072#4010_254_90071#4015_254_90076#5005_254_90079#3005_254_90079#3010_254_90079", "npcLv": [ - 1521, - 1521, - 1521, - 1521, - 1521, - 1521 + 765, + 765, + 765, + 765, + 765, + 765 ], "isboss": 1, "ghname": "npc_ghname_4", @@ -37285,14 +37285,14 @@ "20965": { "npcId": 20965, "attr": {}, - "npclist": "4006_603_90072#4011_603_90071#5001_603_90076#3001_603_90079#3006_603_90079#3011_603_90079", + "npclist": "4006_255_90072#4011_255_90071#5001_255_90076#3001_255_90079#3006_255_90079#3011_255_90079", "npcLv": [ - 1521, - 1521, - 1521, - 1521, - 1521, - 1521 + 766, + 766, + 766, + 766, + 766, + 766 ], "isboss": 1, "ghname": "npc_ghname_5", @@ -37301,14 +37301,14 @@ "20966": { "npcId": 20966, "attr": {}, - "npclist": "4007_605_90072#4012_605_90071#5002_605_90076#3002_605_90079#3007_605_90079#3012_605_90079", + "npclist": "4007_256_90072#4012_256_90071#5002_256_90076#3002_256_90079#3007_256_90079#3012_256_90079", "npcLv": [ - 1527, - 1527, - 1527, - 1527, - 1527, - 1527 + 767, + 767, + 767, + 767, + 767, + 767 ], "isboss": 1, "ghname": "npc_ghname_6", @@ -37317,14 +37317,14 @@ "20967": { "npcId": 20967, "attr": {}, - "npclist": "4008_606_90072#4013_606_90071#5003_606_90076#3003_606_90079#3008_606_90079#3013_606_90079", + "npclist": "4008_257_90072#4013_257_90071#5003_257_90076#3003_257_90079#3008_257_90079#3013_257_90079", "npcLv": [ - 1527, - 1527, - 1527, - 1527, - 1527, - 1527 + 768, + 768, + 768, + 768, + 768, + 768 ], "isboss": 1, "ghname": "npc_ghname_1", @@ -37333,14 +37333,14 @@ "20968": { "npcId": 20968, "attr": {}, - "npclist": "4009_607_90072#4014_607_90071#5004_607_90076#3004_607_90079#3009_607_90079#3014_607_90079", + "npclist": "4009_258_90072#4014_258_90071#5004_258_90076#3004_258_90079#3009_258_90079#3014_258_90079", "npcLv": [ - 1527, - 1527, - 1527, - 1527, - 1527, - 1527 + 769, + 769, + 769, + 769, + 769, + 769 ], "isboss": 1, "ghname": "npc_ghname_2", @@ -37349,14 +37349,14 @@ "20969": { "npcId": 20969, "attr": {}, - "npclist": "4010_608_90072#4015_608_90071#5005_608_90076#3005_608_90079#3010_608_90079#3015_608_90079", + "npclist": "4010_259_90072#4015_259_90071#5005_259_90076#3005_259_90079#3010_259_90079#3015_259_90079", "npcLv": [ - 1533, - 1533, - 1533, - 1533, - 1533, - 1533 + 770, + 770, + 770, + 770, + 770, + 770 ], "isboss": 1, "ghname": "npc_ghname_3", @@ -37365,14 +37365,14 @@ "20970": { "npcId": 20970, "attr": {}, - "npclist": "4011_620_90072#5001_620_90071#3001_620_90076#3006_620_90079#3011_620_90079#4001_620_90079", + "npclist": "4011_298_90072#5001_298_90071#3001_298_90076#3006_298_90079#3011_298_90079#4001_298_90079", "npcLv": [ - 1533, - 1533, - 1533, - 1533, - 1533, - 1533 + 771, + 771, + 771, + 771, + 771, + 771 ], "isboss": 1, "ghname": "npc_ghname_4", @@ -37381,14 +37381,14 @@ "20971": { "npcId": 20971, "attr": {}, - "npclist": "4012_606_90072#5002_606_90071#3002_606_90076#3007_606_90079#3012_606_90079#4002_606_90079", + "npclist": "4012_255_90072#5002_255_90071#3002_255_90076#3007_255_90079#3012_255_90079#4002_255_90079", "npcLv": [ - 1533, - 1533, - 1533, - 1533, - 1533, - 1533 + 772, + 772, + 772, + 772, + 772, + 772 ], "isboss": 1, "ghname": "npc_ghname_5", @@ -37397,14 +37397,14 @@ "20972": { "npcId": 20972, "attr": {}, - "npclist": "4013_607_90072#5003_607_90071#3003_607_90076#3008_607_90079#3013_607_90079#4003_607_90079", + "npclist": "4013_256_90072#5003_256_90071#3003_256_90076#3008_256_90079#3013_256_90079#4003_256_90079", "npcLv": [ - 1539, - 1539, - 1539, - 1539, - 1539, - 1539 + 773, + 773, + 773, + 773, + 773, + 773 ], "isboss": 1, "ghname": "npc_ghname_6", @@ -37413,14 +37413,14 @@ "20973": { "npcId": 20973, "attr": {}, - "npclist": "4014_608_90072#5004_608_90071#3004_608_90076#3009_608_90079#3014_608_90079#4004_608_90079", + "npclist": "4014_257_90072#5004_257_90071#3004_257_90076#3009_257_90079#3014_257_90079#4004_257_90079", "npcLv": [ - 1539, - 1539, - 1539, - 1539, - 1539, - 1539 + 774, + 774, + 774, + 774, + 774, + 774 ], "isboss": 1, "ghname": "npc_ghname_1", @@ -37429,14 +37429,14 @@ "20974": { "npcId": 20974, "attr": {}, - "npclist": "4015_610_90072#5005_610_90071#3005_610_90076#3010_610_90079#3015_610_90079#4005_610_90079", + "npclist": "4015_258_90072#5005_258_90071#3005_258_90076#3010_258_90079#3015_258_90079#4005_258_90079", "npcLv": [ - 1539, - 1539, - 1539, - 1539, - 1539, - 1539 + 775, + 775, + 775, + 775, + 775, + 775 ], "isboss": 1, "ghname": "npc_ghname_2", @@ -37445,14 +37445,14 @@ "20975": { "npcId": 20975, "attr": {}, - "npclist": "5001_612_90072#3001_612_90071#3006_612_90076#3011_612_90079#4001_612_90079#4006_612_90079", + "npclist": "5001_259_90072#3001_259_90071#3006_259_90076#3011_259_90079#4001_259_90079#4006_259_90079", "npcLv": [ - 1545, - 1545, - 1545, - 1545, - 1545, - 1545 + 776, + 776, + 776, + 776, + 776, + 776 ], "isboss": 1, "ghname": "npc_ghname_3", @@ -37461,14 +37461,14 @@ "20976": { "npcId": 20976, "attr": {}, - "npclist": "5002_614_90072#3002_614_90071#3007_614_90076#3012_614_90079#4002_614_90079#4007_614_90079", + "npclist": "5002_260_90072#3002_260_90071#3007_260_90076#3012_260_90079#4002_260_90079#4007_260_90079", "npcLv": [ - 1545, - 1545, - 1545, - 1545, - 1545, - 1545 + 777, + 777, + 777, + 777, + 777, + 777 ], "isboss": 1, "ghname": "npc_ghname_4", @@ -37477,14 +37477,14 @@ "20977": { "npcId": 20977, "attr": {}, - "npclist": "5003_617_90072#3003_617_90071#3008_617_90076#3013_617_90079#4003_617_90079#4008_617_90079", + "npclist": "5003_261_90072#3003_261_90071#3008_261_90076#3013_261_90079#4003_261_90079#4008_261_90079", "npcLv": [ - 1545, - 1545, - 1545, - 1545, - 1545, - 1545 + 778, + 778, + 778, + 778, + 778, + 778 ], "isboss": 1, "ghname": "npc_ghname_5", @@ -37493,14 +37493,14 @@ "20978": { "npcId": 20978, "attr": {}, - "npclist": "5004_619_90072#3004_619_90071#3009_619_90076#3014_619_90079#4004_619_90079#4009_619_90079", + "npclist": "5004_262_90072#3004_262_90071#3009_262_90076#3014_262_90079#4004_262_90079#4009_262_90079", "npcLv": [ - 1551, - 1551, - 1551, - 1551, - 1551, - 1551 + 779, + 779, + 779, + 779, + 779, + 779 ], "isboss": 1, "ghname": "npc_ghname_6", @@ -37509,14 +37509,14 @@ "20979": { "npcId": 20979, "attr": {}, - "npclist": "5005_622_90072#3005_622_90071#3010_622_90076#3015_622_90079#4005_622_90079#4010_622_90079", + "npclist": "5005_263_90072#3005_263_90071#3010_263_90076#3015_263_90079#4005_263_90079#4010_263_90079", "npcLv": [ - 1551, - 1551, - 1551, - 1551, - 1551, - 1551 + 780, + 780, + 780, + 780, + 780, + 780 ], "isboss": 1, "ghname": "npc_ghname_1", @@ -37525,14 +37525,14 @@ "20980": { "npcId": 20980, "attr": {}, - "npclist": "3001_629_90072#3006_629_90071#3011_629_90076#4001_629_90079#4006_629_90079#4011_629_90079", + "npclist": "3001_304_90072#3006_304_90071#3011_304_90076#4001_304_90079#4006_304_90079#4011_304_90079", "npcLv": [ - 1551, - 1551, - 1551, - 1551, - 1551, - 1551 + 781, + 781, + 781, + 781, + 781, + 781 ], "isboss": 1, "ghname": "npc_ghname_2", @@ -37541,14 +37541,14 @@ "20981": { "npcId": 20981, "attr": {}, - "npclist": "3002_616_90072#3007_616_90071#3012_616_90076#4002_616_90079#4007_616_90079#4012_616_90079", + "npclist": "3002_261_90072#3007_261_90071#3012_261_90076#4002_261_90079#4007_261_90079#4012_261_90079", "npcLv": [ - 1557, - 1557, - 1557, - 1557, - 1557, - 1557 + 782, + 782, + 782, + 782, + 782, + 782 ], "isboss": 1, "ghname": "npc_ghname_3", @@ -37557,14 +37557,14 @@ "20982": { "npcId": 20982, "attr": {}, - "npclist": "3003_619_90072#3008_619_90071#3013_619_90076#4003_619_90079#4008_619_90079#4013_619_90079", + "npclist": "3003_262_90072#3008_262_90071#3013_262_90076#4003_262_90079#4008_262_90079#4013_262_90079", "npcLv": [ - 1557, - 1557, - 1557, - 1557, - 1557, - 1557 + 783, + 783, + 783, + 783, + 783, + 783 ], "isboss": 1, "ghname": "npc_ghname_4", @@ -37573,14 +37573,14 @@ "20983": { "npcId": 20983, "attr": {}, - "npclist": "3004_621_90072#3009_621_90071#3014_621_90076#4004_621_90079#4009_621_90079#4014_621_90079", + "npclist": "3004_263_90072#3009_263_90071#3014_263_90076#4004_263_90079#4009_263_90079#4014_263_90079", "npcLv": [ - 1557, - 1557, - 1557, - 1557, - 1557, - 1557 + 784, + 784, + 784, + 784, + 784, + 784 ], "isboss": 1, "ghname": "npc_ghname_5", @@ -37589,14 +37589,14 @@ "20984": { "npcId": 20984, "attr": {}, - "npclist": "3005_624_90072#3010_624_90071#3015_624_90076#4005_624_90079#4010_624_90079#4015_624_90079", + "npclist": "3005_264_90072#3010_264_90071#3015_264_90076#4005_264_90079#4010_264_90079#4015_264_90079", "npcLv": [ - 1563, - 1563, - 1563, - 1563, - 1563, - 1563 + 785, + 785, + 785, + 785, + 785, + 785 ], "isboss": 1, "ghname": "npc_ghname_6", @@ -37605,14 +37605,14 @@ "20985": { "npcId": 20985, "attr": {}, - "npclist": "3006_626_90072#3011_626_90071#4001_626_90076#4006_626_90079#4011_626_90079#5001_626_90079", + "npclist": "3006_265_90072#3011_265_90071#4001_265_90076#4006_265_90079#4011_265_90079#5001_265_90079", "npcLv": [ - 1563, - 1563, - 1563, - 1563, - 1563, - 1563 + 786, + 786, + 786, + 786, + 786, + 786 ], "isboss": 1, "ghname": "npc_ghname_1", @@ -37621,14 +37621,14 @@ "20986": { "npcId": 20986, "attr": {}, - "npclist": "3007_628_90072#3012_628_90071#4002_628_90076#4007_628_90079#4012_628_90079#5002_628_90079", + "npclist": "3007_266_90072#3012_266_90071#4002_266_90076#4007_266_90079#4012_266_90079#5002_266_90079", "npcLv": [ - 1563, - 1563, - 1563, - 1563, - 1563, - 1563 + 787, + 787, + 787, + 787, + 787, + 787 ], "isboss": 1, "ghname": "npc_ghname_2", @@ -37637,14 +37637,14 @@ "20987": { "npcId": 20987, "attr": {}, - "npclist": "3008_631_90072#3013_631_90071#4003_631_90076#4008_631_90079#4013_631_90079#5003_631_90079", + "npclist": "3008_267_90072#3013_267_90071#4003_267_90076#4008_267_90079#4013_267_90079#5003_267_90079", "npcLv": [ - 1569, - 1569, - 1569, - 1569, - 1569, - 1569 + 788, + 788, + 788, + 788, + 788, + 788 ], "isboss": 1, "ghname": "npc_ghname_3", @@ -37653,14 +37653,14 @@ "20988": { "npcId": 20988, "attr": {}, - "npclist": "3009_633_90072#3014_633_90071#4004_633_90076#4009_633_90079#4014_633_90079#5004_633_90079", + "npclist": "3009_268_90072#3014_268_90071#4004_268_90076#4009_268_90079#4014_268_90079#5004_268_90079", "npcLv": [ - 1569, - 1569, - 1569, - 1569, - 1569, - 1569 + 789, + 789, + 789, + 789, + 789, + 789 ], "isboss": 1, "ghname": "npc_ghname_4", @@ -37669,14 +37669,14 @@ "20989": { "npcId": 20989, "attr": {}, - "npclist": "3010_636_90072#3015_636_90071#4005_636_90076#4010_636_90079#4015_636_90079#5005_636_90079", + "npclist": "3010_269_90072#3015_269_90071#4005_269_90076#4010_269_90079#4015_269_90079#5005_269_90079", "npcLv": [ - 1569, - 1569, - 1569, - 1569, - 1569, - 1569 + 790, + 790, + 790, + 790, + 790, + 790 ], "isboss": 1, "ghname": "npc_ghname_5", @@ -37685,14 +37685,14 @@ "20990": { "npcId": 20990, "attr": {}, - "npclist": "3011_638_90072#4001_638_90071#4006_638_90076#4011_638_90079#5001_638_90079#3001_638_90079", + "npclist": "3011_310_90072#4001_310_90071#4006_310_90076#4011_310_90079#5001_310_90079#3001_310_90079", "npcLv": [ - 1575, - 1575, - 1575, - 1575, - 1575, - 1575 + 791, + 791, + 791, + 791, + 791, + 791 ], "isboss": 1, "ghname": "npc_ghname_6", @@ -37701,14 +37701,14 @@ "20991": { "npcId": 20991, "attr": {}, - "npclist": "3012_630_90072#4002_630_90071#4007_630_90076#4012_630_90079#5002_630_90079#3002_630_90079", + "npclist": "3012_267_90072#4002_267_90071#4007_267_90076#4012_267_90079#5002_267_90079#3002_267_90079", "npcLv": [ - 1575, - 1575, - 1575, - 1575, - 1575, - 1575 + 792, + 792, + 792, + 792, + 792, + 792 ], "isboss": 1, "ghname": "npc_ghname_1", @@ -37717,14 +37717,14 @@ "20992": { "npcId": 20992, "attr": {}, - "npclist": "3013_632_90072#4003_632_90071#4008_632_90076#4013_632_90079#5003_632_90079#3003_632_90079", + "npclist": "3013_268_90072#4003_268_90071#4008_268_90076#4013_268_90079#5003_268_90079#3003_268_90079", "npcLv": [ - 1575, - 1575, - 1575, - 1575, - 1575, - 1575 + 793, + 793, + 793, + 793, + 793, + 793 ], "isboss": 1, "ghname": "npc_ghname_2", @@ -37733,14 +37733,14 @@ "20993": { "npcId": 20993, "attr": {}, - "npclist": "3014_634_90072#4004_634_90071#4009_634_90076#4014_634_90079#5004_634_90079#3004_634_90079", + "npclist": "3014_269_90072#4004_269_90071#4009_269_90076#4014_269_90079#5004_269_90079#3004_269_90079", "npcLv": [ - 1581, - 1581, - 1581, - 1581, - 1581, - 1581 + 794, + 794, + 794, + 794, + 794, + 794 ], "isboss": 1, "ghname": "npc_ghname_3", @@ -37749,14 +37749,14 @@ "20994": { "npcId": 20994, "attr": {}, - "npclist": "3015_637_90072#4005_637_90071#4010_637_90076#4015_637_90079#5005_637_90079#3005_637_90079", + "npclist": "3015_270_90072#4005_270_90071#4010_270_90076#4015_270_90079#5005_270_90079#3005_270_90079", "npcLv": [ - 1581, - 1581, - 1581, - 1581, - 1581, - 1581 + 795, + 795, + 795, + 795, + 795, + 795 ], "isboss": 1, "ghname": "npc_ghname_4", @@ -37765,14 +37765,14 @@ "20995": { "npcId": 20995, "attr": {}, - "npclist": "4001_639_90072#4006_639_90071#4011_639_90076#5001_639_90079#3001_639_90079#3006_639_90079", + "npclist": "4001_271_90072#4006_271_90071#4011_271_90076#5001_271_90079#3001_271_90079#3006_271_90079", "npcLv": [ - 1581, - 1581, - 1581, - 1581, - 1581, - 1581 + 796, + 796, + 796, + 796, + 796, + 796 ], "isboss": 1, "ghname": "npc_ghname_5", @@ -37781,14 +37781,14 @@ "20996": { "npcId": 20996, "attr": {}, - "npclist": "4002_641_90072#4007_641_90071#4012_641_90076#5002_641_90079#3002_641_90079#3007_641_90079", + "npclist": "4002_272_90072#4007_272_90071#4012_272_90076#5002_272_90079#3002_272_90079#3007_272_90079", "npcLv": [ - 1587, - 1587, - 1587, - 1587, - 1587, - 1587 + 797, + 797, + 797, + 797, + 797, + 797 ], "isboss": 1, "ghname": "npc_ghname_6", @@ -37797,14 +37797,14 @@ "20997": { "npcId": 20997, "attr": {}, - "npclist": "4003_644_90072#4008_644_90071#4013_644_90076#5003_644_90079#3003_644_90079#3008_644_90079", + "npclist": "4003_273_90072#4008_273_90071#4013_273_90076#5003_273_90079#3003_273_90079#3008_273_90079", "npcLv": [ - 1587, - 1587, - 1587, - 1587, - 1587, - 1587 + 798, + 798, + 798, + 798, + 798, + 798 ], "isboss": 1, "ghname": "npc_ghname_1", @@ -37813,14 +37813,14 @@ "20998": { "npcId": 20998, "attr": {}, - "npclist": "4004_646_90072#4009_646_90071#4014_646_90076#5004_646_90079#3004_646_90079#3009_646_90079", + "npclist": "4004_274_90072#4009_274_90071#4014_274_90076#5004_274_90079#3004_274_90079#3009_274_90079", "npcLv": [ - 1587, - 1587, - 1587, - 1587, - 1587, - 1587 + 799, + 799, + 799, + 799, + 799, + 799 ], "isboss": 1, "ghname": "npc_ghname_2", @@ -37829,14 +37829,14 @@ "20999": { "npcId": 20999, "attr": {}, - "npclist": "4005_649_90072#4010_649_90071#4015_649_90076#5005_649_90079#3005_649_90079#3010_649_90079", + "npclist": "4005_275_90072#4010_275_90071#4015_275_90076#5005_275_90079#3005_275_90079#3010_275_90079", "npcLv": [ - 1593, - 1593, - 1593, - 1593, - 1593, - 1593 + 800, + 800, + 800, + 800, + 800, + 800 ], "isboss": 1, "ghname": "npc_ghname_3", @@ -37845,19 +37845,1299 @@ "21000": { "npcId": 21000, "attr": {}, - "npclist": "4006_662_90072#4011_662_90071#5001_662_90076#3001_662_90079#3006_662_90079#3011_662_90079", + "npclist": "4006_317_90072#4011_317_90071#5001_317_90076#3001_317_90079#3006_317_90079#3011_317_90079", "npcLv": [ - 1593, - 1593, - 1593, - 1593, - 1593, - 1593 + 801, + 801, + 801, + 801, + 801, + 801 ], "isboss": 1, "ghname": "npc_ghname_4", "npcname": "jjc_npc_name_4" }, + "21001": { + "npcId": 21001, + "attr": {}, + "npclist": "4007_273_90072#4012_273_90071#5002_273_90076#3002_273_90079#3007_273_90079#3012_273_90079", + "npcLv": [ + 802, + 802, + 802, + 802, + 802, + 802 + ], + "isboss": 1, + "ghname": "npc_ghname_5", + "npcname": "jjc_npc_name_5" + }, + "21002": { + "npcId": 21002, + "attr": {}, + "npclist": "4008_274_90072#4013_274_90071#5003_274_90076#3003_274_90079#3008_274_90079#3013_274_90079", + "npcLv": [ + 803, + 803, + 803, + 803, + 803, + 803 + ], + "isboss": 1, + "ghname": "npc_ghname_6", + "npcname": "jjc_npc_name_6" + }, + "21003": { + "npcId": 21003, + "attr": {}, + "npclist": "4009_275_90072#4014_275_90071#5004_275_90076#3004_275_90079#3009_275_90079#3014_275_90079", + "npcLv": [ + 804, + 804, + 804, + 804, + 804, + 804 + ], + "isboss": 1, + "ghname": "npc_ghname_1", + "npcname": "jjc_npc_name_1" + }, + "21004": { + "npcId": 21004, + "attr": {}, + "npclist": "4010_276_90072#4015_276_90071#5005_276_90076#3005_276_90079#3010_276_90079#3015_276_90079", + "npcLv": [ + 805, + 805, + 805, + 805, + 805, + 805 + ], + "isboss": 1, + "ghname": "npc_ghname_2", + "npcname": "jjc_npc_name_2" + }, + "21005": { + "npcId": 21005, + "attr": {}, + "npclist": "4011_277_90072#5001_277_90071#3001_277_90076#3006_277_90079#3011_277_90079#4001_277_90079", + "npcLv": [ + 806, + 806, + 806, + 806, + 806, + 806 + ], + "isboss": 1, + "ghname": "npc_ghname_3", + "npcname": "jjc_npc_name_3" + }, + "21006": { + "npcId": 21006, + "attr": {}, + "npclist": "4012_278_90072#5002_278_90071#3002_278_90076#3007_278_90079#3012_278_90079#4002_278_90079", + "npcLv": [ + 807, + 807, + 807, + 807, + 807, + 807 + ], + "isboss": 1, + "ghname": "npc_ghname_4", + "npcname": "jjc_npc_name_4" + }, + "21007": { + "npcId": 21007, + "attr": {}, + "npclist": "4013_279_90072#5003_279_90071#3003_279_90076#3008_279_90079#3013_279_90079#4003_279_90079", + "npcLv": [ + 808, + 808, + 808, + 808, + 808, + 808 + ], + "isboss": 1, + "ghname": "npc_ghname_5", + "npcname": "jjc_npc_name_5" + }, + "21008": { + "npcId": 21008, + "attr": {}, + "npclist": "4014_280_90072#5004_280_90071#3004_280_90076#3009_280_90079#3014_280_90079#4004_280_90079", + "npcLv": [ + 809, + 809, + 809, + 809, + 809, + 809 + ], + "isboss": 1, + "ghname": "npc_ghname_6", + "npcname": "jjc_npc_name_6" + }, + "21009": { + "npcId": 21009, + "attr": {}, + "npclist": "4015_281_90072#5005_281_90071#3005_281_90076#3010_281_90079#3015_281_90079#4005_281_90079", + "npcLv": [ + 810, + 810, + 810, + 810, + 810, + 810 + ], + "isboss": 1, + "ghname": "npc_ghname_1", + "npcname": "jjc_npc_name_1" + }, + "21010": { + "npcId": 21010, + "attr": {}, + "npclist": "5001_324_90072#3001_324_90071#3006_324_90076#3011_324_90079#4001_324_90079#4006_324_90079", + "npcLv": [ + 811, + 811, + 811, + 811, + 811, + 811 + ], + "isboss": 1, + "ghname": "npc_ghname_2", + "npcname": "jjc_npc_name_2" + }, + "21011": { + "npcId": 21011, + "attr": {}, + "npclist": "5002_279_90072#3002_279_90071#3007_279_90076#3012_279_90079#4002_279_90079#4007_279_90079", + "npcLv": [ + 812, + 812, + 812, + 812, + 812, + 812 + ], + "isboss": 1, + "ghname": "npc_ghname_3", + "npcname": "jjc_npc_name_3" + }, + "21012": { + "npcId": 21012, + "attr": {}, + "npclist": "5003_280_90072#3003_280_90071#3008_280_90076#3013_280_90079#4003_280_90079#4008_280_90079", + "npcLv": [ + 813, + 813, + 813, + 813, + 813, + 813 + ], + "isboss": 1, + "ghname": "npc_ghname_4", + "npcname": "jjc_npc_name_4" + }, + "21013": { + "npcId": 21013, + "attr": {}, + "npclist": "5004_281_90072#3004_281_90071#3009_281_90076#3014_281_90079#4004_281_90079#4009_281_90079", + "npcLv": [ + 814, + 814, + 814, + 814, + 814, + 814 + ], + "isboss": 1, + "ghname": "npc_ghname_5", + "npcname": "jjc_npc_name_5" + }, + "21014": { + "npcId": 21014, + "attr": {}, + "npclist": "5005_282_90072#3005_282_90071#3010_282_90076#3015_282_90079#4005_282_90079#4010_282_90079", + "npcLv": [ + 815, + 815, + 815, + 815, + 815, + 815 + ], + "isboss": 1, + "ghname": "npc_ghname_6", + "npcname": "jjc_npc_name_6" + }, + "21015": { + "npcId": 21015, + "attr": {}, + "npclist": "3001_283_90072#3006_283_90071#3011_283_90076#4001_283_90079#4006_283_90079#4011_283_90079", + "npcLv": [ + 816, + 816, + 816, + 816, + 816, + 816 + ], + "isboss": 1, + "ghname": "npc_ghname_1", + "npcname": "jjc_npc_name_1" + }, + "21016": { + "npcId": 21016, + "attr": {}, + "npclist": "3002_284_90072#3007_284_90071#3012_284_90076#4002_284_90079#4007_284_90079#4012_284_90079", + "npcLv": [ + 817, + 817, + 817, + 817, + 817, + 817 + ], + "isboss": 1, + "ghname": "npc_ghname_2", + "npcname": "jjc_npc_name_2" + }, + "21017": { + "npcId": 21017, + "attr": {}, + "npclist": "3003_285_90072#3008_285_90071#3013_285_90076#4003_285_90079#4008_285_90079#4013_285_90079", + "npcLv": [ + 818, + 818, + 818, + 818, + 818, + 818 + ], + "isboss": 1, + "ghname": "npc_ghname_3", + "npcname": "jjc_npc_name_3" + }, + "21018": { + "npcId": 21018, + "attr": {}, + "npclist": "3004_286_90072#3009_286_90071#3014_286_90076#4004_286_90079#4009_286_90079#4014_286_90079", + "npcLv": [ + 819, + 819, + 819, + 819, + 819, + 819 + ], + "isboss": 1, + "ghname": "npc_ghname_4", + "npcname": "jjc_npc_name_4" + }, + "21019": { + "npcId": 21019, + "attr": {}, + "npclist": "3005_287_90072#3010_287_90071#3015_287_90076#4005_287_90079#4010_287_90079#4015_287_90079", + "npcLv": [ + 820, + 820, + 820, + 820, + 820, + 820 + ], + "isboss": 1, + "ghname": "npc_ghname_5", + "npcname": "jjc_npc_name_5" + }, + "21020": { + "npcId": 21020, + "attr": {}, + "npclist": "3006_331_90072#3011_331_90071#4001_331_90076#4006_331_90079#4011_331_90079#5001_331_90079", + "npcLv": [ + 821, + 821, + 821, + 821, + 821, + 821 + ], + "isboss": 1, + "ghname": "npc_ghname_6", + "npcname": "jjc_npc_name_6" + }, + "21021": { + "npcId": 21021, + "attr": {}, + "npclist": "3007_285_90072#3012_285_90071#4002_285_90076#4007_285_90079#4012_285_90079#5002_285_90079", + "npcLv": [ + 822, + 822, + 822, + 822, + 822, + 822 + ], + "isboss": 1, + "ghname": "npc_ghname_1", + "npcname": "jjc_npc_name_1" + }, + "21022": { + "npcId": 21022, + "attr": {}, + "npclist": "3008_286_90072#3013_286_90071#4003_286_90076#4008_286_90079#4013_286_90079#5003_286_90079", + "npcLv": [ + 823, + 823, + 823, + 823, + 823, + 823 + ], + "isboss": 1, + "ghname": "npc_ghname_2", + "npcname": "jjc_npc_name_2" + }, + "21023": { + "npcId": 21023, + "attr": {}, + "npclist": "3009_287_90072#3014_287_90071#4004_287_90076#4009_287_90079#4014_287_90079#5004_287_90079", + "npcLv": [ + 824, + 824, + 824, + 824, + 824, + 824 + ], + "isboss": 1, + "ghname": "npc_ghname_3", + "npcname": "jjc_npc_name_3" + }, + "21024": { + "npcId": 21024, + "attr": {}, + "npclist": "3010_288_90072#3015_288_90071#4005_288_90076#4010_288_90079#4015_288_90079#5005_288_90079", + "npcLv": [ + 825, + 825, + 825, + 825, + 825, + 825 + ], + "isboss": 1, + "ghname": "npc_ghname_4", + "npcname": "jjc_npc_name_4" + }, + "21025": { + "npcId": 21025, + "attr": {}, + "npclist": "3011_289_90072#4001_289_90071#4006_289_90076#4011_289_90079#5001_289_90079#3001_289_90079", + "npcLv": [ + 826, + 826, + 826, + 826, + 826, + 826 + ], + "isboss": 1, + "ghname": "npc_ghname_5", + "npcname": "jjc_npc_name_5" + }, + "21026": { + "npcId": 21026, + "attr": {}, + "npclist": "3012_290_90072#4002_290_90071#4007_290_90076#4012_290_90079#5002_290_90079#3002_290_90079", + "npcLv": [ + 827, + 827, + 827, + 827, + 827, + 827 + ], + "isboss": 1, + "ghname": "npc_ghname_6", + "npcname": "jjc_npc_name_6" + }, + "21027": { + "npcId": 21027, + "attr": {}, + "npclist": "3013_291_90072#4003_291_90071#4008_291_90076#4013_291_90079#5003_291_90079#3003_291_90079", + "npcLv": [ + 828, + 828, + 828, + 828, + 828, + 828 + ], + "isboss": 1, + "ghname": "npc_ghname_1", + "npcname": "jjc_npc_name_1" + }, + "21028": { + "npcId": 21028, + "attr": {}, + "npclist": "3014_292_90072#4004_292_90071#4009_292_90076#4014_292_90079#5004_292_90079#3004_292_90079", + "npcLv": [ + 829, + 829, + 829, + 829, + 829, + 829 + ], + "isboss": 1, + "ghname": "npc_ghname_2", + "npcname": "jjc_npc_name_2" + }, + "21029": { + "npcId": 21029, + "attr": {}, + "npclist": "3015_293_90072#4005_293_90071#4010_293_90076#4015_293_90079#5005_293_90079#3005_293_90079", + "npcLv": [ + 830, + 830, + 830, + 830, + 830, + 830 + ], + "isboss": 1, + "ghname": "npc_ghname_3", + "npcname": "jjc_npc_name_3" + }, + "21030": { + "npcId": 21030, + "attr": {}, + "npclist": "4001_338_90072#4006_338_90071#4011_338_90076#5001_338_90079#3001_338_90079#3006_338_90079", + "npcLv": [ + 831, + 831, + 831, + 831, + 831, + 831 + ], + "isboss": 1, + "ghname": "npc_ghname_4", + "npcname": "jjc_npc_name_4" + }, + "21031": { + "npcId": 21031, + "attr": {}, + "npclist": "4002_291_90072#4007_291_90071#4012_291_90076#5002_291_90079#3002_291_90079#3007_291_90079", + "npcLv": [ + 832, + 832, + 832, + 832, + 832, + 832 + ], + "isboss": 1, + "ghname": "npc_ghname_5", + "npcname": "jjc_npc_name_5" + }, + "21032": { + "npcId": 21032, + "attr": {}, + "npclist": "4003_292_90072#4008_292_90071#4013_292_90076#5003_292_90079#3003_292_90079#3008_292_90079", + "npcLv": [ + 833, + 833, + 833, + 833, + 833, + 833 + ], + "isboss": 1, + "ghname": "npc_ghname_6", + "npcname": "jjc_npc_name_6" + }, + "21033": { + "npcId": 21033, + "attr": {}, + "npclist": "4004_293_90072#4009_293_90071#4014_293_90076#5004_293_90079#3004_293_90079#3009_293_90079", + "npcLv": [ + 834, + 834, + 834, + 834, + 834, + 834 + ], + "isboss": 1, + "ghname": "npc_ghname_1", + "npcname": "jjc_npc_name_1" + }, + "21034": { + "npcId": 21034, + "attr": {}, + "npclist": "4005_294_90072#4010_294_90071#4015_294_90076#5005_294_90079#3005_294_90079#3010_294_90079", + "npcLv": [ + 835, + 835, + 835, + 835, + 835, + 835 + ], + "isboss": 1, + "ghname": "npc_ghname_2", + "npcname": "jjc_npc_name_2" + }, + "21035": { + "npcId": 21035, + "attr": {}, + "npclist": "4006_295_90072#4011_295_90071#5001_295_90076#3001_295_90079#3006_295_90079#3011_295_90079", + "npcLv": [ + 836, + 836, + 836, + 836, + 836, + 836 + ], + "isboss": 1, + "ghname": "npc_ghname_3", + "npcname": "jjc_npc_name_3" + }, + "21036": { + "npcId": 21036, + "attr": {}, + "npclist": "4007_296_90072#4012_296_90071#5002_296_90076#3002_296_90079#3007_296_90079#3012_296_90079", + "npcLv": [ + 837, + 837, + 837, + 837, + 837, + 837 + ], + "isboss": 1, + "ghname": "npc_ghname_4", + "npcname": "jjc_npc_name_4" + }, + "21037": { + "npcId": 21037, + "attr": {}, + "npclist": "4008_297_90072#4013_297_90071#5003_297_90076#3003_297_90079#3008_297_90079#3013_297_90079", + "npcLv": [ + 838, + 838, + 838, + 838, + 838, + 838 + ], + "isboss": 1, + "ghname": "npc_ghname_5", + "npcname": "jjc_npc_name_5" + }, + "21038": { + "npcId": 21038, + "attr": {}, + "npclist": "4009_298_90072#4014_298_90071#5004_298_90076#3004_298_90079#3009_298_90079#3014_298_90079", + "npcLv": [ + 839, + 839, + 839, + 839, + 839, + 839 + ], + "isboss": 1, + "ghname": "npc_ghname_6", + "npcname": "jjc_npc_name_6" + }, + "21039": { + "npcId": 21039, + "attr": {}, + "npclist": "4010_299_90072#4015_299_90071#5005_299_90076#3005_299_90079#3010_299_90079#3015_299_90079", + "npcLv": [ + 840, + 840, + 840, + 840, + 840, + 840 + ], + "isboss": 1, + "ghname": "npc_ghname_1", + "npcname": "jjc_npc_name_1" + }, + "21040": { + "npcId": 21040, + "attr": {}, + "npclist": "4011_345_90072#5001_345_90071#3001_345_90076#3006_345_90079#3011_345_90079#4001_345_90079", + "npcLv": [ + 841, + 841, + 841, + 841, + 841, + 841 + ], + "isboss": 1, + "ghname": "npc_ghname_2", + "npcname": "jjc_npc_name_2" + }, + "21041": { + "npcId": 21041, + "attr": {}, + "npclist": "4012_297_90072#5002_297_90071#3002_297_90076#3007_297_90079#3012_297_90079#4002_297_90079", + "npcLv": [ + 842, + 842, + 842, + 842, + 842, + 842 + ], + "isboss": 1, + "ghname": "npc_ghname_3", + "npcname": "jjc_npc_name_3" + }, + "21042": { + "npcId": 21042, + "attr": {}, + "npclist": "4013_298_90072#5003_298_90071#3003_298_90076#3008_298_90079#3013_298_90079#4003_298_90079", + "npcLv": [ + 843, + 843, + 843, + 843, + 843, + 843 + ], + "isboss": 1, + "ghname": "npc_ghname_4", + "npcname": "jjc_npc_name_4" + }, + "21043": { + "npcId": 21043, + "attr": {}, + "npclist": "4014_299_90072#5004_299_90071#3004_299_90076#3009_299_90079#3014_299_90079#4004_299_90079", + "npcLv": [ + 844, + 844, + 844, + 844, + 844, + 844 + ], + "isboss": 1, + "ghname": "npc_ghname_5", + "npcname": "jjc_npc_name_5" + }, + "21044": { + "npcId": 21044, + "attr": {}, + "npclist": "4015_300_90072#5005_300_90071#3005_300_90076#3010_300_90079#3015_300_90079#4005_300_90079", + "npcLv": [ + 845, + 845, + 845, + 845, + 845, + 845 + ], + "isboss": 1, + "ghname": "npc_ghname_6", + "npcname": "jjc_npc_name_6" + }, + "21045": { + "npcId": 21045, + "attr": {}, + "npclist": "5001_301_90072#3001_301_90071#3006_301_90076#3011_301_90079#4001_301_90079#4006_301_90079", + "npcLv": [ + 846, + 846, + 846, + 846, + 846, + 846 + ], + "isboss": 1, + "ghname": "npc_ghname_1", + "npcname": "jjc_npc_name_1" + }, + "21046": { + "npcId": 21046, + "attr": {}, + "npclist": "5002_302_90072#3002_302_90071#3007_302_90076#3012_302_90079#4002_302_90079#4007_302_90079", + "npcLv": [ + 847, + 847, + 847, + 847, + 847, + 847 + ], + "isboss": 1, + "ghname": "npc_ghname_2", + "npcname": "jjc_npc_name_2" + }, + "21047": { + "npcId": 21047, + "attr": {}, + "npclist": "5003_303_90072#3003_303_90071#3008_303_90076#3013_303_90079#4003_303_90079#4008_303_90079", + "npcLv": [ + 848, + 848, + 848, + 848, + 848, + 848 + ], + "isboss": 1, + "ghname": "npc_ghname_3", + "npcname": "jjc_npc_name_3" + }, + "21048": { + "npcId": 21048, + "attr": {}, + "npclist": "5004_304_90072#3004_304_90071#3009_304_90076#3014_304_90079#4004_304_90079#4009_304_90079", + "npcLv": [ + 849, + 849, + 849, + 849, + 849, + 849 + ], + "isboss": 1, + "ghname": "npc_ghname_4", + "npcname": "jjc_npc_name_4" + }, + "21049": { + "npcId": 21049, + "attr": {}, + "npclist": "5005_305_90072#3005_305_90071#3010_305_90076#3015_305_90079#4005_305_90079#4010_305_90079", + "npcLv": [ + 850, + 850, + 850, + 850, + 850, + 850 + ], + "isboss": 1, + "ghname": "npc_ghname_5", + "npcname": "jjc_npc_name_5" + }, + "21050": { + "npcId": 21050, + "attr": {}, + "npclist": "3001_352_90072#3006_352_90071#3011_352_90076#4001_352_90079#4006_352_90079#4011_352_90079", + "npcLv": [ + 851, + 851, + 851, + 851, + 851, + 851 + ], + "isboss": 1, + "ghname": "npc_ghname_6", + "npcname": "jjc_npc_name_6" + }, + "21051": { + "npcId": 21051, + "attr": {}, + "npclist": "3002_303_90072#3007_303_90071#3012_303_90076#4002_303_90079#4007_303_90079#4012_303_90079", + "npcLv": [ + 852, + 852, + 852, + 852, + 852, + 852 + ], + "isboss": 1, + "ghname": "npc_ghname_1", + "npcname": "jjc_npc_name_1" + }, + "21052": { + "npcId": 21052, + "attr": {}, + "npclist": "3003_304_90072#3008_304_90071#3013_304_90076#4003_304_90079#4008_304_90079#4013_304_90079", + "npcLv": [ + 853, + 853, + 853, + 853, + 853, + 853 + ], + "isboss": 1, + "ghname": "npc_ghname_2", + "npcname": "jjc_npc_name_2" + }, + "21053": { + "npcId": 21053, + "attr": {}, + "npclist": "3004_305_90072#3009_305_90071#3014_305_90076#4004_305_90079#4009_305_90079#4014_305_90079", + "npcLv": [ + 854, + 854, + 854, + 854, + 854, + 854 + ], + "isboss": 1, + "ghname": "npc_ghname_3", + "npcname": "jjc_npc_name_3" + }, + "21054": { + "npcId": 21054, + "attr": {}, + "npclist": "3005_306_90072#3010_306_90071#3015_306_90076#4005_306_90079#4010_306_90079#4015_306_90079", + "npcLv": [ + 855, + 855, + 855, + 855, + 855, + 855 + ], + "isboss": 1, + "ghname": "npc_ghname_4", + "npcname": "jjc_npc_name_4" + }, + "21055": { + "npcId": 21055, + "attr": {}, + "npclist": "3006_307_90072#3011_307_90071#4001_307_90076#4006_307_90079#4011_307_90079#5001_307_90079", + "npcLv": [ + 856, + 856, + 856, + 856, + 856, + 856 + ], + "isboss": 1, + "ghname": "npc_ghname_5", + "npcname": "jjc_npc_name_5" + }, + "21056": { + "npcId": 21056, + "attr": {}, + "npclist": "3007_308_90072#3012_308_90071#4002_308_90076#4007_308_90079#4012_308_90079#5002_308_90079", + "npcLv": [ + 857, + 857, + 857, + 857, + 857, + 857 + ], + "isboss": 1, + "ghname": "npc_ghname_6", + "npcname": "jjc_npc_name_6" + }, + "21057": { + "npcId": 21057, + "attr": {}, + "npclist": "3008_309_90072#3013_309_90071#4003_309_90076#4008_309_90079#4013_309_90079#5003_309_90079", + "npcLv": [ + 858, + 858, + 858, + 858, + 858, + 858 + ], + "isboss": 1, + "ghname": "npc_ghname_1", + "npcname": "jjc_npc_name_1" + }, + "21058": { + "npcId": 21058, + "attr": {}, + "npclist": "3009_310_90072#3014_310_90071#4004_310_90076#4009_310_90079#4014_310_90079#5004_310_90079", + "npcLv": [ + 859, + 859, + 859, + 859, + 859, + 859 + ], + "isboss": 1, + "ghname": "npc_ghname_2", + "npcname": "jjc_npc_name_2" + }, + "21059": { + "npcId": 21059, + "attr": {}, + "npclist": "3010_311_90072#3015_311_90071#4005_311_90076#4010_311_90079#4015_311_90079#5005_311_90079", + "npcLv": [ + 860, + 860, + 860, + 860, + 860, + 860 + ], + "isboss": 1, + "ghname": "npc_ghname_3", + "npcname": "jjc_npc_name_3" + }, + "21060": { + "npcId": 21060, + "attr": {}, + "npclist": "3011_359_90072#4001_359_90071#4006_359_90076#4011_359_90079#5001_359_90079#3001_359_90079", + "npcLv": [ + 861, + 861, + 861, + 861, + 861, + 861 + ], + "isboss": 1, + "ghname": "npc_ghname_4", + "npcname": "jjc_npc_name_4" + }, + "21061": { + "npcId": 21061, + "attr": {}, + "npclist": "3012_309_90072#4002_309_90071#4007_309_90076#4012_309_90079#5002_309_90079#3002_309_90079", + "npcLv": [ + 862, + 862, + 862, + 862, + 862, + 862 + ], + "isboss": 1, + "ghname": "npc_ghname_5", + "npcname": "jjc_npc_name_5" + }, + "21062": { + "npcId": 21062, + "attr": {}, + "npclist": "3013_310_90072#4003_310_90071#4008_310_90076#4013_310_90079#5003_310_90079#3003_310_90079", + "npcLv": [ + 863, + 863, + 863, + 863, + 863, + 863 + ], + "isboss": 1, + "ghname": "npc_ghname_6", + "npcname": "jjc_npc_name_6" + }, + "21063": { + "npcId": 21063, + "attr": {}, + "npclist": "3014_311_90072#4004_311_90071#4009_311_90076#4014_311_90079#5004_311_90079#3004_311_90079", + "npcLv": [ + 864, + 864, + 864, + 864, + 864, + 864 + ], + "isboss": 1, + "ghname": "npc_ghname_1", + "npcname": "jjc_npc_name_1" + }, + "21064": { + "npcId": 21064, + "attr": {}, + "npclist": "3015_312_90072#4005_312_90071#4010_312_90076#4015_312_90079#5005_312_90079#3005_312_90079", + "npcLv": [ + 865, + 865, + 865, + 865, + 865, + 865 + ], + "isboss": 1, + "ghname": "npc_ghname_2", + "npcname": "jjc_npc_name_2" + }, + "21065": { + "npcId": 21065, + "attr": {}, + "npclist": "4001_313_90072#4006_313_90071#4011_313_90076#5001_313_90079#3001_313_90079#3006_313_90079", + "npcLv": [ + 866, + 866, + 866, + 866, + 866, + 866 + ], + "isboss": 1, + "ghname": "npc_ghname_3", + "npcname": "jjc_npc_name_3" + }, + "21066": { + "npcId": 21066, + "attr": {}, + "npclist": "4002_314_90072#4007_314_90071#4012_314_90076#5002_314_90079#3002_314_90079#3007_314_90079", + "npcLv": [ + 867, + 867, + 867, + 867, + 867, + 867 + ], + "isboss": 1, + "ghname": "npc_ghname_4", + "npcname": "jjc_npc_name_4" + }, + "21067": { + "npcId": 21067, + "attr": {}, + "npclist": "4003_315_90072#4008_315_90071#4013_315_90076#5003_315_90079#3003_315_90079#3008_315_90079", + "npcLv": [ + 868, + 868, + 868, + 868, + 868, + 868 + ], + "isboss": 1, + "ghname": "npc_ghname_5", + "npcname": "jjc_npc_name_5" + }, + "21068": { + "npcId": 21068, + "attr": {}, + "npclist": "4004_316_90072#4009_316_90071#4014_316_90076#5004_316_90079#3004_316_90079#3009_316_90079", + "npcLv": [ + 869, + 869, + 869, + 869, + 869, + 869 + ], + "isboss": 1, + "ghname": "npc_ghname_6", + "npcname": "jjc_npc_name_6" + }, + "21069": { + "npcId": 21069, + "attr": {}, + "npclist": "4005_317_90072#4010_317_90071#4015_317_90076#5005_317_90079#3005_317_90079#3010_317_90079", + "npcLv": [ + 870, + 870, + 870, + 870, + 870, + 870 + ], + "isboss": 1, + "ghname": "npc_ghname_1", + "npcname": "jjc_npc_name_1" + }, + "21070": { + "npcId": 21070, + "attr": {}, + "npclist": "4006_367_90072#4011_367_90071#5001_367_90076#3001_367_90079#3006_367_90079#3011_367_90079", + "npcLv": [ + 871, + 871, + 871, + 871, + 871, + 871 + ], + "isboss": 1, + "ghname": "npc_ghname_2", + "npcname": "jjc_npc_name_2" + }, + "21071": { + "npcId": 21071, + "attr": {}, + "npclist": "4007_315_90072#4012_315_90071#5002_315_90076#3002_315_90079#3007_315_90079#3012_315_90079", + "npcLv": [ + 872, + 872, + 872, + 872, + 872, + 872 + ], + "isboss": 1, + "ghname": "npc_ghname_3", + "npcname": "jjc_npc_name_3" + }, + "21072": { + "npcId": 21072, + "attr": {}, + "npclist": "4008_316_90072#4013_316_90071#5003_316_90076#3003_316_90079#3008_316_90079#3013_316_90079", + "npcLv": [ + 873, + 873, + 873, + 873, + 873, + 873 + ], + "isboss": 1, + "ghname": "npc_ghname_4", + "npcname": "jjc_npc_name_4" + }, + "21073": { + "npcId": 21073, + "attr": {}, + "npclist": "4009_317_90072#4014_317_90071#5004_317_90076#3004_317_90079#3009_317_90079#3014_317_90079", + "npcLv": [ + 874, + 874, + 874, + 874, + 874, + 874 + ], + "isboss": 1, + "ghname": "npc_ghname_5", + "npcname": "jjc_npc_name_5" + }, + "21074": { + "npcId": 21074, + "attr": {}, + "npclist": "4010_318_90072#4015_318_90071#5005_318_90076#3005_318_90079#3010_318_90079#3015_318_90079", + "npcLv": [ + 875, + 875, + 875, + 875, + 875, + 875 + ], + "isboss": 1, + "ghname": "npc_ghname_6", + "npcname": "jjc_npc_name_6" + }, + "21075": { + "npcId": 21075, + "attr": {}, + "npclist": "4011_319_90072#5001_319_90071#3001_319_90076#3006_319_90079#3011_319_90079#4001_319_90079", + "npcLv": [ + 876, + 876, + 876, + 876, + 876, + 876 + ], + "isboss": 1, + "ghname": "npc_ghname_1", + "npcname": "jjc_npc_name_1" + }, + "21076": { + "npcId": 21076, + "attr": {}, + "npclist": "4012_320_90072#5002_320_90071#3002_320_90076#3007_320_90079#3012_320_90079#4002_320_90079", + "npcLv": [ + 877, + 877, + 877, + 877, + 877, + 877 + ], + "isboss": 1, + "ghname": "npc_ghname_2", + "npcname": "jjc_npc_name_2" + }, + "21077": { + "npcId": 21077, + "attr": {}, + "npclist": "4013_369_90072#5003_369_90071#3003_369_90076#3008_369_90079#3013_369_90079#4003_369_90079", + "npcLv": [ + 878, + 878, + 878, + 878, + 878, + 878 + ], + "isboss": 1, + "ghname": "npc_ghname_3", + "npcname": "jjc_npc_name_3" + }, + "21078": { + "npcId": 21078, + "attr": {}, + "npclist": "4014_372_90072#5004_372_90071#3004_372_90076#3009_372_90079#3014_372_90079#4004_372_90079", + "npcLv": [ + 879, + 879, + 879, + 879, + 879, + 879 + ], + "isboss": 1, + "ghname": "npc_ghname_4", + "npcname": "jjc_npc_name_4" + }, + "21079": { + "npcId": 21079, + "attr": {}, + "npclist": "4015_375_90072#5005_375_90071#3005_375_90076#3010_375_90079#3015_375_90079#4005_375_90079", + "npcLv": [ + 880, + 880, + 880, + 880, + 880, + 880 + ], + "isboss": 1, + "ghname": "npc_ghname_5", + "npcname": "jjc_npc_name_5" + }, + "21080": { + "npcId": 21080, + "attr": {}, + "npclist": "5001_378_90072#3001_378_90071#3006_378_90076#3011_378_90079#4001_378_90079#4006_378_90079", + "npcLv": [ + 881, + 881, + 881, + 881, + 881, + 881 + ], + "isboss": 1, + "ghname": "npc_ghname_6", + "npcname": "jjc_npc_name_6" + }, "30001": { "npcId": 30001, "attr": {}, diff --git a/src/json/tanxian.json b/src/json/tanxian.json index 5c82127..ee794db 100644 --- a/src/json/tanxian.json +++ b/src/json/tanxian.json @@ -48949,5 +48949,3925 @@ 418 ], "fightmap": "bg_fight_ally" + }, + "1001": { + "id": 1001, + "chapter": 14, + "mapbg": "tx_map_ally", + "needLv": 1, + "npcId": 21001, + "name": "14-21", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 3336 + }, + { + "a": "attr", + "t": "nexp", + "n": 1353.4 + } + ], + "dlz": [], + "passPrize": [ + 260090, + 271001, + 280001, + 280002, + 104, + 105, + 106, + 113 + ], + "base": 181.619999999996, + "round": [ + 60, + 180, + 300 + ], + "drop": [ + 211001, + 220075, + 230001, + 240001, + 250003 + ], + "pos": [ + 127, + 72 + ], + "fightmap": "bg_fight_ally" + }, + "1002": { + "id": 1002, + "chapter": 14, + "mapbg": "tx_map_ally", + "needLv": 1, + "npcId": 21002, + "name": "14-22", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 3341.1 + }, + { + "a": "attr", + "t": "nexp", + "n": 1354.6 + } + ], + "dlz": [], + "passPrize": [ + 260090, + 271002, + 280001, + 280002, + 104, + 105, + 106, + 113 + ], + "base": 181.759999999996, + "round": [ + 60, + 180, + 300 + ], + "drop": [ + 211002, + 220075, + 230001, + 240001, + 250003 + ], + "pos": [ + 160, + 98 + ], + "fightmap": "bg_fight_ally" + }, + "1003": { + "id": 1003, + "chapter": 14, + "mapbg": "tx_map_ally", + "needLv": 1, + "npcId": 21003, + "name": "14-23", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 3346.1 + }, + { + "a": "attr", + "t": "nexp", + "n": 1355.7 + } + ], + "dlz": [], + "passPrize": [ + 260090, + 271003, + 280001, + 280002, + 104, + 105, + 106, + 113 + ], + "base": 181.899999999996, + "round": [ + 60, + 180, + 300 + ], + "drop": [ + 211003, + 220075, + 230001, + 240001, + 250003 + ], + "pos": [ + 167, + 135 + ], + "fightmap": "bg_fight_ally" + }, + "1004": { + "id": 1004, + "chapter": 14, + "mapbg": "tx_map_ally", + "needLv": 1, + "npcId": 21004, + "name": "14-24", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 3351.2 + }, + { + "a": "attr", + "t": "nexp", + "n": 1356.9 + } + ], + "dlz": [], + "passPrize": [ + 260090, + 271004, + 280001, + 280002, + 104, + 105, + 106, + 113 + ], + "base": 182.039999999996, + "round": [ + 60, + 180, + 300 + ], + "drop": [ + 211004, + 220075, + 230001, + 240001, + 250003 + ], + "pos": [ + 142, + 164 + ], + "fightmap": "bg_fight_ally" + }, + "1005": { + "id": 1005, + "chapter": 14, + "mapbg": "tx_map_ally", + "needLv": 1, + "npcId": 21005, + "name": "14-25", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 3356.3 + }, + { + "a": "attr", + "t": "nexp", + "n": 1358 + } + ], + "dlz": [], + "passPrize": [ + 260090, + 271005, + 280001, + 280002, + 104, + 105, + 106, + 113 + ], + "base": 182.179999999996, + "round": [ + 60, + 180, + 300 + ], + "drop": [ + 211005, + 220075, + 230001, + 240001, + 250003 + ], + "pos": [ + 110, + 188 + ], + "fightmap": "bg_fight_ally" + }, + "1006": { + "id": 1006, + "chapter": 14, + "mapbg": "tx_map_ally", + "needLv": 1, + "npcId": 21006, + "name": "14-26", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 3361.4 + }, + { + "a": "attr", + "t": "nexp", + "n": 1359.2 + } + ], + "dlz": [], + "passPrize": [ + 260090, + 271006, + 280001, + 280002, + 104, + 105, + 106, + 113 + ], + "base": 182.319999999996, + "round": [ + 60, + 180, + 300 + ], + "drop": [ + 211006, + 220075, + 230001, + 240001, + 250003 + ], + "pos": [ + 58, + 195 + ], + "fightmap": "bg_fight_ally" + }, + "1007": { + "id": 1007, + "chapter": 14, + "mapbg": "tx_map_ally", + "needLv": 1, + "npcId": 21007, + "name": "14-27", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 3366.5 + }, + { + "a": "attr", + "t": "nexp", + "n": 1360.3 + } + ], + "dlz": [], + "passPrize": [ + 260090, + 271007, + 280001, + 280002, + 104, + 105, + 106, + 113 + ], + "base": 182.459999999996, + "round": [ + 60, + 180, + 300 + ], + "drop": [ + 211007, + 220075, + 230001, + 240001, + 250003 + ], + "pos": [ + 6, + 187 + ], + "fightmap": "bg_fight_ally" + }, + "1008": { + "id": 1008, + "chapter": 14, + "mapbg": "tx_map_ally", + "needLv": 1, + "npcId": 21008, + "name": "14-28", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 3371.5 + }, + { + "a": "attr", + "t": "nexp", + "n": 1361.5 + } + ], + "dlz": [], + "passPrize": [ + 260090, + 271008, + 280001, + 280002, + 104, + 105, + 106, + 113 + ], + "base": 182.599999999996, + "round": [ + 60, + 180, + 300 + ], + "drop": [ + 211008, + 220075, + 230001, + 240001, + 250003 + ], + "pos": [ + -40, + 175 + ], + "fightmap": "bg_fight_ally" + }, + "1009": { + "id": 1009, + "chapter": 14, + "mapbg": "tx_map_ally", + "needLv": 1, + "npcId": 21009, + "name": "14-29", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 3376.6 + }, + { + "a": "attr", + "t": "nexp", + "n": 1362.7 + } + ], + "dlz": [], + "passPrize": [ + 260090, + 271009, + 280001, + 280002, + 104, + 105, + 106, + 113 + ], + "base": 182.739999999996, + "round": [ + 60, + 180, + 300 + ], + "drop": [ + 211009, + 220075, + 230001, + 240001, + 250003 + ], + "pos": [ + -92, + 173 + ], + "fightmap": "bg_fight_ally" + }, + "1010": { + "id": 1010, + "chapter": 14, + "mapbg": "tx_map_ally", + "needLv": 1, + "npcId": 21010, + "name": "14-30", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 3381.7 + }, + { + "a": "attr", + "t": "nexp", + "n": 1363.8 + } + ], + "dlz": [], + "passPrize": [ + 260090, + 271010, + 280001, + 280002, + 104, + 105, + 106, + 113 + ], + "base": 182.879999999996, + "round": [ + 60, + 180, + 300 + ], + "drop": [ + 211010, + 220075, + 230001, + 240001, + 250003 + ], + "pos": [ + -144, + 178 + ], + "fightmap": "bg_fight_ally" + }, + "1011": { + "id": 1011, + "chapter": 14, + "mapbg": "tx_map_ally", + "needLv": 1, + "npcId": 21011, + "name": "14-31", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 3386.8 + }, + { + "a": "attr", + "t": "nexp", + "n": 1365 + } + ], + "dlz": [], + "passPrize": [ + 260090, + 271011, + 280001, + 280002, + 104, + 105, + 106, + 113 + ], + "base": 183.019999999996, + "round": [ + 60, + 180, + 300 + ], + "drop": [ + 211011, + 220075, + 230001, + 240001, + 250003 + ], + "pos": [ + -186, + 190 + ], + "fightmap": "bg_fight_ally" + }, + "1012": { + "id": 1012, + "chapter": 14, + "mapbg": "tx_map_ally", + "needLv": 1, + "npcId": 21012, + "name": "14-32", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 3391.9 + }, + { + "a": "attr", + "t": "nexp", + "n": 1366.1 + } + ], + "dlz": [], + "passPrize": [ + 260090, + 271012, + 280001, + 280002, + 104, + 105, + 106, + 113 + ], + "base": 183.159999999996, + "round": [ + 60, + 180, + 300 + ], + "drop": [ + 211012, + 220075, + 230001, + 240001, + 250003 + ], + "pos": [ + -217, + 212 + ], + "fightmap": "bg_fight_ally" + }, + "1013": { + "id": 1013, + "chapter": 14, + "mapbg": "tx_map_ally", + "needLv": 1, + "npcId": 21013, + "name": "14-33", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 3396.9 + }, + { + "a": "attr", + "t": "nexp", + "n": 1367.3 + } + ], + "dlz": [], + "passPrize": [ + 260090, + 271013, + 280001, + 280002, + 104, + 105, + 106, + 113 + ], + "base": 183.299999999996, + "round": [ + 60, + 180, + 300 + ], + "drop": [ + 211013, + 220075, + 230001, + 240001, + 250003 + ], + "pos": [ + -222, + 245 + ], + "fightmap": "bg_fight_ally" + }, + "1014": { + "id": 1014, + "chapter": 14, + "mapbg": "tx_map_ally", + "needLv": 1, + "npcId": 21014, + "name": "14-34", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 3402 + }, + { + "a": "attr", + "t": "nexp", + "n": 1368.4 + } + ], + "dlz": [], + "passPrize": [ + 260090, + 271014, + 280001, + 280002, + 104, + 105, + 106, + 113 + ], + "base": 183.439999999996, + "round": [ + 60, + 180, + 300 + ], + "drop": [ + 211014, + 220075, + 230001, + 240001, + 250003 + ], + "pos": [ + -210, + 275 + ], + "fightmap": "bg_fight_ally" + }, + "1015": { + "id": 1015, + "chapter": 14, + "mapbg": "tx_map_ally", + "needLv": 1, + "npcId": 21015, + "name": "14-35", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 3407.1 + }, + { + "a": "attr", + "t": "nexp", + "n": 1369.6 + } + ], + "dlz": [], + "passPrize": [ + 260090, + 271015, + 280001, + 280002, + 104, + 105, + 106, + 113 + ], + "base": 183.579999999996, + "round": [ + 60, + 180, + 300 + ], + "drop": [ + 211015, + 220075, + 230001, + 240001, + 250003 + ], + "pos": [ + -185, + 303 + ], + "fightmap": "bg_fight_ally" + }, + "1016": { + "id": 1016, + "chapter": 14, + "mapbg": "tx_map_ally", + "needLv": 1, + "npcId": 21016, + "name": "14-36", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 3412.2 + }, + { + "a": "attr", + "t": "nexp", + "n": 1370.8 + } + ], + "dlz": [], + "passPrize": [ + 260090, + 271016, + 280001, + 280002, + 104, + 105, + 106, + 113 + ], + "base": 183.719999999996, + "round": [ + 60, + 180, + 300 + ], + "drop": [ + 211016, + 220075, + 230001, + 240001, + 250003 + ], + "pos": [ + -150, + 331 + ], + "fightmap": "bg_fight_ally" + }, + "1017": { + "id": 1017, + "chapter": 14, + "mapbg": "tx_map_ally", + "needLv": 1, + "npcId": 21017, + "name": "14-37", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 3417.3 + }, + { + "a": "attr", + "t": "nexp", + "n": 1371.9 + } + ], + "dlz": [], + "passPrize": [ + 260090, + 271017, + 280001, + 280002, + 104, + 105, + 106, + 113 + ], + "base": 183.859999999996, + "round": [ + 60, + 180, + 300 + ], + "drop": [ + 211017, + 220075, + 230001, + 240001, + 250003 + ], + "pos": [ + -116, + 355 + ], + "fightmap": "bg_fight_ally" + }, + "1018": { + "id": 1018, + "chapter": 14, + "mapbg": "tx_map_ally", + "needLv": 1, + "npcId": 21018, + "name": "14-38", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 3422.3 + }, + { + "a": "attr", + "t": "nexp", + "n": 1373.1 + } + ], + "dlz": [], + "passPrize": [ + 260090, + 271018, + 280001, + 280002, + 104, + 105, + 106, + 113 + ], + "base": 183.999999999996, + "round": [ + 60, + 180, + 300 + ], + "drop": [ + 211018, + 220075, + 230001, + 240001, + 250003 + ], + "pos": [ + -78, + 379 + ], + "fightmap": "bg_fight_ally" + }, + "1019": { + "id": 1019, + "chapter": 14, + "mapbg": "tx_map_ally", + "needLv": 1, + "npcId": 21019, + "name": "14-39", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 3427.4 + }, + { + "a": "attr", + "t": "nexp", + "n": 1374.2 + } + ], + "dlz": [], + "passPrize": [ + 260090, + 271019, + 280001, + 280002, + 104, + 105, + 106, + 113 + ], + "base": 184.139999999996, + "round": [ + 60, + 180, + 300 + ], + "drop": [ + 211019, + 220075, + 230001, + 240001, + 250003 + ], + "pos": [ + -42, + 400 + ], + "fightmap": "bg_fight_ally" + }, + "1020": { + "id": 1020, + "chapter": 14, + "mapbg": "tx_map_ally", + "needLv": 1, + "npcId": 21020, + "name": "14-40", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 3432.5 + }, + { + "a": "attr", + "t": "nexp", + "n": 1375.4 + } + ], + "dlz": [], + "passPrize": [ + 260090, + 271020, + 280001, + 280002, + 104, + 105, + 106, + 113 + ], + "base": 184.279999999996, + "round": [ + 60, + 180, + 300 + ], + "drop": [ + 211020, + 220075, + 230001, + 240001, + 250003 + ], + "pos": [ + -6, + 418 + ], + "fightmap": "bg_fight_ally" + }, + "1021": { + "id": 1021, + "chapter": 14, + "mapbg": "tx_map_ally", + "needLv": 1, + "npcId": 21021, + "name": "14-41", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 3437.6 + }, + { + "a": "attr", + "t": "nexp", + "n": 1376.5 + } + ], + "dlz": [], + "passPrize": [ + 260090, + 271021, + 280001, + 280002, + 104, + 105, + 106, + 113 + ], + "base": 184.419999999996, + "round": [ + 60, + 180, + 300 + ], + "drop": [ + 211021, + 220075, + 230001, + 240001, + 250003 + ], + "pos": [ + 127, + 72 + ], + "fightmap": "bg_fight_ally" + }, + "1022": { + "id": 1022, + "chapter": 14, + "mapbg": "tx_map_ally", + "needLv": 1, + "npcId": 21022, + "name": "14-42", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 3442.7 + }, + { + "a": "attr", + "t": "nexp", + "n": 1377.7 + } + ], + "dlz": [], + "passPrize": [ + 260090, + 271022, + 280001, + 280002, + 104, + 105, + 106, + 113 + ], + "base": 184.559999999996, + "round": [ + 60, + 180, + 300 + ], + "drop": [ + 211022, + 220075, + 230001, + 240001, + 250003 + ], + "pos": [ + 160, + 98 + ], + "fightmap": "bg_fight_ally" + }, + "1023": { + "id": 1023, + "chapter": 14, + "mapbg": "tx_map_ally", + "needLv": 1, + "npcId": 21023, + "name": "14-43", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 3447.7 + }, + { + "a": "attr", + "t": "nexp", + "n": 1378.9 + } + ], + "dlz": [], + "passPrize": [ + 260090, + 271023, + 280001, + 280002, + 104, + 105, + 106, + 113 + ], + "base": 184.699999999996, + "round": [ + 60, + 180, + 300 + ], + "drop": [ + 211023, + 220075, + 230001, + 240001, + 250003 + ], + "pos": [ + 167, + 135 + ], + "fightmap": "bg_fight_ally" + }, + "1024": { + "id": 1024, + "chapter": 14, + "mapbg": "tx_map_ally", + "needLv": 1, + "npcId": 21024, + "name": "14-44", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 3452.8 + }, + { + "a": "attr", + "t": "nexp", + "n": 1380 + } + ], + "dlz": [], + "passPrize": [ + 260090, + 271024, + 280001, + 280002, + 104, + 105, + 106, + 113 + ], + "base": 184.839999999996, + "round": [ + 60, + 180, + 300 + ], + "drop": [ + 211024, + 220075, + 230001, + 240001, + 250003 + ], + "pos": [ + 142, + 164 + ], + "fightmap": "bg_fight_ally" + }, + "1025": { + "id": 1025, + "chapter": 14, + "mapbg": "tx_map_ally", + "needLv": 1, + "npcId": 21025, + "name": "14-45", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 3457.9 + }, + { + "a": "attr", + "t": "nexp", + "n": 1381.2 + } + ], + "dlz": [], + "passPrize": [ + 260090, + 271025, + 280001, + 280002, + 104, + 105, + 106, + 113 + ], + "base": 184.979999999996, + "round": [ + 60, + 180, + 300 + ], + "drop": [ + 211025, + 220075, + 230001, + 240001, + 250003 + ], + "pos": [ + 110, + 188 + ], + "fightmap": "bg_fight_ally" + }, + "1026": { + "id": 1026, + "chapter": 14, + "mapbg": "tx_map_ally", + "needLv": 1, + "npcId": 21026, + "name": "14-46", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 3463 + }, + { + "a": "attr", + "t": "nexp", + "n": 1382.3 + } + ], + "dlz": [], + "passPrize": [ + 260090, + 271026, + 280001, + 280002, + 104, + 105, + 106, + 113 + ], + "base": 185.119999999996, + "round": [ + 60, + 180, + 300 + ], + "drop": [ + 211026, + 220075, + 230001, + 240001, + 250003 + ], + "pos": [ + 58, + 195 + ], + "fightmap": "bg_fight_ally" + }, + "1027": { + "id": 1027, + "chapter": 14, + "mapbg": "tx_map_ally", + "needLv": 1, + "npcId": 21027, + "name": "14-47", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 3468.1 + }, + { + "a": "attr", + "t": "nexp", + "n": 1383.5 + } + ], + "dlz": [], + "passPrize": [ + 260090, + 271027, + 280001, + 280002, + 104, + 105, + 106, + 113 + ], + "base": 185.259999999996, + "round": [ + 60, + 180, + 300 + ], + "drop": [ + 211027, + 220075, + 230001, + 240001, + 250003 + ], + "pos": [ + 6, + 187 + ], + "fightmap": "bg_fight_ally" + }, + "1028": { + "id": 1028, + "chapter": 14, + "mapbg": "tx_map_ally", + "needLv": 1, + "npcId": 21028, + "name": "14-48", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 3473.1 + }, + { + "a": "attr", + "t": "nexp", + "n": 1384.6 + } + ], + "dlz": [], + "passPrize": [ + 260090, + 271028, + 280001, + 280002, + 104, + 105, + 106, + 113 + ], + "base": 185.399999999996, + "round": [ + 60, + 180, + 300 + ], + "drop": [ + 211028, + 220075, + 230001, + 240001, + 250003 + ], + "pos": [ + -40, + 175 + ], + "fightmap": "bg_fight_ally" + }, + "1029": { + "id": 1029, + "chapter": 14, + "mapbg": "tx_map_ally", + "needLv": 1, + "npcId": 21029, + "name": "14-49", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 3478.2 + }, + { + "a": "attr", + "t": "nexp", + "n": 1385.8 + } + ], + "dlz": [], + "passPrize": [ + 260090, + 271029, + 280001, + 280002, + 104, + 105, + 106, + 113 + ], + "base": 185.539999999996, + "round": [ + 60, + 180, + 300 + ], + "drop": [ + 211029, + 220075, + 230001, + 240001, + 250003 + ], + "pos": [ + -92, + 173 + ], + "fightmap": "bg_fight_ally" + }, + "1030": { + "id": 1030, + "chapter": 14, + "mapbg": "tx_map_ally", + "needLv": 1, + "npcId": 21030, + "name": "14-50", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 3483.3 + }, + { + "a": "attr", + "t": "nexp", + "n": 1387 + } + ], + "dlz": [], + "passPrize": [ + 260090, + 271030, + 280001, + 280002, + 104, + 105, + 106, + 113 + ], + "base": 185.679999999996, + "round": [ + 60, + 180, + 300 + ], + "drop": [ + 211030, + 220075, + 230001, + 240001, + 250003 + ], + "pos": [ + -144, + 178 + ], + "fightmap": "bg_fight_ally" + }, + "1031": { + "id": 1031, + "chapter": 14, + "mapbg": "tx_map_ally", + "needLv": 1, + "npcId": 21031, + "name": "14-51", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 3488.4 + }, + { + "a": "attr", + "t": "nexp", + "n": 1388.1 + } + ], + "dlz": [], + "passPrize": [ + 260090, + 271031, + 280001, + 280002, + 104, + 105, + 106, + 113 + ], + "base": 185.819999999996, + "round": [ + 60, + 180, + 300 + ], + "drop": [ + 211031, + 220075, + 230001, + 240001, + 250003 + ], + "pos": [ + -186, + 190 + ], + "fightmap": "bg_fight_ally" + }, + "1032": { + "id": 1032, + "chapter": 14, + "mapbg": "tx_map_ally", + "needLv": 1, + "npcId": 21032, + "name": "14-52", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 3493.5 + }, + { + "a": "attr", + "t": "nexp", + "n": 1389.3 + } + ], + "dlz": [], + "passPrize": [ + 260090, + 271032, + 280001, + 280002, + 104, + 105, + 106, + 113 + ], + "base": 185.959999999996, + "round": [ + 60, + 180, + 300 + ], + "drop": [ + 211032, + 220075, + 230001, + 240001, + 250003 + ], + "pos": [ + -217, + 212 + ], + "fightmap": "bg_fight_ally" + }, + "1033": { + "id": 1033, + "chapter": 14, + "mapbg": "tx_map_ally", + "needLv": 1, + "npcId": 21033, + "name": "14-53", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 3498.5 + }, + { + "a": "attr", + "t": "nexp", + "n": 1390.4 + } + ], + "dlz": [], + "passPrize": [ + 260090, + 271033, + 280001, + 280002, + 104, + 105, + 106, + 113 + ], + "base": 186.099999999996, + "round": [ + 60, + 180, + 300 + ], + "drop": [ + 211033, + 220075, + 230001, + 240001, + 250003 + ], + "pos": [ + -222, + 245 + ], + "fightmap": "bg_fight_ally" + }, + "1034": { + "id": 1034, + "chapter": 14, + "mapbg": "tx_map_ally", + "needLv": 1, + "npcId": 21034, + "name": "14-54", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 3503.6 + }, + { + "a": "attr", + "t": "nexp", + "n": 1391.6 + } + ], + "dlz": [], + "passPrize": [ + 260090, + 271034, + 280001, + 280002, + 104, + 105, + 106, + 113 + ], + "base": 186.239999999996, + "round": [ + 60, + 180, + 300 + ], + "drop": [ + 211034, + 220075, + 230001, + 240001, + 250003 + ], + "pos": [ + -210, + 275 + ], + "fightmap": "bg_fight_ally" + }, + "1035": { + "id": 1035, + "chapter": 14, + "mapbg": "tx_map_ally", + "needLv": 1, + "npcId": 21035, + "name": "14-55", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 3508.7 + }, + { + "a": "attr", + "t": "nexp", + "n": 1392.7 + } + ], + "dlz": [], + "passPrize": [ + 260090, + 271035, + 280001, + 280002, + 104, + 105, + 106, + 113 + ], + "base": 186.379999999996, + "round": [ + 60, + 180, + 300 + ], + "drop": [ + 211035, + 220075, + 230001, + 240001, + 250003 + ], + "pos": [ + -185, + 303 + ], + "fightmap": "bg_fight_ally" + }, + "1036": { + "id": 1036, + "chapter": 14, + "mapbg": "tx_map_ally", + "needLv": 1, + "npcId": 21036, + "name": "14-56", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 3513.8 + }, + { + "a": "attr", + "t": "nexp", + "n": 1393.9 + } + ], + "dlz": [], + "passPrize": [ + 260090, + 271036, + 280001, + 280002, + 104, + 105, + 106, + 113 + ], + "base": 186.519999999996, + "round": [ + 60, + 180, + 300 + ], + "drop": [ + 211036, + 220075, + 230001, + 240001, + 250003 + ], + "pos": [ + -150, + 331 + ], + "fightmap": "bg_fight_ally" + }, + "1037": { + "id": 1037, + "chapter": 14, + "mapbg": "tx_map_ally", + "needLv": 1, + "npcId": 21037, + "name": "14-57", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 3518.9 + }, + { + "a": "attr", + "t": "nexp", + "n": 1395.1 + } + ], + "dlz": [], + "passPrize": [ + 260090, + 271037, + 280001, + 280002, + 104, + 105, + 106, + 113 + ], + "base": 186.659999999996, + "round": [ + 60, + 180, + 300 + ], + "drop": [ + 211037, + 220075, + 230001, + 240001, + 250003 + ], + "pos": [ + -116, + 355 + ], + "fightmap": "bg_fight_ally" + }, + "1038": { + "id": 1038, + "chapter": 14, + "mapbg": "tx_map_ally", + "needLv": 1, + "npcId": 21038, + "name": "14-58", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 3523.9 + }, + { + "a": "attr", + "t": "nexp", + "n": 1396.2 + } + ], + "dlz": [], + "passPrize": [ + 260090, + 271038, + 280001, + 280002, + 104, + 105, + 106, + 113 + ], + "base": 186.799999999996, + "round": [ + 60, + 180, + 300 + ], + "drop": [ + 211038, + 220075, + 230001, + 240001, + 250003 + ], + "pos": [ + -78, + 379 + ], + "fightmap": "bg_fight_ally" + }, + "1039": { + "id": 1039, + "chapter": 14, + "mapbg": "tx_map_ally", + "needLv": 1, + "npcId": 21039, + "name": "14-59", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 3529 + }, + { + "a": "attr", + "t": "nexp", + "n": 1397.4 + } + ], + "dlz": [], + "passPrize": [ + 260090, + 271039, + 280001, + 280002, + 104, + 105, + 106, + 113 + ], + "base": 186.939999999996, + "round": [ + 60, + 180, + 300 + ], + "drop": [ + 211039, + 220075, + 230001, + 240001, + 250003 + ], + "pos": [ + -42, + 400 + ], + "fightmap": "bg_fight_ally" + }, + "1040": { + "id": 1040, + "chapter": 14, + "mapbg": "tx_map_ally", + "needLv": 1, + "npcId": 21040, + "name": "14-60", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 3534.1 + }, + { + "a": "attr", + "t": "nexp", + "n": 1398.5 + } + ], + "dlz": [], + "passPrize": [ + 260090, + 271040, + 280001, + 280002, + 104, + 105, + 106, + 113 + ], + "base": 187.079999999996, + "round": [ + 60, + 180, + 300 + ], + "drop": [ + 211040, + 220075, + 230001, + 240001, + 250003 + ], + "pos": [ + -6, + 418 + ], + "fightmap": "bg_fight_ally" + }, + "1041": { + "id": 1041, + "chapter": 14, + "mapbg": "tx_map_ally", + "needLv": 1, + "npcId": 21041, + "name": "14-61", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 3539.2 + }, + { + "a": "attr", + "t": "nexp", + "n": 1399.7 + } + ], + "dlz": [], + "passPrize": [ + 260090, + 271041, + 280001, + 280002, + 104, + 105, + 106, + 113 + ], + "base": 187.219999999996, + "round": [ + 60, + 180, + 300 + ], + "drop": [ + 211041, + 220075, + 230001, + 240001, + 250003 + ], + "pos": [ + 127, + 72 + ], + "fightmap": "bg_fight_ally" + }, + "1042": { + "id": 1042, + "chapter": 14, + "mapbg": "tx_map_ally", + "needLv": 1, + "npcId": 21042, + "name": "14-62", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 3544.3 + }, + { + "a": "attr", + "t": "nexp", + "n": 1400.8 + } + ], + "dlz": [], + "passPrize": [ + 260090, + 271042, + 280001, + 280002, + 104, + 105, + 106, + 113 + ], + "base": 187.359999999996, + "round": [ + 60, + 180, + 300 + ], + "drop": [ + 211042, + 220075, + 230001, + 240001, + 250003 + ], + "pos": [ + 160, + 98 + ], + "fightmap": "bg_fight_ally" + }, + "1043": { + "id": 1043, + "chapter": 14, + "mapbg": "tx_map_ally", + "needLv": 1, + "npcId": 21043, + "name": "14-63", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 3549.3 + }, + { + "a": "attr", + "t": "nexp", + "n": 1402 + } + ], + "dlz": [], + "passPrize": [ + 260090, + 271043, + 280001, + 280002, + 104, + 105, + 106, + 113 + ], + "base": 187.499999999996, + "round": [ + 60, + 180, + 300 + ], + "drop": [ + 211043, + 220075, + 230001, + 240001, + 250003 + ], + "pos": [ + 167, + 135 + ], + "fightmap": "bg_fight_ally" + }, + "1044": { + "id": 1044, + "chapter": 14, + "mapbg": "tx_map_ally", + "needLv": 1, + "npcId": 21044, + "name": "14-64", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 3554.4 + }, + { + "a": "attr", + "t": "nexp", + "n": 1403.2 + } + ], + "dlz": [], + "passPrize": [ + 260090, + 271044, + 280001, + 280002, + 104, + 105, + 106, + 113 + ], + "base": 187.639999999996, + "round": [ + 60, + 180, + 300 + ], + "drop": [ + 211044, + 220075, + 230001, + 240001, + 250003 + ], + "pos": [ + 142, + 164 + ], + "fightmap": "bg_fight_ally" + }, + "1045": { + "id": 1045, + "chapter": 14, + "mapbg": "tx_map_ally", + "needLv": 1, + "npcId": 21045, + "name": "14-65", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 3559.5 + }, + { + "a": "attr", + "t": "nexp", + "n": 1404.3 + } + ], + "dlz": [], + "passPrize": [ + 260090, + 271045, + 280001, + 280002, + 104, + 105, + 106, + 113 + ], + "base": 187.779999999996, + "round": [ + 60, + 180, + 300 + ], + "drop": [ + 211045, + 220075, + 230001, + 240001, + 250003 + ], + "pos": [ + 110, + 188 + ], + "fightmap": "bg_fight_ally" + }, + "1046": { + "id": 1046, + "chapter": 14, + "mapbg": "tx_map_ally", + "needLv": 1, + "npcId": 21046, + "name": "14-66", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 3564.6 + }, + { + "a": "attr", + "t": "nexp", + "n": 1405.5 + } + ], + "dlz": [], + "passPrize": [ + 260090, + 271046, + 280001, + 280002, + 104, + 105, + 106, + 113 + ], + "base": 187.919999999996, + "round": [ + 60, + 180, + 300 + ], + "drop": [ + 211046, + 220075, + 230001, + 240001, + 250003 + ], + "pos": [ + 58, + 195 + ], + "fightmap": "bg_fight_ally" + }, + "1047": { + "id": 1047, + "chapter": 14, + "mapbg": "tx_map_ally", + "needLv": 1, + "npcId": 21047, + "name": "14-67", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 3569.7 + }, + { + "a": "attr", + "t": "nexp", + "n": 1406.6 + } + ], + "dlz": [], + "passPrize": [ + 260090, + 271047, + 280001, + 280002, + 104, + 105, + 106, + 113 + ], + "base": 188.059999999996, + "round": [ + 60, + 180, + 300 + ], + "drop": [ + 211047, + 220075, + 230001, + 240001, + 250003 + ], + "pos": [ + 6, + 187 + ], + "fightmap": "bg_fight_ally" + }, + "1048": { + "id": 1048, + "chapter": 14, + "mapbg": "tx_map_ally", + "needLv": 1, + "npcId": 21048, + "name": "14-68", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 3574.7 + }, + { + "a": "attr", + "t": "nexp", + "n": 1407.8 + } + ], + "dlz": [], + "passPrize": [ + 260090, + 271048, + 280001, + 280002, + 104, + 105, + 106, + 113 + ], + "base": 188.199999999996, + "round": [ + 60, + 180, + 300 + ], + "drop": [ + 211048, + 220075, + 230001, + 240001, + 250003 + ], + "pos": [ + -40, + 175 + ], + "fightmap": "bg_fight_ally" + }, + "1049": { + "id": 1049, + "chapter": 14, + "mapbg": "tx_map_ally", + "needLv": 1, + "npcId": 21049, + "name": "14-69", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 3579.8 + }, + { + "a": "attr", + "t": "nexp", + "n": 1408.9 + } + ], + "dlz": [], + "passPrize": [ + 260090, + 271049, + 280001, + 280002, + 104, + 105, + 106, + 113 + ], + "base": 188.339999999996, + "round": [ + 60, + 180, + 300 + ], + "drop": [ + 211049, + 220075, + 230001, + 240001, + 250003 + ], + "pos": [ + -92, + 173 + ], + "fightmap": "bg_fight_ally" + }, + "1050": { + "id": 1050, + "chapter": 14, + "mapbg": "tx_map_ally", + "needLv": 1, + "npcId": 21050, + "name": "14-70", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 3584.9 + }, + { + "a": "attr", + "t": "nexp", + "n": 1410.1 + } + ], + "dlz": [], + "passPrize": [ + 260090, + 271050, + 280001, + 280002, + 104, + 105, + 106, + 113 + ], + "base": 188.479999999996, + "round": [ + 60, + 180, + 300 + ], + "drop": [ + 211050, + 220075, + 230001, + 240001, + 250003 + ], + "pos": [ + -144, + 178 + ], + "fightmap": "bg_fight_ally" + }, + "1051": { + "id": 1051, + "chapter": 14, + "mapbg": "tx_map_ally", + "needLv": 1, + "npcId": 21051, + "name": "14-71", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 3590 + }, + { + "a": "attr", + "t": "nexp", + "n": 1411.3 + } + ], + "dlz": [], + "passPrize": [ + 260090, + 271051, + 280001, + 280002, + 104, + 105, + 106, + 113 + ], + "base": 188.619999999996, + "round": [ + 60, + 180, + 300 + ], + "drop": [ + 211051, + 220075, + 230001, + 240001, + 250003 + ], + "pos": [ + -186, + 190 + ], + "fightmap": "bg_fight_ally" + }, + "1052": { + "id": 1052, + "chapter": 14, + "mapbg": "tx_map_ally", + "needLv": 1, + "npcId": 21052, + "name": "14-72", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 3595.1 + }, + { + "a": "attr", + "t": "nexp", + "n": 1412.4 + } + ], + "dlz": [], + "passPrize": [ + 260090, + 271052, + 280001, + 280002, + 104, + 105, + 106, + 113 + ], + "base": 188.759999999996, + "round": [ + 60, + 180, + 300 + ], + "drop": [ + 211052, + 220075, + 230001, + 240001, + 250003 + ], + "pos": [ + -217, + 212 + ], + "fightmap": "bg_fight_ally" + }, + "1053": { + "id": 1053, + "chapter": 14, + "mapbg": "tx_map_ally", + "needLv": 1, + "npcId": 21053, + "name": "14-73", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 3600.1 + }, + { + "a": "attr", + "t": "nexp", + "n": 1413.6 + } + ], + "dlz": [], + "passPrize": [ + 260090, + 271053, + 280001, + 280002, + 104, + 105, + 106, + 113 + ], + "base": 188.899999999996, + "round": [ + 60, + 180, + 300 + ], + "drop": [ + 211053, + 220075, + 230001, + 240001, + 250003 + ], + "pos": [ + -222, + 245 + ], + "fightmap": "bg_fight_ally" + }, + "1054": { + "id": 1054, + "chapter": 14, + "mapbg": "tx_map_ally", + "needLv": 1, + "npcId": 21054, + "name": "14-74", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 3605.2 + }, + { + "a": "attr", + "t": "nexp", + "n": 1414.7 + } + ], + "dlz": [], + "passPrize": [ + 260090, + 271054, + 280001, + 280002, + 104, + 105, + 106, + 113 + ], + "base": 189.039999999996, + "round": [ + 60, + 180, + 300 + ], + "drop": [ + 211054, + 220075, + 230001, + 240001, + 250003 + ], + "pos": [ + -210, + 275 + ], + "fightmap": "bg_fight_ally" + }, + "1055": { + "id": 1055, + "chapter": 14, + "mapbg": "tx_map_ally", + "needLv": 1, + "npcId": 21055, + "name": "14-75", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 3610.3 + }, + { + "a": "attr", + "t": "nexp", + "n": 1415.9 + } + ], + "dlz": [], + "passPrize": [ + 260090, + 271055, + 280001, + 280002, + 104, + 105, + 106, + 113 + ], + "base": 189.179999999996, + "round": [ + 60, + 180, + 300 + ], + "drop": [ + 211055, + 220075, + 230001, + 240001, + 250003 + ], + "pos": [ + -185, + 303 + ], + "fightmap": "bg_fight_ally" + }, + "1056": { + "id": 1056, + "chapter": 14, + "mapbg": "tx_map_ally", + "needLv": 1, + "npcId": 21056, + "name": "14-76", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 3615.4 + }, + { + "a": "attr", + "t": "nexp", + "n": 1417 + } + ], + "dlz": [], + "passPrize": [ + 260090, + 271056, + 280001, + 280002, + 104, + 105, + 106, + 113 + ], + "base": 189.319999999996, + "round": [ + 60, + 180, + 300 + ], + "drop": [ + 211056, + 220075, + 230001, + 240001, + 250003 + ], + "pos": [ + -150, + 331 + ], + "fightmap": "bg_fight_ally" + }, + "1057": { + "id": 1057, + "chapter": 14, + "mapbg": "tx_map_ally", + "needLv": 1, + "npcId": 21057, + "name": "14-77", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 3620.5 + }, + { + "a": "attr", + "t": "nexp", + "n": 1418.2 + } + ], + "dlz": [], + "passPrize": [ + 260090, + 271057, + 280001, + 280002, + 104, + 105, + 106, + 113 + ], + "base": 189.459999999996, + "round": [ + 60, + 180, + 300 + ], + "drop": [ + 211057, + 220075, + 230001, + 240001, + 250003 + ], + "pos": [ + -116, + 355 + ], + "fightmap": "bg_fight_ally" + }, + "1058": { + "id": 1058, + "chapter": 14, + "mapbg": "tx_map_ally", + "needLv": 1, + "npcId": 21058, + "name": "14-78", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 3625.5 + }, + { + "a": "attr", + "t": "nexp", + "n": 1419.4 + } + ], + "dlz": [], + "passPrize": [ + 260090, + 271058, + 280001, + 280002, + 104, + 105, + 106, + 113 + ], + "base": 189.599999999996, + "round": [ + 60, + 180, + 300 + ], + "drop": [ + 211058, + 220075, + 230001, + 240001, + 250003 + ], + "pos": [ + -78, + 379 + ], + "fightmap": "bg_fight_ally" + }, + "1059": { + "id": 1059, + "chapter": 14, + "mapbg": "tx_map_ally", + "needLv": 1, + "npcId": 21059, + "name": "14-79", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 3630.6 + }, + { + "a": "attr", + "t": "nexp", + "n": 1420.5 + } + ], + "dlz": [], + "passPrize": [ + 260090, + 271059, + 280001, + 280002, + 104, + 105, + 106, + 113 + ], + "base": 189.739999999996, + "round": [ + 60, + 180, + 300 + ], + "drop": [ + 211059, + 220075, + 230001, + 240001, + 250003 + ], + "pos": [ + -42, + 400 + ], + "fightmap": "bg_fight_ally" + }, + "1060": { + "id": 1060, + "chapter": 14, + "mapbg": "tx_map_ally", + "needLv": 1, + "npcId": 21060, + "name": "14-80", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 3635.7 + }, + { + "a": "attr", + "t": "nexp", + "n": 1421.7 + } + ], + "dlz": [], + "passPrize": [ + 260090, + 271060, + 280001, + 280002, + 104, + 105, + 106, + 113 + ], + "base": 189.879999999996, + "round": [ + 60, + 180, + 300 + ], + "drop": [ + 211060, + 220075, + 230001, + 240001, + 250003 + ], + "pos": [ + -6, + 418 + ], + "fightmap": "bg_fight_ally" + }, + "1061": { + "id": 1061, + "chapter": 14, + "mapbg": "tx_map_ally", + "needLv": 1, + "npcId": 21061, + "name": "14-81", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 3640.8 + }, + { + "a": "attr", + "t": "nexp", + "n": 1422.8 + } + ], + "dlz": [], + "passPrize": [ + 260090, + 271061, + 280001, + 280002, + 104, + 105, + 106, + 113 + ], + "base": 190.019999999996, + "round": [ + 60, + 180, + 300 + ], + "drop": [ + 211061, + 220075, + 230001, + 240001, + 250003 + ], + "pos": [ + 127, + 72 + ], + "fightmap": "bg_fight_ally" + }, + "1062": { + "id": 1062, + "chapter": 14, + "mapbg": "tx_map_ally", + "needLv": 1, + "npcId": 21062, + "name": "14-82", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 3645.9 + }, + { + "a": "attr", + "t": "nexp", + "n": 1424 + } + ], + "dlz": [], + "passPrize": [ + 260090, + 271062, + 280001, + 280002, + 104, + 105, + 106, + 113 + ], + "base": 190.159999999996, + "round": [ + 60, + 180, + 300 + ], + "drop": [ + 211062, + 220075, + 230001, + 240001, + 250003 + ], + "pos": [ + 160, + 98 + ], + "fightmap": "bg_fight_ally" + }, + "1063": { + "id": 1063, + "chapter": 14, + "mapbg": "tx_map_ally", + "needLv": 1, + "npcId": 21063, + "name": "14-83", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 3650.9 + }, + { + "a": "attr", + "t": "nexp", + "n": 1425.1 + } + ], + "dlz": [], + "passPrize": [ + 260090, + 271063, + 280001, + 280002, + 104, + 105, + 106, + 113 + ], + "base": 190.299999999996, + "round": [ + 60, + 180, + 300 + ], + "drop": [ + 211063, + 220075, + 230001, + 240001, + 250003 + ], + "pos": [ + 167, + 135 + ], + "fightmap": "bg_fight_ally" + }, + "1064": { + "id": 1064, + "chapter": 14, + "mapbg": "tx_map_ally", + "needLv": 1, + "npcId": 21064, + "name": "14-84", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 3656 + }, + { + "a": "attr", + "t": "nexp", + "n": 1426.3 + } + ], + "dlz": [], + "passPrize": [ + 260090, + 271064, + 280001, + 280002, + 104, + 105, + 106, + 113 + ], + "base": 190.439999999996, + "round": [ + 60, + 180, + 300 + ], + "drop": [ + 211064, + 220075, + 230001, + 240001, + 250003 + ], + "pos": [ + 142, + 164 + ], + "fightmap": "bg_fight_ally" + }, + "1065": { + "id": 1065, + "chapter": 14, + "mapbg": "tx_map_ally", + "needLv": 1, + "npcId": 21065, + "name": "14-85", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 3661.1 + }, + { + "a": "attr", + "t": "nexp", + "n": 1427.5 + } + ], + "dlz": [], + "passPrize": [ + 260090, + 271065, + 280001, + 280002, + 104, + 105, + 106, + 113 + ], + "base": 190.579999999996, + "round": [ + 60, + 180, + 300 + ], + "drop": [ + 211065, + 220075, + 230001, + 240001, + 250003 + ], + "pos": [ + 110, + 188 + ], + "fightmap": "bg_fight_ally" + }, + "1066": { + "id": 1066, + "chapter": 14, + "mapbg": "tx_map_ally", + "needLv": 1, + "npcId": 21066, + "name": "14-86", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 3666.2 + }, + { + "a": "attr", + "t": "nexp", + "n": 1428.6 + } + ], + "dlz": [], + "passPrize": [ + 260090, + 271066, + 280001, + 280002, + 104, + 105, + 106, + 113 + ], + "base": 190.719999999996, + "round": [ + 60, + 180, + 300 + ], + "drop": [ + 211066, + 220075, + 230001, + 240001, + 250003 + ], + "pos": [ + 58, + 195 + ], + "fightmap": "bg_fight_ally" + }, + "1067": { + "id": 1067, + "chapter": 14, + "mapbg": "tx_map_ally", + "needLv": 1, + "npcId": 21067, + "name": "14-87", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 3671.3 + }, + { + "a": "attr", + "t": "nexp", + "n": 1429.8 + } + ], + "dlz": [], + "passPrize": [ + 260090, + 271067, + 280001, + 280002, + 104, + 105, + 106, + 113 + ], + "base": 190.859999999996, + "round": [ + 60, + 180, + 300 + ], + "drop": [ + 211067, + 220075, + 230001, + 240001, + 250003 + ], + "pos": [ + 6, + 187 + ], + "fightmap": "bg_fight_ally" + }, + "1068": { + "id": 1068, + "chapter": 14, + "mapbg": "tx_map_ally", + "needLv": 1, + "npcId": 21068, + "name": "14-88", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 3676.3 + }, + { + "a": "attr", + "t": "nexp", + "n": 1430.9 + } + ], + "dlz": [], + "passPrize": [ + 260090, + 271068, + 280001, + 280002, + 104, + 105, + 106, + 113 + ], + "base": 190.999999999996, + "round": [ + 60, + 180, + 300 + ], + "drop": [ + 211068, + 220075, + 230001, + 240001, + 250003 + ], + "pos": [ + -40, + 175 + ], + "fightmap": "bg_fight_ally" + }, + "1069": { + "id": 1069, + "chapter": 14, + "mapbg": "tx_map_ally", + "needLv": 1, + "npcId": 21069, + "name": "14-89", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 3681.4 + }, + { + "a": "attr", + "t": "nexp", + "n": 1432.1 + } + ], + "dlz": [], + "passPrize": [ + 260090, + 271069, + 280001, + 280002, + 104, + 105, + 106, + 113 + ], + "base": 191.139999999996, + "round": [ + 60, + 180, + 300 + ], + "drop": [ + 211069, + 220075, + 230001, + 240001, + 250003 + ], + "pos": [ + -92, + 173 + ], + "fightmap": "bg_fight_ally" + }, + "1070": { + "id": 1070, + "chapter": 14, + "mapbg": "tx_map_ally", + "needLv": 1, + "npcId": 21070, + "name": "14-90", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 3686.5 + }, + { + "a": "attr", + "t": "nexp", + "n": 1433.2 + } + ], + "dlz": [], + "passPrize": [ + 260090, + 271070, + 280001, + 280002, + 104, + 105, + 106, + 113 + ], + "base": 191.279999999996, + "round": [ + 60, + 180, + 300 + ], + "drop": [ + 211070, + 220075, + 230001, + 240001, + 250003 + ], + "pos": [ + -144, + 178 + ], + "fightmap": "bg_fight_ally" + }, + "1071": { + "id": 1071, + "chapter": 14, + "mapbg": "tx_map_ally", + "needLv": 1, + "npcId": 21071, + "name": "14-91", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 3691.6 + }, + { + "a": "attr", + "t": "nexp", + "n": 1434.4 + } + ], + "dlz": [], + "passPrize": [ + 260090, + 271071, + 280001, + 280002, + 104, + 105, + 106, + 113 + ], + "base": 191.419999999996, + "round": [ + 60, + 180, + 300 + ], + "drop": [ + 211071, + 220075, + 230001, + 240001, + 250003 + ], + "pos": [ + -186, + 190 + ], + "fightmap": "bg_fight_ally" + }, + "1072": { + "id": 1072, + "chapter": 14, + "mapbg": "tx_map_ally", + "needLv": 1, + "npcId": 21072, + "name": "14-92", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 3696.7 + }, + { + "a": "attr", + "t": "nexp", + "n": 1435.6 + } + ], + "dlz": [], + "passPrize": [ + 260090, + 271072, + 280001, + 280002, + 104, + 105, + 106, + 113 + ], + "base": 191.559999999996, + "round": [ + 60, + 180, + 300 + ], + "drop": [ + 211072, + 220075, + 230001, + 240001, + 250003 + ], + "pos": [ + -217, + 212 + ], + "fightmap": "bg_fight_ally" + }, + "1073": { + "id": 1073, + "chapter": 14, + "mapbg": "tx_map_ally", + "needLv": 1, + "npcId": 21073, + "name": "14-93", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 3701.7 + }, + { + "a": "attr", + "t": "nexp", + "n": 1436.7 + } + ], + "dlz": [], + "passPrize": [ + 260090, + 271073, + 280001, + 280002, + 104, + 105, + 106, + 113 + ], + "base": 191.699999999996, + "round": [ + 60, + 180, + 300 + ], + "drop": [ + 211073, + 220075, + 230001, + 240001, + 250003 + ], + "pos": [ + -222, + 245 + ], + "fightmap": "bg_fight_ally" + }, + "1074": { + "id": 1074, + "chapter": 14, + "mapbg": "tx_map_ally", + "needLv": 1, + "npcId": 21074, + "name": "14-94", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 3706.8 + }, + { + "a": "attr", + "t": "nexp", + "n": 1437.9 + } + ], + "dlz": [], + "passPrize": [ + 260090, + 271074, + 280001, + 280002, + 104, + 105, + 106, + 113 + ], + "base": 191.839999999996, + "round": [ + 60, + 180, + 300 + ], + "drop": [ + 211074, + 220075, + 230001, + 240001, + 250003 + ], + "pos": [ + -210, + 275 + ], + "fightmap": "bg_fight_ally" + }, + "1075": { + "id": 1075, + "chapter": 14, + "mapbg": "tx_map_ally", + "needLv": 1, + "npcId": 21075, + "name": "14-95", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 3711.9 + }, + { + "a": "attr", + "t": "nexp", + "n": 1439 + } + ], + "dlz": [], + "passPrize": [ + 260090, + 271075, + 280001, + 280002, + 104, + 105, + 106, + 113 + ], + "base": 191.979999999996, + "round": [ + 60, + 180, + 300 + ], + "drop": [ + 211075, + 220075, + 230001, + 240001, + 250003 + ], + "pos": [ + -185, + 303 + ], + "fightmap": "bg_fight_ally" + }, + "1076": { + "id": 1076, + "chapter": 14, + "mapbg": "tx_map_ally", + "needLv": 1, + "npcId": 21076, + "name": "14-96", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 3717 + }, + { + "a": "attr", + "t": "nexp", + "n": 1440.2 + } + ], + "dlz": [], + "passPrize": [ + 260090, + 271076, + 280001, + 280002, + 104, + 105, + 106, + 113 + ], + "base": 192.119999999996, + "round": [ + 60, + 180, + 300 + ], + "drop": [ + 211076, + 220075, + 230001, + 240001, + 250003 + ], + "pos": [ + -150, + 331 + ], + "fightmap": "bg_fight_ally" + }, + "1077": { + "id": 1077, + "chapter": 14, + "mapbg": "tx_map_ally", + "needLv": 1, + "npcId": 21077, + "name": "14-97", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 3722.1 + }, + { + "a": "attr", + "t": "nexp", + "n": 1441.3 + } + ], + "dlz": [], + "passPrize": [ + 260090, + 271077, + 280001, + 280002, + 104, + 105, + 106, + 113 + ], + "base": 192.259999999996, + "round": [ + 60, + 180, + 300 + ], + "drop": [ + 211077, + 220075, + 230001, + 240001, + 250003 + ], + "pos": [ + -116, + 355 + ], + "fightmap": "bg_fight_ally" + }, + "1078": { + "id": 1078, + "chapter": 14, + "mapbg": "tx_map_ally", + "needLv": 1, + "npcId": 21078, + "name": "14-98", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 3727.1 + }, + { + "a": "attr", + "t": "nexp", + "n": 1442.5 + } + ], + "dlz": [], + "passPrize": [ + 260090, + 271078, + 280001, + 280002, + 104, + 105, + 106, + 113 + ], + "base": 192.399999999996, + "round": [ + 60, + 180, + 300 + ], + "drop": [ + 211078, + 220075, + 230001, + 240001, + 250003 + ], + "pos": [ + -78, + 379 + ], + "fightmap": "bg_fight_ally" + }, + "1079": { + "id": 1079, + "chapter": 14, + "mapbg": "tx_map_ally", + "needLv": 1, + "npcId": 21079, + "name": "14-99", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 3732.2 + }, + { + "a": "attr", + "t": "nexp", + "n": 1443.7 + } + ], + "dlz": [], + "passPrize": [ + 260090, + 271079, + 280001, + 280002, + 104, + 105, + 106, + 113 + ], + "base": 192.539999999996, + "round": [ + 60, + 180, + 300 + ], + "drop": [ + 211079, + 220075, + 230001, + 240001, + 250003 + ], + "pos": [ + -42, + 400 + ], + "fightmap": "bg_fight_ally" + }, + "1080": { + "id": 1080, + "chapter": 14, + "mapbg": "tx_map_ally", + "needLv": 1, + "npcId": 21080, + "name": "14-100", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 3737.3 + }, + { + "a": "attr", + "t": "nexp", + "n": 1444.8 + } + ], + "dlz": [], + "passPrize": [ + 260090, + 271080, + 280001, + 280002, + 104, + 105, + 106, + 113 + ], + "base": 192.679999999996, + "round": [ + 60, + 180, + 300 + ], + "drop": [ + 211080, + 220075, + 230001, + 240001, + 250003 + ], + "pos": [ + -6, + 418 + ], + "fightmap": "bg_fight_ally" } } \ No newline at end of file diff --git a/src/json/tanxian_tgjl.json b/src/json/tanxian_tgjl.json index bf7d31d..864f210 100644 --- a/src/json/tanxian_tgjl.json +++ b/src/json/tanxian_tgjl.json @@ -537,8 +537,8 @@ "mapId": 420, "prize": [ { - "a": "item", - "t": "4", + "a": "attr", + "t": "rmbmoney", "n": 100 } ], @@ -550,8 +550,8 @@ "mapId": 430, "prize": [ { - "a": "attr", - "t": "rmbmoney", + "a": "item", + "t": "4", "n": 5 } ], @@ -589,8 +589,8 @@ "mapId": 460, "prize": [ { - "a": "item", - "t": "4", + "a": "attr", + "t": "rmbmoney", "n": 100 } ], @@ -615,8 +615,8 @@ "mapId": 480, "prize": [ { - "a": "attr", - "t": "rmbmoney", + "a": "item", + "t": "4", "n": 5 } ], @@ -641,8 +641,8 @@ "mapId": 500, "prize": [ { - "a": "item", - "t": "4", + "a": "attr", + "t": "rmbmoney", "n": 100 } ], @@ -680,8 +680,8 @@ "mapId": 530, "prize": [ { - "a": "attr", - "t": "rmbmoney", + "a": "item", + "t": "4", "n": 5 } ], @@ -693,8 +693,8 @@ "mapId": 540, "prize": [ { - "a": "item", - "t": "4", + "a": "attr", + "t": "rmbmoney", "n": 100 } ], @@ -797,8 +797,8 @@ "mapId": 620, "prize": [ { - "a": "item", - "t": "4", + "a": "attr", + "t": "rmbmoney", "n": 100 } ], @@ -810,8 +810,8 @@ "mapId": 630, "prize": [ { - "a": "attr", - "t": "rmbmoney", + "a": "item", + "t": "4", "n": 5 } ], @@ -849,8 +849,8 @@ "mapId": 660, "prize": [ { - "a": "item", - "t": "4", + "a": "attr", + "t": "rmbmoney", "n": 100 } ], @@ -875,8 +875,8 @@ "mapId": 680, "prize": [ { - "a": "attr", - "t": "rmbmoney", + "a": "item", + "t": "4", "n": 5 } ], @@ -901,8 +901,8 @@ "mapId": 700, "prize": [ { - "a": "item", - "t": "4", + "a": "attr", + "t": "rmbmoney", "n": 100 } ], @@ -940,8 +940,8 @@ "mapId": 730, "prize": [ { - "a": "attr", - "t": "rmbmoney", + "a": "item", + "t": "4", "n": 5 } ], @@ -953,8 +953,8 @@ "mapId": 740, "prize": [ { - "a": "item", - "t": "4", + "a": "attr", + "t": "rmbmoney", "n": 100 } ], @@ -1057,8 +1057,8 @@ "mapId": 820, "prize": [ { - "a": "item", - "t": "4", + "a": "attr", + "t": "rmbmoney", "n": 100 } ], @@ -1070,8 +1070,8 @@ "mapId": 830, "prize": [ { - "a": "attr", - "t": "rmbmoney", + "a": "item", + "t": "4", "n": 5 } ], @@ -1109,8 +1109,8 @@ "mapId": 860, "prize": [ { - "a": "item", - "t": "4", + "a": "attr", + "t": "rmbmoney", "n": 100 } ], @@ -1135,8 +1135,8 @@ "mapId": 880, "prize": [ { - "a": "attr", - "t": "rmbmoney", + "a": "item", + "t": "4", "n": 5 } ], @@ -1161,8 +1161,8 @@ "mapId": 900, "prize": [ { - "a": "item", - "t": "4", + "a": "attr", + "t": "rmbmoney", "n": 100 } ], @@ -1200,8 +1200,8 @@ "mapId": 930, "prize": [ { - "a": "attr", - "t": "rmbmoney", + "a": "item", + "t": "4", "n": 5 } ], @@ -1213,8 +1213,8 @@ "mapId": 940, "prize": [ { - "a": "item", - "t": "4", + "a": "attr", + "t": "rmbmoney", "n": 100 } ], @@ -1298,5 +1298,109 @@ ], "chapter": 14, "des": "intr_guanqia_des_1" + }, + "101": { + "id": 101, + "mapId": 1010, + "prize": [ + { + "a": "attr", + "t": "rmbmoney", + "n": 100 + } + ], + "chapter": 14, + "des": "intr_guanqia_des_1" + }, + "102": { + "id": 102, + "mapId": 1020, + "prize": [ + { + "a": "attr", + "t": "rmbmoney", + "n": 100 + } + ], + "chapter": 14, + "des": "intr_guanqia_des_1" + }, + "103": { + "id": 103, + "mapId": 1030, + "prize": [ + { + "a": "item", + "t": "4", + "n": 5 + } + ], + "chapter": 14, + "des": "intr_guanqia_des_1" + }, + "104": { + "id": 104, + "mapId": 1040, + "prize": [ + { + "a": "attr", + "t": "rmbmoney", + "n": 100 + } + ], + "chapter": 14, + "des": "intr_guanqia_des_1" + }, + "105": { + "id": 105, + "mapId": 1050, + "prize": [ + { + "a": "attr", + "t": "rmbmoney", + "n": 100 + } + ], + "chapter": 14, + "des": "intr_guanqia_des_1" + }, + "106": { + "id": 106, + "mapId": 1060, + "prize": [ + { + "a": "attr", + "t": "rmbmoney", + "n": 100 + } + ], + "chapter": 14, + "des": "intr_guanqia_des_1" + }, + "107": { + "id": 107, + "mapId": 1070, + "prize": [ + { + "a": "attr", + "t": "rmbmoney", + "n": 100 + } + ], + "chapter": 14, + "des": "intr_guanqia_des_1" + }, + "108": { + "id": 108, + "mapId": 1080, + "prize": [ + { + "a": "item", + "t": "4", + "n": 5 + } + ], + "chapter": 14, + "des": "intr_guanqia_des_1" } } \ No newline at end of file diff --git a/src/json/task.json b/src/json/task.json index a9fb41f..7527302 100644 --- a/src/json/task.json +++ b/src/json/task.json @@ -34001,12 +34001,2476 @@ "name": "intr_task_name_3038", "intr": "intr_task_intr_3038", "pretask": 3069, - "followtask": 0, + "followtask": 3071, "cond": [], "tiaozhuan": 8, "order": 1071, "special": 0, "show": "" + }, + "3071": { + "id": 3071, + "type": 2, + "stype": 1, + "prize": [ + { + "a": "attr", + "t": "nexp", + "n": 5000 + }, + { + "a": "item", + "t": "2", + "n": 50 + }, + { + "a": "attr", + "t": "jinbi", + "n": 20000 + } + ], + "pval": 1005, + "name": "intr_task_name_3051", + "intr": "intr_task_intr_3034", + "pretask": 3070, + "followtask": 3072, + "cond": [], + "tiaozhuan": 3, + "order": 1072, + "special": 0, + "show": "" + }, + "3072": { + "id": 3072, + "type": 2, + "stype": 145, + "prize": [ + { + "a": "item", + "t": "33", + "n": 1 + }, + { + "a": "item", + "t": "34", + "n": 1 + }, + { + "a": "attr", + "t": "jinbi", + "n": 20000 + } + ], + "pval": 1, + "name": "intr_task_name_3035", + "intr": "intr_task_intr_3035", + "pretask": 3071, + "followtask": 3073, + "cond": [], + "tiaozhuan": 3, + "order": 1073, + "special": 0, + "show": "" + }, + "3073": { + "id": 3073, + "type": 2, + "stype": 134, + "prize": [ + { + "a": "item", + "t": "633", + "n": 10 + }, + { + "a": "attr", + "t": "jinbi", + "n": 20000 + } + ], + "pval": 1, + "name": "intr_task_name_3036", + "intr": "intr_task_intr_3036", + "pretask": 3072, + "followtask": 3074, + "cond": [ + 33 + ], + "tiaozhuan": 74, + "order": 1074, + "special": 0, + "show": "" + }, + "3074": { + "id": 3074, + "type": 2, + "stype": 134, + "prize": [ + { + "a": "item", + "t": "1", + "n": 5000 + }, + { + "a": "item", + "t": "3", + "n": 10 + }, + { + "a": "attr", + "t": "jinbi", + "n": 20000 + } + ], + "pval": 10, + "name": "intr_task_name_3037", + "intr": "intr_task_intr_3037", + "pretask": 3073, + "followtask": 3075, + "cond": [ + 633 + ], + "tiaozhuan": 74, + "order": 1075, + "special": 0, + "show": "" + }, + "3075": { + "id": 3075, + "type": 2, + "stype": 133, + "prize": [ + { + "a": "attr", + "t": "nexp", + "n": 5000 + }, + { + "a": "attr", + "t": "jinbi", + "n": 20000 + } + ], + "pval": 10, + "name": "intr_task_name_3038", + "intr": "intr_task_intr_3038", + "pretask": 3074, + "followtask": 3076, + "cond": [], + "tiaozhuan": 8, + "order": 1076, + "special": 0, + "show": "" + }, + "3076": { + "id": 3076, + "type": 2, + "stype": 1, + "prize": [ + { + "a": "attr", + "t": "nexp", + "n": 5000 + }, + { + "a": "item", + "t": "2", + "n": 50 + }, + { + "a": "attr", + "t": "jinbi", + "n": 20000 + } + ], + "pval": 1010, + "name": "intr_task_name_3052", + "intr": "intr_task_intr_3034", + "pretask": 3075, + "followtask": 3077, + "cond": [], + "tiaozhuan": 3, + "order": 1077, + "special": 0, + "show": "" + }, + "3077": { + "id": 3077, + "type": 2, + "stype": 145, + "prize": [ + { + "a": "item", + "t": "33", + "n": 1 + }, + { + "a": "item", + "t": "34", + "n": 1 + }, + { + "a": "attr", + "t": "jinbi", + "n": 20000 + } + ], + "pval": 1, + "name": "intr_task_name_3035", + "intr": "intr_task_intr_3035", + "pretask": 3076, + "followtask": 3078, + "cond": [], + "tiaozhuan": 3, + "order": 1078, + "special": 0, + "show": "" + }, + "3078": { + "id": 3078, + "type": 2, + "stype": 134, + "prize": [ + { + "a": "item", + "t": "633", + "n": 10 + }, + { + "a": "attr", + "t": "jinbi", + "n": 20000 + } + ], + "pval": 1, + "name": "intr_task_name_3036", + "intr": "intr_task_intr_3036", + "pretask": 3077, + "followtask": 3079, + "cond": [ + 33 + ], + "tiaozhuan": 74, + "order": 1079, + "special": 0, + "show": "" + }, + "3079": { + "id": 3079, + "type": 2, + "stype": 134, + "prize": [ + { + "a": "item", + "t": "1", + "n": 5000 + }, + { + "a": "item", + "t": "3", + "n": 10 + }, + { + "a": "attr", + "t": "jinbi", + "n": 20000 + } + ], + "pval": 10, + "name": "intr_task_name_3037", + "intr": "intr_task_intr_3037", + "pretask": 3078, + "followtask": 3080, + "cond": [ + 633 + ], + "tiaozhuan": 74, + "order": 1080, + "special": 0, + "show": "" + }, + "3080": { + "id": 3080, + "type": 2, + "stype": 133, + "prize": [ + { + "a": "attr", + "t": "nexp", + "n": 5000 + }, + { + "a": "attr", + "t": "jinbi", + "n": 20000 + } + ], + "pval": 10, + "name": "intr_task_name_3038", + "intr": "intr_task_intr_3038", + "pretask": 3079, + "followtask": 3081, + "cond": [], + "tiaozhuan": 8, + "order": 1081, + "special": 0, + "show": "" + }, + "3081": { + "id": 3081, + "type": 2, + "stype": 1, + "prize": [ + { + "a": "attr", + "t": "nexp", + "n": 5000 + }, + { + "a": "item", + "t": "2", + "n": 50 + }, + { + "a": "attr", + "t": "jinbi", + "n": 20000 + } + ], + "pval": 1015, + "name": "intr_task_name_3053", + "intr": "intr_task_intr_3034", + "pretask": 3080, + "followtask": 3082, + "cond": [], + "tiaozhuan": 3, + "order": 1082, + "special": 0, + "show": "" + }, + "3082": { + "id": 3082, + "type": 2, + "stype": 145, + "prize": [ + { + "a": "item", + "t": "33", + "n": 1 + }, + { + "a": "item", + "t": "34", + "n": 1 + }, + { + "a": "attr", + "t": "jinbi", + "n": 20000 + } + ], + "pval": 1, + "name": "intr_task_name_3035", + "intr": "intr_task_intr_3035", + "pretask": 3081, + "followtask": 3083, + "cond": [], + "tiaozhuan": 3, + "order": 1083, + "special": 0, + "show": "" + }, + "3083": { + "id": 3083, + "type": 2, + "stype": 134, + "prize": [ + { + "a": "item", + "t": "633", + "n": 10 + }, + { + "a": "attr", + "t": "jinbi", + "n": 20000 + } + ], + "pval": 1, + "name": "intr_task_name_3036", + "intr": "intr_task_intr_3036", + "pretask": 3082, + "followtask": 3084, + "cond": [ + 33 + ], + "tiaozhuan": 74, + "order": 1084, + "special": 0, + "show": "" + }, + "3084": { + "id": 3084, + "type": 2, + "stype": 134, + "prize": [ + { + "a": "item", + "t": "1", + "n": 5000 + }, + { + "a": "item", + "t": "3", + "n": 10 + }, + { + "a": "attr", + "t": "jinbi", + "n": 20000 + } + ], + "pval": 10, + "name": "intr_task_name_3037", + "intr": "intr_task_intr_3037", + "pretask": 3083, + "followtask": 3085, + "cond": [ + 633 + ], + "tiaozhuan": 74, + "order": 1085, + "special": 0, + "show": "" + }, + "3085": { + "id": 3085, + "type": 2, + "stype": 133, + "prize": [ + { + "a": "attr", + "t": "nexp", + "n": 5000 + }, + { + "a": "attr", + "t": "jinbi", + "n": 20000 + } + ], + "pval": 10, + "name": "intr_task_name_3038", + "intr": "intr_task_intr_3038", + "pretask": 3084, + "followtask": 3086, + "cond": [], + "tiaozhuan": 8, + "order": 1086, + "special": 0, + "show": "" + }, + "3086": { + "id": 3086, + "type": 2, + "stype": 1, + "prize": [ + { + "a": "attr", + "t": "nexp", + "n": 5000 + }, + { + "a": "item", + "t": "2", + "n": 50 + }, + { + "a": "attr", + "t": "jinbi", + "n": 20000 + } + ], + "pval": 1020, + "name": "intr_task_name_3054", + "intr": "intr_task_intr_3034", + "pretask": 3085, + "followtask": 3087, + "cond": [], + "tiaozhuan": 3, + "order": 1087, + "special": 0, + "show": "" + }, + "3087": { + "id": 3087, + "type": 2, + "stype": 145, + "prize": [ + { + "a": "item", + "t": "33", + "n": 1 + }, + { + "a": "item", + "t": "34", + "n": 1 + }, + { + "a": "attr", + "t": "jinbi", + "n": 20000 + } + ], + "pval": 1, + "name": "intr_task_name_3035", + "intr": "intr_task_intr_3035", + "pretask": 3086, + "followtask": 3088, + "cond": [], + "tiaozhuan": 3, + "order": 1088, + "special": 0, + "show": "" + }, + "3088": { + "id": 3088, + "type": 2, + "stype": 134, + "prize": [ + { + "a": "item", + "t": "633", + "n": 10 + }, + { + "a": "attr", + "t": "jinbi", + "n": 20000 + } + ], + "pval": 1, + "name": "intr_task_name_3036", + "intr": "intr_task_intr_3036", + "pretask": 3087, + "followtask": 3089, + "cond": [ + 33 + ], + "tiaozhuan": 74, + "order": 1089, + "special": 0, + "show": "" + }, + "3089": { + "id": 3089, + "type": 2, + "stype": 134, + "prize": [ + { + "a": "item", + "t": "1", + "n": 5000 + }, + { + "a": "item", + "t": "3", + "n": 10 + }, + { + "a": "attr", + "t": "jinbi", + "n": 20000 + } + ], + "pval": 10, + "name": "intr_task_name_3037", + "intr": "intr_task_intr_3037", + "pretask": 3088, + "followtask": 3090, + "cond": [ + 633 + ], + "tiaozhuan": 74, + "order": 1090, + "special": 0, + "show": "" + }, + "3090": { + "id": 3090, + "type": 2, + "stype": 133, + "prize": [ + { + "a": "attr", + "t": "nexp", + "n": 5000 + }, + { + "a": "attr", + "t": "jinbi", + "n": 20000 + } + ], + "pval": 10, + "name": "intr_task_name_3038", + "intr": "intr_task_intr_3038", + "pretask": 3089, + "followtask": 3091, + "cond": [], + "tiaozhuan": 8, + "order": 1091, + "special": 0, + "show": "" + }, + "3091": { + "id": 3091, + "type": 2, + "stype": 1, + "prize": [ + { + "a": "attr", + "t": "nexp", + "n": 5000 + }, + { + "a": "item", + "t": "2", + "n": 50 + }, + { + "a": "attr", + "t": "jinbi", + "n": 20000 + } + ], + "pval": 1025, + "name": "intr_task_name_3055", + "intr": "intr_task_intr_3034", + "pretask": 3090, + "followtask": 3092, + "cond": [], + "tiaozhuan": 3, + "order": 1092, + "special": 0, + "show": "" + }, + "3092": { + "id": 3092, + "type": 2, + "stype": 145, + "prize": [ + { + "a": "item", + "t": "33", + "n": 1 + }, + { + "a": "item", + "t": "34", + "n": 1 + }, + { + "a": "attr", + "t": "jinbi", + "n": 20000 + } + ], + "pval": 1, + "name": "intr_task_name_3035", + "intr": "intr_task_intr_3035", + "pretask": 3091, + "followtask": 3093, + "cond": [], + "tiaozhuan": 3, + "order": 1093, + "special": 0, + "show": "" + }, + "3093": { + "id": 3093, + "type": 2, + "stype": 134, + "prize": [ + { + "a": "item", + "t": "633", + "n": 10 + }, + { + "a": "attr", + "t": "jinbi", + "n": 20000 + } + ], + "pval": 1, + "name": "intr_task_name_3036", + "intr": "intr_task_intr_3036", + "pretask": 3092, + "followtask": 3094, + "cond": [ + 33 + ], + "tiaozhuan": 74, + "order": 1094, + "special": 0, + "show": "" + }, + "3094": { + "id": 3094, + "type": 2, + "stype": 134, + "prize": [ + { + "a": "item", + "t": "1", + "n": 5000 + }, + { + "a": "item", + "t": "3", + "n": 10 + }, + { + "a": "attr", + "t": "jinbi", + "n": 20000 + } + ], + "pval": 10, + "name": "intr_task_name_3037", + "intr": "intr_task_intr_3037", + "pretask": 3093, + "followtask": 3095, + "cond": [ + 633 + ], + "tiaozhuan": 74, + "order": 1095, + "special": 0, + "show": "" + }, + "3095": { + "id": 3095, + "type": 2, + "stype": 133, + "prize": [ + { + "a": "attr", + "t": "nexp", + "n": 5000 + }, + { + "a": "attr", + "t": "jinbi", + "n": 20000 + } + ], + "pval": 10, + "name": "intr_task_name_3038", + "intr": "intr_task_intr_3038", + "pretask": 3094, + "followtask": 3096, + "cond": [], + "tiaozhuan": 8, + "order": 1096, + "special": 0, + "show": "" + }, + "3096": { + "id": 3096, + "type": 2, + "stype": 1, + "prize": [ + { + "a": "attr", + "t": "nexp", + "n": 5000 + }, + { + "a": "item", + "t": "2", + "n": 50 + }, + { + "a": "attr", + "t": "jinbi", + "n": 20000 + } + ], + "pval": 1030, + "name": "intr_task_name_3056", + "intr": "intr_task_intr_3034", + "pretask": 3095, + "followtask": 3097, + "cond": [], + "tiaozhuan": 3, + "order": 1097, + "special": 0, + "show": "" + }, + "3097": { + "id": 3097, + "type": 2, + "stype": 145, + "prize": [ + { + "a": "item", + "t": "33", + "n": 1 + }, + { + "a": "item", + "t": "34", + "n": 1 + }, + { + "a": "attr", + "t": "jinbi", + "n": 20000 + } + ], + "pval": 1, + "name": "intr_task_name_3035", + "intr": "intr_task_intr_3035", + "pretask": 3096, + "followtask": 3098, + "cond": [], + "tiaozhuan": 3, + "order": 1098, + "special": 0, + "show": "" + }, + "3098": { + "id": 3098, + "type": 2, + "stype": 134, + "prize": [ + { + "a": "item", + "t": "633", + "n": 10 + }, + { + "a": "attr", + "t": "jinbi", + "n": 20000 + } + ], + "pval": 1, + "name": "intr_task_name_3036", + "intr": "intr_task_intr_3036", + "pretask": 3097, + "followtask": 3099, + "cond": [ + 33 + ], + "tiaozhuan": 74, + "order": 1099, + "special": 0, + "show": "" + }, + "3099": { + "id": 3099, + "type": 2, + "stype": 134, + "prize": [ + { + "a": "item", + "t": "1", + "n": 5000 + }, + { + "a": "item", + "t": "3", + "n": 10 + }, + { + "a": "attr", + "t": "jinbi", + "n": 20000 + } + ], + "pval": 10, + "name": "intr_task_name_3037", + "intr": "intr_task_intr_3037", + "pretask": 3098, + "followtask": 3100, + "cond": [ + 633 + ], + "tiaozhuan": 74, + "order": 1100, + "special": 0, + "show": "" + }, + "3100": { + "id": 3100, + "type": 2, + "stype": 133, + "prize": [ + { + "a": "attr", + "t": "nexp", + "n": 5000 + }, + { + "a": "attr", + "t": "jinbi", + "n": 20000 + } + ], + "pval": 10, + "name": "intr_task_name_3038", + "intr": "intr_task_intr_3038", + "pretask": 3099, + "followtask": 3101, + "cond": [], + "tiaozhuan": 8, + "order": 1101, + "special": 0, + "show": "" + }, + "3101": { + "id": 3101, + "type": 2, + "stype": 1, + "prize": [ + { + "a": "attr", + "t": "nexp", + "n": 5000 + }, + { + "a": "item", + "t": "2", + "n": 50 + }, + { + "a": "attr", + "t": "jinbi", + "n": 20000 + } + ], + "pval": 1035, + "name": "intr_task_name_3057", + "intr": "intr_task_intr_3034", + "pretask": 3100, + "followtask": 3102, + "cond": [], + "tiaozhuan": 3, + "order": 1102, + "special": 0, + "show": "" + }, + "3102": { + "id": 3102, + "type": 2, + "stype": 145, + "prize": [ + { + "a": "item", + "t": "33", + "n": 1 + }, + { + "a": "item", + "t": "34", + "n": 1 + }, + { + "a": "attr", + "t": "jinbi", + "n": 20000 + } + ], + "pval": 1, + "name": "intr_task_name_3035", + "intr": "intr_task_intr_3035", + "pretask": 3101, + "followtask": 3103, + "cond": [], + "tiaozhuan": 3, + "order": 1103, + "special": 0, + "show": "" + }, + "3103": { + "id": 3103, + "type": 2, + "stype": 134, + "prize": [ + { + "a": "item", + "t": "633", + "n": 10 + }, + { + "a": "attr", + "t": "jinbi", + "n": 20000 + } + ], + "pval": 1, + "name": "intr_task_name_3036", + "intr": "intr_task_intr_3036", + "pretask": 3102, + "followtask": 3104, + "cond": [ + 33 + ], + "tiaozhuan": 74, + "order": 1104, + "special": 0, + "show": "" + }, + "3104": { + "id": 3104, + "type": 2, + "stype": 134, + "prize": [ + { + "a": "item", + "t": "1", + "n": 5000 + }, + { + "a": "item", + "t": "3", + "n": 10 + }, + { + "a": "attr", + "t": "jinbi", + "n": 20000 + } + ], + "pval": 10, + "name": "intr_task_name_3037", + "intr": "intr_task_intr_3037", + "pretask": 3103, + "followtask": 3105, + "cond": [ + 633 + ], + "tiaozhuan": 74, + "order": 1105, + "special": 0, + "show": "" + }, + "3105": { + "id": 3105, + "type": 2, + "stype": 133, + "prize": [ + { + "a": "attr", + "t": "nexp", + "n": 5000 + }, + { + "a": "attr", + "t": "jinbi", + "n": 20000 + } + ], + "pval": 10, + "name": "intr_task_name_3038", + "intr": "intr_task_intr_3038", + "pretask": 3104, + "followtask": 3106, + "cond": [], + "tiaozhuan": 8, + "order": 1106, + "special": 0, + "show": "" + }, + "3106": { + "id": 3106, + "type": 2, + "stype": 1, + "prize": [ + { + "a": "attr", + "t": "nexp", + "n": 5000 + }, + { + "a": "item", + "t": "2", + "n": 50 + }, + { + "a": "attr", + "t": "jinbi", + "n": 20000 + } + ], + "pval": 1040, + "name": "intr_task_name_3058", + "intr": "intr_task_intr_3034", + "pretask": 3105, + "followtask": 3107, + "cond": [], + "tiaozhuan": 3, + "order": 1107, + "special": 0, + "show": "" + }, + "3107": { + "id": 3107, + "type": 2, + "stype": 145, + "prize": [ + { + "a": "item", + "t": "33", + "n": 1 + }, + { + "a": "item", + "t": "34", + "n": 1 + }, + { + "a": "attr", + "t": "jinbi", + "n": 20000 + } + ], + "pval": 1, + "name": "intr_task_name_3035", + "intr": "intr_task_intr_3035", + "pretask": 3106, + "followtask": 3108, + "cond": [], + "tiaozhuan": 3, + "order": 1108, + "special": 0, + "show": "" + }, + "3108": { + "id": 3108, + "type": 2, + "stype": 134, + "prize": [ + { + "a": "item", + "t": "633", + "n": 10 + }, + { + "a": "attr", + "t": "jinbi", + "n": 20000 + } + ], + "pval": 1, + "name": "intr_task_name_3036", + "intr": "intr_task_intr_3036", + "pretask": 3107, + "followtask": 3109, + "cond": [ + 33 + ], + "tiaozhuan": 74, + "order": 1109, + "special": 0, + "show": "" + }, + "3109": { + "id": 3109, + "type": 2, + "stype": 134, + "prize": [ + { + "a": "item", + "t": "1", + "n": 5000 + }, + { + "a": "item", + "t": "3", + "n": 10 + }, + { + "a": "attr", + "t": "jinbi", + "n": 20000 + } + ], + "pval": 10, + "name": "intr_task_name_3037", + "intr": "intr_task_intr_3037", + "pretask": 3108, + "followtask": 3110, + "cond": [ + 633 + ], + "tiaozhuan": 74, + "order": 1110, + "special": 0, + "show": "" + }, + "3110": { + "id": 3110, + "type": 2, + "stype": 133, + "prize": [ + { + "a": "attr", + "t": "nexp", + "n": 5000 + }, + { + "a": "attr", + "t": "jinbi", + "n": 20000 + } + ], + "pval": 10, + "name": "intr_task_name_3038", + "intr": "intr_task_intr_3038", + "pretask": 3109, + "followtask": 3111, + "cond": [], + "tiaozhuan": 8, + "order": 1111, + "special": 0, + "show": "" + }, + "3111": { + "id": 3111, + "type": 2, + "stype": 1, + "prize": [ + { + "a": "attr", + "t": "nexp", + "n": 5000 + }, + { + "a": "item", + "t": "2", + "n": 50 + }, + { + "a": "attr", + "t": "jinbi", + "n": 20000 + } + ], + "pval": 1045, + "name": "intr_task_name_3059", + "intr": "intr_task_intr_3034", + "pretask": 3110, + "followtask": 3112, + "cond": [], + "tiaozhuan": 3, + "order": 1112, + "special": 0, + "show": "" + }, + "3112": { + "id": 3112, + "type": 2, + "stype": 145, + "prize": [ + { + "a": "item", + "t": "33", + "n": 1 + }, + { + "a": "item", + "t": "34", + "n": 1 + }, + { + "a": "attr", + "t": "jinbi", + "n": 20000 + } + ], + "pval": 1, + "name": "intr_task_name_3035", + "intr": "intr_task_intr_3035", + "pretask": 3111, + "followtask": 3113, + "cond": [], + "tiaozhuan": 3, + "order": 1113, + "special": 0, + "show": "" + }, + "3113": { + "id": 3113, + "type": 2, + "stype": 134, + "prize": [ + { + "a": "item", + "t": "633", + "n": 10 + }, + { + "a": "attr", + "t": "jinbi", + "n": 20000 + } + ], + "pval": 1, + "name": "intr_task_name_3036", + "intr": "intr_task_intr_3036", + "pretask": 3112, + "followtask": 3114, + "cond": [ + 33 + ], + "tiaozhuan": 74, + "order": 1114, + "special": 0, + "show": "" + }, + "3114": { + "id": 3114, + "type": 2, + "stype": 134, + "prize": [ + { + "a": "item", + "t": "1", + "n": 5000 + }, + { + "a": "item", + "t": "3", + "n": 10 + }, + { + "a": "attr", + "t": "jinbi", + "n": 20000 + } + ], + "pval": 10, + "name": "intr_task_name_3037", + "intr": "intr_task_intr_3037", + "pretask": 3113, + "followtask": 3115, + "cond": [ + 633 + ], + "tiaozhuan": 74, + "order": 1115, + "special": 0, + "show": "" + }, + "3115": { + "id": 3115, + "type": 2, + "stype": 133, + "prize": [ + { + "a": "attr", + "t": "nexp", + "n": 5000 + }, + { + "a": "attr", + "t": "jinbi", + "n": 20000 + } + ], + "pval": 10, + "name": "intr_task_name_3038", + "intr": "intr_task_intr_3038", + "pretask": 3114, + "followtask": 3116, + "cond": [], + "tiaozhuan": 8, + "order": 1116, + "special": 0, + "show": "" + }, + "3116": { + "id": 3116, + "type": 2, + "stype": 1, + "prize": [ + { + "a": "attr", + "t": "nexp", + "n": 5000 + }, + { + "a": "item", + "t": "2", + "n": 50 + }, + { + "a": "attr", + "t": "jinbi", + "n": 20000 + } + ], + "pval": 1050, + "name": "intr_task_name_3060", + "intr": "intr_task_intr_3034", + "pretask": 3115, + "followtask": 3117, + "cond": [], + "tiaozhuan": 3, + "order": 1117, + "special": 0, + "show": "" + }, + "3117": { + "id": 3117, + "type": 2, + "stype": 145, + "prize": [ + { + "a": "item", + "t": "33", + "n": 1 + }, + { + "a": "item", + "t": "34", + "n": 1 + }, + { + "a": "attr", + "t": "jinbi", + "n": 20000 + } + ], + "pval": 1, + "name": "intr_task_name_3035", + "intr": "intr_task_intr_3035", + "pretask": 3116, + "followtask": 3118, + "cond": [], + "tiaozhuan": 3, + "order": 1118, + "special": 0, + "show": "" + }, + "3118": { + "id": 3118, + "type": 2, + "stype": 134, + "prize": [ + { + "a": "item", + "t": "633", + "n": 10 + }, + { + "a": "attr", + "t": "jinbi", + "n": 20000 + } + ], + "pval": 1, + "name": "intr_task_name_3036", + "intr": "intr_task_intr_3036", + "pretask": 3117, + "followtask": 3119, + "cond": [ + 33 + ], + "tiaozhuan": 74, + "order": 1119, + "special": 0, + "show": "" + }, + "3119": { + "id": 3119, + "type": 2, + "stype": 134, + "prize": [ + { + "a": "item", + "t": "1", + "n": 5000 + }, + { + "a": "item", + "t": "3", + "n": 10 + }, + { + "a": "attr", + "t": "jinbi", + "n": 20000 + } + ], + "pval": 10, + "name": "intr_task_name_3037", + "intr": "intr_task_intr_3037", + "pretask": 3118, + "followtask": 3120, + "cond": [ + 633 + ], + "tiaozhuan": 74, + "order": 1120, + "special": 0, + "show": "" + }, + "3120": { + "id": 3120, + "type": 2, + "stype": 133, + "prize": [ + { + "a": "attr", + "t": "nexp", + "n": 5000 + }, + { + "a": "attr", + "t": "jinbi", + "n": 20000 + } + ], + "pval": 10, + "name": "intr_task_name_3038", + "intr": "intr_task_intr_3038", + "pretask": 3119, + "followtask": 3121, + "cond": [], + "tiaozhuan": 8, + "order": 1121, + "special": 0, + "show": "" + }, + "3121": { + "id": 3121, + "type": 2, + "stype": 1, + "prize": [ + { + "a": "attr", + "t": "nexp", + "n": 5000 + }, + { + "a": "item", + "t": "2", + "n": 50 + }, + { + "a": "attr", + "t": "jinbi", + "n": 20000 + } + ], + "pval": 1055, + "name": "intr_task_name_3061", + "intr": "intr_task_intr_3034", + "pretask": 3120, + "followtask": 3122, + "cond": [], + "tiaozhuan": 3, + "order": 1122, + "special": 0, + "show": "" + }, + "3122": { + "id": 3122, + "type": 2, + "stype": 145, + "prize": [ + { + "a": "item", + "t": "33", + "n": 1 + }, + { + "a": "item", + "t": "34", + "n": 1 + }, + { + "a": "attr", + "t": "jinbi", + "n": 20000 + } + ], + "pval": 1, + "name": "intr_task_name_3035", + "intr": "intr_task_intr_3035", + "pretask": 3121, + "followtask": 3123, + "cond": [], + "tiaozhuan": 3, + "order": 1123, + "special": 0, + "show": "" + }, + "3123": { + "id": 3123, + "type": 2, + "stype": 134, + "prize": [ + { + "a": "item", + "t": "633", + "n": 10 + }, + { + "a": "attr", + "t": "jinbi", + "n": 20000 + } + ], + "pval": 1, + "name": "intr_task_name_3036", + "intr": "intr_task_intr_3036", + "pretask": 3122, + "followtask": 3124, + "cond": [ + 33 + ], + "tiaozhuan": 74, + "order": 1124, + "special": 0, + "show": "" + }, + "3124": { + "id": 3124, + "type": 2, + "stype": 134, + "prize": [ + { + "a": "item", + "t": "1", + "n": 5000 + }, + { + "a": "item", + "t": "3", + "n": 10 + }, + { + "a": "attr", + "t": "jinbi", + "n": 20000 + } + ], + "pval": 10, + "name": "intr_task_name_3037", + "intr": "intr_task_intr_3037", + "pretask": 3123, + "followtask": 3125, + "cond": [ + 633 + ], + "tiaozhuan": 74, + "order": 1125, + "special": 0, + "show": "" + }, + "3125": { + "id": 3125, + "type": 2, + "stype": 133, + "prize": [ + { + "a": "attr", + "t": "nexp", + "n": 5000 + }, + { + "a": "attr", + "t": "jinbi", + "n": 20000 + } + ], + "pval": 10, + "name": "intr_task_name_3038", + "intr": "intr_task_intr_3038", + "pretask": 3124, + "followtask": 3126, + "cond": [], + "tiaozhuan": 8, + "order": 1126, + "special": 0, + "show": "" + }, + "3126": { + "id": 3126, + "type": 2, + "stype": 1, + "prize": [ + { + "a": "attr", + "t": "nexp", + "n": 5000 + }, + { + "a": "item", + "t": "2", + "n": 50 + }, + { + "a": "attr", + "t": "jinbi", + "n": 20000 + } + ], + "pval": 1060, + "name": "intr_task_name_3062", + "intr": "intr_task_intr_3034", + "pretask": 3125, + "followtask": 3127, + "cond": [], + "tiaozhuan": 3, + "order": 1127, + "special": 0, + "show": "" + }, + "3127": { + "id": 3127, + "type": 2, + "stype": 145, + "prize": [ + { + "a": "item", + "t": "33", + "n": 1 + }, + { + "a": "item", + "t": "34", + "n": 1 + }, + { + "a": "attr", + "t": "jinbi", + "n": 20000 + } + ], + "pval": 1, + "name": "intr_task_name_3035", + "intr": "intr_task_intr_3035", + "pretask": 3126, + "followtask": 3128, + "cond": [], + "tiaozhuan": 3, + "order": 1128, + "special": 0, + "show": "" + }, + "3128": { + "id": 3128, + "type": 2, + "stype": 134, + "prize": [ + { + "a": "item", + "t": "633", + "n": 10 + }, + { + "a": "attr", + "t": "jinbi", + "n": 20000 + } + ], + "pval": 1, + "name": "intr_task_name_3036", + "intr": "intr_task_intr_3036", + "pretask": 3127, + "followtask": 3129, + "cond": [ + 33 + ], + "tiaozhuan": 74, + "order": 1129, + "special": 0, + "show": "" + }, + "3129": { + "id": 3129, + "type": 2, + "stype": 134, + "prize": [ + { + "a": "item", + "t": "1", + "n": 5000 + }, + { + "a": "item", + "t": "3", + "n": 10 + }, + { + "a": "attr", + "t": "jinbi", + "n": 20000 + } + ], + "pval": 10, + "name": "intr_task_name_3037", + "intr": "intr_task_intr_3037", + "pretask": 3128, + "followtask": 3130, + "cond": [ + 633 + ], + "tiaozhuan": 74, + "order": 1130, + "special": 0, + "show": "" + }, + "3130": { + "id": 3130, + "type": 2, + "stype": 133, + "prize": [ + { + "a": "attr", + "t": "nexp", + "n": 5000 + }, + { + "a": "attr", + "t": "jinbi", + "n": 20000 + } + ], + "pval": 10, + "name": "intr_task_name_3038", + "intr": "intr_task_intr_3038", + "pretask": 3129, + "followtask": 3131, + "cond": [], + "tiaozhuan": 8, + "order": 1131, + "special": 0, + "show": "" + }, + "3131": { + "id": 3131, + "type": 2, + "stype": 1, + "prize": [ + { + "a": "attr", + "t": "nexp", + "n": 5000 + }, + { + "a": "item", + "t": "2", + "n": 50 + }, + { + "a": "attr", + "t": "jinbi", + "n": 20000 + } + ], + "pval": 1065, + "name": "intr_task_name_3063", + "intr": "intr_task_intr_3034", + "pretask": 3130, + "followtask": 3132, + "cond": [], + "tiaozhuan": 3, + "order": 1132, + "special": 0, + "show": "" + }, + "3132": { + "id": 3132, + "type": 2, + "stype": 145, + "prize": [ + { + "a": "item", + "t": "33", + "n": 1 + }, + { + "a": "item", + "t": "34", + "n": 1 + }, + { + "a": "attr", + "t": "jinbi", + "n": 20000 + } + ], + "pval": 1, + "name": "intr_task_name_3035", + "intr": "intr_task_intr_3035", + "pretask": 3131, + "followtask": 3133, + "cond": [], + "tiaozhuan": 3, + "order": 1133, + "special": 0, + "show": "" + }, + "3133": { + "id": 3133, + "type": 2, + "stype": 134, + "prize": [ + { + "a": "item", + "t": "633", + "n": 10 + }, + { + "a": "attr", + "t": "jinbi", + "n": 20000 + } + ], + "pval": 1, + "name": "intr_task_name_3036", + "intr": "intr_task_intr_3036", + "pretask": 3132, + "followtask": 3134, + "cond": [ + 33 + ], + "tiaozhuan": 74, + "order": 1134, + "special": 0, + "show": "" + }, + "3134": { + "id": 3134, + "type": 2, + "stype": 134, + "prize": [ + { + "a": "item", + "t": "1", + "n": 5000 + }, + { + "a": "item", + "t": "3", + "n": 10 + }, + { + "a": "attr", + "t": "jinbi", + "n": 20000 + } + ], + "pval": 10, + "name": "intr_task_name_3037", + "intr": "intr_task_intr_3037", + "pretask": 3133, + "followtask": 3135, + "cond": [ + 633 + ], + "tiaozhuan": 74, + "order": 1135, + "special": 0, + "show": "" + }, + "3135": { + "id": 3135, + "type": 2, + "stype": 133, + "prize": [ + { + "a": "attr", + "t": "nexp", + "n": 5000 + }, + { + "a": "attr", + "t": "jinbi", + "n": 20000 + } + ], + "pval": 10, + "name": "intr_task_name_3038", + "intr": "intr_task_intr_3038", + "pretask": 3134, + "followtask": 3136, + "cond": [], + "tiaozhuan": 8, + "order": 1136, + "special": 0, + "show": "" + }, + "3136": { + "id": 3136, + "type": 2, + "stype": 1, + "prize": [ + { + "a": "attr", + "t": "nexp", + "n": 5000 + }, + { + "a": "item", + "t": "2", + "n": 50 + }, + { + "a": "attr", + "t": "jinbi", + "n": 20000 + } + ], + "pval": 1070, + "name": "intr_task_name_3064", + "intr": "intr_task_intr_3034", + "pretask": 3135, + "followtask": 3137, + "cond": [], + "tiaozhuan": 3, + "order": 1137, + "special": 0, + "show": "" + }, + "3137": { + "id": 3137, + "type": 2, + "stype": 145, + "prize": [ + { + "a": "item", + "t": "33", + "n": 1 + }, + { + "a": "item", + "t": "34", + "n": 1 + }, + { + "a": "attr", + "t": "jinbi", + "n": 20000 + } + ], + "pval": 1, + "name": "intr_task_name_3035", + "intr": "intr_task_intr_3035", + "pretask": 3136, + "followtask": 3138, + "cond": [], + "tiaozhuan": 3, + "order": 1138, + "special": 0, + "show": "" + }, + "3138": { + "id": 3138, + "type": 2, + "stype": 134, + "prize": [ + { + "a": "item", + "t": "633", + "n": 10 + }, + { + "a": "attr", + "t": "jinbi", + "n": 20000 + } + ], + "pval": 1, + "name": "intr_task_name_3036", + "intr": "intr_task_intr_3036", + "pretask": 3137, + "followtask": 3139, + "cond": [ + 33 + ], + "tiaozhuan": 74, + "order": 1139, + "special": 0, + "show": "" + }, + "3139": { + "id": 3139, + "type": 2, + "stype": 134, + "prize": [ + { + "a": "item", + "t": "1", + "n": 5000 + }, + { + "a": "item", + "t": "3", + "n": 10 + }, + { + "a": "attr", + "t": "jinbi", + "n": 20000 + } + ], + "pval": 10, + "name": "intr_task_name_3037", + "intr": "intr_task_intr_3037", + "pretask": 3138, + "followtask": 3140, + "cond": [ + 633 + ], + "tiaozhuan": 74, + "order": 1140, + "special": 0, + "show": "" + }, + "3140": { + "id": 3140, + "type": 2, + "stype": 133, + "prize": [ + { + "a": "attr", + "t": "nexp", + "n": 5000 + }, + { + "a": "attr", + "t": "jinbi", + "n": 20000 + } + ], + "pval": 10, + "name": "intr_task_name_3038", + "intr": "intr_task_intr_3038", + "pretask": 3139, + "followtask": 3141, + "cond": [], + "tiaozhuan": 8, + "order": 1141, + "special": 0, + "show": "" + }, + "3141": { + "id": 3141, + "type": 2, + "stype": 1, + "prize": [ + { + "a": "attr", + "t": "nexp", + "n": 5000 + }, + { + "a": "item", + "t": "2", + "n": 50 + }, + { + "a": "attr", + "t": "jinbi", + "n": 20000 + } + ], + "pval": 1075, + "name": "intr_task_name_3065", + "intr": "intr_task_intr_3034", + "pretask": 3135, + "followtask": 3142, + "cond": [], + "tiaozhuan": 3, + "order": 1142, + "special": 0, + "show": "" + }, + "3142": { + "id": 3142, + "type": 2, + "stype": 145, + "prize": [ + { + "a": "item", + "t": "33", + "n": 1 + }, + { + "a": "item", + "t": "34", + "n": 1 + }, + { + "a": "attr", + "t": "jinbi", + "n": 20000 + } + ], + "pval": 1, + "name": "intr_task_name_3035", + "intr": "intr_task_intr_3035", + "pretask": 3136, + "followtask": 3143, + "cond": [], + "tiaozhuan": 3, + "order": 1143, + "special": 0, + "show": "" + }, + "3143": { + "id": 3143, + "type": 2, + "stype": 134, + "prize": [ + { + "a": "item", + "t": "633", + "n": 10 + }, + { + "a": "attr", + "t": "jinbi", + "n": 20000 + } + ], + "pval": 1, + "name": "intr_task_name_3036", + "intr": "intr_task_intr_3036", + "pretask": 3137, + "followtask": 3144, + "cond": [ + 33 + ], + "tiaozhuan": 74, + "order": 1144, + "special": 0, + "show": "" + }, + "3144": { + "id": 3144, + "type": 2, + "stype": 134, + "prize": [ + { + "a": "item", + "t": "1", + "n": 5000 + }, + { + "a": "item", + "t": "3", + "n": 10 + }, + { + "a": "attr", + "t": "jinbi", + "n": 20000 + } + ], + "pval": 10, + "name": "intr_task_name_3037", + "intr": "intr_task_intr_3037", + "pretask": 3138, + "followtask": 3145, + "cond": [ + 633 + ], + "tiaozhuan": 74, + "order": 1145, + "special": 0, + "show": "" + }, + "3145": { + "id": 3145, + "type": 2, + "stype": 133, + "prize": [ + { + "a": "attr", + "t": "nexp", + "n": 5000 + }, + { + "a": "attr", + "t": "jinbi", + "n": 20000 + } + ], + "pval": 10, + "name": "intr_task_name_3038", + "intr": "intr_task_intr_3038", + "pretask": 3139, + "followtask": 3146, + "cond": [], + "tiaozhuan": 8, + "order": 1146, + "special": 0, + "show": "" + }, + "3146": { + "id": 3146, + "type": 2, + "stype": 1, + "prize": [ + { + "a": "attr", + "t": "nexp", + "n": 5000 + }, + { + "a": "item", + "t": "2", + "n": 50 + }, + { + "a": "attr", + "t": "jinbi", + "n": 20000 + } + ], + "pval": 1080, + "name": "intr_task_name_3066", + "intr": "intr_task_intr_3034", + "pretask": 3135, + "followtask": 3147, + "cond": [], + "tiaozhuan": 3, + "order": 1147, + "special": 0, + "show": "" + }, + "3147": { + "id": 3147, + "type": 2, + "stype": 145, + "prize": [ + { + "a": "item", + "t": "33", + "n": 1 + }, + { + "a": "item", + "t": "34", + "n": 1 + }, + { + "a": "attr", + "t": "jinbi", + "n": 20000 + } + ], + "pval": 1, + "name": "intr_task_name_3035", + "intr": "intr_task_intr_3035", + "pretask": 3136, + "followtask": 3148, + "cond": [], + "tiaozhuan": 3, + "order": 1148, + "special": 0, + "show": "" + }, + "3148": { + "id": 3148, + "type": 2, + "stype": 134, + "prize": [ + { + "a": "item", + "t": "633", + "n": 10 + }, + { + "a": "attr", + "t": "jinbi", + "n": 20000 + } + ], + "pval": 1, + "name": "intr_task_name_3036", + "intr": "intr_task_intr_3036", + "pretask": 3137, + "followtask": 3149, + "cond": [ + 33 + ], + "tiaozhuan": 74, + "order": 1149, + "special": 0, + "show": "" + }, + "3149": { + "id": 3149, + "type": 2, + "stype": 134, + "prize": [ + { + "a": "item", + "t": "1", + "n": 5000 + }, + { + "a": "item", + "t": "3", + "n": 10 + }, + { + "a": "attr", + "t": "jinbi", + "n": 20000 + } + ], + "pval": 10, + "name": "intr_task_name_3037", + "intr": "intr_task_intr_3037", + "pretask": 3138, + "followtask": 3150, + "cond": [ + 633 + ], + "tiaozhuan": 74, + "order": 1150, + "special": 0, + "show": "" + }, + "3150": { + "id": 3150, + "type": 2, + "stype": 133, + "prize": [ + { + "a": "attr", + "t": "nexp", + "n": 5000 + }, + { + "a": "attr", + "t": "jinbi", + "n": 20000 + } + ], + "pval": 10, + "name": "intr_task_name_3038", + "intr": "intr_task_intr_3038", + "pretask": 3139, + "followtask": 0, + "cond": [], + "tiaozhuan": 8, + "order": 1151, + "special": 0, + "show": "" } }, "3": { From 61a8ae0fc990de08708de2e19c7be3c6ec900966 Mon Sep 17 00:00:00 2001 From: dy Date: Sun, 31 Dec 2023 17:04:59 +0800 Subject: [PATCH 5/8] =?UTF-8?q?fix=20=E9=BB=91=E5=B8=AE=E4=BA=89=E9=9C=B8?= =?UTF-8?q?=E5=8F=96=E5=8F=82=E9=94=99=E8=AF=AF?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/api_s2c/hbzb/jfs/ApiOpen.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/api_s2c/hbzb/jfs/ApiOpen.ts b/src/api_s2c/hbzb/jfs/ApiOpen.ts index bf7901e..fb732fb 100644 --- a/src/api_s2c/hbzb/jfs/ApiOpen.ts +++ b/src/api_s2c/hbzb/jfs/ApiOpen.ts @@ -29,7 +29,7 @@ export default async function (call: ApiCall) { //todo 健壮性处理 return call.errorCode(-4) } - if (callRes.res.enemy.length) + if (callRes.res?.enemy?.length) data.enemy = callRes.res.enemy.map(e => { return {...e, result: null}; }); From 64a9ea73604f588524d6f15e36bc212fa474e80c Mon Sep 17 00:00:00 2001 From: dy Date: Sun, 31 Dec 2023 17:22:07 +0800 Subject: [PATCH 6/8] =?UTF-8?q?fix=20=E9=BB=91=E5=B8=AE=E4=BA=89=E9=9C=B8?= =?UTF-8?q?=E7=94=A8=E6=88=B7=E4=B8=BA=E7=A9=BA=E6=97=B6=E5=8D=8F=E8=AE=AE?= =?UTF-8?q?=E6=8A=A5=E9=94=99?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/api_s2c/hbzb/jfs/ApiOpen.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/src/api_s2c/hbzb/jfs/ApiOpen.ts b/src/api_s2c/hbzb/jfs/ApiOpen.ts index fb732fb..e2c7550 100644 --- a/src/api_s2c/hbzb/jfs/ApiOpen.ts +++ b/src/api_s2c/hbzb/jfs/ApiOpen.ts @@ -44,6 +44,7 @@ export default async function (call: ApiCall) { call.succ({ ...data, + enemy: data.enemy || [], rank: await getMyRank(call.uid) }); } From 7aaa0699f9448f0302fa1c7adf88fae3158b1318 Mon Sep 17 00:00:00 2001 From: dy Date: Sun, 31 Dec 2023 17:42:56 +0800 Subject: [PATCH 7/8] =?UTF-8?q?fix=20=E7=AB=9E=E6=8A=80=E5=9C=BA=E5=A4=B4?= =?UTF-8?q?=E5=83=8F=E6=BF=80=E6=B4=BB?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/public/user.ts | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/src/public/user.ts b/src/public/user.ts index bc7dd6c..5914259 100644 --- a/src/public/user.ts +++ b/src/public/user.ts @@ -279,9 +279,11 @@ export class UserFun { if (k == 'wxcLv') val = gud.wxcLv.lv; else if (gud[k] != undefined) val = gud[k]; - if (k == 'jjc_rank' && !gud.headFrames[conf.id] && val <= conf.cond[1]) { - gud.headFrames[conf.id] = -1; - change = true; + if (k == 'jjc_rank') { + if (!gud.headFrames[conf.id] && val <= conf.cond[1]) { + gud.headFrames[conf.id] = -1; + change = true; + } else return } else if (!gud.headFrames[conf.id] && val >= conf.cond[1]) { gud.headFrames[conf.id] = -1; change = true; From b466826d94d47d7ef9fa27fa783595bfb04639ce Mon Sep 17 00:00:00 2001 From: dy Date: Sun, 31 Dec 2023 18:56:42 +0800 Subject: [PATCH 8/8] =?UTF-8?q?=E4=BF=AE=E5=A4=8D=E7=AC=AC=E4=B8=80?= =?UTF-8?q?=E6=AC=A1=E6=89=93=E5=BC=80=E6=B2=A1=E6=9C=89round=E6=8A=A5?= =?UTF-8?q?=E9=94=99?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/api_s2c/event/leijichongzhi/ApiOpen.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/api_s2c/event/leijichongzhi/ApiOpen.ts b/src/api_s2c/event/leijichongzhi/ApiOpen.ts index 686068c..801ee88 100644 --- a/src/api_s2c/event/leijichongzhi/ApiOpen.ts +++ b/src/api_s2c/event/leijichongzhi/ApiOpen.ts @@ -19,7 +19,7 @@ export default async function (call: ApiCall) { if (!db) { await G.mongodb.cEvent(_dbType).updateOne( {uid: call.uid, type: _dbType}, - {$set: {sTime: sTime, recIndex: []}}, + {$set: {sTime: sTime, recIndex: [], round: 0}}, {upsert: true} ); } @@ -33,6 +33,6 @@ export default async function (call: ApiCall) { recIndex: db?.recIndex || [], payNum: payNum, hdinfo: _hdinfo, - round: db.round || 0 + round: db?.round || 0 }); } \ No newline at end of file