From 95f66e4c392f4fd91d9efd4cabcb7377ed1ee1a5 Mon Sep 17 00:00:00 2001 From: hided62 Date: Sat, 25 Jul 2026 10:46:23 +0000 Subject: [PATCH 01/15] feat: add 100th-season all-star growth event --- hwe/a_bestGeneral.php | 7 +- hwe/func.php | 7 +- hwe/j_select_picked_general.php | 40 +++- hwe/j_update_picked_general.php | 66 ++++--- hwe/sammo/CentennialAllStarGrowthService.php | 180 ++++++++++++++++++ .../Event/Action/AdvanceCentennialAllStar.php | 47 +++++ hwe/sammo/GeneralPool/SPoolUnderU100.php | 61 ++++++ hwe/scenario/scenario_915.json | 46 +++++ hwe/ts/select_general_from_pool.ts | 38 ++-- package.json | 2 +- src/sammo/CentennialAllStarGrowth.php | 77 ++++++++ tests/CentennialAllStarGrowthTest.php | 74 +++++++ 12 files changed, 589 insertions(+), 56 deletions(-) create mode 100644 hwe/sammo/CentennialAllStarGrowthService.php create mode 100644 hwe/sammo/Event/Action/AdvanceCentennialAllStar.php create mode 100644 hwe/sammo/GeneralPool/SPoolUnderU100.php create mode 100644 hwe/scenario/scenario_915.json create mode 100644 src/sammo/CentennialAllStarGrowth.php create mode 100644 tests/CentennialAllStarGrowthTest.php diff --git a/hwe/a_bestGeneral.php b/hwe/a_bestGeneral.php index 53b1735a..6785f42a 100644 --- a/hwe/a_bestGeneral.php +++ b/hwe/a_bestGeneral.php @@ -243,11 +243,14 @@ $templates = new \League\Plates\Engine(__DIR__ . '/templates'); "SELECT nation,no,name,owner_name as ownerName, owner, picture, imgsvr, experience, dedication, dex1, dex2, dex3, dex4, dex5, - horse, weapon, book, item + horse, weapon, book, item, aux FROM general WHERE %l", $btn == "NPC 보기" ? "npc>=2" : "npc<2" ) as $general) { $generalID = $general['no']; + foreach (['dex1', 'dex2', 'dex3', 'dex4', 'dex5'] as $dexKey) { + $general[$dexKey] = CentennialAllStarGrowthService::recordableRawValue($general, $dexKey); + } $general['bgColor'] = $nationColor[$general['nation']] ?? GameConst::$basecolor4; $general['fgColor'] = newColor($general['bgColor']); $general['nationName'] = $nationName[$general['nation']]; @@ -427,4 +430,4 @@ $templates = new \League\Plates\Engine(__DIR__ . '/templates'); - \ No newline at end of file + diff --git a/hwe/func.php b/hwe/func.php index c5a2f6e0..026c4b69 100644 --- a/hwe/func.php +++ b/hwe/func.php @@ -1401,8 +1401,11 @@ function CheckHall($no) foreach ($types as [$typeName, $valueType]) { - if ($valueType === 'natural') { - $value = $generalObj->getVar($typeName); + if ($valueType === 'natural') { + $value = $generalObj->getVar($typeName); + if (in_array($typeName, ['dex1', 'dex2', 'dex3', 'dex4', 'dex5'], true)) { + $value = CentennialAllStarGrowthService::recordableValue($generalObj, $typeName); + } } else if ($valueType === 'rank') { $value = $generalObj->getRankVar(RankColumn::from($typeName)); } else if ($valueType === 'calc') { diff --git a/hwe/j_select_picked_general.php b/hwe/j_select_picked_general.php index d5f99e96..b7ebbe8a 100644 --- a/hwe/j_select_picked_general.php +++ b/hwe/j_select_picked_general.php @@ -6,10 +6,19 @@ include "func.php"; WebUtil::requireAJAX(); -$pick = Util::getPost('pick'); -$leadership = Util::getPost('leadership', 'int', GameConst::$defaultStatMin); -$strength = Util::getPost('leadership', 'int', GameConst::$defaultStatMin); -$intel = Util::getPost('leadership', 'int', GameConst::$defaultStatMin); +$pick = Util::getPost('pick'); +$leadership = Util::getPost('leadership', 'int', GameConst::$defaultStatMin); +$isCentennialAllStar = CentennialAllStarGrowthService::isActive(); +$strength = Util::getPost( + $isCentennialAllStar ? 'strength' : 'leadership', + 'int', + GameConst::$defaultStatMin +); +$intel = Util::getPost( + $isCentennialAllStar ? 'intel' : 'leadership', + 'int', + GameConst::$defaultStatMin +); $personal = Util::getPost('personal', 'string', null); $use_own_picture = Util::getPost('use_own_picture', 'bool', false); @@ -78,9 +87,19 @@ if ($gencount >= $maxgeneral) { ]); } -$poolClass = getGeneralPoolClass(GameConst::$targetGeneralPool); -/** @var AbsGeneralPool */ -$pickedGeneral = new $poolClass($db, $selectInfo, $now); +$poolClass = getGeneralPoolClass(GameConst::$targetGeneralPool); +/** @var AbsGeneralPool */ +if ($isCentennialAllStar) { + $rng = new RandUtil(new LiteHashDRBG(Util::simpleSerialize( + UniqueConst::$hiddenSeed, + 'selectPickedGeneral', + $userID, + $pick + ))); + $pickedGeneral = new $poolClass($db, $rng, $selectInfo, $now); +} else { + $pickedGeneral = new $poolClass($db, $selectInfo, $now); +} $builder = $pickedGeneral->getGeneralBuilder(); @@ -105,7 +124,10 @@ foreach(GameConst::$generalPoolAllowOption as $allowOption){ if(!$personal || $personal == 'Random'){ $personal = Util::choiceRandom(GameConst::$availablePersonality); } - if(!array_search($personal, GameConst::$availablePersonality)){ + $invalidPersonal = $isCentennialAllStar + ? !in_array($personal, GameConst::$availablePersonality, true) + : !array_search($personal, GameConst::$availablePersonality); + if($invalidPersonal){ Json::die([ 'result'=>false, 'reason'=>'올바르지 않은 성격입니다.' @@ -167,4 +189,4 @@ $rootDB->insert('member_log', [ Json::die([ 'result'=>true, 'reason'=>'success' -]); \ No newline at end of file +]); diff --git a/hwe/j_update_picked_general.php b/hwe/j_update_picked_general.php index e5aac0d0..a91c7af2 100644 --- a/hwe/j_update_picked_general.php +++ b/hwe/j_update_picked_general.php @@ -33,12 +33,13 @@ if(!$generalID){ } list( - $year, - $month, - $maxgeneral, - $npcmode, - $turnterm -) = $gameStor->getValuesAsArray(['year', 'month', 'maxgeneral', 'npcmode', 'turnterm']); + $year, + $month, + $startYear, + $maxgeneral, + $npcmode, + $turnterm +) = $gameStor->getValuesAsArray(['year', 'month', 'startyear', 'maxgeneral', 'npcmode', 'turnterm']); if($npcmode!=2){ Json::die([ @@ -101,11 +102,36 @@ $db->update('select_pool',[ 'reserved_until'=>null, ], '(owner=%i or reserved_until < %s) AND general_id is NULL', $userID, $now); -if(key_exists('leadership', $info)){ - $generalObj->updateVar('leadership', $info['leadership']); - $generalObj->updateVar('strength', $info['strength']); - $generalObj->updateVar('intel', $info['intel']); -} +$isCentennialAllStar = CentennialAllStarGrowthService::isActive(); +if ($isCentennialAllStar) { + CentennialAllStarGrowthService::applyTarget($generalObj, $info, [ + 'startyear' => $startYear, + 'year' => $year, + 'month' => $month, + ]); +} else { + if(key_exists('leadership', $info)){ + $generalObj->updateVar('leadership', $info['leadership']); + $generalObj->updateVar('strength', $info['strength']); + $generalObj->updateVar('intel', $info['intel']); + } + if(key_exists('dex', $info)){ + $generalObj->updateVar('dex1', $info['dex'][0]); + $generalObj->updateVar('dex2', $info['dex'][1]); + $generalObj->updateVar('dex3', $info['dex'][2]); + $generalObj->updateVar('dex4', $info['dex'][3]); + $generalObj->updateVar('dex5', $info['dex'][4]); + } + if(key_exists('ego', $info)){ + $generalObj->updateVar('personal', $info['ego']); + } + if(key_exists('specialDomestic', $info)){ + $generalObj->updateVar('special', $info['specialDomestic']); + } + if(key_exists('specialWar', $info)){ + $generalObj->updateVar('special2', $info['specialWar']); + } +} if(key_exists('picture', $info)){ $generalObj->updateVar('imgsvr', $info['imgsvr']); $generalObj->updateVar('picture', $info['picture']); @@ -113,22 +139,6 @@ if(key_exists('picture', $info)){ if(key_exists('generalName', $info)){ $generalObj->updateVar('name', $info['generalName']); } -if(key_exists('dex', $info)){ - $generalObj->updateVar('dex1', $info['dex'][0]); - $generalObj->updateVar('dex2', $info['dex'][1]); - $generalObj->updateVar('dex3', $info['dex'][2]); - $generalObj->updateVar('dex4', $info['dex'][3]); - $generalObj->updateVar('dex5', $info['dex'][4]); -} -if(key_exists('ego', $info)){ - $generalObj->updateVar('personal', $info['ego']); -} -if(key_exists('specialDomestic', $info)){ - $generalObj->updateVar('special', $info['specialDomestic']); -} -if(key_exists('specialWar', $info)){ - $generalObj->updateVar('special2', $info['specialWar']); -} $generalObj->setAuxVar('next_change', TimeUtil::nowAddMinutes(12 * $turnterm)); $userNick = $ownerInfo['name']; @@ -148,4 +158,4 @@ $generalObj->applyDB($db); Json::die([ 'result'=>true, 'reason'=>'success' -]); \ No newline at end of file +]); diff --git a/hwe/sammo/CentennialAllStarGrowthService.php b/hwe/sammo/CentennialAllStarGrowthService.php new file mode 100644 index 00000000..23056488 --- /dev/null +++ b/hwe/sammo/CentennialAllStarGrowthService.php @@ -0,0 +1,180 @@ + (string) ($targetInfo['uniqueName'] ?? ''), + 'granted' => array_fill_keys(array_merge(self::STAT_KEYS, self::DEX_KEYS), 0), + 'progressMonth' => -1, + 'milestone' => 0, + 'naturalSpecialDomestic' => null, + 'eventSpecialDomestic' => null, + ]; + } + + public static function attachInitialTarget(GeneralBuilder $builder, array $targetInfo): void + { + $builder->setAuxVar(self::AUX_KEY, self::initialAux($targetInfo)); + } + + /** + * Mutates the General object but leaves persistence to the caller. + * + * @return array{progress:float,milestone:int,previousMilestone:int,targetChanged:bool,changed:bool} + */ + public static function applyTarget(General $general, array $targetInfo, array $env): array + { + $startYear = (int) $env['startyear']; + $year = (int) $env['year']; + $month = (int) $env['month']; + $progress = CentennialAllStarGrowth::progress($startYear, $year, $month); + $progressMonth = max(0, ($year - $startYear) * 12 + $month - 1); + $targetId = (string) ($targetInfo['uniqueName'] ?? ''); + + $aux = $general->getAuxVar(self::AUX_KEY); + if (!is_array($aux)) { + $aux = self::initialAux($targetInfo); + } + $granted = is_array($aux['granted'] ?? null) + ? $aux['granted'] + : array_fill_keys(array_merge(self::STAT_KEYS, self::DEX_KEYS), 0); + $targetChanged = ($aux['targetId'] ?? '') !== $targetId; + $changed = false; + + foreach (self::STAT_KEYS as $key) { + if (!array_key_exists($key, $targetInfo)) { + continue; + } + $target = min(GameConst::$maxLevel, max(0, (int) $targetInfo[$key])); + $floor = CentennialAllStarGrowth::statFloor( + $target, + GameConst::$defaultStatMin, + $progress + ); + $current = (int) $general->getVar($key); + if ($targetChanged) { + $result = CentennialAllStarGrowth::replaceTarget( + $current, + (int) ($granted[$key] ?? 0), + $floor + ); + } else { + $result = CentennialAllStarGrowth::advance( + $current, + (int) ($granted[$key] ?? 0), + $floor + ); + } + if ($result['value'] !== $current) { + $general->updateVar($key, $result['value']); + $changed = true; + } + $granted[$key] = $result['granted']; + } + + $targetDex = $targetInfo['dex'] ?? []; + foreach (self::DEX_KEYS as $idx => $key) { + if (!array_key_exists($idx, $targetDex)) { + continue; + } + $target = min(GameConst::$dexLimit, max(0, (int) $targetDex[$idx])); + $floor = CentennialAllStarGrowth::dexFloor($target, $progress); + $current = (int) $general->getVar($key); + if ($targetChanged) { + $result = CentennialAllStarGrowth::replaceTarget( + $current, + (int) ($granted[$key] ?? 0), + $floor + ); + } else { + $result = CentennialAllStarGrowth::advance( + $current, + (int) ($granted[$key] ?? 0), + $floor + ); + } + if ($result['value'] !== $current) { + $general->updateVar($key, $result['value']); + $changed = true; + } + $granted[$key] = $result['granted']; + } + + $oldEventSpecial = $aux['eventSpecialDomestic'] ?? null; + if ($targetChanged && $oldEventSpecial !== null + && $general->getVar('special') === $oldEventSpecial + ) { + $general->updateVar( + 'special', + $aux['naturalSpecialDomestic'] ?? GameConst::$defaultSpecialDomestic + ); + $changed = true; + $aux['eventSpecialDomestic'] = null; + } + + $targetSpecial = $targetInfo['specialDomestic'] ?? null; + if ($progress >= self::TRAIT_UNLOCK_PROGRESS && is_string($targetSpecial) && $targetSpecial !== '') { + if (($aux['naturalSpecialDomestic'] ?? null) === null) { + $aux['naturalSpecialDomestic'] = $general->getVar('special'); + } + if ($general->getVar('special') !== $targetSpecial) { + $general->updateVar('special', $targetSpecial); + $changed = true; + } + $aux['eventSpecialDomestic'] = $targetSpecial; + } + + $previousMilestone = (int) ($aux['milestone'] ?? 0); + $milestone = min(5, (int) floor($progress * 5 + 0.0000001)); + $aux['targetId'] = $targetId; + $aux['granted'] = $granted; + $aux['progressMonth'] = max((int) ($aux['progressMonth'] ?? -1), $progressMonth); + $aux['milestone'] = max($previousMilestone, $milestone); + $general->setAuxVar(self::AUX_KEY, $aux); + + return [ + 'progress' => $progress, + 'milestone' => $milestone, + 'previousMilestone' => $previousMilestone, + 'targetChanged' => $targetChanged, + 'changed' => $changed || $targetChanged || $milestone > $previousMilestone, + ]; + } + + public static function recordableValue(General $general, string $key): int + { + $aux = $general->getAuxVar(self::AUX_KEY); + $granted = is_array($aux) && is_array($aux['granted'] ?? null) + ? (int) ($aux['granted'][$key] ?? 0) + : 0; + return CentennialAllStarGrowth::recordableValue((int) $general->getVar($key), $granted); + } + + public static function recordableRawValue(array $general, string $key): int + { + $aux = Json::decode($general['aux'] ?? '{}'); + $eventAux = is_array($aux[self::AUX_KEY] ?? null) ? $aux[self::AUX_KEY] : []; + $granted = is_array($eventAux['granted'] ?? null) + ? (int) ($eventAux['granted'][$key] ?? 0) + : 0; + return CentennialAllStarGrowth::recordableValue((int) ($general[$key] ?? 0), $granted); + } +} diff --git a/hwe/sammo/Event/Action/AdvanceCentennialAllStar.php b/hwe/sammo/Event/Action/AdvanceCentennialAllStar.php new file mode 100644 index 00000000..63831491 --- /dev/null +++ b/hwe/sammo/Event/Action/AdvanceCentennialAllStar.php @@ -0,0 +1,47 @@ +query( + 'SELECT general.no, select_pool.info + FROM general + JOIN select_pool ON select_pool.general_id = general.no' + ) as $row) { + $general = General::createObjFromDB((int) $row['no']); + $targetInfo = Json::decode($row['info']); + $result = CentennialAllStarGrowthService::applyTarget($general, $targetInfo, $env); + + if ($result['milestone'] > $result['previousMilestone']) { + $percent = $result['milestone'] * 20; + $general->getLogger()->pushGeneralActionLog( + "올스타 동조율이 {$percent}%에 도달했습니다!", + ActionLogger::PLAIN + ); + $general->getLogger()->pushGeneralHistoryLog( + "올스타 동조율 {$percent}% 달성" + ); + } + if ($general->applyDB($db)) { + $updated++; + } + } + + return [__CLASS__, $updated]; + } +} diff --git a/hwe/sammo/GeneralPool/SPoolUnderU100.php b/hwe/sammo/GeneralPool/SPoolUnderU100.php new file mode 100644 index 00000000..c616ee72 --- /dev/null +++ b/hwe/sammo/GeneralPool/SPoolUnderU100.php @@ -0,0 +1,61 @@ +info = $targetInfo; + CentennialAllStarGrowthService::attachInitialTarget($this->builder, $targetInfo); + } + + public static function getPoolName(): string + { + return '100기 올스타 클래식'; + } + + public static function initPool(\MeekroDB $db) + { + // 현재 ref 저장소에 보존된 공식 클래식 명장 자료는 1~29기 자료다. + // 풀 형식과 event100Unique는 이후 30~99기 자료를 같은 형태로 합칠 수 있다. + $jsonData = Json::decode(file_get_contents(__DIR__ . '/Pool/UnderS30.json')); + $columns = $jsonData['columns']; + $sqlValues = []; + foreach ($jsonData['data'] as $idx => $rawItem) { + if (count($rawItem) !== count($columns)) { + throw new \RuntimeException(($rawItem[0] ?? (string) $idx) . ' Error'); + } + $item = array_combine($columns, $rawItem); + $uniqueName = sprintf('A100%04d', $idx + 1); + $item['uniqueName'] = $uniqueName; + $item['event100Growth'] = true; + $sqlValues[] = [ + 'unique_name' => $uniqueName, + 'info' => Json::encode($item), + ]; + } + $db->insert('select_pool', $sqlValues); + } +} diff --git a/hwe/scenario/scenario_915.json b/hwe/scenario/scenario_915.json new file mode 100644 index 00000000..5238f142 --- /dev/null +++ b/hwe/scenario/scenario_915.json @@ -0,0 +1,46 @@ +{ + "title": "【공백지】 100기 올스타 클래식", + "startYear": 180, + "map": { + "mapName": "miniche", + "targetGeneralPool": "SPoolUnderU100", + "generalPoolAllowOption": ["stat", "ego", "picture"] + }, + "history": [ + "●180년 1월:【100기 이벤트】 역대 장수들이 평범한 능력으로 다시 모여, 지난 전성기의 힘과 서서히 동조하기 시작했다!" + ], + "const": { + "npcBanMessageProb": 1 + }, + "events": [ + [ + "month", 8000, + true, + ["AdvanceCentennialAllStar"] + ], + [ + "month", 1000, + ["Date", "==", null, 12], + ["CreateManyNPC", 100, 0], + ["DeleteEvent"] + ], + [ + "month", 1000, + ["Date", "==", 181, 12], + ["ChangeCity", "occupied", { + "pop": "+60000", + "agri": "+1200", + "comm": "+1200" + }] + ], + [ + "destroy_nation", 1000, + ["and", + ["Date", ">=", 183, 1], + ["RemainNation", "==", 1] + ], + ["BlockScoutAction"], + ["DeleteEvent"] + ] + ] +} diff --git a/hwe/ts/select_general_from_pool.ts b/hwe/ts/select_general_from_pool.ts index 541c4356..93820853 100644 --- a/hwe/ts/select_general_from_pool.ts +++ b/hwe/ts/select_general_from_pool.ts @@ -10,7 +10,7 @@ import { unwrap } from '@util/unwrap'; import { TemplateEngine } from '@util/TemplateEngine'; import { Tooltip } from 'bootstrap'; import { trim } from 'lodash-es'; -type CardItem = { +type CardItem = { uniqueName: string, imgsvr: 0|1, @@ -26,9 +26,14 @@ type CardItem = { specialWarInfo?: string, specialWarText?: string, - personal?: string, - personalText?: string, -} + personal?: string, + personalText?: string, + event100Growth?: boolean, + leadership?: number, + strength?: number, + intel?: number, + dex?: number[], +} type GeneralPoolResponse = { result: true, @@ -42,9 +47,10 @@ declare let currentGeneralInfo: CardItem | undefined; declare const cards: Record; declare const validCustomOption: string[]; -const templateGeneralCard = '
\ -

<%generalName%>

\ -

\ +const templateGeneralCard = '

\ +

<%generalName%>

\ +

\ + <%if(event100Growth){%>195년 최종 동조 목표
<%}%>\ <%if(leadership){%>\ <%leadership%> / <%strength%> / <%intel%>
\ <%}%>\ @@ -137,12 +143,16 @@ async function buildGeneral(e: JQuery.Event) { method: 'post', responseType: 'json', data: convertFormData({ - pick: unwrap(currentGeneralInfo).uniqueName, - use_own_picture: $('#use_own_picture').is(':checked'), - leadership: parseInt(unwrap_any($('#leadership').val())), - strength: parseInt(unwrap_any($('#leadership').val())), - intel: parseInt(unwrap_any($('#leadership').val())), - personal: unwrap_any($('#selChar').val()) + pick: unwrap(currentGeneralInfo).uniqueName, + use_own_picture: $('#use_own_picture').is(':checked'), + leadership: parseInt(unwrap_any($('#leadership').val())), + strength: parseInt(unwrap_any( + $(unwrap(currentGeneralInfo).event100Growth ? '#strength' : '#leadership').val() + )), + intel: parseInt(unwrap_any( + $(unwrap(currentGeneralInfo).event100Growth ? '#intel' : '#leadership').val() + )), + personal: unwrap_any($('#selChar').val()) }) }) result = response.data; @@ -287,4 +297,4 @@ $(async function ($) { $('.custom_stat').show(); } } -}); \ No newline at end of file +}); diff --git a/package.json b/package.json index 6c7107a9..eb612a10 100644 --- a/package.json +++ b/package.json @@ -5,7 +5,7 @@ "main": "js/index.js", "scripts": { "test": "npm-run-all test-php-gateway test-ts", - "test-php-gateway": "vendor/bin/phpunit --bootstrap vendor/autoload.php tests", + "test-php-gateway": "vendor/bin/phpunit --do-not-cache-result --bootstrap vendor/autoload.php tests", "test-ts": "mocha", "build": "webpack", "buildDev": "webpack --mode=development", diff --git a/src/sammo/CentennialAllStarGrowth.php b/src/sammo/CentennialAllStarGrowth.php new file mode 100644 index 00000000..81c30fc5 --- /dev/null +++ b/src/sammo/CentennialAllStarGrowth.php @@ -0,0 +1,77 @@ + 12) { + throw new \InvalidArgumentException('month must be between 1 and 12'); + } + + $elapsedMonths = max(0, ($year - $startYear) * 12 + $month - 1); + return min(1.0, $elapsedMonths / ($growthYears * 12)); + } + + public static function statFloor(int $target, int $minimum, float $progress): int + { + $progress = self::clampProgress($progress); + if ($target <= $minimum) { + return $target; + } + return min($target, (int) floor($minimum + ($target - $minimum) * $progress)); + } + + public static function dexFloor(int $target, float $progress): int + { + $progress = self::clampProgress($progress); + return min($target, (int) floor($target * $progress * $progress)); + } + + /** + * @return array{value:int, granted:int, delta:int} + */ + public static function advance(int $current, int $granted, int $floor): array + { + $delta = max(0, $floor - $current); + return [ + 'value' => $current + $delta, + 'granted' => max(0, $granted) + $delta, + 'delta' => $delta, + ]; + } + + /** + * @return array{value:int, granted:int, organic:int} + */ + public static function replaceTarget(int $current, int $oldGranted, int $newFloor): array + { + $organic = max(0, $current - max(0, $oldGranted)); + $value = max($organic, $newFloor); + return [ + 'value' => $value, + 'granted' => $value - $organic, + 'organic' => $organic, + ]; + } + + public static function recordableValue(int $current, int $granted): int + { + return max(0, $current - max(0, $granted)); + } + + private static function clampProgress(float $progress): float + { + return max(0.0, min(1.0, $progress)); + } +} diff --git a/tests/CentennialAllStarGrowthTest.php b/tests/CentennialAllStarGrowthTest.php new file mode 100644 index 00000000..d090fcf4 --- /dev/null +++ b/tests/CentennialAllStarGrowthTest.php @@ -0,0 +1,74 @@ + 70, 'granted' => 0, 'delta' => 0], + CentennialAllStarGrowth::advance(70, 0, $floor) + ); + self::assertSame( + ['value' => 60, 'granted' => 10, 'delta' => 10], + CentennialAllStarGrowth::advance(50, 0, $floor) + ); + } + + public function testReselectDropsOldGrantAndKeepsOrganicGrowth(): void + { + self::assertSame( + ['value' => 82, 'granted' => 7, 'organic' => 75], + CentennialAllStarGrowth::replaceTarget(86, 11, 82) + ); + self::assertSame( + ['value' => 90, 'granted' => 0, 'organic' => 90], + CentennialAllStarGrowth::replaceTarget(101, 11, 82) + ); + } + + public function testRepeatedAdvanceIsIdempotent(): void + { + $first = CentennialAllStarGrowth::advance(50, 0, 60); + $second = CentennialAllStarGrowth::advance($first['value'], $first['granted'], 60); + self::assertSame(60, $second['value']); + self::assertSame(10, $second['granted']); + self::assertSame(0, $second['delta']); + self::assertSame(50, CentennialAllStarGrowth::recordableValue(60, 10)); + } + + public function testDexUsesSlowEarlyCurve(): void + { + self::assertSame(0, CentennialAllStarGrowth::dexFloor(900000, 0)); + self::assertSame(36000, CentennialAllStarGrowth::dexFloor(900000, 0.2)); + self::assertSame(144000, CentennialAllStarGrowth::dexFloor(900000, 0.4)); + self::assertSame(900000, CentennialAllStarGrowth::dexFloor(900000, 1)); + } + + public function testUntrackedGeneralKeepsFullHallValue(): void + { + self::assertSame( + 123456, + CentennialAllStarGrowthService::recordableRawValue( + ['dex1' => 123456, 'aux' => '{}'], + 'dex1' + ) + ); + } +} From d8bf8ba92245cf2260c13b174b1de999af5c0d1c Mon Sep 17 00:00:00 2001 From: hided62 Date: Tue, 28 Jul 2026 00:29:25 +0000 Subject: [PATCH 02/15] feat: expand 100th-season pool through phase 99 --- hwe/sammo/GeneralPool/Pool/UnderS100.json | 143499 +++++++++++++++++++ hwe/sammo/GeneralPool/SPoolUnderU100.php | 4 +- src/build_centennial_allstar_pool.php | 240 + src/centennial_allstar_candidates.sql | 130 + tests/CentennialAllStarPoolTest.php | 87 + 5 files changed, 143957 insertions(+), 3 deletions(-) create mode 100644 hwe/sammo/GeneralPool/Pool/UnderS100.json create mode 100644 src/build_centennial_allstar_pool.php create mode 100644 src/centennial_allstar_candidates.sql create mode 100644 tests/CentennialAllStarPoolTest.php diff --git a/hwe/sammo/GeneralPool/Pool/UnderS100.json b/hwe/sammo/GeneralPool/Pool/UnderS100.json new file mode 100644 index 00000000..5d0eb421 --- /dev/null +++ b/hwe/sammo/GeneralPool/Pool/UnderS100.json @@ -0,0 +1,143499 @@ +{ + "columns": [ + "generalName", + "leadership", + "strength", + "intel", + "specialDomestic", + "dex", + "imgsvr", + "picture", + "sourcePhase", + "sourceServerId", + "sourceGeneralNo", + "selectionReasons" + ], + "data": [ + [ + "【1기】조민", + 85, + 69, + 12, + "che_event_무쌍", + [ + 54691, + 398024, + 31027, + 89301, + 24687 + ], + 1, + "55617fd.png?=20180630", + 1, + "che_180628_z9X4", + 3, + [ + "hall:dex1", + "hall:dex2", + "hall:tlrate", + "hall:ttrate" + ] + ], + [ + "【1기】하루", + 77, + 77, + 10, + "che_event_견고", + [ + 49781, + 447666, + 81863, + 89704, + 170291 + ], + 1, + "3aa501a.jpg?=20180710", + 1, + "che_180628_z9X4", + 4, + [ + "hall:dex2", + "hall:dex5", + "hall:killcrew", + "hall:killnum", + "hall:warnum", + "hall:winrate" + ] + ], + [ + "【1기】먹고튄다", + 81, + 72, + 11, + "che_event_돌격", + [ + 21814, + 369560, + 15221, + 74569, + 36015 + ], + 1, + "c096284.jpg?=20180629", + 1, + "che_180628_z9X4", + 5, + [ + "hall:dex2" + ] + ], + [ + "【1기】소금ㄴㄴ염", + 88, + 68, + 10, + "che_event_격노", + [ + 14255, + 33412, + 198801, + 39121, + 243290 + ], + 1, + "fb0d354.jpg?=20180629", + 1, + "che_180628_z9X4", + 6, + [ + "hall:dedication", + "hall:dex3", + "hall:dex5", + "hall:experience", + "hall:killcrew", + "hall:killrate", + "hall:tlrate" + ] + ], + [ + "【1기】SARS", + 52, + 30, + 83, + "che_event_신산", + [ + 13983, + 51943, + 16887, + 272296, + 24209 + ], + 0, + "default.jpg", + 1, + "che_180628_z9X4", + 7, + [ + "chief:9" + ] + ], + [ + "【1기】니노미야아스카", + 72, + 82, + 10, + "che_event_견고", + [ + 34935, + 31645, + 475305, + 84914, + 66071 + ], + 1, + "59bc7e3.jpg?=20180628", + 1, + "che_180628_z9X4", + 8, + [ + "chief:12", + "hall:betwin", + "hall:betwingold", + "hall:dedication", + "hall:dex3", + "hall:dex5", + "hall:experience", + "hall:killcrew", + "hall:killnum", + "hall:killrate", + "hall:warnum" + ] + ], + [ + "【1기】이드", + 71, + 86, + 10, + "che_event_위압", + [ + 31794, + 771290, + 45847, + 120990, + 34428 + ], + 1, + "7cbc70f.jpg?=20180708", + 1, + "che_180628_z9X4", + 11, + [ + "hall:dex2", + "hall:killcrew", + "hall:killnum", + "hall:killrate", + "hall:ttrate", + "hall:warnum", + "hall:winrate" + ] + ], + [ + "【1기】평민킬러", + 71, + 83, + 11, + "che_event_돌격", + [ + 399767, + 36713, + 64437, + 81230, + 20257 + ], + 1, + "6add0f.jpg?=20180515", + 1, + "che_180628_z9X4", + 14, + [ + "hall:dex1", + "hall:killnum" + ] + ], + [ + "【1기】살수묵랑", + 71, + 85, + 10, + "che_event_징병", + [ + 17803, + 62496, + 303653, + 88778, + 29276 + ], + 1, + "a9298fc.png?=20180628", + 1, + "che_180628_z9X4", + 15, + [ + "hall:dex3", + "hall:firenum", + "hall:tprate" + ] + ], + [ + "【1기】죽음의 별", + 72, + 10, + 85, + "che_event_신중", + [ + 37180, + 29723, + 96050, + 353137, + 25977 + ], + 1, + "6532f29.jpg?=20180628", + 1, + "che_180628_z9X4", + 19, + [ + "hall:dex4" + ] + ], + [ + "【1기】호시노 루리", + 85, + 70, + 11, + "che_event_척사", + [ + 27525, + 590785, + 47483, + 117144, + 146758 + ], + 1, + "e728603.jpg?=20180713", + 1, + "che_180628_z9X4", + 20, + [ + "chief:11", + "hall:betwin", + "hall:dedication", + "hall:dex2", + "hall:dex5", + "hall:experience", + "hall:killcrew", + "hall:killnum", + "hall:killrate", + "hall:tlrate", + "hall:warnum" + ] + ], + [ + "【1기】뒈코뭐리", + 70, + 10, + 84, + "che_event_신산", + [ + 44689, + 36359, + 28357, + 313820, + 41801 + ], + 1, + "97ec8a1.png?=20180628", + 1, + "che_180628_z9X4", + 22, + [ + "hall:betgold", + "hall:betrate", + "hall:betwin", + "hall:betwingold", + "hall:dedication", + "hall:dex4" + ] + ], + [ + "【1기】꽁치", + 69, + 86, + 10, + "che_event_돌격", + [ + 8159, + 57830, + 144615, + 32030, + 17901 + ], + 1, + "ca6391e.jpg?=20180711", + 1, + "che_180628_z9X4", + 24, + [ + "hall:betgold", + "hall:betrate", + "hall:betwin", + "hall:betwingold", + "hall:killrate", + "hall:tprate" + ] + ], + [ + "【1기】돌려돌려돌림판", + 73, + 10, + 84, + "che_event_필살", + [ + 45091, + 105611, + 63987, + 669570, + 23342 + ], + 0, + "default.jpg", + 1, + "che_180628_z9X4", + 25, + [ + "hall:betgold", + "hall:dex4", + "hall:experience", + "hall:killcrew", + "hall:killnum", + "hall:warnum", + "hall:winrate" + ] + ], + [ + "【1기】만샘", + 71, + 10, + 81, + "che_event_귀병", + [ + 0, + 6243, + 0, + 16558, + 0 + ], + 1, + "37d189c.jpg?=20180420", + 1, + "che_180628_z9X4", + 28, + [ + "hall:betwin" + ] + ], + [ + "【1기】삼남매아빠", + 87, + 68, + 10, + "che_event_견고", + [ + 3011, + 57971, + 168061, + 51030, + 28879 + ], + 0, + "default.jpg", + 1, + "che_180628_z9X4", + 29, + [ + "hall:tlrate" + ] + ], + [ + "【1기】홈", + 71, + 10, + 84, + "che_event_반계", + [ + 63332, + 52361, + 18238, + 258378, + 22237 + ], + 1, + "fc4c099.jpg?=20180630", + 1, + "che_180628_z9X4", + 30, + [ + "hall:dex1" + ] + ], + [ + "【1기】하우젤", + 83, + 73, + 10, + "che_event_견고", + [ + 9640, + 282753, + 32486, + 46108, + 48603 + ], + 1, + "edb7b8f.jpg?=20180628", + 1, + "che_180628_z9X4", + 32, + [ + "hall:dex2" + ] + ], + [ + "【1기】제노에이지", + 69, + 10, + 87, + "che_event_반계", + [ + 6970, + 66356, + 31132, + 249008, + 37834 + ], + 1, + "e90f675.jpg?=20180713", + 1, + "che_180628_z9X4", + 33, + [ + "hall:betgold", + "hall:betrate", + "hall:betwin", + "hall:betwingold", + "hall:tirate", + "hall:ttrate" + ] + ], + [ + "【1기】마스", + 91, + 11, + 10, + "che_event_무쌍", + [ + 2333, + 3055, + 0, + 2330, + 452014 + ], + 1, + "5f739d7.gif?=20180712", + 1, + "che_180628_z9X4", + 34, + [ + "hall:betgold", + "hall:betrate", + "hall:betwin", + "hall:betwingold", + "hall:dedication", + "hall:dex5", + "hall:experience", + "hall:firenum", + "hall:killcrew", + "hall:killrate", + "hall:tlrate", + "hall:winrate" + ] + ], + [ + "【1기】뽀빠이", + 68, + 83, + 10, + "che_event_저격", + [ + 7460, + 65561, + 57381, + 28194, + 16111 + ], + 1, + "2eb5589.png?=20180702", + 1, + "che_180628_z9X4", + 35, + [ + "hall:tprate" + ] + ], + [ + "【1기】코사카우미", + 76, + 10, + 80, + "che_event_신중", + [ + 13115, + 14190, + 4337, + 61830, + 357074 + ], + 1, + "ccc7692.jpg?=20180628", + 1, + "che_180628_z9X4", + 39, + [ + "hall:dedication", + "hall:dex5", + "hall:experience", + "hall:killrate", + "hall:ttrate", + "hall:winrate" + ] + ], + [ + "【1기】료우기시키", + 70, + 83, + 11, + "che_event_의술", + [ + 334576, + 19445, + 27287, + 45017, + 33727 + ], + 1, + "21b50f8.jpg?=20180628", + 1, + "che_180628_z9X4", + 40, + [ + "hall:dex1", + "hall:killrate" + ] + ], + [ + "【1기】니쉬", + 70, + 84, + 10, + "che_event_저격", + [ + 58525, + 40543, + 122529, + 31799, + 27288 + ], + 1, + "aef78f7.jpg?=20180628", + 1, + "che_180628_z9X4", + 41, + [ + "hall:dex1", + "hall:tprate" + ] + ], + [ + "【1기】춤추는곰돌이강슬기", + 71, + 85, + 10, + "che_event_돌격", + [ + 14623, + 44238, + 364737, + 71354, + 52162 + ], + 1, + "214e682.jpg?=20180709", + 1, + "che_180628_z9X4", + 42, + [ + "hall:dex3", + "hall:dex5", + "hall:killnum", + "hall:killrate", + "hall:tprate", + "hall:winrate" + ] + ], + [ + "【1기】이빌라이져", + 69, + 84, + 10, + "che_event_징병", + [ + 32806, + 208458, + 7833, + 39657, + 24775 + ], + 0, + "default.jpg", + 1, + "che_180628_z9X4", + 43, + [ + "hall:tprate" + ] + ], + [ + "【1기】칸자키 란코", + 69, + 11, + 85, + "che_event_격노", + [ + 31239, + 23167, + 14054, + 322927, + 44759 + ], + 1, + "ad53ac0.jpg?=20180708", + 1, + "che_180628_z9X4", + 47, + [ + "chief:5", + "hall:betgold", + "hall:betrate", + "hall:betwin", + "hall:betwingold", + "hall:dedication", + "hall:dex4", + "hall:experience", + "hall:firenum" + ] + ], + [ + "【1기】견고", + 73, + 81, + 11, + "che_event_필살", + [ + 315554, + 37306, + 106669, + 60814, + 36308 + ], + 0, + "default.jpg", + 1, + "che_180628_z9X4", + 48, + [ + "hall:dedication", + "hall:dex1", + "hall:experience" + ] + ], + [ + "【1기】독고다이", + 70, + 84, + 10, + "che_event_징병", + [ + 7805, + 52596, + 264410, + 79684, + 23412 + ], + 0, + "default.jpg", + 1, + "che_180628_z9X4", + 50, + [ + "hall:betgold", + "hall:betrate", + "hall:betwin", + "hall:dex3", + "hall:tprate" + ] + ], + [ + "【1기】ㅇㄷㅇㄷ", + 70, + 10, + 83, + "che_event_척사", + [ + 0, + 0, + 0, + 0, + 0 + ], + 0, + "default.jpg", + 1, + "che_180628_z9X4", + 51, + [ + "hall:experience" + ] + ], + [ + "【1기】첫기는잠입이제맛", + 11, + 72, + 81, + "che_event_집중", + [ + 0, + 0, + 0, + 0, + 0 + ], + 0, + "default.jpg", + 1, + "che_180628_z9X4", + 52, + [ + "hall:firenum" + ] + ], + [ + "【1기】피피미", + 80, + 73, + 10, + "che_event_견고", + [ + 33230, + 77710, + 232993, + 54304, + 42731 + ], + 1, + "aeb592.png?=20180629", + 1, + "che_180628_z9X4", + 55, + [ + "hall:dex3", + "hall:firenum" + ] + ], + [ + "【1기】Tiasse", + 79, + 74, + 10, + "che_event_척사", + [ + 0, + 32371, + 21087, + 0, + 126195 + ], + 1, + "7ebcf8a.jpg?=20180713", + 1, + "che_180628_z9X4", + 57, + [ + "hall:dex5", + "hall:killrate", + "hall:winrate" + ] + ], + [ + "【1기】마르", + 72, + 11, + 81, + "che_event_신중", + [ + 6329, + 26749, + 54384, + 277444, + 31517 + ], + 1, + "3da8a49.jpg?=20180417", + 1, + "che_180628_z9X4", + 59, + [ + "hall:dex4" + ] + ], + [ + "【1기】노이어", + 81, + 72, + 11, + "che_event_견고", + [ + 26847, + 141906, + 31976, + 49329, + 11615 + ], + 0, + "default.jpg", + 1, + "che_180628_z9X4", + 63, + [ + "hall:ttrate" + ] + ], + [ + "【1기】아소", + 82, + 10, + 72, + "che_event_징병", + [ + 14824, + 66603, + 34577, + 274537, + 17255 + ], + 1, + "3d22492.jpg?=20180417", + 1, + "che_180628_z9X4", + 64, + [ + "hall:tlrate" + ] + ], + [ + "【1기】미스티", + 87, + 67, + 10, + "che_event_위압", + [ + 378651, + 68043, + 59721, + 96238, + 23956 + ], + 0, + "default.jpg", + 1, + "che_180628_z9X4", + 65, + [ + "hall:dex1", + "hall:killcrew", + "hall:tlrate", + "hall:warnum" + ] + ], + [ + "【1기】무장", + 72, + 10, + 83, + "che_event_징병", + [ + 9269, + 30696, + 26088, + 296119, + 30616 + ], + 0, + "default.jpg", + 1, + "che_180628_z9X4", + 67, + [ + "hall:dex4", + "hall:tirate" + ] + ], + [ + "【1기】물자조달쟁이", + 71, + 10, + 83, + "che_event_필살", + [ + 16354, + 49134, + 67257, + 316348, + 34250 + ], + 1, + "3679089.jpg?=20180629", + 1, + "che_180628_z9X4", + 68, + [ + "hall:dex4", + "hall:tirate" + ] + ], + [ + "【1기】사이키쿠스오", + 69, + 85, + 10, + "che_event_격노", + [ + 30845, + 277427, + 23274, + 46460, + 20044 + ], + 1, + "76bcc11.jpg?=20180628", + 1, + "che_180628_z9X4", + 69, + [ + "hall:dex2", + "hall:tprate" + ] + ], + [ + "【1기】Hide_D", + 13, + 69, + 83, + "che_event_척사", + [ + 0, + 0, + 1963, + 0, + 0 + ], + 1, + "21d378f.jpg?=20180630", + 1, + "che_180628_z9X4", + 70, + [ + "hall:tirate" + ] + ], + [ + "【1기】아린", + 13, + 66, + 81, + "che_event_격노", + [ + 0, + 0, + 0, + 0, + 0 + ], + 1, + "5804813.png?=20180629", + 1, + "che_180628_z9X4", + 71, + [ + "hall:tirate" + ] + ], + [ + "【1기】오다에리나", + 75, + 77, + 12, + "che_event_격노", + [ + 14744, + 282180, + 13513, + 60424, + 38930 + ], + 1, + "37df877.jpg?=20180628", + 1, + "che_180628_z9X4", + 73, + [ + "chief:10", + "hall:dex2" + ] + ], + [ + "【1기】야포", + 69, + 11, + 83, + "che_event_반계", + [ + 4541, + 25297, + 18959, + 190505, + 33514 + ], + 0, + "default.jpg", + 1, + "che_180628_z9X4", + 74, + [ + "hall:tirate", + "hall:winrate" + ] + ], + [ + "【1기】카오스피닉스", + 71, + 10, + 83, + "che_event_신중", + [ + 44331, + 48376, + 19179, + 385408, + 34139 + ], + 1, + "2af0641.jpg?=20180706", + 1, + "che_180628_z9X4", + 75, + [ + "chief:7", + "hall:dex4" + ] + ], + [ + "【1기】DZTO", + 85, + 67, + 10, + "che_event_돌격", + [ + 0, + 135326, + 41808, + 17914, + 27379 + ], + 1, + "9c05100.jpg?=20180706", + 1, + "che_180628_z9X4", + 76, + [ + "hall:tlrate", + "hall:ttrate" + ] + ], + [ + "【1기】화애루용병2", + 10, + 68, + 82, + "che_event_환술", + [ + 0, + 0, + 0, + 0, + 0 + ], + 0, + "default.jpg", + 1, + "che_180628_z9X4", + 78, + [ + "hall:tirate" + ] + ], + [ + "【1기】리즈나", + 71, + 85, + 10, + "che_event_무쌍", + [ + 154806, + 160366, + 170422, + 34193, + 57545 + ], + 1, + "6ef3386.jpg?=20180630", + 1, + "che_180628_z9X4", + 79, + [ + "hall:dex1", + "hall:dex5", + "hall:firenum", + "hall:killnum", + "hall:tprate", + "hall:warnum", + "hall:winrate" + ] + ], + [ + "【1기】이치코", + 72, + 80, + 10, + "che_event_저격", + [ + 205187, + 17782, + 46838, + 53075, + 15721 + ], + 1, + "ef6aac8.jpg?=20180628", + 1, + "che_180628_z9X4", + 81, + [ + "hall:dex1" + ] + ], + [ + "【1기】핫산", + 19, + 67, + 79, + "che_event_의술", + [ + 0, + 0, + 0, + 0, + 0 + ], + 0, + "default.jpg", + 1, + "che_180628_z9X4", + 83, + [ + "hall:dedication" + ] + ], + [ + "【1기】망포", + 77, + 77, + 10, + "che_event_징병", + [ + 54497, + 12612, + 280281, + 74044, + 40149 + ], + 1, + "bc427b1.jpg?=20180713", + 1, + "che_180628_z9X4", + 84, + [ + "chief:6", + "hall:betgold", + "hall:betrate", + "hall:betwingold", + "hall:dex3" + ] + ], + [ + "【1기】륜", + 71, + 10, + 85, + "che_event_징병", + [ + 44874, + 18503, + 19522, + 190353, + 10757 + ], + 1, + "96061d5.jpg?=20180708", + 1, + "che_180628_z9X4", + 85, + [ + "hall:tirate", + "hall:ttrate" + ] + ], + [ + "【1기】우사밍성인", + 10, + 67, + 83, + "che_event_필살", + [ + 0, + 0, + 0, + 0, + 0 + ], + 1, + "baa3ab6.jpg?=20180629", + 1, + "che_180628_z9X4", + 86, + [ + "hall:tirate" + ] + ], + [ + "【1기】아사기리 겐", + 69, + 11, + 86, + "che_event_신중", + [ + 11990, + 55291, + 25184, + 247169, + 40450 + ], + 0, + "default.jpg", + 1, + "che_180628_z9X4", + 90, + [ + "hall:ttrate" + ] + ], + [ + "【1기】캐로", + 68, + 9, + 85, + "che_event_반계", + [ + 0, + 10460, + 3148, + 55941, + 506 + ], + 0, + "default.jpg", + 1, + "che_180628_z9X4", + 96, + [ + "hall:tirate" + ] + ], + [ + "【1기】개발살", + 69, + 84, + 10, + "che_event_저격", + [ + 3555, + 74423, + 19016, + 28167, + 2612 + ], + 0, + "default.jpg", + 1, + "che_180628_z9X4", + 98, + [ + "hall:tprate" + ] + ], + [ + "【1기】늘모", + 82, + 72, + 10, + "che_event_무쌍", + [ + 0, + 82347, + 145492, + 28974, + 45695 + ], + 0, + "default.jpg", + 1, + "che_180628_z9X4", + 100, + [ + "hall:firenum", + "hall:ttrate" + ] + ], + [ + "【1기】Card", + 83, + 70, + 10, + "che_event_무쌍", + [ + 0, + 217788, + 26117, + 41134, + 24765 + ], + 1, + "30f386f.jpg?=20180629", + 1, + "che_180628_z9X4", + 102, + [ + "hall:betgold", + "hall:betrate", + "hall:betwingold" + ] + ], + [ + "【1기】8월7일의 로비", + 11, + 67, + 85, + "che_event_집중", + [ + 0, + 0, + 0, + 0, + 0 + ], + 1, + "5da83a4.jpg?=20180627", + 1, + "che_180628_z9X4", + 105, + [ + "hall:betrate", + "hall:betwingold" + ] + ], + [ + "【1기】새장속의 이상향", + 71, + 10, + 83, + "che_event_신중", + [ + 36541, + 68008, + 106667, + 616052, + 54180 + ], + 0, + "default.jpg", + 1, + "che_180628_z9X4", + 106, + [ + "hall:dex4", + "hall:dex5", + "hall:experience", + "hall:killcrew", + "hall:killnum", + "hall:warnum" + ] + ], + [ + "【1기】무한파워안경", + 85, + 70, + 10, + "che_event_위압", + [ + 41570, + 28860, + 303636, + 71899, + 39164 + ], + 1, + "b7e1a1f.jpg?=20180525", + 1, + "che_180628_z9X4", + 108, + [ + "hall:betgold", + "hall:betrate", + "hall:betwin", + "hall:betwingold", + "hall:dex3", + "hall:tlrate" + ] + ], + [ + "【1기】민트토끼", + 72, + 83, + 10, + "che_event_돌격", + [ + 48062, + 337919, + 28934, + 77427, + 29525 + ], + 1, + "6f87652.jpg?=20180630", + 1, + "che_180628_z9X4", + 116, + [ + "hall:dex2" + ] + ], + [ + "【1기】아유", + 83, + 73, + 10, + "che_event_척사", + [ + 45035, + 53813, + 347280, + 112550, + 44124 + ], + 1, + "bf8e3b6.jpg?=20180630", + 1, + "che_180628_z9X4", + 117, + [ + "chief:8", + "hall:dex3", + "hall:tlrate", + "hall:warnum" + ] + ], + [ + "【1기】소마", + 73, + 81, + 10, + "che_event_견고", + [ + 456171, + 41579, + 99061, + 122518, + 38878 + ], + 0, + "default.jpg", + 1, + "che_180628_z9X4", + 119, + [ + "hall:dex1", + "hall:firenum", + "hall:killcrew", + "hall:killnum", + "hall:warnum" + ] + ], + [ + "【1기】쿠라가노세라", + 66, + 10, + 85, + "che_event_격노", + [ + 5474, + 4519, + 1295, + 45711, + 9826 + ], + 1, + "2cc240e.jpg?=20180630", + 1, + "che_180628_z9X4", + 124, + [ + "hall:firenum", + "hall:winrate" + ] + ], + [ + "【1기】실장석", + 12, + 67, + 85, + "che_event_신중", + [ + 0, + 0, + 0, + 0, + 0 + ], + 1, + "70dd32f.png?=20180630", + 1, + "che_180628_z9X4", + 125, + [ + "hall:dedication" + ] + ], + [ + "【1기】광삼이", + 74, + 10, + 79, + "che_event_필살", + [ + 19805, + 70942, + 31060, + 330337, + 23527 + ], + 1, + "bcdfa8.jpg?=20180630", + 1, + "che_180628_z9X4", + 146, + [ + "hall:dex4" + ] + ], + [ + "【1기】밥알요정", + 77, + 77, + 10, + "che_event_위압", + [ + 28076, + 54221, + 319263, + 61411, + 48289 + ], + 1, + "cf505d0.png?=20180630", + 1, + "che_180628_z9X4", + 149, + [ + "hall:dex3" + ] + ], + [ + "【1기】whan", + 85, + 69, + 10, + "che_event_필살", + [ + 20271, + 311096, + 38315, + 50035, + 20590 + ], + 0, + "default.jpg", + 1, + "che_180628_z9X4", + 150, + [ + "hall:dex2" + ] + ], + [ + "【1기】무리인데요", + 10, + 83, + 70, + "che_event_의술", + [ + 0, + 2188, + 3044, + 0, + 1357 + ], + 1, + "7c2d1e.jpg?=20180708", + 1, + "che_180628_z9X4", + 153, + [ + "hall:ttrate" + ] + ], + [ + "【1기】앙곤운띠", + 79, + 70, + 10, + null, + [ + 44642, + 10831, + 12526, + 22095, + 0 + ], + 0, + "default.jpg", + 1, + "che_180628_z9X4", + 220, + [ + "hall:firenum" + ] + ], + [ + "【2기】제노에이지", + 74, + 10, + 90, + "che_event_반계", + [ + 61581, + 159259, + 137652, + 602992, + 24288 + ], + 1, + "f80e777.jpg?=20180811", + 2, + "che_180719_R02C", + 3, + [ + "hall:betgold", + "hall:betrate", + "hall:betwin", + "hall:betwingold", + "hall:dex4", + "hall:tirate" + ] + ], + [ + "【2기】자벨린", + 21, + 66, + 86, + "che_event_격노", + [ + 0, + 0, + 0, + 3, + 0 + ], + 1, + "456b821.gif?=20180719", + 2, + "che_180719_R02C", + 5, + [ + "hall:tirate" + ] + ], + [ + "【2기】바리", + 95, + 12, + 11, + "che_event_격노", + [ + 0, + 0, + 0, + 11173, + 158671 + ], + 1, + "e4e2524.gif?=20180803", + 2, + "che_180719_R02C", + 8, + [ + "hall:dex5", + "hall:firenum", + "hall:killrate" + ] + ], + [ + "【2기】평민킬러", + 76, + 86, + 10, + "che_event_필살", + [ + 13032, + 114838, + 491599, + 128087, + 28161 + ], + 1, + "6add0f.jpg?=20180515", + 2, + "che_180719_R02C", + 9, + [ + "hall:dex3" + ] + ], + [ + "【2기】모리야 스와코", + 70, + 10, + 91, + "che_event_필살", + [ + 26582, + 59174, + 36283, + 158109, + 12491 + ], + 1, + "2f1c0c9.gif?=20180718", + 2, + "che_180719_R02C", + 10, + [ + "hall:betgold", + "hall:betrate", + "hall:betwin", + "hall:betwingold", + "hall:tirate" + ] + ], + [ + "【2기】도리도리반도리도리", + 83, + 83, + 10, + "che_event_무쌍", + [ + 28706, + 144837, + 1653358, + 196769, + 88686 + ], + 1, + "79cffda.png?=20180805", + 2, + "che_180719_R02C", + 11, + [ + "chief:12", + "hall:dedication", + "hall:dex3", + "hall:dex5", + "hall:experience", + "hall:killcrew", + "hall:killnum", + "hall:killrate", + "hall:warnum", + "hall:winrate" + ] + ], + [ + "【2기】광삼이", + 78, + 10, + 79, + "che_event_척사", + [ + 75688, + 132949, + 110908, + 326694, + 8949 + ], + 1, + "bcdfa8.jpg?=20180630", + 2, + "che_180719_R02C", + 12, + [ + "hall:dex1" + ] + ], + [ + "【2기】인간 사냥꾼", + 86, + 76, + 12, + "che_event_견고", + [ + 837722, + 97147, + 163548, + 183617, + 53832 + ], + 1, + "bc6b556.jpg?=20180807", + 2, + "che_180719_R02C", + 13, + [ + "chief:6", + "hall:dedication", + "hall:dex1", + "hall:experience", + "hall:tlrate" + ] + ], + [ + "【2기】밤비에타", + 75, + 78, + 14, + "che_event_돌격", + [ + 235193, + 44649, + 43754, + 65854, + 16736 + ], + 1, + "2840769.jpg?=20180730", + 2, + "che_180719_R02C", + 14, + [ + "hall:dex1" + ] + ], + [ + "【2기】물조명성너프필수", + 87, + 78, + 10, + "che_event_무쌍", + [ + 39205, + 177529, + 1298420, + 161286, + 84310 + ], + 0, + "default.jpg", + 2, + "che_180719_R02C", + 15, + [ + "chief:11", + "hall:betwin", + "hall:betwingold", + "hall:dedication", + "hall:dex3", + "hall:dex5", + "hall:experience", + "hall:killcrew", + "hall:killnum", + "hall:killrate", + "hall:warnum", + "hall:winrate" + ] + ], + [ + "【2기】카오스피닉스", + 76, + 85, + 10, + "che_event_견고", + [ + 30925, + 124061, + 542844, + 92328, + 36481 + ], + 1, + "2af0641.jpg?=20180706", + 2, + "che_180719_R02C", + 17, + [ + "hall:dex3", + "hall:tprate", + "hall:ttrate" + ] + ], + [ + "【2기】명가의 수호자", + 76, + 12, + 85, + "che_event_신산", + [ + 35756, + 111668, + 199214, + 1205047, + 67252 + ], + 0, + "default.jpg", + 2, + "che_180719_R02C", + 18, + [ + "chief:9", + "hall:dedication", + "hall:dex4", + "hall:experience", + "hall:killcrew", + "hall:killrate", + "hall:warnum" + ] + ], + [ + "【2기】리안", + 73, + 11, + 87, + "che_event_필살", + [ + 47566, + 123130, + 72468, + 344925, + 50693 + ], + 0, + "default.jpg", + 2, + "che_180719_R02C", + 19, + [ + "hall:tirate" + ] + ], + [ + "【2기】라스트오더", + 89, + 72, + 10, + "che_event_징병", + [ + 68419, + 352418, + 128029, + 126673, + 20134 + ], + 1, + "54eec56.jpg?=20180719", + 2, + "che_180719_R02C", + 20, + [ + "hall:tlrate" + ] + ], + [ + "【2기】Card", + 91, + 67, + 10, + "che_event_징병", + [ + 75236, + 481508, + 110116, + 119890, + 36199 + ], + 1, + "416a697.jpg?=20180720", + 2, + "che_180719_R02C", + 21, + [ + "hall:betgold", + "hall:betrate", + "hall:betwin", + "hall:betwingold", + "hall:dex1", + "hall:dex2", + "hall:tlrate" + ] + ], + [ + "【2기】렉사이", + 74, + 86, + 10, + "che_event_무쌍", + [ + 50200, + 426369, + 63501, + 68528, + 16438 + ], + 1, + "6cc3ccf.jpg?=20180719", + 2, + "che_180719_R02C", + 22, + [ + "hall:firenum", + "hall:tprate" + ] + ], + [ + "【2기】황금요정", + 98, + 10, + 66, + "che_event_신중", + [ + 8468, + 11651, + 18740, + 36830, + 203763 + ], + 1, + "d8b3178.jpg?=20180719", + 2, + "che_180719_R02C", + 23, + [ + "hall:dex5", + "hall:tlrate", + "hall:ttrate" + ] + ], + [ + "【2기】민트토끼", + 77, + 11, + 87, + "che_event_필살", + [ + 28684, + 108898, + 163577, + 1255037, + 61469 + ], + 1, + "976f3f5.gif?=20180809", + 2, + "che_180719_R02C", + 24, + [ + "chief:7", + "hall:dedication", + "hall:dex4", + "hall:experience", + "hall:killcrew", + "hall:killnum", + "hall:warnum", + "hall:winrate" + ] + ], + [ + "【2기】SARS", + 64, + 24, + 85, + "che_event_척사", + [ + 25531, + 83930, + 84949, + 328883, + 57640 + ], + 0, + "default.jpg", + 2, + "che_180719_R02C", + 27, + [ + "hall:betgold", + "hall:ttrate" + ] + ], + [ + "【2기】이자요이 미쿠", + 16, + 70, + 85, + "che_event_필살", + [ + 0, + 0, + 0, + 0, + 0 + ], + 1, + "199fb81.jpg?=20180719", + 2, + "che_180719_R02C", + 28, + [ + "hall:betwin", + "hall:betwingold" + ] + ], + [ + "【2기】여고생쨩", + 80, + 80, + 10, + "che_event_무쌍", + [ + 47843, + 132489, + 396254, + 53683, + 45789 + ], + 1, + "ebd8fab.jpg?=20180728", + 2, + "che_180719_R02C", + 29, + [ + "hall:betwin", + "hall:dex3", + "hall:ttrate" + ] + ], + [ + "【2기】실장석", + 18, + 68, + 86, + "che_event_필살", + [ + 0, + 0, + 0, + 0, + 0 + ], + 1, + "70dd32f.png?=20180630", + 2, + "che_180719_R02C", + 31, + [ + "hall:tirate", + "hall:ttrate" + ] + ], + [ + "【2기】모하지맨", + 77, + 86, + 10, + "che_event_무쌍", + [ + 11076, + 1205715, + 121716, + 246889, + 55700 + ], + 0, + "default.jpg", + 2, + "che_180719_R02C", + 32, + [ + "hall:betgold", + "hall:dedication", + "hall:dex2", + "hall:experience", + "hall:killcrew", + "hall:killnum", + "hall:killrate", + "hall:warnum", + "hall:winrate" + ] + ], + [ + "【2기】긴토키", + 78, + 82, + 11, + "che_event_저격", + [ + 14475, + 123674, + 523310, + 122490, + 22883 + ], + 1, + "e2aac86.jpg?=20180719", + 2, + "che_180719_R02C", + 33, + [ + "hall:dex3" + ] + ], + [ + "【2기】백순대먹고싶다정말", + 73, + 87, + 10, + "che_event_징병", + [ + 404116, + 106854, + 104632, + 72717, + 34280 + ], + 1, + "745f44.png?=20180801", + 2, + "che_180719_R02C", + 34, + [ + "hall:dex1", + "hall:tprate" + ] + ], + [ + "【2기】미야노", + 75, + 87, + 10, + "che_event_견고", + [ + 51123, + 578755, + 94523, + 120407, + 50140 + ], + 1, + "c0ee2d4.gif?=20180810", + 2, + "che_180719_R02C", + 35, + [ + "hall:betgold", + "hall:dex2", + "hall:tprate" + ] + ], + [ + "【2기】LetsPlay", + 10, + 85, + 77, + "che_event_저격", + [ + 0, + 0, + 0, + 0, + 0 + ], + 1, + "f64966d.gif?=20180719", + 2, + "che_180719_R02C", + 36, + [ + "hall:firenum" + ] + ], + [ + "【2기】신포", + 90, + 70, + 10, + "che_event_필살", + [ + 282732, + 113659, + 57028, + 72492, + 7779 + ], + 0, + "default.jpg", + 2, + "che_180719_R02C", + 43, + [ + "hall:dex1" + ] + ], + [ + "【2기】삼남매아빠", + 90, + 74, + 10, + "che_event_돌격", + [ + 1191995, + 118931, + 143223, + 200158, + 69313 + ], + 0, + "default.jpg", + 2, + "che_180719_R02C", + 46, + [ + "hall:dedication", + "hall:dex1", + "hall:dex5", + "hall:experience", + "hall:killcrew", + "hall:killnum", + "hall:killrate", + "hall:tlrate", + "hall:ttrate", + "hall:warnum", + "hall:winrate" + ] + ], + [ + "【2기】시타오 미우", + 86, + 75, + 10, + "che_event_격노", + [ + 30707, + 123520, + 586021, + 216726, + 21916 + ], + 1, + "ca834c3.jpg?=20180723", + 2, + "che_180719_R02C", + 47, + [ + "hall:dex3" + ] + ], + [ + "【2기】삼남매엄마", + 78, + 86, + 10, + "che_event_위압", + [ + 42973, + 1314344, + 92685, + 185252, + 69135 + ], + 0, + "default.jpg", + 2, + "che_180719_R02C", + 48, + [ + "hall:dedication", + "hall:dex2", + "hall:dex5", + "hall:killcrew", + "hall:killnum", + "hall:killrate", + "hall:warnum", + "hall:winrate" + ] + ], + [ + "【2기】아유", + 67, + 10, + 88, + "che_event_격노", + [ + 77457, + 134449, + 58064, + 367649, + 26674 + ], + 1, + "337e79.gif?=20180810", + 2, + "che_180719_R02C", + 50, + [ + "hall:dex1", + "hall:tirate" + ] + ], + [ + "【2기】모라스", + 71, + 11, + 89, + "che_event_반계", + [ + 34004, + 84004, + 71256, + 328734, + 26015 + ], + 0, + "default.jpg", + 2, + "che_180719_R02C", + 52, + [ + "hall:betgold", + "hall:betrate", + "hall:betwin", + "hall:betwingold" + ] + ], + [ + "【2기】료우기시키", + 75, + 85, + 10, + "che_event_필살", + [ + 100136, + 559337, + 70857, + 148532, + 22239 + ], + 1, + "21b50f8.jpg?=20180628", + 2, + "che_180719_R02C", + 53, + [ + "hall:dex1", + "hall:dex2" + ] + ], + [ + "【2기】갓오브블랙필드", + 76, + 87, + 10, + "che_event_척사", + [ + 8902, + 127122, + 1167401, + 175493, + 73242 + ], + 1, + "51d1f77.jpg?=20180719", + 2, + "che_180719_R02C", + 54, + [ + "hall:betgold", + "hall:betrate", + "hall:betwin", + "hall:betwingold", + "hall:dedication", + "hall:dex3", + "hall:dex5", + "hall:experience", + "hall:killcrew", + "hall:killnum", + "hall:killrate", + "hall:tprate" + ] + ], + [ + "【2기】아저씨쨩", + 78, + 10, + 85, + "che_event_집중", + [ + 16085, + 170462, + 111393, + 1062153, + 54363 + ], + 1, + "dff1ae6.jpg?=20180729", + 2, + "che_180719_R02C", + 55, + [ + "hall:dex4", + "hall:killnum", + "hall:warnum", + "hall:winrate" + ] + ], + [ + "【2기】아사이 나나미", + 75, + 10, + 85, + "che_event_집중", + [ + 26285, + 139731, + 125010, + 702859, + 34369 + ], + 1, + "364468c.jpg?=20180813", + 2, + "che_180719_R02C", + 56, + [ + "hall:dex4" + ] + ], + [ + "【2기】마츠자카 사토", + 77, + 10, + 86, + "che_event_신중", + [ + 48092, + 110325, + 118787, + 835733, + 46144 + ], + 1, + "47260a1.jpg?=20180813", + 2, + "che_180719_R02C", + 58, + [ + "hall:dex4" + ] + ], + [ + "【2기】그저늅늅", + 73, + 10, + 89, + "che_event_저격", + [ + 37299, + 99655, + 134493, + 511159, + 27544 + ], + 1, + "6d750a7.jpg?=20180727", + 2, + "che_180719_R02C", + 60, + [ + "hall:dex4", + "hall:tirate" + ] + ], + [ + "【2기】커피", + 77, + 86, + 10, + "che_event_격노", + [ + 18743, + 85671, + 834631, + 182915, + 40817 + ], + 1, + "1c44e87.png?=20180723", + 2, + "che_180719_R02C", + 61, + [ + "hall:dex3", + "hall:tprate" + ] + ], + [ + "【2기】이치코", + 17, + 71, + 84, + "che_event_필살", + [ + 0, + 0, + 1355, + 0, + 209 + ], + 1, + "ef6aac8.jpg?=20180628", + 2, + "che_180719_R02C", + 63, + [ + "hall:firenum", + "hall:tirate" + ] + ], + [ + "【2기】위대한로렌초", + 75, + 90, + 10, + "che_event_위압", + [ + 61360, + 1367383, + 110301, + 196998, + 40255 + ], + 1, + "71e4063.jpg?=20180720", + 2, + "che_180719_R02C", + 64, + [ + "chief:8", + "hall:dedication", + "hall:dex2", + "hall:experience", + "hall:killcrew", + "hall:killnum", + "hall:killrate", + "hall:tprate", + "hall:warnum", + "hall:winrate" + ] + ], + [ + "【2기】진리", + 88, + 72, + 10, + "che_event_필살", + [ + 61758, + 536541, + 75409, + 178932, + 13414 + ], + 1, + "36d49fa.jpg?=20180725", + 2, + "che_180719_R02C", + 68, + [ + "hall:betwin", + "hall:dex2" + ] + ], + [ + "【2기】시이", + 78, + 84, + 11, + "che_event_돌격", + [ + 19131, + 183642, + 1018943, + 144288, + 55133 + ], + 1, + "296c2e3.jpg?=20180711", + 2, + "che_180719_R02C", + 70, + [ + "hall:dex3", + "hall:experience" + ] + ], + [ + "【2기】덕장", + 85, + 75, + 10, + "che_event_무쌍", + [ + 23265, + 90235, + 366352, + 99925, + 20239 + ], + 0, + "default.jpg", + 2, + "che_180719_R02C", + 72, + [ + "hall:tlrate" + ] + ], + [ + "【2기】먹고싶다.", + 69, + 90, + 11, + "che_event_징병", + [ + 17763, + 17781, + 44663, + 5287, + 9840 + ], + 1, + "3b67e36.png?=20180807", + 2, + "che_180719_R02C", + 73, + [ + "hall:firenum" + ] + ], + [ + "【2기】다니엘레메로시", + 89, + 73, + 10, + "che_event_위압", + [ + 20232, + 493247, + 48439, + 114876, + 12879 + ], + 1, + "b22d7e2.jpg?=20180719", + 2, + "che_180719_R02C", + 80, + [ + "hall:dex2", + "hall:firenum", + "hall:ttrate" + ] + ], + [ + "【2기】농다리", + 77, + 89, + 10, + "che_event_척사", + [ + 13872, + 1432650, + 138020, + 178094, + 84040 + ], + 1, + "eb2cf45.jpg?=20180805", + 2, + "che_180719_R02C", + 83, + [ + "chief:10", + "hall:dex2", + "hall:dex5", + "hall:killcrew", + "hall:killnum", + "hall:killrate", + "hall:tprate", + "hall:ttrate", + "hall:warnum", + "hall:winrate" + ] + ], + [ + "【2기】천사소녀네티", + 78, + 82, + 11, + "che_event_견고", + [ + 29293, + 82635, + 310168, + 36313, + 18853 + ], + 0, + "default.jpg", + 2, + "che_180719_R02C", + 92, + [ + "hall:winrate" + ] + ], + [ + "【2기】주사위논리학", + 91, + 69, + 11, + "che_event_돌격", + [ + 17548, + 189620, + 32739, + 48952, + 13972 + ], + 0, + "default.jpg", + 2, + "che_180719_R02C", + 93, + [ + "hall:betwingold", + "hall:tlrate" + ] + ], + [ + "【2기】다다", + 80, + 11, + 81, + "che_event_징병", + [ + 0, + 12314, + 22911, + 106972, + 7236 + ], + 0, + "default.jpg", + 2, + "che_180719_R02C", + 95, + [ + "hall:ttrate" + ] + ], + [ + "【2기】늘모", + 78, + 10, + 83, + "che_event_징병", + [ + 65631, + 160477, + 115617, + 536931, + 19508 + ], + 1, + "e7c163.png?=20180801", + 2, + "che_180719_R02C", + 96, + [ + "hall:dex4" + ] + ], + [ + "【2기】갓갓갓", + 75, + 84, + 10, + "che_event_돌격", + [ + 52703, + 66088, + 366729, + 95014, + 13828 + ], + 0, + "default.jpg", + 2, + "che_180719_R02C", + 98, + [ + "hall:tprate" + ] + ], + [ + "【2기】whan", + 94, + 68, + 11, + "che_event_징병", + [ + 97824, + 521689, + 154313, + 109751, + 21372 + ], + 0, + "default.jpg", + 2, + "che_180719_R02C", + 100, + [ + "hall:dex1", + "hall:dex2", + "hall:tlrate", + "hall:ttrate" + ] + ], + [ + "【2기】안함", + 94, + 66, + 11, + "che_event_돌격", + [ + 0, + 8139, + 60828, + 37158, + 71639 + ], + 0, + "default.jpg", + 2, + "che_180719_R02C", + 102, + [ + "hall:dex5", + "hall:tlrate" + ] + ], + [ + "【2기】엔쥬", + 10, + 74, + 87, + "che_event_격노", + [ + 0, + 0, + 0, + 0, + 9 + ], + 0, + "default.jpg", + 2, + "che_180719_R02C", + 108, + [ + "hall:tirate" + ] + ], + [ + "【2기】제갈여포", + 20, + 68, + 82, + "che_event_격노", + [ + 0, + 0, + 0, + 0, + 0 + ], + 1, + "e8e8adc.jpg?=20180419", + 2, + "che_180719_R02C", + 114, + [ + "hall:firenum" + ] + ], + [ + "【2기】ㅊㅂ", + 69, + 86, + 11, + "che_event_무쌍", + [ + 46323, + 245706, + 45031, + 61371, + 7224 + ], + 1, + "fd20d5d.png?=20180724", + 2, + "che_180719_R02C", + 117, + [ + "hall:tprate" + ] + ], + [ + "【2기】Nernas", + 88, + 10, + 73, + "che_event_귀병", + [ + 0, + 0, + 5834, + 3716, + 5962 + ], + 1, + "3982da0.jpg?=20180721", + 2, + "che_180719_R02C", + 120, + [ + "hall:tlrate" + ] + ], + [ + "【2기】Google", + 74, + 10, + 86, + "che_event_환술", + [ + 23750, + 61822, + 156962, + 496477, + 35361 + ], + 1, + "7ee028e.gif?=20180721", + 2, + "che_180719_R02C", + 121, + [ + "hall:dex4", + "hall:tirate" + ] + ], + [ + "【2기】의의동망", + 73, + 11, + 83, + "che_event_징병", + [ + 23486, + 79302, + 65582, + 263157, + 10248 + ], + 0, + "default.jpg", + 2, + "che_180719_R02C", + 122, + [ + "hall:betgold", + "hall:betrate", + "hall:betwingold" + ] + ], + [ + "【2기】집합안하는무지장", + 10, + 83, + 76, + "che_event_궁병", + [ + 0, + 1131, + 0, + 0, + 42 + ], + 0, + "default.jpg", + 2, + "che_180719_R02C", + 135, + [ + "hall:firenum" + ] + ], + [ + "【2기】연휘령", + 76, + 10, + 85, + "che_event_징병", + [ + 10659, + 121889, + 133504, + 818722, + 69286 + ], + 0, + "default.jpg", + 2, + "che_180719_R02C", + 165, + [ + "chief:5", + "hall:dex4", + "hall:dex5" + ] + ], + [ + "【2기】리비", + 16, + 89, + 64, + "che_event_돌격", + [ + 0, + 0, + 0, + 0, + 0 + ], + 1, + "d22a918.png?=20180810", + 2, + "che_180719_R02C", + 197, + [ + "hall:firenum" + ] + ], + [ + "【2기】밥도둑", + 10, + 89, + 70, + "che_event_척사", + [ + 0, + 0, + 0, + 0, + 0 + ], + 1, + "3687cc0.jpg?=20180724", + 2, + "che_180719_R02C", + 209, + [ + "hall:firenum" + ] + ], + [ + "【2기】가능인데요", + 12, + 68, + 80, + "che_event_필살", + [ + 0, + 0, + 0, + 0, + 0 + ], + 1, + "a5477f7.jpg?=20180803", + 2, + "che_180719_R02C", + 211, + [ + "hall:betgold", + "hall:betrate", + "hall:betwin", + "hall:betwingold" + ] + ], + [ + "【3기】천괴금", + 87, + 70, + 10, + "che_event_돌격", + [ + 521270, + 33837, + 123408, + 112940, + 52119 + ], + 1, + "f10e3d9.png?=20180702", + 3, + "che_180823_OWsv", + 4, + [ + "hall:dex1", + "hall:dex5", + "hall:tlrate" + ] + ], + [ + "【3기】감흥", + 73, + 84, + 10, + "che_event_필살", + [ + 63621, + 88372, + 607386, + 144303, + 8012 + ], + 1, + "eb2cf45.jpg?=20180805", + 3, + "che_180823_OWsv", + 8, + [ + "hall:dex3", + "hall:killnum", + "hall:warnum" + ] + ], + [ + "【3기】이브", + 91, + 11, + 10, + "che_event_징병", + [ + 29497, + 5407, + 16123, + 15312, + 211945 + ], + 1, + "7f9f9c6.jpg?=20180831", + 3, + "che_180823_OWsv", + 9, + [ + "hall:dex5", + "hall:experience", + "hall:killrate", + "hall:tlrate" + ] + ], + [ + "【3기】평민킬러", + 74, + 82, + 10, + "che_event_돌격", + [ + 758887, + 79866, + 66446, + 170759, + 25109 + ], + 1, + "6add0f.jpg?=20180515", + 3, + "che_180823_OWsv", + 10, + [ + "hall:dex1", + "hall:killcrew", + "hall:killnum", + "hall:warnum" + ] + ], + [ + "【3기】코시미즈 사치코", + 72, + 10, + 85, + "che_event_징병", + [ + 13834, + 59966, + 63614, + 426330, + 33482 + ], + 1, + "9e501a.jpg?=20180908", + 3, + "che_180823_OWsv", + 12, + [ + "chief:9", + "hall:dex4", + "hall:ttrate" + ] + ], + [ + "【3기】진실의 심연", + 74, + 83, + 11, + "che_event_돌격", + [ + 56662, + 99503, + 1119895, + 181724, + 53649 + ], + 0, + "default.jpg", + 3, + "che_180823_OWsv", + 13, + [ + "hall:dex3", + "hall:dex5", + "hall:experience", + "hall:killcrew", + "hall:killnum", + "hall:killrate", + "hall:warnum", + "hall:winrate" + ] + ], + [ + "【3기】타케우치P", + 72, + 82, + 11, + "che_event_격노", + [ + 28009, + 48039, + 489550, + 73789, + 50493 + ], + 1, + "abf3658.jpg?=20180910", + 3, + "che_180823_OWsv", + 14, + [ + "chief:12", + "hall:dedication", + "hall:dex3", + "hall:dex5", + "hall:experience", + "hall:killrate" + ] + ], + [ + "【3기】큰가슴의요정", + 72, + 86, + 10, + "che_event_위압", + [ + 439634, + 20784, + 35678, + 82477, + 33598 + ], + 0, + "default.jpg", + 3, + "che_180823_OWsv", + 15, + [ + "hall:dex1", + "hall:experience", + "hall:killrate", + "hall:ttrate" + ] + ], + [ + "【3기】죽창", + 83, + 72, + 10, + "che_event_징병", + [ + 20266, + 91290, + 428298, + 89633, + 23241 + ], + 1, + "2bb1aa1.gif?=20180906", + 3, + "che_180823_OWsv", + 16, + [ + "hall:betgold", + "hall:betwin", + "hall:betwingold", + "hall:tlrate" + ] + ], + [ + "【3기】후타바 안즈", + 71, + 11, + 84, + "che_event_환술", + [ + 29316, + 44125, + 41520, + 383093, + 34577 + ], + 1, + "75c78e2.jpg?=20180907", + 3, + "che_180823_OWsv", + 17, + [ + "chief:5", + "hall:tirate", + "hall:ttrate" + ] + ], + [ + "【3기】졸린마녀", + 73, + 82, + 11, + "che_event_견고", + [ + 90718, + 621811, + 79682, + 81511, + 29074 + ], + 1, + "ef47121.jpg?=20180825", + 3, + "che_180823_OWsv", + 18, + [ + "hall:dex2", + "hall:killcrew", + "hall:killnum", + "hall:killrate", + "hall:winrate" + ] + ], + [ + "【3기】테라포밍마스", + 71, + 13, + 83, + "che_event_저격", + [ + 15572, + 64212, + 88229, + 571580, + 21017 + ], + 1, + "a02d500.jpg?=20180828", + 3, + "che_180823_OWsv", + 22, + [ + "hall:dex4" + ] + ], + [ + "【3기】아유", + 72, + 84, + 10, + "che_event_돌격", + [ + 83293, + 544334, + 37522, + 173364, + 42717 + ], + 1, + "8645fa9.gif?=20180906", + 3, + "che_180823_OWsv", + 23, + [ + "hall:dex2", + "hall:killnum" + ] + ], + [ + "【3기】5분장멍펫", + 78, + 79, + 10, + "che_event_견고", + [ + 519553, + 39580, + 68995, + 110004, + 38426 + ], + 1, + "6d750a7.jpg?=20180727", + 3, + "che_180823_OWsv", + 24, + [ + "hall:dex1", + "hall:experience", + "hall:ttrate" + ] + ], + [ + "【3기】도트조아", + 87, + 70, + 10, + "che_event_필살", + [ + 162469, + 381037, + 58151, + 42061, + 21131 + ], + 1, + "61a436c.gif?=20180830", + 3, + "che_180823_OWsv", + 25, + [ + "hall:betgold", + "hall:betwin", + "hall:betwingold", + "hall:dex2", + "hall:tlrate" + ] + ], + [ + "【3기】보리", + 69, + 10, + 86, + "che_event_격노", + [ + 9193, + 12245, + 32244, + 168746, + 23275 + ], + 0, + "default.jpg", + 3, + "che_180823_OWsv", + 26, + [ + "hall:dedication" + ] + ], + [ + "【3기】말랑말", + 73, + 82, + 11, + "che_event_돌격", + [ + 44396, + 50436, + 605940, + 141042, + 18937 + ], + 1, + "6094d05.jpg?=20180823", + 3, + "che_180823_OWsv", + 27, + [ + "hall:dex3" + ] + ], + [ + "【3기】라피나", + 71, + 84, + 10, + "che_event_척사", + [ + 124576, + 418214, + 41289, + 50646, + 46622 + ], + 1, + "cce4134.jpg?=20180823", + 3, + "che_180823_OWsv", + 29, + [ + "chief:8", + "hall:dex2", + "hall:dex5", + "hall:experience", + "hall:killrate", + "hall:tprate" + ] + ], + [ + "【3기】료우기시키", + 73, + 83, + 10, + "che_event_돌격", + [ + 12205, + 81805, + 567176, + 112020, + 39996 + ], + 1, + "21b50f8.jpg?=20180628", + 3, + "che_180823_OWsv", + 33, + [ + "hall:dex3", + "hall:tprate", + "hall:winrate" + ] + ], + [ + "【3기】건전한촉수병사", + 75, + 82, + 10, + "che_event_척사", + [ + 70841, + 763849, + 52226, + 120536, + 34635 + ], + 1, + "438ec73.png?=20180827", + 3, + "che_180823_OWsv", + 34, + [ + "hall:dex2", + "hall:firenum", + "hall:killcrew", + "hall:killnum", + "hall:warnum" + ] + ], + [ + "【3기】민트토끼", + 73, + 10, + 84, + "che_event_신중", + [ + 76160, + 38268, + 119597, + 607557, + 27717 + ], + 1, + "976f3f5.gif?=20180809", + 3, + "che_180823_OWsv", + 35, + [ + "hall:dex4" + ] + ], + [ + "【3기】김성욱", + 11, + 72, + 83, + "che_event_집중", + [ + 0, + 0, + 0, + 0, + 0 + ], + 0, + "default.jpg", + 3, + "che_180823_OWsv", + 36, + [ + "hall:dedication" + ] + ], + [ + "【3기】SARS", + 58, + 27, + 83, + "che_event_저격", + [ + 69179, + 84867, + 44979, + 562722, + 42208 + ], + 1, + "b84944.jpg?=20180829", + 3, + "che_180823_OWsv", + 37, + [ + "chief:11", + "hall:dex4" + ] + ], + [ + "【3기】멍미", + 74, + 10, + 82, + "che_event_척사", + [ + 78837, + 35170, + 110746, + 597750, + 36805 + ], + 0, + "default.jpg", + 3, + "che_180823_OWsv", + 38, + [ + "hall:dex4", + "hall:killcrew", + "hall:warnum" + ] + ], + [ + "【3기】이드", + 73, + 84, + 10, + "che_event_필살", + [ + 11360, + 97115, + 463605, + 115796, + 30269 + ], + 1, + "91ca696.jpg?=20180825", + 3, + "che_180823_OWsv", + 39, + [ + "hall:dex3", + "hall:tprate", + "hall:ttrate" + ] + ], + [ + "【3기】블랙말랑카우", + 74, + 83, + 10, + "che_event_위압", + [ + 378803, + 19414, + 39915, + 108153, + 21918 + ], + 1, + "4c98466.jpg?=20180829", + 3, + "che_180823_OWsv", + 44, + [ + "hall:betwin", + "hall:betwingold", + "hall:dex1", + "hall:tprate", + "hall:ttrate" + ] + ], + [ + "【3기】제갈여포", + 73, + 11, + 82, + "che_event_신산", + [ + 58372, + 65706, + 106074, + 587072, + 22847 + ], + 1, + "e8e8adc.jpg?=20180419", + 3, + "che_180823_OWsv", + 45, + [ + "hall:dex4", + "hall:killnum", + "hall:warnum" + ] + ], + [ + "【3기】커피", + 74, + 83, + 10, + "che_event_무쌍", + [ + 23743, + 47980, + 490257, + 71293, + 37683 + ], + 1, + "f4e0e1e.jpg?=20180831", + 3, + "che_180823_OWsv", + 47, + [ + "hall:dex3", + "hall:killnum", + "hall:killrate", + "hall:winrate" + ] + ], + [ + "【3기】미야와키 사쿠라", + 82, + 71, + 11, + "che_event_위압", + [ + 130054, + 515248, + 42059, + 100575, + 18117 + ], + 1, + "ca1b72d.png?=20180827", + 3, + "che_180823_OWsv", + 48, + [ + "hall:dex2" + ] + ], + [ + "【3기】하우젤", + 86, + 70, + 10, + "che_event_위압", + [ + 576062, + 45623, + 151100, + 112698, + 33882 + ], + 1, + "dcff9fd.jpg?=20180823", + 3, + "che_180823_OWsv", + 49, + [ + "hall:dex1", + "hall:warnum" + ] + ], + [ + "【3기】진리", + 71, + 10, + 85, + "che_event_집중", + [ + 80271, + 40644, + 82521, + 322505, + 18306 + ], + 1, + "2055a9d.jpg?=20180828", + 3, + "che_180823_OWsv", + 50, + [ + "hall:firenum", + "hall:tirate" + ] + ], + [ + "【3기】삼남매엄마", + 72, + 84, + 10, + "che_event_견고", + [ + 243893, + 67510, + 68501, + 93681, + 16285 + ], + 0, + "default.jpg", + 3, + "che_180823_OWsv", + 52, + [ + "hall:tprate" + ] + ], + [ + "【3기】병리학적자세", + 71, + 9, + 86, + "che_event_집중", + [ + 79770, + 44334, + 72236, + 375876, + 24444 + ], + 1, + "3679089.jpg?=20180629", + 3, + "che_180823_OWsv", + 54, + [ + "hall:tirate" + ] + ], + [ + "【3기】듀", + 16, + 68, + 83, + "che_event_귀병", + [ + 0, + 0, + 0, + 0, + 0 + ], + 0, + "default.jpg", + 3, + "che_180823_OWsv", + 55, + [ + "hall:ttrate" + ] + ], + [ + "【3기】쫄따구", + 10, + 69, + 87, + "che_event_환술", + [ + 0, + 1005, + 0, + 1756, + 0 + ], + 0, + "default.jpg", + 3, + "che_180823_OWsv", + 56, + [ + "hall:dedication", + "hall:experience", + "hall:firenum" + ] + ], + [ + "【3기】다비", + 72, + 85, + 10, + "che_event_무쌍", + [ + 17826, + 86197, + 325383, + 81229, + 20807 + ], + 1, + "2a49cb.jpg?=20180906", + 3, + "che_180823_OWsv", + 57, + [ + "hall:tprate", + "hall:ttrate" + ] + ], + [ + "【3기】모라스", + 72, + 82, + 11, + "che_event_위압", + [ + 110373, + 496492, + 104955, + 112526, + 37253 + ], + 0, + "default.jpg", + 3, + "che_180823_OWsv", + 59, + [ + "hall:betgold", + "hall:betwin", + "hall:betwingold", + "hall:dex2", + "hall:warnum" + ] + ], + [ + "【3기】시나", + 80, + 76, + 10, + "che_event_돌격", + [ + 109774, + 335579, + 26438, + 84316, + 19197 + ], + 1, + "1216034.jpg?=20180901", + 3, + "che_180823_OWsv", + 62, + [ + "hall:winrate" + ] + ], + [ + "【3기】ARES군주", + 77, + 78, + 11, + "che_event_징병", + [ + 66167, + 36648, + 596058, + 114620, + 32974 + ], + 1, + "68432f1.jpg?=20180811", + 3, + "che_180823_OWsv", + 63, + [ + "hall:dex3" + ] + ], + [ + "【3기】달", + 74, + 10, + 84, + "che_event_집중", + [ + 68123, + 29604, + 149395, + 506294, + 25165 + ], + 1, + "131b8fd.jpg?=20180824", + 3, + "che_180823_OWsv", + 64, + [ + "hall:dex4" + ] + ], + [ + "【3기】삼남매아빠", + 86, + 70, + 10, + "che_event_위압", + [ + 55808, + 45866, + 370360, + 107655, + 17687 + ], + 0, + "default.jpg", + 3, + "che_180823_OWsv", + 68, + [ + "hall:dedication", + "hall:tlrate" + ] + ], + [ + "【3기】만샘", + 86, + 69, + 10, + "che_event_징병", + [ + 26947, + 87453, + 405727, + 96793, + 28901 + ], + 1, + "37d189c.jpg?=20180420", + 3, + "che_180823_OWsv", + 70, + [ + "hall:dedication" + ] + ], + [ + "【3기】덕장", + 70, + 84, + 11, + "che_event_저격", + [ + 358619, + 29859, + 50037, + 78140, + 19263 + ], + 1, + "c281d38.jpg?=20180906", + 3, + "che_180823_OWsv", + 71, + [ + "hall:tprate" + ] + ], + [ + "【3기】피카츄", + 72, + 10, + 84, + "che_event_필살", + [ + 64752, + 32178, + 43290, + 410480, + 33542 + ], + 0, + "default.jpg", + 3, + "che_180823_OWsv", + 72, + [ + "hall:tirate" + ] + ], + [ + "【3기】민트초코칩", + 71, + 11, + 84, + "che_event_척사", + [ + 40969, + 61338, + 60004, + 518999, + 46093 + ], + 1, + "f53316b.jpg?=20180903", + 3, + "che_180823_OWsv", + 75, + [ + "hall:dex4", + "hall:ttrate" + ] + ], + [ + "【3기】시부야린", + 14, + 73, + 78, + "che_event_저격", + [ + 0, + 0, + 0, + 0, + 0 + ], + 1, + "befc65e.jpg?=20180824", + 3, + "che_180823_OWsv", + 77, + [ + "hall:dedication" + ] + ], + [ + "【3기】조밧", + 69, + 87, + 10, + "che_event_무쌍", + [ + 13843, + 48487, + 362135, + 100164, + 19893 + ], + 0, + "default.jpg", + 3, + "che_180823_OWsv", + 78, + [ + "hall:dedication", + "hall:winrate" + ] + ], + [ + "【3기】미스티", + 86, + 70, + 10, + "che_event_징병", + [ + 303011, + 90413, + 105582, + 109313, + 12040 + ], + 1, + "1aadcba.png?=20180908", + 3, + "che_180823_OWsv", + 79, + [ + "chief:6", + "hall:firenum", + "hall:tlrate" + ] + ], + [ + "【3기】김나영", + 78, + 77, + 10, + "che_event_무쌍", + [ + 47434, + 375495, + 18135, + 111235, + 25663 + ], + 1, + "2e8d570.jpg?=20180823", + 3, + "che_180823_OWsv", + 80, + [ + "hall:dex2" + ] + ], + [ + "【3기】카미야 나오", + 86, + 70, + 10, + "che_event_위압", + [ + 492919, + 28506, + 73738, + 100671, + 28939 + ], + 1, + "df23b15.jpg?=20180823", + 3, + "che_180823_OWsv", + 81, + [ + "hall:dex1", + "hall:experience", + "hall:killrate", + "hall:tlrate" + ] + ], + [ + "【3기】카오스피닉스", + 72, + 10, + 85, + "che_event_신중", + [ + 81854, + 50759, + 66916, + 403873, + 30301 + ], + 1, + "2af0641.jpg?=20180706", + 3, + "che_180823_OWsv", + 82, + [ + "hall:tirate", + "hall:ttrate" + ] + ], + [ + "【3기】EMP", + 73, + 10, + 84, + "che_event_격노", + [ + 25568, + 91687, + 11185, + 650072, + 47161 + ], + 0, + "default.jpg", + 3, + "che_180823_OWsv", + 85, + [ + "hall:dex4", + "hall:dex5", + "hall:killcrew", + "hall:killnum", + "hall:winrate" + ] + ], + [ + "【3기】잉잉", + 69, + 88, + 10, + "che_event_돌격", + [ + 27436, + 24503, + 371526, + 95074, + 25887 + ], + 1, + "6cfa7ae.jpg?=20180909", + 3, + "che_180823_OWsv", + 86, + [ + "hall:betgold", + "hall:tprate" + ] + ], + [ + "【3기】고먐미", + 79, + 77, + 10, + "che_event_징병", + [ + 456486, + 34566, + 238111, + 68589, + 62524 + ], + 1, + "c353891.jpg?=20180828", + 3, + "che_180823_OWsv", + 87, + [ + "hall:dex1", + "hall:dex5" + ] + ], + [ + "【3기】늘모", + 74, + 80, + 11, + "che_event_위압", + [ + 655094, + 53450, + 116891, + 169239, + 23325 + ], + 1, + "e7c163.png?=20180801", + 3, + "che_180823_OWsv", + 88, + [ + "hall:dex1", + "hall:killcrew", + "hall:warnum" + ] + ], + [ + "【3기】whan", + 73, + 82, + 10, + "che_event_척사", + [ + 76846, + 443383, + 49310, + 87172, + 39968 + ], + 0, + "default.jpg", + 3, + "che_180823_OWsv", + 90, + [ + "hall:dex2" + ] + ], + [ + "【3기】♂", + 88, + 69, + 10, + "che_event_필살", + [ + 101047, + 392165, + 53609, + 110187, + 21354 + ], + 1, + "6f11fd5.jpg?=20180908", + 3, + "che_180823_OWsv", + 92, + [ + "hall:dex2", + "hall:firenum", + "hall:tlrate" + ] + ], + [ + "【3기】ㅇㄷㄷㄷ", + 73, + 82, + 10, + "che_event_무쌍", + [ + 78723, + 322171, + 50117, + 104444, + 12602 + ], + 0, + "default.jpg", + 3, + "che_180823_OWsv", + 94, + [ + "hall:firenum" + ] + ], + [ + "【3기】버그", + 74, + 82, + 10, + "che_event_필살", + [ + 21080, + 95436, + 461525, + 102087, + 19127 + ], + 1, + "d85ebbb.jpg?=20180828", + 3, + "che_180823_OWsv", + 95, + [ + "hall:dex3", + "hall:killnum", + "hall:winrate" + ] + ], + [ + "【3기】플스4수리함", + 70, + 12, + 82, + "che_event_필살", + [ + 56407, + 14933, + 45814, + 393607, + 25664 + ], + 0, + "default.jpg", + 3, + "che_180823_OWsv", + 96, + [ + "hall:tirate" + ] + ], + [ + "【3기】이치노세 시키", + 14, + 66, + 86, + "che_event_저격", + [ + 0, + 0, + 0, + 0, + 0 + ], + 1, + "a9ed36.jpg?=20180825", + 3, + "che_180823_OWsv", + 99, + [ + "hall:betgold", + "hall:betwin", + "hall:betwingold", + "hall:dedication" + ] + ], + [ + "【3기】아이돌도서관협회장", + 72, + 84, + 10, + "che_event_필살", + [ + 410570, + 38607, + 72735, + 95230, + 31749 + ], + 1, + "76b0000.gif?=20180909", + 3, + "che_180823_OWsv", + 100, + [ + "chief:10", + "hall:betwin", + "hall:betwingold", + "hall:dex1" + ] + ], + [ + "【3기】고긔가먹고싶", + 70, + 10, + 86, + "che_event_집중", + [ + 12371, + 13770, + 1161, + 62425, + 6422 + ], + 0, + "default.jpg", + 3, + "che_180823_OWsv", + 103, + [ + "hall:tirate" + ] + ], + [ + "【3기】페이트", + 81, + 42, + 41, + "che_event_무쌍", + [ + 1907, + 9788, + 7036, + 14153, + 830532 + ], + 1, + "6b8a0d8.jpg?=20180807", + 3, + "che_180823_OWsv", + 104, + [ + "hall:dex5", + "hall:experience", + "hall:killcrew", + "hall:killrate", + "hall:winrate" + ] + ], + [ + "【3기】타카가키 카에데", + 80, + 9, + 75, + "che_event_격노", + [ + 46938, + 63264, + 24115, + 351906, + 82507 + ], + 1, + "22f307c.jpg?=20180825", + 3, + "che_180823_OWsv", + 107, + [ + "hall:dex5", + "hall:experience" + ] + ], + [ + "【3기】ㅊㅂ", + 88, + 62, + 15, + "che_event_저격", + [ + 215952, + 9669, + 67013, + 60043, + 6176 + ], + 1, + "fd20d5d.png?=20180724", + 3, + "che_180823_OWsv", + 110, + [ + "hall:tlrate" + ] + ], + [ + "【3기】くま", + 73, + 11, + 83, + "che_event_필살", + [ + 113543, + 46422, + 129400, + 604810, + 25853 + ], + 0, + "default.jpg", + 3, + "che_180823_OWsv", + 112, + [ + "hall:dex4", + "hall:killcrew", + "hall:warnum" + ] + ], + [ + "【3기】도적", + 71, + 84, + 10, + "che_event_저격", + [ + 13924, + 67488, + 444614, + 114951, + 25573 + ], + 0, + "default.jpg", + 3, + "che_180823_OWsv", + 113, + [ + "hall:dex3" + ] + ], + [ + "【3기】시마무라 우즈키", + 71, + 83, + 10, + "che_event_필살", + [ + 68247, + 373352, + 36736, + 44526, + 27060 + ], + 1, + "11b6f0f.jpg?=20180829", + 3, + "che_180823_OWsv", + 115, + [ + "hall:betgold", + "hall:betwin", + "hall:betwingold", + "hall:tprate" + ] + ], + [ + "【3기】사토 신", + 20, + 65, + 80, + "che_event_신중", + [ + 0, + 0, + 0, + 0, + 0 + ], + 1, + "bb50e83.png?=20180824", + 3, + "che_180823_OWsv", + 119, + [ + "hall:dedication" + ] + ], + [ + "【3기】태극권", + 84, + 68, + 10, + "che_event_척사", + [ + 45600, + 30105, + 434387, + 78535, + 10418 + ], + 0, + "default.jpg", + 3, + "che_180823_OWsv", + 128, + [ + "hall:tlrate" + ] + ], + [ + "【3기】재야", + 66, + 11, + 86, + "che_event_집중", + [ + 608, + 0, + 14944, + 31226, + 0 + ], + 1, + "80a0591.jpg?=20180826", + 3, + "che_180823_OWsv", + 139, + [ + "hall:tirate" + ] + ], + [ + "【3기】Lenn", + 86, + 69, + 10, + "che_event_위압", + [ + 4054, + 16088, + 954, + 11775, + 646951 + ], + 1, + "fb2c85e.jpg?=20180825", + 3, + "che_180823_OWsv", + 144, + [ + "hall:dex5", + "hall:killcrew", + "hall:killrate", + "hall:winrate" + ] + ], + [ + "【3기】가소롭군닝겐쿠쿡", + 65, + 10, + 86, + "che_event_필살", + [ + 0, + 0, + 0, + 0, + 0 + ], + 0, + "default.jpg", + 3, + "che_180823_OWsv", + 197, + [ + "hall:tirate" + ] + ], + [ + "【3기】오오츠키 유이", + 10, + 85, + 68, + "che_event_저격", + [ + 0, + 0, + 0, + 0, + 0 + ], + 1, + "bc81c9d.png?=20180828", + 3, + "che_180823_OWsv", + 204, + [ + "hall:tprate" + ] + ], + [ + "【3기】이번도구경온누군가", + 10, + 71, + 81, + "che_event_격노", + [ + 0, + 0, + 0, + 0, + 0 + ], + 1, + "6ce6d42.gif?=20180830", + 3, + "che_180823_OWsv", + 212, + [ + "hall:betgold", + "hall:betwin", + "hall:betwingold" + ] + ], + [ + "【3기】여기애들다못생겼음", + 10, + 67, + 85, + "che_event_환술", + [ + 0, + 0, + 0, + 0, + 0 + ], + 0, + "default.jpg", + 3, + "che_180823_OWsv", + 214, + [ + "hall:tirate" + ] + ], + [ + "【3기】아오바 모카", + 80, + 72, + 10, + "che_event_위압", + [ + 35988, + 165861, + 25417, + 55446, + 6622 + ], + 1, + "8e5030a.gif?=20180830", + 3, + "che_180823_OWsv", + 222, + [ + "hall:betgold" + ] + ], + [ + "【3기】리체", + 72, + 10, + 79, + "che_event_필살", + [ + 30485, + 38529, + 27709, + 313912, + 22388 + ], + 1, + "65f364d.gif?=20180904", + 3, + "che_180823_OWsv", + 267, + [ + "chief:7", + "hall:betgold", + "hall:betwin", + "hall:betwingold" + ] + ], + [ + "【3기】엔틱", + 78, + 68, + 10, + null, + [ + 187104, + 22131, + 43742, + 45094, + 18542 + ], + 0, + "default.jpg", + 3, + "che_180823_OWsv", + 271, + [ + "hall:betgold" + ] + ], + [ + "【4기】미스트 뱀파이어", + 74, + 10, + 83, + "che_event_신산", + [ + 39692, + 37650, + 88767, + 550379, + 19224 + ], + 0, + "default.jpg", + 4, + "che_180920_idKB", + 4, + [ + "chief:5", + "hall:betgold", + "hall:dex4", + "hall:killcrew" + ] + ], + [ + "【4기】카이스트", + 71, + 9, + 83, + "che_event_환술", + [ + 23800, + 9744, + 88692, + 423257, + 18339 + ], + 1, + "9361ef8.jpg?=20180907", + 4, + "che_180920_idKB", + 6, + [ + "hall:dex4", + "hall:killnum" + ] + ], + [ + "【4기】평민킬러", + 72, + 83, + 11, + "che_event_척사", + [ + 550555, + 17547, + 55128, + 133675, + 29418 + ], + 1, + "6add0f.jpg?=20180515", + 4, + "che_180920_idKB", + 7, + [ + "hall:dex1", + "hall:experience", + "hall:killcrew", + "hall:killnum", + "hall:warnum" + ] + ], + [ + "【4기】북오더", + 11, + 69, + 85, + "che_event_신산", + [ + 5360, + 0, + 7114, + 2503, + 7781 + ], + 1, + "c0276e1.gif?=20180917", + 4, + "che_180920_idKB", + 8, + [ + "hall:dedication", + "hall:experience", + "hall:firenum" + ] + ], + [ + "【4기】아비그네일", + 81, + 76, + 10, + "che_event_저격", + [ + 703575, + 28205, + 59804, + 154355, + 53862 + ], + 1, + "6ac8d24.jpg?=20180922", + 4, + "che_180920_idKB", + 10, + [ + "hall:dex1", + "hall:dex5", + "hall:killcrew", + "hall:killnum", + "hall:killrate", + "hall:warnum", + "hall:winrate" + ] + ], + [ + "【4기】취한 말랑말", + 71, + 86, + 10, + "che_event_무쌍", + [ + 3685, + 5291, + 376679, + 93323, + 14462 + ], + 1, + "6094d05.jpg?=20180823", + 4, + "che_180920_idKB", + 11, + [ + "hall:dex3", + "hall:tprate" + ] + ], + [ + "【4기】댄스러시 스타덤", + 70, + 10, + 87, + "che_event_저격", + [ + 14825, + 23016, + 29737, + 312419, + 33446 + ], + 1, + "595e059.png?=20180920", + 4, + "che_180920_idKB", + 14, + [ + "chief:12", + "hall:betgold", + "hall:betwin", + "hall:killrate" + ] + ], + [ + "【4기】사운드볼텍스", + 71, + 84, + 10, + "che_event_무쌍", + [ + 15019, + 14896, + 276156, + 48971, + 31531 + ], + 1, + "13a2ed0.png?=20180920", + 4, + "che_180920_idKB", + 15, + [ + "chief:6", + "hall:killrate", + "hall:tprate" + ] + ], + [ + "【4기】くま", + 72, + 10, + 83, + "che_event_반계", + [ + 45619, + 49464, + 47425, + 437741, + 22690 + ], + 1, + "73d75c2.jpg?=20180923", + 4, + "che_180920_idKB", + 17, + [ + "hall:dex4" + ] + ], + [ + "【4기】육도삼략귀모신산", + 12, + 66, + 89, + "che_event_반계", + [ + 0, + 0, + 0, + 0, + 0 + ], + 0, + "default.jpg", + 4, + "che_180920_idKB", + 20, + [ + "chief:11", + "hall:dedication", + "hall:experience" + ] + ], + [ + "【4기】네로", + 72, + 83, + 10, + "che_event_견고", + [ + 422829, + 24798, + 49723, + 44665, + 28785 + ], + 1, + "b2decfe.png?=20180927", + 4, + "che_180920_idKB", + 21, + [ + "hall:dex1", + "hall:experience", + "hall:killrate" + ] + ], + [ + "【4기】n아텐 누", + 86, + 72, + 10, + "che_event_격노", + [ + 368263, + 44015, + 127536, + 120706, + 11910 + ], + 1, + "f52b563.png?=20180914", + 4, + "che_180920_idKB", + 22, + [ + "hall:dex1" + ] + ], + [ + "【4기】만샘", + 70, + 11, + 84, + "che_event_집중", + [ + 34403, + 32371, + 29022, + 379080, + 16770 + ], + 1, + "37d189c.jpg?=20180420", + 4, + "che_180920_idKB", + 23, + [ + "hall:betwin" + ] + ], + [ + "【4기】몬스터볼", + 80, + 10, + 73, + "che_event_귀병", + [ + 73965, + 30754, + 34570, + 147996, + 11187 + ], + 1, + "5249d93.jpg?=20180920", + 4, + "che_180920_idKB", + 26, + [ + "hall:betwin" + ] + ], + [ + "【4기】에드나", + 72, + 83, + 10, + "che_event_돌격", + [ + 32525, + 447053, + 35207, + 149488, + 23531 + ], + 1, + "7c39fe8.gif?=20181007", + 4, + "che_180920_idKB", + 27, + [ + "hall:dex2", + "hall:firenum", + "hall:killnum" + ] + ], + [ + "【4기】야부키 나코", + 83, + 72, + 10, + "che_event_위압", + [ + 113841, + 345237, + 39818, + 102705, + 21023 + ], + 1, + "eac341b.png?=20181005", + 4, + "che_180920_idKB", + 28, + [ + "hall:dex2", + "hall:tlrate" + ] + ], + [ + "【4기】카오스피닉스", + 71, + 10, + 85, + "che_event_척사", + [ + 33109, + 36307, + 62363, + 297314, + 13179 + ], + 1, + "2af0641.jpg?=20180706", + 4, + "che_180920_idKB", + 30, + [ + "hall:tirate" + ] + ], + [ + "【4기】처리오빠", + 91, + 11, + 65, + "che_event_징병", + [ + 17661, + 23306, + 10243, + 206302, + 82133 + ], + 1, + "589d020.jpg?=20180911", + 4, + "che_180920_idKB", + 31, + [ + "hall:betwin", + "hall:dex5", + "hall:tlrate", + "hall:ttrate" + ] + ], + [ + "【4기】삼뚝배기", + 74, + 84, + 10, + "che_event_필살", + [ + 486388, + 32180, + 66450, + 169517, + 26048 + ], + 1, + "b83b5ec.jpg?=20180920", + 4, + "che_180920_idKB", + 32, + [ + "hall:dex1", + "hall:killcrew", + "hall:killnum", + "hall:tprate", + "hall:warnum" + ] + ], + [ + "【4기】Card", + 87, + 69, + 10, + "che_event_필살", + [ + 26268, + 337804, + 19074, + 85932, + 19302 + ], + 1, + "1dcceff.gif?=20180920", + 4, + "che_180920_idKB", + 34, + [ + "hall:betgold", + "hall:betrate", + "hall:betwin", + "hall:betwingold", + "hall:dex2" + ] + ], + [ + "【4기】곰돌이푸", + 69, + 10, + 87, + "che_event_저격", + [ + 10531, + 38201, + 44673, + 266221, + 21410 + ], + 0, + "default.jpg", + 4, + "che_180920_idKB", + 35, + [ + "hall:betwin", + "hall:tirate" + ] + ], + [ + "【4기】UNIANA", + 12, + 67, + 86, + "che_event_저격", + [ + 0, + 0, + 0, + 0, + 0 + ], + 1, + "3f57065.png?=20180920", + 4, + "che_180920_idKB", + 39, + [ + "hall:dedication" + ] + ], + [ + "【4기】화난용", + 88, + 65, + 13, + "che_event_저격", + [ + 24951, + 7279, + 22790, + 29047, + 407099 + ], + 1, + "8b16622.jpg?=20180921", + 4, + "che_180920_idKB", + 40, + [ + "chief:10", + "hall:dedication", + "hall:dex5", + "hall:experience", + "hall:killrate" + ] + ], + [ + "【4기】랜슬롯", + 69, + 12, + 85, + "che_event_신중", + [ + 24888, + 24360, + 12387, + 266151, + 11751 + ], + 1, + "c6b18a7.jpg?=20180920", + 4, + "che_180920_idKB", + 41, + [ + "hall:ttrate" + ] + ], + [ + "【4기】나아가다", + 70, + 86, + 11, + "che_event_무쌍", + [ + 7959, + 34075, + 262397, + 48795, + 30785 + ], + 0, + "default.jpg", + 4, + "che_180920_idKB", + 42, + [ + "hall:killrate", + "hall:winrate" + ] + ], + [ + "【4기】살수묵랑", + 75, + 80, + 10, + "che_event_무쌍", + [ + 14110, + 49444, + 295360, + 64506, + 3643 + ], + 1, + "a9298fc.png?=20180628", + 4, + "che_180920_idKB", + 43, + [ + "hall:winrate" + ] + ], + [ + "【4기】머핀", + 70, + 10, + 84, + "che_event_척사", + [ + 39961, + 25048, + 35221, + 413026, + 19237 + ], + 1, + "b2fcd42.jpg?=20180924", + 4, + "che_180920_idKB", + 44, + [ + "hall:dex4" + ] + ], + [ + "【4기】오늘의시", + 75, + 10, + 81, + "che_event_신산", + [ + 39140, + 36691, + 77924, + 277429, + 4382 + ], + 1, + "97e5890.jpg?=20180921", + 4, + "che_180920_idKB", + 45, + [ + "hall:winrate" + ] + ], + [ + "【4기】민트 초코 칩", + 71, + 11, + 85, + "che_event_반계", + [ + 42486, + 70935, + 64600, + 411450, + 15692 + ], + 1, + "50a2a41.jpg?=20180929", + 4, + "che_180920_idKB", + 47, + [ + "hall:dex4" + ] + ], + [ + "【4기】리안", + 73, + 10, + 84, + "che_event_저격", + [ + 33341, + 71461, + 47493, + 347034, + 3226 + ], + 1, + "2347b5d.png?=20180929", + 4, + "che_180920_idKB", + 48, + [ + "hall:tirate" + ] + ], + [ + "【4기】소환수", + 10, + 65, + 91, + "che_event_집중", + [ + 0, + 0, + 0, + 0, + 0 + ], + 1, + "7761e3c.jpg?=20180925", + 4, + "che_180920_idKB", + 49, + [ + "hall:dedication" + ] + ], + [ + "【4기】사무엘", + 71, + 84, + 10, + "che_event_무쌍", + [ + 48137, + 373281, + 38488, + 106864, + 48046 + ], + 1, + "63dc452.gif?=20181007", + 4, + "che_180920_idKB", + 50, + [ + "hall:dex2", + "hall:dex5", + "hall:experience", + "hall:firenum", + "hall:tprate" + ] + ], + [ + "【4기】D.va", + 69, + 87, + 10, + "che_event_척사", + [ + 374470, + 9464, + 62295, + 60333, + 23264 + ], + 1, + "d8ca176.jpg?=20180919", + 4, + "che_180920_idKB", + 52, + [ + "hall:dex1" + ] + ], + [ + "【4기】이바라키도지", + 75, + 78, + 11, + "che_event_저격", + [ + 58062, + 275499, + 13534, + 77392, + 12635 + ], + 1, + "6735612.png?=20180920", + 4, + "che_180920_idKB", + 53, + [ + "hall:dex2", + "hall:winrate" + ] + ], + [ + "【4기】343", + 85, + 70, + 10, + "che_event_무쌍", + [ + 39943, + 52285, + 308148, + 84021, + 140610 + ], + 0, + "default.jpg", + 4, + "che_180920_idKB", + 54, + [ + "hall:dex3", + "hall:dex5" + ] + ], + [ + "【4기】요정", + 70, + 85, + 11, + "che_event_격노", + [ + 25374, + 44461, + 480161, + 117902, + 26024 + ], + 1, + "a2e5934.png?=20181005", + 4, + "che_180920_idKB", + 56, + [ + "hall:betwingold", + "hall:dex3", + "hall:firenum", + "hall:killcrew" + ] + ], + [ + "【4기】오니즈카", + 70, + 85, + 11, + "che_event_무쌍", + [ + 32187, + 49027, + 623233, + 132977, + 47681 + ], + 1, + "ca0b15e.gif?=20181003", + 4, + "che_180920_idKB", + 57, + [ + "hall:dex3", + "hall:dex5", + "hall:killcrew", + "hall:killnum", + "hall:warnum", + "hall:winrate" + ] + ], + [ + "【4기】멀린", + 85, + 71, + 11, + "che_event_견고", + [ + 23882, + 53211, + 326979, + 84335, + 23714 + ], + 1, + "3451bfb.jpg?=20180920", + 4, + "che_180920_idKB", + 59, + [ + "hall:betgold", + "hall:betrate", + "hall:dex3", + "hall:tlrate" + ] + ], + [ + "【4기】료우기시키", + 71, + 84, + 10, + "che_event_징병", + [ + 235381, + 25279, + 49702, + 62311, + 11071 + ], + 1, + "21b50f8.jpg?=20180628", + 4, + "che_180920_idKB", + 61, + [ + "hall:dex1" + ] + ], + [ + "【4기】김나영", + 74, + 82, + 11, + "che_event_징병", + [ + 627412, + 66791, + 123809, + 168420, + 40471 + ], + 1, + "2e8d570.jpg?=20180823", + 4, + "che_180920_idKB", + 62, + [ + "hall:betgold", + "hall:betrate", + "hall:betwin", + "hall:betwingold", + "hall:dex1", + "hall:killcrew", + "hall:killnum", + "hall:warnum" + ] + ], + [ + "【4기】성산동피주먹", + 81, + 72, + 10, + "che_event_징병", + [ + 40028, + 332014, + 19912, + 74292, + 34827 + ], + 1, + "50ac5f9.jpg?=20180922", + 4, + "che_180920_idKB", + 64, + [ + "hall:dex2" + ] + ], + [ + "【4기】모라스", + 75, + 10, + 82, + "che_event_저격", + [ + 95531, + 33656, + 52433, + 379296, + 23626 + ], + 1, + "383cea4.jpg?=20180919", + 4, + "che_180920_idKB", + 66, + [ + "hall:ttrate" + ] + ], + [ + "【4기】개미", + 75, + 80, + 12, + "che_event_돌격", + [ + 60996, + 446177, + 34714, + 118909, + 20454 + ], + 0, + "default.jpg", + 4, + "che_180920_idKB", + 67, + [ + "hall:dex2", + "hall:killnum", + "hall:warnum" + ] + ], + [ + "【4기】재야", + 10, + 75, + 82, + "che_event_귀병", + [ + 0, + 0, + 0, + 0, + 0 + ], + 1, + "80a0591.jpg?=20180826", + 4, + "che_180920_idKB", + 68, + [ + "hall:betgold", + "hall:betrate", + "hall:betwingold", + "hall:ttrate" + ] + ], + [ + "【4기】구다코", + 72, + 11, + 83, + "che_event_신산", + [ + 19646, + 45434, + 77733, + 650079, + 33890 + ], + 1, + "1528b91.png?=20180920", + 4, + "che_180920_idKB", + 70, + [ + "hall:betrate", + "hall:betwin", + "hall:betwingold", + "hall:dex4", + "hall:experience", + "hall:killcrew", + "hall:warnum" + ] + ], + [ + "【4기】666", + 83, + 10, + 72, + "che_event_신중", + [ + 31198, + 29394, + 52062, + 426875, + 32534 + ], + 1, + "382883b.jpg?=20181004", + 4, + "che_180920_idKB", + 71, + [ + "hall:dex4" + ] + ], + [ + "【4기】병리학적자세", + 81, + 10, + 76, + "che_event_집중", + [ + 19719, + 43710, + 35952, + 368533, + 31949 + ], + 1, + "3679089.jpg?=20180629", + 4, + "che_180920_idKB", + 72, + [ + "hall:winrate" + ] + ], + [ + "【4기】악동", + 86, + 71, + 10, + "che_event_징병", + [ + 125889, + 193423, + 137441, + 80164, + 12568 + ], + 1, + "227b2fc.jpg?=20180920", + 4, + "che_180920_idKB", + 73, + [ + "hall:tlrate" + ] + ], + [ + "【4기】니시키노 마키", + 70, + 10, + 85, + "che_event_반계", + [ + 19810, + 14485, + 24888, + 149081, + 4624 + ], + 1, + "480aa7e.jpg?=20180919", + 4, + "che_180920_idKB", + 74, + [ + "hall:tirate" + ] + ], + [ + "【4기】5분장", + 71, + 10, + 86, + "che_event_저격", + [ + 43685, + 31600, + 35551, + 391767, + 25294 + ], + 0, + "default.jpg", + 4, + "che_180920_idKB", + 76, + [ + "chief:9", + "hall:ttrate" + ] + ], + [ + "【4기】최$ 지존맨 $강", + 72, + 83, + 10, + "che_event_척사", + [ + 22495, + 43959, + 362156, + 91567, + 21610 + ], + 1, + "2e31c25.jpg?=20181006", + 4, + "che_180920_idKB", + 79, + [ + "hall:dex3" + ] + ], + [ + "【4기】개노잼놀아라", + 80, + 9, + 78, + "che_event_격노", + [ + 40121, + 50294, + 32375, + 226732, + 29318 + ], + 0, + "default.jpg", + 4, + "che_180920_idKB", + 84, + [ + "hall:betrate", + "hall:betwingold" + ] + ], + [ + "【4기】카나메", + 10, + 70, + 84, + "che_event_신중", + [ + 0, + 0, + 0, + 0, + 0 + ], + 1, + "6e76dfe.jpg?=20180920", + 4, + "che_180920_idKB", + 85, + [ + "hall:tirate" + ] + ], + [ + "【4기】소열제유비", + 72, + 84, + 10, + "che_event_견고", + [ + 11387, + 28409, + 266302, + 77049, + 10257 + ], + 1, + "a3b1bbb.png?=20180927", + 4, + "che_180920_idKB", + 86, + [ + "hall:tprate", + "hall:ttrate" + ] + ], + [ + "【4기】보스곰", + 78, + 10, + 79, + "che_event_격노", + [ + 31668, + 58588, + 59586, + 495181, + 22887 + ], + 1, + "76bf7f6.jpg?=20181007", + 4, + "che_180920_idKB", + 91, + [ + "hall:dex4" + ] + ], + [ + "【4기】whan", + 75, + 83, + 10, + "che_event_무쌍", + [ + 42469, + 571227, + 60657, + 206894, + 20573 + ], + 1, + "68aacd2.jpg?=20180929", + 4, + "che_180920_idKB", + 93, + [ + "hall:dex2", + "hall:killcrew", + "hall:killnum", + "hall:tprate", + "hall:warnum" + ] + ], + [ + "【4기】쉬원찮은남자", + 81, + 74, + 11, + "che_event_징병", + [ + 116387, + 388862, + 62044, + 104735, + 42207 + ], + 0, + "default.jpg", + 4, + "che_180920_idKB", + 94, + [ + "hall:dex2", + "hall:dex5", + "hall:warnum" + ] + ], + [ + "【4기】헨젤과 그레텔", + 70, + 86, + 11, + "che_event_위압", + [ + 24800, + 205402, + 14520, + 27234, + 24838 + ], + 0, + "default.jpg", + 4, + "che_180920_idKB", + 99, + [ + "hall:killrate", + "hall:tprate", + "hall:ttrate" + ] + ], + [ + "【4기】힝힝", + 69, + 85, + 10, + "che_event_저격", + [ + 389589, + 10243, + 26616, + 42848, + 44706 + ], + 1, + "298293e.jpg?=20181006", + 4, + "che_180920_idKB", + 100, + [ + "chief:8", + "hall:dex1", + "hall:dex5", + "hall:experience", + "hall:killrate" + ] + ], + [ + "【4기】혈소판", + 11, + 67, + 89, + "che_event_귀병", + [ + 0, + 0, + 0, + 0, + 0 + ], + 1, + "da985e.jpg?=20181004", + 4, + "che_180920_idKB", + 101, + [ + "hall:dedication", + "hall:ttrate" + ] + ], + [ + "【4기】1288965", + 71, + 86, + 10, + "che_event_위압", + [ + 5324, + 24407, + 342321, + 87536, + 17810 + ], + 0, + "default.jpg", + 4, + "che_180920_idKB", + 102, + [ + "hall:dex3", + "hall:tprate" + ] + ], + [ + "【4기】화계장터마스코트", + 72, + 10, + 85, + "che_event_신산", + [ + 59486, + 61241, + 19399, + 507079, + 36389 + ], + 1, + "24cd9f7.gif?=20180927", + 4, + "che_180920_idKB", + 103, + [ + "chief:7", + "hall:dex4" + ] + ], + [ + "【4기】리자", + 90, + 11, + 11, + "che_event_견고", + [ + 1624, + 0, + 0, + 3270, + 106626 + ], + 1, + "3347525.jpg?=20180923", + 4, + "che_180920_idKB", + 106, + [ + "hall:dex5", + "hall:killrate", + "hall:tlrate", + "hall:winrate" + ] + ], + [ + "【4기】하우젤", + 88, + 68, + 10, + "che_event_위압", + [ + 20159, + 38333, + 431831, + 93542, + 17783 + ], + 1, + "dcff9fd.jpg?=20180823", + 4, + "che_180920_idKB", + 107, + [ + "hall:dex3", + "hall:tlrate" + ] + ], + [ + "【4기】울다", + 10, + 70, + 81, + "che_event_필살", + [ + 0, + 0, + 0, + 0, + 0 + ], + 0, + "default.jpg", + 4, + "che_180920_idKB", + 112, + [ + "hall:tirate" + ] + ], + [ + "【4기】민토트끼", + 83, + 72, + 10, + "che_event_무쌍", + [ + 27848, + 48733, + 429545, + 135358, + 14754 + ], + 1, + "3465a26.jpg?=20181007", + 4, + "che_180920_idKB", + 113, + [ + "hall:dex3", + "hall:firenum" + ] + ], + [ + "【4기】가로쉬 헬스크림", + 71, + 85, + 10, + "che_event_척사", + [ + 222758, + 34960, + 65948, + 47798, + 25852 + ], + 1, + "d8828c4.jpg?=20181004", + 4, + "che_180920_idKB", + 115, + [ + "hall:experience", + "hall:tprate" + ] + ], + [ + "【4기】에미야[얼터]", + 77, + 10, + 75, + "che_event_집중", + [ + 12903, + 2940, + 1190, + 55502, + 1009 + ], + 1, + "105a8a.png?=20180920", + 4, + "che_180920_idKB", + 118, + [ + "hall:tlrate" + ] + ], + [ + "【4기】인공지능미사일", + 71, + 12, + 83, + "che_event_격노", + [ + 39981, + 34586, + 49048, + 443571, + 33676 + ], + 0, + "default.jpg", + 4, + "che_180920_idKB", + 122, + [ + "hall:dex4" + ] + ], + [ + "【4기】아나", + 72, + 9, + 83, + "che_event_신산", + [ + 20790, + 49714, + 55572, + 298812, + 22823 + ], + 1, + "1216a23.jpg?=20180920", + 4, + "che_180920_idKB", + 126, + [ + "hall:betgold" + ] + ], + [ + "【4기】땅크땅크", + 88, + 68, + 11, + "che_event_징병", + [ + 106071, + 393969, + 45358, + 148749, + 14287 + ], + 0, + "default.jpg", + 4, + "che_180920_idKB", + 128, + [ + "hall:dex2", + "hall:tlrate" + ] + ], + [ + "【4기】꼬기", + 69, + 10, + 85, + "che_event_척사", + [ + 86146, + 30092, + 14847, + 297025, + 35395 + ], + 1, + "507327d.png?=20181001", + 4, + "che_180920_idKB", + 129, + [ + "hall:dedication" + ] + ], + [ + "【4기】대도 팬텀", + 11, + 82, + 72, + "che_event_격노", + [ + 0, + 0, + 0, + 0, + 0 + ], + 1, + "b5369a6.png?=20180921", + 4, + "che_180920_idKB", + 130, + [ + "hall:firenum" + ] + ], + [ + "【4기】파주조자룡", + 10, + 66, + 89, + "che_event_신중", + [ + 0, + 0, + 0, + 0, + 0 + ], + 0, + "default.jpg", + 4, + "che_180920_idKB", + 133, + [ + "hall:dedication" + ] + ], + [ + "【4기】잼잼", + 10, + 77, + 79, + "che_event_귀병", + [ + 0, + 0, + 0, + 0, + 0 + ], + 0, + "default.jpg", + 4, + "che_180920_idKB", + 135, + [ + "hall:dedication" + ] + ], + [ + "【4기】미아", + 84, + 72, + 10, + "che_event_격노", + [ + 31525, + 56587, + 464741, + 122044, + 21784 + ], + 1, + "4bc280.jpg?=20180928", + 4, + "che_180920_idKB", + 139, + [ + "hall:betrate", + "hall:betwin", + "hall:betwingold", + "hall:dex3", + "hall:firenum" + ] + ], + [ + "【4기】니가보인다", + 10, + 71, + 85, + "che_event_신산", + [ + 0, + 0, + 0, + 0, + 0 + ], + 1, + "3e146ac.jpg?=20181005", + 4, + "che_180920_idKB", + 144, + [ + "hall:firenum" + ] + ], + [ + "【4기】삼남매엄마", + 72, + 10, + 81, + "che_event_신산", + [ + 43189, + 22613, + 16437, + 140446, + 8310 + ], + 0, + "default.jpg", + 4, + "che_180920_idKB", + 155, + [ + "hall:ttrate" + ] + ], + [ + "【4기】죽창", + 85, + 69, + 11, + "che_event_격노", + [ + 109441, + 60768, + 216413, + 87920, + 6109 + ], + 1, + "1978b2c.jpg?=20180924", + 4, + "che_180920_idKB", + 156, + [ + "hall:tlrate" + ] + ], + [ + "【4기】빅째우맨", + 10, + 68, + 85, + "che_event_집중", + [ + 0, + 0, + 0, + 0, + 0 + ], + 1, + "3b481c3.png?=20180921", + 4, + "che_180920_idKB", + 163, + [ + "hall:tirate", + "hall:ttrate" + ] + ], + [ + "【4기】아이린", + 72, + 84, + 10, + "che_event_위압", + [ + 8217, + 35068, + 257484, + 49860, + 26662 + ], + 1, + "8dac73c.jpg?=20180922", + 4, + "che_180920_idKB", + 167, + [ + "hall:tprate" + ] + ], + [ + "【4기】천괴금", + 11, + 71, + 84, + "che_event_신산", + [ + 0, + 0, + 0, + 0, + 0 + ], + 1, + "f10e3d9.png?=20180702", + 4, + "che_180920_idKB", + 174, + [ + "hall:tirate" + ] + ], + [ + "【4기】제노에이지", + 69, + 10, + 87, + "che_event_반계", + [ + 16309, + 18458, + 42793, + 308218, + 32981 + ], + 1, + "af4fec8.png?=20180818", + 4, + "che_180920_idKB", + 187, + [ + "hall:tirate" + ] + ], + [ + "【4기】SARS죽어라", + 81, + 72, + 10, + "che_event_격노", + [ + 456673, + 16672, + 56076, + 182918, + 10976 + ], + 0, + "default.jpg", + 4, + "che_180920_idKB", + 205, + [ + "hall:dex1", + "hall:killcrew", + "hall:killnum", + "hall:warnum" + ] + ], + [ + "【4기】카이", + 83, + 71, + 10, + "che_event_척사", + [ + 40798, + 263812, + 39221, + 58508, + 9028 + ], + 0, + "default.jpg", + 4, + "che_180920_idKB", + 229, + [ + "hall:tlrate" + ] + ], + [ + "【4기】금설아", + 10, + 70, + 84, + "che_event_귀병", + [ + 0, + 0, + 0, + 0, + 0 + ], + 1, + "53f18df.jpg?=20180922", + 4, + "che_180920_idKB", + 267, + [ + "hall:tirate" + ] + ], + [ + "【4기】Black부관", + 10, + 69, + 83, + "che_event_집중", + [ + 0, + 0, + 0, + 9, + 0 + ], + 1, + "26f2120.gif?=20180925", + 4, + "che_180920_idKB", + 279, + [ + "hall:betgold", + "hall:betrate", + "hall:betwin", + "hall:betwingold" + ] + ], + [ + "【4기】우리즈원♡", + 10, + 75, + 77, + "che_event_척사", + [ + 0, + 0, + 0, + 0, + 0 + ], + 0, + "default.jpg", + 4, + "che_180920_idKB", + 283, + [ + "hall:firenum" + ] + ], + [ + "【4기】눈의소리", + 67, + 10, + 85, + "che_event_격노", + [ + 7133, + 21070, + 15591, + 135939, + 10696 + ], + 0, + "default.jpg", + 4, + "che_180920_idKB", + 314, + [ + "hall:betgold", + "hall:betrate", + "hall:betwingold" + ] + ], + [ + "【4기】나레이터킬러", + 69, + 83, + 10, + "che_event_돌격", + [ + 39369, + 201201, + 15393, + 38859, + 8826 + ], + 0, + "default.jpg", + 4, + "che_180920_idKB", + 322, + [ + "hall:winrate" + ] + ], + [ + "【4기】자는중임", + 85, + 67, + 10, + "che_event_징병", + [ + 0, + 0, + 0, + 4333, + 459335 + ], + 1, + "93af198.jpg?=20181007", + 4, + "che_180920_idKB", + 332, + [ + "hall:betgold", + "hall:betrate", + "hall:betwingold", + "hall:dedication", + "hall:dex5", + "hall:experience", + "hall:killrate", + "hall:winrate" + ] + ], + [ + "【4기】재송해요재송해요", + 10, + 81, + 66, + "che_event_필살", + [ + 0, + 0, + 0, + 0, + 0 + ], + 1, + "519f668.png?=20180929", + 4, + "che_180920_idKB", + 344, + [ + "hall:firenum" + ] + ], + [ + "【5기】제노에이지", + 64, + 9, + 77, + "che_event_척사", + [ + 36402, + 20985, + 55806, + 466946, + 23361 + ], + 1, + "af4fec8.png?=20180818", + 5, + "che_181025_XPaP", + 3, + [ + "hall:dex4", + "hall:winrate" + ] + ], + [ + "【5기】박일아", + 66, + 74, + 9, + "che_event_위압", + [ + 45084, + 46785, + 538337, + 76826, + 21607 + ], + 1, + "461add7.gif?=20181022", + 5, + "che_181025_XPaP", + 4, + [ + "hall:betwin", + "hall:betwingold", + "hall:dex3", + "hall:killrate" + ] + ], + [ + "【5기】레이널드", + 66, + 75, + 9, + "che_event_징병", + [ + 470721, + 39021, + 110384, + 139118, + 20949 + ], + 1, + "39784e5.jpg?=20181119", + 5, + "che_181025_XPaP", + 5, + [ + "chief:6", + "hall:dex1", + "hall:experience", + "hall:killcrew", + "hall:warnum" + ] + ], + [ + "【5기】아유", + 63, + 9, + 76, + "che_event_징병", + [ + 71632, + 13272, + 57668, + 353287, + 20061 + ], + 1, + "13333bf.jpg?=20181025", + 5, + "che_181025_XPaP", + 6, + [ + "hall:dedication" + ] + ], + [ + "【5기】김나영", + 64, + 78, + 9, + "che_event_무쌍", + [ + 39651, + 56408, + 664139, + 105312, + 49958 + ], + 1, + "2e8d570.jpg?=20180823", + 5, + "che_181025_XPaP", + 9, + [ + "chief:10", + "hall:betwin", + "hall:betwingold", + "hall:dex3", + "hall:dex5", + "hall:experience", + "hall:killcrew", + "hall:killnum", + "hall:killrate", + "hall:tprate", + "hall:warnum", + "hall:winrate" + ] + ], + [ + "【5기】연화", + 11, + 59, + 81, + "che_event_신산", + [ + 0, + 0, + 0, + 0, + 0 + ], + 1, + "77edaa0.gif?=20181122", + 5, + "che_181025_XPaP", + 11, + [ + "hall:firenum", + "hall:tirate" + ] + ], + [ + "【5기】사로나이트광산노예", + 64, + 9, + 75, + "che_event_신중", + [ + 51428, + 22312, + 83340, + 409816, + 16341 + ], + 1, + "3b864b.jpg?=20181029", + 5, + "che_181025_XPaP", + 12, + [ + "hall:dedication", + "hall:experience", + "hall:killnum", + "hall:winrate" + ] + ], + [ + "【5기】랜덤의지배자", + 64, + 9, + 76, + "che_event_반계", + [ + 58094, + 33217, + 108516, + 495066, + 40260 + ], + 1, + "2816ad.jpg?=20181118", + 5, + "che_181025_XPaP", + 13, + [ + "chief:12", + "hall:dedication", + "hall:dex4", + "hall:dex5", + "hall:experience", + "hall:killnum", + "hall:winrate" + ] + ], + [ + "【5기】야옹", + 65, + 9, + 74, + "che_event_집중", + [ + 40373, + 21972, + 60115, + 476301, + 21049 + ], + 1, + "a2e5934.png?=20181005", + 5, + "che_181025_XPaP", + 16, + [ + "hall:dex4", + "hall:killrate", + "hall:winrate" + ] + ], + [ + "【5기】스켈레톤", + 78, + 65, + 9, + "che_event_위압", + [ + 25874, + 54281, + 781840, + 142038, + 26036 + ], + 1, + "50454b0.png?=20181119", + 5, + "che_181025_XPaP", + 17, + [ + "hall:dex3", + "hall:killcrew", + "hall:killnum", + "hall:killrate", + "hall:tlrate", + "hall:warnum", + "hall:winrate" + ] + ], + [ + "【5기】로키", + 65, + 9, + 75, + "che_event_징병", + [ + 80615, + 12769, + 74443, + 314896, + 17839 + ], + 1, + "d95dd1d.jpg?=20181025", + 5, + "che_181025_XPaP", + 18, + [ + "hall:tirate" + ] + ], + [ + "【5기】스타킹", + 72, + 67, + 9, + "che_event_돌격", + [ + 30286, + 21658, + 498047, + 103640, + 30440 + ], + 1, + "a7d4ef2.png?=20180920", + 5, + "che_181025_XPaP", + 19, + [ + "hall:dex3", + "hall:dex5", + "hall:killnum", + "hall:killrate", + "hall:winrate" + ] + ], + [ + "【5기】블루좀주세요", + 64, + 9, + 77, + "che_event_의술", + [ + 25799, + 43944, + 76290, + 485586, + 21028 + ], + 1, + "bb7b3c6.jpg?=20181105", + 5, + "che_181025_XPaP", + 23, + [ + "hall:betgold", + "hall:dex4" + ] + ], + [ + "【5기】뫄뫄", + 63, + 77, + 9, + "che_event_징병", + [ + 168985, + 33880, + 273144, + 91062, + 23927 + ], + 1, + "9f034b.jpg?=20181030", + 5, + "che_181025_XPaP", + 24, + [ + "hall:tprate" + ] + ], + [ + "【5기】whan", + 65, + 76, + 9, + "che_event_격노", + [ + 266868, + 25411, + 53288, + 112882, + 29615 + ], + 1, + "68aacd2.jpg?=20180929", + 5, + "che_181025_XPaP", + 25, + [ + "hall:dex5", + "hall:firenum" + ] + ], + [ + "【5기】객체지향", + 75, + 66, + 9, + "che_event_무쌍", + [ + 527294, + 24804, + 96714, + 119528, + 32968 + ], + 1, + "bc26a2c.png?=20181121", + 5, + "che_181025_XPaP", + 26, + [ + "chief:8", + "hall:dex1", + "hall:experience", + "hall:killcrew", + "hall:killnum", + "hall:killrate", + "hall:warnum" + ] + ], + [ + "【5기】여행중인규일", + 71, + 9, + 71, + "che_event_저격", + [ + 17754, + 38769, + 38741, + 326399, + 14612 + ], + 0, + "default.jpg", + 5, + "che_181025_XPaP", + 27, + [ + "hall:ttrate" + ] + ], + [ + "【5기】토르", + 70, + 70, + 9, + "che_event_위압", + [ + 13891, + 78002, + 475486, + 166609, + 20564 + ], + 1, + "5dc81c4.jpg?=20181025", + 5, + "che_181025_XPaP", + 28, + [ + "hall:dex3", + "hall:killcrew", + "hall:warnum" + ] + ], + [ + "【5기】사무엘", + 13, + 59, + 78, + "che_event_집중", + [ + 6, + 0, + 0, + 0, + 0 + ], + 1, + "c78beb.gif?=20181119", + 5, + "che_181025_XPaP", + 29, + [ + "hall:betgold", + "hall:betwin", + "hall:betwingold", + "hall:dedication" + ] + ], + [ + "【5기】어린이", + 69, + 67, + 9, + "che_event_보병", + [ + 198235, + 5722, + 47605, + 87111, + 4298 + ], + 0, + "default.jpg", + 5, + "che_181025_XPaP", + 30, + [ + "hall:betwin", + "hall:betwingold", + "hall:ttrate" + ] + ], + [ + "【5기】브베", + 63, + 76, + 9, + "che_event_격노", + [ + 27816, + 57873, + 358679, + 154777, + 13518 + ], + 1, + "6ad3375.gif?=20181111", + 5, + "che_181025_XPaP", + 31, + [ + "hall:tprate" + ] + ], + [ + "【5기】제갈여포", + 63, + 9, + 78, + "che_event_반계", + [ + 58703, + 44761, + 29432, + 322250, + 12465 + ], + 1, + "e8e8adc.jpg?=20180419", + 5, + "che_181025_XPaP", + 33, + [ + "hall:tirate" + ] + ], + [ + "【5기】외심장", + 64, + 9, + 76, + "che_event_반계", + [ + 36551, + 32920, + 59862, + 345185, + 26241 + ], + 1, + "36110cd.jpg?=20180826", + 5, + "che_181025_XPaP", + 34, + [ + "hall:ttrate" + ] + ], + [ + "【5기】슬라임", + 64, + 76, + 9, + "che_event_척사", + [ + 22637, + 46018, + 221505, + 75650, + 15658 + ], + 1, + "f061c0e.jpg?=20181105", + 5, + "che_181025_XPaP", + 35, + [ + "hall:betgold", + "hall:firenum", + "hall:tprate" + ] + ], + [ + "【5기】준비만전", + 9, + 68, + 71, + "che_event_척사", + [ + 0, + 0, + 0, + 5, + 0 + ], + 1, + "2baa51d.png?=20181026", + 5, + "che_181025_XPaP", + 36, + [ + "hall:betgold", + "hall:firenum", + "hall:tirate" + ] + ], + [ + "【5기】지용갓", + 65, + 9, + 74, + "che_event_반계", + [ + 29833, + 35963, + 48671, + 328830, + 15074 + ], + 1, + "1f3a6e6.png?=20180926", + 5, + "che_181025_XPaP", + 40, + [ + "hall:ttrate" + ] + ], + [ + "【5기】세미", + 79, + 62, + 9, + "che_event_무쌍", + [ + 153468, + 302113, + 65001, + 123718, + 27836 + ], + 1, + "32b7fdd.jpg?=20181115", + 5, + "che_181025_XPaP", + 41, + [ + "hall:betgold", + "hall:betrate", + "hall:betwin", + "hall:betwingold", + "hall:dex2", + "hall:dex5", + "hall:tlrate" + ] + ], + [ + "【5기】지렁이", + 12, + 61, + 77, + "che_event_귀병", + [ + 0, + 0, + 421, + 0, + 710 + ], + 0, + "default.jpg", + 5, + "che_181025_XPaP", + 42, + [ + "hall:tirate" + ] + ], + [ + "【5기】별", + 66, + 9, + 75, + "che_event_격노", + [ + 69645, + 31109, + 101201, + 510270, + 21789 + ], + 1, + "1dd6263.jpg?=20181025", + 5, + "che_181025_XPaP", + 44, + [ + "hall:betgold", + "hall:betrate", + "hall:betwin", + "hall:betwingold", + "hall:dex4" + ] + ], + [ + "【5기】국밥공주", + 73, + 65, + 9, + "che_event_돌격", + [ + 407270, + 65686, + 113947, + 98671, + 20582 + ], + 1, + "e4be574.gif?=20181030", + 5, + "che_181025_XPaP", + 45, + [ + "hall:betgold", + "hall:dex1", + "hall:tlrate" + ] + ], + [ + "【5기】n아텐 누", + 63, + 9, + 78, + "che_event_신중", + [ + 27648, + 40231, + 66665, + 446428, + 21807 + ], + 1, + "862bd8e.gif?=20181028", + 5, + "che_181025_XPaP", + 47, + [ + "hall:dedication", + "hall:dex4" + ] + ], + [ + "【5기】5분장멍펫", + 69, + 72, + 9, + "che_event_징병", + [ + 96251, + 287301, + 113313, + 111606, + 12310 + ], + 1, + "e3085b8.jpg?=20181025", + 5, + "che_181025_XPaP", + 48, + [ + "hall:dex2", + "hall:experience", + "hall:ttrate" + ] + ], + [ + "【5기】스노우화이트", + 66, + 9, + 75, + "che_event_징병", + [ + 82923, + 27480, + 131878, + 513649, + 26700 + ], + 1, + "ef55d2c.jpg?=20181115", + 5, + "che_181025_XPaP", + 51, + [ + "hall:dex4", + "hall:warnum" + ] + ], + [ + "【5기】호도르", + 63, + 9, + 77, + "che_event_의술", + [ + 51745, + 10578, + 71204, + 367610, + 25425 + ], + 1, + "4a206a1.jpg?=20181122", + 5, + "che_181025_XPaP", + 53, + [ + "hall:dex5" + ] + ], + [ + "【5기】두나", + 65, + 9, + 75, + "che_event_필살", + [ + 23003, + 30467, + 47824, + 373566, + 15048 + ], + 1, + "bf0c572.png?=20181114", + 5, + "che_181025_XPaP", + 55, + [ + "hall:dex4" + ] + ], + [ + "【5기】메브", + 82, + 9, + 9, + "che_event_위압", + [ + 2431, + 3211, + 7090, + 7353, + 168984 + ], + 1, + "eece100.jpg?=20181117", + 5, + "che_181025_XPaP", + 57, + [ + "hall:dex5", + "hall:killrate", + "hall:tlrate" + ] + ], + [ + "【5기】북오더", + 63, + 74, + 10, + "che_event_징병", + [ + 169217, + 25652, + 100926, + 70500, + 5765 + ], + 1, + "c0276e1.gif?=20180917", + 5, + "che_181025_XPaP", + 58, + [ + "hall:tprate" + ] + ], + [ + "【5기】리나 인버스", + 61, + 9, + 76, + "che_event_신중", + [ + 14351, + 18919, + 19595, + 193212, + 6067 + ], + 1, + "edea22f.jpg?=20181109", + 5, + "che_181025_XPaP", + 59, + [ + "hall:tirate" + ] + ], + [ + "【5기】사토미나미", + 64, + 76, + 9, + "che_event_격노", + [ + 120294, + 394511, + 53112, + 109495, + 14523 + ], + 1, + "dc6174a.jpg?=20181111", + 5, + "che_181025_XPaP", + 63, + [ + "hall:dex2" + ] + ], + [ + "【5기】삼남매아빠", + 77, + 66, + 9, + "che_event_징병", + [ + 43427, + 62336, + 649154, + 162123, + 17930 + ], + 0, + "default.jpg", + 5, + "che_181025_XPaP", + 64, + [ + "hall:dex3", + "hall:killcrew", + "hall:killnum", + "hall:tlrate", + "hall:warnum" + ] + ], + [ + "【5기】거베라", + 65, + 73, + 9, + "che_event_척사", + [ + 93382, + 580590, + 71425, + 118121, + 24082 + ], + 1, + "e826340.jpg?=20181115", + 5, + "che_181025_XPaP", + 67, + [ + "hall:dex2", + "hall:killcrew", + "hall:killnum", + "hall:killrate", + "hall:warnum", + "hall:winrate" + ] + ], + [ + "【5기】상냥한요승상", + 69, + 9, + 71, + "che_event_신중", + [ + 53942, + 34447, + 52894, + 481462, + 18575 + ], + 1, + "76bf7f6.jpg?=20181007", + 5, + "che_181025_XPaP", + 68, + [ + "hall:dex4", + "hall:ttrate" + ] + ], + [ + "【5기】WA2000", + 60, + 76, + 9, + "che_event_위압", + [ + 46281, + 103947, + 4803, + 41325, + 9234 + ], + 1, + "786a5da.png?=20181026", + 5, + "che_181025_XPaP", + 71, + [ + "hall:tprate" + ] + ], + [ + "【5기】로얄밀크티", + 78, + 62, + 9, + "che_event_저격", + [ + 52935, + 559654, + 62533, + 94207, + 47166 + ], + 1, + "5b28b38.png?=20181115", + 5, + "che_181025_XPaP", + 73, + [ + "chief:11", + "hall:betwin", + "hall:betwingold", + "hall:dedication", + "hall:dex2", + "hall:dex5", + "hall:experience", + "hall:killcrew", + "hall:killnum", + "hall:killrate", + "hall:tlrate", + "hall:ttrate", + "hall:winrate" + ] + ], + [ + "【5기】FFFFFF", + 79, + 62, + 9, + "che_event_돌격", + [ + 335531, + 50054, + 111408, + 128229, + 17623 + ], + 1, + "e0b1d99.jpg?=20181028", + 5, + "che_181025_XPaP", + 74, + [ + "hall:dex1", + "hall:tlrate" + ] + ], + [ + "【5기】쿠요", + 67, + 74, + 9, + "che_event_저격", + [ + 19103, + 47276, + 401889, + 99063, + 13258 + ], + 0, + "default.jpg", + 5, + "che_181025_XPaP", + 77, + [ + "hall:ttrate" + ] + ], + [ + "【5기】수장", + 71, + 69, + 9, + "che_event_징병", + [ + 393819, + 14573, + 99500, + 192367, + 10696 + ], + 1, + "d74c9d2.png?=20181115", + 5, + "che_181025_XPaP", + 79, + [ + "hall:betgold", + "hall:dex1", + "hall:warnum" + ] + ], + [ + "【5기】료우기시키", + 65, + 76, + 9, + "che_event_견고", + [ + 288785, + 13549, + 163241, + 132159, + 6912 + ], + 1, + "72a549f.png?=20181025", + 5, + "che_181025_XPaP", + 81, + [ + "hall:tprate" + ] + ], + [ + "【5기】살수묵랑", + 67, + 73, + 9, + "che_event_저격", + [ + 33956, + 358487, + 35804, + 136415, + 9525 + ], + 1, + "a9298fc.png?=20180628", + 5, + "che_181025_XPaP", + 82, + [ + "hall:dex2" + ] + ], + [ + "【5기】줄리엣", + 63, + 77, + 9, + "che_event_필살", + [ + 24721, + 174426, + 26410, + 63979, + 7668 + ], + 1, + "175639b.png?=20181025", + 5, + "che_181025_XPaP", + 83, + [ + "hall:dex2", + "hall:tprate" + ] + ], + [ + "【5기】드류", + 62, + 77, + 9, + "che_event_징병", + [ + 18350, + 133925, + 14123, + 82371, + 6921 + ], + 1, + "507327d.png?=20181001", + 5, + "che_181025_XPaP", + 84, + [ + "hall:dex2", + "hall:tprate" + ] + ], + [ + "【5기】뭐지", + 62, + 9, + 78, + "che_event_환술", + [ + 62280, + 8354, + 46707, + 334569, + 22150 + ], + 0, + "default.jpg", + 5, + "che_181025_XPaP", + 85, + [ + "hall:ttrate" + ] + ], + [ + "【5기】카이스트", + 63, + 9, + 76, + "che_event_신중", + [ + 55518, + 15320, + 85546, + 468666, + 30792 + ], + 1, + "9361ef8.jpg?=20180907", + 5, + "che_181025_XPaP", + 86, + [ + "chief:7", + "hall:dedication", + "hall:dex4", + "hall:experience", + "hall:killcrew", + "hall:killrate" + ] + ], + [ + "【5기】くま", + 63, + 9, + 76, + "che_event_척사", + [ + 36871, + 14634, + 77483, + 336560, + 26839 + ], + 1, + "73d75c2.jpg?=20180923", + 5, + "che_181025_XPaP", + 89, + [ + "chief:5" + ] + ], + [ + "【5기】민트 초코 칩", + 66, + 9, + 72, + "che_event_저격", + [ + 43273, + 10727, + 56284, + 260973, + 274258 + ], + 1, + "50a2a41.jpg?=20180929", + 5, + "che_181025_XPaP", + 91, + [ + "chief:9", + "hall:dex5", + "hall:experience" + ] + ], + [ + "【5기】랜임살인마", + 76, + 63, + 9, + "che_event_궁병", + [ + 62454, + 70517, + 441757, + 105519, + 9895 + ], + 0, + "default.jpg", + 5, + "che_181025_XPaP", + 92, + [ + "hall:dex3", + "hall:tlrate" + ] + ], + [ + "【5기】아미노", + 66, + 72, + 9, + "che_event_견고", + [ + 81769, + 261462, + 29042, + 83248, + 15730 + ], + 1, + "597abe5.png?=20181111", + 5, + "che_181025_XPaP", + 94, + [ + "hall:dex2" + ] + ], + [ + "【5기】아이린", + 64, + 75, + 9, + "che_event_견고", + [ + 26936, + 54688, + 348801, + 69258, + 13273 + ], + 1, + "8dac73c.jpg?=20180922", + 5, + "che_181025_XPaP", + 96, + [ + "hall:tprate" + ] + ], + [ + "【5기】나님짱짱맨", + 62, + 9, + 77, + "che_event_환술", + [ + 10217, + 16335, + 33484, + 245139, + 10266 + ], + 0, + "default.jpg", + 5, + "che_181025_XPaP", + 97, + [ + "hall:tirate" + ] + ], + [ + "【5기】엉엉", + 65, + 75, + 9, + "che_event_척사", + [ + 420738, + 25425, + 55150, + 134625, + 17382 + ], + 1, + "e6d276a.jpg?=20181115", + 5, + "che_181025_XPaP", + 101, + [ + "hall:dex1", + "hall:firenum" + ] + ], + [ + "【5기】이블린", + 63, + 9, + 77, + "che_event_신중", + [ + 41156, + 35238, + 49522, + 310521, + 12249 + ], + 0, + "default.jpg", + 5, + "che_181025_XPaP", + 103, + [ + "hall:ttrate" + ] + ], + [ + "【5기】김민주", + 72, + 65, + 9, + "che_event_척사", + [ + 319408, + 14538, + 73075, + 90368, + 16276 + ], + 1, + "77f63a8.png?=20181115", + 5, + "che_181025_XPaP", + 105, + [ + "hall:dex1" + ] + ], + [ + "【5기】견문왕리즈나", + 48, + 49, + 49, + "che_event_귀병", + [ + 0, + 0, + 0, + 0, + 0 + ], + 1, + "8a79079.png?=20181025", + 5, + "che_181025_XPaP", + 106, + [ + "hall:firenum" + ] + ], + [ + "【5기】영원한랜임", + 60, + 9, + 79, + "che_event_격노", + [ + 36277, + 32636, + 9351, + 190876, + 7650 + ], + 0, + "default.jpg", + 5, + "che_181025_XPaP", + 107, + [ + "hall:tirate" + ] + ], + [ + "【5기】사스케", + 76, + 62, + 9, + "che_event_무쌍", + [ + 175522, + 8297, + 37318, + 90551, + 6779 + ], + 1, + "4c58102.jpg?=20180927", + 5, + "che_181025_XPaP", + 108, + [ + "hall:betgold", + "hall:tlrate" + ] + ], + [ + "【5기】리플", + 65, + 74, + 9, + "che_event_견고", + [ + 389791, + 12682, + 131145, + 125222, + 19270 + ], + 1, + "cb8bb48.jpg?=20181026", + 5, + "che_181025_XPaP", + 110, + [ + "hall:dex1", + "hall:warnum" + ] + ], + [ + "【5기】새장속의 이상향", + 10, + 62, + 75, + "che_event_징병", + [ + 0, + 0, + 0, + 0, + 0 + ], + 1, + "83e3447.png?=20181025", + 5, + "che_181025_XPaP", + 111, + [ + "hall:firenum" + ] + ], + [ + "【5기】공주", + 73, + 65, + 9, + "che_event_징병", + [ + 89159, + 330430, + 37518, + 95746, + 12310 + ], + 1, + "d5bbf17.jpg?=20181122", + 5, + "che_181025_XPaP", + 115, + [ + "hall:dex2", + "hall:tlrate" + ] + ], + [ + "【5기】앵서벌서", + 76, + 66, + 9, + "che_event_징병", + [ + 368363, + 77168, + 94439, + 172024, + 10765 + ], + 1, + "4a0ff8e.gif?=20181117", + 5, + "che_181025_XPaP", + 119, + [ + "hall:dex1" + ] + ], + [ + "【5기】난동", + 15, + 56, + 79, + "che_event_척사", + [ + 0, + 0, + 0, + 0, + 0 + ], + 0, + "default.jpg", + 5, + "che_181025_XPaP", + 120, + [ + "hall:dedication" + ] + ], + [ + "【5기】마다라키 프랑", + 9, + 61, + 77, + "che_event_신산", + [ + 0, + 0, + 0, + 0, + 0 + ], + 1, + "9cbedce.jpg?=20181024", + 5, + "che_181025_XPaP", + 130, + [ + "hall:firenum" + ] + ], + [ + "【5기】쒸프트키까안빠쪄요", + 75, + 65, + 9, + "che_event_돌격", + [ + 27314, + 54053, + 502008, + 102585, + 34047 + ], + 1, + "df1edd9.jpg?=20181112", + 5, + "che_181025_XPaP", + 131, + [ + "hall:dex3", + "hall:dex5" + ] + ], + [ + "【5기】쭀", + 62, + 9, + 76, + "che_event_척사", + [ + 48317, + 31939, + 28204, + 293075, + 15064 + ], + 0, + "default.jpg", + 5, + "che_181025_XPaP", + 143, + [ + "hall:dedication" + ] + ], + [ + "【5기】소열제유비", + 67, + 73, + 9, + "che_event_척사", + [ + 25089, + 42398, + 408605, + 108503, + 15546 + ], + 1, + "a3b1bbb.png?=20180927", + 5, + "che_181025_XPaP", + 162, + [ + "hall:dex3" + ] + ], + [ + "【5기】기술만딴거시킴하야", + 62, + 9, + 77, + "che_event_징병", + [ + 35186, + 31487, + 40931, + 229698, + 385 + ], + 0, + "default.jpg", + 5, + "che_181025_XPaP", + 169, + [ + "hall:firenum" + ] + ], + [ + "【5기】무지장", + 65, + 74, + 9, + "che_event_격노", + [ + 47632, + 25974, + 488333, + 103368, + 16886 + ], + 1, + "6c2bf3f.jpg?=20181122", + 5, + "che_181025_XPaP", + 181, + [ + "hall:betgold", + "hall:betrate", + "hall:betwin", + "hall:betwingold", + "hall:dedication", + "hall:dex3", + "hall:experience", + "hall:killcrew", + "hall:killnum", + "hall:winrate" + ] + ], + [ + "【5기】라이트유저", + 62, + 9, + 77, + "che_event_척사", + [ + 40748, + 18147, + 63785, + 240724, + 8400 + ], + 1, + "f546e30.jpg?=20181028", + 5, + "che_181025_XPaP", + 200, + [ + "hall:tirate" + ] + ], + [ + "【5기】나레이터킬러", + 76, + 85, + 10, + "che_event_무쌍", + [ + 472558, + 101666, + 138447, + 207689, + 14561 + ], + 0, + "default.jpg", + 5, + "che_181025_XPaP", + 331, + [ + "hall:dex1" + ] + ], + [ + "【5기】조커", + 11, + 84, + 75, + "che_event_척사", + [ + 0, + 0, + 0, + 0, + 0 + ], + 0, + "default.jpg", + 5, + "che_181025_XPaP", + 347, + [ + "hall:firenum" + ] + ], + [ + "【5기】천괴금", + 11, + 71, + 86, + "che_event_신중", + [ + 0, + 0, + 0, + 0, + 0 + ], + 1, + "f10e3d9.png?=20180702", + 5, + "che_181025_XPaP", + 394, + [ + "hall:tirate" + ] + ], + [ + "【6기】카이스트", + 71, + 10, + 83, + "che_event_신중", + [ + 50236, + 85696, + 80990, + 407936, + 23191 + ], + 1, + "9361ef8.jpg?=20180907", + 6, + "che_181129_xe1v", + 3, + [ + "hall:dex4" + ] + ], + [ + "【6기】미아", + 81, + 73, + 10, + "che_event_무쌍", + [ + 7429, + 24293, + 233314, + 36299, + 26380 + ], + 1, + "19ebd2b.jpg?=20181127", + 6, + "che_181129_xe1v", + 5, + [ + "hall:betgold", + "hall:betwin", + "hall:betwingold", + "hall:killrate", + "hall:winrate" + ] + ], + [ + "【6기】아유", + 69, + 10, + 86, + "che_event_신산", + [ + 4270, + 53467, + 53560, + 289571, + 23364 + ], + 1, + "a8dfd2a.gif?=20181218", + 6, + "che_181129_xe1v", + 6, + [ + "chief:12", + "hall:experience", + "hall:winrate" + ] + ], + [ + "【6기】whan", + 70, + 10, + 85, + "che_event_환술", + [ + 69303, + 60730, + 59751, + 424941, + 18374 + ], + 1, + "68aacd2.jpg?=20180929", + 6, + "che_181129_xe1v", + 7, + [ + "hall:dex4" + ] + ], + [ + "【6기】제갈여포", + 74, + 10, + 82, + "che_event_필살", + [ + 50285, + 39362, + 42881, + 519681, + 27609 + ], + 1, + "e8e8adc.jpg?=20180419", + 6, + "che_181129_xe1v", + 8, + [ + "hall:dex4" + ] + ], + [ + "【6기】사키", + 71, + 83, + 11, + "che_event_척사", + [ + 11373, + 30497, + 275111, + 89443, + 17809 + ], + 1, + "e43844d.gif?=20181113", + 6, + "che_181129_xe1v", + 10, + [ + "hall:dex3", + "hall:firenum" + ] + ], + [ + "【6기】윤지성", + 71, + 11, + 83, + "che_event_격노", + [ + 3813, + 33716, + 46917, + 278476, + 30217 + ], + 1, + "d62ab55.png?=20181218", + 6, + "che_181129_xe1v", + 11, + [ + "chief:7", + "hall:ttrate" + ] + ], + [ + "【6기】ⓐ자비스", + 85, + 69, + 10, + "che_event_징병", + [ + 801593, + 44873, + 112364, + 150904, + 50588 + ], + 1, + "472cf86.gif?=20181129", + 6, + "che_181129_xe1v", + 13, + [ + "hall:dex1", + "hall:dex5", + "hall:killcrew", + "hall:killnum", + "hall:warnum" + ] + ], + [ + "【6기】낙지꾸미", + 70, + 10, + 86, + "che_event_집중", + [ + 25236, + 39355, + 54994, + 269065, + 12632 + ], + 0, + "default.jpg", + 6, + "che_181129_xe1v", + 16, + [ + "hall:ttrate" + ] + ], + [ + "【6기】ⓟ럭키", + 73, + 10, + 84, + "che_event_저격", + [ + 41919, + 56516, + 88869, + 585514, + 37656 + ], + 1, + "8e57858.gif?=20181217", + 6, + "che_181129_xe1v", + 18, + [ + "hall:dex4", + "hall:killcrew", + "hall:killnum", + "hall:warnum" + ] + ], + [ + "【6기】솔라", + 68, + 10, + 88, + "che_event_저격", + [ + 8111, + 23457, + 23190, + 181106, + 20785 + ], + 1, + "bf39f5b.jpg?=20181129", + 6, + "che_181129_xe1v", + 19, + [ + "hall:betgold", + "hall:betrate", + "hall:betwin", + "hall:betwingold", + "hall:tirate" + ] + ], + [ + "【6기】Lupia", + 73, + 10, + 82, + "che_event_신산", + [ + 48730, + 114337, + 97992, + 654997, + 27183 + ], + 0, + "default.jpg", + 6, + "che_181129_xe1v", + 21, + [ + "hall:dex4", + "hall:killcrew", + "hall:killnum", + "hall:warnum" + ] + ], + [ + "【6기】수장", + 78, + 80, + 10, + "che_event_저격", + [ + 48228, + 54821, + 428238, + 95633, + 26597 + ], + 1, + "d74c9d2.png?=20181115", + 6, + "che_181129_xe1v", + 22, + [ + "hall:dex3", + "hall:firenum" + ] + ], + [ + "【6기】임사영", + 72, + 84, + 11, + "che_event_저격", + [ + 453787, + 131689, + 60736, + 154219, + 11121 + ], + 1, + "a0bc4b2.jpg?=20180628", + 6, + "che_181129_xe1v", + 24, + [ + "hall:dex1", + "hall:experience", + "hall:killcrew", + "hall:killnum", + "hall:warnum" + ] + ], + [ + "【6기】안가면", + 68, + 11, + 85, + "che_event_집중", + [ + 14956, + 20064, + 21876, + 146525, + 14499 + ], + 1, + "f0c755.jpg?=20181129", + 6, + "che_181129_xe1v", + 26, + [ + "hall:experience" + ] + ], + [ + "【6기】김나영", + 71, + 84, + 10, + "che_event_위압", + [ + 334671, + 16092, + 77932, + 51721, + 24046 + ], + 1, + "2e8d570.jpg?=20180823", + 6, + "che_181129_xe1v", + 27, + [ + "hall:dex1" + ] + ], + [ + "【6기】화사", + 69, + 87, + 10, + "che_event_견고", + [ + 207353, + 12833, + 3396, + 30873, + 25654 + ], + 1, + "6c3e3fb.jpg?=20181129", + 6, + "che_181129_xe1v", + 29, + [ + "hall:dex1", + "hall:killrate", + "hall:ttrate" + ] + ], + [ + "【6기】ⓟ피카츄", + 74, + 80, + 11, + "che_event_격노", + [ + 94017, + 512262, + 70646, + 140405, + 24945 + ], + 1, + "4178de2.gif?=20181216", + 6, + "che_181129_xe1v", + 31, + [ + "hall:betgold", + "hall:betwin", + "hall:betwingold", + "hall:dex2", + "hall:killcrew", + "hall:warnum" + ] + ], + [ + "【6기】충차", + 85, + 66, + 11, + "che_event_필살", + [ + 101228, + 404556, + 24920, + 81754, + 37546 + ], + 1, + "392683c.jpg?=20181129", + 6, + "che_181129_xe1v", + 32, + [ + "hall:dex2", + "hall:tlrate" + ] + ], + [ + "【6기】황약사", + 77, + 80, + 10, + "che_event_징병", + [ + 28633, + 364869, + 147731, + 159828, + 18197 + ], + 1, + "189adc9.jpg?=20181115", + 6, + "che_181129_xe1v", + 33, + [ + "hall:dex2", + "hall:killnum", + "hall:winrate" + ] + ], + [ + "【6기】사무엘", + 12, + 70, + 82, + "che_event_반계", + [ + 0, + 0, + 0, + 17, + 0 + ], + 1, + "ba65add.gif?=20181211", + 6, + "che_181129_xe1v", + 34, + [ + "hall:betgold", + "hall:betrate", + "hall:betwin", + "hall:betwingold", + "hall:firenum", + "hall:ttrate" + ] + ], + [ + "【6기】아범", + 72, + 83, + 10, + "che_event_저격", + [ + 44487, + 67379, + 284123, + 84323, + 11329 + ], + 0, + "default.jpg", + 6, + "che_181129_xe1v", + 37, + [ + "hall:dex3" + ] + ], + [ + "【6기】팬티", + 68, + 10, + 87, + "che_event_집중", + [ + 10474, + 31256, + 40568, + 300216, + 31300 + ], + 1, + "8496c4b.jpg?=20181217", + 6, + "che_181129_xe1v", + 38, + [ + "chief:5", + "hall:experience", + "hall:killrate", + "hall:winrate" + ] + ], + [ + "【6기】북오더", + 85, + 39, + 39, + "che_event_징병", + [ + 5116, + 33377, + 3025, + 8620, + 217779 + ], + 1, + "c0276e1.gif?=20180917", + 6, + "che_181129_xe1v", + 39, + [ + "hall:dedication", + "hall:dex5", + "hall:experience", + "hall:killrate", + "hall:winrate" + ] + ], + [ + "【6기】에르제", + 70, + 86, + 10, + "che_event_격노", + [ + 14194, + 39191, + 248560, + 84299, + 21649 + ], + 1, + "73c4134.png?=20181130", + 6, + "che_181129_xe1v", + 40, + [ + "hall:tprate" + ] + ], + [ + "【6기】늘모", + 70, + 84, + 11, + "che_event_저격", + [ + 28753, + 192603, + 19107, + 42129, + 15068 + ], + 1, + "e7c163.png?=20180801", + 6, + "che_181129_xe1v", + 42, + [ + "hall:ttrate" + ] + ], + [ + "【6기】ARES군주", + 69, + 88, + 10, + "che_event_돌격", + [ + 14205, + 38414, + 182708, + 36323, + 24505 + ], + 1, + "ca0b15e.gif?=20181003", + 6, + "che_181129_xe1v", + 43, + [ + "hall:tprate" + ] + ], + [ + "【6기】아리아", + 90, + 12, + 10, + "che_event_척사", + [ + 0, + 0, + 0, + 0, + 103155 + ], + 1, + "810c706.jpg?=20181204", + 6, + "che_181129_xe1v", + 45, + [ + "hall:dex5", + "hall:firenum", + "hall:tlrate" + ] + ], + [ + "【6기】마시멜로", + 71, + 85, + 10, + "che_event_척사", + [ + 156893, + 79591, + 61931, + 39027, + 9034 + ], + 1, + "50102de.jpg?=20181129", + 6, + "che_181129_xe1v", + 48, + [ + "hall:winrate" + ] + ], + [ + "【6기】군사", + 70, + 87, + 10, + "che_event_척사", + [ + 60174, + 211670, + 25411, + 40467, + 21897 + ], + 1, + "c3ab9cf.gif?=20181214", + 6, + "che_181129_xe1v", + 49, + [ + "chief:10", + "hall:tprate" + ] + ], + [ + "【6기】노이즈", + 67, + 11, + 87, + "che_event_집중", + [ + 6495, + 7387, + 2223, + 100300, + 7521 + ], + 1, + "5ad5212.gif?=20181127", + 6, + "che_181129_xe1v", + 50, + [ + "hall:winrate" + ] + ], + [ + "【6기】농장소녀", + 69, + 85, + 10, + "che_event_척사", + [ + 300279, + 25273, + 36052, + 38969, + 30195 + ], + 1, + "d367ca5.jpg?=20181201", + 6, + "che_181129_xe1v", + 51, + [ + "hall:dex1", + "hall:killrate", + "hall:tprate" + ] + ], + [ + "【6기】캐릭캐릭체인지", + 71, + 11, + 83, + "che_event_격노", + [ + 47781, + 22334, + 68661, + 324566, + 17359 + ], + 1, + "27c35d6.jpg?=20181214", + 6, + "che_181129_xe1v", + 53, + [ + "chief:9" + ] + ], + [ + "【6기】삼남매아빠", + 86, + 68, + 10, + "che_event_돌격", + [ + 32331, + 203325, + 24993, + 20871, + 26702 + ], + 0, + "default.jpg", + 6, + "che_181129_xe1v", + 54, + [ + "hall:tlrate" + ] + ], + [ + "【6기】Newbie", + 73, + 10, + 84, + "che_event_신중", + [ + 56567, + 63968, + 76268, + 579864, + 16418 + ], + 1, + "c8682f4.jpg?=20181204", + 6, + "che_181129_xe1v", + 55, + [ + "hall:dex4", + "hall:warnum" + ] + ], + [ + "【6기】나나야 시키", + 86, + 69, + 11, + "che_event_징병", + [ + 46158, + 358868, + 59307, + 72490, + 18654 + ], + 1, + "c19b6b4.jpg?=20181129", + 6, + "che_181129_xe1v", + 56, + [ + "hall:dex2", + "hall:tlrate" + ] + ], + [ + "【6기】할말이있어", + 71, + 10, + 86, + "che_event_필살", + [ + 22667, + 56016, + 34216, + 302191, + 11604 + ], + 0, + "default.jpg", + 6, + "che_181129_xe1v", + 57, + [ + "hall:tirate", + "hall:ttrate" + ] + ], + [ + "【6기】당신의노예", + 10, + 67, + 87, + "che_event_신중", + [ + 0, + 0, + 0, + 0, + 0 + ], + 1, + "eb89303.png?=20181205", + 6, + "che_181129_xe1v", + 58, + [ + "hall:betgold" + ] + ], + [ + "【6기】케이", + 70, + 87, + 10, + "che_event_돌격", + [ + 10479, + 73808, + 450815, + 51107, + 30857 + ], + 1, + "d797798.jpg?=20181216", + 6, + "che_181129_xe1v", + 60, + [ + "hall:dedication", + "hall:dex3", + "hall:experience" + ] + ], + [ + "【6기】청기사", + 10, + 66, + 90, + "che_event_척사", + [ + 0, + 0, + 0, + 0, + 0 + ], + 1, + "af1eb05.jpg?=20181210", + 6, + "che_181129_xe1v", + 61, + [ + "hall:dedication", + "hall:tirate" + ] + ], + [ + "【6기】소열제유비", + 71, + 84, + 11, + "che_event_기병", + [ + 20238, + 81932, + 337663, + 51541, + 24300 + ], + 1, + "a3b1bbb.png?=20180927", + 6, + "che_181129_xe1v", + 63, + [ + "hall:dex3", + "hall:tprate" + ] + ], + [ + "【6기】규이르", + 73, + 83, + 10, + "che_event_위압", + [ + 66364, + 266420, + 221194, + 123622, + 19922 + ], + 1, + "bc45418.jpg?=20181214", + 6, + "che_181129_xe1v", + 64, + [ + "hall:dex2" + ] + ], + [ + "【6기】궁Yeah!", + 80, + 10, + 76, + "che_event_저격", + [ + 2261, + 29859, + 13428, + 138751, + 8782 + ], + 1, + "cc5e216.jpg?=20181129", + 6, + "che_181129_xe1v", + 65, + [ + "hall:betgold", + "hall:firenum" + ] + ], + [ + "【6기】이쓰미", + 73, + 11, + 83, + "che_event_격노", + [ + 57119, + 45569, + 69154, + 503433, + 30065 + ], + 1, + "fd6a0fd.jpg?=20181212", + 6, + "che_181129_xe1v", + 66, + [ + "hall:dex4" + ] + ], + [ + "【6기】만샘", + 72, + 83, + 11, + "che_event_돌격", + [ + 37015, + 374296, + 36656, + 60899, + 32807 + ], + 1, + "4a206a1.jpg?=20181122", + 6, + "che_181129_xe1v", + 67, + [ + "chief:8", + "hall:betgold", + "hall:betwin", + "hall:betwingold", + "hall:dex2", + "hall:experience" + ] + ], + [ + "【6기】팩트)팩트다", + 11, + 66, + 90, + "che_event_신산", + [ + 0, + 0, + 0, + 0, + 0 + ], + 0, + "default.jpg", + 6, + "che_181129_xe1v", + 68, + [ + "hall:tirate" + ] + ], + [ + "【6기】아노리엔", + 70, + 84, + 10, + "che_event_격노", + [ + 16163, + 10311, + 233386, + 79499, + 9824 + ], + 0, + "default.jpg", + 6, + "che_181129_xe1v", + 69, + [ + "hall:winrate" + ] + ], + [ + "【6기】Pretty레아", + 70, + 84, + 11, + "che_event_필살", + [ + 17266, + 61082, + 270444, + 92327, + 16896 + ], + 0, + "default.jpg", + 6, + "che_181129_xe1v", + 70, + [ + "hall:dex3" + ] + ], + [ + "【6기】휘인", + 86, + 68, + 10, + "che_event_견고", + [ + 3960, + 17805, + 230997, + 29824, + 38750 + ], + 1, + "8bec25d.jpg?=20181129", + 6, + "che_181129_xe1v", + 72, + [ + "hall:betgold", + "hall:experience", + "hall:killrate", + "hall:tlrate" + ] + ], + [ + "【6기】박보검", + 69, + 10, + 85, + "che_event_반계", + [ + 16116, + 21102, + 14876, + 124846, + 15207 + ], + 1, + "649311b.jpg?=20181129", + 6, + "che_181129_xe1v", + 74, + [ + "hall:winrate" + ] + ], + [ + "【6기】복숭아좋아", + 71, + 10, + 85, + "che_event_격노", + [ + 15127, + 12876, + 23291, + 165544, + 14204 + ], + 0, + "default.jpg", + 6, + "che_181129_xe1v", + 75, + [ + "hall:tirate" + ] + ], + [ + "【6기】견문하는HideD", + 12, + 79, + 70, + "che_event_척사", + [ + 0, + 0, + 0, + 0, + 0 + ], + 1, + "21d378f.jpg?=20180630", + 6, + "che_181129_xe1v", + 77, + [ + "hall:ttrate" + ] + ], + [ + "【6기】Lenn", + 87, + 67, + 11, + "che_event_돌격", + [ + 27376, + 0, + 2114, + 17210, + 149846 + ], + 1, + "81b73bc.jpg?=20181130", + 6, + "che_181129_xe1v", + 78, + [ + "hall:dex5", + "hall:killrate" + ] + ], + [ + "【6기】G11", + 88, + 39, + 38, + "che_event_공성", + [ + 0, + 0, + 5233, + 5684, + 685600 + ], + 1, + "acd69c.jpg?=20181217", + 6, + "che_181129_xe1v", + 80, + [ + "hall:dex5", + "hall:experience", + "hall:firenum", + "hall:killcrew", + "hall:killrate", + "hall:tlrate" + ] + ], + [ + "【6기】병리학적자세", + 67, + 11, + 88, + "che_event_귀병", + [ + 6584, + 10186, + 3922, + 117751, + 20404 + ], + 1, + "3679089.jpg?=20180629", + 6, + "che_181129_xe1v", + 85, + [ + "hall:tirate", + "hall:ttrate" + ] + ], + [ + "【6기】뭐지", + 69, + 87, + 10, + "che_event_격노", + [ + 25777, + 186271, + 6404, + 54235, + 5505 + ], + 0, + "default.jpg", + 6, + "che_181129_xe1v", + 86, + [ + "hall:tprate" + ] + ], + [ + "【6기】리플", + 70, + 10, + 85, + "che_event_신중", + [ + 20314, + 40644, + 24757, + 319229, + 25505 + ], + 1, + "fbe44ca.jpg?=20181207", + 6, + "che_181129_xe1v", + 87, + [ + "hall:firenum" + ] + ], + [ + "【6기】태수", + 71, + 10, + 84, + "che_event_척사", + [ + 13951, + 14418, + 40743, + 246476, + 35264 + ], + 1, + "ee74461.gif?=20181214", + 6, + "che_181129_xe1v", + 88, + [ + "chief:11" + ] + ], + [ + "【6기】엘레나", + 80, + 10, + 74, + "che_event_저격", + [ + 16534, + 40965, + 76651, + 513623, + 125427 + ], + 1, + "a3ff40d.gif?=20181130", + 6, + "che_181129_xe1v", + 89, + [ + "hall:betgold", + "hall:dex4", + "hall:dex5", + "hall:killnum", + "hall:warnum" + ] + ], + [ + "【6기】진리", + 86, + 69, + 11, + "che_event_격노", + [ + 36439, + 94821, + 614861, + 171342, + 55636 + ], + 1, + "d286702.jpg?=20181210", + 6, + "che_181129_xe1v", + 91, + [ + "hall:betgold", + "hall:betwin", + "hall:betwingold", + "hall:dex3", + "hall:dex5", + "hall:killcrew", + "hall:killnum", + "hall:warnum" + ] + ], + [ + "【6기】심심", + 72, + 10, + 84, + "che_event_신산", + [ + 26809, + 44036, + 88607, + 498135, + 115572 + ], + 0, + "default.jpg", + 6, + "che_181129_xe1v", + 93, + [ + "hall:dex4", + "hall:dex5", + "hall:killcrew", + "hall:tirate" + ] + ], + [ + "【6기】100이상추방함", + 11, + 87, + 68, + "che_event_필살", + [ + 0, + 0, + 8410, + 1058, + 2062 + ], + 1, + "8a79079.png?=20181025", + 6, + "che_181129_xe1v", + 95, + [ + "hall:firenum", + "hall:tprate" + ] + ], + [ + "【6기】30초장", + 67, + 10, + 86, + "che_event_신중", + [ + 12503, + 29176, + 16675, + 87106, + 0 + ], + 0, + "default.jpg", + 6, + "che_181129_xe1v", + 97, + [ + "hall:tirate" + ] + ], + [ + "【6기】두땅크", + 86, + 70, + 10, + "che_event_견고", + [ + 356622, + 26933, + 63360, + 74019, + 10610 + ], + 0, + "default.jpg", + 6, + "che_181129_xe1v", + 98, + [ + "hall:dex1" + ] + ], + [ + "【6기】일반장푸", + 55, + 55, + 55, + "che_event_위압", + [ + 211052, + 24547, + 54442, + 62236, + 11215 + ], + 0, + "default.jpg", + 6, + "che_181129_xe1v", + 100, + [ + "hall:dex1" + ] + ], + [ + "【6기】하우젤", + 87, + 70, + 10, + "che_event_징병", + [ + 18556, + 134909, + 350604, + 68436, + 17448 + ], + 1, + "dcff9fd.jpg?=20180823", + 6, + "che_181129_xe1v", + 102, + [ + "hall:dex3", + "hall:tlrate" + ] + ], + [ + "【6기】셀레스티아", + 12, + 68, + 85, + "che_event_필살", + [ + 0, + 0, + 0, + 0, + 0 + ], + 1, + "e379112.jpg?=20181210", + 6, + "che_181129_xe1v", + 103, + [ + "chief:6", + "hall:dedication" + ] + ], + [ + "【6기】이지금", + 10, + 66, + 90, + "che_event_척사", + [ + 0, + 0, + 0, + 0, + 0 + ], + 1, + "581b0d9.png?=20181130", + 6, + "che_181129_xe1v", + 107, + [ + "hall:dedication" + ] + ], + [ + "【6기】SARS", + 10, + 72, + 84, + "che_event_집중", + [ + 0, + 0, + 0, + 0, + 0 + ], + 0, + "default.jpg", + 6, + "che_181129_xe1v", + 108, + [ + "hall:dedication", + "hall:experience" + ] + ], + [ + "【6기】에스테반 공작", + 70, + 85, + 11, + "che_event_저격", + [ + 355574, + 39777, + 71318, + 102171, + 1225 + ], + 1, + "d5a955e.jpg?=20181130", + 6, + "che_181129_xe1v", + 112, + [ + "hall:dex1" + ] + ], + [ + "【6기】난동", + 10, + 68, + 88, + "che_event_의술", + [ + 0, + 0, + 0, + 0, + 0 + ], + 0, + "default.jpg", + 6, + "che_181129_xe1v", + 115, + [ + "hall:dedication", + "hall:tirate" + ] + ], + [ + "【6기】줄리엣 페르시아", + 74, + 10, + 81, + "che_event_저격", + [ + 52298, + 54294, + 52226, + 477404, + 31437 + ], + 1, + "8c1432f.gif?=20181130", + 6, + "che_181129_xe1v", + 116, + [ + "hall:dex4" + ] + ], + [ + "【6기】평민킬러", + 72, + 84, + 10, + "che_event_척사", + [ + 479800, + 21874, + 115333, + 90822, + 28351 + ], + 1, + "2816ad.jpg?=20181118", + 6, + "che_181129_xe1v", + 119, + [ + "hall:dex1" + ] + ], + [ + "【6기】집합장 1", + 80, + 75, + 10, + "che_event_견고", + [ + 41759, + 659504, + 102688, + 101509, + 56255 + ], + 1, + "2c05c61.jpg?=20181218", + 6, + "che_181129_xe1v", + 120, + [ + "hall:dex2", + "hall:dex5", + "hall:killcrew", + "hall:killnum", + "hall:killrate", + "hall:warnum" + ] + ], + [ + "【6기】해피너스", + 72, + 10, + 84, + "che_event_징병", + [ + 41029, + 47386, + 64024, + 301987, + 15478 + ], + 1, + "ec883eb.jpg?=20181130", + 6, + "che_181129_xe1v", + 123, + [ + "hall:ttrate" + ] + ], + [ + "【6기】치카", + 87, + 67, + 10, + "che_event_징병", + [ + 80535, + 370972, + 34142, + 60488, + 17108 + ], + 1, + "3e9a72e.jpg?=20180719", + 6, + "che_181129_xe1v", + 128, + [ + "hall:dex2", + "hall:tlrate" + ] + ], + [ + "【6기】쿠요", + 68, + 87, + 10, + "che_event_의술", + [ + 0, + 19555, + 117974, + 23292, + 16011 + ], + 1, + "13a2ed0.png?=20180920", + 6, + "che_181129_xe1v", + 130, + [ + "hall:tprate" + ] + ], + [ + "【6기】귀여운세젤예키라님", + 69, + 85, + 10, + "che_event_척사", + [ + 20810, + 134904, + 8758, + 23306, + 15808 + ], + 1, + "175639b.png?=20181025", + 6, + "che_181129_xe1v", + 131, + [ + "hall:winrate" + ] + ], + [ + "【6기】스파르타쿠스", + 76, + 78, + 10, + "che_event_격노", + [ + 38894, + 75704, + 395324, + 156155, + 11812 + ], + 1, + "e491277.jpg?=20181129", + 6, + "che_181129_xe1v", + 137, + [ + "hall:dex3" + ] + ], + [ + "【6기】안유진", + 68, + 10, + 87, + "che_event_반계", + [ + 45338, + 37770, + 41650, + 227356, + 9753 + ], + 1, + "b81ece5.jpg?=20181130", + 6, + "che_181129_xe1v", + 140, + [ + "hall:ttrate" + ] + ], + [ + "【6기】아이린", + 72, + 84, + 10, + "che_event_척사", + [ + 27803, + 76774, + 414839, + 144309, + 16917 + ], + 1, + "8dac73c.jpg?=20180922", + 6, + "che_181129_xe1v", + 146, + [ + "hall:dex3", + "hall:killnum", + "hall:tprate" + ] + ], + [ + "【6기】긴토키", + 86, + 68, + 11, + "che_event_척사", + [ + 67708, + 327058, + 28720, + 96922, + 10584 + ], + 1, + "1336ea.jpg?=20181025", + 6, + "che_181129_xe1v", + 154, + [ + "hall:dex2", + "hall:tlrate" + ] + ], + [ + "【6기】피아노맨", + 10, + 68, + 87, + "che_event_신중", + [ + 0, + 0, + 0, + 0, + 0 + ], + 0, + "default.jpg", + 6, + "che_181129_xe1v", + 161, + [ + "hall:dedication" + ] + ], + [ + "【6기】소환된민심러", + 88, + 65, + 10, + "che_event_필살", + [ + 201574, + 17252, + 30411, + 69617, + 50974 + ], + 1, + "da319ad.jpg?=20181202", + 6, + "che_181129_xe1v", + 162, + [ + "hall:dex1", + "hall:dex5", + "hall:tlrate" + ] + ], + [ + "【6기】새장속의이상향", + 73, + 82, + 10, + "che_event_견고", + [ + 75684, + 677918, + 41624, + 173500, + 24281 + ], + 1, + "83e3447.png?=20181025", + 6, + "che_181129_xe1v", + 163, + [ + "hall:dex2", + "hall:killcrew", + "hall:killnum", + "hall:warnum" + ] + ], + [ + "【6기】안돼", + 11, + 68, + 85, + "che_event_저격", + [ + 0, + 0, + 0, + 0, + 0 + ], + 0, + "default.jpg", + 6, + "che_181129_xe1v", + 164, + [ + "hall:dedication", + "hall:firenum" + ] + ], + [ + "【6기】rm", + 68, + 85, + 10, + "che_event_필살", + [ + 154644, + 8568, + 16381, + 30634, + 20576 + ], + 0, + "default.jpg", + 6, + "che_181129_xe1v", + 207, + [ + "hall:killrate", + "hall:tprate" + ] + ], + [ + "【6기】프레디머큐리", + 10, + 71, + 83, + "che_event_귀병", + [ + 0, + 0, + 0, + 0, + 0 + ], + 0, + "default.jpg", + 6, + "che_181129_xe1v", + 208, + [ + "hall:dedication" + ] + ], + [ + "【6기】기연빌런", + 10, + 66, + 89, + "che_event_격노", + [ + 0, + 0, + 0, + 0, + 0 + ], + 1, + "9fdc4fd.jpg?=20181213", + 6, + "che_181129_xe1v", + 231, + [ + "hall:tirate" + ] + ], + [ + "【6기】강도", + 72, + 80, + 10, + "che_event_위압", + [ + 2612, + 41326, + 192017, + 65111, + 14392 + ], + 1, + "384aa86.jpg?=20181204", + 6, + "che_181129_xe1v", + 268, + [ + "hall:firenum" + ] + ], + [ + "【7기】이시리스", + 79, + 71, + 9, + "che_event_필살", + [ + 61227, + 239908, + 982438, + 205558, + 39449 + ], + 1, + "c82f6e9.jpg?=20190219", + 7, + "che_190125_N6Ph", + 4, + [ + "hall:betrate", + "hall:betwingold", + "hall:dex3", + "hall:killcrew", + "hall:killnum" + ] + ], + [ + "【7기】미나토 유키나", + 71, + 9, + 81, + "che_event_척사", + [ + 120039, + 148134, + 167708, + 1150978, + 24905 + ], + 1, + "6050d87.jpg?=20190305", + 7, + "che_190125_N6Ph", + 5, + [ + "hall:dex4", + "hall:killcrew", + "hall:killnum", + "hall:warnum" + ] + ], + [ + "【7기】김채원", + 71, + 9, + 80, + "che_event_환술", + [ + 78132, + 91448, + 149393, + 850221, + 17856 + ], + 1, + "6e10dd5.png?=20190126", + 7, + "che_190125_N6Ph", + 6, + [ + "hall:dex4", + "hall:killcrew", + "hall:killnum", + "hall:warnum", + "hall:winrate" + ] + ], + [ + "【7기】카이스트", + 69, + 9, + 78, + "che_event_징병", + [ + 98286, + 132555, + 125719, + 673684, + 13393 + ], + 1, + "9361ef8.jpg?=20180907", + 7, + "che_190125_N6Ph", + 7, + [ + "hall:firenum", + "hall:warnum" + ] + ], + [ + "【7기】평민킬러", + 69, + 80, + 9, + "che_event_격노", + [ + 871962, + 81066, + 132754, + 251904, + 21580 + ], + 1, + "2816ad.jpg?=20181118", + 7, + "che_190125_N6Ph", + 8, + [ + "hall:dex1", + "hall:killcrew", + "hall:warnum" + ] + ], + [ + "【7기】우수한", + 69, + 10, + 77, + "che_event_징병", + [ + 83847, + 79541, + 122440, + 965570, + 50153 + ], + 1, + "5dbfd3e.png?=20190125", + 7, + "che_190125_N6Ph", + 9, + [ + "hall:betgold", + "hall:betwin", + "hall:betwingold", + "hall:dex4" + ] + ], + [ + "【7기】토야마 카스미", + 66, + 82, + 9, + "che_event_무쌍", + [ + 43415, + 535427, + 58781, + 216485, + 33927 + ], + 1, + "966f765.gif?=20190208", + 7, + "che_190125_N6Ph", + 12, + [ + "hall:betgold", + "hall:dex2" + ] + ], + [ + "【7기】한서진", + 75, + 79, + 9, + "che_event_돌격", + [ + 82482, + 152047, + 1950450, + 330586, + 67134 + ], + 1, + "53f1ebd.jpg?=20190221", + 7, + "che_190125_N6Ph", + 13, + [ + "chief:12", + "hall:betrate", + "hall:betwingold", + "hall:dex3", + "hall:dex5", + "hall:experience", + "hall:killcrew", + "hall:killnum", + "hall:killrate", + "hall:warnum", + "hall:winrate" + ] + ], + [ + "【7기】황우주", + 73, + 9, + 73, + "che_event_저격", + [ + 70906, + 58833, + 121731, + 965893, + 64148 + ], + 1, + "f79fd07.gif?=20190224", + 7, + "che_190125_N6Ph", + 17, + [ + "chief:7", + "hall:dex4", + "hall:dex5", + "hall:warnum" + ] + ], + [ + "【7기】진리", + 76, + 9, + 71, + "che_event_신산", + [ + 41450, + 29904, + 81247, + 596107, + 11971 + ], + 1, + "ac7abfd.jpg?=20190304", + 7, + "che_190125_N6Ph", + 18, + [ + "hall:dedication", + "hall:experience" + ] + ], + [ + "【7기】햄", + 68, + 9, + 78, + "che_event_저격", + [ + 39493, + 84732, + 96362, + 681147, + 25133 + ], + 1, + "c73e24c.jpg?=20190125", + 7, + "che_190125_N6Ph", + 20, + [ + "hall:betwin" + ] + ], + [ + "【7기】미나", + 67, + 9, + 84, + "che_event_징병", + [ + 86043, + 110806, + 97942, + 866713, + 35725 + ], + 1, + "6d3a238.jpg?=20190213", + 7, + "che_190125_N6Ph", + 22, + [ + "hall:dedication", + "hall:dex4", + "hall:experience", + "hall:firenum", + "hall:killnum", + "hall:warnum", + "hall:winrate" + ] + ], + [ + "【7기】노승혜", + 79, + 69, + 9, + "che_event_위압", + [ + 1222635, + 50959, + 133840, + 216062, + 61786 + ], + 1, + "b3b0886.jpg?=20190219", + 7, + "che_190125_N6Ph", + 26, + [ + "chief:11", + "hall:betgold", + "hall:betrate", + "hall:betwin", + "hall:betwingold", + "hall:dex1", + "hall:dex5", + "hall:experience", + "hall:killcrew", + "hall:killnum", + "hall:killrate", + "hall:tlrate", + "hall:warnum" + ] + ], + [ + "【7기】제갈여포", + 78, + 9, + 70, + "che_event_신산", + [ + 50824, + 106658, + 94434, + 640028, + 8782 + ], + 1, + "e8e8adc.jpg?=20180419", + 7, + "che_190125_N6Ph", + 30, + [ + "hall:tlrate" + ] + ], + [ + "【7기】이드", + 69, + 79, + 9, + "che_event_궁병", + [ + 96782, + 903159, + 65095, + 225631, + 22495 + ], + 1, + "5e36874.jpg?=20190126", + 7, + "che_190125_N6Ph", + 32, + [ + "hall:betrate", + "hall:dex2", + "hall:killrate", + "hall:winrate" + ] + ], + [ + "【7기】ˇ˘ˇ", + 82, + 66, + 9, + "che_event_돌격", + [ + 273855, + 377825, + 240016, + 251220, + 41016 + ], + 1, + "c759d44.gif?=20190304", + 7, + "che_190125_N6Ph", + 33, + [ + "hall:tlrate" + ] + ], + [ + "【7기】힝힝", + 63, + 72, + 9, + "che_event_돌격", + [ + 211569, + 4705, + 22236, + 126718, + 10296 + ], + 1, + "c5ca50e.jpg?=20190130", + 7, + "che_190125_N6Ph", + 34, + [ + "hall:dex1", + "hall:tprate" + ] + ], + [ + "【7기】난세", + 69, + 80, + 9, + "che_event_무쌍", + [ + 83022, + 952009, + 71208, + 256930, + 28036 + ], + 1, + "43adc65.png?=20190125", + 7, + "che_190125_N6Ph", + 36, + [ + "chief:6", + "hall:betrate", + "hall:betwin", + "hall:betwingold", + "hall:dex2", + "hall:killcrew", + "hall:killnum", + "hall:killrate", + "hall:winrate" + ] + ], + [ + "【7기】료우기시키", + 73, + 77, + 9, + "che_event_징병", + [ + 50710, + 183331, + 733831, + 257065, + 13445 + ], + 1, + "f1d936e.jpg?=20190217", + 7, + "che_190125_N6Ph", + 39, + [ + "hall:dex3", + "hall:killnum", + "hall:ttrate" + ] + ], + [ + "【7기】김주영", + 76, + 9, + 73, + "che_event_반계", + [ + 89339, + 72214, + 133312, + 1112264, + 36168 + ], + 1, + "ecadeaf.png?=20190221", + 7, + "che_190125_N6Ph", + 40, + [ + "chief:9", + "hall:dex4" + ] + ], + [ + "【7기】만샘", + 67, + 9, + 82, + "che_event_신산", + [ + 38852, + 103656, + 96057, + 643898, + 7324 + ], + 1, + "4a206a1.jpg?=20181122", + 7, + "che_190125_N6Ph", + 43, + [ + "hall:tirate" + ] + ], + [ + "【7기】김나영", + 68, + 77, + 9, + "che_event_징병", + [ + 490784, + 39405, + 166629, + 221483, + 11314 + ], + 1, + "2e8d570.jpg?=20180823", + 7, + "che_190125_N6Ph", + 44, + [ + "hall:dex1", + "hall:tprate" + ] + ], + [ + "【7기】대천사하야미", + 69, + 9, + 79, + "che_event_징병", + [ + 106080, + 86719, + 144498, + 965266, + 29305 + ], + 1, + "a72bf95.jpg?=20190221", + 7, + "che_190125_N6Ph", + 46, + [ + "hall:dex4" + ] + ], + [ + "【7기】잠입", + 62, + 14, + 77, + "che_event_신중", + [ + 7407, + 5962, + 38798, + 90749, + 932 + ], + 0, + "default.jpg", + 7, + "che_190125_N6Ph", + 48, + [ + "hall:firenum" + ] + ], + [ + "【7기】우양우", + 69, + 81, + 9, + "che_event_위압", + [ + 123772, + 1053319, + 85606, + 223038, + 50266 + ], + 1, + "2381a44.jpg?=20190227", + 7, + "che_190125_N6Ph", + 49, + [ + "chief:10", + "hall:dex2", + "hall:killcrew", + "hall:killnum", + "hall:killrate", + "hall:winrate" + ] + ], + [ + "【7기】갓드오브갓크", + 68, + 9, + 78, + "che_event_징병", + [ + 103404, + 81444, + 51333, + 895043, + 28267 + ], + 0, + "default.jpg", + 7, + "che_190125_N6Ph", + 51, + [ + "hall:dex4" + ] + ], + [ + "【7기】삼남매아빠", + 66, + 9, + 81, + "che_event_징병", + [ + 48188, + 88624, + 121403, + 575709, + 26406 + ], + 0, + "default.jpg", + 7, + "che_190125_N6Ph", + 52, + [ + "hall:tirate" + ] + ], + [ + "【7기】엘레나", + 76, + 66, + 9, + "che_event_저격", + [ + 20447, + 91942, + 651419, + 217481, + 17384 + ], + 0, + "default.jpg", + 7, + "che_190125_N6Ph", + 53, + [ + "hall:dex3", + "hall:experience" + ] + ], + [ + "【7기】줄리엣", + 64, + 9, + 85, + "che_event_격노", + [ + 41429, + 23665, + 44175, + 431802, + 16734 + ], + 1, + "175639b.png?=20181025", + 7, + "che_190125_N6Ph", + 54, + [ + "hall:betgold", + "hall:betwin", + "hall:betwingold", + "hall:tirate" + ] + ], + [ + "【7기】이쓰미", + 74, + 9, + 80, + "che_event_집중", + [ + 119264, + 171778, + 140776, + 937683, + 22379 + ], + 1, + "fd6a0fd.jpg?=20181212", + 7, + "che_190125_N6Ph", + 56, + [ + "hall:dex4", + "hall:killcrew", + "hall:killnum", + "hall:warnum", + "hall:winrate" + ] + ], + [ + "【7기】차기준", + 69, + 9, + 75, + "che_event_신중", + [ + 69256, + 34073, + 104499, + 688675, + 55871 + ], + 1, + "224e088.jpg?=20190210", + 7, + "che_190125_N6Ph", + 57, + [ + "hall:dex5" + ] + ], + [ + "【7기】고블린슬레이어", + 9, + 93, + 56, + "che_event_저격", + [ + 500, + 0, + 905, + 0, + 0 + ], + 1, + "3b70373.jpg?=20190125", + 7, + "che_190125_N6Ph", + 58, + [ + "hall:dedication", + "hall:tprate" + ] + ], + [ + "【7기】마법소년", + 81, + 67, + 9, + "che_event_징병", + [ + 1186065, + 116003, + 99628, + 209861, + 60678 + ], + 1, + "8c54e0e.jpg?=20190304", + 7, + "che_190125_N6Ph", + 60, + [ + "chief:8", + "hall:dex1", + "hall:dex5", + "hall:killrate", + "hall:tlrate", + "hall:warnum", + "hall:winrate" + ] + ], + [ + "【7기】박초롱", + 66, + 82, + 9, + "che_event_돌격", + [ + 563181, + 18370, + 42099, + 254318, + 22067 + ], + 1, + "18e88f0.jpg?=20190223", + 7, + "che_190125_N6Ph", + 61, + [ + "hall:dex1" + ] + ], + [ + "【7기】다유", + 74, + 71, + 9, + "che_event_위압", + [ + 430265, + 53205, + 141991, + 172907, + 6422 + ], + 1, + "f489a2a.jpg?=20181226", + 7, + "che_190125_N6Ph", + 65, + [ + "hall:dex1" + ] + ], + [ + "【7기】늘모", + 66, + 80, + 9, + "che_event_무쌍", + [ + 26031, + 85563, + 522279, + 177658, + 18222 + ], + 1, + "e7c163.png?=20180801", + 7, + "che_190125_N6Ph", + 68, + [ + "hall:tprate" + ] + ], + [ + "【7기】심심", + 68, + 79, + 9, + "che_event_무쌍", + [ + 41316, + 43117, + 538329, + 221739, + 22335 + ], + 0, + "default.jpg", + 7, + "che_190125_N6Ph", + 69, + [ + "hall:tprate" + ] + ], + [ + "【7기】Tiasse", + 11, + 62, + 79, + "che_event_필살", + [ + 0, + 0, + 0, + 0, + 0 + ], + 1, + "6ff0c2e.jpg?=20190220", + 7, + "che_190125_N6Ph", + 70, + [ + "hall:firenum", + "hall:tirate" + ] + ], + [ + "【7기】필터링", + 68, + 9, + 80, + "che_event_징병", + [ + 55599, + 67493, + 89094, + 902284, + 42323 + ], + 1, + "726e55b.gif?=20190201", + 7, + "che_190125_N6Ph", + 71, + [ + "hall:betrate", + "hall:dex4" + ] + ], + [ + "【7기】대충함", + 10, + 86, + 59, + "che_event_공성", + [ + 0, + 0, + 0, + 5157, + 2286 + ], + 1, + "818791e.jpg?=20190217", + 7, + "che_190125_N6Ph", + 72, + [ + "hall:firenum", + "hall:tprate" + ] + ], + [ + "【7기】돈까스", + 68, + 84, + 9, + "che_event_격노", + [ + 92530, + 791025, + 80473, + 205908, + 22070 + ], + 0, + "default.jpg", + 7, + "che_190125_N6Ph", + 75, + [ + "hall:dex2", + "hall:experience", + "hall:tprate", + "hall:winrate" + ] + ], + [ + "【7기】아이린", + 67, + 81, + 9, + "che_event_돌격", + [ + 87746, + 628250, + 25622, + 184653, + 36668 + ], + 1, + "8dac73c.jpg?=20180922", + 7, + "che_190125_N6Ph", + 77, + [ + "hall:dex2" + ] + ], + [ + "【7기】Rei", + 68, + 76, + 9, + "che_event_징병", + [ + 406414, + 46243, + 39348, + 224137, + 55618 + ], + 1, + "e7d55b1.jpg?=20190305", + 7, + "che_190125_N6Ph", + 80, + [ + "hall:betwin", + "hall:dex1", + "hall:dex5" + ] + ], + [ + "【7기】뉴비는아님암튼아님", + 66, + 81, + 10, + "che_event_징병", + [ + 45342, + 88158, + 461180, + 141536, + 15817 + ], + 1, + "3168f43.jpg?=20190304", + 7, + "che_190125_N6Ph", + 81, + [ + "hall:dex3" + ] + ], + [ + "【7기】새장속의이상향", + 67, + 78, + 10, + "che_event_무쌍", + [ + 568342, + 21286, + 106013, + 176015, + 19470 + ], + 1, + "83e3447.png?=20181025", + 7, + "che_190125_N6Ph", + 83, + [ + "hall:dex1", + "hall:firenum" + ] + ], + [ + "【7기】란카", + 66, + 80, + 10, + "che_event_척사", + [ + 18859, + 80142, + 639802, + 202527, + 21643 + ], + 1, + "b62fa50.png?=20190125", + 7, + "che_190125_N6Ph", + 84, + [ + "hall:dex3", + "hall:tprate" + ] + ], + [ + "【7기】청기사", + 9, + 58, + 89, + "che_event_집중", + [ + 0, + 0, + 0, + 0, + 0 + ], + 1, + "9fdc4fd.jpg?=20181213", + 7, + "che_190125_N6Ph", + 85, + [ + "hall:dedication", + "hall:tirate" + ] + ], + [ + "【7기】이수임", + 68, + 9, + 79, + "che_event_필살", + [ + 101117, + 65138, + 86227, + 844329, + 44984 + ], + 1, + "555823.jpg?=20190223", + 7, + "che_190125_N6Ph", + 86, + [ + "chief:5", + "hall:betgold", + "hall:tirate" + ] + ], + [ + "【7기】도메스틱한 그녀", + 9, + 58, + 92, + "che_event_격노", + [ + 0, + 0, + 0, + 0, + 0 + ], + 1, + "20239cf.jpg?=20190305", + 7, + "che_190125_N6Ph", + 87, + [ + "hall:betgold", + "hall:dedication", + "hall:experience" + ] + ], + [ + "【7기】이피스", + 90, + 9, + 9, + "che_event_위압", + [ + 0, + 0, + 16459, + 16126, + 465934 + ], + 1, + "9e64c3b.jpg?=20190201", + 7, + "che_190125_N6Ph", + 89, + [ + "hall:dex5", + "hall:experience", + "hall:firenum", + "hall:killrate", + "hall:tlrate" + ] + ], + [ + "【7기】강예서", + 81, + 68, + 9, + "che_event_무쌍", + [ + 163897, + 409545, + 117136, + 195025, + 938815 + ], + 1, + "431f85.png?=20190228", + 7, + "che_190125_N6Ph", + 94, + [ + "hall:betgold", + "hall:dex2", + "hall:dex5", + "hall:experience", + "hall:killcrew", + "hall:killrate" + ] + ], + [ + "【7기】삼남매엄마", + 68, + 80, + 9, + "che_event_저격", + [ + 107623, + 600187, + 65903, + 187226, + 18331 + ], + 0, + "default.jpg", + 7, + "che_190125_N6Ph", + 97, + [ + "hall:dex2" + ] + ], + [ + "【7기】북오더#98", + 9, + 61, + 75, + "che_event_귀병", + [ + 0, + 0, + 0, + 0, + 0 + ], + 1, + "c0276e1.gif?=20180917", + 7, + "che_190125_N6Ph", + 98, + [ + "hall:tlrate" + ] + ], + [ + "【7기】제노에이지", + 63, + 9, + 79, + "che_event_반계", + [ + 20368, + 17249, + 50083, + 245920, + 7312 + ], + 0, + "default.jpg", + 7, + "che_190125_N6Ph", + 99, + [ + "hall:betgold", + "hall:betwin" + ] + ], + [ + "【7기】양복을입은아저씨", + 83, + 63, + 9, + "che_event_돌격", + [ + 28774, + 80517, + 729490, + 262923, + 31777 + ], + 1, + "4da7fe2.jpg?=20190225", + 7, + "che_190125_N6Ph", + 101, + [ + "hall:dex3", + "hall:tlrate" + ] + ], + [ + "【7기】강준상", + 81, + 63, + 9, + "che_event_저격", + [ + 39959, + 89426, + 895211, + 222298, + 38418 + ], + 1, + "6e146a6.jpg?=20190208", + 7, + "che_190125_N6Ph", + 107, + [ + "hall:betgold", + "hall:betwin", + "hall:betwingold", + "hall:dex3", + "hall:tlrate" + ] + ], + [ + "【7기】좀비A", + 68, + 78, + 9, + "che_event_필살", + [ + 635191, + 54259, + 135060, + 225702, + 22856 + ], + 1, + "2a7a28.jpg?=20190225", + 7, + "che_190125_N6Ph", + 108, + [ + "hall:betwingold", + "hall:dex1" + ] + ], + [ + "【7기】M950", + 66, + 81, + 9, + "che_event_기병", + [ + 27724, + 58882, + 635964, + 174216, + 24974 + ], + 1, + "a0ffece.jpg?=20190222", + 7, + "che_190125_N6Ph", + 109, + [ + "hall:dex3", + "hall:tprate" + ] + ], + [ + "【7기】잠입2", + 63, + 74, + 9, + "che_event_격노", + [ + 5177, + 13218, + 49952, + 7575, + 1416 + ], + 0, + "default.jpg", + 7, + "che_190125_N6Ph", + 111, + [ + "hall:winrate" + ] + ], + [ + "【7기】미스티", + 78, + 9, + 66, + "che_event_저격", + [ + 33389, + 48563, + 103132, + 427364, + 5118 + ], + 1, + "1aadcba.png?=20180908", + 7, + "che_190125_N6Ph", + 112, + [ + "hall:tlrate" + ] + ], + [ + "【7기】엘사", + 67, + 80, + 9, + "che_event_저격", + [ + 109578, + 621099, + 181391, + 147403, + 22900 + ], + 1, + "a9361f3.jpg?=20190216", + 7, + "che_190125_N6Ph", + 118, + [ + "hall:dex2", + "hall:firenum" + ] + ], + [ + "【7기】무한파워안경", + 9, + 65, + 81, + "che_event_환술", + [ + 0, + 0, + 0, + 0, + 0 + ], + 1, + "b7e1a1f.jpg?=20180525", + 7, + "che_190125_N6Ph", + 124, + [ + "hall:dedication", + "hall:tirate" + ] + ], + [ + "【7기】천괴금", + 11, + 86, + 58, + "che_event_필살", + [ + 0, + 676, + 0, + 1538, + 0 + ], + 1, + "e15f4b5.png?=20181216", + 7, + "che_190125_N6Ph", + 125, + [ + "hall:firenum", + "hall:tprate" + ] + ], + [ + "【7기】하우젤", + 82, + 63, + 9, + "che_event_격노", + [ + 51778, + 110841, + 687062, + 277802, + 9156 + ], + 1, + "dcff9fd.jpg?=20180823", + 7, + "che_190125_N6Ph", + 127, + [ + "hall:dex3" + ] + ], + [ + "【7기】강육공", + 9, + 56, + 83, + "che_event_징병", + [ + 0, + 0, + 0, + 0, + 0 + ], + 0, + "default.jpg", + 7, + "che_190125_N6Ph", + 145, + [ + "hall:dedication", + "hall:tirate" + ] + ], + [ + "【7기】레이첼가드너", + 16, + 73, + 67, + "che_event_척사", + [ + 1508, + 1459, + 2111, + 1357, + 521 + ], + 1, + "1d95ad9.png?=20190127", + 7, + "che_190125_N6Ph", + 146, + [ + "hall:betrate" + ] + ], + [ + "【7기】리오르", + 9, + 57, + 84, + "che_event_귀병", + [ + 0, + 0, + 0, + 0, + 0 + ], + 0, + "default.jpg", + 7, + "che_190125_N6Ph", + 159, + [ + "hall:dedication", + "hall:tirate" + ] + ], + [ + "【7기】바젤기우스", + 68, + 77, + 9, + "che_event_척사", + [ + 122333, + 632620, + 56502, + 177462, + 26641 + ], + 1, + "7668f10.jpg?=20190224", + 7, + "che_190125_N6Ph", + 195, + [ + "hall:betgold", + "hall:betrate", + "hall:betwin", + "hall:betwingold", + "hall:dex2" + ] + ], + [ + "【7기】모모", + 9, + 58, + 80, + "che_event_반계", + [ + 0, + 0, + 0, + 0, + 0 + ], + 0, + "default.jpg", + 7, + "che_190125_N6Ph", + 232, + [ + "hall:ttrate" + ] + ], + [ + "【7기】New캐슬", + 9, + 62, + 76, + "che_event_저격", + [ + 340, + 1713, + 164, + 1176, + 0 + ], + 0, + "default.jpg", + 7, + "che_190125_N6Ph", + 235, + [ + "hall:betwin", + "hall:dedication" + ] + ], + [ + "【7기】나데코", + 74, + 9, + 67, + "che_event_격노", + [ + 36133, + 45948, + 64671, + 548665, + 15763 + ], + 0, + "default.jpg", + 7, + "che_190125_N6Ph", + 236, + [ + "hall:ttrate" + ] + ], + [ + "【7기】시그시그", + 9, + 74, + 68, + "che_event_신산", + [ + 0, + 0, + 0, + 0, + 0 + ], + 1, + "7a562b6.png?=20190202", + 7, + "che_190125_N6Ph", + 237, + [ + "hall:experience", + "hall:firenum" + ] + ], + [ + "【7기】oops", + 64, + 9, + 74, + "che_event_징병", + [ + 0, + 3746, + 0, + 12149, + 0 + ], + 0, + "default.jpg", + 7, + "che_190125_N6Ph", + 241, + [ + "hall:ttrate" + ] + ], + [ + "【7기】쀼웃", + 9, + 61, + 75, + "che_event_반계", + [ + 0, + 0, + 0, + 0, + 0 + ], + 0, + "default.jpg", + 7, + "che_190125_N6Ph", + 248, + [ + "hall:betrate", + "hall:betwingold", + "hall:dedication", + "hall:ttrate" + ] + ], + [ + "【7기】혼자SKY간혜나", + 27, + 75, + 69, + "che_event_기병", + [ + 0, + 0, + 0, + 0, + 0 + ], + 0, + "default.jpg", + 7, + "che_190125_N6Ph", + 308, + [ + "hall:ttrate" + ] + ], + [ + "【7기】술병", + 10, + 72, + 88, + "che_event_징병", + [ + 0, + 33, + 0, + 0, + 0 + ], + 0, + "default.jpg", + 7, + "che_190125_N6Ph", + 314, + [ + "hall:betrate", + "hall:ttrate" + ] + ], + [ + "【7기】하하", + 86, + 71, + 11, + "che_event_척사", + [ + 30726, + 41020, + 124894, + 108334, + 8266 + ], + 0, + "default.jpg", + 7, + "che_190125_N6Ph", + 369, + [ + "hall:tlrate", + "hall:ttrate" + ] + ], + [ + "【7기】마검", + 69, + 10, + 81, + "che_event_필살", + [ + 17350, + 14250, + 17497, + 210401, + 5460 + ], + 0, + "default.jpg", + 7, + "che_190125_N6Ph", + 409, + [ + "hall:tirate" + ] + ], + [ + "【7기】Febrile", + 71, + 10, + 81, + "che_event_신산", + [ + 6562, + 0, + 6354, + 435, + 164621 + ], + 0, + "default.jpg", + 7, + "che_190125_N6Ph", + 412, + [ + "hall:dex5", + "hall:killrate", + "hall:ttrate" + ] + ], + [ + "【7기】마니와 시라사기", + 12, + 75, + 76, + "che_event_귀병", + [ + 0, + 0, + 0, + 0, + 0 + ], + 1, + "bb5ab03.jpg?=20190220", + 7, + "che_190125_N6Ph", + 427, + [ + "hall:ttrate" + ] + ], + [ + "【7기】북오더#428", + 83, + 38, + 39, + "che_event_집중", + [ + 7249, + 10603, + 3342, + 6660, + 181084 + ], + 1, + "c0276e1.gif?=20180917", + 7, + "che_190125_N6Ph", + 428, + [ + "hall:dex5", + "hall:killrate" + ] + ], + [ + "【8기】우동게", + 68, + 10, + 93, + "che_event_징병", + [ + 0, + 0, + 7139, + 43749, + 11115 + ], + 1, + "cd05b08.jpg?=20190405", + 8, + "che_190314_gSb2", + 3, + [ + "hall:betwin", + "hall:dedication", + "hall:experience", + "hall:tirate" + ] + ], + [ + "【8기】후지와라 치카", + 92, + 67, + 10, + "che_event_무쌍", + [ + 10484, + 137314, + 23353, + 19702, + 13417 + ], + 1, + "5485ec4.gif?=20190319", + 8, + "che_190314_gSb2", + 4, + [ + "hall:betgold", + "hall:betrate", + "hall:betwin", + "hall:betwingold", + "hall:tlrate" + ] + ], + [ + "【8기】카이스트", + 72, + 10, + 88, + "che_event_저격", + [ + 5220, + 21659, + 18515, + 135336, + 7131 + ], + 1, + "9361ef8.jpg?=20180907", + 8, + "che_190314_gSb2", + 5, + [ + "hall:firenum" + ] + ], + [ + "【8기】김나영", + 72, + 87, + 10, + "che_event_척사", + [ + 46077, + 39762, + 435883, + 92282, + 13809 + ], + 1, + "2e8d570.jpg?=20180823", + 8, + "che_190314_gSb2", + 6, + [ + "hall:dex3", + "hall:tprate" + ] + ], + [ + "【8기】무한파워안경", + 87, + 73, + 10, + "che_event_저격", + [ + 7612, + 38039, + 319500, + 125980, + 16469 + ], + 1, + "b7e1a1f.jpg?=20180525", + 8, + "che_190314_gSb2", + 7, + [ + "hall:tlrate" + ] + ], + [ + "【8기】삼겹살", + 83, + 11, + 77, + "che_event_징병", + [ + 17715, + 80338, + 56255, + 435695, + 17447 + ], + 1, + "6796cf4.gif?=20190314", + 8, + "che_190314_gSb2", + 8, + [ + "hall:dex4" + ] + ], + [ + "【8기】노진구", + 87, + 74, + 10, + "che_event_위압", + [ + 49603, + 99857, + 550127, + 167534, + 54584 + ], + 1, + "ce1319d.jpg?=20190317", + 8, + "che_190314_gSb2", + 9, + [ + "hall:dedication", + "hall:dex3", + "hall:dex5", + "hall:experience", + "hall:killcrew", + "hall:tlrate", + "hall:warnum" + ] + ], + [ + "【8기】평민킬러", + 75, + 85, + 10, + "che_event_징병", + [ + 109538, + 591087, + 72141, + 140242, + 29420 + ], + 1, + "2816ad.jpg?=20181118", + 8, + "che_190314_gSb2", + 10, + [ + "chief:10", + "hall:dex1", + "hall:dex2", + "hall:killcrew", + "hall:killnum", + "hall:warnum" + ] + ], + [ + "【8기】시뉴카린", + 70, + 10, + 88, + "che_event_저격", + [ + 5034, + 5285, + 20410, + 46823, + 4284 + ], + 1, + "1d103a7.gif?=20190402", + 8, + "che_190314_gSb2", + 11, + [ + "hall:betgold", + "hall:betrate", + "hall:betwin", + "hall:betwingold" + ] + ], + [ + "【8기】제노에이지", + 73, + 10, + 89, + "che_event_징병", + [ + 15693, + 77469, + 55024, + 486598, + 42597 + ], + 1, + "ddd1fd7.jpg?=20190320", + 8, + "che_190314_gSb2", + 12, + [ + "hall:betgold", + "hall:betrate", + "hall:betwin", + "hall:betwingold", + "hall:dedication", + "hall:dex4", + "hall:dex5" + ] + ], + [ + "【8기】민트의 요정", + 10, + 81, + 80, + "che_event_반계", + [ + 0, + 0, + 5581, + 0, + 95 + ], + 1, + "1195d93.jpg?=20190314", + 8, + "che_190314_gSb2", + 13, + [ + "hall:ttrate" + ] + ], + [ + "【8기】포트리스3패왕전", + 72, + 10, + 88, + "che_event_신산", + [ + 47334, + 57935, + 76625, + 542159, + 60865 + ], + 1, + "e32fd7f.jpg?=20190314", + 8, + "che_190314_gSb2", + 19, + [ + "chief:12", + "hall:betwin", + "hall:betwingold", + "hall:dex4", + "hall:dex5", + "hall:experience", + "hall:killcrew", + "hall:killnum" + ] + ], + [ + "【8기】프로야구매니저", + 72, + 89, + 10, + "che_event_견고", + [ + 86067, + 799568, + 43017, + 114030, + 58358 + ], + 1, + "2f51d31.jpg?=20190318", + 8, + "che_190314_gSb2", + 22, + [ + "chief:11", + "hall:betgold", + "hall:betrate", + "hall:betwin", + "hall:betwingold", + "hall:dedication", + "hall:dex1", + "hall:dex2", + "hall:dex5", + "hall:experience", + "hall:killcrew", + "hall:killnum", + "hall:killrate", + "hall:warnum", + "hall:winrate" + ] + ], + [ + "【8기】덕장", + 90, + 69, + 10, + "che_event_위압", + [ + 50713, + 371021, + 76129, + 119567, + 23845 + ], + 0, + "default.jpg", + 8, + "che_190314_gSb2", + 23, + [ + "hall:dex2", + "hall:tlrate" + ] + ], + [ + "【8기】이상혁", + 10, + 92, + 66, + "che_event_필살", + [ + 0, + 0, + 4925, + 646, + 757 + ], + 1, + "6ea4b6d.png?=20190316", + 8, + "che_190314_gSb2", + 24, + [ + "hall:firenum" + ] + ], + [ + "【8기】쉐도우 핀드", + 71, + 10, + 91, + "che_event_집중", + [ + 21284, + 30636, + 28389, + 333227, + 17077 + ], + 1, + "18dc25d.jpg?=20190405", + 8, + "che_190314_gSb2", + 25, + [ + "hall:winrate" + ] + ], + [ + "【8기】프론트라인", + 85, + 74, + 10, + "che_event_견고", + [ + 10577, + 58347, + 437741, + 113767, + 31575 + ], + 0, + "default.jpg", + 8, + "che_190314_gSb2", + 27, + [ + "hall:dex3", + "hall:tlrate" + ] + ], + [ + "【8기】조밧", + 67, + 11, + 89, + "che_event_격노", + [ + 5925, + 9749, + 13547, + 124949, + 1988 + ], + 1, + "f2d4b4.jpg?=20180629", + 8, + "che_190314_gSb2", + 28, + [ + "hall:tirate" + ] + ], + [ + "【8기】구스", + 83, + 78, + 10, + "che_event_격노", + [ + 24175, + 106086, + 390664, + 106907, + 23754 + ], + 1, + "ab6bca8.jpg?=20190314", + 8, + "che_190314_gSb2", + 30, + [ + "hall:dex3" + ] + ], + [ + "【8기】등갑병", + 89, + 67, + 10, + "che_event_무쌍", + [ + 156041, + 10152, + 30691, + 6481, + 8628 + ], + 1, + "97aba2f.gif?=20180628", + 8, + "che_190314_gSb2", + 32, + [ + "hall:dex1", + "hall:tlrate" + ] + ], + [ + "【8기】갈색마(+5)", + 76, + 81, + 10, + "che_event_무쌍", + [ + 17917, + 41769, + 350794, + 108527, + 21423 + ], + 1, + "88598ee.jpg?=20190321", + 8, + "che_190314_gSb2", + 33, + [ + "hall:dex3" + ] + ], + [ + "【8기】사스케", + 74, + 86, + 10, + "che_event_무쌍", + [ + 908375, + 67876, + 37480, + 137638, + 48849 + ], + 1, + "e9a3054.jpg?=20190315", + 8, + "che_190314_gSb2", + 36, + [ + "chief:6", + "hall:betgold", + "hall:betrate", + "hall:betwin", + "hall:dedication", + "hall:dex1", + "hall:dex5", + "hall:experience", + "hall:killcrew", + "hall:killnum", + "hall:killrate", + "hall:warnum", + "hall:winrate" + ] + ], + [ + "【8기】슬라임", + 82, + 78, + 10, + "che_event_저격", + [ + 83530, + 17089, + 36823, + 18948, + 5846 + ], + 1, + "3408568.jpg?=20190317", + 8, + "che_190314_gSb2", + 37, + [ + "hall:ttrate" + ] + ], + [ + "【8기】빵에건포도", + 85, + 76, + 11, + "che_event_견고", + [ + 4516, + 25828, + 295716, + 66445, + 19014 + ], + 1, + "9e3f1c5.jpg?=20190313", + 8, + "che_190314_gSb2", + 39, + [ + "hall:winrate" + ] + ], + [ + "【8기】박초롱", + 68, + 91, + 10, + "che_event_징병", + [ + 115639, + 1707, + 13001, + 22302, + 11315 + ], + 1, + "4cb21c1.gif?=20190318", + 8, + "che_190314_gSb2", + 40, + [ + "hall:dex1", + "hall:tprate" + ] + ], + [ + "【8기】천괴금", + 70, + 88, + 10, + "che_event_위압", + [ + 9044, + 5648, + 93306, + 20431, + 5073 + ], + 1, + "e15f4b5.png?=20181216", + 8, + "che_190314_gSb2", + 41, + [ + "hall:tprate" + ] + ], + [ + "【8기】모니ㅇ카", + 69, + 10, + 89, + "che_event_저격", + [ + 3072, + 22003, + 26577, + 165160, + 10339 + ], + 1, + "f937029.jpg?=20190321", + 8, + "che_190314_gSb2", + 44, + [ + "hall:betgold", + "hall:betrate", + "hall:betwingold" + ] + ], + [ + "【8기】치카", + 89, + 71, + 10, + "che_event_저격", + [ + 5121, + 106719, + 322316, + 102085, + 23643 + ], + 1, + "764d882.png?=20190328", + 8, + "che_190314_gSb2", + 45, + [ + "hall:betwin", + "hall:betwingold", + "hall:dex3" + ] + ], + [ + "【8기】동백쨔응", + 73, + 11, + 88, + "che_event_척사", + [ + 33009, + 51680, + 51617, + 471256, + 25827 + ], + 1, + "c07de23.jpg?=20190314", + 8, + "che_190314_gSb2", + 46, + [ + "hall:dex4", + "hall:ttrate" + ] + ], + [ + "【8기】이리스 유마", + 90, + 10, + 68, + "che_event_저격", + [ + 9396, + 0, + 25842, + 35904, + 371388 + ], + 1, + "c46a5b8.jpg?=20190401", + 8, + "che_190314_gSb2", + 47, + [ + "hall:betgold", + "hall:dedication", + "hall:dex5", + "hall:experience", + "hall:killrate", + "hall:tlrate" + ] + ], + [ + "【8기】Rumi", + 71, + 89, + 10, + "che_event_무쌍", + [ + 40825, + 66807, + 482496, + 97742, + 29745 + ], + 1, + "84fb262.png?=20190314", + 8, + "che_190314_gSb2", + 51, + [ + "hall:dex3", + "hall:firenum", + "hall:killnum", + "hall:tprate", + "hall:winrate" + ] + ], + [ + "【8기】줄리엣", + 87, + 72, + 10, + "che_event_무쌍", + [ + 39145, + 121268, + 62105, + 39731, + 12485 + ], + 1, + "175639b.png?=20181025", + 8, + "che_190314_gSb2", + 54, + [ + "hall:tlrate", + "hall:ttrate" + ] + ], + [ + "【8기】이시리스", + 70, + 10, + 92, + "che_event_환술", + [ + 4224, + 13911, + 20364, + 87313, + 12026 + ], + 1, + "71ddb79.jpg?=20190326", + 8, + "che_190314_gSb2", + 57, + [ + "hall:ttrate" + ] + ], + [ + "【8기】분위기갑자기소전", + 75, + 87, + 10, + "che_event_필살", + [ + 379006, + 37780, + 88218, + 138232, + 11145 + ], + 1, + "fb2dc0b.gif?=20190403", + 8, + "che_190314_gSb2", + 58, + [ + "hall:dex1", + "hall:firenum" + ] + ], + [ + "【8기】페레로로쉐", + 79, + 10, + 81, + "che_event_신산", + [ + 23472, + 79263, + 86712, + 593316, + 36511 + ], + 1, + "e9b8542.jpg?=20190314", + 8, + "che_190314_gSb2", + 59, + [ + "hall:betgold", + "hall:betrate", + "hall:betwin", + "hall:betwingold", + "hall:dex4", + "hall:killcrew", + "hall:killnum", + "hall:warnum", + "hall:winrate" + ] + ], + [ + "【8기】마비노기", + 73, + 88, + 10, + "che_event_격노", + [ + 61414, + 65906, + 430638, + 98369, + 28638 + ], + 1, + "4b78ef3.png?=20190314", + 8, + "che_190314_gSb2", + 61, + [ + "hall:dex3", + "hall:tprate" + ] + ], + [ + "【8기】만샘", + 74, + 10, + 88, + "che_event_격노", + [ + 54133, + 62113, + 69298, + 461122, + 46887 + ], + 1, + "4a206a1.jpg?=20181122", + 8, + "che_190314_gSb2", + 62, + [ + "chief:5", + "hall:dex4", + "hall:dex5", + "hall:experience", + "hall:killnum", + "hall:warnum" + ] + ], + [ + "【8기】아유", + 70, + 10, + 89, + "che_event_필살", + [ + 218, + 27987, + 31365, + 157038, + 14991 + ], + 1, + "ba186bf.gif?=20181220", + 8, + "che_190314_gSb2", + 66, + [ + "hall:firenum" + ] + ], + [ + "【8기】마법소녀매지컬모모", + 75, + 85, + 10, + "che_event_필살", + [ + 13025, + 153114, + 202856, + 85880, + 19029 + ], + 1, + "ba6bfc5.jpg?=20190314", + 8, + "che_190314_gSb2", + 67, + [ + "hall:firenum" + ] + ], + [ + "【8기】하우젤", + 87, + 73, + 10, + "che_event_돌격", + [ + 9862, + 59705, + 252234, + 84529, + 14100 + ], + 1, + "dcff9fd.jpg?=20180823", + 8, + "che_190314_gSb2", + 68, + [ + "hall:ttrate" + ] + ], + [ + "【8기】그랜드체이스", + 72, + 89, + 11, + "che_event_무쌍", + [ + 23952, + 66298, + 531825, + 100342, + 34197 + ], + 1, + "68492ea.png?=20190322", + 8, + "che_190314_gSb2", + 69, + [ + "chief:8", + "hall:dex3", + "hall:experience", + "hall:tprate", + "hall:ttrate" + ] + ], + [ + "【8기】카라", + 76, + 11, + 83, + "che_event_집중", + [ + 20418, + 73928, + 54682, + 629102, + 41595 + ], + 1, + "64170a1.jpg?=20190406", + 8, + "che_190314_gSb2", + 70, + [ + "hall:betgold", + "hall:betrate", + "hall:betwin", + "hall:betwingold", + "hall:dex4", + "hall:firenum", + "hall:killcrew", + "hall:killnum", + "hall:killrate", + "hall:warnum", + "hall:winrate" + ] + ], + [ + "【8기】미스티", + 71, + 10, + 88, + "che_event_필살", + [ + 19503, + 21014, + 35515, + 200531, + 19059 + ], + 1, + "1aadcba.png?=20180908", + 8, + "che_190314_gSb2", + 71, + [ + "hall:ttrate" + ] + ], + [ + "【8기】삼남매아빠", + 71, + 10, + 92, + "che_event_집중", + [ + 69023, + 65980, + 73118, + 815914, + 56232 + ], + 0, + "default.jpg", + 8, + "che_190314_gSb2", + 72, + [ + "chief:9", + "hall:dedication", + "hall:dex4", + "hall:dex5", + "hall:experience", + "hall:killcrew", + "hall:killnum", + "hall:killrate", + "hall:warnum", + "hall:winrate" + ] + ], + [ + "【8기】서든어택2", + 72, + 10, + 88, + "che_event_징병", + [ + 49923, + 58641, + 68806, + 389356, + 29018 + ], + 1, + "22d133c.jpg?=20190317", + 8, + "che_190314_gSb2", + 73, + [ + "hall:tirate", + "hall:ttrate" + ] + ], + [ + "【8기】단비", + 71, + 10, + 91, + "che_event_신중", + [ + 38793, + 35317, + 109465, + 494629, + 13140 + ], + 1, + "851c59d.jpg?=20190314", + 8, + "che_190314_gSb2", + 76, + [ + "hall:dex4", + "hall:tirate" + ] + ], + [ + "【8기】베니엔마", + 86, + 72, + 11, + "che_event_돌격", + [ + 295425, + 14278, + 52491, + 93844, + 26633 + ], + 1, + "b5a5e4e.jpg?=20190405", + 8, + "che_190314_gSb2", + 77, + [ + "hall:dex1" + ] + ], + [ + "【8기】베스", + 69, + 10, + 89, + "che_event_징병", + [ + 31597, + 9786, + 44001, + 196109, + 173740 + ], + 1, + "d06809.gif?=20190331", + 8, + "che_190314_gSb2", + 79, + [ + "hall:dedication", + "hall:dex5", + "hall:experience", + "hall:firenum", + "hall:killrate" + ] + ], + [ + "【8기】리플", + 71, + 90, + 10, + "che_event_위압", + [ + 48892, + 526250, + 33767, + 114495, + 13117 + ], + 1, + "fbe44ca.jpg?=20181207", + 8, + "che_190314_gSb2", + 82, + [ + "hall:dex2", + "hall:killcrew", + "hall:killnum", + "hall:killrate", + "hall:tprate", + "hall:warnum", + "hall:winrate" + ] + ], + [ + "【8기】두나", + 72, + 10, + 88, + "che_event_신중", + [ + 9198, + 32485, + 49266, + 372136, + 6485 + ], + 1, + "bf0c572.png?=20181114", + 8, + "che_190314_gSb2", + 87, + [ + "hall:tirate" + ] + ], + [ + "【8기】後唐 이존욱", + 71, + 87, + 11, + "che_event_징병", + [ + 185604, + 12082, + 57933, + 65980, + 4613 + ], + 1, + "d6243ee.png?=20190318", + 8, + "che_190314_gSb2", + 88, + [ + "hall:dex1", + "hall:tprate" + ] + ], + [ + "【8기】일시키면삭턴탐", + 11, + 66, + 93, + "che_event_저격", + [ + 0, + 0, + 0, + 0, + 0 + ], + 0, + "default.jpg", + 8, + "che_190314_gSb2", + 91, + [ + "hall:firenum", + "hall:tirate" + ] + ], + [ + "【8기】주인장", + 73, + 85, + 10, + "che_event_무쌍", + [ + 19718, + 184736, + 83325, + 99873, + 5162 + ], + 0, + "default.jpg", + 8, + "che_190314_gSb2", + 92, + [ + "hall:dex2" + ] + ], + [ + "【8기】소열제유비", + 72, + 88, + 10, + "che_event_기병", + [ + 2739, + 25885, + 271234, + 121472, + 11110 + ], + 1, + "a3b1bbb.png?=20180927", + 8, + "che_190314_gSb2", + 93, + [ + "hall:tprate" + ] + ], + [ + "【8기】아노리엔", + 87, + 70, + 11, + "che_event_저격", + [ + 169509, + 165658, + 57039, + 96205, + 18393 + ], + 1, + "99d6aca.png?=20190320", + 8, + "che_190314_gSb2", + 95, + [ + "hall:dex1", + "hall:tlrate" + ] + ], + [ + "【8기】미아뇌미아", + 73, + 88, + 10, + "che_event_견고", + [ + 19423, + 37715, + 328893, + 86796, + 3955 + ], + 0, + "default.jpg", + 8, + "che_190314_gSb2", + 97, + [ + "hall:dex3" + ] + ], + [ + "【8기】오로라", + 72, + 88, + 11, + "che_event_척사", + [ + 14496, + 153379, + 13494, + 50367, + 9522 + ], + 1, + "2c42d8a.jpg?=20190314", + 8, + "che_190314_gSb2", + 98, + [ + "hall:tprate" + ] + ], + [ + "【8기】류다희", + 72, + 87, + 11, + "che_event_무쌍", + [ + 8234, + 365821, + 6935, + 70268, + 27470 + ], + 1, + "781ef76.jpg?=20190317", + 8, + "che_190314_gSb2", + 99, + [ + "hall:dex2", + "hall:killrate" + ] + ], + [ + "【8기】수장", + 76, + 84, + 10, + "che_event_격노", + [ + 14890, + 40335, + 300427, + 86584, + 30832 + ], + 1, + "20ada6f.png?=20190311", + 8, + "che_190314_gSb2", + 106, + [ + "hall:winrate" + ] + ], + [ + "【8기】지나가는뉴비", + 77, + 81, + 10, + "che_event_징병", + [ + 67964, + 569025, + 57216, + 107022, + 32017 + ], + 0, + "default.jpg", + 8, + "che_190314_gSb2", + 112, + [ + "hall:dex2", + "hall:killcrew", + "hall:killrate", + "hall:warnum" + ] + ], + [ + "【8기】삼남매엄마", + 73, + 10, + 86, + "che_event_필살", + [ + 59623, + 21062, + 54817, + 450548, + 43016 + ], + 0, + "default.jpg", + 8, + "che_190314_gSb2", + 115, + [ + "hall:dex4", + "hall:dex5" + ] + ], + [ + "【8기】청기사", + 11, + 67, + 93, + "che_event_신중", + [ + 0, + 0, + 0, + 0, + 0 + ], + 1, + "9fdc4fd.jpg?=20181213", + 8, + "che_190314_gSb2", + 117, + [ + "hall:dedication" + ] + ], + [ + "【8기】료우기시키", + 69, + 11, + 89, + "che_event_귀병", + [ + 3139, + 23017, + 12181, + 57842, + 3943 + ], + 1, + "f1d936e.jpg?=20190217", + 8, + "che_190314_gSb2", + 118, + [ + "hall:ttrate" + ] + ], + [ + "【8기】Aika", + 85, + 75, + 11, + "che_event_척사", + [ + 24592, + 460397, + 106214, + 152832, + 39933 + ], + 1, + "dc67ee2.png?=20190316", + 8, + "che_190314_gSb2", + 122, + [ + "hall:dedication", + "hall:dex2", + "hall:killrate", + "hall:tlrate" + ] + ], + [ + "【8기】기연빌런", + 10, + 66, + 86, + "che_event_척사", + [ + 0, + 0, + 0, + 0, + 0 + ], + 0, + "default.jpg", + 8, + "che_190314_gSb2", + 127, + [ + "hall:betgold" + ] + ], + [ + "【8기】아이린", + 71, + 89, + 10, + "che_event_돌격", + [ + 83939, + 446705, + 26572, + 87511, + 23890 + ], + 1, + "8dac73c.jpg?=20180922", + 8, + "che_190314_gSb2", + 128, + [ + "hall:dex2" + ] + ], + [ + "【8기】쀼웃", + 11, + 68, + 91, + "che_event_귀병", + [ + 0, + 0, + 0, + 0, + 0 + ], + 1, + "8996332.jpg?=20190315", + 8, + "che_190314_gSb2", + 129, + [ + "hall:tirate" + ] + ], + [ + "【8기】병리학적자세", + 68, + 10, + 92, + "che_event_격노", + [ + 6678, + 20844, + 27831, + 239390, + 16689 + ], + 1, + "3679089.jpg?=20180629", + 8, + "che_190314_gSb2", + 132, + [ + "hall:tirate" + ] + ], + [ + "【8기】외심장", + 71, + 10, + 87, + "che_event_척사", + [ + 16060, + 41612, + 41494, + 352823, + 21193 + ], + 1, + "36110cd.jpg?=20180826", + 8, + "che_190314_gSb2", + 134, + [ + "hall:firenum" + ] + ], + [ + "【8기】NOVA1492", + 10, + 70, + 87, + "che_event_징병", + [ + 0, + 0, + 0, + 0, + 15 + ], + 1, + "cd81b58.jpg?=20190316", + 8, + "che_190314_gSb2", + 162, + [ + "hall:tirate" + ] + ], + [ + "【8기】킹유신", + 81, + 75, + 12, + "che_event_격노", + [ + 265391, + 28657, + 93749, + 72500, + 7091 + ], + 0, + "default.jpg", + 8, + "che_190314_gSb2", + 250, + [ + "hall:dex1" + ] + ], + [ + "【8기】생각", + 10, + 65, + 90, + "che_event_격노", + [ + 0, + 0, + 0, + 0, + 0 + ], + 0, + "default.jpg", + 8, + "che_190314_gSb2", + 286, + [ + "hall:tirate" + ] + ], + [ + "【8기】색무새호무새망무새", + 80, + 10, + 76, + "che_event_척사", + [ + 31525, + 30791, + 65605, + 206908, + 12987 + ], + 1, + "4bc0d69.png?=20190327", + 8, + "che_190314_gSb2", + 287, + [ + "chief:7", + "hall:betwingold" + ] + ], + [ + "【8기】의리", + 72, + 83, + 10, + "che_event_보병", + [ + 69696, + 193146, + 73782, + 63784, + 5145 + ], + 1, + "7781b99.jpg?=20190208", + 8, + "che_190314_gSb2", + 326, + [ + "hall:dex2" + ] + ], + [ + "【9기】카이스트", + 71, + 10, + 88, + "che_event_신산", + [ + 11329, + 15008, + 16703, + 273114, + 26484 + ], + 1, + "9361ef8.jpg?=20180907", + 9, + "che_190411_jaVT", + 4, + [ + "hall:firenum", + "hall:winrate" + ] + ], + [ + "【9기】임사영", + 71, + 10, + 88, + "che_event_격노", + [ + 27007, + 27902, + 32753, + 476546, + 44815 + ], + 1, + "643224f.gif?=20190314", + 9, + "che_190411_jaVT", + 5, + [ + "hall:dedication", + "hall:dex4", + "hall:dex5", + "hall:tirate" + ] + ], + [ + "【9기】아유", + 72, + 10, + 87, + "che_event_귀병", + [ + 49094, + 31810, + 25388, + 304121, + 21048 + ], + 1, + "ba186bf.gif?=20181220", + 9, + "che_190411_jaVT", + 6, + [ + "chief:7", + "hall:dedication", + "hall:experience" + ] + ], + [ + "【9기】타마키", + 87, + 71, + 11, + "che_event_필살", + [ + 9600, + 21828, + 325212, + 59128, + 31101 + ], + 1, + "91ddaa3.jpg?=20190411", + 9, + "che_190411_jaVT", + 7, + [ + "hall:experience", + "hall:firenum", + "hall:killrate" + ] + ], + [ + "【9기】평민킬러", + 69, + 89, + 10, + "che_event_위압", + [ + 268642, + 12321, + 25583, + 33873, + 20140 + ], + 1, + "2816ad.jpg?=20181118", + 9, + "che_190411_jaVT", + 8, + [ + "hall:dex1", + "hall:killrate" + ] + ], + [ + "【9기】무사태평자", + 70, + 10, + 88, + "che_event_집중", + [ + 32253, + 29065, + 33306, + 417577, + 25348 + ], + 0, + "default.jpg", + 9, + "che_190411_jaVT", + 9, + [ + "hall:dedication", + "hall:winrate" + ] + ], + [ + "【9기】밥벌레", + 71, + 11, + 88, + "che_event_반계", + [ + 38954, + 32856, + 60051, + 501882, + 97392 + ], + 1, + "297847c.gif?=20190428", + 9, + "che_190411_jaVT", + 10, + [ + "hall:dex4", + "hall:dex5", + "hall:experience", + "hall:killcrew" + ] + ], + [ + "【9기】미야와키 사쿠라", + 72, + 10, + 87, + "che_event_격노", + [ + 48886, + 51927, + 21151, + 374378, + 19392 + ], + 1, + "34cff5.png?=20190411", + 9, + "che_190411_jaVT", + 11, + [ + "chief:12", + "hall:betgold", + "hall:dedication", + "hall:ttrate" + ] + ], + [ + "【9기】황약사", + 90, + 68, + 10, + "che_event_의술", + [ + 23121, + 116700, + 297522, + 146101, + 310045 + ], + 1, + "437813e.jpg?=20190408", + 9, + "che_190411_jaVT", + 13, + [ + "hall:dex5", + "hall:experience", + "hall:killcrew", + "hall:killrate", + "hall:tlrate" + ] + ], + [ + "【9기】이쓰미", + 71, + 10, + 89, + "che_event_격노", + [ + 23062, + 44401, + 88401, + 493861, + 28436 + ], + 1, + "fd6a0fd.jpg?=20181212", + 9, + "che_190411_jaVT", + 15, + [ + "hall:dex4", + "hall:tirate", + "hall:ttrate" + ] + ], + [ + "【9기】쌀벌레", + 69, + 11, + 87, + "che_event_신중", + [ + 14989, + 7754, + 10289, + 216518, + 25579 + ], + 1, + "e9a3054.jpg?=20190315", + 9, + "che_190411_jaVT", + 16, + [ + "hall:betgold", + "hall:betwin", + "hall:betwingold", + "hall:experience", + "hall:firenum" + ] + ], + [ + "【9기】로키", + 74, + 87, + 10, + "che_event_견고", + [ + 36243, + 67776, + 652322, + 135848, + 24967 + ], + 1, + "a90d1e5.jpg?=20190411", + 9, + "che_190411_jaVT", + 20, + [ + "hall:betwin", + "hall:betwingold", + "hall:dex3", + "hall:killcrew", + "hall:killnum", + "hall:tprate", + "hall:ttrate", + "hall:warnum" + ] + ], + [ + "【9기】기술제한이면인탐", + 10, + 69, + 91, + "che_event_신산", + [ + 0, + 0, + 0, + 1447, + 272 + ], + 0, + "default.jpg", + 9, + "che_190411_jaVT", + 22, + [ + "hall:firenum", + "hall:tirate", + "hall:ttrate" + ] + ], + [ + "【9기】치카", + 71, + 11, + 86, + "che_event_반계", + [ + 36669, + 52152, + 42682, + 556462, + 37493 + ], + 1, + "3e3566c.png?=20190411", + 9, + "che_190411_jaVT", + 23, + [ + "hall:dex4", + "hall:dex5", + "hall:killcrew", + "hall:killnum", + "hall:warnum" + ] + ], + [ + "【9기】나랑", + 90, + 41, + 37, + "che_event_저격", + [ + 24055, + 5348, + 4407, + 9933, + 464917 + ], + 1, + "8ee3feb.png?=20190501", + 9, + "che_190411_jaVT", + 25, + [ + "hall:dex5", + "hall:experience", + "hall:killrate", + "hall:tlrate", + "hall:winrate" + ] + ], + [ + "【9기】료우기시키", + 89, + 70, + 10, + "che_event_징병", + [ + 63515, + 646751, + 85636, + 274417, + 11284 + ], + 1, + "f1d936e.jpg?=20190217", + 9, + "che_190411_jaVT", + 26, + [ + "hall:dedication", + "hall:dex2", + "hall:killcrew", + "hall:tlrate", + "hall:warnum" + ] + ], + [ + "【9기】늅늅", + 72, + 87, + 10, + "che_event_돌격", + [ + 44614, + 44765, + 489085, + 125401, + 18272 + ], + 0, + "default.jpg", + 9, + "che_190411_jaVT", + 28, + [ + "hall:betgold", + "hall:betwin", + "hall:betwingold", + "hall:dex3", + "hall:tprate" + ] + ], + [ + "【9기】스트레인지", + 76, + 84, + 10, + "che_event_위압", + [ + 577828, + 74354, + 106284, + 101865, + 20770 + ], + 1, + "80af794.jpg?=20190411", + 9, + "che_190411_jaVT", + 29, + [ + "hall:dex1", + "hall:killcrew", + "hall:warnum" + ] + ], + [ + "【9기】개미호랑이", + 72, + 10, + 88, + "che_event_귀병", + [ + 52982, + 45959, + 84663, + 774816, + 28873 + ], + 1, + "81a1d5f.jpg?=20190501", + 9, + "che_190411_jaVT", + 30, + [ + "hall:dedication", + "hall:dex4", + "hall:killcrew", + "hall:killnum", + "hall:warnum", + "hall:winrate" + ] + ], + [ + "【9기】니콜라스 퓨리", + 79, + 11, + 80, + "che_event_반계", + [ + 68853, + 52328, + 82188, + 613604, + 24223 + ], + 1, + "9cca522.jpg?=20190412", + 9, + "che_190411_jaVT", + 31, + [ + "hall:betgold", + "hall:betrate", + "hall:betwin", + "hall:betwingold", + "hall:dex4", + "hall:killcrew", + "hall:killnum", + "hall:ttrate", + "hall:warnum" + ] + ], + [ + "【9기】이시리스", + 70, + 10, + 89, + "che_event_필살", + [ + 19121, + 32305, + 14316, + 205254, + 2988 + ], + 1, + "d51af2d.jpg?=20190411", + 9, + "che_190411_jaVT", + 34, + [ + "hall:firenum" + ] + ], + [ + "【9기】술벌레", + 11, + 70, + 86, + "che_event_신산", + [ + 0, + 0, + 0, + 0, + 4121 + ], + 1, + "8996332.jpg?=20190315", + 9, + "che_190411_jaVT", + 35, + [ + "hall:betwin", + "hall:betwingold", + "hall:firenum" + ] + ], + [ + "【9기】박초롱", + 73, + 86, + 10, + "che_event_필살", + [ + 110735, + 426298, + 28849, + 103873, + 24173 + ], + 1, + "95c959e.gif?=20190423", + 9, + "che_190411_jaVT", + 37, + [ + "hall:dex2" + ] + ], + [ + "【9기】이드", + 71, + 10, + 88, + "che_event_반계", + [ + 36788, + 47153, + 48086, + 490883, + 25385 + ], + 1, + "94635d.jpg?=20190412", + 9, + "che_190411_jaVT", + 38, + [ + "hall:dex4", + "hall:killnum", + "hall:winrate" + ] + ], + [ + "【9기】그루트", + 72, + 10, + 86, + "che_event_척사", + [ + 61332, + 47538, + 56486, + 524399, + 40000 + ], + 1, + "10265d3.png?=20190422", + 9, + "che_190411_jaVT", + 42, + [ + "hall:dex4", + "hall:dex5", + "hall:experience", + "hall:killnum" + ] + ], + [ + "【9기】노가가", + 90, + 68, + 10, + "che_event_돌격", + [ + 442090, + 41636, + 59251, + 85789, + 26487 + ], + 1, + "b8b96da.png?=20190421", + 9, + "che_190411_jaVT", + 46, + [ + "hall:betwin", + "hall:dex1", + "hall:firenum", + "hall:killrate", + "hall:tlrate" + ] + ], + [ + "【9기】하우젤", + 86, + 74, + 10, + "che_event_저격", + [ + 104661, + 794153, + 41042, + 258603, + 19995 + ], + 1, + "dcff9fd.jpg?=20180823", + 9, + "che_190411_jaVT", + 48, + [ + "hall:dex2", + "hall:killcrew", + "hall:killnum", + "hall:killrate", + "hall:warnum", + "hall:winrate" + ] + ], + [ + "【9기】이거뭔겜임", + 74, + 82, + 10, + "che_event_궁병", + [ + 75422, + 301634, + 7768, + 97862, + 19755 + ], + 0, + "default.jpg", + 9, + "che_190411_jaVT", + 49, + [ + "hall:dex2" + ] + ], + [ + "【9기】5분장", + 71, + 10, + 86, + "che_event_신중", + [ + 9133, + 75389, + 76279, + 562259, + 18920 + ], + 0, + "default.jpg", + 9, + "che_190411_jaVT", + 50, + [ + "hall:dex4" + ] + ], + [ + "【9기】sifmd", + 71, + 10, + 86, + "che_event_신중", + [ + 29311, + 26218, + 78883, + 341939, + 20436 + ], + 1, + "4d82adb.jpg?=20190325", + 9, + "che_190411_jaVT", + 51, + [ + "hall:tirate" + ] + ], + [ + "【9기】피라미드건설노동자", + 11, + 91, + 65, + "che_event_보병", + [ + 0, + 0, + 0, + 0, + 0 + ], + 1, + "78e5c15.jpg?=20190425", + 9, + "che_190411_jaVT", + 52, + [ + "hall:tprate" + ] + ], + [ + "【9기】죽창(+5)", + 69, + 11, + 89, + "che_event_격노", + [ + 20804, + 50624, + 42309, + 353331, + 37462 + ], + 1, + "1aca7f8.gif?=20190315", + 9, + "che_190411_jaVT", + 53, + [ + "chief:9", + "hall:dedication", + "hall:dex5", + "hall:experience", + "hall:tirate", + "hall:winrate" + ] + ], + [ + "【9기】보만다", + 72, + 85, + 10, + "che_event_위압", + [ + 15320, + 19270, + 451860, + 95652, + 29799 + ], + 1, + "987059d.png?=20190416", + 9, + "che_190411_jaVT", + 54, + [ + "hall:dex3", + "hall:killrate", + "hall:tprate" + ] + ], + [ + "【9기】∵∴∵∴∵∴∵∴∵", + 71, + 86, + 10, + "che_event_돌격", + [ + 363918, + 18088, + 46544, + 69087, + 67576 + ], + 1, + "6eeb68b.jpg?=20190426", + 9, + "che_190411_jaVT", + 55, + [ + "hall:dex1", + "hall:dex5", + "hall:killrate" + ] + ], + [ + "【9기】의리", + 72, + 84, + 10, + "che_event_돌격", + [ + 67642, + 38794, + 417181, + 115711, + 24007 + ], + 1, + "ec56615.png?=20190412", + 9, + "che_190411_jaVT", + 57, + [ + "hall:dex3" + ] + ], + [ + "【9기】콧코로", + 87, + 71, + 10, + "che_event_척사", + [ + 75273, + 403453, + 16584, + 114760, + 21249 + ], + 1, + "1c20687.png?=20190410", + 9, + "che_190411_jaVT", + 60, + [ + "hall:dex2", + "hall:tlrate" + ] + ], + [ + "【9기】아루지사마", + 67, + 89, + 12, + "che_event_격노", + [ + 69655, + 2651, + 18650, + 27009, + 6205 + ], + 1, + "3d319b5.png?=20190422", + 9, + "che_190411_jaVT", + 62, + [ + "hall:tprate" + ] + ], + [ + "【9기】다유", + 71, + 86, + 10, + "che_event_필살", + [ + 47995, + 58088, + 330058, + 111502, + 11977 + ], + 1, + "f489a2a.jpg?=20181226", + 9, + "che_190411_jaVT", + 64, + [ + "hall:dex3" + ] + ], + [ + "【9기】레프 트로츠키", + 71, + 10, + 87, + "che_event_저격", + [ + 28923, + 67108, + 56415, + 311092, + 16486 + ], + 0, + "default.jpg", + 9, + "che_190411_jaVT", + 65, + [ + "hall:tirate", + "hall:ttrate" + ] + ], + [ + "【9기】누렁", + 89, + 70, + 10, + "che_event_척사", + [ + 418684, + 13913, + 76175, + 126112, + 29697 + ], + 1, + "4bbfa36.jpg?=20190411", + 9, + "che_190411_jaVT", + 66, + [ + "hall:dex1", + "hall:tlrate" + ] + ], + [ + "【9기】클로제린츠", + 72, + 10, + 87, + "che_event_집중", + [ + 27280, + 35134, + 38566, + 423035, + 29805 + ], + 1, + "3333f22.png?=20190421", + 9, + "che_190411_jaVT", + 67, + [ + "chief:5", + "hall:dedication", + "hall:experience", + "hall:winrate" + ] + ], + [ + "【9기】소열제유비", + 71, + 87, + 10, + "che_event_척사", + [ + 8028, + 41684, + 306780, + 74420, + 17002 + ], + 1, + "a3b1bbb.png?=20180927", + 9, + "che_190411_jaVT", + 68, + [ + "hall:tprate" + ] + ], + [ + "【9기】호크아이", + 72, + 87, + 10, + "che_event_격노", + [ + 116602, + 426109, + 28348, + 89696, + 16420 + ], + 1, + "bd83469.jpg?=20190412", + 9, + "che_190411_jaVT", + 69, + [ + "hall:dex2" + ] + ], + [ + "【9기】HAL 9000", + 71, + 10, + 88, + "che_event_격노", + [ + 19845, + 42025, + 32166, + 312439, + 22452 + ], + 1, + "7be52e4.gif?=20190430", + 9, + "che_190411_jaVT", + 71, + [ + "chief:11", + "hall:betgold", + "hall:dedication", + "hall:tirate" + ] + ], + [ + "【9기】돼지바베큐", + 72, + 10, + 85, + "che_event_격노", + [ + 37411, + 16307, + 63997, + 493576, + 22347 + ], + 1, + "cd72025.png?=20190411", + 9, + "che_190411_jaVT", + 73, + [ + "hall:dex4" + ] + ], + [ + "【9기】아시나 겐이치로", + 85, + 71, + 10, + "che_event_공성", + [ + 22398, + 6701, + 7811, + 17538, + 168756 + ], + 1, + "9842c07.jpg?=20190420", + 9, + "che_190411_jaVT", + 74, + [ + "hall:dex5", + "hall:experience", + "hall:firenum", + "hall:killrate", + "hall:winrate" + ] + ], + [ + "【9기】싸우지말고삼모해", + 70, + 10, + 87, + "che_event_신산", + [ + 12208, + 24947, + 23451, + 334364, + 18004 + ], + 0, + "default.jpg", + 9, + "che_190411_jaVT", + 75, + [ + "hall:tirate" + ] + ], + [ + "【9기】정근", + 70, + 10, + 88, + "che_event_신산", + [ + 38194, + 72460, + 30069, + 446034, + 23656 + ], + 1, + "f4474c0.jpg?=20190422", + 9, + "che_190411_jaVT", + 76, + [ + "hall:betgold", + "hall:betwin", + "hall:betwingold" + ] + ], + [ + "【9기】버즈", + 88, + 71, + 10, + "che_event_척사", + [ + 655070, + 17681, + 103562, + 120047, + 36401 + ], + 1, + "1168f40.jpg?=20190415", + 9, + "che_190411_jaVT", + 78, + [ + "chief:6", + "hall:dedication", + "hall:dex1", + "hall:dex5", + "hall:killcrew", + "hall:killnum", + "hall:tlrate", + "hall:warnum" + ] + ], + [ + "【9기】미친과학", + 70, + 84, + 10, + "che_event_돌격", + [ + 285082, + 12813, + 54280, + 78370, + 15688 + ], + 0, + "default.jpg", + 9, + "che_190411_jaVT", + 79, + [ + "hall:dex1", + "hall:tprate" + ] + ], + [ + "【9기】북오더", + 71, + 85, + 10, + "che_event_보병", + [ + 345488, + 27073, + 59009, + 84979, + 20740 + ], + 1, + "c0276e1.gif?=20180917", + 9, + "che_190411_jaVT", + 80, + [ + "hall:dex1", + "hall:ttrate" + ] + ], + [ + "【9기】드류", + 70, + 10, + 87, + "che_event_척사", + [ + 24454, + 61025, + 30717, + 412103, + 23796 + ], + 1, + "507327d.png?=20181001", + 9, + "che_190411_jaVT", + 82, + [ + "hall:tirate" + ] + ], + [ + "【9기】리플", + 73, + 84, + 10, + "che_event_의술", + [ + 345042, + 37101, + 130088, + 93855, + 20830 + ], + 1, + "fb3c625.gif?=20190428", + 9, + "che_190411_jaVT", + 84, + [ + "hall:dex1" + ] + ], + [ + "【9기】수장", + 77, + 81, + 10, + "che_event_무쌍", + [ + 30407, + 48709, + 527680, + 124849, + 30458 + ], + 1, + "897dde2.png?=20190411", + 9, + "che_190411_jaVT", + 87, + [ + "hall:dex3", + "hall:killnum" + ] + ], + [ + "【9기】아이린", + 71, + 87, + 10, + "che_event_격노", + [ + 36892, + 325798, + 32259, + 69414, + 12842 + ], + 1, + "8dac73c.jpg?=20180922", + 9, + "che_190411_jaVT", + 90, + [ + "hall:dex2", + "hall:tprate", + "hall:ttrate" + ] + ], + [ + "【9기】도적", + 10, + 90, + 65, + "che_event_의술", + [ + 0, + 0, + 0, + 0, + 0 + ], + 1, + "68887a9.png?=20190421", + 9, + "che_190411_jaVT", + 92, + [ + "hall:firenum" + ] + ], + [ + "【9기】n아텐 누", + 72, + 11, + 85, + "che_event_척사", + [ + 49309, + 22980, + 47358, + 476320, + 16007 + ], + 1, + "862bd8e.gif?=20181028", + 9, + "che_190411_jaVT", + 94, + [ + "hall:tirate" + ] + ], + [ + "【9기】노네임", + 88, + 72, + 10, + "che_event_척사", + [ + 39814, + 296789, + 25358, + 134299, + 5472 + ], + 0, + "default.jpg", + 9, + "che_190411_jaVT", + 96, + [ + "hall:dex2", + "hall:tlrate" + ] + ], + [ + "【9기】파이", + 79, + 81, + 10, + "che_event_격노", + [ + 40333, + 49825, + 483081, + 128506, + 30387 + ], + 1, + "da3bc86.jpg?=20190318", + 9, + "che_190411_jaVT", + 99, + [ + "hall:dex3", + "hall:ttrate" + ] + ], + [ + "【9기】비올레타", + 70, + 85, + 10, + "che_event_필살", + [ + 45145, + 193144, + 10076, + 60515, + 10950 + ], + 1, + "fe0c1d2.gif?=20190422", + 9, + "che_190411_jaVT", + 102, + [ + "hall:tprate" + ] + ], + [ + "【9기】리안", + 86, + 71, + 10, + "che_event_돌격", + [ + 25240, + 66573, + 570513, + 136227, + 15160 + ], + 0, + "default.jpg", + 9, + "che_190411_jaVT", + 105, + [ + "hall:dex3", + "hall:killnum", + "hall:tlrate", + "hall:warnum", + "hall:winrate" + ] + ], + [ + "【9기】아무것도안함", + 85, + 74, + 10, + "che_event_돌격", + [ + 42228, + 41862, + 374326, + 102631, + 26438 + ], + 0, + "default.jpg", + 9, + "che_190411_jaVT", + 109, + [ + "hall:dex3", + "hall:tlrate" + ] + ], + [ + "【9기】망나뇽", + 70, + 84, + 12, + "che_event_척사", + [ + 104938, + 202890, + 30644, + 81780, + 0 + ], + 0, + "default.jpg", + 9, + "che_190411_jaVT", + 113, + [ + "hall:betgold", + "hall:betwin", + "hall:betwingold" + ] + ], + [ + "【9기】7.5초장", + 11, + 67, + 90, + "che_event_귀병", + [ + 0, + 0, + 0, + 895, + 145 + ], + 1, + "bb939e3.png?=20190412", + 9, + "che_190411_jaVT", + 119, + [ + "hall:ttrate" + ] + ], + [ + "【9기】장손신희", + 72, + 84, + 10, + "che_event_격노", + [ + 499965, + 41999, + 118131, + 143615, + 14149 + ], + 1, + "e7a5bde.jpg?=20190329", + 9, + "che_190411_jaVT", + 124, + [ + "hall:dex1", + "hall:warnum" + ] + ], + [ + "【9기】문학소녀", + 70, + 10, + 86, + "che_event_필살", + [ + 61277, + 26560, + 44044, + 354133, + 19828 + ], + 1, + "bf40507.jpg?=20190411", + 9, + "che_190411_jaVT", + 129, + [ + "hall:firenum" + ] + ], + [ + "【9기】제노에이지", + 69, + 10, + 87, + "che_event_징병", + [ + 20627, + 23470, + 63776, + 279270, + 3888 + ], + 1, + "ddd1fd7.jpg?=20190320", + 9, + "che_190411_jaVT", + 226, + [ + "hall:betgold", + "hall:betwin", + "hall:betwingold" + ] + ], + [ + "【9기】줄리엣", + 71, + 84, + 10, + "che_event_척사", + [ + 46512, + 359054, + 37499, + 85767, + 17706 + ], + 1, + "175639b.png?=20181025", + 9, + "che_190411_jaVT", + 246, + [ + "chief:10", + "hall:dex2", + "hall:tprate" + ] + ], + [ + "【9기】이수", + 70, + 85, + 10, + "che_event_징병", + [ + 18047, + 34335, + 384104, + 139097, + 16896 + ], + 0, + "default.jpg", + 9, + "che_190411_jaVT", + 258, + [ + "hall:betgold", + "hall:betrate", + "hall:betwin", + "hall:betwingold", + "hall:dex3" + ] + ], + [ + "【9기】탈곡기", + 69, + 12, + 80, + "che_event_징병", + [ + 12066, + 27302, + 29463, + 307356, + 16448 + ], + 1, + "9ed8be6.gif?=20190417", + 9, + "che_190411_jaVT", + 269, + [ + "hall:betgold", + "hall:betwingold" + ] + ], + [ + "【9기】아노리엔", + 73, + 81, + 10, + "che_event_저격", + [ + 34286, + 308787, + 18993, + 117144, + 8219 + ], + 1, + "99d6aca.png?=20190320", + 9, + "che_190411_jaVT", + 274, + [ + "hall:dex2" + ] + ], + [ + "【9기】실전형집합장", + 67, + 81, + 10, + "che_event_공성", + [ + 8799, + 0, + 50726, + 9935, + 6485 + ], + 1, + "bb3a4e1.png?=20180828", + 9, + "che_190411_jaVT", + 469, + [ + "hall:killrate" + ] + ], + [ + "【9기】아세소환수1", + 11, + 66, + 79, + "che_event_의술", + [ + 0, + 0, + 0, + 0, + 3969 + ], + 1, + "140a6b7.jpg?=20190425", + 9, + "che_190411_jaVT", + 470, + [ + "chief:8" + ] + ], + [ + "【10기】Hide_D", + 88, + 9, + 56, + "che_event_저격", + [ + 0, + 1516, + 8616, + 0, + 1486882 + ], + 1, + "ee5accd.jpg?=20190411", + 10, + "che_190509_88Ug", + 5, + [ + "hall:dex2", + "hall:dex3" + ] + ], + [ + "【10기】카라멜", + 88, + 9, + 9, + "che_event_저격", + [ + 0, + 0, + 0, + 0, + 318633 + ], + 1, + "9739f48.png?=20190510", + 10, + "che_190509_88Ug", + 7, + [ + "hall:dedication", + "hall:tlrate" + ] + ], + [ + "【10기】추레라", + 84, + 58, + 9, + "che_event_저격", + [ + 0, + 2797, + 1948, + 0, + 1199554 + ], + 1, + "5011028.jpg?=20190515", + 10, + "che_190509_88Ug", + 8, + [ + "hall:dex2", + "hall:dex3", + "hall:dex5", + "hall:experience", + "hall:killcrew", + "hall:warnum" + ] + ], + [ + "【10기】이드", + 87, + 57, + 9, + "che_event_저격", + [ + 0, + 0, + 0, + 0, + 1373926 + ], + 1, + "94635d.jpg?=20190412", + 10, + "che_190509_88Ug", + 12, + [ + "hall:dex5", + "hall:experience", + "hall:killcrew", + "hall:killnum", + "hall:killrate", + "hall:warnum", + "hall:winrate" + ] + ], + [ + "【10기】비스마르크", + 81, + 9, + 61, + "che_event_저격", + [ + 0, + 0, + 0, + 0, + 1451378 + ], + 0, + "default.jpg", + 10, + "che_190509_88Ug", + 13, + [ + "hall:betgold", + "hall:dex5", + "hall:killcrew", + "hall:killnum", + "hall:killrate", + "hall:warnum" + ] + ], + [ + "【10기】교통경찰", + 83, + 57, + 9, + "che_event_저격", + [ + 0, + 0, + 0, + 0, + 248443 + ], + 1, + "579af6f.jpg?=20190510", + 10, + "che_190509_88Ug", + 14, + [ + "hall:dedication" + ] + ], + [ + "【10기】아유", + 87, + 56, + 9, + "che_event_저격", + [ + 0, + 0, + 0, + 0, + 1201097 + ], + 1, + "ba186bf.gif?=20181220", + 10, + "che_190509_88Ug", + 16, + [ + "chief:8", + "hall:experience", + "hall:killrate" + ] + ], + [ + "【10기】신호등", + 81, + 56, + 9, + "che_event_저격", + [ + 0, + 0, + 4756, + 0, + 408973 + ], + 1, + "2959525.gif?=20190511", + 10, + "che_190509_88Ug", + 18, + [ + "hall:dex3" + ] + ], + [ + "【10기】과학 5호", + 86, + 10, + 57, + "che_event_저격", + [ + 0, + 0, + 0, + 0, + 1695198 + ], + 0, + "default.jpg", + 10, + "che_190509_88Ug", + 19, + [ + "hall:betgold", + "hall:betrate", + "hall:betwin", + "hall:betwingold", + "hall:dex5", + "hall:experience", + "hall:firenum", + "hall:killcrew", + "hall:killnum", + "hall:ttrate", + "hall:warnum", + "hall:winrate" + ] + ], + [ + "【10기】Defender", + 86, + 57, + 9, + "che_event_저격", + [ + 0, + 0, + 389, + 0, + 1035933 + ], + 1, + "622da6b.jpg?=20190511", + 10, + "che_190509_88Ug", + 20, + [ + "chief:10", + "hall:winrate" + ] + ], + [ + "【10기】김여사", + 83, + 58, + 9, + "che_event_저격", + [ + 0, + 2022, + 1890, + 0, + 542604 + ], + 1, + "bab8446.jpg?=20190607", + 10, + "che_190509_88Ug", + 22, + [ + "hall:dedication", + "hall:dex2", + "hall:experience" + ] + ], + [ + "【10기】양대가리", + 82, + 60, + 9, + "che_event_저격", + [ + 0, + 0, + 0, + 0, + 832628 + ], + 1, + "3f6d349.png?=20190611", + 10, + "che_190509_88Ug", + 23, + [ + "chief:12", + "hall:killrate" + ] + ], + [ + "【10기】런닝머신", + 83, + 55, + 14, + "che_event_저격", + [ + 0, + 0, + 0, + 0, + 1373421 + ], + 1, + "92484bf.gif?=20190530", + 10, + "che_190509_88Ug", + 24, + [ + "hall:dex5", + "hall:killcrew", + "hall:killnum", + "hall:warnum" + ] + ], + [ + "【10기】이쓰미", + 68, + 9, + 73, + "che_event_저격", + [ + 0, + 0, + 0, + 0, + 618683 + ], + 1, + "fd6a0fd.jpg?=20181212", + 10, + "che_190509_88Ug", + 25, + [ + "chief:9", + "hall:tirate" + ] + ], + [ + "【10기】음주단속", + 86, + 57, + 9, + "che_event_저격", + [ + 0, + 1828, + 0, + 0, + 770309 + ], + 1, + "71e9cfe.jpg?=20190510", + 10, + "che_190509_88Ug", + 26, + [ + "hall:dex2" + ] + ], + [ + "【10기】rwitch", + 82, + 9, + 57, + "che_event_저격", + [ + 0, + 4341, + 0, + 0, + 672844 + ], + 1, + "4d82adb.jpg?=20190325", + 10, + "che_190509_88Ug", + 28, + [ + "hall:dex2" + ] + ], + [ + "【10기】SSS급페라르기니", + 83, + 10, + 59, + "che_event_저격", + [ + 0, + 3867, + 10944, + 2294, + 1211752 + ], + 0, + "default.jpg", + 10, + "che_190509_88Ug", + 29, + [ + "hall:dex2", + "hall:dex3", + "hall:dex4", + "hall:dex5", + "hall:killcrew", + "hall:killnum", + "hall:warnum" + ] + ], + [ + "【10기】과속방지턱", + 92, + 56, + 9, + "che_event_저격", + [ + 0, + 0, + 0, + 0, + 1390908 + ], + 1, + "d092f20.jpg?=20190511", + 10, + "che_190509_88Ug", + 30, + [ + "hall:dex5", + "hall:experience", + "hall:killcrew", + "hall:killnum", + "hall:killrate", + "hall:tlrate", + "hall:warnum", + "hall:winrate" + ] + ], + [ + "【10기】소열제유비", + 73, + 68, + 9, + "che_event_저격", + [ + 0, + 0, + 0, + 0, + 489102 + ], + 1, + "a3b1bbb.png?=20180927", + 10, + "che_190509_88Ug", + 32, + [ + "hall:tprate" + ] + ], + [ + "【10기】ㅅㅎㅁㄱ", + 9, + 57, + 85, + "che_event_저격", + [ + 0, + 0, + 0, + 0, + 0 + ], + 1, + "a19edc0.gif?=20190411", + 10, + "che_190509_88Ug", + 34, + [ + "hall:betgold", + "hall:betrate", + "hall:betwin", + "hall:betwingold", + "hall:tirate" + ] + ], + [ + "【10기】개미호랑이", + 88, + 9, + 56, + "che_event_저격", + [ + 0, + 0, + 0, + 0, + 1624312 + ], + 1, + "ba5b648.jpg?=20190610", + 10, + "che_190509_88Ug", + 36, + [ + "hall:dex5", + "hall:killcrew", + "hall:killnum", + "hall:killrate", + "hall:warnum", + "hall:winrate" + ] + ], + [ + "【10기】갓트라브", + 81, + 57, + 9, + "che_event_저격", + [ + 0, + 0, + 0, + 0, + 216548 + ], + 0, + "default.jpg", + 10, + "che_190509_88Ug", + 37, + [ + "hall:dedication" + ] + ], + [ + "【10기】붕붕", + 87, + 31, + 33, + "che_event_저격", + [ + 0, + 0, + 0, + 0, + 1040956 + ], + 1, + "3958021.jpg?=20190509", + 10, + "che_190509_88Ug", + 38, + [ + "hall:betgold", + "hall:tlrate" + ] + ], + [ + "【10기】북오더", + 85, + 58, + 9, + "che_event_저격", + [ + 0, + 0, + 0, + 0, + 1496612 + ], + 1, + "4939af6.gif?=20190609", + 10, + "che_190509_88Ug", + 40, + [ + "chief:11", + "hall:dex5", + "hall:killrate", + "hall:warnum" + ] + ], + [ + "【10기】병리학적자세", + 64, + 9, + 78, + "che_event_저격", + [ + 0, + 0, + 0, + 41371, + 630303 + ], + 1, + "3679089.jpg?=20180629", + 10, + "che_190509_88Ug", + 42, + [ + "hall:dex4", + "hall:firenum", + "hall:tirate" + ] + ], + [ + "【10기】카오스피닉스", + 82, + 34, + 33, + "che_event_저격", + [ + 0, + 1231, + 2677, + 2398, + 507552 + ], + 1, + "2af0641.jpg?=20180706", + 10, + "che_190509_88Ug", + 43, + [ + "hall:dex3", + "hall:dex4" + ] + ], + [ + "【10기】스즈나", + 85, + 57, + 9, + "che_event_저격", + [ + 0, + 0, + 0, + 0, + 889347 + ], + 1, + "1945e60.jpg?=20190513", + 10, + "che_190509_88Ug", + 44, + [ + "hall:firenum", + "hall:winrate" + ] + ], + [ + "【10기】수장", + 82, + 59, + 9, + "che_event_저격", + [ + 0, + 0, + 4352, + 369, + 566867 + ], + 1, + "5dca65b.jpg?=20190510", + 10, + "che_190509_88Ug", + 48, + [ + "hall:dedication", + "hall:dex3", + "hall:dex4", + "hall:winrate" + ] + ], + [ + "【10기】끼이이이이익", + 82, + 57, + 9, + "che_event_저격", + [ + 0, + 0, + 0, + 0, + 573957 + ], + 0, + "default.jpg", + 10, + "che_190509_88Ug", + 49, + [ + "hall:experience", + "hall:ttrate" + ] + ], + [ + "【10기】무면허음주졸음운전", + 84, + 57, + 9, + "che_event_저격", + [ + 0, + 4964, + 0, + 3633, + 918989 + ], + 1, + "b31ef66.png?=20190509", + 10, + "che_190509_88Ug", + 50, + [ + "hall:betgold", + "hall:dex2", + "hall:dex4" + ] + ], + [ + "【10기】조승상", + 75, + 61, + 9, + "che_event_저격", + [ + 0, + 0, + 0, + 1978, + 242428 + ], + 1, + "9842c07.jpg?=20190420", + 10, + "che_190509_88Ug", + 52, + [ + "hall:dex4" + ] + ], + [ + "【10기】코코로", + 81, + 9, + 59, + "che_event_저격", + [ + 0, + 0, + 0, + 0, + 649435 + ], + 1, + "cd05b08.jpg?=20190405", + 10, + "che_190509_88Ug", + 54, + [ + "hall:dedication", + "hall:experience" + ] + ], + [ + "【10기】v무광v", + 85, + 56, + 9, + "che_event_저격", + [ + 0, + 0, + 0, + 0, + 690965 + ], + 1, + "181fefa.jpg?=20190414", + 10, + "che_190509_88Ug", + 55, + [ + "hall:firenum" + ] + ], + [ + "【10기】이시리스", + 85, + 55, + 9, + "che_event_저격", + [ + 0, + 0, + 0, + 0, + 773039 + ], + 0, + "default.jpg", + 10, + "che_190509_88Ug", + 56, + [ + "hall:dedication", + "hall:tlrate" + ] + ], + [ + "【10기】시그마", + 81, + 9, + 57, + "che_event_저격", + [ + 0, + 0, + 0, + 0, + 384254 + ], + 1, + "6a2c77.png?=20190509", + 10, + "che_190509_88Ug", + 57, + [ + "hall:ttrate" + ] + ], + [ + "【10기】모니카", + 87, + 9, + 56, + "che_event_저격", + [ + 0, + 0, + 0, + 0, + 1527225 + ], + 1, + "2bc52ba.jpg?=20190509", + 10, + "che_190509_88Ug", + 59, + [ + "hall:dex5", + "hall:experience", + "hall:killcrew", + "hall:killnum", + "hall:killrate", + "hall:warnum", + "hall:winrate" + ] + ], + [ + "【10기】연두는말안드뤄", + 82, + 60, + 9, + "che_event_저격", + [ + 0, + 48125, + 0, + 0, + 859020 + ], + 1, + "892fca8.jpg?=20190509", + 10, + "che_190509_88Ug", + 63, + [ + "hall:dex2", + "hall:experience", + "hall:killnum", + "hall:killrate", + "hall:winrate" + ] + ], + [ + "【10기】줄리엣", + 83, + 57, + 9, + "che_event_저격", + [ + 0, + 0, + 10522, + 0, + 521782 + ], + 1, + "175639b.png?=20181025", + 10, + "che_190509_88Ug", + 69, + [ + "hall:dex3", + "hall:tlrate" + ] + ], + [ + "【10기】두나", + 52, + 14, + 87, + "che_event_저격", + [ + 0, + 0, + 0, + 0, + 5870 + ], + 1, + "bf0c572.png?=20181114", + 10, + "che_190509_88Ug", + 76, + [ + "hall:dedication", + "hall:tirate" + ] + ], + [ + "【10기】아이린", + 68, + 72, + 9, + "che_event_저격", + [ + 0, + 0, + 139266, + 0, + 298447 + ], + 1, + "8dac73c.jpg?=20180922", + 10, + "che_190509_88Ug", + 78, + [ + "hall:betgold", + "hall:betrate", + "hall:betwin", + "hall:betwingold", + "hall:dex3", + "hall:tprate" + ] + ], + [ + "【10기】주현", + 9, + 63, + 82, + "che_event_저격", + [ + 0, + 0, + 0, + 0, + 2643 + ], + 1, + "3f0c559.png?=20190509", + 10, + "che_190509_88Ug", + 79, + [ + "hall:firenum", + "hall:tirate", + "hall:ttrate" + ] + ], + [ + "【10기】다유", + 78, + 57, + 9, + "che_event_저격", + [ + 0, + 0, + 0, + 0, + 382659 + ], + 1, + "f489a2a.jpg?=20181226", + 10, + "che_190509_88Ug", + 82, + [ + "hall:firenum" + ] + ], + [ + "【10기】ㅅ", + 9, + 83, + 55, + "che_event_저격", + [ + 0, + 0, + 0, + 0, + 0 + ], + 0, + "default.jpg", + 10, + "che_190509_88Ug", + 84, + [ + "hall:firenum", + "hall:tprate" + ] + ], + [ + "【10기】드류", + 81, + 35, + 33, + "che_event_저격", + [ + 0, + 0, + 0, + 0, + 724774 + ], + 1, + "507327d.png?=20181001", + 10, + "che_190509_88Ug", + 86, + [ + "hall:tlrate" + ] + ], + [ + "【10기】오빠차뽑았다", + 81, + 56, + 9, + "che_event_저격", + [ + 0, + 4052, + 6894, + 0, + 808342 + ], + 0, + "default.jpg", + 10, + "che_190509_88Ug", + 87, + [ + "hall:dex2" + ] + ], + [ + "【10기】녹차병", + 58, + 47, + 47, + "che_event_저격", + [ + 0, + 0, + 0, + 0, + 224041 + ], + 1, + "38960cb.jpg?=20190511", + 10, + "che_190509_88Ug", + 93, + [ + "hall:betgold" + ] + ], + [ + "【10기】SARS", + 83, + 59, + 9, + "che_event_저격", + [ + 0, + 328, + 3234, + 0, + 755372 + ], + 1, + "b84944.jpg?=20180829", + 10, + "che_190509_88Ug", + 94, + [ + "hall:dex3" + ] + ], + [ + "【10기】따라큐", + 84, + 58, + 9, + "che_event_저격", + [ + 0, + 0, + 0, + 0, + 950865 + ], + 1, + "d879a26.png?=20190427", + 10, + "che_190509_88Ug", + 98, + [ + "hall:firenum", + "hall:killcrew", + "hall:killnum", + "hall:killrate", + "hall:tlrate", + "hall:winrate" + ] + ], + [ + "【10기】할머니가타고있어요", + 79, + 9, + 60, + "che_event_저격", + [ + 0, + 0, + 0, + 0, + 451820 + ], + 1, + "d44d197.jpg?=20190511", + 10, + "che_190509_88Ug", + 99, + [ + "hall:betgold", + "hall:betwin", + "hall:betwingold", + "hall:firenum" + ] + ], + [ + "【10기】내정", + 9, + 71, + 67, + "che_event_저격", + [ + 0, + 0, + 0, + 0, + 0 + ], + 0, + "default.jpg", + 10, + "che_190509_88Ug", + 102, + [ + "hall:tprate" + ] + ], + [ + "【10기】외심장", + 84, + 55, + 9, + "che_event_저격", + [ + 0, + 0, + 0, + 0, + 232710 + ], + 1, + "36110cd.jpg?=20180826", + 10, + "che_190509_88Ug", + 115, + [ + "hall:dedication", + "hall:tlrate" + ] + ], + [ + "【10기】장수", + 82, + 58, + 9, + "che_event_저격", + [ + 0, + 2186, + 993, + 0, + 613617 + ], + 1, + "f8c3037.png?=20190510", + 10, + "che_190509_88Ug", + 120, + [ + "hall:dex2" + ] + ], + [ + "【10기】쿠요", + 70, + 65, + 9, + "che_event_저격", + [ + 0, + 0, + 4792, + 0, + 176027 + ], + 1, + "140a6b7.jpg?=20190425", + 10, + "che_190509_88Ug", + 123, + [ + "hall:dex3", + "hall:tprate" + ] + ], + [ + "【10기】청기사", + 9, + 56, + 86, + "che_event_저격", + [ + 0, + 0, + 0, + 0, + 0 + ], + 1, + "9fdc4fd.jpg?=20181213", + 10, + "che_190509_88Ug", + 124, + [ + "hall:dedication", + "hall:tirate" + ] + ], + [ + "【10기】미스티", + 85, + 57, + 9, + "che_event_저격", + [ + 0, + 0, + 0, + 0, + 362123 + ], + 1, + "1aadcba.png?=20180908", + 10, + "che_190509_88Ug", + 132, + [ + "hall:tlrate" + ] + ], + [ + "【10기】료우기빵셔틀", + 65, + 9, + 74, + "che_event_저격", + [ + 0, + 0, + 0, + 0, + 439478 + ], + 0, + "default.jpg", + 10, + "che_190509_88Ug", + 151, + [ + "hall:tirate" + ] + ], + [ + "【10기】파이", + 80, + 61, + 9, + "che_event_저격", + [ + 0, + 0, + 0, + 0, + 651088 + ], + 1, + "da3bc86.jpg?=20190318", + 10, + "che_190509_88Ug", + 168, + [ + "chief:7", + "hall:tlrate" + ] + ], + [ + "【10기】페이트", + 10, + 73, + 60, + "che_event_저격", + [ + 0, + 0, + 0, + 0, + 0 + ], + 1, + "bf40507.jpg?=20190411", + 10, + "che_190509_88Ug", + 253, + [ + "hall:tprate" + ] + ], + [ + "【10기】호갱", + 60, + 9, + 73, + "che_event_저격", + [ + 0, + 0, + 0, + 0, + 16989 + ], + 0, + "default.jpg", + 10, + "che_190509_88Ug", + 309, + [ + "hall:tirate" + ] + ], + [ + "【10기】H2O", + 70, + 69, + 10, + "che_event_저격", + [ + 34, + 0, + 0, + 0, + 269246 + ], + 0, + "default.jpg", + 10, + "che_190509_88Ug", + 318, + [ + "hall:dex1", + "hall:tprate", + "hall:ttrate" + ] + ], + [ + "【10기】광삼이", + 71, + 9, + 69, + "che_event_저격", + [ + 0, + 0, + 0, + 0, + 0 + ], + 1, + "69fc07c.jpg?=20180926", + 10, + "che_190509_88Ug", + 325, + [ + "hall:ttrate" + ] + ], + [ + "【10기】트수", + 76, + 83, + 10, + "che_event_저격", + [ + 0, + 0, + 0, + 0, + 792011 + ], + 1, + "483e099.png?=20190608", + 10, + "che_190509_88Ug", + 396, + [ + "chief:5", + "hall:betgold", + "hall:betrate", + "hall:betwin", + "hall:betwingold", + "hall:tprate", + "hall:ttrate" + ] + ], + [ + "【10기】뾰루퉁", + 66, + 66, + 9, + "che_event_저격", + [ + 0, + 0, + 0, + 0, + 283777 + ], + 1, + "8565afb.jpg?=20190516", + 10, + "che_190509_88Ug", + 406, + [ + "hall:tprate" + ] + ], + [ + "【10기】물타오르네", + 86, + 10, + 70, + "che_event_저격", + [ + 0, + 0, + 0, + 0, + 677948 + ], + 0, + "default.jpg", + 10, + "che_190509_88Ug", + 418, + [ + "hall:ttrate" + ] + ], + [ + "【10기】민트토끼", + 10, + 79, + 78, + "che_event_저격", + [ + 0, + 0, + 0, + 0, + 0 + ], + 1, + "8e57858.gif?=20181217", + 10, + "che_190509_88Ug", + 481, + [ + "hall:tirate", + "hall:tprate", + "hall:ttrate" + ] + ], + [ + "【10기】무당벌레", + 89, + 10, + 67, + "che_event_저격", + [ + 0, + 0, + 0, + 0, + 638842 + ], + 0, + "default.jpg", + 10, + "che_190509_88Ug", + 495, + [ + "chief:6", + "hall:ttrate" + ] + ], + [ + "【10기】무쇠다리사람", + 69, + 10, + 78, + "che_event_저격", + [ + 0, + 0, + 0, + 0, + 319561 + ], + 1, + "1b4b6f7.jpg?=20190608", + 10, + "che_190509_88Ug", + 698, + [ + "hall:tirate" + ] + ], + [ + "【11기】카이스트", + 71, + 10, + 87, + "che_event_신중", + [ + 45950, + 29151, + 48395, + 462648, + 17053 + ], + 1, + "9361ef8.jpg?=20180907", + 11, + "che_190620_oK3G", + 3, + [ + "hall:dex3", + "hall:dex4", + "hall:tirate" + ] + ], + [ + "【11기】줄리엣", + 70, + 10, + 86, + "che_event_환술", + [ + 9486, + 9392, + 8991, + 263816, + 23308 + ], + 1, + "70f470f.png?=20190620", + 11, + "che_190620_oK3G", + 4, + [ + "chief:5", + "hall:betgold", + "hall:betrate", + "hall:betwin", + "hall:betwingold", + "hall:dedication", + "hall:experience", + "hall:killrate" + ] + ], + [ + "【11기】Samo", + 71, + 85, + 10, + "che_event_저격", + [ + 263737, + 8497, + 45554, + 58067, + 17063 + ], + 1, + "25449b0.png?=20190626", + 11, + "che_190620_oK3G", + 5, + [ + "hall:dex1", + "hall:tprate", + "hall:winrate" + ] + ], + [ + "【11기】니논", + 10, + 67, + 90, + "che_event_저격", + [ + 0, + 0, + 0, + 0, + 0 + ], + 1, + "ee20cdb.jpg?=20190620", + 11, + "che_190620_oK3G", + 6, + [ + "hall:betgold", + "hall:betrate", + "hall:betwin", + "hall:betwingold" + ] + ], + [ + "【11기】극새ㅅ사이브ㄹ", + 67, + 10, + 90, + "che_event_신중", + [ + 10771, + 10616, + 14553, + 202092, + 36147 + ], + 1, + "6e009d9.jpg?=20190620", + 11, + "che_190620_oK3G", + 7, + [ + "chief:11", + "hall:dedication", + "hall:dex5", + "hall:tirate" + ] + ], + [ + "【11기】이초홍", + 71, + 10, + 86, + "che_event_필살", + [ + 11443, + 64213, + 47527, + 392635, + 12294 + ], + 1, + "8d5e5ae.jpg?=20190619", + 11, + "che_190620_oK3G", + 8, + [ + "hall:betgold", + "hall:betrate", + "hall:betwin", + "hall:betwingold", + "hall:dex3", + "hall:firenum" + ] + ], + [ + "【11기】케프리", + 91, + 65, + 10, + "che_event_무쌍", + [ + 2041, + 5571, + 4024, + 2044, + 111189 + ], + 1, + "8032c27.jpg?=20190707", + 11, + "che_190620_oK3G", + 9, + [ + "hall:dex5", + "hall:firenum", + "hall:killrate", + "hall:tlrate" + ] + ], + [ + "【11기】철푸덕", + 70, + 10, + 88, + "che_event_신중", + [ + 16840, + 11570, + 10514, + 226394, + 20204 + ], + 1, + "dbe0759.jpg?=20190708", + 11, + "che_190620_oK3G", + 10, + [ + "chief:9", + "hall:experience", + "hall:killrate", + "hall:tirate" + ] + ], + [ + "【11기】기분좋은안녕", + 68, + 88, + 10, + "che_event_저격", + [ + 0, + 17209, + 16548, + 5128, + 16153 + ], + 0, + "default.jpg", + 11, + "che_190620_oK3G", + 11, + [ + "hall:tprate" + ] + ], + [ + "【11기】평민킬러", + 71, + 87, + 10, + "che_event_격노", + [ + 451835, + 14094, + 19512, + 79452, + 22849 + ], + 1, + "fba3a6f.jpg?=20190620", + 11, + "che_190620_oK3G", + 12, + [ + "hall:dedication", + "hall:dex1", + "hall:experience", + "hall:killnum", + "hall:killrate", + "hall:tprate", + "hall:winrate" + ] + ], + [ + "【11기】삐약이", + 74, + 83, + 10, + "che_event_격노", + [ + 14542, + 317000, + 7269, + 51955, + 26625 + ], + 1, + "10f5cdc.jpg?=20190708", + 11, + "che_190620_oK3G", + 14, + [ + "chief:12", + "hall:dex2", + "hall:killrate" + ] + ], + [ + "【11기】꽃냥", + 69, + 10, + 87, + "che_event_척사", + [ + 31586, + 38835, + 8777, + 348707, + 22640 + ], + 1, + "3447fa.jpg?=20190620", + 11, + "che_190620_oK3G", + 15, + [ + "hall:dedication", + "hall:experience" + ] + ], + [ + "【11기】Hide_D", + 11, + 69, + 88, + "che_event_귀병", + [ + 0, + 0, + 0, + 0, + 0 + ], + 1, + "ee5accd.jpg?=20190411", + 11, + "che_190620_oK3G", + 16, + [ + "hall:experience", + "hall:ttrate" + ] + ], + [ + "【11기】무당벌레", + 86, + 10, + 72, + "che_event_신중", + [ + 70603, + 57301, + 22890, + 393328, + 18909 + ], + 0, + "default.jpg", + 11, + "che_190620_oK3G", + 17, + [ + "hall:dex1", + "hall:dex4" + ] + ], + [ + "【11기】개촐ㄹ랒필거야 ?", + 81, + 75, + 10, + "che_event_격노", + [ + 43710, + 4749, + 0, + 18360, + 48021 + ], + 1, + "1b8a3df.jpg?=20190620", + 11, + "che_190620_oK3G", + 18, + [ + "chief:6", + "hall:dex5", + "hall:killrate", + "hall:ttrate", + "hall:winrate" + ] + ], + [ + "【11기】꽃삔", + 71, + 11, + 86, + "che_event_격노", + [ + 50429, + 60535, + 46173, + 489285, + 28523 + ], + 1, + "fc715bf.jpg?=20190620", + 11, + "che_190620_oK3G", + 19, + [ + "hall:dex4", + "hall:killnum" + ] + ], + [ + "【11기】수장", + 70, + 10, + 86, + "che_event_집중", + [ + 11534, + 31540, + 10081, + 251307, + 14906 + ], + 1, + "b9b784a.jpg?=20190521", + 11, + "che_190620_oK3G", + 24, + [ + "hall:killrate", + "hall:winrate" + ] + ], + [ + "【11기】비스마르크", + 69, + 85, + 11, + "che_event_견고", + [ + 59569, + 350127, + 4276, + 106365, + 19326 + ], + 0, + "default.jpg", + 11, + "che_190620_oK3G", + 25, + [ + "hall:betgold", + "hall:dex2" + ] + ], + [ + "【11기】료우기시키", + 82, + 76, + 10, + "che_event_무쌍", + [ + 58091, + 391277, + 10916, + 123158, + 25056 + ], + 1, + "f1d936e.jpg?=20190217", + 11, + "che_190620_oK3G", + 26, + [ + "hall:dex2", + "hall:tlrate" + ] + ], + [ + "【11기】이리시스", + 72, + 10, + 86, + "che_event_필살", + [ + 53487, + 59065, + 13263, + 554253, + 26487 + ], + 0, + "default.jpg", + 11, + "che_190620_oK3G", + 27, + [ + "hall:dex4", + "hall:firenum", + "hall:killcrew", + "hall:warnum" + ] + ], + [ + "【11기】개미호랑이", + 72, + 10, + 87, + "che_event_신산", + [ + 46734, + 88676, + 54169, + 676154, + 20093 + ], + 1, + "b0969be.jpg?=20190705", + 11, + "che_190620_oK3G", + 29, + [ + "hall:dex3", + "hall:dex4", + "hall:killcrew", + "hall:killnum", + "hall:tirate", + "hall:warnum", + "hall:winrate" + ] + ], + [ + "【11기】드림캐쳐", + 73, + 84, + 10, + "che_event_견고", + [ + 780295, + 42451, + 44529, + 59837, + 28091 + ], + 1, + "6bca7d1.jpg?=20190620", + 11, + "che_190620_oK3G", + 30, + [ + "chief:8", + "hall:dex1", + "hall:firenum", + "hall:killcrew", + "hall:killnum", + "hall:killrate", + "hall:warnum" + ] + ], + [ + "【11기】학식대장", + 82, + 74, + 10, + "che_event_저격", + [ + 94798, + 49581, + 20829, + 31553, + 15007 + ], + 1, + "49f13e6.png?=20190520", + 11, + "che_190620_oK3G", + 31, + [ + "hall:dex1", + "hall:tlrate" + ] + ], + [ + "【11기】장손신희", + 71, + 85, + 11, + "che_event_돌격", + [ + 271136, + 11573, + 24245, + 98125, + 14353 + ], + 1, + "e7a5bde.jpg?=20190329", + 11, + "che_190620_oK3G", + 32, + [ + "hall:dex1", + "hall:tprate", + "hall:ttrate" + ] + ], + [ + "【11기】리안", + 69, + 10, + 87, + "che_event_필살", + [ + 13785, + 19145, + 14669, + 153616, + 13975 + ], + 0, + "default.jpg", + 11, + "che_190620_oK3G", + 33, + [ + "hall:dedication" + ] + ], + [ + "【11기】살인사건", + 71, + 85, + 10, + "che_event_징병", + [ + 4975, + 27521, + 145474, + 46272, + 12402 + ], + 0, + "default.jpg", + 11, + "che_190620_oK3G", + 35, + [ + "hall:dex3" + ] + ], + [ + "【11기】협동전 하고싶다", + 73, + 10, + 86, + "che_event_척사", + [ + 69376, + 76252, + 56149, + 716566, + 35042 + ], + 1, + "a2215be.png?=20190625", + 11, + "che_190620_oK3G", + 37, + [ + "hall:dex1", + "hall:dex3", + "hall:dex4", + "hall:dex5", + "hall:experience", + "hall:killcrew", + "hall:killnum", + "hall:warnum", + "hall:winrate" + ] + ], + [ + "【11기】반역의루돌프", + 82, + 66, + 13, + "che_event_무쌍", + [ + 190460, + 21059, + 34520, + 61975, + 3668 + ], + 0, + "default.jpg", + 11, + "che_190620_oK3G", + 38, + [ + "hall:dex1", + "hall:tlrate" + ] + ], + [ + "【11기】파이", + 68, + 10, + 88, + "che_event_저격", + [ + 3904, + 18236, + 13663, + 172482, + 30437 + ], + 1, + "f76fa74.jpg?=20190629", + 11, + "che_190620_oK3G", + 41, + [ + "hall:dex5", + "hall:tirate" + ] + ], + [ + "【11기】고긔가먹고싶", + 10, + 72, + 84, + "che_event_반계", + [ + 0, + 0, + 0, + 0, + 0 + ], + 1, + "20239cf.jpg?=20190305", + 11, + "che_190620_oK3G", + 42, + [ + "hall:dedication", + "hall:firenum" + ] + ], + [ + "【11기】쒸익쒸익", + 84, + 73, + 11, + "che_event_견고", + [ + 10684, + 35883, + 195196, + 43139, + 31175 + ], + 1, + "dbeeb0d.jpg?=20190620", + 11, + "che_190620_oK3G", + 44, + [ + "chief:10", + "hall:dex3", + "hall:dex5", + "hall:experience", + "hall:tlrate" + ] + ], + [ + "【11기】이시리스", + 72, + 11, + 86, + "che_event_신산", + [ + 60260, + 73608, + 37067, + 627605, + 24308 + ], + 0, + "default.jpg", + 11, + "che_190620_oK3G", + 45, + [ + "hall:dex4", + "hall:experience", + "hall:killcrew", + "hall:killnum", + "hall:tirate", + "hall:warnum", + "hall:winrate" + ] + ], + [ + "【11기】임사영", + 68, + 10, + 89, + "che_event_신산", + [ + 12085, + 26669, + 1671, + 172397, + 7362 + ], + 1, + "e08aca7.jpg?=20190512", + 11, + "che_190620_oK3G", + 46, + [ + "hall:firenum" + ] + ], + [ + "【11기】외심장", + 72, + 11, + 84, + "che_event_의술", + [ + 61498, + 53874, + 39951, + 651861, + 35599 + ], + 1, + "36110cd.jpg?=20180826", + 11, + "che_190620_oK3G", + 47, + [ + "hall:betgold", + "hall:dex4", + "hall:dex5", + "hall:firenum", + "hall:killcrew", + "hall:killnum", + "hall:warnum" + ] + ], + [ + "【11기】빨간망토", + 11, + 69, + 87, + "che_event_척사", + [ + 0, + 0, + 0, + 0, + 0 + ], + 1, + "862bd8e.gif?=20181028", + 11, + "che_190620_oK3G", + 48, + [ + "hall:ttrate" + ] + ], + [ + "【11기】두나", + 68, + 10, + 90, + "che_event_귀병", + [ + 0, + 0, + 0, + 0, + 0 + ], + 1, + "bf0c572.png?=20181114", + 11, + "che_190620_oK3G", + 49, + [ + "hall:tirate", + "hall:ttrate" + ] + ], + [ + "【11기】멘헤라쨩", + 10, + 71, + 88, + "che_event_반계", + [ + 0, + 0, + 0, + 0, + 0 + ], + 1, + "7ba28b1.jpg?=20190526", + 11, + "che_190620_oK3G", + 50, + [ + "hall:ttrate" + ] + ], + [ + "【11기】BAKBAK", + 68, + 10, + 88, + "che_event_귀병", + [ + 14349, + 18743, + 13345, + 217520, + 25666 + ], + 0, + "default.jpg", + 11, + "che_190620_oK3G", + 51, + [ + "chief:7" + ] + ], + [ + "【11기】아련그자체", + 70, + 10, + 87, + "che_event_신산", + [ + 14597, + 12254, + 16162, + 168069, + 37863 + ], + 1, + "57e4a39.jpg?=20190620", + 11, + "che_190620_oK3G", + 52, + [ + "hall:dedication", + "hall:dex5" + ] + ], + [ + "【11기】사스케", + 71, + 84, + 10, + "che_event_돌격", + [ + 37570, + 241466, + 21685, + 65233, + 21668 + ], + 1, + "bab8446.jpg?=20190607", + 11, + "che_190620_oK3G", + 53, + [ + "hall:dex2" + ] + ], + [ + "【11기】Radon", + 87, + 70, + 10, + "che_event_위압", + [ + 34067, + 69241, + 430748, + 164549, + 10316 + ], + 1, + "55ad2a4.png?=20190703", + 11, + "che_190620_oK3G", + 54, + [ + "hall:dex3", + "hall:killcrew", + "hall:tlrate", + "hall:ttrate", + "hall:warnum" + ] + ], + [ + "【11기】이쓰미", + 73, + 10, + 84, + "che_event_신중", + [ + 38767, + 30673, + 9890, + 436618, + 19295 + ], + 1, + "fd6a0fd.jpg?=20181212", + 11, + "che_190620_oK3G", + 55, + [ + "hall:dex4" + ] + ], + [ + "【11기】댕찌율", + 74, + 10, + 83, + "che_event_집중", + [ + 44779, + 74127, + 29893, + 633958, + 27449 + ], + 1, + "99cd27f.gif?=20190606", + 11, + "che_190620_oK3G", + 56, + [ + "hall:dex4", + "hall:killcrew", + "hall:killnum", + "hall:warnum", + "hall:winrate" + ] + ], + [ + "【11기】유튜브친구들", + 69, + 10, + 87, + "che_event_징병", + [ + 31651, + 35996, + 26865, + 232785, + 7071 + ], + 1, + "c213511.jpg?=20190628", + 11, + "che_190620_oK3G", + 57, + [ + "hall:tirate" + ] + ], + [ + "【11기】치요", + 87, + 67, + 10, + "che_event_격노", + [ + 23831, + 165268, + 0, + 81230, + 15362 + ], + 1, + "61db7ca.jpg?=20190620", + 11, + "che_190620_oK3G", + 58, + [ + "hall:dex2", + "hall:tlrate" + ] + ], + [ + "【11기】나가사와 마리나", + 81, + 10, + 76, + "che_event_척사", + [ + 54962, + 43922, + 11725, + 380426, + 24276 + ], + 1, + "ea91789.png?=20190620", + 11, + "che_190620_oK3G", + 59, + [ + "hall:ttrate" + ] + ], + [ + "【11기】륜", + 91, + 11, + 11, + "che_event_필살", + [ + 5759, + 4925, + 3378, + 22723, + 268931 + ], + 1, + "8c97e55.jpg?=20190627", + 11, + "che_190620_oK3G", + 60, + [ + "hall:betgold", + "hall:betwin", + "hall:betwingold", + "hall:dex5", + "hall:experience", + "hall:killrate", + "hall:tlrate" + ] + ], + [ + "【11기】병리학적자세", + 70, + 10, + 88, + "che_event_저격", + [ + 31215, + 27626, + 29999, + 309583, + 14674 + ], + 1, + "3679089.jpg?=20180629", + 11, + "che_190620_oK3G", + 61, + [ + "hall:winrate" + ] + ], + [ + "【11기】민트토끼", + 10, + 89, + 68, + "che_event_위압", + [ + 0, + 0, + 0, + 0, + 0 + ], + 1, + "8e57858.gif?=20181217", + 11, + "che_190620_oK3G", + 62, + [ + "hall:dedication", + "hall:firenum" + ] + ], + [ + "【11기】늘모", + 64, + 82, + 18, + "che_event_필살", + [ + 12380, + 65266, + 289182, + 99172, + 10579 + ], + 1, + "e7c163.png?=20180801", + 11, + "che_190620_oK3G", + 64, + [ + "hall:dex3", + "hall:tprate" + ] + ], + [ + "【11기】킹구갓구", + 69, + 88, + 10, + "che_event_척사", + [ + 11503, + 191630, + 3212, + 41610, + 26047 + ], + 1, + "fb3c625.gif?=20190428", + 11, + "che_190620_oK3G", + 65, + [ + "hall:dex2", + "hall:killrate", + "hall:tprate" + ] + ], + [ + "【11기】박일아", + 10, + 67, + 92, + "che_event_저격", + [ + 0, + 0, + 0, + 0, + 0 + ], + 1, + "4178de2.gif?=20181216", + 11, + "che_190620_oK3G", + 66, + [ + "hall:betgold", + "hall:tirate" + ] + ], + [ + "【11기】사이다라떼", + 68, + 10, + 88, + "che_event_신산", + [ + 1262, + 14488, + 8803, + 183807, + 33362 + ], + 0, + "default.jpg", + 11, + "che_190620_oK3G", + 68, + [ + "hall:betgold", + "hall:dedication", + "hall:dex5", + "hall:experience" + ] + ], + [ + "【11기】손인", + 71, + 87, + 10, + "che_event_무쌍", + [ + 30019, + 55845, + 346588, + 137689, + 11577 + ], + 1, + "9382fb7.png?=20190620", + 11, + "che_190620_oK3G", + 72, + [ + "hall:betgold", + "hall:dex3", + "hall:tprate", + "hall:ttrate" + ] + ], + [ + "【11기】소열제유비", + 71, + 85, + 10, + "che_event_무쌍", + [ + 9604, + 20194, + 148418, + 38737, + 13348 + ], + 1, + "a3b1bbb.png?=20180927", + 11, + "che_190620_oK3G", + 73, + [ + "hall:dex3" + ] + ], + [ + "【11기】헹이", + 71, + 85, + 10, + "che_event_징병", + [ + 54900, + 321923, + 4800, + 95585, + 21977 + ], + 0, + "default.jpg", + 11, + "che_190620_oK3G", + 76, + [ + "hall:dex2", + "hall:tprate" + ] + ], + [ + "【11기】의욕없는규일", + 73, + 85, + 10, + "che_event_무쌍", + [ + 86480, + 635227, + 39771, + 86433, + 16507 + ], + 0, + "default.jpg", + 11, + "che_190620_oK3G", + 77, + [ + "hall:dex1", + "hall:dex2", + "hall:killcrew", + "hall:killnum", + "hall:tprate", + "hall:warnum" + ] + ], + [ + "【11기】아이린", + 69, + 88, + 10, + "che_event_의술", + [ + 38847, + 302361, + 10787, + 108187, + 15091 + ], + 1, + "8dac73c.jpg?=20180922", + 11, + "che_190620_oK3G", + 86, + [ + "hall:dex2", + "hall:firenum", + "hall:tprate" + ] + ], + [ + "【11기】조용히해라", + 11, + 67, + 88, + "che_event_징병", + [ + 0, + 0, + 0, + 0, + 0 + ], + 1, + "6114f3.jpg?=20190701", + 11, + "che_190620_oK3G", + 87, + [ + "hall:dedication" + ] + ], + [ + "【11기】오른쪽왼쪽제자리", + 88, + 69, + 11, + "che_event_격노", + [ + 742452, + 42119, + 41555, + 44985, + 23407 + ], + 1, + "7996e6e.png?=20190705", + 11, + "che_190620_oK3G", + 95, + [ + "hall:dex1", + "hall:killcrew", + "hall:killnum", + "hall:tlrate", + "hall:warnum" + ] + ], + [ + "【11기】고양이발바닥", + 65, + 11, + 92, + "che_event_저격", + [ + 0, + 0, + 0, + 0, + 0 + ], + 0, + "default.jpg", + 11, + "che_190620_oK3G", + 96, + [ + "hall:tirate" + ] + ], + [ + "【11기】로리", + 10, + 68, + 87, + "che_event_신중", + [ + 0, + 0, + 0, + 0, + 0 + ], + 1, + "deebdd3.jpg?=20190318", + 11, + "che_190620_oK3G", + 189, + [ + "hall:ttrate" + ] + ], + [ + "【11기】개꿀", + 68, + 82, + 10, + "che_event_격노", + [ + 19641, + 112569, + 4288, + 33032, + 566 + ], + 1, + "5b0cf23.jpg?=20190625", + 11, + "che_190620_oK3G", + 263, + [ + "hall:firenum" + ] + ], + [ + "【11기】먹튀", + 69, + 11, + 82, + "che_event_의술", + [ + 36140, + 29015, + 10634, + 283666, + 13675 + ], + 0, + "default.jpg", + 11, + "che_190620_oK3G", + 290, + [ + "hall:winrate" + ] + ], + [ + "【11기】조용히해주실래요?", + 81, + 68, + 10, + "che_event_저격", + [ + 34935, + 259917, + 26321, + 82577, + 6010 + ], + 1, + "bf1f881.jpg?=20190707", + 11, + "che_190620_oK3G", + 324, + [ + "hall:dex2", + "hall:tlrate" + ] + ], + [ + "【11기】타오바오", + 11, + 68, + 81, + "che_event_귀병", + [ + 0, + 0, + 0, + 0, + 0 + ], + 1, + "d2c6421.png?=20190629", + 11, + "che_190620_oK3G", + 347, + [ + "hall:betgold", + "hall:betrate", + "hall:betwin", + "hall:betwingold" + ] + ], + [ + "【12기】병리학적자세", + 72, + 10, + 91, + "che_event_집중", + [ + 69911, + 35780, + 11401, + 688771, + 27212 + ], + 1, + "3679089.jpg?=20180629", + 12, + "che_190718_eOan", + 3, + [ + "hall:dex4", + "hall:experience", + "hall:killcrew", + "hall:killnum", + "hall:killrate", + "hall:ttrate", + "hall:warnum", + "hall:winrate" + ] + ], + [ + "【12기】로 리", + 71, + 10, + 89, + "che_event_필살", + [ + 72041, + 48050, + 34209, + 599557, + 36300 + ], + 1, + "1ec690f.jpg?=20190720", + 12, + "che_190718_eOan", + 4, + [ + "chief:9", + "hall:betgold", + "hall:dex4", + "hall:experience", + "hall:firenum", + "hall:killcrew", + "hall:killnum", + "hall:warnum" + ] + ], + [ + "【12기】미나토 유키나", + 67, + 12, + 89, + "che_event_신중", + [ + 10753, + 0, + 0, + 78068, + 25787 + ], + 1, + "dfbfdef.jpg?=20190718", + 12, + "che_190718_eOan", + 5, + [ + "hall:killrate", + "hall:tirate" + ] + ], + [ + "【12기】꼬리♡", + 73, + 10, + 90, + "che_event_척사", + [ + 24478, + 27771, + 20496, + 454170, + 34509 + ], + 1, + "844a93b.gif?=20190717", + 12, + "che_190718_eOan", + 7, + [ + "hall:dedication", + "hall:dex4", + "hall:killnum" + ] + ], + [ + "【12기】치즈", + 90, + 70, + 10, + "che_event_견고", + [ + 489454, + 21081, + 5994, + 63836, + 24746 + ], + 1, + "bd91cf9.jpg?=20190717", + 12, + "che_190718_eOan", + 8, + [ + "hall:betgold", + "hall:dex1", + "hall:tlrate", + "hall:warnum" + ] + ], + [ + "【12기】꼬리", + 72, + 10, + 91, + "che_event_신산", + [ + 34317, + 33432, + 27660, + 414807, + 74294 + ], + 1, + "33d4b88.jpg?=20190718", + 12, + "che_190718_eOan", + 10, + [ + "hall:dedication", + "hall:dex5", + "hall:tirate", + "hall:ttrate" + ] + ], + [ + "【12기】꽃핀", + 75, + 10, + 89, + "che_event_격노", + [ + 36802, + 34787, + 39921, + 764517, + 28955 + ], + 1, + "587c5f5.jpg?=20190808", + 12, + "che_190718_eOan", + 11, + [ + "chief:11", + "hall:dex3", + "hall:dex4", + "hall:experience", + "hall:killcrew", + "hall:killnum", + "hall:ttrate", + "hall:warnum", + "hall:winrate" + ] + ], + [ + "【12기】개미호랑이", + 71, + 11, + 88, + "che_event_필살", + [ + 33821, + 55291, + 13340, + 434325, + 17702 + ], + 1, + "fccc37e.jpg?=20190718", + 12, + "che_190718_eOan", + 13, + [ + "hall:dex2" + ] + ], + [ + "【12기】캬루", + 70, + 11, + 90, + "che_event_징병", + [ + 23352, + 12035, + 12716, + 241607, + 22213 + ], + 1, + "54e940f.png?=20190717", + 12, + "che_190718_eOan", + 14, + [ + "hall:dedication", + "hall:winrate" + ] + ], + [ + "【12기】Hide_D", + 10, + 68, + 93, + "che_event_집중", + [ + 0, + 0, + 0, + 4294, + 0 + ], + 1, + "ee5accd.jpg?=20190411", + 12, + "che_190718_eOan", + 16, + [ + "hall:experience", + "hall:tirate" + ] + ], + [ + "【12기】평민킬러", + 75, + 85, + 10, + "che_event_격노", + [ + 821464, + 28148, + 28488, + 50811, + 41345 + ], + 1, + "fba3a6f.jpg?=20190620", + 12, + "che_190718_eOan", + 21, + [ + "chief:10", + "hall:dex1", + "hall:dex5", + "hall:experience", + "hall:killcrew", + "hall:killnum", + "hall:killrate", + "hall:tprate", + "hall:warnum", + "hall:winrate" + ] + ], + [ + "【12기】메디브", + 83, + 78, + 10, + "che_event_저격", + [ + 4560, + 3486, + 151198, + 47860, + 18120 + ], + 1, + "def2895.jpg?=20190719", + 12, + "che_190718_eOan", + 22, + [ + "hall:betgold", + "hall:dex3", + "hall:firenum", + "hall:tlrate" + ] + ], + [ + "【12기】아바브와", + 75, + 86, + 10, + "che_event_격노", + [ + 6173, + 21407, + 151848, + 49781, + 13133 + ], + 0, + "default.jpg", + 12, + "che_190718_eOan", + 24, + [ + "hall:dex3" + ] + ], + [ + "【12기】문병", + 13, + 81, + 78, + "che_event_공성", + [ + 2578, + 0, + 0, + 2381, + 9275 + ], + 1, + "564b738.jpg?=20190718", + 12, + "che_190718_eOan", + 26, + [ + "hall:tprate", + "hall:ttrate" + ] + ], + [ + "【12기】카오스피닉스", + 74, + 10, + 87, + "che_event_격노", + [ + 43498, + 45060, + 17716, + 492016, + 52704 + ], + 1, + "7f80b2f.jpg?=20190715", + 12, + "che_190718_eOan", + 27, + [ + "chief:7", + "hall:dex4", + "hall:dex5", + "hall:experience", + "hall:firenum", + "hall:killcrew", + "hall:killnum", + "hall:warnum" + ] + ], + [ + "【12기】n아텐 누", + 77, + 11, + 85, + "che_event_의술", + [ + 52920, + 72334, + 38899, + 871059, + 38895 + ], + 1, + "862bd8e.gif?=20181028", + 12, + "che_190718_eOan", + 28, + [ + "chief:12", + "hall:dex2", + "hall:dex3", + "hall:dex4", + "hall:experience", + "hall:killcrew", + "hall:killnum", + "hall:killrate", + "hall:warnum", + "hall:winrate" + ] + ], + [ + "【12기】바밀리오", + 69, + 10, + 93, + "che_event_척사", + [ + 11265, + 5326, + 0, + 114450, + 8013 + ], + 1, + "6979928.jpg?=20190713", + 12, + "che_190718_eOan", + 29, + [ + "hall:dedication", + "hall:tirate", + "hall:ttrate" + ] + ], + [ + "【12기】두나", + 68, + 10, + 94, + "che_event_징병", + [ + 0, + 0, + 0, + 32434, + 12034 + ], + 1, + "bf0c572.png?=20181114", + 12, + "che_190718_eOan", + 31, + [ + "hall:dedication", + "hall:tirate" + ] + ], + [ + "【12기】리안", + 70, + 10, + 90, + "che_event_척사", + [ + 9005, + 3957, + 6810, + 120993, + 24207 + ], + 1, + "db0cb7a.jpg?=20190719", + 12, + "che_190718_eOan", + 35, + [ + "hall:tirate" + ] + ], + [ + "【12기】료우기시키", + 71, + 10, + 88, + "che_event_의술", + [ + 25047, + 22269, + 15994, + 480555, + 22925 + ], + 1, + "f1d936e.jpg?=20190217", + 12, + "che_190718_eOan", + 36, + [ + "hall:dex4" + ] + ], + [ + "【12기】이한결", + 74, + 86, + 10, + "che_event_징병", + [ + 50723, + 399206, + 46192, + 125802, + 26769 + ], + 1, + "63c4de9.jpg?=20190718", + 12, + "che_190718_eOan", + 37, + [ + "hall:dex2", + "hall:dex3" + ] + ], + [ + "【12기】나폴레옹", + 82, + 79, + 10, + "che_event_돌격", + [ + 25797, + 512433, + 4289, + 37028, + 39345 + ], + 1, + "86e6b9f.jpg?=20190719", + 12, + "che_190718_eOan", + 38, + [ + "hall:dex2", + "hall:dex5" + ] + ], + [ + "【12기】란카", + 10, + 72, + 90, + "che_event_신산", + [ + 0, + 0, + 0, + 3433, + 654 + ], + 1, + "bb939e3.png?=20190412", + 12, + "che_190718_eOan", + 41, + [ + "hall:dedication", + "hall:ttrate" + ] + ], + [ + "【12기】꼬리원자력발전소", + 83, + 11, + 78, + "che_event_징병", + [ + 77866, + 73785, + 28477, + 543106, + 14279 + ], + 1, + "daf6db8.gif?=20190728", + 12, + "che_190718_eOan", + 43, + [ + "hall:dex1", + "hall:dex2", + "hall:dex4", + "hall:killcrew", + "hall:killnum", + "hall:warnum" + ] + ], + [ + "【12기】리즈나광팬672번", + 77, + 82, + 10, + "che_event_저격", + [ + 63223, + 52779, + 284357, + 123335, + 13228 + ], + 1, + "3f21be0.jpg?=20190719", + 12, + "che_190718_eOan", + 44, + [ + "hall:dex3", + "hall:tprate" + ] + ], + [ + "【12기】장손신희", + 78, + 83, + 10, + "che_event_위압", + [ + 93781, + 450836, + 8658, + 77456, + 25492 + ], + 1, + "e7a5bde.jpg?=20190329", + 12, + "che_190718_eOan", + 45, + [ + "chief:8", + "hall:dex1", + "hall:dex2" + ] + ], + [ + "【12기】카이스트", + 68, + 11, + 87, + "che_event_징병", + [ + 10773, + 19837, + 18001, + 161161, + 49652 + ], + 1, + "9361ef8.jpg?=20180907", + 12, + "che_190718_eOan", + 47, + [ + "hall:dex5", + "hall:firenum" + ] + ], + [ + "【12기】분노의꼬리", + 70, + 10, + 91, + "che_event_신산", + [ + 31635, + 4564, + 11118, + 263932, + 37081 + ], + 1, + "d5dc381.gif?=20190719", + 12, + "che_190718_eOan", + 48, + [ + "hall:dedication" + ] + ], + [ + "【12기】이해고", + 84, + 75, + 10, + "che_event_징병", + [ + 35015, + 41263, + 488453, + 144773, + 40520 + ], + 1, + "f332b13.jpg?=20190718", + 12, + "che_190718_eOan", + 49, + [ + "hall:dex3", + "hall:dex5", + "hall:killcrew", + "hall:tlrate" + ] + ], + [ + "【12기】네이미", + 86, + 10, + 73, + "che_event_저격", + [ + 64624, + 50349, + 38151, + 437873, + 73914 + ], + 0, + "default.jpg", + 12, + "che_190718_eOan", + 52, + [ + "hall:dex3", + "hall:dex5", + "hall:firenum", + "hall:tlrate" + ] + ], + [ + "【12기】모건", + 93, + 13, + 10, + "che_event_필살", + [ + 0, + 245, + 0, + 0, + 127902 + ], + 1, + "b023aa0.jpg?=20190731", + 12, + "che_190718_eOan", + 54, + [ + "hall:dex5", + "hall:killrate", + "hall:tlrate", + "hall:winrate" + ] + ], + [ + "【12기】청기사", + 10, + 71, + 89, + "che_event_반계", + [ + 0, + 0, + 0, + 1602, + 0 + ], + 1, + "9fdc4fd.jpg?=20181213", + 12, + "che_190718_eOan", + 57, + [ + "hall:dedication", + "hall:ttrate" + ] + ], + [ + "【12기】반역의루돌프", + 78, + 74, + 12, + "che_event_척사", + [ + 203002, + 16060, + 10404, + 46509, + 10693 + ], + 0, + "default.jpg", + 12, + "che_190718_eOan", + 58, + [ + "hall:dex1", + "hall:killrate" + ] + ], + [ + "【12기】외심장", + 68, + 10, + 91, + "che_event_척사", + [ + 21042, + 20412, + 2754, + 118718, + 9084 + ], + 1, + "36110cd.jpg?=20180826", + 12, + "che_190718_eOan", + 59, + [ + "hall:tirate" + ] + ], + [ + "【12기】로비", + 10, + 68, + 92, + "che_event_척사", + [ + 0, + 775, + 0, + 384, + 0 + ], + 1, + "59b6a1d.jpg?=20180802", + 12, + "che_190718_eOan", + 60, + [ + "hall:dedication", + "hall:experience", + "hall:tirate" + ] + ], + [ + "【12기】쟁안하는트롤", + 67, + 10, + 92, + "che_event_반계", + [ + 4371, + 2736, + 4412, + 9006, + 0 + ], + 0, + "default.jpg", + 12, + "che_190718_eOan", + 61, + [ + "hall:tirate" + ] + ], + [ + "【12기】시뉴카린해명해", + 91, + 70, + 10, + "che_event_위압", + [ + 387404, + 32960, + 26004, + 113309, + 7305 + ], + 1, + "25dd670.png?=20190718", + 12, + "che_190718_eOan", + 62, + [ + "hall:dex1", + "hall:tlrate" + ] + ], + [ + "【12기】보스곰", + 69, + 11, + 89, + "che_event_신산", + [ + 31497, + 36831, + 5917, + 271843, + 17167 + ], + 1, + "398e96e.gif?=20190719", + 12, + "che_190718_eOan", + 64, + [ + "hall:tirate" + ] + ], + [ + "【12기】김나영", + 70, + 89, + 10, + "che_event_징병", + [ + 455057, + 15416, + 39763, + 39666, + 45299 + ], + 1, + "aa2d228.jpg?=20190718", + 12, + "che_190718_eOan", + 66, + [ + "hall:dedication", + "hall:dex1", + "hall:dex3", + "hall:dex5", + "hall:experience", + "hall:killrate", + "hall:tprate" + ] + ], + [ + "【12기】제노에이지", + 67, + 10, + 95, + "che_event_집중", + [ + 15642, + 8539, + 7564, + 193185, + 16806 + ], + 1, + "ddd1fd7.jpg?=20190320", + 12, + "che_190718_eOan", + 76, + [ + "hall:killrate", + "hall:ttrate", + "hall:winrate" + ] + ], + [ + "【12기】노란멍충이", + 70, + 88, + 11, + "che_event_격노", + [ + 35591, + 157802, + 965, + 27862, + 25253 + ], + 1, + "3666aa6.png?=20190621", + 12, + "che_190718_eOan", + 81, + [ + "hall:dex2", + "hall:tprate" + ] + ], + [ + "【12기】사스케", + 92, + 10, + 10, + "che_event_위압", + [ + 7623, + 3550, + 5654, + 5813, + 430100 + ], + 1, + "bab8446.jpg?=20190607", + 12, + "che_190718_eOan", + 82, + [ + "hall:dex5", + "hall:experience", + "hall:killrate", + "hall:tlrate", + "hall:winrate" + ] + ], + [ + "【12기】아침에먹는아욱국", + 87, + 10, + 72, + "che_event_반계", + [ + 50904, + 28941, + 28962, + 391378, + 17309 + ], + 0, + "default.jpg", + 12, + "che_190718_eOan", + 85, + [ + "hall:tlrate" + ] + ], + [ + "【12기】뒹굴뒹굴", + 70, + 10, + 84, + "che_event_귀병", + [ + 33960, + 3235, + 22837, + 184288, + 2221 + ], + 0, + "default.jpg", + 12, + "che_190718_eOan", + 90, + [ + "hall:betgold", + "hall:betwin", + "hall:betwingold", + "hall:winrate" + ] + ], + [ + "【12기】USB", + 73, + 10, + 90, + "che_event_환술", + [ + 7103, + 19575, + 7369, + 235149, + 13518 + ], + 1, + "ee1c9bb.png?=20190724", + 12, + "che_190718_eOan", + 91, + [ + "hall:firenum", + "hall:winrate" + ] + ], + [ + "【12기】호박고구마", + 11, + 85, + 73, + "che_event_무쌍", + [ + 0, + 0, + 0, + 0, + 0 + ], + 1, + "ea63404.jpg?=20190719", + 12, + "che_190718_eOan", + 92, + [ + "hall:firenum", + "hall:tprate" + ] + ], + [ + "【12기】스카디", + 74, + 86, + 10, + "che_event_견고", + [ + 641266, + 24147, + 31764, + 147351, + 19158 + ], + 1, + "112eb1b.jpg?=20190719", + 12, + "che_190718_eOan", + 96, + [ + "chief:6", + "hall:dex1", + "hall:killcrew", + "hall:killnum", + "hall:killrate", + "hall:warnum" + ] + ], + [ + "【12기】호무새", + 77, + 10, + 82, + "che_event_신산", + [ + 52590, + 48055, + 14950, + 441744, + 18624 + ], + 1, + "6cb46de.png?=20190719", + 12, + "che_190718_eOan", + 99, + [ + "chief:5" + ] + ], + [ + "【12기】아이린", + 70, + 88, + 11, + "che_event_견고", + [ + 38283, + 282325, + 11817, + 92874, + 4907 + ], + 1, + "8dac73c.jpg?=20180922", + 12, + "che_190718_eOan", + 100, + [ + "hall:dex2", + "hall:tprate" + ] + ], + [ + "【12기】뽀", + 71, + 10, + 91, + "che_event_격노", + [ + 41282, + 41874, + 11142, + 437907, + 19323 + ], + 1, + "34674f1.jpg?=20190719", + 12, + "che_190718_eOan", + 101, + [ + "hall:firenum", + "hall:ttrate" + ] + ], + [ + "【12기】낙지꿈", + 75, + 10, + 86, + "che_event_저격", + [ + 62642, + 42823, + 35801, + 500075, + 25085 + ], + 0, + "default.jpg", + 12, + "che_190718_eOan", + 102, + [ + "hall:dex4", + "hall:killcrew", + "hall:killnum", + "hall:ttrate", + "hall:warnum" + ] + ], + [ + "【12기】만샘", + 71, + 10, + 88, + "che_event_신중", + [ + 54581, + 47171, + 18478, + 493039, + 12480 + ], + 1, + "4a206a1.jpg?=20181122", + 12, + "che_190718_eOan", + 105, + [ + "hall:dex4" + ] + ], + [ + "【12기】광삼이", + 77, + 10, + 81, + "che_event_저격", + [ + 41662, + 26088, + 57286, + 399158, + 22107 + ], + 1, + "69fc07c.jpg?=20180926", + 12, + "che_190718_eOan", + 108, + [ + "hall:dex3" + ] + ], + [ + "【12기】늙고병든활쟁이", + 74, + 83, + 10, + "che_event_격노", + [ + 356225, + 38109, + 18885, + 95317, + 21965 + ], + 0, + "default.jpg", + 12, + "che_190718_eOan", + 122, + [ + "hall:dex1", + "hall:tprate" + ] + ], + [ + "【12기】천괴금", + 10, + 90, + 69, + "che_event_저격", + [ + 0, + 0, + 0, + 1493, + 0 + ], + 1, + "ae84007.png?=20190806", + 12, + "che_190718_eOan", + 130, + [ + "hall:betgold", + "hall:tprate" + ] + ], + [ + "【12기】태양탄", + 78, + 80, + 11, + "che_event_궁병", + [ + 36449, + 375355, + 16129, + 56424, + 19445 + ], + 0, + "default.jpg", + 12, + "che_190718_eOan", + 209, + [ + "hall:dex2", + "hall:tlrate" + ] + ], + [ + "【12기】정채연", + 73, + 83, + 10, + "che_event_격노", + [ + 53425, + 367655, + 10095, + 52426, + 9710 + ], + 1, + "bdf89f5.jpg?=20190722", + 12, + "che_190718_eOan", + 230, + [ + "hall:dex2" + ] + ], + [ + "【12기】집나간파이", + 84, + 72, + 10, + "che_event_척사", + [ + 241768, + 10221, + 30656, + 82470, + 14006 + ], + 1, + "f76fa74.jpg?=20190629", + 12, + "che_190718_eOan", + 276, + [ + "hall:dex1", + "hall:tlrate" + ] + ], + [ + "【12기】구경꾼", + 67, + 79, + 12, + "che_event_무쌍", + [ + 0, + 0, + 0, + 0, + 0 + ], + 0, + "default.jpg", + 12, + "che_190718_eOan", + 381, + [ + "hall:tprate" + ] + ], + [ + "【13기】연초봄", + 69, + 83, + 10, + "che_event_돌격", + [ + 21589, + 20116, + 308862, + 61105, + 23434 + ], + 1, + "2bfad16.jpg?=20190815", + 13, + "che_190815_w0sU", + 4, + [ + "chief:11", + "hall:dex3", + "hall:firenum", + "hall:killcrew" + ] + ], + [ + "【13기】아이린", + 70, + 85, + 11, + "che_event_돌격", + [ + 14001, + 364900, + 14622, + 67165, + 15973 + ], + 1, + "8dac73c.jpg?=20180922", + 13, + "che_190815_w0sU", + 6, + [ + "hall:dedication", + "hall:dex2", + "hall:experience", + "hall:killcrew", + "hall:killnum", + "hall:killrate", + "hall:tprate", + "hall:warnum", + "hall:winrate" + ] + ], + [ + "【13기】비스마르크", + 68, + 85, + 11, + "che_event_궁병", + [ + 22648, + 309742, + 10454, + 46404, + 14676 + ], + 0, + "default.jpg", + 13, + "che_190815_w0sU", + 10, + [ + "hall:dex2", + "hall:firenum", + "hall:killrate", + "hall:tprate" + ] + ], + [ + "【13기】치ㅋㄹ타", + 85, + 69, + 11, + "che_event_돌격", + [ + 5750, + 37860, + 240155, + 53294, + 21034 + ], + 1, + "4188f16.jpg?=20190823", + 13, + "che_190815_w0sU", + 14, + [ + "hall:dex3", + "hall:tlrate" + ] + ], + [ + "【13기】오리온자리", + 81, + 72, + 10, + "che_event_견고", + [ + 30079, + 212423, + 14163, + 41093, + 19533 + ], + 1, + "71c0d1f.jpg?=20190718", + 13, + "che_190815_w0sU", + 15, + [ + "hall:dex2" + ] + ], + [ + "【13기】호무새", + 83, + 69, + 10, + "che_event_척사", + [ + 6801, + 25260, + 287620, + 58259, + 35925 + ], + 1, + "3649856.png?=20190815", + 13, + "che_190815_w0sU", + 16, + [ + "hall:dex3", + "hall:dex5" + ] + ], + [ + "【13기】애니", + 87, + 67, + 11, + "che_event_위압", + [ + 27097, + 540228, + 16576, + 48074, + 12900 + ], + 1, + "78c51c9.jpg?=20190818", + 13, + "che_190815_w0sU", + 18, + [ + "hall:dex2", + "hall:killcrew", + "hall:killnum", + "hall:tlrate", + "hall:warnum" + ] + ], + [ + "【13기】배박수양아지", + 78, + 74, + 10, + "che_event_견고", + [ + 4984, + 54145, + 210891, + 31778, + 14156 + ], + 1, + "d572e5f.jpg?=20190815", + 13, + "che_190815_w0sU", + 19, + [ + "hall:dex2", + "hall:tlrate" + ] + ], + [ + "【13기】샴", + 71, + 10, + 84, + "che_event_저격", + [ + 21982, + 11782, + 11700, + 173334, + 21517 + ], + 1, + "b3a530b.jpg?=20190813", + 13, + "che_190815_w0sU", + 21, + [ + "hall:tirate" + ] + ], + [ + "【13기】베이비소울", + 82, + 73, + 10, + "che_event_견고", + [ + 230121, + 7083, + 12067, + 49111, + 24169 + ], + 1, + "7081d76.jpg?=20190815", + 13, + "che_190815_w0sU", + 28, + [ + "hall:betgold", + "hall:dex1", + "hall:tlrate" + ] + ], + [ + "【13기】병리학적자세", + 69, + 11, + 86, + "che_event_집중", + [ + 20788, + 27119, + 17218, + 430245, + 31586 + ], + 1, + "3679089.jpg?=20180629", + 13, + "che_190815_w0sU", + 32, + [ + "hall:dex4", + "hall:dex5", + "hall:killcrew", + "hall:killnum", + "hall:killrate", + "hall:tirate", + "hall:ttrate", + "hall:warnum", + "hall:winrate" + ] + ], + [ + "【13기】얀핀", + 77, + 79, + 10, + "che_event_위압", + [ + 55131, + 362929, + 31351, + 65031, + 24738 + ], + 1, + "c25ad46.jpg?=20190816", + 13, + "che_190815_w0sU", + 34, + [ + "hall:dedication", + "hall:dex1", + "hall:dex2", + "hall:killcrew", + "hall:ttrate", + "hall:warnum" + ] + ], + [ + "【13기】함병선입니다", + 85, + 10, + 71, + "che_event_집중", + [ + 5299, + 8700, + 5919, + 180926, + 42624 + ], + 1, + "cf49f01.png?=20190815", + 13, + "che_190815_w0sU", + 38, + [ + "hall:dedication", + "hall:dex5", + "hall:tlrate" + ] + ], + [ + "【13기】카오스피닉스", + 70, + 10, + 86, + "che_event_집중", + [ + 18254, + 15357, + 23458, + 244506, + 27262 + ], + 1, + "7f80b2f.jpg?=20190715", + 13, + "che_190815_w0sU", + 39, + [ + "hall:dex4", + "hall:dex5", + "hall:tirate", + "hall:ttrate" + ] + ], + [ + "【13기】호무새의속마음", + 82, + 71, + 10, + "che_event_견고", + [ + 285203, + 12734, + 30117, + 54477, + 11184 + ], + 1, + "3afd99b.png?=20190815", + 13, + "che_190815_w0sU", + 42, + [ + "chief:8", + "hall:dex1" + ] + ], + [ + "【13기】카이스트", + 79, + 11, + 70, + "che_event_반계", + [ + 20038, + 14423, + 10433, + 247657, + 18057 + ], + 1, + "9361ef8.jpg?=20180907", + 13, + "che_190815_w0sU", + 44, + [ + "hall:dex4" + ] + ], + [ + "【13기】반역의루돌프", + 77, + 76, + 10, + "che_event_필살", + [ + 126617, + 11098, + 22934, + 45129, + 6469 + ], + 0, + "default.jpg", + 13, + "che_190815_w0sU", + 47, + [ + "hall:dex1" + ] + ], + [ + "【13기】체리맛농약", + 68, + 10, + 85, + "che_event_집중", + [ + 9478, + 8554, + 16493, + 186045, + 14890 + ], + 1, + "2dc4058.jpg?=20190816", + 13, + "che_190815_w0sU", + 48, + [ + "hall:killrate" + ] + ], + [ + "【13기】귀찮", + 67, + 84, + 10, + "che_event_척사", + [ + 7460, + 6455, + 238534, + 37280, + 16915 + ], + 0, + "default.jpg", + 13, + "che_190815_w0sU", + 50, + [ + "hall:dex3", + "hall:tprate" + ] + ], + [ + "【13기】랜임맨", + 74, + 10, + 82, + "che_event_격노", + [ + 16402, + 19235, + 33672, + 242417, + 23437 + ], + 1, + "1fc6462.jpg?=20190816", + 13, + "che_190815_w0sU", + 53, + [ + "hall:dex4", + "hall:experience" + ] + ], + [ + "【13기】청기사", + 11, + 67, + 88, + "che_event_척사", + [ + 0, + 0, + 0, + 0, + 0 + ], + 1, + "9fdc4fd.jpg?=20181213", + 13, + "che_190815_w0sU", + 55, + [ + "hall:experience", + "hall:tirate" + ] + ], + [ + "【13기】Hide_D", + 10, + 72, + 85, + "che_event_격노", + [ + 0, + 0, + 0, + 0, + 0 + ], + 1, + "ee5accd.jpg?=20190411", + 13, + "che_190815_w0sU", + 56, + [ + "hall:ttrate" + ] + ], + [ + "【13기】사스케", + 71, + 82, + 10, + "che_event_무쌍", + [ + 188505, + 9542, + 49633, + 30420, + 13319 + ], + 1, + "986348a.jpg?=20190815", + 13, + "che_190815_w0sU", + 57, + [ + "hall:betgold", + "hall:betrate", + "hall:betwin", + "hall:betwingold", + "hall:dex1", + "hall:firenum", + "hall:tprate" + ] + ], + [ + "【13기】규일", + 69, + 10, + 85, + "che_event_귀병", + [ + 5417, + 13795, + 15760, + 191640, + 11158 + ], + 1, + "a5022a1.jpg?=20190816", + 13, + "che_190815_w0sU", + 58, + [ + "hall:firenum" + ] + ], + [ + "【13기】아르르 나쟈", + 67, + 10, + 86, + "che_event_척사", + [ + 18958, + 26620, + 11302, + 310352, + 35137 + ], + 1, + "fc45711.jpg?=20190813", + 13, + "che_190815_w0sU", + 60, + [ + "hall:dedication", + "hall:dex4", + "hall:dex5", + "hall:experience", + "hall:killnum", + "hall:warnum" + ] + ], + [ + "【13기】한동숙", + 72, + 84, + 10, + "che_event_저격", + [ + 494984, + 14486, + 34189, + 63535, + 30610 + ], + 1, + "4718e6.jpg?=20190814", + 13, + "che_190815_w0sU", + 62, + [ + "chief:10", + "hall:dedication", + "hall:dex1", + "hall:dex5", + "hall:experience", + "hall:killcrew", + "hall:killnum", + "hall:killrate", + "hall:ttrate", + "hall:warnum", + "hall:winrate" + ] + ], + [ + "【13기】충차아님", + 87, + 41, + 35, + "che_event_저격", + [ + 0, + 0, + 0, + 16136, + 181093 + ], + 1, + "39ab9b2.jpg?=20190819", + 13, + "che_190815_w0sU", + 63, + [ + "hall:dex5", + "hall:experience", + "hall:killrate", + "hall:winrate" + ] + ], + [ + "【13기】오징어", + 72, + 83, + 10, + "che_event_척사", + [ + 44553, + 271485, + 26964, + 40191, + 24728 + ], + 1, + "8cab968.png?=20190826", + 13, + "che_190815_w0sU", + 64, + [ + "hall:dedication", + "hall:dex2", + "hall:firenum", + "hall:killcrew", + "hall:tprate", + "hall:warnum" + ] + ], + [ + "【13기】이취홍", + 68, + 86, + 10, + "che_event_무쌍", + [ + 9968, + 40597, + 308958, + 60079, + 17264 + ], + 1, + "f25b1d7.jpg?=20190815", + 13, + "che_190815_w0sU", + 65, + [ + "hall:betgold", + "hall:betrate", + "hall:betwin", + "hall:betwingold", + "hall:dex3", + "hall:killcrew", + "hall:killnum", + "hall:tprate", + "hall:warnum", + "hall:winrate" + ] + ], + [ + "【13기】오버이지", + 86, + 68, + 10, + "che_event_저격", + [ + 6858, + 22030, + 289872, + 35740, + 15463 + ], + 1, + "4a290e4.png?=20190815", + 13, + "che_190815_w0sU", + 66, + [ + "hall:dex3", + "hall:tlrate" + ] + ], + [ + "【13기】제노에이지", + 67, + 10, + 87, + "che_event_신산", + [ + 6120, + 22097, + 23220, + 142690, + 13093 + ], + 1, + "ddd1fd7.jpg?=20190320", + 13, + "che_190815_w0sU", + 68, + [ + "hall:betgold", + "hall:betrate", + "hall:betwin", + "hall:betwingold", + "hall:tirate" + ] + ], + [ + "【13기】개미호랑이", + 73, + 10, + 83, + "che_event_반계", + [ + 31732, + 21205, + 25759, + 251836, + 17704 + ], + 1, + "fccc37e.jpg?=20190718", + 13, + "che_190815_w0sU", + 69, + [ + "hall:dex4", + "hall:ttrate" + ] + ], + [ + "【13기】서새봄", + 84, + 70, + 11, + "che_event_징병", + [ + 11401, + 62444, + 368968, + 66871, + 27382 + ], + 1, + "b5add3a.jpg?=20190815", + 13, + "che_190815_w0sU", + 71, + [ + "chief:12", + "hall:dedication", + "hall:dex2", + "hall:dex3", + "hall:dex5", + "hall:experience", + "hall:killcrew", + "hall:killnum", + "hall:warnum", + "hall:winrate" + ] + ], + [ + "【13기】강찬밥", + 70, + 83, + 10, + "che_event_위압", + [ + 247009, + 13139, + 44297, + 49940, + 6243 + ], + 1, + "4b9e4bf.jpg?=20190815", + 13, + "che_190815_w0sU", + 72, + [ + "hall:dex1", + "hall:winrate" + ] + ], + [ + "【13기】n아텐 누", + 83, + 67, + 11, + "che_event_척사", + [ + 6634, + 26831, + 250642, + 48396, + 19348 + ], + 1, + "862bd8e.gif?=20181028", + 13, + "che_190815_w0sU", + 73, + [ + "hall:dex3", + "hall:killnum", + "hall:tlrate", + "hall:winrate" + ] + ], + [ + "【13기】슬라임", + 82, + 71, + 11, + "che_event_필살", + [ + 216026, + 23994, + 60126, + 45284, + 24173 + ], + 1, + "b1c4193.jpg?=20190815", + 13, + "che_190815_w0sU", + 75, + [ + "hall:dex1", + "hall:tlrate" + ] + ], + [ + "【13기】로리", + 81, + 11, + 71, + "che_event_필살", + [ + 20555, + 11529, + 13800, + 237232, + 20171 + ], + 1, + "1ec690f.jpg?=20190720", + 13, + "che_190815_w0sU", + 76, + [ + "hall:tlrate" + ] + ], + [ + "【13기】달이차오른다", + 81, + 70, + 12, + "che_event_의술", + [ + 11268, + 167974, + 11018, + 24398, + 15801 + ], + 0, + "default.jpg", + 13, + "che_190815_w0sU", + 77, + [ + "hall:dex2", + "hall:tlrate" + ] + ], + [ + "【13기】아오바", + 68, + 10, + 86, + "che_event_저격", + [ + 21221, + 8291, + 20955, + 293615, + 25369 + ], + 1, + "3651a80.jpg?=20190815", + 13, + "che_190815_w0sU", + 80, + [ + "chief:5", + "hall:dedication", + "hall:dex4", + "hall:experience", + "hall:killrate", + "hall:tirate" + ] + ], + [ + "【13기】토템", + 10, + 67, + 85, + "che_event_필살", + [ + 0, + 0, + 0, + 0, + 0 + ], + 0, + "default.jpg", + 13, + "che_190815_w0sU", + 81, + [ + "hall:firenum" + ] + ], + [ + "【13기】KZ Deft", + 71, + 10, + 83, + "che_event_환술", + [ + 12191, + 42044, + 7441, + 266477, + 26508 + ], + 1, + "c0c766b.jpg?=20190815", + 13, + "che_190815_w0sU", + 82, + [ + "chief:9", + "hall:dex4", + "hall:killnum", + "hall:winrate" + ] + ], + [ + "【13기】유닠주세요", + 69, + 84, + 10, + "che_event_보병", + [ + 284593, + 13309, + 24316, + 53190, + 15918 + ], + 0, + "default.jpg", + 13, + "che_190815_w0sU", + 84, + [ + "hall:dex1", + "hall:killrate" + ] + ], + [ + "【13기】외심장", + 67, + 10, + 88, + "che_event_궁병", + [ + 35429, + 27914, + 21938, + 176344, + 3636 + ], + 1, + "36110cd.jpg?=20180826", + 13, + "che_190815_w0sU", + 86, + [ + "hall:betgold", + "hall:betwin", + "hall:betwingold", + "hall:tirate" + ] + ], + [ + "【13기】두나", + 67, + 11, + 85, + "che_event_신중", + [ + 3338, + 10440, + 5605, + 52674, + 10770 + ], + 1, + "bf0c572.png?=20181114", + 13, + "che_190815_w0sU", + 89, + [ + "hall:firenum" + ] + ], + [ + "【13기】스타킹", + 76, + 78, + 10, + "che_event_기병", + [ + 6083, + 38681, + 215713, + 55303, + 18230 + ], + 1, + "c995144.png?=20190815", + 13, + "che_190815_w0sU", + 90, + [ + "hall:dex3" + ] + ], + [ + "【13기】제르피스", + 10, + 66, + 88, + "che_event_귀병", + [ + 0, + 0, + 0, + 0, + 0 + ], + 1, + "e49293b.jpg?=20190813", + 13, + "che_190815_w0sU", + 96, + [ + "hall:tirate", + "hall:ttrate" + ] + ], + [ + "【13기】템", + 69, + 11, + 83, + "che_event_신산", + [ + 23431, + 14671, + 35115, + 270986, + 3503 + ], + 0, + "default.jpg", + 13, + "che_190815_w0sU", + 102, + [ + "hall:dex4", + "hall:firenum" + ] + ], + [ + "【13기】견자희", + 69, + 85, + 10, + "che_event_격노", + [ + 14079, + 16931, + 358285, + 59450, + 26994 + ], + 1, + "316e4e2.jpg?=20190815", + 13, + "che_190815_w0sU", + 105, + [ + "chief:6", + "hall:dex3", + "hall:dex5", + "hall:experience", + "hall:killcrew", + "hall:killnum", + "hall:killrate", + "hall:tprate", + "hall:ttrate", + "hall:warnum", + "hall:winrate" + ] + ], + [ + "【13기】장손신희", + 69, + 10, + 86, + "che_event_귀병", + [ + 10741, + 10967, + 22591, + 126547, + 6602 + ], + 1, + "e7a5bde.jpg?=20190329", + 13, + "che_190815_w0sU", + 114, + [ + "hall:tirate" + ] + ], + [ + "【13기】니케", + 68, + 10, + 86, + "che_event_귀병", + [ + 0, + 7275, + 26040, + 107223, + 11850 + ], + 1, + "fb7addd.jpg?=20190816", + 13, + "che_190815_w0sU", + 119, + [ + "hall:tirate" + ] + ], + [ + "【13기】민트토끼", + 68, + 11, + 86, + "che_event_저격", + [ + 6148, + 35368, + 11119, + 285649, + 49994 + ], + 1, + "85cdfc4.gif?=20190816", + 13, + "che_190815_w0sU", + 128, + [ + "hall:dex4", + "hall:dex5", + "hall:experience", + "hall:killrate" + ] + ], + [ + "【13기】묘", + 68, + 81, + 11, + "che_event_무쌍", + [ + 10448, + 9412, + 132952, + 45874, + 1649 + ], + 0, + "default.jpg", + 13, + "che_190815_w0sU", + 147, + [ + "hall:tprate" + ] + ], + [ + "【13기】천통해서출세한삐약", + 67, + 84, + 10, + "che_event_필살", + [ + 7618, + 17067, + 67890, + 13685, + 2335 + ], + 1, + "419b281.png?=20190816", + 13, + "che_190815_w0sU", + 148, + [ + "hall:tprate" + ] + ], + [ + "【13기】멍", + 10, + 78, + 76, + "che_event_견고", + [ + 0, + 0, + 0, + 0, + 0 + ], + 1, + "5cedbb3.jpg?=20190817", + 13, + "che_190815_w0sU", + 154, + [ + "hall:firenum", + "hall:ttrate" + ] + ], + [ + "【13기】천괴금", + 12, + 86, + 67, + "che_event_궁병", + [ + 3405, + 48495, + 5513, + 19376, + 0 + ], + 1, + "2b239af.png?=20190824", + 13, + "che_190815_w0sU", + 165, + [ + "chief:7", + "hall:dex2", + "hall:firenum", + "hall:tprate" + ] + ], + [ + "【13기】제갈대두", + 52, + 27, + 84, + "che_event_저격", + [ + 0, + 8892, + 8386, + 23573, + 0 + ], + 1, + "6844ae1.jpg?=20190818", + 13, + "che_190815_w0sU", + 192, + [ + "hall:betgold", + "hall:dedication" + ] + ], + [ + "【13기】시즈", + 11, + 66, + 87, + "che_event_격노", + [ + 0, + 0, + 0, + 0, + 0 + ], + 0, + "default.jpg", + 13, + "che_190815_w0sU", + 257, + [ + "hall:dedication" + ] + ], + [ + "【13기】냐옹냐옹", + 69, + 10, + 83, + "che_event_귀병", + [ + 1027, + 0, + 23719, + 35658, + 0 + ], + 0, + "default.jpg", + 13, + "che_190815_w0sU", + 308, + [ + "hall:ttrate" + ] + ], + [ + "【13기】망나뇽", + 81, + 69, + 10, + "che_event_척사", + [ + 113772, + 16450, + 22026, + 32283, + 393 + ], + 1, + "d879a26.png?=20190427", + 13, + "che_190815_w0sU", + 362, + [ + "hall:dex1" + ] + ], + [ + "【14기】Hide_D", + 10, + 72, + 85, + "che_event_귀병", + [ + 0, + 0, + 0, + 0, + 0 + ], + 1, + "ee5accd.jpg?=20190411", + 14, + "che_190905_K2XR", + 3, + [ + "hall:ttrate" + ] + ], + [ + "【14기】제노에이지", + 71, + 10, + 87, + "che_event_반계", + [ + 57722, + 61231, + 21598, + 406558, + 18736 + ], + 1, + "ddd1fd7.jpg?=20190320", + 14, + "che_190905_K2XR", + 4, + [ + "hall:dex2", + "hall:dex4", + "hall:tirate", + "hall:warnum" + ] + ], + [ + "【14기】연채홍", + 69, + 11, + 85, + "che_event_징병", + [ + 32359, + 36578, + 16365, + 464843, + 37703 + ], + 1, + "a12d463.jpg?=20190905", + 14, + "che_190905_K2XR", + 5, + [ + "chief:5", + "hall:dedication", + "hall:dex4", + "hall:dex5", + "hall:experience", + "hall:killcrew", + "hall:killnum" + ] + ], + [ + "【14기】천괴금", + 85, + 68, + 10, + "che_event_필살", + [ + 129422, + 18357, + 255904, + 93132, + 41365 + ], + 1, + "2b239af.png?=20190824", + 14, + "che_190905_K2XR", + 10, + [ + "chief:10", + "hall:dex1", + "hall:dex3", + "hall:dex5", + "hall:firenum", + "hall:tlrate" + ] + ], + [ + "【14기】카오스피닉스", + 70, + 11, + 85, + "che_event_척사", + [ + 30585, + 25093, + 31441, + 275734, + 21548 + ], + 1, + "7f80b2f.jpg?=20190715", + 14, + "che_190905_K2XR", + 12, + [ + "hall:ttrate" + ] + ], + [ + "【14기】아메스", + 71, + 11, + 84, + "che_event_필살", + [ + 49869, + 25555, + 17450, + 495585, + 43482 + ], + 1, + "a889885.jpg?=20190905", + 14, + "che_190905_K2XR", + 13, + [ + "chief:9", + "hall:dedication", + "hall:dex4", + "hall:dex5", + "hall:experience", + "hall:killcrew", + "hall:killnum", + "hall:killrate", + "hall:warnum" + ] + ], + [ + "【14기】지장", + 69, + 10, + 85, + "che_event_귀병", + [ + 26425, + 20784, + 16703, + 119589, + 4307 + ], + 0, + "default.jpg", + 14, + "che_190905_K2XR", + 14, + [ + "hall:firenum" + ] + ], + [ + "【14기】김나영", + 70, + 85, + 10, + "che_event_필살", + [ + 15203, + 18707, + 202373, + 61922, + 9885 + ], + 1, + "c90a3d4.jpg?=20190905", + 14, + "che_190905_K2XR", + 18, + [ + "hall:dex3", + "hall:tprate" + ] + ], + [ + "【14기】화신주유", + 71, + 86, + 10, + "che_event_징병", + [ + 31448, + 73215, + 480282, + 116607, + 41044 + ], + 1, + "15d60d3.jpg?=20190902", + 14, + "che_190905_K2XR", + 19, + [ + "hall:betgold", + "hall:dex2", + "hall:dex3", + "hall:dex5", + "hall:killcrew", + "hall:killnum", + "hall:killrate", + "hall:tprate", + "hall:ttrate", + "hall:warnum", + "hall:winrate" + ] + ], + [ + "【14기】오리온자리", + 83, + 10, + 74, + "che_event_징병", + [ + 47618, + 57455, + 63919, + 394671, + 22354 + ], + 1, + "71c0d1f.jpg?=20190718", + 14, + "che_190905_K2XR", + 22, + [ + "hall:dex3", + "hall:dex4", + "hall:tlrate", + "hall:warnum" + ] + ], + [ + "【14기】료우기시키", + 69, + 10, + 84, + "che_event_집중", + [ + 19398, + 32547, + 17222, + 297079, + 6760 + ], + 1, + "559083f.jpg?=20190905", + 14, + "che_190905_K2XR", + 25, + [ + "hall:tirate" + ] + ], + [ + "【14기】프로젝트애쉬", + 70, + 85, + 10, + "che_event_저격", + [ + 52526, + 350916, + 13632, + 97413, + 19280 + ], + 1, + "84923d1.jpg?=20190905", + 14, + "che_190905_K2XR", + 26, + [ + "hall:dex2", + "hall:tprate" + ] + ], + [ + "【14기】치약토끼", + 71, + 84, + 10, + "che_event_격노", + [ + 53358, + 396148, + 9361, + 60086, + 45003 + ], + 1, + "6227d22.jpg?=20190905", + 14, + "che_190905_K2XR", + 30, + [ + "chief:8", + "hall:dedication", + "hall:dex2", + "hall:dex5", + "hall:experience", + "hall:killrate", + "hall:tprate", + "hall:winrate" + ] + ], + [ + "【14기】ㅇㄷ", + 69, + 86, + 10, + "che_event_필살", + [ + 24924, + 29465, + 467317, + 91384, + 34258 + ], + 0, + "default.jpg", + 14, + "che_190905_K2XR", + 31, + [ + "chief:6", + "hall:dex3", + "hall:killcrew", + "hall:killnum", + "hall:killrate", + "hall:tprate" + ] + ], + [ + "【14기】째깐둥이", + 81, + 10, + 72, + "che_event_징병", + [ + 18501, + 11115, + 4928, + 191235, + 10681 + ], + 1, + "f8d36e2.png?=20190912", + 14, + "che_190905_K2XR", + 32, + [ + "hall:tlrate" + ] + ], + [ + "【14기】두나", + 67, + 10, + 86, + "che_event_척사", + [ + 0, + 0, + 0, + 0, + 0 + ], + 1, + "bf0c572.png?=20181114", + 14, + "che_190905_K2XR", + 34, + [ + "hall:tirate" + ] + ], + [ + "【14기】Satan", + 71, + 82, + 10, + "che_event_징병", + [ + 9665, + 10441, + 204323, + 92751, + 5284 + ], + 1, + "eaa25e5.png?=20190910", + 14, + "che_190905_K2XR", + 35, + [ + "hall:dex3" + ] + ], + [ + "【14기】청기사", + 10, + 66, + 90, + "che_event_귀병", + [ + 0, + 0, + 0, + 0, + 0 + ], + 1, + "9fdc4fd.jpg?=20181213", + 14, + "che_190905_K2XR", + 37, + [ + "hall:tirate", + "hall:ttrate" + ] + ], + [ + "【14기】보스곰", + 69, + 12, + 84, + "che_event_신중", + [ + 20892, + 20619, + 11898, + 373761, + 36358 + ], + 1, + "773556e.gif?=20190822", + 14, + "che_190905_K2XR", + 38, + [ + "chief:7", + "hall:dedication", + "hall:dex4", + "hall:dex5" + ] + ], + [ + "【14기】우주대스타나나양", + 80, + 76, + 11, + "che_event_저격", + [ + 537361, + 32295, + 74636, + 120363, + 28821 + ], + 1, + "106e0d2.jpg?=20190918", + 14, + "che_190905_K2XR", + 39, + [ + "hall:dex1", + "hall:dex3", + "hall:killcrew", + "hall:killnum", + "hall:warnum", + "hall:winrate" + ] + ], + [ + "【14기】메로나광팬486번", + 70, + 85, + 10, + "che_event_위압", + [ + 46820, + 276167, + 11080, + 56776, + 18037 + ], + 0, + "default.jpg", + 14, + "che_190905_K2XR", + 40, + [ + "hall:dex2", + "hall:tprate" + ] + ], + [ + "【14기】구미호", + 86, + 67, + 10, + "che_event_무쌍", + [ + 0, + 0, + 17413, + 6313, + 207000 + ], + 1, + "8bb1f0e.gif?=20190920", + 14, + "che_190905_K2XR", + 41, + [ + "hall:dex5", + "hall:experience", + "hall:killrate", + "hall:tlrate", + "hall:ttrate" + ] + ], + [ + "【14기】삼겹살", + 69, + 12, + 84, + "che_event_필살", + [ + 29349, + 28857, + 27566, + 493233, + 29115 + ], + 0, + "default.jpg", + 14, + "che_190905_K2XR", + 43, + [ + "hall:dex4", + "hall:experience", + "hall:killcrew", + "hall:killnum", + "hall:ttrate", + "hall:winrate" + ] + ], + [ + "【14기】평민킬러", + 71, + 85, + 10, + "che_event_징병", + [ + 466787, + 17528, + 56192, + 82285, + 38700 + ], + 1, + "fb23a32.jpg?=20190904", + 14, + "che_190905_K2XR", + 46, + [ + "chief:11", + "hall:dedication", + "hall:dex1", + "hall:dex5", + "hall:experience", + "hall:killcrew", + "hall:killnum", + "hall:killrate", + "hall:tprate", + "hall:winrate" + ] + ], + [ + "【14기】장손신희", + 11, + 68, + 86, + "che_event_귀병", + [ + 0, + 0, + 0, + 0, + 0 + ], + 1, + "e7a5bde.jpg?=20190329", + 14, + "che_190905_K2XR", + 47, + [ + "hall:dedication" + ] + ], + [ + "【14기】스오우", + 72, + 10, + 85, + "che_event_신산", + [ + 50435, + 28816, + 32335, + 457562, + 22442 + ], + 1, + "828a91e.jpg?=20190904", + 14, + "che_190905_K2XR", + 48, + [ + "hall:dex4", + "hall:experience", + "hall:killcrew" + ] + ], + [ + "【14기】룬레이", + 86, + 66, + 11, + "che_event_저격", + [ + 48674, + 308432, + 13523, + 95716, + 14939 + ], + 1, + "bd6cc98.png?=20190905", + 14, + "che_190905_K2XR", + 49, + [ + "hall:dex2", + "hall:tlrate" + ] + ], + [ + "【14기】모가미 시즈카", + 87, + 67, + 10, + "che_event_무쌍", + [ + 615372, + 54021, + 69462, + 78953, + 21642 + ], + 1, + "5106f38.jpg?=20190905", + 14, + "che_190905_K2XR", + 50, + [ + "hall:dex1", + "hall:dex3", + "hall:experience", + "hall:killcrew", + "hall:killnum", + "hall:killrate", + "hall:tlrate", + "hall:warnum" + ] + ], + [ + "【14기】멘헤라쨩", + 11, + 66, + 88, + "che_event_반계", + [ + 0, + 0, + 0, + 0, + 0 + ], + 1, + "9e75693.gif?=20190908", + 14, + "che_190905_K2XR", + 53, + [ + "hall:dedication" + ] + ], + [ + "【14기】ⓢ노예장8", + 12, + 67, + 85, + "che_event_귀병", + [ + 0, + 0, + 0, + 0, + 0 + ], + 0, + "default.jpg", + 14, + "che_190905_K2XR", + 54, + [ + "hall:tirate" + ] + ], + [ + "【14기】짹짹이", + 71, + 11, + 85, + "che_event_반계", + [ + 34498, + 32833, + 41851, + 437972, + 20612 + ], + 1, + "4cabf8f.png?=20190905", + 14, + "che_190905_K2XR", + 56, + [ + "hall:dex4", + "hall:killnum", + "hall:winrate" + ] + ], + [ + "【14기】킹구없이는못살아", + 83, + 71, + 10, + "che_event_척사", + [ + 71050, + 389547, + 13480, + 84486, + 24910 + ], + 1, + "fb3c625.gif?=20190428", + 14, + "che_190905_K2XR", + 57, + [ + "hall:dex1", + "hall:dex2", + "hall:warnum" + ] + ], + [ + "【14기】임사영", + 70, + 10, + 86, + "che_event_환술", + [ + 28175, + 38878, + 20033, + 416721, + 31091 + ], + 1, + "d5dc381.gif?=20190719", + 14, + "che_190905_K2XR", + 60, + [ + "chief:12", + "hall:dex4", + "hall:experience", + "hall:tirate", + "hall:ttrate" + ] + ], + [ + "【14기】베이비소울", + 81, + 74, + 10, + "che_event_돌격", + [ + 232065, + 13137, + 19322, + 48172, + 19217 + ], + 1, + "7081d76.jpg?=20190815", + 14, + "che_190905_K2XR", + 62, + [ + "hall:dex1", + "hall:tlrate" + ] + ], + [ + "【14기】륜", + 68, + 11, + 86, + "che_event_귀병", + [ + 9362, + 30131, + 3853, + 172499, + 902 + ], + 1, + "6561977.jpg?=20190904", + 14, + "che_190905_K2XR", + 63, + [ + "hall:winrate" + ] + ], + [ + "【14기】KZ Deft", + 81, + 72, + 10, + "che_event_견고", + [ + 165500, + 2408, + 18711, + 58319, + 9120 + ], + 1, + "c0c766b.jpg?=20190815", + 14, + "che_190905_K2XR", + 65, + [ + "hall:dex1", + "hall:tlrate" + ] + ], + [ + "【14기】페르난도", + 70, + 84, + 10, + "che_event_징병", + [ + 198412, + 9954, + 38902, + 59777, + 10115 + ], + 0, + "default.jpg", + 14, + "che_190905_K2XR", + 66, + [ + "hall:dedication", + "hall:dex1", + "hall:tprate" + ] + ], + [ + "【14기】메디브", + 83, + 75, + 10, + "che_event_의술", + [ + 27646, + 49106, + 449314, + 53533, + 18439 + ], + 1, + "def2895.jpg?=20190719", + 14, + "che_190905_K2XR", + 69, + [ + "hall:dex3", + "hall:warnum" + ] + ], + [ + "【14기】Myo", + 70, + 82, + 10, + "che_event_의술", + [ + 8903, + 132955, + 0, + 22766, + 18222 + ], + 1, + "7072487.jpg?=20190905", + 14, + "che_190905_K2XR", + 70, + [ + "hall:dex2", + "hall:tprate" + ] + ], + [ + "【14기】날떠나가지말아요", + 67, + 10, + 86, + "che_event_집중", + [ + 10291, + 16394, + 25056, + 280012, + 17274 + ], + 0, + "default.jpg", + 14, + "che_190905_K2XR", + 71, + [ + "hall:tirate" + ] + ], + [ + "【14기】엔야스", + 58, + 23, + 86, + "che_event_집중", + [ + 34502, + 38573, + 20294, + 274472, + 7465 + ], + 0, + "default.jpg", + 14, + "che_190905_K2XR", + 73, + [ + "hall:ttrate" + ] + ], + [ + "【14기】나루호도", + 79, + 76, + 10, + "che_event_저격", + [ + 225616, + 13935, + 20803, + 72916, + 9349 + ], + 1, + "e9b556b.png?=20190905", + 14, + "che_190905_K2XR", + 74, + [ + "hall:dex1", + "hall:firenum" + ] + ], + [ + "【14기】개미호랑이", + 70, + 10, + 84, + "che_event_필살", + [ + 13639, + 16468, + 44999, + 337391, + 63892 + ], + 1, + "fccc37e.jpg?=20190718", + 14, + "che_190905_K2XR", + 78, + [ + "hall:dex5", + "hall:winrate" + ] + ], + [ + "【14기】아리냥냥", + 10, + 66, + 89, + "che_event_신중", + [ + 0, + 0, + 0, + 0, + 0 + ], + 0, + "default.jpg", + 14, + "che_190905_K2XR", + 80, + [ + "hall:dedication", + "hall:tirate" + ] + ], + [ + "【14기】톡없음", + 72, + 11, + 82, + "che_event_집중", + [ + 43225, + 22229, + 47813, + 368082, + 17573 + ], + 0, + "default.jpg", + 14, + "che_190905_K2XR", + 83, + [ + "hall:firenum" + ] + ], + [ + "【14기】라피스라쥴리", + 71, + 10, + 85, + "che_event_환술", + [ + 16954, + 4260, + 14882, + 147116, + 18215 + ], + 0, + "default.jpg", + 14, + "che_190905_K2XR", + 84, + [ + "hall:dedication" + ] + ], + [ + "【14기】로또", + 73, + 82, + 10, + "che_event_징병", + [ + 362999, + 29258, + 44191, + 150706, + 15492 + ], + 1, + "db84779.jpg?=20190906", + 14, + "che_190905_K2XR", + 88, + [ + "hall:dex1", + "hall:firenum", + "hall:warnum" + ] + ], + [ + "【14기】로리", + 72, + 11, + 84, + "che_event_집중", + [ + 45950, + 43822, + 39507, + 685740, + 32444 + ], + 1, + "e1e175f.jpg?=20190921", + 14, + "che_190905_K2XR", + 93, + [ + "hall:betgold", + "hall:dex4", + "hall:firenum", + "hall:killcrew", + "hall:killnum", + "hall:killrate", + "hall:warnum", + "hall:winrate" + ] + ], + [ + "【14기】미니미니쿠키", + 81, + 10, + 74, + "che_event_필살", + [ + 24115, + 5118, + 20145, + 229329, + 16423 + ], + 0, + "default.jpg", + 14, + "che_190905_K2XR", + 96, + [ + "hall:tlrate" + ] + ], + [ + "【14기】닥터유", + 76, + 77, + 10, + "che_event_견고", + [ + 14182, + 350375, + 14952, + 85605, + 20607 + ], + 1, + "6b371ec.jpg?=20190909", + 14, + "che_190905_K2XR", + 97, + [ + "hall:dex2", + "hall:killrate" + ] + ], + [ + "【14기】멍", + 13, + 76, + 75, + "che_event_필살", + [ + 0, + 0, + 0, + 0, + 0 + ], + 1, + "5cedbb3.jpg?=20190817", + 14, + "che_190905_K2XR", + 98, + [ + "hall:firenum" + ] + ], + [ + "【14기】밀리언라이브", + 81, + 71, + 10, + "che_event_돌격", + [ + 17600, + 20272, + 270284, + 102876, + 8527 + ], + 0, + "default.jpg", + 14, + "che_190905_K2XR", + 101, + [ + "hall:dex3", + "hall:ttrate" + ] + ], + [ + "【14기】언제 오픈했지", + 11, + 84, + 67, + "che_event_공성", + [ + 0, + 0, + 0, + 0, + 0 + ], + 0, + "default.jpg", + 14, + "che_190905_K2XR", + 103, + [ + "hall:firenum" + ] + ], + [ + "【14기】호랑나비", + 10, + 81, + 72, + "che_event_위압", + [ + 0, + 0, + 0, + 0, + 0 + ], + 1, + "3b4b682.gif?=20190912", + 14, + "che_190905_K2XR", + 104, + [ + "hall:tprate", + "hall:ttrate" + ] + ], + [ + "【14기】사스케", + 89, + 10, + 10, + "che_event_격노", + [ + 3241, + 5953, + 5711, + 13410, + 306554 + ], + 1, + "986348a.jpg?=20190815", + 14, + "che_190905_K2XR", + 105, + [ + "hall:betgold", + "hall:betwin", + "hall:betwingold", + "hall:dex5", + "hall:experience", + "hall:killrate", + "hall:tlrate", + "hall:winrate" + ] + ], + [ + "【14기】쀼웃", + 10, + 69, + 83, + "che_event_환술", + [ + 905, + 0, + 0, + 234, + 0 + ], + 1, + "8996332.jpg?=20190315", + 14, + "che_190905_K2XR", + 107, + [ + "hall:firenum", + "hall:tirate" + ] + ], + [ + "【14기】돌아온파이", + 71, + 81, + 10, + "che_event_견고", + [ + 45066, + 155344, + 2405, + 20122, + 22247 + ], + 1, + "f76fa74.jpg?=20190629", + 14, + "che_190905_K2XR", + 119, + [ + "hall:dex2" + ] + ], + [ + "【14기】땅땅이", + 67, + 10, + 83, + "che_event_저격", + [ + 22215, + 12003, + 21145, + 153493, + 1780 + ], + 1, + "99cd27f.gif?=20190606", + 14, + "che_190905_K2XR", + 275, + [ + "hall:tirate" + ] + ], + [ + "【14기】도추", + 10, + 79, + 68, + "che_event_돌격", + [ + 0, + 0, + 0, + 0, + 0 + ], + 0, + "default.jpg", + 14, + "che_190905_K2XR", + 356, + [ + "hall:firenum" + ] + ], + [ + "【15기】혜낭", + 90, + 70, + 10, + "che_event_격노", + [ + 39320, + 65587, + 554941, + 56519, + 25250 + ], + 1, + "20f2421.gif?=20191007", + 15, + "che_190926_XuE2", + 7, + [ + "hall:dex2", + "hall:dex3", + "hall:killcrew", + "hall:killnum", + "hall:tlrate", + "hall:warnum", + "hall:winrate" + ] + ], + [ + "【15기】륜", + 70, + 10, + 90, + "che_event_징병", + [ + 19534, + 19688, + 7029, + 201790, + 2672 + ], + 1, + "6561977.jpg?=20190904", + 15, + "che_190926_XuE2", + 10, + [ + "hall:dedication", + "hall:tirate", + "hall:ttrate" + ] + ], + [ + "【15기】사스케", + 71, + 87, + 10, + "che_event_저격", + [ + 563427, + 18874, + 76929, + 97725, + 32075 + ], + 1, + "986348a.jpg?=20190815", + 15, + "che_190926_XuE2", + 15, + [ + "chief:8", + "hall:betgold", + "hall:betwin", + "hall:betwingold", + "hall:dex1", + "hall:dex5", + "hall:experience", + "hall:firenum", + "hall:killcrew", + "hall:killnum", + "hall:killrate", + "hall:tprate", + "hall:warnum", + "hall:winrate" + ] + ], + [ + "【15기】엔야스", + 71, + 10, + 86, + "che_event_징병", + [ + 35183, + 25203, + 22806, + 346819, + 23894 + ], + 0, + "default.jpg", + 15, + "che_190926_XuE2", + 17, + [ + "hall:dedication", + "hall:dex4" + ] + ], + [ + "【15기】청기사", + 11, + 67, + 92, + "che_event_귀병", + [ + 0, + 0, + 0, + 0, + 0 + ], + 1, + "9fdc4fd.jpg?=20181213", + 15, + "che_190926_XuE2", + 19, + [ + "hall:dedication", + "hall:experience", + "hall:tirate", + "hall:ttrate" + ] + ], + [ + "【15기】아들", + 72, + 90, + 10, + "che_event_징병", + [ + 53211, + 71629, + 1058140, + 50643, + 40919 + ], + 1, + "97d501f.jpg?=20190926", + 15, + "che_190926_XuE2", + 20, + [ + "chief:12", + "hall:dedication", + "hall:dex1", + "hall:dex2", + "hall:dex3", + "hall:dex5", + "hall:experience", + "hall:killcrew", + "hall:killnum", + "hall:killrate", + "hall:tprate", + "hall:ttrate", + "hall:warnum", + "hall:winrate" + ] + ], + [ + "【15기】료우기시키", + 86, + 73, + 10, + "che_event_저격", + [ + 91683, + 131511, + 44904, + 53821, + 10432 + ], + 1, + "559083f.jpg?=20190905", + 15, + "che_190926_XuE2", + 22, + [ + "hall:dex1", + "hall:dex2", + "hall:tlrate" + ] + ], + [ + "【15기】덕장", + 72, + 10, + 87, + "che_event_집중", + [ + 60279, + 37048, + 48083, + 478787, + 29076 + ], + 0, + "default.jpg", + 15, + "che_190926_XuE2", + 23, + [ + "hall:dex1", + "hall:dex4", + "hall:killcrew", + "hall:killnum", + "hall:warnum" + ] + ], + [ + "【15기】모기", + 79, + 11, + 78, + "che_event_집중", + [ + 13922, + 26086, + 44434, + 247837, + 14501 + ], + 1, + "e5ab704.jpg?=20190926", + 15, + "che_190926_XuE2", + 24, + [ + "hall:tlrate" + ] + ], + [ + "【15기】카이스트", + 72, + 11, + 84, + "che_event_척사", + [ + 20818, + 13317, + 17376, + 304792, + 21070 + ], + 1, + "9361ef8.jpg?=20180907", + 15, + "che_190926_XuE2", + 25, + [ + "hall:ttrate" + ] + ], + [ + "【15기】아유", + 68, + 11, + 89, + "che_event_신산", + [ + 20127, + 12574, + 41074, + 157816, + 7139 + ], + 1, + "ba186bf.gif?=20181220", + 15, + "che_190926_XuE2", + 26, + [ + "hall:tirate", + "hall:ttrate" + ] + ], + [ + "【15기】김나영", + 73, + 85, + 10, + "che_event_저격", + [ + 315693, + 11806, + 41408, + 69215, + 16465 + ], + 1, + "c90a3d4.jpg?=20190905", + 15, + "che_190926_XuE2", + 27, + [ + "hall:dex1", + "hall:tprate" + ] + ], + [ + "【15기】미야노", + 75, + 84, + 10, + "che_event_돌격", + [ + 39199, + 433325, + 32155, + 53052, + 19503 + ], + 1, + "ab9cd7d.gif?=20190926", + 15, + "che_190926_XuE2", + 30, + [ + "hall:dex2", + "hall:killnum", + "hall:killrate", + "hall:tprate", + "hall:winrate" + ] + ], + [ + "【15기】제노에이지", + 70, + 10, + 88, + "che_event_척사", + [ + 30833, + 35100, + 26918, + 322818, + 26489 + ], + 1, + "ddd1fd7.jpg?=20190320", + 15, + "che_190926_XuE2", + 32, + [ + "hall:dex4", + "hall:tirate" + ] + ], + [ + "【15기】스즈나", + 71, + 88, + 10, + "che_event_저격", + [ + 857144, + 15171, + 35963, + 32322, + 33807 + ], + 1, + "d89ad53.png?=20190925", + 15, + "che_190926_XuE2", + 34, + [ + "chief:11", + "hall:dedication", + "hall:dex1", + "hall:dex5", + "hall:experience", + "hall:killcrew", + "hall:killnum", + "hall:killrate", + "hall:tprate", + "hall:warnum", + "hall:winrate" + ] + ], + [ + "【15기】휴식이드", + 71, + 10, + 88, + "che_event_필살", + [ + 19986, + 33521, + 41345, + 246607, + 8612 + ], + 1, + "1503444.jpg?=20190926", + 15, + "che_190926_XuE2", + 35, + [ + "hall:tirate" + ] + ], + [ + "【15기】마왕", + 72, + 87, + 11, + "che_event_무쌍", + [ + 65490, + 48577, + 497774, + 94481, + 39755 + ], + 1, + "eaa25e5.png?=20190910", + 15, + "che_190926_XuE2", + 36, + [ + "hall:dex1", + "hall:dex2", + "hall:dex3", + "hall:dex5", + "hall:experience", + "hall:killcrew", + "hall:killnum", + "hall:killrate", + "hall:tprate", + "hall:warnum" + ] + ], + [ + "【15기】실접못하는평킬", + 70, + 83, + 10, + "che_event_필살", + [ + 353508, + 3047, + 35475, + 54777, + 31918 + ], + 1, + "fb23a32.jpg?=20190904", + 15, + "che_190926_XuE2", + 37, + [ + "hall:dex1", + "hall:dex5", + "hall:killrate" + ] + ], + [ + "【15기】말살하라!", + 70, + 11, + 88, + "che_event_필살", + [ + 11960, + 20293, + 38107, + 204967, + 9763 + ], + 1, + "7c8c92c.png?=20190926", + 15, + "che_190926_XuE2", + 38, + [ + "hall:firenum" + ] + ], + [ + "【15기】로리", + 86, + 74, + 10, + "che_event_저격", + [ + 27690, + 35965, + 378072, + 91087, + 7640 + ], + 1, + "50794a6.jpg?=20190923", + 15, + "che_190926_XuE2", + 39, + [ + "hall:betgold", + "hall:dex3", + "hall:tlrate", + "hall:ttrate", + "hall:winrate" + ] + ], + [ + "【15기】진짜뉴비", + 79, + 11, + 76, + "che_event_반계", + [ + 20088, + 25510, + 5186, + 97690, + 2411 + ], + 0, + "default.jpg", + 15, + "che_190926_XuE2", + 40, + [ + "hall:tlrate" + ] + ], + [ + "【15기】킹구없이는못살아", + 81, + 75, + 10, + "che_event_격노", + [ + 446417, + 16719, + 30705, + 36664, + 18893 + ], + 1, + "fb3c625.gif?=20190428", + 15, + "che_190926_XuE2", + 41, + [ + "hall:dex1", + "hall:tlrate", + "hall:warnum" + ] + ], + [ + "【15기】정채연", + 70, + 84, + 10, + "che_event_징병", + [ + 13973, + 19417, + 182561, + 89692, + 2873 + ], + 1, + "9705097.jpg?=20191001", + 15, + "che_190926_XuE2", + 42, + [ + "hall:dex3" + ] + ], + [ + "【15기】유지장", + 84, + 10, + 74, + "che_event_필살", + [ + 14624, + 9108, + 20946, + 310070, + 11803 + ], + 0, + "default.jpg", + 15, + "che_190926_XuE2", + 43, + [ + "hall:dex4", + "hall:tlrate" + ] + ], + [ + "【15기】ㄹㅇ카오스피닉스", + 70, + 10, + 86, + "che_event_신산", + [ + 36799, + 11400, + 47821, + 376753, + 31452 + ], + 1, + "7f80b2f.jpg?=20190715", + 15, + "che_190926_XuE2", + 46, + [ + "hall:dex4", + "hall:killrate", + "hall:winrate" + ] + ], + [ + "【15기】병리학적자세", + 70, + 10, + 88, + "che_event_징병", + [ + 42981, + 24141, + 22065, + 487563, + 49719 + ], + 1, + "3679089.jpg?=20180629", + 15, + "che_190926_XuE2", + 47, + [ + "hall:dedication", + "hall:dex4", + "hall:dex5", + "hall:experience", + "hall:killcrew", + "hall:killnum", + "hall:killrate", + "hall:warnum" + ] + ], + [ + "【15기】개미호랑이", + 69, + 10, + 88, + "che_event_징병", + [ + 45439, + 38894, + 26057, + 483691, + 40161 + ], + 1, + "fccc37e.jpg?=20190718", + 15, + "che_190926_XuE2", + 49, + [ + "chief:7", + "hall:dedication", + "hall:dex4", + "hall:dex5", + "hall:experience", + "hall:killcrew", + "hall:killrate", + "hall:tirate" + ] + ], + [ + "【15기】외심장", + 73, + 85, + 10, + "che_event_무쌍", + [ + 18163, + 41883, + 335313, + 111011, + 40531 + ], + 1, + "36110cd.jpg?=20180826", + 15, + "che_190926_XuE2", + 50, + [ + "hall:dex3", + "hall:dex5", + "hall:tprate", + "hall:ttrate" + ] + ], + [ + "【15기】메디브", + 83, + 75, + 10, + "che_event_저격", + [ + 37969, + 64460, + 532907, + 107707, + 32703 + ], + 1, + "def2895.jpg?=20190719", + 15, + "che_190926_XuE2", + 55, + [ + "chief:6", + "hall:dedication", + "hall:dex2", + "hall:dex3", + "hall:dex5", + "hall:killcrew", + "hall:killnum", + "hall:killrate", + "hall:tlrate", + "hall:warnum", + "hall:winrate" + ] + ], + [ + "【15기】지금은전쟁중", + 83, + 73, + 12, + "che_event_필살", + [ + 10411, + 41449, + 302872, + 62141, + 32191 + ], + 0, + "default.jpg", + 15, + "che_190926_XuE2", + 56, + [ + "hall:dex3", + "hall:dex5", + "hall:tlrate", + "hall:ttrate" + ] + ], + [ + "【15기】오리온자리", + 85, + 74, + 10, + "che_event_필살", + [ + 18166, + 246895, + 30523, + 58132, + 7454 + ], + 1, + "71c0d1f.jpg?=20190718", + 15, + "che_190926_XuE2", + 57, + [ + "hall:dex2", + "hall:tlrate" + ] + ], + [ + "【15기】보스곰", + 68, + 10, + 88, + "che_event_척사", + [ + 18291, + 20014, + 20890, + 466974, + 19230 + ], + 1, + "773556e.gif?=20190822", + 15, + "che_190926_XuE2", + 58, + [ + "chief:9", + "hall:betgold", + "hall:dedication", + "hall:dex4", + "hall:experience", + "hall:tirate" + ] + ], + [ + "【15기】그저늅늅", + 68, + 10, + 91, + "che_event_집중", + [ + 28798, + 17683, + 39254, + 258926, + 11547 + ], + 1, + "5cedbb3.jpg?=20190817", + 15, + "che_190926_XuE2", + 62, + [ + "hall:tirate", + "hall:winrate" + ] + ], + [ + "【15기】SARS", + 72, + 88, + 10, + "che_event_필살", + [ + 21664, + 41907, + 455807, + 83835, + 16117 + ], + 1, + "b84944.jpg?=20180829", + 15, + "che_190926_XuE2", + 65, + [ + "hall:dex2", + "hall:dex3", + "hall:experience", + "hall:firenum", + "hall:killnum", + "hall:tprate", + "hall:winrate" + ] + ], + [ + "【15기】유산슬", + 70, + 10, + 87, + "che_event_척사", + [ + 46162, + 19807, + 63717, + 381651, + 16287 + ], + 1, + "ea9648d.png?=20190922", + 15, + "che_190926_XuE2", + 68, + [ + "chief:5", + "hall:dex4", + "hall:experience", + "hall:firenum", + "hall:tirate" + ] + ], + [ + "【15기】PA15", + 76, + 82, + 11, + "che_event_필살", + [ + 20647, + 62275, + 485064, + 88074, + 31181 + ], + 1, + "415b256.png?=20190927", + 15, + "che_190926_XuE2", + 69, + [ + "chief:10", + "hall:dedication", + "hall:dex2", + "hall:dex3", + "hall:killcrew", + "hall:tprate", + "hall:ttrate", + "hall:warnum" + ] + ], + [ + "【15기】연우", + 71, + 10, + 86, + "che_event_징병", + [ + 26533, + 26975, + 93587, + 344490, + 24977 + ], + 0, + "default.jpg", + 15, + "che_190926_XuE2", + 89, + [ + "hall:dex4" + ] + ], + [ + "【15기】천괴금", + 11, + 86, + 72, + "che_event_보병", + [ + 0, + 0, + 0, + 0, + 0 + ], + 1, + "2b239af.png?=20190824", + 15, + "che_190926_XuE2", + 114, + [ + "hall:tprate" + ] + ], + [ + "【15기】조말론", + 72, + 10, + 85, + "che_event_집중", + [ + 13503, + 6726, + 52720, + 211475, + 3670 + ], + 1, + "e12bfb7.jpg?=20191001", + 15, + "che_190926_XuE2", + 116, + [ + "hall:tirate", + "hall:ttrate" + ] + ], + [ + "【15기】Navy마초", + 80, + 73, + 10, + "che_event_무쌍", + [ + 59999, + 322796, + 25521, + 85651, + 14200 + ], + 0, + "default.jpg", + 15, + "che_190926_XuE2", + 306, + [ + "hall:dex1", + "hall:dex2" + ] + ], + [ + "【16기】크람푸스", + 69, + 10, + 87, + "che_event_신중", + [ + 1, + 7058, + 5433, + 182682, + 24958 + ], + 1, + "8eb225b.gif?=20191104", + 16, + "che_191024_SS4T", + 3, + [ + "hall:dedication", + "hall:dex2", + "hall:dex3", + "hall:dex4", + "hall:experience", + "hall:killcrew", + "hall:killnum", + "hall:tirate", + "hall:warnum", + "hall:winrate" + ] + ], + [ + "【16기】미코토", + 71, + 11, + 81, + "che_event_척사", + [ + 0, + 0, + 0, + 22509, + 4827 + ], + 1, + "7aaf670.jpg?=20191024", + 16, + "che_191024_SS4T", + 8, + [ + "hall:tlrate", + "hall:ttrate" + ] + ], + [ + "【16기】청기사", + 11, + 67, + 89, + "che_event_반계", + [ + 0, + 0, + 0, + 0, + 0 + ], + 1, + "9fdc4fd.jpg?=20181213", + 16, + "che_191024_SS4T", + 9, + [ + "hall:dedication", + "hall:experience" + ] + ], + [ + "【16기】보라색맛났어", + 10, + 71, + 83, + "che_event_신산", + [ + 0, + 0, + 0, + 0, + 0 + ], + 0, + "default.jpg", + 16, + "che_191024_SS4T", + 13, + [ + "hall:tprate" + ] + ], + [ + "【16기】병리학적자세", + 67, + 10, + 90, + "che_event_집중", + [ + 6833, + 3988, + 0, + 92463, + 20098 + ], + 1, + "3679089.jpg?=20180629", + 16, + "che_191024_SS4T", + 16, + [ + "hall:betgold", + "hall:betrate", + "hall:betwin", + "hall:betwingold", + "hall:killnum", + "hall:tirate", + "hall:winrate" + ] + ], + [ + "【16기】메디이이브", + 82, + 74, + 10, + "che_event_필살", + [ + 0, + 65754, + 6260, + 8784, + 11492 + ], + 1, + "def2895.jpg?=20190719", + 16, + "che_191024_SS4T", + 18, + [ + "hall:dex2", + "hall:dex3", + "hall:tlrate" + ] + ], + [ + "【16기】Navy마초", + 68, + 87, + 10, + "che_event_무쌍", + [ + 318, + 153674, + 0, + 8703, + 36201 + ], + 0, + "default.jpg", + 16, + "che_191024_SS4T", + 19, + [ + "chief:8", + "hall:dedication", + "hall:dex2", + "hall:dex5", + "hall:experience", + "hall:killcrew", + "hall:killnum", + "hall:killrate", + "hall:tprate", + "hall:warnum" + ] + ], + [ + "【16기】Hide_D", + 10, + 81, + 73, + "che_event_척사", + [ + 0, + 0, + 0, + 0, + 0 + ], + 1, + "ee5accd.jpg?=20190411", + 16, + "che_191024_SS4T", + 20, + [ + "hall:tprate" + ] + ], + [ + "【16기】네이미", + 79, + 69, + 10, + "che_event_필살", + [ + 46452, + 6257, + 0, + 10802, + 10878 + ], + 1, + "b5f2acf.png?=20191024", + 16, + "che_191024_SS4T", + 24, + [ + "hall:dex1", + "hall:tlrate" + ] + ], + [ + "【16기】로리", + 69, + 10, + 87, + "che_event_저격", + [ + 452, + 6693, + 3634, + 222854, + 41580 + ], + 1, + "50794a6.jpg?=20190923", + 16, + "che_191024_SS4T", + 26, + [ + "chief:12", + "hall:dedication", + "hall:dex4", + "hall:dex5", + "hall:experience", + "hall:killcrew", + "hall:killnum", + "hall:killrate", + "hall:tirate", + "hall:ttrate", + "hall:warnum" + ] + ], + [ + "【16기】킹구없이는못살아", + 80, + 73, + 10, + "che_event_견고", + [ + 6076, + 69405, + 0, + 0, + 17341 + ], + 1, + "fb3c625.gif?=20190428", + 16, + "che_191024_SS4T", + 27, + [ + "hall:dex2", + "hall:tlrate", + "hall:ttrate" + ] + ], + [ + "【16기】땅땅이", + 67, + 11, + 87, + "che_event_집중", + [ + 4695, + 9101, + 4197, + 103974, + 16629 + ], + 1, + "99cd27f.gif?=20190606", + 16, + "che_191024_SS4T", + 29, + [ + "hall:dex2", + "hall:dex3", + "hall:dex4", + "hall:tirate" + ] + ], + [ + "【16기】멘헤라짱", + 80, + 75, + 10, + "che_event_격노", + [ + 137417, + 4251, + 6085, + 6924, + 39388 + ], + 1, + "9e75693.gif?=20190908", + 16, + "che_191024_SS4T", + 30, + [ + "chief:10", + "hall:dedication", + "hall:dex1", + "hall:dex3", + "hall:dex5", + "hall:experience", + "hall:firenum", + "hall:killcrew", + "hall:killrate", + "hall:tlrate", + "hall:warnum" + ] + ], + [ + "【16기】료우기시키", + 82, + 74, + 11, + "che_event_무쌍", + [ + 147053, + 1652, + 2956, + 15505, + 21748 + ], + 1, + "559083f.jpg?=20190905", + 16, + "che_191024_SS4T", + 32, + [ + "hall:dex1", + "hall:killcrew", + "hall:killrate", + "hall:tlrate", + "hall:warnum" + ] + ], + [ + "【16기】낙지꾸미", + 70, + 10, + 83, + "che_event_필살", + [ + 0, + 6343, + 0, + 108740, + 24196 + ], + 0, + "default.jpg", + 16, + "che_191024_SS4T", + 33, + [ + "chief:7", + "hall:dex4", + "hall:experience", + "hall:firenum", + "hall:killnum", + "hall:killrate", + "hall:winrate" + ] + ], + [ + "【16기】늙고병든활쟁이", + 69, + 10, + 85, + "che_event_신중", + [ + 0, + 0, + 0, + 35981, + 27222 + ], + 0, + "default.jpg", + 16, + "che_191024_SS4T", + 34, + [ + "hall:dex5" + ] + ], + [ + "【16기】펭삼이", + 76, + 10, + 77, + "che_event_징병", + [ + 0, + 0, + 0, + 45385, + 16345 + ], + 1, + "8151605.jpg?=20191024", + 16, + "che_191024_SS4T", + 35, + [ + "hall:tlrate" + ] + ], + [ + "【16기】카이스트", + 67, + 12, + 88, + "che_event_집중", + [ + 0, + 8331, + 3443, + 112322, + 23572 + ], + 1, + "9361ef8.jpg?=20180907", + 16, + "che_191024_SS4T", + 36, + [ + "hall:dex2", + "hall:dex4" + ] + ], + [ + "【16기】ㅁ", + 70, + 10, + 85, + "che_event_반계", + [ + 7115, + 9864, + 0, + 172143, + 35724 + ], + 1, + "1f8b859.gif?=20191022", + 16, + "che_191024_SS4T", + 38, + [ + "chief:11", + "hall:dex1", + "hall:dex2", + "hall:dex4", + "hall:dex5", + "hall:experience", + "hall:firenum", + "hall:killcrew", + "hall:killnum", + "hall:warnum", + "hall:winrate" + ] + ], + [ + "【16기】제노에이지", + 69, + 10, + 87, + "che_event_척사", + [ + 16571, + 5402, + 7313, + 130992, + 30501 + ], + 1, + "ddd1fd7.jpg?=20190320", + 16, + "che_191024_SS4T", + 39, + [ + "chief:5", + "hall:dex1", + "hall:dex3", + "hall:dex4", + "hall:dex5", + "hall:firenum", + "hall:killcrew", + "hall:killnum", + "hall:ttrate", + "hall:warnum", + "hall:winrate" + ] + ], + [ + "【16기】평민킬러", + 69, + 86, + 10, + "che_event_무쌍", + [ + 210597, + 4618, + 15688, + 13134, + 28916 + ], + 1, + "fb23a32.jpg?=20190904", + 16, + "che_191024_SS4T", + 40, + [ + "hall:dedication", + "hall:dex1", + "hall:dex3", + "hall:dex5", + "hall:experience", + "hall:killcrew", + "hall:killnum", + "hall:killrate", + "hall:tprate", + "hall:warnum", + "hall:winrate" + ] + ], + [ + "【16기】외심장", + 67, + 10, + 88, + "che_event_환술", + [ + 3948, + 0, + 2058, + 109005, + 25085 + ], + 1, + "36110cd.jpg?=20180826", + 16, + "che_191024_SS4T", + 41, + [ + "hall:dedication", + "hall:dex4", + "hall:dex5", + "hall:tirate" + ] + ], + [ + "【16기】카오스피닉스", + 69, + 10, + 87, + "che_event_신중", + [ + 2923, + 0, + 1143, + 102034, + 48779 + ], + 1, + "7f80b2f.jpg?=20190715", + 16, + "che_191024_SS4T", + 42, + [ + "hall:dedication", + "hall:dex5", + "hall:experience", + "hall:killcrew", + "hall:killrate", + "hall:ttrate" + ] + ], + [ + "【16기】엔틱", + 67, + 10, + 88, + "che_event_의술", + [ + 0, + 0, + 1780, + 73044, + 18219 + ], + 1, + "2dc4058.jpg?=20190816", + 16, + "che_191024_SS4T", + 45, + [ + "hall:tirate" + ] + ], + [ + "【16기】개미호랑이", + 70, + 10, + 86, + "che_event_환술", + [ + 6243, + 5774, + 6185, + 119857, + 71213 + ], + 1, + "fccc37e.jpg?=20190718", + 16, + "che_191024_SS4T", + 47, + [ + "chief:9", + "hall:dedication", + "hall:dex3", + "hall:dex4", + "hall:dex5", + "hall:killcrew", + "hall:killrate", + "hall:ttrate", + "hall:warnum" + ] + ], + [ + "【16기】마왕", + 68, + 10, + 87, + "che_event_징병", + [ + 8012, + 6492, + 0, + 19728, + 2463 + ], + 1, + "eaa25e5.png?=20190910", + 16, + "che_191024_SS4T", + 51, + [ + "hall:dex1", + "hall:tirate", + "hall:ttrate" + ] + ], + [ + "【16기】김나영", + 10, + 67, + 89, + "che_event_반계", + [ + 0, + 0, + 0, + 0, + 0 + ], + 1, + "c90a3d4.jpg?=20190905", + 16, + "che_191024_SS4T", + 52, + [ + "hall:dedication", + "hall:tirate" + ] + ], + [ + "【16기】아무말이나들어줌", + 76, + 79, + 12, + "che_event_기병", + [ + 242, + 10369, + 105455, + 6820, + 16329 + ], + 1, + "df7a778.jpg?=20191024", + 16, + "che_191024_SS4T", + 54, + [ + "hall:dex2", + "hall:dex3", + "hall:experience", + "hall:killnum", + "hall:killrate", + "hall:tlrate", + "hall:tprate", + "hall:ttrate", + "hall:winrate" + ] + ], + [ + "【16기】내선순환열차", + 10, + 81, + 72, + "che_event_저격", + [ + 0, + 0, + 0, + 0, + 0 + ], + 0, + "default.jpg", + 16, + "che_191024_SS4T", + 57, + [ + "hall:firenum", + "hall:tprate" + ] + ], + [ + "【16기】극대노초홍", + 68, + 10, + 89, + "che_event_귀병", + [ + 4065, + 7900, + 343, + 127230, + 16640 + ], + 1, + "82a5a70.jpg?=20191024", + 16, + "che_191024_SS4T", + 59, + [ + "hall:betgold", + "hall:dex2", + "hall:dex4", + "hall:tirate", + "hall:warnum" + ] + ], + [ + "【16기】이건 모구전때문임", + 11, + 82, + 69, + "che_event_필살", + [ + 0, + 0, + 0, + 0, + 0 + ], + 0, + "default.jpg", + 16, + "che_191024_SS4T", + 60, + [ + "hall:firenum", + "hall:tprate" + ] + ], + [ + "【16기】짜왕", + 73, + 79, + 10, + "che_event_보병", + [ + 16983, + 0, + 0, + 2013, + 4415 + ], + 0, + "default.jpg", + 16, + "che_191024_SS4T", + 62, + [ + "hall:dex1", + "hall:firenum", + "hall:tprate" + ] + ], + [ + "【16기】륜", + 10, + 68, + 86, + "che_event_필살", + [ + 0, + 0, + 0, + 0, + 0 + ], + 1, + "6561977.jpg?=20190904", + 16, + "che_191024_SS4T", + 64, + [ + "hall:tirate", + "hall:ttrate" + ] + ], + [ + "【16기】샤를 드 골", + 80, + 10, + 76, + "che_event_환술", + [ + 6589, + 5329, + 4012, + 96905, + 17209 + ], + 1, + "1386e61.jpg?=20191025", + 16, + "che_191024_SS4T", + 74, + [ + "hall:dex3", + "hall:firenum", + "hall:killnum", + "hall:tlrate", + "hall:winrate" + ] + ], + [ + "【16기】ㅇㄷㄷㄷ", + 71, + 82, + 10, + "che_event_척사", + [ + 59818, + 0, + 0, + 0, + 23146 + ], + 0, + "default.jpg", + 16, + "che_191024_SS4T", + 75, + [ + "hall:dex1", + "hall:killrate", + "hall:tlrate", + "hall:tprate", + "hall:winrate" + ] + ], + [ + "【16기】도추", + 69, + 11, + 86, + "che_event_척사", + [ + 3633, + 4286, + 3315, + 67478, + 18996 + ], + 0, + "default.jpg", + 16, + "che_191024_SS4T", + 93, + [ + "hall:ttrate" + ] + ], + [ + "【16기】정채연", + 67, + 85, + 10, + "che_event_척사", + [ + 8858, + 95151, + 4068, + 7657, + 12249 + ], + 1, + "9705097.jpg?=20191001", + 16, + "che_191024_SS4T", + 115, + [ + "chief:6", + "hall:dex1", + "hall:dex2", + "hall:dex3", + "hall:firenum", + "hall:tprate", + "hall:winrate" + ] + ], + [ + "【17기】시그", + 72, + 84, + 10, + "che_event_격노", + [ + 361479, + 3309, + 49312, + 40914, + 46558 + ], + 1, + "e397de6.jpg?=20191120", + 17, + "che_191121_gduK", + 4, + [ + "chief:11", + "hall:dedication", + "hall:dex1", + "hall:dex3", + "hall:dex5", + "hall:experience", + "hall:killcrew", + "hall:killnum", + "hall:killrate", + "hall:tprate", + "hall:warnum", + "hall:winrate" + ] + ], + [ + "【17기】Hide_D", + 11, + 69, + 84, + "che_event_귀병", + [ + 572, + 587, + 12873, + 45394, + 6709 + ], + 1, + "ee5accd.jpg?=20190411", + 17, + "che_191121_gduK", + 5, + [ + "chief:12", + "hall:dedication", + "hall:experience", + "hall:killrate", + "hall:tirate" + ] + ], + [ + "【17기】로리", + 71, + 10, + 83, + "che_event_집중", + [ + 17727, + 7383, + 24982, + 317077, + 34807 + ], + 1, + "50794a6.jpg?=20190923", + 17, + "che_191121_gduK", + 7, + [ + "chief:7", + "hall:dedication", + "hall:dex1", + "hall:dex4", + "hall:dex5", + "hall:experience", + "hall:killcrew", + "hall:killnum", + "hall:tirate", + "hall:winrate" + ] + ], + [ + "【17기】카이스트", + 70, + 10, + 83, + "che_event_징병", + [ + 29383, + 31445, + 41054, + 455449, + 40166 + ], + 1, + "9361ef8.jpg?=20180907", + 17, + "che_191121_gduK", + 8, + [ + "hall:dex1", + "hall:dex2", + "hall:dex3", + "hall:dex4", + "hall:dex5", + "hall:killcrew", + "hall:killnum", + "hall:killrate", + "hall:tirate", + "hall:tlrate", + "hall:ttrate", + "hall:warnum", + "hall:winrate" + ] + ], + [ + "【17기】토미에", + 69, + 10, + 82, + "che_event_격노", + [ + 0, + 15001, + 28747, + 179707, + 5613 + ], + 1, + "f4cbfb3.jpg?=20191112", + 17, + "che_191121_gduK", + 9, + [ + "hall:dex4", + "hall:tirate", + "hall:tlrate", + "hall:winrate" + ] + ], + [ + "【17기】후와 효카", + 10, + 69, + 84, + "che_event_척사", + [ + 0, + 0, + 0, + 0, + 0 + ], + 1, + "7d4ce13.jpg?=20191121", + 17, + "che_191121_gduK", + 10, + [ + "chief:5", + "hall:dedication" + ] + ], + [ + "【17기】병리학적자세", + 69, + 10, + 83, + "che_event_반계", + [ + 34669, + 26393, + 44197, + 444149, + 38031 + ], + 1, + "3679089.jpg?=20180629", + 17, + "che_191121_gduK", + 12, + [ + "hall:dedication", + "hall:dex1", + "hall:dex2", + "hall:dex3", + "hall:dex4", + "hall:dex5", + "hall:killcrew", + "hall:killnum", + "hall:killrate", + "hall:tirate", + "hall:warnum" + ] + ], + [ + "【17기】오포이스", + 70, + 82, + 10, + "che_event_필살", + [ + 14949, + 560068, + 24674, + 43531, + 38159 + ], + 1, + "c112237.jpg?=20191201", + 17, + "che_191121_gduK", + 13, + [ + "hall:dex2", + "hall:dex5", + "hall:experience", + "hall:killcrew", + "hall:killnum", + "hall:killrate", + "hall:tprate", + "hall:ttrate", + "hall:warnum", + "hall:winrate" + ] + ], + [ + "【17기】평민킬러", + 68, + 85, + 10, + "che_event_징병", + [ + 234601, + 84, + 46727, + 48450, + 25516 + ], + 1, + "fb23a32.jpg?=20190904", + 17, + "che_191121_gduK", + 14, + [ + "chief:8", + "hall:dedication", + "hall:dex1", + "hall:dex3", + "hall:experience", + "hall:killnum", + "hall:tprate", + "hall:ttrate" + ] + ], + [ + "【17기】기체", + 68, + 10, + 86, + "che_event_격노", + [ + 0, + 2846, + 4353, + 63474, + 14121 + ], + 0, + "default.jpg", + 17, + "che_191121_gduK", + 16, + [ + "hall:betgold", + "hall:betwin", + "hall:betwingold", + "hall:dedication", + "hall:experience", + "hall:tirate", + "hall:ttrate" + ] + ], + [ + "【17기】모모냥", + 11, + 69, + 83, + "che_event_척사", + [ + 0, + 0, + 0, + 0, + 0 + ], + 1, + "a309e5f.gif?=20191121", + 17, + "che_191121_gduK", + 21, + [ + "hall:tprate" + ] + ], + [ + "【17기】외심장", + 68, + 11, + 81, + "che_event_저격", + [ + 0, + 16392, + 17309, + 143792, + 18492 + ], + 1, + "36110cd.jpg?=20180826", + 17, + "che_191121_gduK", + 22, + [ + "hall:dex4", + "hall:tirate" + ] + ], + [ + "【17기】박일아", + 71, + 10, + 84, + "che_event_신산", + [ + 27111, + 30262, + 68620, + 549278, + 28962 + ], + 1, + "8608979.gif?=20191024", + 17, + "che_191121_gduK", + 23, + [ + "hall:dex1", + "hall:dex2", + "hall:dex3", + "hall:dex4", + "hall:experience", + "hall:killcrew", + "hall:killnum", + "hall:killrate", + "hall:tirate", + "hall:ttrate", + "hall:warnum", + "hall:winrate" + ] + ], + [ + "【17기】강희정", + 69, + 10, + 80, + "che_event_필살", + [ + 5176, + 3177, + 13554, + 96984, + 6566 + ], + 0, + "default.jpg", + 17, + "che_191121_gduK", + 24, + [ + "hall:winrate" + ] + ], + [ + "【17기】땅땅이", + 81, + 72, + 10, + "che_event_격노", + [ + 9308, + 62309, + 265274, + 77751, + 20948 + ], + 1, + "99cd27f.gif?=20190606", + 17, + "che_191121_gduK", + 26, + [ + "hall:dex2", + "hall:dex3", + "hall:tlrate", + "hall:tprate", + "hall:ttrate" + ] + ], + [ + "【17기】개미호랑이", + 69, + 10, + 83, + "che_event_격노", + [ + 13306, + 10700, + 19979, + 153411, + 94562 + ], + 1, + "fccc37e.jpg?=20190718", + 17, + "che_191121_gduK", + 27, + [ + "chief:9", + "hall:dedication", + "hall:dex4", + "hall:dex5", + "hall:killrate", + "hall:winrate" + ] + ], + [ + "【17기】료우기시키", + 83, + 70, + 10, + "che_event_징병", + [ + 23231, + 264555, + 25084, + 67976, + 30971 + ], + 1, + "559083f.jpg?=20190905", + 17, + "che_191121_gduK", + 28, + [ + "hall:dex1", + "hall:dex2", + "hall:dex5", + "hall:killcrew", + "hall:killnum", + "hall:tlrate", + "hall:tprate", + "hall:ttrate", + "hall:warnum" + ] + ], + [ + "【17기】테러범A", + 71, + 83, + 10, + "che_event_돌격", + [ + 5207, + 31776, + 380523, + 65349, + 40883 + ], + 1, + "85ec285.jpg?=20191121", + 17, + "che_191121_gduK", + 30, + [ + "chief:10", + "hall:dedication", + "hall:dex2", + "hall:dex3", + "hall:dex5", + "hall:experience", + "hall:killcrew", + "hall:killnum", + "hall:killrate", + "hall:tlrate", + "hall:tprate", + "hall:ttrate", + "hall:warnum", + "hall:winrate" + ] + ], + [ + "【17기】카오스피닉스", + 68, + 10, + 85, + "che_event_격노", + [ + 7023, + 5005, + 37197, + 305666, + 40237 + ], + 1, + "7f80b2f.jpg?=20190715", + 17, + "che_191121_gduK", + 31, + [ + "hall:dex4", + "hall:dex5", + "hall:experience", + "hall:killcrew", + "hall:killrate", + "hall:tirate", + "hall:winrate" + ] + ], + [ + "【17기】보스곰", + 70, + 11, + 82, + "che_event_집중", + [ + 18515, + 19364, + 6689, + 182243, + 8353 + ], + 1, + "773556e.gif?=20190822", + 17, + "che_191121_gduK", + 32, + [ + "hall:dex1", + "hall:dex4", + "hall:tirate", + "hall:tlrate" + ] + ], + [ + "【17기】아무생각이없다", + 82, + 71, + 11, + "che_event_저격", + [ + 77665, + 534847, + 42515, + 88850, + 83144 + ], + 1, + "b205386.png?=20191121", + 17, + "che_191121_gduK", + 33, + [ + "chief:6", + "hall:dex1", + "hall:dex2", + "hall:dex3", + "hall:dex5", + "hall:killcrew", + "hall:killnum", + "hall:killrate", + "hall:tlrate", + "hall:tprate", + "hall:ttrate", + "hall:warnum" + ] + ], + [ + "【17기】정채연", + 69, + 10, + 82, + "che_event_집중", + [ + 6033, + 5938, + 4945, + 99986, + 2771 + ], + 1, + "9705097.jpg?=20191001", + 17, + "che_191121_gduK", + 34, + [ + "hall:dex4", + "hall:tlrate" + ] + ], + [ + "【17기】보부상", + 83, + 70, + 10, + "che_event_저격", + [ + 13971, + 53677, + 255336, + 78844, + 8343 + ], + 0, + "default.jpg", + 17, + "che_191121_gduK", + 39, + [ + "hall:dex2", + "hall:dex3", + "hall:experience", + "hall:tlrate", + "hall:ttrate", + "hall:warnum" + ] + ], + [ + "【17기】Navy마초", + 71, + 82, + 10, + "che_event_무쌍", + [ + 57935, + 62932, + 192921, + 78948, + 3194 + ], + 0, + "default.jpg", + 17, + "che_191121_gduK", + 52, + [ + "hall:dex1", + "hall:dex2", + "hall:dex3", + "hall:tprate", + "hall:warnum" + ] + ], + [ + "【17기】for kakao", + 10, + 70, + 73, + "che_event_귀병", + [ + 0, + 0, + 0, + 0, + 0 + ], + 1, + "39026ec.png?=20191123", + 17, + "che_191121_gduK", + 69, + [ + "hall:tprate" + ] + ], + [ + "【17기】이초홍", + 10, + 71, + 79, + "che_event_환술", + [ + 0, + 0, + 0, + 0, + 0 + ], + 1, + "ce2a633.jpg?=20191126", + 17, + "che_191121_gduK", + 111, + [ + "hall:dedication" + ] + ], + [ + "【17기】뺙제차냥차냥", + 72, + 76, + 10, + "che_event_척사", + [ + 0, + 0, + 0, + 0, + 0 + ], + 1, + "1b8a3df.jpg?=20190620", + 17, + "che_191121_gduK", + 225, + [ + "hall:tlrate" + ] + ], + [ + "【18기】우웅...", + 73, + 10, + 87, + "che_event_척사", + [ + 42145, + 49425, + 75640, + 748505, + 70358 + ], + 1, + "3fb3ee0.jpg?=20191211", + 18, + "che_191212_tf0O", + 4, + [ + "hall:dex1", + "hall:dex2", + "hall:dex3", + "hall:dex4", + "hall:dex5", + "hall:experience", + "hall:killcrew", + "hall:killnum", + "hall:killrate", + "hall:tirate", + "hall:ttrate", + "hall:warnum" + ] + ], + [ + "【18기】카이스트", + 72, + 10, + 88, + "che_event_징병", + [ + 68073, + 97291, + 35977, + 759031, + 59509 + ], + 1, + "9361ef8.jpg?=20180907", + 18, + "che_191212_tf0O", + 12, + [ + "hall:dex1", + "hall:dex2", + "hall:dex4", + "hall:dex5", + "hall:killcrew", + "hall:killnum", + "hall:tirate", + "hall:ttrate", + "hall:warnum" + ] + ], + [ + "【18기】모모냥", + 10, + 76, + 84, + "che_event_집중", + [ + 0, + 0, + 0, + 0, + 0 + ], + 1, + "a309e5f.gif?=20191121", + 18, + "che_191212_tf0O", + 15, + [ + "hall:tprate" + ] + ], + [ + "【18기】Anna", + 72, + 11, + 88, + "che_event_신산", + [ + 37553, + 45612, + 50708, + 689014, + 45414 + ], + 1, + "7ad20e3.jpg?=20191212", + 18, + "che_191212_tf0O", + 16, + [ + "hall:dex1", + "hall:dex4", + "hall:killnum", + "hall:tirate", + "hall:ttrate", + "hall:warnum", + "hall:winrate" + ] + ], + [ + "【18기】평민킬러", + 73, + 85, + 10, + "che_event_무쌍", + [ + 648896, + 16172, + 105798, + 108806, + 39869 + ], + 1, + "fb23a32.jpg?=20190904", + 18, + "che_191212_tf0O", + 18, + [ + "hall:dex1", + "hall:dex3", + "hall:experience", + "hall:killcrew", + "hall:tlrate", + "hall:tprate", + "hall:winrate" + ] + ], + [ + "【18기】사스케", + 71, + 10, + 84, + "che_event_격노", + [ + 16574, + 13483, + 11953, + 159780, + 23209 + ], + 1, + "986348a.jpg?=20190815", + 18, + "che_191212_tf0O", + 19, + [ + "hall:tirate" + ] + ], + [ + "【18기】박일아", + 75, + 87, + 10, + "che_event_무쌍", + [ + 28858, + 116303, + 1138468, + 138739, + 50122 + ], + 1, + "8608979.gif?=20191024", + 18, + "che_191212_tf0O", + 21, + [ + "hall:dedication", + "hall:dex2", + "hall:dex3", + "hall:experience", + "hall:killcrew", + "hall:killnum", + "hall:killrate", + "hall:tprate", + "hall:ttrate", + "hall:warnum", + "hall:winrate" + ] + ], + [ + "【18기】보스곰", + 72, + 10, + 86, + "che_event_신중", + [ + 34109, + 44140, + 26164, + 459541, + 20593 + ], + 1, + "773556e.gif?=20190822", + 18, + "che_191212_tf0O", + 23, + [ + "hall:dex4", + "hall:tirate" + ] + ], + [ + "【18기】임사영", + 69, + 10, + 85, + "che_event_환술", + [ + 10512, + 10675, + 19954, + 167913, + 6599 + ], + 1, + "d5dc381.gif?=20190719", + 18, + "che_191212_tf0O", + 24, + [ + "hall:tirate" + ] + ], + [ + "【18기】기절중...zzZ", + 91, + 11, + 10, + "che_event_돌격", + [ + 0, + 0, + 17379, + 15434, + 394838 + ], + 0, + "default.jpg", + 18, + "che_191212_tf0O", + 26, + [ + "hall:dedication", + "hall:dex5", + "hall:experience", + "hall:killrate", + "hall:tlrate" + ] + ], + [ + "【18기】찰스 디킨스", + 10, + 76, + 82, + "che_event_반계", + [ + 0, + 0, + 0, + 0, + 0 + ], + 1, + "88da614.jpg?=20191210", + 18, + "che_191212_tf0O", + 27, + [ + "hall:tirate", + "hall:tprate" + ] + ], + [ + "【18기】지바", + 87, + 72, + 11, + "che_event_의술", + [ + 12719, + 58657, + 855054, + 128490, + 72336 + ], + 1, + "6b57eee.gif?=20191225", + 18, + "che_191212_tf0O", + 29, + [ + "chief:6", + "hall:dedication", + "hall:dex2", + "hall:dex3", + "hall:dex5", + "hall:experience", + "hall:killcrew", + "hall:killnum", + "hall:killrate", + "hall:tlrate", + "hall:tprate", + "hall:ttrate", + "hall:warnum" + ] + ], + [ + "【18기】Hide_D", + 82, + 10, + 79, + "che_event_반계", + [ + 23677, + 64299, + 101032, + 1075276, + 110262 + ], + 1, + "ee5accd.jpg?=20190411", + 18, + "che_191212_tf0O", + 30, + [ + "hall:dedication", + "hall:dex2", + "hall:dex3", + "hall:dex4", + "hall:dex5", + "hall:experience", + "hall:killcrew", + "hall:killnum", + "hall:killrate", + "hall:tlrate", + "hall:ttrate", + "hall:warnum", + "hall:winrate" + ] + ], + [ + "【18기】Eman", + 83, + 73, + 11, + "che_event_견고", + [ + 524297, + 16805, + 65673, + 86185, + 78182 + ], + 1, + "4358ef.png?=20191212", + 18, + "che_191212_tf0O", + 32, + [ + "hall:dex1", + "hall:dex3", + "hall:dex5", + "hall:killrate", + "hall:tlrate", + "hall:ttrate" + ] + ], + [ + "【18기】우대주스나타나양", + 72, + 10, + 87, + "che_event_신중", + [ + 40102, + 69621, + 82773, + 888404, + 73100 + ], + 1, + "14889af.jpg?=20191221", + 18, + "che_191212_tf0O", + 33, + [ + "chief:9", + "hall:dedication", + "hall:dex1", + "hall:dex2", + "hall:dex3", + "hall:dex4", + "hall:dex5", + "hall:experience", + "hall:killcrew", + "hall:killnum", + "hall:killrate", + "hall:warnum", + "hall:winrate" + ] + ], + [ + "【18기】료우기시키", + 87, + 70, + 10, + "che_event_필살", + [ + 23567, + 57578, + 349644, + 88587, + 6442 + ], + 1, + "559083f.jpg?=20190905", + 18, + "che_191212_tf0O", + 34, + [ + "hall:dex2", + "hall:dex3", + "hall:tlrate", + "hall:tprate", + "hall:winrate" + ] + ], + [ + "【18기】개미호랑이", + 90, + 10, + 66, + "che_event_신산", + [ + 43580, + 55879, + 26226, + 77467, + 242248 + ], + 1, + "6ee69e8.jpg?=20191227", + 18, + "che_191212_tf0O", + 36, + [ + "hall:dex1", + "hall:dex2", + "hall:dex5", + "hall:tlrate" + ] + ], + [ + "【18기】병리학적자세", + 71, + 10, + 89, + "che_event_귀병", + [ + 21659, + 36277, + 69559, + 925284, + 59133 + ], + 1, + "3679089.jpg?=20180629", + 18, + "che_191212_tf0O", + 37, + [ + "chief:11", + "hall:dedication", + "hall:dex3", + "hall:dex4", + "hall:dex5", + "hall:experience", + "hall:killcrew", + "hall:killnum", + "hall:killrate", + "hall:tirate", + "hall:tlrate", + "hall:warnum", + "hall:winrate" + ] + ], + [ + "【18기】외심장", + 74, + 10, + 85, + "che_event_격노", + [ + 38743, + 25546, + 77584, + 789121, + 32975 + ], + 1, + "36110cd.jpg?=20180826", + 18, + "che_191212_tf0O", + 41, + [ + "chief:12", + "hall:betgold", + "hall:betwin", + "hall:betwingold", + "hall:dedication", + "hall:dex1", + "hall:dex3", + "hall:dex4", + "hall:experience", + "hall:killcrew", + "hall:killnum", + "hall:killrate", + "hall:ttrate", + "hall:warnum", + "hall:winrate" + ] + ], + [ + "【18기】KOSPI", + 74, + 86, + 10, + "che_event_필살", + [ + 23897, + 461349, + 30162, + 117749, + 15187 + ], + 0, + "default.jpg", + 18, + "che_191212_tf0O", + 46, + [ + "chief:8", + "hall:dedication", + "hall:dex2", + "hall:tlrate", + "hall:tprate", + "hall:winrate" + ] + ], + [ + "【18기】땅땅이", + 84, + 75, + 10, + "che_event_척사", + [ + 83217, + 914271, + 42441, + 178821, + 140063 + ], + 1, + "99cd27f.gif?=20190606", + 18, + "che_191212_tf0O", + 50, + [ + "chief:10", + "hall:dex1", + "hall:dex2", + "hall:dex4", + "hall:dex5", + "hall:experience", + "hall:killcrew", + "hall:killnum", + "hall:killrate", + "hall:tlrate", + "hall:tprate", + "hall:ttrate", + "hall:warnum", + "hall:winrate" + ] + ], + [ + "【18기】레이첼 알카드", + 10, + 69, + 86, + "che_event_귀병", + [ + 0, + 0, + 0, + 0, + 0 + ], + 1, + "bf1724a.jpg?=20191215", + 18, + "che_191212_tf0O", + 78, + [ + "hall:tirate" + ] + ], + [ + "【18기】웃고있다", + 13, + 87, + 67, + "che_event_저격", + [ + 0, + 3746, + 7834, + 14431, + 6329 + ], + 1, + "4178447.jpg?=20191215", + 18, + "che_191212_tf0O", + 107, + [ + "hall:tprate", + "hall:ttrate" + ] + ], + [ + "【18기】양", + 10, + 68, + 84, + "che_event_신중", + [ + 0, + 0, + 0, + 0, + 0 + ], + 0, + "default.jpg", + 18, + "che_191212_tf0O", + 181, + [ + "chief:5", + "hall:betgold", + "hall:dedication" + ] + ], + [ + "【18기】천괴금", + 10, + 86, + 65, + "che_event_견고", + [ + 0, + 0, + 0, + 0, + 0 + ], + 1, + "2b239af.png?=20190824", + 18, + "che_191212_tf0O", + 219, + [ + "hall:tprate" + ] + ], + [ + "【18기】DDDD", + 69, + 11, + 80, + "che_event_징병", + [ + 43052, + 16985, + 44625, + 295243, + 24102 + ], + 1, + "a5c75e7.jpg?=20191223", + 18, + "che_191212_tf0O", + 233, + [ + "chief:7", + "hall:dex1", + "hall:dex4" + ] + ], + [ + "【18기】펭수", + 10, + 70, + 82, + "che_event_귀병", + [ + 0, + 0, + 0, + 0, + 0 + ], + 1, + "b1807bf.png?=20191221", + 18, + "che_191212_tf0O", + 245, + [ + "hall:dedication", + "hall:tirate" + ] + ], + [ + "【19기】박일아", + 86, + 68, + 10, + "che_event_의술", + [ + 472187, + 20600, + 50311, + 90313, + 33568 + ], + 1, + "8608979.gif?=20191024", + 19, + "che_200109_Ri8R", + 3, + [ + "hall:dex1", + "hall:dex3", + "hall:experience", + "hall:killcrew", + "hall:killnum", + "hall:killrate", + "hall:tlrate", + "hall:warnum" + ] + ], + [ + "【19기】보스곰", + 70, + 10, + 84, + "che_event_집중", + [ + 8795, + 33311, + 14253, + 280835, + 14748 + ], + 1, + "773556e.gif?=20190822", + 19, + "che_200109_Ri8R", + 4, + [ + "hall:dex4", + "hall:tirate" + ] + ], + [ + "【19기】금사향", + 70, + 11, + 83, + "che_event_격노", + [ + 50385, + 16064, + 26920, + 427418, + 39780 + ], + 1, + "4deb6fb.jpg?=20191229", + 19, + "che_200109_Ri8R", + 7, + [ + "chief:12", + "hall:dedication", + "hall:dex1", + "hall:dex4", + "hall:dex5", + "hall:experience", + "hall:killcrew", + "hall:killnum", + "hall:killrate", + "hall:tirate", + "hall:ttrate", + "hall:warnum", + "hall:winrate" + ] + ], + [ + "【19기】DDDD", + 69, + 10, + 84, + "che_event_신중", + [ + 9856, + 19505, + 20360, + 140278, + 76359 + ], + 1, + "a5c75e7.jpg?=20191223", + 19, + "che_200109_Ri8R", + 8, + [ + "hall:dex5", + "hall:ttrate" + ] + ], + [ + "【19기】평민킬러", + 70, + 10, + 85, + "che_event_징병", + [ + 16379, + 44459, + 36106, + 424448, + 31811 + ], + 1, + "fb23a32.jpg?=20190904", + 19, + "che_200109_Ri8R", + 9, + [ + "hall:dex2", + "hall:dex3", + "hall:dex4", + "hall:killcrew", + "hall:killnum", + "hall:tirate", + "hall:warnum", + "hall:winrate" + ] + ], + [ + "【19기】갈근", + 71, + 10, + 82, + "che_event_저격", + [ + 42372, + 29647, + 19974, + 369504, + 28762 + ], + 0, + "default.jpg", + 19, + "che_200109_Ri8R", + 10, + [ + "chief:9", + "hall:dedication", + "hall:dex1", + "hall:dex4", + "hall:experience", + "hall:killcrew", + "hall:killnum", + "hall:killrate", + "hall:ttrate", + "hall:warnum" + ] + ], + [ + "【19기】올때메로나", + 80, + 10, + 72, + "che_event_징병", + [ + 31626, + 11884, + 40946, + 310670, + 16965 + ], + 0, + "default.jpg", + 19, + "che_200109_Ri8R", + 11, + [ + "hall:dex3", + "hall:dex4", + "hall:warnum" + ] + ], + [ + "【19기】카이스트", + 70, + 10, + 82, + "che_event_귀병", + [ + 38657, + 21232, + 21186, + 332069, + 43094 + ], + 1, + "9361ef8.jpg?=20180907", + 19, + "che_200109_Ri8R", + 12, + [ + "hall:dex4", + "hall:dex5", + "hall:tirate" + ] + ], + [ + "【19기】개미호랑이", + 82, + 70, + 11, + "che_event_위압", + [ + 23725, + 71821, + 562276, + 73460, + 28186 + ], + 1, + "6ee69e8.jpg?=20191227", + 19, + "che_200109_Ri8R", + 14, + [ + "hall:dedication", + "hall:dex2", + "hall:dex3", + "hall:experience", + "hall:killcrew", + "hall:killnum", + "hall:tlrate", + "hall:warnum", + "hall:winrate" + ] + ], + [ + "【19기】삼모몰라요", + 83, + 70, + 10, + "che_event_돌격", + [ + 22100, + 30046, + 388989, + 57810, + 32699 + ], + 0, + "default.jpg", + 19, + "che_200109_Ri8R", + 15, + [ + "chief:10", + "hall:dex3", + "hall:experience", + "hall:firenum", + "hall:killcrew", + "hall:killnum", + "hall:killrate", + "hall:tlrate", + "hall:winrate" + ] + ], + [ + "【19기】카오스피닉스", + 69, + 10, + 85, + "che_event_집중", + [ + 19178, + 5186, + 32314, + 199666, + 14066 + ], + 1, + "7f80b2f.jpg?=20190715", + 19, + "che_200109_Ri8R", + 16, + [ + "hall:dedication", + "hall:tirate", + "hall:winrate" + ] + ], + [ + "【19기】엔딩요정", + 69, + 83, + 10, + "che_event_징병", + [ + 8624, + 34146, + 318730, + 54793, + 26595 + ], + 1, + "b568f56.jpg?=20200106", + 19, + "che_200109_Ri8R", + 17, + [ + "chief:6", + "hall:dex3", + "hall:experience", + "hall:killrate", + "hall:tprate" + ] + ], + [ + "【19기】rwitch", + 71, + 10, + 83, + "che_event_격노", + [ + 29318, + 23210, + 18618, + 267372, + 11428 + ], + 1, + "dcc638d.jpg?=20190725", + 19, + "che_200109_Ri8R", + 18, + [ + "hall:dex4", + "hall:ttrate" + ] + ], + [ + "【19기】Elsa", + 71, + 83, + 10, + "che_event_저격", + [ + 8241, + 26929, + 263995, + 71163, + 15037 + ], + 1, + "5041f99.jpg?=20200121", + 19, + "che_200109_Ri8R", + 19, + [ + "hall:dex3", + "hall:tprate" + ] + ], + [ + "【19기】슬라임", + 10, + 69, + 85, + "che_event_신중", + [ + 0, + 0, + 0, + 0, + 0 + ], + 1, + "2fd8b5.png?=20191222", + 19, + "che_200109_Ri8R", + 20, + [ + "hall:ttrate" + ] + ], + [ + "【19기】팬지", + 69, + 10, + 83, + "che_event_귀병", + [ + 29259, + 13912, + 9221, + 252237, + 11550 + ], + 1, + "2091b86.gif?=20200112", + 19, + "che_200109_Ri8R", + 21, + [ + "chief:7", + "hall:ttrate" + ] + ], + [ + "【19기】Hide_D", + 69, + 12, + 83, + "che_event_필살", + [ + 39392, + 30865, + 9240, + 261155, + 14354 + ], + 1, + "9f0a2a8.png?=20200106", + 19, + "che_200109_Ri8R", + 22, + [ + "hall:tirate" + ] + ], + [ + "【19기】파크헤트", + 84, + 69, + 10, + "che_event_돌격", + [ + 36866, + 256143, + 8644, + 55229, + 12676 + ], + 1, + "a18c11b.jpg?=20200109", + 19, + "che_200109_Ri8R", + 23, + [ + "hall:dedication", + "hall:dex2", + "hall:tlrate" + ] + ], + [ + "【19기】말걸지마라", + 85, + 69, + 10, + "che_event_저격", + [ + 350581, + 22056, + 40768, + 58089, + 43213 + ], + 1, + "e465f23.gif?=20200109", + 19, + "che_200109_Ri8R", + 24, + [ + "hall:dex1", + "hall:dex3", + "hall:dex5", + "hall:killcrew", + "hall:killnum", + "hall:killrate", + "hall:tlrate", + "hall:warnum" + ] + ], + [ + "【19기】땅땅이", + 78, + 73, + 10, + "che_event_저격", + [ + 95387, + 291628, + 11819, + 46427, + 35673 + ], + 1, + "99cd27f.gif?=20190606", + 19, + "che_200109_Ri8R", + 25, + [ + "chief:8", + "hall:dex1", + "hall:dex2", + "hall:dex5", + "hall:killcrew", + "hall:killrate", + "hall:warnum" + ] + ], + [ + "【19기】외심장", + 70, + 10, + 83, + "che_event_신산", + [ + 27620, + 7809, + 12829, + 236951, + 14985 + ], + 1, + "36110cd.jpg?=20180826", + 19, + "che_200109_Ri8R", + 26, + [ + "hall:killrate", + "hall:ttrate", + "hall:winrate" + ] + ], + [ + "【19기】임사영", + 70, + 10, + 82, + "che_event_귀병", + [ + 11674, + 12119, + 0, + 56430, + 6634 + ], + 1, + "d5dc381.gif?=20190719", + 19, + "che_200109_Ri8R", + 27, + [ + "hall:tirate" + ] + ], + [ + "【19기】정채연", + 72, + 81, + 10, + "che_event_무쌍", + [ + 21345, + 303015, + 14380, + 71163, + 23601 + ], + 1, + "9705097.jpg?=20191001", + 19, + "che_200109_Ri8R", + 28, + [ + "hall:dex2", + "hall:killnum", + "hall:tprate" + ] + ], + [ + "【19기】yapyap30", + 70, + 11, + 83, + "che_event_신산", + [ + 20455, + 17279, + 18888, + 303560, + 40713 + ], + 0, + "default.jpg", + 19, + "che_200109_Ri8R", + 29, + [ + "chief:5", + "hall:dedication", + "hall:dex4", + "hall:dex5", + "hall:experience", + "hall:killrate" + ] + ], + [ + "【19기】DRX Deft", + 79, + 72, + 10, + "che_event_돌격", + [ + 117502, + 8118, + 30454, + 26519, + 2219 + ], + 1, + "c0c766b.jpg?=20190815", + 19, + "che_200109_Ri8R", + 30, + [ + "hall:dex1", + "hall:tprate", + "hall:ttrate" + ] + ], + [ + "【19기】기", + 84, + 69, + 10, + "che_event_무쌍", + [ + 19225, + 11674, + 0, + 6389, + 206616 + ], + 1, + "2cf4b70.jpg?=20200120", + 19, + "che_200109_Ri8R", + 33, + [ + "hall:dex5", + "hall:experience", + "hall:killrate", + "hall:winrate" + ] + ], + [ + "【19기】료우기시키", + 81, + 72, + 10, + "che_event_척사", + [ + 24607, + 86986, + 6449, + 25518, + 56464 + ], + 1, + "559083f.jpg?=20190905", + 19, + "che_200109_Ri8R", + 34, + [ + "hall:dedication", + "hall:dex2", + "hall:dex5", + "hall:tlrate", + "hall:tprate" + ] + ], + [ + "【19기】KOSPI", + 71, + 84, + 10, + "che_event_척사", + [ + 8367, + 162879, + 8247, + 53554, + 2289 + ], + 0, + "default.jpg", + 19, + "che_200109_Ri8R", + 35, + [ + "hall:dex2", + "hall:tprate" + ] + ], + [ + "【19기】독구", + 69, + 11, + 82, + "che_event_집중", + [ + 45070, + 34467, + 39750, + 507842, + 69412 + ], + 1, + "ac701b0.jpg?=20180625", + 19, + "che_200109_Ri8R", + 36, + [ + "chief:11", + "hall:dedication", + "hall:dex1", + "hall:dex3", + "hall:dex4", + "hall:dex5", + "hall:experience", + "hall:killcrew", + "hall:killnum", + "hall:warnum", + "hall:winrate" + ] + ], + [ + "【19기】유다치", + 69, + 81, + 10, + "che_event_격노", + [ + 62138, + 6372, + 27245, + 18063, + 35289 + ], + 1, + "b137f72.jpg?=20200109", + 19, + "che_200109_Ri8R", + 37, + [ + "hall:dex1", + "hall:dex5", + "hall:tprate" + ] + ], + [ + "【19기】하우젤", + 71, + 82, + 10, + "che_event_궁병", + [ + 21407, + 172082, + 2448, + 55796, + 2828 + ], + 1, + "dcff9fd.jpg?=20180823", + 19, + "che_200109_Ri8R", + 39, + [ + "hall:dex2", + "hall:tprate", + "hall:ttrate" + ] + ], + [ + "【19기】인탐빌런", + 84, + 10, + 68, + "che_event_공성", + [ + 0, + 0, + 0, + 0, + 8501 + ], + 0, + "default.jpg", + 19, + "che_200109_Ri8R", + 40, + [ + "hall:tlrate" + ] + ], + [ + "【19기】병리학적자세", + 68, + 11, + 84, + "che_event_격노", + [ + 53626, + 35180, + 33899, + 476134, + 24310 + ], + 1, + "3679089.jpg?=20180629", + 19, + "che_200109_Ri8R", + 41, + [ + "hall:dedication", + "hall:dex1", + "hall:dex2", + "hall:dex3", + "hall:dex4", + "hall:killcrew", + "hall:killnum", + "hall:warnum" + ] + ], + [ + "【19기】아클릿", + 60, + 80, + 19, + "che_event_징병", + [ + 9461, + 3552, + 6949, + 28846, + 0 + ], + 0, + "default.jpg", + 19, + "che_200109_Ri8R", + 44, + [ + "hall:tprate" + ] + ], + [ + "【19기】아노리엔", + 81, + 67, + 10, + "che_event_위압", + [ + 1567, + 10551, + 23901, + 4328, + 0 + ], + 1, + "99d6aca.png?=20190320", + 19, + "che_200109_Ri8R", + 50, + [ + "hall:tlrate" + ] + ], + [ + "【19기】펭수", + 11, + 66, + 85, + "che_event_귀병", + [ + 0, + 0, + 0, + 0, + 0 + ], + 1, + "b1807bf.png?=20191221", + 19, + "che_200109_Ri8R", + 80, + [ + "hall:dedication", + "hall:experience", + "hall:ttrate" + ] + ], + [ + "【19기】ㅎㅎ", + 10, + 66, + 83, + "che_event_징병", + [ + 0, + 0, + 0, + 0, + 0 + ], + 0, + "default.jpg", + 19, + "che_200109_Ri8R", + 91, + [ + "hall:tirate" + ] + ], + [ + "【19기】비빅", + 68, + 10, + 79, + "che_event_필살", + [ + 10811, + 4221, + 5185, + 55368, + 0 + ], + 0, + "default.jpg", + 19, + "che_200109_Ri8R", + 139, + [ + "hall:winrate" + ] + ], + [ + "【19기】불사조페이트", + 83, + 67, + 10, + "che_event_징병", + [ + 34261, + 186187, + 20458, + 52037, + 6163 + ], + 1, + "fb7addd.jpg?=20190816", + 19, + "che_200109_Ri8R", + 199, + [ + "hall:dex2", + "hall:tlrate" + ] + ], + [ + "【19기】현피1번남음", + 69, + 10, + 79, + "che_event_집중", + [ + 2759, + 33410, + 16327, + 189518, + 9871 + ], + 0, + "default.jpg", + 19, + "che_200109_Ri8R", + 213, + [ + "hall:tirate" + ] + ], + [ + "【19기】무기농야채", + 81, + 65, + 10, + "che_event_위압", + [ + 35823, + 1838, + 1794, + 18240, + 0 + ], + 0, + "default.jpg", + 19, + "che_200109_Ri8R", + 222, + [ + "hall:tlrate" + ] + ], + [ + "【19기】하와와", + 70, + 10, + 80, + "che_event_의술", + [ + 10472, + 14586, + 32496, + 224165, + 3473 + ], + 0, + "default.jpg", + 19, + "che_200109_Ri8R", + 224, + [ + "hall:winrate" + ] + ], + [ + "【19기】연애중앵벌스", + 69, + 80, + 10, + "che_event_징병", + [ + 155779, + 21490, + 27629, + 39317, + 0 + ], + 1, + "4b82261.jpg?=20200114", + 19, + "che_200109_Ri8R", + 238, + [ + "hall:dex1", + "hall:tprate" + ] + ], + [ + "【19기】현피0번남음", + 66, + 10, + 82, + "che_event_신산", + [ + 8797, + 10337, + 7072, + 96532, + 2641 + ], + 0, + "default.jpg", + 19, + "che_200109_Ri8R", + 251, + [ + "hall:tirate" + ] + ], + [ + "【20기】Hide_D", + 84, + 11, + 79, + "che_event_환술", + [ + 105917, + 55852, + 68709, + 1133732, + 69051 + ], + 1, + "9f0a2a8.png?=20200106", + 20, + "che_200130_ds2m", + 3, + [ + "chief:12", + "hall:dedication", + "hall:dex1", + "hall:dex3", + "hall:dex4", + "hall:dex5", + "hall:experience", + "hall:killcrew", + "hall:killnum", + "hall:killrate", + "hall:tlrate", + "hall:ttrate", + "hall:warnum", + "hall:winrate" + ] + ], + [ + "【20기】시부야 린", + 89, + 73, + 10, + "che_event_견고", + [ + 662468, + 34698, + 103205, + 155208, + 20254 + ], + 1, + "4c2d759.jpg?=20200130", + 20, + "che_200130_ds2m", + 7, + [ + "hall:dex1", + "hall:dex3", + "hall:tlrate" + ] + ], + [ + "【20기】급식왕스쿨뱅킹", + 72, + 10, + 89, + "che_event_환술", + [ + 37907, + 9906, + 9511, + 244230, + 0 + ], + 1, + "6337f32.jpg?=20200130", + 20, + "che_200130_ds2m", + 9, + [ + "hall:dedication", + "hall:tirate" + ] + ], + [ + "【20기】카오스피닉스", + 76, + 10, + 86, + "che_event_반계", + [ + 70496, + 92823, + 46881, + 670985, + 21305 + ], + 1, + "7f80b2f.jpg?=20190715", + 20, + "che_200130_ds2m", + 10, + [ + "hall:dex2" + ] + ], + [ + "【20기】카이스트", + 74, + 10, + 90, + "che_event_신산", + [ + 91890, + 65253, + 43139, + 1103338, + 46718 + ], + 1, + "9361ef8.jpg?=20180907", + 20, + "che_200130_ds2m", + 12, + [ + "chief:9", + "hall:dedication", + "hall:dex1", + "hall:dex4", + "hall:experience", + "hall:firenum", + "hall:killcrew", + "hall:killnum", + "hall:killrate", + "hall:tirate", + "hall:ttrate", + "hall:warnum", + "hall:winrate" + ] + ], + [ + "【20기】랜갈덤근", + 75, + 10, + 90, + "che_event_집중", + [ + 49776, + 47364, + 62258, + 1567830, + 62682 + ], + 0, + "default.jpg", + 20, + "che_200130_ds2m", + 14, + [ + "hall:dex3", + "hall:dex4", + "hall:dex5", + "hall:experience", + "hall:killcrew", + "hall:killnum", + "hall:tirate", + "hall:ttrate", + "hall:warnum" + ] + ], + [ + "【20기】꼬리구이", + 78, + 10, + 89, + "che_event_집중", + [ + 92707, + 65943, + 72371, + 1497580, + 45820 + ], + 1, + "8429eeb.jpg?=20200129", + 20, + "che_200130_ds2m", + 16, + [ + "hall:dex1", + "hall:dex3", + "hall:dex4", + "hall:experience", + "hall:killcrew", + "hall:killnum", + "hall:killrate", + "hall:tirate", + "hall:ttrate", + "hall:warnum", + "hall:winrate" + ] + ], + [ + "【20기】딱 고정도", + 76, + 88, + 10, + "che_event_견고", + [ + 34333, + 85930, + 841701, + 209968, + 29277 + ], + 1, + "ebd1bce.jpg?=20200130", + 20, + "che_200130_ds2m", + 21, + [ + "hall:dex2", + "hall:dex3", + "hall:killnum", + "hall:tprate", + "hall:warnum" + ] + ], + [ + "【20기】삼모몰라요", + 75, + 10, + 88, + "che_event_신중", + [ + 81146, + 70702, + 58908, + 917107, + 33321 + ], + 0, + "default.jpg", + 20, + "che_200130_ds2m", + 22, + [ + "hall:dex2", + "hall:dex4", + "hall:killnum", + "hall:winrate" + ] + ], + [ + "【20기】임사영", + 75, + 10, + 87, + "che_event_환술", + [ + 32395, + 28399, + 35947, + 372813, + 16176 + ], + 1, + "7f9473e.gif?=20200211", + 20, + "che_200130_ds2m", + 23, + [ + "hall:winrate" + ] + ], + [ + "【20기】아이즈원내놔", + 91, + 73, + 11, + "che_event_돌격", + [ + 73856, + 132246, + 1605504, + 382781, + 29452 + ], + 1, + "99cd27f.gif?=20190606", + 20, + "che_200130_ds2m", + 24, + [ + "chief:8", + "hall:dex2", + "hall:dex3", + "hall:experience", + "hall:firenum", + "hall:killcrew", + "hall:killnum", + "hall:killrate", + "hall:tlrate", + "hall:ttrate", + "hall:warnum", + "hall:winrate" + ] + ], + [ + "【20기】강지", + 93, + 73, + 10, + "che_event_견고", + [ + 44477, + 49136, + 1025530, + 49369, + 60884 + ], + 1, + "3a967d1.jpg?=20200129", + 20, + "che_200130_ds2m", + 26, + [ + "hall:dex3", + "hall:dex5", + "hall:experience", + "hall:killcrew", + "hall:killrate", + "hall:tlrate", + "hall:tprate", + "hall:warnum" + ] + ], + [ + "【20기】등화", + 95, + 66, + 11, + "che_event_공성", + [ + 6320, + 2735, + 10597, + 47686, + 1468280 + ], + 1, + "f11922a.png?=20200218", + 20, + "che_200130_ds2m", + 27, + [ + "chief:11", + "hall:betgold", + "hall:betrate", + "hall:betwin", + "hall:betwingold", + "hall:dedication", + "hall:dex5", + "hall:experience", + "hall:killcrew", + "hall:killrate", + "hall:tlrate", + "hall:winrate" + ] + ], + [ + "【20기】Crow", + 84, + 10, + 79, + "che_event_집중", + [ + 126408, + 60376, + 55452, + 852899, + 49764 + ], + 1, + "44d980a.png?=20200130", + 20, + "che_200130_ds2m", + 28, + [ + "hall:dex1", + "hall:dex4", + "hall:dex5" + ] + ], + [ + "【20기】병리학적자세", + 76, + 10, + 88, + "che_event_귀병", + [ + 79534, + 68624, + 59571, + 1156513, + 49205 + ], + 1, + "3679089.jpg?=20180629", + 20, + "che_200130_ds2m", + 29, + [ + "chief:5", + "hall:dedication", + "hall:dex3", + "hall:dex4", + "hall:dex5", + "hall:experience", + "hall:killcrew", + "hall:killnum", + "hall:killrate", + "hall:ttrate", + "hall:warnum" + ] + ], + [ + "【20기】이초홍", + 80, + 83, + 10, + "che_event_견고", + [ + 117853, + 925037, + 44641, + 215616, + 25081 + ], + 1, + "670e1e3.jpg?=20200130", + 20, + "che_200130_ds2m", + 30, + [ + "hall:dex1", + "hall:dex2", + "hall:killcrew", + "hall:killnum", + "hall:tprate", + "hall:warnum" + ] + ], + [ + "【20기】레다", + 85, + 10, + 77, + "che_event_의술", + [ + 93401, + 45647, + 31469, + 631498, + 50236 + ], + 1, + "cf762d0.jpg?=20200130", + 20, + "che_200130_ds2m", + 31, + [ + "chief:7", + "hall:dedication", + "hall:dex1", + "hall:dex5", + "hall:tlrate" + ] + ], + [ + "【20기】슬라임", + 85, + 11, + 76, + "che_event_신산", + [ + 42817, + 45770, + 28685, + 298605, + 6343 + ], + 0, + "default.jpg", + 20, + "che_200130_ds2m", + 32, + [ + "hall:tlrate", + "hall:ttrate" + ] + ], + [ + "【20기】박일아", + 76, + 11, + 88, + "che_event_환술", + [ + 72117, + 80050, + 99539, + 1576763, + 70108 + ], + 1, + "8608979.gif?=20191024", + 20, + "che_200130_ds2m", + 33, + [ + "hall:dex2", + "hall:dex3", + "hall:dex4", + "hall:dex5", + "hall:experience", + "hall:killcrew", + "hall:killnum", + "hall:killrate", + "hall:warnum", + "hall:winrate" + ] + ], + [ + "【20기】료우기시키", + 90, + 75, + 10, + "che_event_척사", + [ + 74465, + 507148, + 24784, + 184921, + 21846 + ], + 1, + "559083f.jpg?=20190905", + 20, + "che_200130_ds2m", + 34, + [ + "chief:6", + "hall:dedication", + "hall:dex2", + "hall:experience", + "hall:tlrate", + "hall:tprate", + "hall:ttrate" + ] + ], + [ + "【20기】평민킬러", + 73, + 10, + 89, + "che_event_집중", + [ + 63098, + 43476, + 29417, + 844603, + 47081 + ], + 1, + "fb23a32.jpg?=20190904", + 20, + "che_200130_ds2m", + 36, + [ + "hall:dex4", + "hall:dex5", + "hall:killrate", + "hall:tirate", + "hall:winrate" + ] + ], + [ + "【20기】랜덤박스", + 84, + 80, + 10, + "che_event_견고", + [ + 669433, + 26630, + 39784, + 28854, + 23232 + ], + 1, + "b00a07b.gif?=20200130", + 20, + "che_200130_ds2m", + 37, + [ + "hall:dex1", + "hall:firenum", + "hall:tprate" + ] + ], + [ + "【20기】ㅁㄴㅇ", + 71, + 11, + 90, + "che_event_환술", + [ + 28425, + 49919, + 43282, + 379771, + 27489 + ], + 1, + "99e4505.jpg?=20200110", + 20, + "che_200130_ds2m", + 38, + [ + "hall:tirate" + ] + ], + [ + "【20기】치카", + 88, + 75, + 11, + "che_event_견고", + [ + 59691, + 412283, + 20674, + 113450, + 10538 + ], + 1, + "890b253.jpg?=20191024", + 20, + "che_200130_ds2m", + 39, + [ + "hall:dedication", + "hall:dex2", + "hall:tlrate", + "hall:ttrate" + ] + ], + [ + "【20기】윤세리", + 73, + 10, + 87, + "che_event_신중", + [ + 63220, + 65027, + 50981, + 570634, + 40325 + ], + 1, + "7753703.png?=20200131", + 20, + "che_200130_ds2m", + 40, + [ + "hall:tirate" + ] + ], + [ + "【20기】아유", + 76, + 10, + 87, + "che_event_집중", + [ + 61104, + 57942, + 56480, + 828942, + 26841 + ], + 1, + "ba186bf.gif?=20181220", + 20, + "che_200130_ds2m", + 41, + [ + "hall:dex4", + "hall:tirate", + "hall:ttrate" + ] + ], + [ + "【20기】ㅇㄷ", + 75, + 88, + 10, + "che_event_견고", + [ + 38610, + 110956, + 783518, + 158714, + 35048 + ], + 0, + "default.jpg", + 20, + "che_200130_ds2m", + 42, + [ + "hall:dex2", + "hall:dex3", + "hall:firenum", + "hall:killrate", + "hall:tprate", + "hall:winrate" + ] + ], + [ + "【20기】개미호랑이", + 90, + 10, + 68, + "che_event_징병", + [ + 24005, + 37186, + 41993, + 87944, + 134797 + ], + 1, + "6ee69e8.jpg?=20191227", + 20, + "che_200130_ds2m", + 43, + [ + "hall:dex5", + "hall:tlrate" + ] + ], + [ + "【20기】나데코", + 74, + 89, + 10, + "che_event_견고", + [ + 516777, + 18931, + 45398, + 135108, + 14663 + ], + 1, + "9705097.jpg?=20191001", + 20, + "che_200130_ds2m", + 45, + [ + "hall:dex1", + "hall:tprate" + ] + ], + [ + "【20기】펭수", + 10, + 70, + 92, + "che_event_척사", + [ + 0, + 0, + 0, + 0, + 0 + ], + 1, + "b1807bf.png?=20191221", + 20, + "che_200130_ds2m", + 59, + [ + "hall:dedication", + "hall:tirate", + "hall:tprate" + ] + ], + [ + "【20기】보라돌이", + 10, + 71, + 89, + "che_event_귀병", + [ + 0, + 0, + 0, + 0, + 0 + ], + 0, + "default.jpg", + 20, + "che_200130_ds2m", + 65, + [ + "hall:tirate", + "hall:tprate" + ] + ], + [ + "【20기】くま", + 79, + 82, + 10, + "che_event_견고", + [ + 134416, + 872336, + 31536, + 176686, + 39790 + ], + 1, + "770f53.jpg?=20190718", + 20, + "che_200130_ds2m", + 78, + [ + "chief:10", + "hall:dedication", + "hall:dex1", + "hall:dex2", + "hall:tprate" + ] + ], + [ + "【20기】죽은 사람", + 10, + 69, + 86, + "che_event_신산", + [ + 0, + 0, + 0, + 0, + 0 + ], + 0, + "default.jpg", + 20, + "che_200130_ds2m", + 286, + [ + "hall:firenum" + ] + ], + [ + "【20기】asdf", + 10, + 10, + 85, + "che_event_신산", + [ + 0, + 0, + 0, + 0, + 0 + ], + 0, + "default.jpg", + 20, + "che_200130_ds2m", + 423, + [ + "hall:firenum" + ] + ], + [ + "【21기】평민킬러", + 77, + 81, + 10, + "che_event_무쌍", + [ + 598943, + 23647, + 54300, + 175331, + 24829 + ], + 1, + "fb23a32.jpg?=20190904", + 21, + "che_200305_nMCL", + 4, + [ + "hall:dex1", + "hall:dex3", + "hall:tlrate", + "hall:tprate", + "hall:ttrate" + ] + ], + [ + "【21기】차비씨", + 71, + 10, + 86, + "che_event_저격", + [ + 48941, + 44962, + 36968, + 543977, + 34113 + ], + 1, + "7f3203a.jpg?=20200302", + 21, + "che_200305_nMCL", + 5, + [ + "hall:dex1", + "hall:dex4", + "hall:dex5" + ] + ], + [ + "【21기】독구", + 68, + 11, + 83, + "che_event_신산", + [ + 746, + 15118, + 7000, + 229242, + 20329 + ], + 1, + "ac701b0.jpg?=20180625", + 21, + "che_200305_nMCL", + 6, + [ + "hall:killrate" + ] + ], + [ + "【21기】갈근", + 11, + 67, + 91, + "che_event_귀병", + [ + 0, + 0, + 0, + 0, + 0 + ], + 0, + "default.jpg", + 21, + "che_200305_nMCL", + 9, + [ + "hall:dedication", + "hall:tirate", + "hall:ttrate" + ] + ], + [ + "【21기】Hide_D", + 73, + 10, + 86, + "che_event_집중", + [ + 18327, + 18100, + 21069, + 746536, + 27042 + ], + 1, + "9f0a2a8.png?=20200106", + 21, + "che_200305_nMCL", + 10, + [ + "chief:7", + "hall:dex4", + "hall:killcrew", + "hall:killnum", + "hall:killrate", + "hall:tirate", + "hall:warnum", + "hall:winrate" + ] + ], + [ + "【21기】청랑구", + 72, + 86, + 10, + "che_event_격노", + [ + 36241, + 67702, + 469047, + 91809, + 38419 + ], + 1, + "d6ebfb8.jpg?=20200305", + 21, + "che_200305_nMCL", + 11, + [ + "hall:dex3", + "hall:dex5", + "hall:experience", + "hall:tprate", + "hall:ttrate" + ] + ], + [ + "【21기】엘사", + 72, + 86, + 10, + "che_event_징병", + [ + 25913, + 336804, + 10527, + 50218, + 29056 + ], + 1, + "45d0270.jpg?=20200305", + 21, + "che_200305_nMCL", + 13, + [ + "hall:betgold", + "hall:betrate", + "hall:betwin", + "hall:betwingold", + "hall:dex2", + "hall:tprate" + ] + ], + [ + "【21기】킹구", + 89, + 69, + 10, + "che_event_척사", + [ + 45029, + 715848, + 14603, + 30270, + 26022 + ], + 1, + "fb3c625.gif?=20190428", + 21, + "che_200305_nMCL", + 17, + [ + "hall:dex2", + "hall:tlrate", + "hall:warnum" + ] + ], + [ + "【21기】두꺼비", + 87, + 69, + 10, + "che_event_견고", + [ + 467683, + 20432, + 46133, + 122117, + 27681 + ], + 1, + "cc0eb9d.jpg?=20200305", + 21, + "che_200305_nMCL", + 18, + [ + "hall:dex1", + "hall:dex3", + "hall:experience", + "hall:killnum", + "hall:killrate", + "hall:tlrate", + "hall:winrate" + ] + ], + [ + "【21기】KF94", + 73, + 84, + 10, + "che_event_저격", + [ + 59787, + 635335, + 34870, + 117677, + 38682 + ], + 1, + "577e1ee.png?=20200305", + 21, + "che_200305_nMCL", + 19, + [ + "chief:6", + "hall:dex1", + "hall:dex2", + "hall:dex5", + "hall:killcrew", + "hall:killnum", + "hall:tprate", + "hall:warnum" + ] + ], + [ + "【21기】마티아스", + 74, + 85, + 10, + "che_event_돌격", + [ + 55552, + 621174, + 9929, + 183007, + 19129 + ], + 1, + "acb1a64.jpg?=20200305", + 21, + "che_200305_nMCL", + 20, + [ + "hall:dex1", + "hall:dex2", + "hall:killcrew", + "hall:killnum", + "hall:tprate", + "hall:ttrate", + "hall:warnum", + "hall:winrate" + ] + ], + [ + "【21기】병리학적자세", + 71, + 13, + 85, + "che_event_격노", + [ + 49347, + 69493, + 29432, + 577911, + 35546 + ], + 1, + "3679089.jpg?=20180629", + 21, + "che_200305_nMCL", + 21, + [ + "hall:dex1", + "hall:dex2", + "hall:dex4", + "hall:dex5", + "hall:firenum" + ] + ], + [ + "【21기】박일아", + 74, + 86, + 10, + "che_event_돌격", + [ + 1052480, + 17654, + 15193, + 20597, + 18727 + ], + 1, + "8608979.gif?=20191024", + 21, + "che_200305_nMCL", + 22, + [ + "hall:dedication", + "hall:dex1", + "hall:experience", + "hall:killcrew", + "hall:killnum", + "hall:killrate", + "hall:tprate", + "hall:warnum", + "hall:winrate" + ] + ], + [ + "【21기】길냥이", + 88, + 70, + 10, + "che_event_돌격", + [ + 58332, + 1147833, + 29817, + 49163, + 73191 + ], + 1, + "eed811e.jpg?=20200305", + 21, + "che_200305_nMCL", + 23, + [ + "chief:12", + "hall:betgold", + "hall:dedication", + "hall:dex1", + "hall:dex2", + "hall:dex5", + "hall:experience", + "hall:killcrew", + "hall:killnum", + "hall:tlrate", + "hall:warnum" + ] + ], + [ + "【21기】네반", + 73, + 10, + 83, + "che_event_징병", + [ + 28193, + 31215, + 29802, + 695096, + 22066 + ], + 1, + "74df23f.jpg?=20200314", + 21, + "che_200305_nMCL", + 24, + [ + "hall:dex4", + "hall:experience", + "hall:killcrew", + "hall:warnum" + ] + ], + [ + "【21기】천괴금", + 15, + 84, + 67, + "che_event_견고", + [ + 9781, + 44346, + 179944, + 28254, + 11020 + ], + 1, + "2b239af.png?=20190824", + 21, + "che_200305_nMCL", + 25, + [ + "chief:10", + "hall:dedication", + "hall:dex3", + "hall:firenum", + "hall:tprate" + ] + ], + [ + "【21기】카이스트", + 71, + 10, + 87, + "che_event_저격", + [ + 31142, + 60635, + 21934, + 454495, + 28863 + ], + 1, + "9361ef8.jpg?=20180907", + 21, + "che_200305_nMCL", + 27, + [ + "hall:tirate", + "hall:winrate" + ] + ], + [ + "【21기】료우기시키", + 84, + 71, + 10, + "che_event_무쌍", + [ + 61730, + 186941, + 2328, + 51745, + 24916 + ], + 1, + "559083f.jpg?=20190905", + 21, + "che_200305_nMCL", + 30, + [ + "hall:dex1", + "hall:dex2", + "hall:killrate", + "hall:tlrate", + "hall:ttrate" + ] + ], + [ + "【21기】개미호랑이", + 88, + 66, + 11, + "che_event_기병", + [ + 20770, + 93715, + 371211, + 111363, + 17549 + ], + 1, + "9e0429e.jpg?=20200313", + 21, + "che_200305_nMCL", + 32, + [ + "hall:dex2", + "hall:dex3", + "hall:tlrate" + ] + ], + [ + "【21기】연채홍", + 71, + 10, + 87, + "che_event_반계", + [ + 20796, + 46280, + 29340, + 308056, + 15651 + ], + 1, + "773556e.gif?=20190822", + 21, + "che_200305_nMCL", + 33, + [ + "hall:tirate" + ] + ], + [ + "【21기】보이루", + 72, + 10, + 86, + "che_event_환술", + [ + 34577, + 49924, + 38667, + 673301, + 52180 + ], + 1, + "a9b0507.jpg?=20200217", + 21, + "che_200305_nMCL", + 34, + [ + "chief:9", + "hall:dex3", + "hall:dex4", + "hall:dex5", + "hall:experience", + "hall:killcrew", + "hall:killnum", + "hall:killrate" + ] + ], + [ + "【21기】오리너구리", + 72, + 10, + 84, + "che_event_척사", + [ + 0, + 0, + 0, + 0, + 0 + ], + 1, + "2974f7c.jpg?=20200305", + 21, + "che_200305_nMCL", + 36, + [ + "hall:betgold", + "hall:betrate", + "hall:betwin", + "hall:betwingold" + ] + ], + [ + "【21기】피에스타", + 83, + 73, + 11, + "che_event_위압", + [ + 649019, + 50416, + 43493, + 129140, + 29805 + ], + 1, + "99cd27f.gif?=20190606", + 21, + "che_200305_nMCL", + 37, + [ + "chief:8", + "hall:dex1", + "hall:dex3", + "hall:killcrew", + "hall:killnum", + "hall:killrate", + "hall:tlrate", + "hall:warnum" + ] + ], + [ + "【21기】슬라임", + 83, + 10, + 75, + "che_event_환술", + [ + 46881, + 90041, + 38303, + 460956, + 16917 + ], + 1, + "2fd8b5.png?=20191222", + 21, + "che_200305_nMCL", + 38, + [ + "hall:dex2", + "hall:dex4", + "hall:tlrate" + ] + ], + [ + "【21기】두나", + 67, + 10, + 90, + "che_event_척사", + [ + 930, + 0, + 0, + 28807, + 10923 + ], + 1, + "bf0c572.png?=20181114", + 21, + "che_200305_nMCL", + 42, + [ + "hall:tirate", + "hall:ttrate" + ] + ], + [ + "【21기】박일도", + 66, + 16, + 85, + "che_event_격노", + [ + 17887, + 35636, + 18792, + 316640, + 25348 + ], + 0, + "default.jpg", + 21, + "che_200305_nMCL", + 44, + [ + "hall:ttrate", + "hall:winrate" + ] + ], + [ + "【21기】AP샤코", + 71, + 10, + 87, + "che_event_필살", + [ + 34077, + 41068, + 34664, + 509392, + 50481 + ], + 0, + "default.jpg", + 21, + "che_200305_nMCL", + 46, + [ + "hall:dedication", + "hall:dex4", + "hall:dex5", + "hall:experience" + ] + ], + [ + "【21기】임사영", + 71, + 10, + 86, + "che_event_집중", + [ + 38044, + 46007, + 22761, + 356390, + 61435 + ], + 1, + "7f9473e.gif?=20200211", + 21, + "che_200305_nMCL", + 48, + [ + "hall:dedication", + "hall:dex5", + "hall:experience", + "hall:killrate" + ] + ], + [ + "【21기】옵저버", + 18, + 65, + 84, + "che_event_신산", + [ + 0, + 0, + 0, + 0, + 0 + ], + 1, + "517c3e2.jpg?=20200306", + 21, + "che_200305_nMCL", + 49, + [ + "hall:dedication", + "hall:firenum" + ] + ], + [ + "【21기】ㅁㄴㅇㄹ", + 10, + 80, + 75, + "che_event_저격", + [ + 0, + 0, + 0, + 0, + 0 + ], + 0, + "default.jpg", + 21, + "che_200305_nMCL", + 53, + [ + "hall:firenum" + ] + ], + [ + "【21기】네프기어", + 85, + 67, + 12, + "che_event_무쌍", + [ + 8117, + 0, + 0, + 6212, + 0 + ], + 1, + "890b253.jpg?=20191024", + 21, + "che_200305_nMCL", + 54, + [ + "hall:tlrate" + ] + ], + [ + "【21기】쒸익쒸익", + 70, + 10, + 85, + "che_event_척사", + [ + 22360, + 73290, + 21091, + 433104, + 26204 + ], + 1, + "dbeeb0d.jpg?=20190620", + 21, + "che_200305_nMCL", + 55, + [ + "hall:dex2", + "hall:tirate" + ] + ], + [ + "【21기】돌아온너구리", + 72, + 11, + 87, + "che_event_반계", + [ + 16455, + 19708, + 23120, + 961863, + 25311 + ], + 1, + "b90cb6f.jpg?=20200307", + 21, + "che_200305_nMCL", + 56, + [ + "chief:11", + "hall:dedication", + "hall:dex4", + "hall:experience", + "hall:killcrew", + "hall:killnum", + "hall:tirate", + "hall:ttrate", + "hall:warnum", + "hall:winrate" + ] + ], + [ + "【21기】로리", + 73, + 10, + 86, + "che_event_집중", + [ + 10915, + 6830, + 14574, + 846843, + 40297 + ], + 1, + "50794a6.jpg?=20190923", + 21, + "che_200305_nMCL", + 57, + [ + "hall:dedication", + "hall:dex4", + "hall:dex5", + "hall:experience", + "hall:killcrew", + "hall:killnum", + "hall:killrate", + "hall:ttrate", + "hall:warnum", + "hall:winrate" + ] + ], + [ + "【21기】뉴턴", + 74, + 83, + 10, + "che_event_견고", + [ + 12269, + 12093, + 610061, + 15602, + 16881 + ], + 1, + "3d166a8.jpg?=20200313", + 21, + "che_200305_nMCL", + 58, + [ + "hall:dex3", + "hall:firenum", + "hall:tlrate", + "hall:winrate" + ] + ], + [ + "【21기】くま", + 70, + 10, + 85, + "che_event_귀병", + [ + 44813, + 44680, + 27564, + 545724, + 32703 + ], + 1, + "770f53.jpg?=20190718", + 21, + "che_200305_nMCL", + 65, + [ + "chief:5", + "hall:dex4" + ] + ], + [ + "【21기】정채연", + 69, + 83, + 10, + "che_event_견고", + [ + 11469, + 42765, + 298862, + 33741, + 33835 + ], + 1, + "9705097.jpg?=20191001", + 21, + "che_200305_nMCL", + 66, + [ + "hall:dex3", + "hall:dex5", + "hall:tprate" + ] + ], + [ + "【21기】카오스피닉스", + 68, + 10, + 85, + "che_event_신중", + [ + 9873, + 34390, + 16220, + 207908, + 6158 + ], + 1, + "7f80b2f.jpg?=20190715", + 21, + "che_200305_nMCL", + 67, + [ + "hall:tirate" + ] + ], + [ + "【21기】야까스 코만", + 65, + 11, + 85, + "che_event_척사", + [ + 8285, + 5841, + 3767, + 17893, + 21763 + ], + 0, + "default.jpg", + 21, + "che_200305_nMCL", + 98, + [ + "hall:killrate", + "hall:winrate" + ] + ], + [ + "【21기】가련", + 10, + 70, + 85, + "che_event_귀병", + [ + 0, + 0, + 0, + 0, + 0 + ], + 1, + "7baef1c.jpg?=20200308", + 21, + "che_200305_nMCL", + 120, + [ + "hall:tirate" + ] + ], + [ + "【21기】만샘", + 10, + 80, + 73, + "che_event_저격", + [ + 0, + 0, + 0, + 0, + 0 + ], + 1, + "4a206a1.jpg?=20181122", + 21, + "che_200305_nMCL", + 121, + [ + "hall:dedication" + ] + ], + [ + "【21기】내정만하고싶다", + 10, + 66, + 88, + "che_event_격노", + [ + 0, + 0, + 0, + 0, + 0 + ], + 0, + "default.jpg", + 21, + "che_200305_nMCL", + 138, + [ + "hall:betgold", + "hall:betwin", + "hall:betwingold", + "hall:tirate" + ] + ], + [ + "【21기】리무루", + 70, + 10, + 83, + "che_event_반계", + [ + 11891, + 64290, + 28360, + 221298, + 20815 + ], + 1, + "c40f9f7.jpg?=20200222", + 21, + "che_200305_nMCL", + 139, + [ + "hall:ttrate" + ] + ], + [ + "【21기】수장", + 70, + 82, + 10, + "che_event_위압", + [ + 17799, + 46820, + 253293, + 106371, + 8450 + ], + 1, + "190d7ff.jpg?=20200312", + 21, + "che_200305_nMCL", + 214, + [ + "hall:dex3", + "hall:tprate" + ] + ], + [ + "【21기】펭수", + 10, + 80, + 69, + "che_event_저격", + [ + 0, + 0, + 0, + 0, + 0 + ], + 1, + "b1807bf.png?=20191221", + 21, + "che_200305_nMCL", + 239, + [ + "hall:tprate" + ] + ], + [ + "【22기】이즈미 쿄카", + 71, + 10, + 83, + "che_event_집중", + [ + 35839, + 3927, + 32670, + 388117, + 43917 + ], + 1, + "51d4831.jpg?=20200408", + 22, + "che_200402_OdeY", + 4, + [ + "hall:dedication", + "hall:dex1", + "hall:dex4", + "hall:dex5", + "hall:experience", + "hall:killcrew", + "hall:killnum", + "hall:warnum" + ] + ], + [ + "【22기】미스티", + 67, + 10, + 86, + "che_event_귀병", + [ + 2543, + 3710, + 1574, + 43788, + 9446 + ], + 1, + "1aadcba.png?=20180908", + 22, + "che_200402_OdeY", + 8, + [ + "hall:killrate", + "hall:tirate", + "hall:winrate" + ] + ], + [ + "【22기】평민킬러", + 69, + 10, + 86, + "che_event_신산", + [ + 17249, + 10020, + 17188, + 244496, + 21336 + ], + 1, + "fb23a32.jpg?=20190904", + 22, + "che_200402_OdeY", + 9, + [ + "chief:11", + "hall:dedication", + "hall:dex4", + "hall:experience", + "hall:killnum", + "hall:killrate", + "hall:tirate", + "hall:ttrate", + "hall:winrate" + ] + ], + [ + "【22기】냐옹", + 69, + 84, + 10, + "che_event_견고", + [ + 930, + 118947, + 3147, + 40362, + 8218 + ], + 1, + "23ba519.jpg?=20190318", + 22, + "che_200402_OdeY", + 10, + [ + "hall:dex2", + "hall:tprate" + ] + ], + [ + "【22기】야근요정헹이", + 80, + 10, + 74, + "che_event_집중", + [ + 13108, + 15908, + 25246, + 187869, + 16219 + ], + 1, + "3db84f2.jpg?=20200405", + 22, + "che_200402_OdeY", + 14, + [ + "chief:7", + "hall:betwin", + "hall:betwingold", + "hall:tlrate", + "hall:winrate" + ] + ], + [ + "【22기】아키라의노예", + 70, + 10, + 85, + "che_event_척사", + [ + 7927, + 3398, + 11368, + 185220, + 10395 + ], + 1, + "773556e.gif?=20190822", + 22, + "che_200402_OdeY", + 15, + [ + "chief:9", + "hall:betgold", + "hall:dedication", + "hall:experience", + "hall:killrate", + "hall:ttrate" + ] + ], + [ + "【22기】수장", + 82, + 71, + 12, + "che_event_격노", + [ + 21861, + 209481, + 4810, + 20593, + 40147 + ], + 1, + "190d7ff.jpg?=20200312", + 22, + "che_200402_OdeY", + 19, + [ + "chief:8", + "hall:betgold", + "hall:dex2", + "hall:dex5", + "hall:killrate", + "hall:tlrate" + ] + ], + [ + "【22기】이드", + 71, + 83, + 10, + "che_event_위압", + [ + 93925, + 127735, + 47554, + 43226, + 16949 + ], + 1, + "ee26023.jpg?=20200402", + 22, + "che_200402_OdeY", + 20, + [ + "hall:dex1", + "hall:dex2" + ] + ], + [ + "【22기】임사영", + 69, + 11, + 86, + "che_event_의술", + [ + 2685, + 5472, + 22873, + 138521, + 21509 + ], + 1, + "7f9473e.gif?=20200211", + 22, + "che_200402_OdeY", + 22, + [ + "hall:dedication", + "hall:tirate", + "hall:ttrate" + ] + ], + [ + "【22기】료우기시키", + 81, + 70, + 10, + "che_event_필살", + [ + 37897, + 53513, + 3116, + 23685, + 7194 + ], + 1, + "559083f.jpg?=20190905", + 22, + "che_200402_OdeY", + 23, + [ + "hall:dex1", + "hall:dex2", + "hall:tlrate" + ] + ], + [ + "【22기】너굴", + 69, + 10, + 85, + "che_event_신중", + [ + 16178, + 7887, + 20527, + 160398, + 32499 + ], + 1, + "66117f6.jpg?=20200326", + 22, + "che_200402_OdeY", + 25, + [ + "hall:dedication", + "hall:tirate" + ] + ], + [ + "【22기】카이스트", + 71, + 10, + 83, + "che_event_집중", + [ + 15916, + 3103, + 52042, + 338498, + 39722 + ], + 1, + "9361ef8.jpg?=20180907", + 22, + "che_200402_OdeY", + 26, + [ + "hall:dex4", + "hall:dex5", + "hall:killcrew", + "hall:killnum", + "hall:warnum", + "hall:winrate" + ] + ], + [ + "【22기】아마자라시", + 12, + 81, + 70, + "che_event_보병", + [ + 0, + 0, + 0, + 0, + 0 + ], + 1, + "6a10015.jpg?=20200402", + 22, + "che_200402_OdeY", + 27, + [ + "hall:firenum", + "hall:tprate", + "hall:ttrate" + ] + ], + [ + "【22기】죄악의 안젤리카", + 70, + 83, + 10, + "che_event_돌격", + [ + 79, + 12424, + 248474, + 42158, + 29102 + ], + 1, + "7196fd9.jpg?=20200402", + 22, + "che_200402_OdeY", + 28, + [ + "chief:12", + "hall:betgold", + "hall:dedication", + "hall:dex3", + "hall:experience", + "hall:killrate", + "hall:tprate" + ] + ], + [ + "【22기】킹구", + 68, + 10, + 85, + "che_event_징병", + [ + 9469, + 23365, + 15061, + 213345, + 18004 + ], + 1, + "fb3c625.gif?=20190428", + 22, + "che_200402_OdeY", + 30, + [ + "hall:dex4", + "hall:tirate" + ] + ], + [ + "【22기】로비", + 10, + 67, + 87, + "che_event_귀병", + [ + 0, + 0, + 0, + 0, + 0 + ], + 1, + "708a981.png?=20200402", + 22, + "che_200402_OdeY", + 31, + [ + "hall:tirate" + ] + ], + [ + "【22기】Hide_D", + 70, + 10, + 85, + "che_event_집중", + [ + 74756, + 45847, + 48208, + 571922, + 25386 + ], + 1, + "9f0a2a8.png?=20200106", + 22, + "che_200402_OdeY", + 32, + [ + "hall:dex1", + "hall:dex2", + "hall:dex4", + "hall:killcrew", + "hall:killnum", + "hall:warnum", + "hall:winrate" + ] + ], + [ + "【22기】트리니티", + 85, + 68, + 10, + "che_event_무쌍", + [ + 802, + 23235, + 144392, + 34851, + 93154 + ], + 0, + "default.jpg", + 22, + "che_200402_OdeY", + 33, + [ + "hall:dex3", + "hall:dex5", + "hall:experience", + "hall:killrate", + "hall:tlrate" + ] + ], + [ + "【22기】사스케", + 85, + 70, + 10, + "che_event_의술", + [ + 441684, + 12578, + 75704, + 83916, + 44226 + ], + 1, + "61e6754.jpg?=20200402", + 22, + "che_200402_OdeY", + 36, + [ + "hall:betgold", + "hall:dex1", + "hall:dex5", + "hall:experience", + "hall:killcrew", + "hall:killnum", + "hall:ttrate", + "hall:warnum" + ] + ], + [ + "【22기】김나영", + 69, + 86, + 10, + "che_event_필살", + [ + 11974, + 40080, + 343685, + 89224, + 15880 + ], + 1, + "c90a3d4.jpg?=20190905", + 22, + "che_200402_OdeY", + 37, + [ + "hall:dex2", + "hall:dex3", + "hall:firenum", + "hall:killcrew", + "hall:killnum", + "hall:tprate", + "hall:warnum", + "hall:winrate" + ] + ], + [ + "【22기】나타", + 86, + 68, + 10, + "che_event_필살", + [ + 0, + 7735, + 0, + 8889, + 395546 + ], + 1, + "5930c00.jpg?=20200416", + 22, + "che_200402_OdeY", + 38, + [ + "hall:betgold", + "hall:betrate", + "hall:betwin", + "hall:betwingold", + "hall:dex5", + "hall:experience", + "hall:killcrew", + "hall:killrate", + "hall:tlrate", + "hall:winrate" + ] + ], + [ + "【22기】くま", + 85, + 70, + 10, + "che_event_견고", + [ + 32539, + 42900, + 489119, + 132317, + 53684 + ], + 1, + "770f53.jpg?=20190718", + 22, + "che_200402_OdeY", + 39, + [ + "hall:betgold", + "hall:betrate", + "hall:betwin", + "hall:betwingold", + "hall:dedication", + "hall:dex1", + "hall:dex2", + "hall:dex3", + "hall:dex5", + "hall:experience", + "hall:killcrew", + "hall:killnum", + "hall:tlrate", + "hall:warnum" + ] + ], + [ + "【22기】독구", + 67, + 10, + 86, + "che_event_신산", + [ + 24010, + 16507, + 15159, + 197802, + 24127 + ], + 1, + "f6d2724.png?=20200405", + 22, + "che_200402_OdeY", + 40, + [ + "hall:dex1", + "hall:dex4", + "hall:killrate", + "hall:tirate" + ] + ], + [ + "【22기】천괴금", + 10, + 82, + 71, + "che_event_돌격", + [ + 0, + 0, + 0, + 0, + 0 + ], + 1, + "2b239af.png?=20190824", + 22, + "che_200402_OdeY", + 41, + [ + "chief:6", + "hall:dedication", + "hall:tprate" + ] + ], + [ + "【22기】나루토", + 69, + 10, + 84, + "che_event_신산", + [ + 14556, + 21833, + 49278, + 320953, + 52099 + ], + 1, + "20daf9a.jpg?=20200412", + 22, + "che_200402_OdeY", + 42, + [ + "hall:betgold", + "hall:dex4", + "hall:dex5", + "hall:killcrew", + "hall:tirate", + "hall:warnum" + ] + ], + [ + "【22기】마을주민", + 72, + 82, + 10, + "che_event_견고", + [ + 18109, + 5167, + 217098, + 41508, + 16615 + ], + 1, + "70c3a0c.jpg?=20200402", + 22, + "che_200402_OdeY", + 43, + [ + "chief:10", + "hall:betgold", + "hall:dex3", + "hall:experience", + "hall:killrate", + "hall:tprate" + ] + ], + [ + "【22기】광순이", + 69, + 10, + 84, + "che_event_환술", + [ + 16081, + 27260, + 31971, + 304663, + 42187 + ], + 1, + "ec3db27.gif?=20200402", + 22, + "che_200402_OdeY", + 44, + [ + "hall:dex4", + "hall:dex5" + ] + ], + [ + "【22기】외심장", + 68, + 10, + 86, + "che_event_신산", + [ + 6561, + 18117, + 13756, + 172785, + 11193 + ], + 1, + "36110cd.jpg?=20180826", + 22, + "che_200402_OdeY", + 45, + [ + "hall:firenum" + ] + ], + [ + "【22기】박일아", + 11, + 79, + 76, + "che_event_견고", + [ + 0, + 0, + 0, + 0, + 0 + ], + 1, + "8608979.gif?=20191024", + 22, + "che_200402_OdeY", + 46, + [ + "hall:experience", + "hall:tprate", + "hall:ttrate" + ] + ], + [ + "【22기】만샘", + 71, + 10, + 83, + "che_event_환술", + [ + 44529, + 32519, + 18408, + 392858, + 28775 + ], + 1, + "4a206a1.jpg?=20181122", + 22, + "che_200402_OdeY", + 47, + [ + "chief:5", + "hall:betgold", + "hall:dex1", + "hall:dex2", + "hall:dex4", + "hall:killcrew", + "hall:killnum", + "hall:ttrate", + "hall:warnum" + ] + ], + [ + "【22기】개미호랑이렐리아", + 86, + 66, + 10, + "che_event_격노", + [ + 14878, + 23905, + 151410, + 56369, + 5684 + ], + 1, + "9e0429e.jpg?=20200313", + 22, + "che_200402_OdeY", + 48, + [ + "hall:dex3", + "hall:tlrate", + "hall:ttrate" + ] + ], + [ + "【22기】피에스타", + 81, + 73, + 10, + "che_event_무쌍", + [ + 5251, + 18155, + 215837, + 45048, + 6918 + ], + 1, + "99cd27f.gif?=20190606", + 22, + "che_200402_OdeY", + 49, + [ + "hall:dex3", + "hall:tlrate", + "hall:ttrate", + "hall:winrate" + ] + ], + [ + "【22기】호랑이사람", + 10, + 65, + 89, + "che_event_척사", + [ + 0, + 0, + 0, + 0, + 0 + ], + 1, + "ac4c5ec.jpg?=20200404", + 22, + "che_200402_OdeY", + 50, + [ + "hall:dedication", + "hall:tirate" + ] + ], + [ + "【22기】KOSPI", + 71, + 84, + 10, + "che_event_척사", + [ + 382638, + 19921, + 31751, + 99042, + 14992 + ], + 0, + "default.jpg", + 22, + "che_200402_OdeY", + 51, + [ + "hall:dedication", + "hall:dex1", + "hall:killcrew", + "hall:killnum", + "hall:tprate", + "hall:warnum" + ] + ], + [ + "【22기】쿠쿠쿠쿠쿠쿠쿠쿠쿠", + 10, + 71, + 80, + "che_event_신중", + [ + 0, + 0, + 0, + 0, + 0 + ], + 1, + "9bb1f36.jpg?=20200402", + 22, + "che_200402_OdeY", + 52, + [ + "hall:firenum" + ] + ], + [ + "【22기】아라한", + 80, + 73, + 11, + "che_event_필살", + [ + 20260, + 32461, + 231775, + 27320, + 17654 + ], + 1, + "a66f117.jpg?=20200402", + 22, + "che_200402_OdeY", + 53, + [ + "hall:betgold", + "hall:betrate", + "hall:betwin", + "hall:betwingold", + "hall:dex2", + "hall:dex3", + "hall:killnum", + "hall:tlrate", + "hall:winrate" + ] + ], + [ + "【22기】슬라임", + 70, + 10, + 83, + "che_event_신중", + [ + 46096, + 20731, + 31052, + 284182, + 10074 + ], + 1, + "c40f9f7.jpg?=20200222", + 22, + "che_200402_OdeY", + 54, + [ + "hall:dex1", + "hall:dex4", + "hall:ttrate", + "hall:warnum" + ] + ], + [ + "【22기】뼈다구", + 67, + 10, + 84, + "che_event_척사", + [ + 2311, + 11660, + 18063, + 100074, + 10072 + ], + 1, + "3a5cefc.jpg?=20200305", + 22, + "che_200402_OdeY", + 58, + [ + "hall:winrate" + ] + ], + [ + "【22기】리에", + 88, + 10, + 11, + "che_event_저격", + [ + 14405, + 3558, + 16877, + 43867, + 151156 + ], + 0, + "default.jpg", + 22, + "che_200402_OdeY", + 63, + [ + "hall:dex5", + "hall:tlrate" + ] + ], + [ + "【22기】q1", + 10, + 71, + 80, + "che_event_신산", + [ + 0, + 0, + 0, + 0, + 0 + ], + 0, + "default.jpg", + 22, + "che_200402_OdeY", + 79, + [ + "hall:firenum" + ] + ], + [ + "【22기】나만마딜없어", + 68, + 10, + 84, + "che_event_신중", + [ + 1992, + 16326, + 15588, + 89107, + 5832 + ], + 0, + "default.jpg", + 22, + "che_200402_OdeY", + 190, + [ + "hall:tirate" + ] + ], + [ + "【22기】김갑환", + 79, + 72, + 10, + "che_event_돌격", + [ + 5165, + 6397, + 113326, + 39268, + 7284 + ], + 1, + "dcff9fd.jpg?=20180823", + 22, + "che_200402_OdeY", + 207, + [ + "hall:dex3" + ] + ], + [ + "【22기】로리", + 10, + 78, + 69, + "che_event_견고", + [ + 0, + 0, + 0, + 0, + 0 + ], + 1, + "50794a6.jpg?=20190923", + 22, + "che_200402_OdeY", + 209, + [ + "hall:firenum" + ] + ], + [ + "【22기】시즈", + 67, + 83, + 10, + "che_event_궁병", + [ + 0, + 172722, + 19227, + 22465, + 10309 + ], + 0, + "default.jpg", + 22, + "che_200402_OdeY", + 217, + [ + "hall:dex2", + "hall:killrate", + "hall:tprate" + ] + ], + [ + "【22기】크류", + 68, + 82, + 10, + "che_event_필살", + [ + 14635, + 573, + 0, + 3749, + 1853 + ], + 0, + "default.jpg", + 22, + "che_200402_OdeY", + 219, + [ + "hall:tprate" + ] + ], + [ + "【22기】천조장호무새", + 77, + 69, + 12, + "che_event_기병", + [ + 11516, + 7667, + 130823, + 14884, + 4184 + ], + 1, + "3649856.png?=20190815", + 22, + "che_200402_OdeY", + 253, + [ + "hall:dex3" + ] + ], + [ + "【23기】프린세스 라라", + 69, + 10, + 85, + "che_event_척사", + [ + 49749, + 16153, + 31945, + 312008, + 17412 + ], + 1, + "74c06d5.jpg?=20200426", + 23, + "che_200423_egv4", + 3, + [ + "hall:dex1", + "hall:dex4" + ] + ], + [ + "【23기】문중", + 83, + 69, + 10, + "che_event_징병", + [ + 11130, + 44446, + 55949, + 45412, + 289305 + ], + 1, + "47d367b.jpg?=20200423", + 23, + "che_200423_egv4", + 4, + [ + "hall:dedication", + "hall:dex5", + "hall:tlrate", + "hall:ttrate" + ] + ], + [ + "【23기】데보라", + 85, + 68, + 10, + "che_event_견고", + [ + 47724, + 452452, + 29458, + 79232, + 33047 + ], + 1, + "799e90c.jpg?=20200423", + 23, + "che_200423_egv4", + 7, + [ + "hall:dex1", + "hall:dex2", + "hall:dex5", + "hall:experience", + "hall:killcrew", + "hall:killnum", + "hall:killrate", + "hall:tlrate", + "hall:warnum" + ] + ], + [ + "【23기】로리", + 69, + 11, + 83, + "che_event_격노", + [ + 25181, + 28815, + 30911, + 302016, + 30085 + ], + 1, + "50794a6.jpg?=20190923", + 23, + "che_200423_egv4", + 8, + [ + "hall:tirate", + "hall:ttrate" + ] + ], + [ + "【23기】칸나", + 83, + 71, + 10, + "che_event_견고", + [ + 44524, + 253186, + 14678, + 39692, + 19215 + ], + 0, + "default.jpg", + 23, + "che_200423_egv4", + 9, + [ + "hall:dex1", + "hall:dex2", + "hall:firenum", + "hall:killrate", + "hall:tlrate" + ] + ], + [ + "【23기】펭수병", + 71, + 83, + 10, + "che_event_의술", + [ + 63310, + 83480, + 367912, + 71061, + 24302 + ], + 1, + "c364f77.png?=20200423", + 23, + "che_200423_egv4", + 10, + [ + "hall:dex1", + "hall:dex2", + "hall:dex3", + "hall:killcrew", + "hall:tprate", + "hall:warnum" + ] + ], + [ + "【23기】수장", + 82, + 70, + 10, + "che_event_의술", + [ + 362536, + 15026, + 65653, + 105385, + 20234 + ], + 1, + "190d7ff.jpg?=20200312", + 23, + "che_200423_egv4", + 12, + [ + "chief:8", + "hall:dex1", + "hall:dex3", + "hall:experience", + "hall:killcrew", + "hall:tlrate", + "hall:warnum" + ] + ], + [ + "【23기】임사영", + 84, + 68, + 10, + "che_event_징병", + [ + 185808, + 38525, + 79234, + 47655, + 8275 + ], + 1, + "7f9473e.gif?=20200211", + 23, + "che_200423_egv4", + 13, + [ + "hall:dex1", + "hall:dex3", + "hall:tlrate" + ] + ], + [ + "【23기】네티", + 83, + 70, + 11, + "che_event_돌격", + [ + 20840, + 62661, + 437362, + 63003, + 30100 + ], + 1, + "ac91b73.jpg?=20200423", + 23, + "che_200423_egv4", + 14, + [ + "hall:dex2", + "hall:dex3", + "hall:experience", + "hall:killcrew", + "hall:killnum", + "hall:tlrate", + "hall:warnum", + "hall:winrate" + ] + ], + [ + "【23기】무공요정", + 71, + 10, + 82, + "che_event_저격", + [ + 17338, + 4521, + 34150, + 267043, + 36848 + ], + 1, + "a6cba65.jpg?=20200426", + 23, + "che_200423_egv4", + 15, + [ + "hall:dex5", + "hall:tirate" + ] + ], + [ + "【23기】Hide_D", + 71, + 11, + 84, + "che_event_신산", + [ + 13563, + 53427, + 60592, + 507150, + 75293 + ], + 1, + "9f0a2a8.png?=20200106", + 23, + "che_200423_egv4", + 18, + [ + "hall:dex2", + "hall:dex4", + "hall:dex5", + "hall:killcrew", + "hall:killnum", + "hall:tirate", + "hall:warnum" + ] + ], + [ + "【23기】smile", + 70, + 10, + 84, + "che_event_징병", + [ + 19418, + 26454, + 44611, + 337945, + 22507 + ], + 0, + "default.jpg", + 23, + "che_200423_egv4", + 20, + [ + "hall:dedication", + "hall:dex4" + ] + ], + [ + "【23기】박일아", + 10, + 68, + 86, + "che_event_귀병", + [ + 0, + 0, + 0, + 0, + 0 + ], + 1, + "8608979.gif?=20191024", + 23, + "che_200423_egv4", + 21, + [ + "hall:dedication", + "hall:firenum", + "hall:tirate" + ] + ], + [ + "【23기】평민킬러", + 71, + 84, + 10, + "che_event_견고", + [ + 463509, + 20230, + 45383, + 94311, + 26646 + ], + 1, + "fb23a32.jpg?=20190904", + 23, + "che_200423_egv4", + 22, + [ + "chief:11", + "hall:dex1", + "hall:experience", + "hall:killcrew", + "hall:killnum", + "hall:killrate", + "hall:tprate", + "hall:warnum", + "hall:winrate" + ] + ], + [ + "【23기】카이스트", + 71, + 10, + 84, + "che_event_징병", + [ + 39400, + 41549, + 62758, + 438213, + 19053 + ], + 1, + "9361ef8.jpg?=20180907", + 23, + "che_200423_egv4", + 23, + [ + "hall:dex1", + "hall:dex4", + "hall:experience", + "hall:killcrew", + "hall:killnum", + "hall:warnum", + "hall:winrate" + ] + ], + [ + "【23기】돌아온너구리", + 71, + 10, + 84, + "che_event_환술", + [ + 28251, + 37813, + 40168, + 489498, + 18502 + ], + 0, + "default.jpg", + 23, + "che_200423_egv4", + 24, + [ + "hall:dex4", + "hall:experience", + "hall:killcrew", + "hall:killnum", + "hall:killrate", + "hall:ttrate", + "hall:warnum", + "hall:winrate" + ] + ], + [ + "【23기】돌격", + 85, + 67, + 11, + "che_event_견고", + [ + 30917, + 43421, + 478831, + 118418, + 31757 + ], + 0, + "default.jpg", + 23, + "che_200423_egv4", + 25, + [ + "chief:6", + "hall:dedication", + "hall:dex3", + "hall:experience", + "hall:killcrew", + "hall:killnum", + "hall:killrate", + "hall:tlrate", + "hall:warnum", + "hall:winrate" + ] + ], + [ + "【23기】갈근", + 10, + 68, + 87, + "che_event_필살", + [ + 0, + 0, + 0, + 0, + 0 + ], + 0, + "default.jpg", + 23, + "che_200423_egv4", + 26, + [ + "hall:dedication", + "hall:firenum", + "hall:tirate" + ] + ], + [ + "【23기】프로야구개막한다", + 70, + 11, + 82, + "che_event_반계", + [ + 11776, + 0, + 15153, + 109867, + 19282 + ], + 1, + "ff65fbb.png?=20200423", + 23, + "che_200423_egv4", + 27, + [ + "hall:killrate", + "hall:ttrate", + "hall:winrate" + ] + ], + [ + "【23기】메리레녹스", + 15, + 82, + 67, + "che_event_필살", + [ + 2114, + 15028, + 125743, + 36260, + 4538 + ], + 1, + "cf65bb3.jpg?=20200418", + 23, + "che_200423_egv4", + 31, + [ + "chief:9", + "hall:dedication", + "hall:dex3", + "hall:tprate", + "hall:ttrate" + ] + ], + [ + "【23기】톱니바퀴", + 10, + 65, + 89, + "che_event_환술", + [ + 0, + 0, + 0, + 0, + 0 + ], + 0, + "default.jpg", + 23, + "che_200423_egv4", + 32, + [ + "hall:dedication", + "hall:tirate" + ] + ], + [ + "【23기】철별", + 70, + 10, + 83, + "che_event_집중", + [ + 20629, + 23019, + 33232, + 338959, + 52732 + ], + 0, + "default.jpg", + 23, + "che_200423_egv4", + 33, + [ + "hall:dedication", + "hall:dex4", + "hall:dex5", + "hall:experience", + "hall:killnum", + "hall:tirate", + "hall:ttrate", + "hall:winrate" + ] + ], + [ + "【23기】외심장", + 70, + 10, + 85, + "che_event_격노", + [ + 16952, + 23301, + 48755, + 332118, + 20076 + ], + 1, + "36110cd.jpg?=20180826", + 23, + "che_200423_egv4", + 34, + [ + "hall:dex4", + "hall:tirate" + ] + ], + [ + "【23기】땅땅", + 80, + 72, + 10, + "che_event_저격", + [ + 10704, + 77264, + 216151, + 57692, + 27618 + ], + 1, + "99cd27f.gif?=20190606", + 23, + "che_200423_egv4", + 35, + [ + "hall:dex2", + "hall:dex3" + ] + ], + [ + "【23기】くま", + 83, + 68, + 10, + "che_event_위압", + [ + 29164, + 3148, + 5368, + 19215, + 299020 + ], + 1, + "770f53.jpg?=20190718", + 23, + "che_200423_egv4", + 36, + [ + "hall:dex5", + "hall:experience", + "hall:killrate", + "hall:winrate" + ] + ], + [ + "【23기】이거 또 망함?", + 10, + 86, + 67, + "che_event_격노", + [ + 0, + 0, + 0, + 0, + 0 + ], + 0, + "default.jpg", + 23, + "che_200423_egv4", + 37, + [ + "hall:firenum", + "hall:tprate", + "hall:ttrate" + ] + ], + [ + "【23기】바보카린", + 12, + 78, + 74, + "che_event_공성", + [ + 0, + 0, + 0, + 4979, + 105255 + ], + 1, + "56538b1.gif?=20200423", + 23, + "che_200423_egv4", + 38, + [ + "chief:12", + "hall:dedication", + "hall:dex5", + "hall:firenum", + "hall:killrate", + "hall:tprate", + "hall:ttrate" + ] + ], + [ + "【23기】냐옹", + 69, + 79, + 12, + "che_event_견고", + [ + 0, + 0, + 0, + 0, + 0 + ], + 1, + "23ba519.jpg?=20190318", + 23, + "che_200423_egv4", + 39, + [ + "hall:tprate" + ] + ], + [ + "【23기】타임머신", + 81, + 71, + 10, + "che_event_위압", + [ + 32266, + 297661, + 24425, + 82058, + 32824 + ], + 1, + "75f9605.png?=20200423", + 23, + "che_200423_egv4", + 42, + [ + "hall:dex2", + "hall:dex5", + "hall:killrate", + "hall:ttrate" + ] + ], + [ + "【23기】개미호랑이즈리얼", + 82, + 70, + 10, + "che_event_척사", + [ + 20817, + 32123, + 213097, + 37954, + 338 + ], + 1, + "9e0429e.jpg?=20200313", + 23, + "che_200423_egv4", + 43, + [ + "hall:dex3" + ] + ], + [ + "【23기】엔장", + 10, + 79, + 72, + "che_event_의술", + [ + 0, + 0, + 0, + 0, + 0 + ], + 0, + "default.jpg", + 23, + "che_200423_egv4", + 45, + [ + "hall:firenum", + "hall:tprate" + ] + ], + [ + "【23기】바보", + 70, + 10, + 83, + "che_event_집중", + [ + 13844, + 26294, + 21207, + 381343, + 41219 + ], + 1, + "3efe080.gif?=20200425", + 23, + "che_200423_egv4", + 47, + [ + "chief:7", + "hall:dedication", + "hall:dex4", + "hall:dex5" + ] + ], + [ + "【23기】료우기시키", + 82, + 69, + 10, + "che_event_돌격", + [ + 26414, + 293380, + 31786, + 83961, + 25899 + ], + 1, + "559083f.jpg?=20190905", + 23, + "che_200423_egv4", + 48, + [ + "hall:dex2", + "hall:tlrate" + ] + ], + [ + "【23기】민트토끼", + 12, + 66, + 85, + "che_event_집중", + [ + 0, + 0, + 0, + 0, + 0 + ], + 1, + "e484fd4.gif?=20200424", + 23, + "che_200423_egv4", + 52, + [ + "chief:5", + "hall:firenum", + "hall:tirate" + ] + ], + [ + "【23기】만샘", + 70, + 82, + 10, + "che_event_위압", + [ + 14761, + 376699, + 29132, + 70792, + 31310 + ], + 1, + "4a206a1.jpg?=20181122", + 23, + "che_200423_egv4", + 53, + [ + "hall:dex2", + "hall:killrate", + "hall:tprate" + ] + ], + [ + "【23기】김갑환", + 83, + 70, + 10, + "che_event_위압", + [ + 27152, + 34572, + 288182, + 78367, + 15344 + ], + 1, + "dcff9fd.jpg?=20180823", + 23, + "che_200423_egv4", + 55, + [ + "hall:dex3", + "hall:tlrate", + "hall:ttrate" + ] + ], + [ + "【23기】12팩에2전설뜸", + 71, + 10, + 81, + "che_event_귀병", + [ + 24968, + 20532, + 26863, + 320559, + 15379 + ], + 0, + "default.jpg", + 23, + "che_200423_egv4", + 66, + [ + "hall:dex4" + ] + ], + [ + "【23기】사이언스베슬", + 68, + 10, + 84, + "che_event_집중", + [ + 42415, + 44878, + 38642, + 306662, + 10603 + ], + 1, + "58d2ea1.jpg?=20200425", + 23, + "che_200423_egv4", + 67, + [ + "hall:dex1", + "hall:dex4" + ] + ], + [ + "【23기】이드", + 11, + 76, + 75, + "che_event_저격", + [ + 0, + 0, + 0, + 0, + 0 + ], + 1, + "ee26023.jpg?=20200402", + 23, + "che_200423_egv4", + 74, + [ + "hall:firenum", + "hall:tprate" + ] + ], + [ + "【23기】뜨뜨뜨뜨", + 80, + 10, + 74, + "che_event_집중", + [ + 26040, + 24307, + 60622, + 300433, + 14495 + ], + 1, + "a1ad420.jpg?=20200425", + 23, + "che_200423_egv4", + 88, + [ + "hall:killnum", + "hall:winrate" + ] + ], + [ + "【23기】천괴금", + 82, + 69, + 10, + "che_event_무쌍", + [ + 385643, + 51874, + 62500, + 68081, + 47300 + ], + 1, + "2b239af.png?=20190824", + 23, + "che_200423_egv4", + 89, + [ + "chief:10", + "hall:dex1", + "hall:dex5", + "hall:experience", + "hall:killcrew", + "hall:killnum", + "hall:warnum" + ] + ], + [ + "【23기】펭수크류", + 71, + 10, + 81, + "che_event_신산", + [ + 33213, + 26177, + 39027, + 176741, + 8993 + ], + 1, + "51540ea.jpg?=20200425", + 23, + "che_200423_egv4", + 98, + [ + "hall:betgold" + ] + ], + [ + "【23기】정채연", + 72, + 78, + 10, + "che_event_저격", + [ + 13635, + 8336, + 228418, + 54829, + 2030 + ], + 1, + "9705097.jpg?=20191001", + 23, + "che_200423_egv4", + 172, + [ + "hall:dex3", + "hall:tprate" + ] + ], + [ + "【23기】마검", + 69, + 10, + 81, + "che_event_신중", + [ + 0, + 17799, + 31869, + 254581, + 3714 + ], + 0, + "default.jpg", + 23, + "che_200423_egv4", + 179, + [ + "hall:tirate", + "hall:winrate" + ] + ], + [ + "【23기】개장수", + 82, + 69, + 10, + "che_event_무쌍", + [ + 16732, + 358774, + 25853, + 76195, + 12038 + ], + 1, + "df79d1c.jpg?=20200428", + 23, + "che_200423_egv4", + 196, + [ + "hall:dex2", + "hall:tlrate" + ] + ], + [ + "【24기】행복했으면좋겠어", + 69, + 10, + 83, + "che_event_저격", + [ + 0, + 4680, + 3987, + 79087, + 17716 + ], + 0, + "default.jpg", + 24, + "che_200514_0DJ7", + 8, + [ + "hall:dedication", + "hall:ttrate" + ] + ], + [ + "【24기】만샘", + 71, + 10, + 83, + "che_event_신중", + [ + 15125, + 16130, + 10306, + 211417, + 29217 + ], + 1, + "4a206a1.jpg?=20181122", + 24, + "che_200514_0DJ7", + 9, + [ + "hall:dex4", + "hall:dex5", + "hall:experience", + "hall:killcrew", + "hall:killnum", + "hall:tirate", + "hall:warnum" + ] + ], + [ + "【24기】호시이 미키", + 81, + 73, + 10, + "che_event_돌격", + [ + 3492, + 30132, + 295674, + 41506, + 38362 + ], + 1, + "4c1e8c4.jpg?=20200515", + 24, + "che_200514_0DJ7", + 11, + [ + "hall:dex3", + "hall:dex5", + "hall:experience", + "hall:killcrew", + "hall:killnum", + "hall:killrate", + "hall:tlrate", + "hall:warnum", + "hall:winrate" + ] + ], + [ + "【24기】킹구갓구", + 84, + 68, + 10, + "che_event_위압", + [ + 9360, + 41905, + 238478, + 34531, + 29359 + ], + 1, + "fb3c625.gif?=20190428", + 24, + "che_200514_0DJ7", + 12, + [ + "hall:dex2", + "hall:dex3", + "hall:dex5", + "hall:killcrew", + "hall:tlrate", + "hall:ttrate", + "hall:warnum" + ] + ], + [ + "【24기】카나리아", + 69, + 10, + 84, + "che_event_신중", + [ + 27037, + 20893, + 25685, + 360770, + 35575 + ], + 1, + "2a52361.jpg?=20200514", + 24, + "che_200514_0DJ7", + 18, + [ + "hall:dex1", + "hall:dex4", + "hall:dex5", + "hall:experience", + "hall:killcrew", + "hall:killnum", + "hall:killrate", + "hall:tirate", + "hall:warnum", + "hall:winrate" + ] + ], + [ + "【24기】Hide_D", + 67, + 12, + 83, + "che_event_신중", + [ + 2455, + 8108, + 0, + 127077, + 31017 + ], + 1, + "9f0a2a8.png?=20200106", + 24, + "che_200514_0DJ7", + 19, + [ + "hall:dedication", + "hall:dex4", + "hall:dex5", + "hall:experience", + "hall:winrate" + ] + ], + [ + "【24기】펭수", + 68, + 11, + 83, + "che_event_필살", + [ + 8290, + 5150, + 3316, + 134253, + 17116 + ], + 1, + "51540ea.jpg?=20200425", + 24, + "che_200514_0DJ7", + 20, + [ + "hall:dedication", + "hall:dex4", + "hall:tirate" + ] + ], + [ + "【24기】smile", + 73, + 81, + 10, + "che_event_필살", + [ + 21651, + 46701, + 13805, + 9823, + 44002 + ], + 0, + "default.jpg", + 24, + "che_200514_0DJ7", + 22, + [ + "hall:dex1", + "hall:dex2", + "hall:dex5", + "hall:killrate", + "hall:tirate", + "hall:tsrate", + "hall:ttrate" + ] + ], + [ + "【24기】천고l금", + 11, + 72, + 79, + "che_event_환술", + [ + 3000, + 0, + 0, + 33963, + 7937 + ], + 1, + "da36800.png?=20200513", + 24, + "che_200514_0DJ7", + 23, + [ + "chief:7", + "hall:dedication", + "hall:tirate", + "hall:tsrate", + "hall:ttrate" + ] + ], + [ + "【24기】혜미", + 86, + 67, + 10, + "che_event_척사", + [ + 27610, + 0, + 16615, + 320, + 235800 + ], + 1, + "699a977.jpg?=20200516", + 24, + "che_200514_0DJ7", + 24, + [ + "hall:dex1", + "hall:dex5", + "hall:experience", + "hall:killcrew", + "hall:killrate", + "hall:tlrate", + "hall:winrate" + ] + ], + [ + "【24기】레아실비아", + 71, + 83, + 10, + "che_event_무쌍", + [ + 20636, + 0, + 106424, + 20319, + 28302 + ], + 1, + "3b13bb3.jpg?=20200515", + 24, + "che_200514_0DJ7", + 26, + [ + "hall:dex1", + "hall:dex3", + "hall:killrate", + "hall:tsrate" + ] + ], + [ + "【24기】Already", + 69, + 10, + 84, + "che_event_반계", + [ + 12230, + 3497, + 0, + 101675, + 18386 + ], + 0, + "default.jpg", + 24, + "che_200514_0DJ7", + 27, + [ + "hall:dedication", + "hall:ttrate" + ] + ], + [ + "【24기】평민킬러", + 68, + 10, + 85, + "che_event_신산", + [ + 1018, + 5217, + 15551, + 136102, + 9997 + ], + 1, + "fb23a32.jpg?=20190904", + 24, + "che_200514_0DJ7", + 28, + [ + "chief:9", + "hall:dedication", + "hall:dex4", + "hall:experience", + "hall:killnum", + "hall:killrate", + "hall:tirate", + "hall:winrate" + ] + ], + [ + "【24기】카이스트", + 67, + 10, + 84, + "che_event_집중", + [ + 14063, + 3225, + 17634, + 179188, + 22413 + ], + 1, + "9361ef8.jpg?=20180907", + 24, + "che_200514_0DJ7", + 29, + [ + "hall:dex4", + "hall:killcrew", + "hall:killnum", + "hall:warnum" + ] + ], + [ + "【24기】료우기시키", + 83, + 69, + 10, + "che_event_위압", + [ + 4196, + 20407, + 121174, + 15290, + 16666 + ], + 1, + "559083f.jpg?=20190905", + 24, + "che_200514_0DJ7", + 30, + [ + "hall:dex3", + "hall:killrate", + "hall:tlrate" + ] + ], + [ + "【24기】모가미 시즈카", + 83, + 70, + 10, + "che_event_척사", + [ + 171308, + 1093, + 37132, + 30646, + 27127 + ], + 1, + "db2e1be.jpg?=20200514", + 24, + "che_200514_0DJ7", + 31, + [ + "hall:dex1", + "hall:experience", + "hall:tirate", + "hall:tlrate", + "hall:ttrate" + ] + ], + [ + "【24기】독구", + 69, + 10, + 85, + "che_event_저격", + [ + 30082, + 30706, + 17351, + 383652, + 27441 + ], + 1, + "a7388f.png?=20200424", + 24, + "che_200514_0DJ7", + 32, + [ + "hall:dex1", + "hall:dex4", + "hall:experience", + "hall:killcrew", + "hall:killnum", + "hall:ttrate", + "hall:warnum", + "hall:winrate" + ] + ], + [ + "【24기】외심장", + 71, + 10, + 82, + "che_event_척사", + [ + 12208, + 24165, + 18013, + 266992, + 15865 + ], + 1, + "36110cd.jpg?=20180826", + 24, + "che_200514_0DJ7", + 33, + [ + "hall:betgold", + "hall:dex4", + "hall:killcrew", + "hall:killnum", + "hall:warnum", + "hall:winrate" + ] + ], + [ + "【24기】코리안코커", + 81, + 71, + 10, + "che_event_척사", + [ + 9640, + 36774, + 137952, + 59674, + 11942 + ], + 1, + "f44d79c.png?=20200503", + 24, + "che_200514_0DJ7", + 34, + [ + "hall:dex3", + "hall:tlrate" + ] + ], + [ + "【24기】유메미 리아무", + 74, + 79, + 10, + "che_event_저격", + [ + 8690, + 76733, + 28599, + 16019, + 28974 + ], + 1, + "30d9ff0.jpg?=20200514", + 24, + "che_200514_0DJ7", + 35, + [ + "chief:12", + "hall:dedication", + "hall:dex2", + "hall:dex5", + "hall:experience", + "hall:killrate", + "hall:tsrate", + "hall:ttrate" + ] + ], + [ + "【24기】천무군사육백언", + 69, + 10, + 84, + "che_event_신중", + [ + 2691, + 24634, + 23579, + 152708, + 15548 + ], + 1, + "9cc7bf4.jpg?=20200514", + 24, + "che_200514_0DJ7", + 36, + [ + "hall:dex4", + "hall:ttrate" + ] + ], + [ + "【24기】ㅇㄷㄷㄷㄷㄷㄷ", + 68, + 84, + 11, + "che_event_위압", + [ + 47947, + 5960, + 77638, + 20699, + 19562 + ], + 0, + "default.jpg", + 24, + "che_200514_0DJ7", + 40, + [ + "hall:dex1", + "hall:dex3", + "hall:tsrate" + ] + ], + [ + "【24기】땅땅땅땅", + 83, + 70, + 10, + "che_event_격노", + [ + 8162, + 60987, + 278719, + 21921, + 46219 + ], + 1, + "99cd27f.gif?=20190606", + 24, + "che_200514_0DJ7", + 42, + [ + "hall:dex2", + "hall:dex3", + "hall:dex5", + "hall:killcrew", + "hall:killnum", + "hall:tlrate", + "hall:warnum" + ] + ], + [ + "【24기】경계의 거주자", + 86, + 68, + 10, + "che_event_돌격", + [ + 7501, + 144604, + 6967, + 33641, + 11209 + ], + 1, + "7c6608.jpg?=20200514", + 24, + "che_200514_0DJ7", + 43, + [ + "chief:8", + "hall:dex2", + "hall:tlrate", + "hall:ttrate" + ] + ], + [ + "【24기】별이다섯개", + 10, + 77, + 72, + "che_event_저격", + [ + 0, + 0, + 0, + 0, + 0 + ], + 1, + "aea2eb7.jpg?=20200514", + 24, + "che_200514_0DJ7", + 45, + [ + "hall:tirate", + "hall:tsrate" + ] + ], + [ + "【24기】닭둘기", + 84, + 67, + 11, + "che_event_필살", + [ + 15965, + 173400, + 37401, + 38961, + 28590 + ], + 1, + "dcf6070.jpg?=20200514", + 24, + "che_200514_0DJ7", + 46, + [ + "hall:dex2", + "hall:dex5", + "hall:killcrew", + "hall:killnum", + "hall:tlrate", + "hall:warnum", + "hall:winrate" + ] + ], + [ + "【24기】계략함", + 71, + 79, + 11, + "che_event_무쌍", + [ + 21747, + 49844, + 0, + 11043, + 15583 + ], + 0, + "default.jpg", + 24, + "che_200514_0DJ7", + 47, + [ + "hall:dex1", + "hall:dex2", + "hall:tsrate" + ] + ], + [ + "【24기】연채홍", + 68, + 10, + 84, + "che_event_척사", + [ + 0, + 6658, + 18873, + 101277, + 26492 + ], + 0, + "default.jpg", + 24, + "che_200514_0DJ7", + 48, + [ + "chief:5", + "hall:dedication", + "hall:experience" + ] + ], + [ + "【24기】건방진노예", + 69, + 10, + 84, + "che_event_반계", + [ + 6187, + 0, + 3417, + 58297, + 13786 + ], + 0, + "default.jpg", + 24, + "che_200514_0DJ7", + 50, + [ + "hall:dedication", + "hall:tirate" + ] + ], + [ + "【24기】갈근", + 11, + 67, + 83, + "che_event_저격", + [ + 0, + 0, + 0, + 0, + 0 + ], + 0, + "default.jpg", + 24, + "che_200514_0DJ7", + 51, + [ + "hall:tirate" + ] + ], + [ + "【24기】개미호랑이블린", + 68, + 10, + 83, + "che_event_집중", + [ + 17332, + 9170, + 7337, + 174876, + 24439 + ], + 1, + "9e0429e.jpg?=20200313", + 24, + "che_200514_0DJ7", + 53, + [ + "hall:dex1", + "hall:dex4", + "hall:killnum", + "hall:warnum", + "hall:winrate" + ] + ], + [ + "【24기】로비", + 10, + 68, + 84, + "che_event_반계", + [ + 0, + 0, + 0, + 0, + 0 + ], + 1, + "708a981.png?=20200402", + 24, + "che_200514_0DJ7", + 54, + [ + "hall:tsrate" + ] + ], + [ + "【24기】세미얼터", + 81, + 71, + 11, + "che_event_기병", + [ + 2742, + 0, + 146616, + 38088, + 28427 + ], + 1, + "5b8a3a2.png?=20200515", + 24, + "che_200514_0DJ7", + 56, + [ + "chief:10", + "hall:dex3", + "hall:tlrate" + ] + ], + [ + "【24기】돌아온너구리", + 83, + 68, + 10, + "che_event_필살", + [ + 10038, + 91922, + 75801, + 14335, + 19033 + ], + 0, + "default.jpg", + 24, + "che_200514_0DJ7", + 57, + [ + "chief:11", + "hall:dex2", + "hall:dex3", + "hall:killrate" + ] + ], + [ + "【24기】일이석우", + 68, + 10, + 83, + "che_event_필살", + [ + 1282, + 0, + 5452, + 60001, + 13157 + ], + 1, + "9c2026b.jpg?=20200527", + 24, + "che_200514_0DJ7", + 58, + [ + "hall:dedication" + ] + ], + [ + "【24기】정채연", + 72, + 80, + 10, + "che_event_척사", + [ + 34, + 77053, + 8489, + 12061, + 9739 + ], + 1, + "9705097.jpg?=20191001", + 24, + "che_200514_0DJ7", + 59, + [ + "chief:6", + "hall:dex2", + "hall:killrate", + "hall:tsrate", + "hall:winrate" + ] + ], + [ + "【24기】로리", + 72, + 80, + 10, + "che_event_견고", + [ + 28855, + 0, + 4192, + 14790, + 2033 + ], + 1, + "50794a6.jpg?=20190923", + 24, + "che_200514_0DJ7", + 60, + [ + "hall:dex1", + "hall:tsrate" + ] + ], + [ + "【24기】김갑환", + 81, + 69, + 10, + "che_event_돌격", + [ + 7536, + 40387, + 145098, + 33592, + 14972 + ], + 1, + "dcff9fd.jpg?=20180823", + 24, + "che_200514_0DJ7", + 72, + [ + "hall:dex2", + "hall:dex3" + ] + ], + [ + "【25기】Hide_D", + 64, + 10, + 82, + "che_event_환술", + [ + 78921, + 28116, + 98282, + 962494, + 25927 + ], + 1, + "9f0a2a8.png?=20200106", + 25, + "che_200604_NuxN", + 6, + [ + "hall:dedication", + "hall:dex4", + "hall:dex5", + "hall:experience", + "hall:killrate", + "hall:killrate_person", + "hall:occupied" + ] + ], + [ + "【25기】미르칼라", + 68, + 10, + 79, + "che_event_환술", + [ + 46006, + 28020, + 67235, + 987828, + 9470 + ], + 1, + "959346e.jpg?=20200604", + 25, + "che_200604_NuxN", + 8, + [ + "hall:dex4", + "hall:killnum", + "hall:occupied" + ] + ], + [ + "【25기】엘사", + 64, + 80, + 10, + "che_event_위압", + [ + 622649, + 45018, + 48247, + 102993, + 23342 + ], + 1, + "ee26023.jpg?=20200402", + 25, + "che_200604_NuxN", + 10, + [ + "chief:6", + "hall:dex1", + "hall:dex5", + "hall:killrate", + "hall:occupied", + "hall:tsrate" + ] + ], + [ + "【25기】김 신", + 65, + 10, + 79, + "che_event_집중", + [ + 104056, + 39683, + 38908, + 578257, + 12852 + ], + 1, + "9fd757a.gif?=20200602", + 25, + "che_200604_NuxN", + 11, + [ + "chief:5", + "hall:ttrate" + ] + ], + [ + "【25기】펭수", + 66, + 10, + 76, + "che_event_척사", + [ + 38254, + 31013, + 31044, + 584532, + 20208 + ], + 1, + "51540ea.jpg?=20200425", + 25, + "che_200604_NuxN", + 12, + [ + "hall:tirate", + "hall:ttrate" + ] + ], + [ + "【25기】김나영", + 68, + 77, + 10, + "che_event_돌격", + [ + 35094, + 69704, + 739190, + 96183, + 14499 + ], + 1, + "c90a3d4.jpg?=20190905", + 25, + "che_200604_NuxN", + 13, + [ + "hall:dex3", + "hall:killcrew", + "hall:killnum", + "hall:tsrate", + "hall:ttrate", + "hall:warnum" + ] + ], + [ + "【25기】브라움", + 70, + 79, + 10, + "che_event_의술", + [ + 1148187, + 46919, + 102756, + 197653, + 11925 + ], + 1, + "fe1f2b2.jpg?=20200604", + 25, + "che_200604_NuxN", + 16, + [ + "hall:dex1", + "hall:dex2", + "hall:dex3", + "hall:killcrew", + "hall:killcrew_person", + "hall:killnum", + "hall:killrate", + "hall:killrate_person", + "hall:tsrate", + "hall:warnum", + "hall:winrate" + ] + ], + [ + "【25기】독구", + 82, + 60, + 10, + "che_event_돌격", + [ + 10509, + 17612, + 10320, + 28656, + 733732 + ], + 1, + "a7388f.png?=20200424", + 25, + "che_200604_NuxN", + 17, + [ + "hall:dex5", + "hall:tlrate" + ] + ], + [ + "【25기】병리학적자세", + 63, + 10, + 79, + "che_event_필살", + [ + 60017, + 40019, + 45362, + 462049, + 14087 + ], + 1, + "3679089.jpg?=20180629", + 25, + "che_200604_NuxN", + 19, + [ + "hall:dex5", + "hall:tirate", + "hall:ttrate" + ] + ], + [ + "【25기】smile", + 66, + 10, + 79, + "che_event_집중", + [ + 56287, + 39419, + 47404, + 604863, + 11707 + ], + 0, + "default.jpg", + 25, + "che_200604_NuxN", + 20, + [ + "hall:tirate" + ] + ], + [ + "【25기】로리", + 63, + 10, + 80, + "che_event_집중", + [ + 62009, + 26896, + 55684, + 558677, + 13369 + ], + 1, + "50794a6.jpg?=20190923", + 25, + "che_200604_NuxN", + 22, + [ + "hall:dedication", + "hall:experience", + "hall:occupied" + ] + ], + [ + "【25기】외심장", + 67, + 10, + 80, + "che_event_신산", + [ + 73815, + 54819, + 49480, + 874449, + 16360 + ], + 1, + "36110cd.jpg?=20180826", + 25, + "che_200604_NuxN", + 24, + [ + "hall:betgold", + "hall:dex4", + "hall:dex5", + "hall:killcrew", + "hall:killcrew_person", + "hall:killnum", + "hall:killrate", + "hall:killrate_person", + "hall:tirate", + "hall:warnum", + "hall:winrate" + ] + ], + [ + "【25기】땅땅이", + 77, + 66, + 10, + "che_event_격노", + [ + 720463, + 28468, + 66597, + 190037, + 30796 + ], + 1, + "99cd27f.gif?=20190606", + 25, + "che_200604_NuxN", + 25, + [ + "hall:dex1", + "hall:dex5", + "hall:occupied", + "hall:tlrate", + "hall:tsrate" + ] + ], + [ + "【25기】너튜브", + 66, + 74, + 10, + "che_event_위압", + [ + 52091, + 403138, + 51218, + 98799, + 11904 + ], + 1, + "758baa7.png?=20200604", + 25, + "che_200604_NuxN", + 27, + [ + "hall:betgold", + "hall:dex2", + "hall:tsrate" + ] + ], + [ + "【25기】아자젤", + 65, + 10, + 79, + "che_event_환술", + [ + 36772, + 50933, + 35054, + 732544, + 5960 + ], + 1, + "fef67ff.jpg?=20200604", + 25, + "che_200604_NuxN", + 28, + [ + "hall:dex2", + "hall:dex4" + ] + ], + [ + "【25기】카이스트", + 66, + 10, + 82, + "che_event_집중", + [ + 87729, + 60765, + 52202, + 992377, + 25594 + ], + 1, + "9361ef8.jpg?=20180907", + 25, + "che_200604_NuxN", + 29, + [ + "hall:dex2", + "hall:dex4", + "hall:dex5", + "hall:experience", + "hall:firenum", + "hall:killcrew", + "hall:killcrew_person", + "hall:killnum", + "hall:killrate", + "hall:killrate_person", + "hall:warnum", + "hall:winrate" + ] + ], + [ + "【25기】킹구", + 75, + 10, + 69, + "che_event_신산", + [ + 66481, + 24853, + 38550, + 894017, + 12077 + ], + 1, + "fb3c625.gif?=20190428", + 25, + "che_200604_NuxN", + 30, + [ + "hall:dex4", + "hall:killnum", + "hall:winrate" + ] + ], + [ + "【25기】평민킬러", + 82, + 64, + 10, + "che_event_징병", + [ + 71985, + 87732, + 907056, + 207533, + 22096 + ], + 1, + "fb23a32.jpg?=20190904", + 25, + "che_200604_NuxN", + 32, + [ + "chief:12", + "hall:dedication", + "hall:dex3", + "hall:experience", + "hall:tlrate" + ] + ], + [ + "【25기】ㅇ", + 66, + 79, + 10, + "che_event_저격", + [ + 39814, + 59167, + 549078, + 83500, + 21298 + ], + 0, + "default.jpg", + 25, + "che_200604_NuxN", + 35, + [ + "chief:8", + "hall:dex3", + "hall:killrate", + "hall:occupied", + "hall:tsrate" + ] + ], + [ + "【25기】치킨조아", + 78, + 65, + 10, + "che_event_돌격", + [ + 633941, + 33282, + 117676, + 139227, + 8707 + ], + 1, + "798476b.jpg?=20200604", + 25, + "che_200604_NuxN", + 36, + [ + "hall:dex1", + "hall:dex3", + "hall:killcrew", + "hall:killcrew_person", + "hall:occupied", + "hall:tlrate", + "hall:tsrate", + "hall:warnum" + ] + ], + [ + "【25기】개미호람머스", + 69, + 74, + 10, + "che_event_궁병", + [ + 84791, + 458427, + 27411, + 140321, + 9241 + ], + 1, + "9e0429e.jpg?=20200313", + 25, + "che_200604_NuxN", + 37, + [ + "hall:dex1", + "hall:dex2", + "hall:tsrate", + "hall:ttrate" + ] + ], + [ + "【25기】멸망을 노래하는 자", + 80, + 64, + 10, + "che_event_돌격", + [ + 614171, + 40420, + 68970, + 136172, + 14291 + ], + 1, + "179a0e6.jpg?=20200606", + 25, + "che_200604_NuxN", + 38, + [ + "chief:11", + "hall:dex1" + ] + ], + [ + "【25기】소피", + 10, + 60, + 81, + "che_event_신산", + [ + 0, + 945, + 0, + 7326, + 0 + ], + 1, + "3ec93fb.jpg?=20200604", + 25, + "che_200604_NuxN", + 39, + [ + "hall:dedication", + "hall:firenum", + "hall:tirate" + ] + ], + [ + "【25기】임사영", + 65, + 10, + 79, + "che_event_신중", + [ + 40061, + 45278, + 27016, + 456215, + 19157 + ], + 1, + "7f9473e.gif?=20200211", + 25, + "che_200604_NuxN", + 40, + [ + "hall:killrate", + "hall:killrate_person", + "hall:tirate", + "hall:ttrate", + "hall:winrate" + ] + ], + [ + "【25기】강미정", + 82, + 59, + 10, + "che_event_징병", + [ + 1833, + 5798, + 17483, + 4995, + 109147 + ], + 1, + "4794a22.jpg?=20200630", + 25, + "che_200604_NuxN", + 41, + [ + "hall:dex5", + "hall:killrate", + "hall:tlrate" + ] + ], + [ + "【25기】료우기시키", + 80, + 63, + 10, + "che_event_보병", + [ + 833050, + 35969, + 111901, + 202125, + 11973 + ], + 1, + "559083f.jpg?=20190905", + 25, + "che_200604_NuxN", + 42, + [ + "hall:dex1", + "hall:dex3", + "hall:killcrew", + "hall:killcrew_person", + "hall:tlrate", + "hall:warnum" + ] + ], + [ + "【25기】레오루", + 75, + 68, + 10, + "che_event_돌격", + [ + 54464, + 91712, + 333212, + 113693, + 21329 + ], + 1, + "ed5f2c2.jpg?=20200604", + 25, + "che_200604_NuxN", + 44, + [ + "chief:10", + "hall:dex2", + "hall:occupied", + "hall:tlrate" + ] + ], + [ + "【25기】푸린", + 65, + 10, + 80, + "che_event_집중", + [ + 56792, + 32471, + 84344, + 817450, + 11776 + ], + 1, + "d3c25f2.jpg?=20200604", + 25, + "che_200604_NuxN", + 45, + [ + "hall:dex4" + ] + ], + [ + "【25기】한국전력공사", + 60, + 10, + 82, + "che_event_신산", + [ + 34672, + 25221, + 14248, + 424199, + 21471 + ], + 1, + "48ea511.jpg?=20200607", + 25, + "che_200604_NuxN", + 46, + [ + "hall:dedication", + "hall:dex5", + "hall:experience", + "hall:killrate", + "hall:killrate_person", + "hall:occupied", + "hall:winrate" + ] + ], + [ + "【25기】쿠로", + 80, + 62, + 10, + "che_event_척사", + [ + 109136, + 754022, + 27120, + 118731, + 8779 + ], + 1, + "55dc7c0.gif?=20200604", + 25, + "che_200604_NuxN", + 48, + [ + "hall:betgold", + "hall:dex2", + "hall:killcrew_person", + "hall:warnum" + ] + ], + [ + "【25기】광순이", + 63, + 10, + 81, + "che_event_환술", + [ + 63771, + 27976, + 27041, + 399189, + 27199 + ], + 1, + "9babce2.jpg?=20200616", + 25, + "che_200604_NuxN", + 50, + [ + "hall:dedication", + "hall:dex5" + ] + ], + [ + "【25기】갈근", + 69, + 76, + 10, + "che_event_격노", + [ + 82489, + 768170, + 41695, + 154426, + 14217 + ], + 0, + "default.jpg", + 25, + "che_200604_NuxN", + 51, + [ + "hall:dex2", + "hall:tsrate" + ] + ], + [ + "【25기】낙지꿈", + 63, + 10, + 80, + "che_event_집중", + [ + 69901, + 30004, + 15248, + 428603, + 22347 + ], + 0, + "default.jpg", + 25, + "che_200604_NuxN", + 53, + [ + "hall:dedication" + ] + ], + [ + "【25기】캬루", + 10, + 59, + 82, + "che_event_신산", + [ + 0, + 0, + 0, + 0, + 0 + ], + 1, + "ac9b130.jpg?=20200603", + 25, + "che_200604_NuxN", + 55, + [ + "hall:firenum" + ] + ], + [ + "【25기】고블린슬레이어", + 79, + 64, + 10, + "che_event_보병", + [ + 1072097, + 44889, + 110607, + 199452, + 11936 + ], + 1, + "2943712.png?=20200604", + 25, + "che_200604_NuxN", + 56, + [ + "hall:dex1", + "hall:dex3", + "hall:killcrew", + "hall:killcrew_person", + "hall:killnum", + "hall:killrate", + "hall:killrate_person", + "hall:occupied", + "hall:tlrate", + "hall:warnum" + ] + ], + [ + "【25기】뜨뜨뜨뜨", + 70, + 10, + 74, + "che_event_집중", + [ + 41344, + 34023, + 34073, + 650064, + 12677 + ], + 1, + "a1ad420.jpg?=20200425", + 25, + "che_200604_NuxN", + 59, + [ + "hall:dex4", + "hall:experience" + ] + ], + [ + "【25기】로비", + 14, + 58, + 80, + "che_event_환술", + [ + 0, + 0, + 0, + 0, + 0 + ], + 1, + "708a981.png?=20200402", + 25, + "che_200604_NuxN", + 60, + [ + "chief:7", + "hall:dedication", + "hall:experience", + "hall:tirate" + ] + ], + [ + "【25기】헹지", + 64, + 10, + 84, + "che_event_신산", + [ + 117500, + 62426, + 46691, + 949200, + 25920 + ], + 1, + "ff77e01.jpg?=20200704", + 25, + "che_200604_NuxN", + 62, + [ + "chief:9", + "hall:dex2", + "hall:experience", + "hall:firenum", + "hall:killcrew", + "hall:killnum", + "hall:killrate_person", + "hall:tirate", + "hall:ttrate", + "hall:winrate" + ] + ], + [ + "【25기】건방진노예", + 66, + 10, + 78, + "che_event_신중", + [ + 71873, + 46075, + 31281, + 645604, + 28140 + ], + 0, + "default.jpg", + 25, + "che_200604_NuxN", + 84, + [ + "hall:dex2", + "hall:dex4", + "hall:killcrew_person", + "hall:killnum", + "hall:tirate", + "hall:winrate" + ] + ], + [ + "【25기】ㅊㅋㅊㅋㅋ", + 14, + 73, + 63, + "che_event_징병", + [ + 0, + 0, + 12796, + 2877, + 0 + ], + 0, + "default.jpg", + 25, + "che_200604_NuxN", + 120, + [ + "hall:firenum" + ] + ], + [ + "【25기】아벤느채연", + 67, + 75, + 10, + "che_event_무쌍", + [ + 33562, + 23970, + 813284, + 102045, + 15434 + ], + 1, + "7e512d4.jpg?=20200605", + 25, + "che_200604_NuxN", + 168, + [ + "hall:dex3", + "hall:killcrew", + "hall:killcrew_person", + "hall:killnum", + "hall:killrate_person", + "hall:tsrate", + "hall:warnum" + ] + ], + [ + "【25기】치카", + 74, + 10, + 67, + "che_event_집중", + [ + 68769, + 37400, + 55441, + 480780, + 5910 + ], + 1, + "890b253.jpg?=20191024", + 25, + "che_200604_NuxN", + 222, + [ + "hall:tlrate" + ] + ], + [ + "【25기】모기", + 67, + 10, + 77, + "che_event_집중", + [ + 80108, + 51064, + 91634, + 699115, + 12937 + ], + 0, + "default.jpg", + 25, + "che_200604_NuxN", + 225, + [ + "hall:dex1", + "hall:dex4", + "hall:ttrate" + ] + ], + [ + "【25기】민트토끼", + 10, + 58, + 82, + "che_event_신산", + [ + 0, + 0, + 0, + 0, + 0 + ], + 1, + "e484fd4.gif?=20200424", + 25, + "che_200604_NuxN", + 256, + [ + "hall:dedication", + "hall:experience", + "hall:firenum", + "hall:tirate" + ] + ], + [ + "【25기】마니와 시라사기", + 14, + 59, + 75, + "che_event_신산", + [ + 0, + 0, + 0, + 0, + 0 + ], + 1, + "b31ef66.png?=20190509", + 25, + "che_200604_NuxN", + 296, + [ + "hall:firenum" + ] + ], + [ + "【25기】륜", + 63, + 10, + 80, + "che_event_환술", + [ + 71120, + 34275, + 32861, + 476732, + 20942 + ], + 1, + "25c0eb.jpg?=20200607", + 25, + "che_200604_NuxN", + 304, + [ + "hall:dedication", + "hall:experience", + "hall:killrate_person", + "hall:ttrate", + "hall:winrate" + ] + ], + [ + "【25기】만샘", + 10, + 67, + 96, + "che_event_필살", + [ + 0, + 0, + 0, + 0, + 0 + ], + 1, + "4a206a1.jpg?=20181122", + 25, + "che_200604_NuxN", + 386, + [ + "hall:firenum" + ] + ], + [ + "【25기】백구이야기", + 86, + 77, + 10, + "che_event_척사", + [ + 1020358, + 47414, + 149009, + 179378, + 14621 + ], + 1, + "f82ea71.jpg?=20200611", + 25, + "che_200604_NuxN", + 422, + [ + "hall:dex1", + "hall:dex3", + "hall:killcrew", + "hall:killcrew_person", + "hall:tlrate", + "hall:ttrate", + "hall:warnum" + ] + ], + [ + "【25기】레벤", + 75, + 11, + 83, + "che_event_집중", + [ + 54256, + 19340, + 27550, + 546810, + 3674 + ], + 0, + "default.jpg", + 25, + "che_200604_NuxN", + 475, + [ + "hall:winrate" + ] + ], + [ + "【25기】김갑환", + 71, + 80, + 10, + "che_event_징병", + [ + 43859, + 46941, + 440670, + 132634, + 8075 + ], + 1, + "dcff9fd.jpg?=20180823", + 25, + "che_200604_NuxN", + 869, + [ + "hall:dex3" + ] + ], + [ + "【26기】Hide_D", + 74, + 15, + 92, + "che_event_척사", + [ + 32339, + 30842, + 12613, + 323136, + 30963 + ], + 1, + "9f0a2a8.png?=20200106", + 26, + "che_200716_3evx", + 6, + [ + "hall:dex4", + "hall:dex5", + "hall:killcrew_person", + "hall:warnum" + ] + ], + [ + "【26기】smile", + 87, + 78, + 17, + "che_event_궁병", + [ + 9483, + 179209, + 1068, + 30166, + 0 + ], + 0, + "default.jpg", + 26, + "che_200716_3evx", + 7, + [ + "hall:dex2", + "hall:tlrate" + ] + ], + [ + "【26기】사뉴카린시등분", + 74, + 15, + 92, + "che_event_집중", + [ + 12029, + 16754, + 14228, + 338646, + 8933 + ], + 1, + "326e427.jpg?=20200723", + 26, + "che_200716_3evx", + 8, + [ + "chief:7", + "hall:dex4", + "hall:killcrew_person", + "hall:winrate" + ] + ], + [ + "【26기】카린", + 87, + 77, + 16, + "che_event_위압", + [ + 26763, + 505723, + 16575, + 15005, + 19076 + ], + 1, + "fb3c625.gif?=20190428", + 26, + "che_200716_3evx", + 11, + [ + "hall:dex2", + "hall:killcrew", + "hall:killcrew_person", + "hall:warnum" + ] + ], + [ + "【26기】다람쥐", + 92, + 74, + 16, + "che_event_견고", + [ + 48907, + 185871, + 19335, + 52775, + 22066 + ], + 1, + "1161424.gif?=20200718", + 26, + "che_200716_3evx", + 13, + [ + "hall:dex1", + "hall:dex2", + "hall:tlrate" + ] + ], + [ + "【26기】프레이이시스", + 88, + 76, + 15, + "che_event_궁병", + [ + 44142, + 199714, + 8520, + 36716, + 21812 + ], + 1, + "b723845.jpg?=20200716", + 26, + "che_200716_3evx", + 14, + [ + "hall:dex1", + "hall:dex2", + "hall:tlrate", + "hall:ttrate" + ] + ], + [ + "【26기】????", + 85, + 16, + 79, + "che_event_신산", + [ + 10110, + 46523, + 17083, + 203641, + 24701 + ], + 1, + "c32df1b.png?=20200716", + 26, + "che_200716_3evx", + 16, + [ + "hall:dedication", + "hall:dex2" + ] + ], + [ + "【26기】이초홍", + 74, + 16, + 91, + "che_event_반계", + [ + 7995, + 32637, + 25701, + 268670, + 73323 + ], + 1, + "ac758a0.jpg?=20200716", + 26, + "che_200716_3evx", + 17, + [ + "chief:9", + "hall:dedication", + "hall:dex4", + "hall:dex5", + "hall:experience", + "hall:ttrate" + ] + ], + [ + "【26기】수장", + 84, + 81, + 15, + "che_event_위압", + [ + 275020, + 9883, + 12463, + 43924, + 26502 + ], + 1, + "190d7ff.jpg?=20200312", + 26, + "che_200716_3evx", + 18, + [ + "hall:dex1", + "hall:killrate", + "hall:killrate_person", + "hall:tsrate", + "hall:ttrate" + ] + ], + [ + "【26기】모루좀뽑아라", + 75, + 16, + 91, + "che_event_신산", + [ + 9373, + 20400, + 7815, + 499558, + 13989 + ], + 0, + "default.jpg", + 26, + "che_200716_3evx", + 19, + [ + "chief:12", + "hall:dedication", + "hall:dex4", + "hall:experience", + "hall:firenum", + "hall:killcrew", + "hall:killcrew_person", + "hall:killnum", + "hall:occupied", + "hall:tirate", + "hall:warnum", + "hall:winrate" + ] + ], + [ + "【26기】갈근", + 15, + 72, + 93, + "che_event_저격", + [ + 0, + 0, + 0, + 2448, + 597 + ], + 0, + "default.jpg", + 26, + "che_200716_3evx", + 20, + [ + "hall:tirate" + ] + ], + [ + "【26기】rwitch", + 74, + 15, + 92, + "che_event_신산", + [ + 24905, + 18221, + 25429, + 311908, + 25534 + ], + 1, + "dcc638d.jpg?=20190725", + 26, + "che_200716_3evx", + 21, + [ + "hall:dex4", + "hall:killcrew_person", + "hall:killnum", + "hall:killrate_person", + "hall:occupied", + "hall:warnum" + ] + ], + [ + "【26기】떼껄룩", + 87, + 78, + 16, + "che_event_징병", + [ + 3935, + 173187, + 1046, + 18528, + 50162 + ], + 0, + "default.jpg", + 26, + "che_200716_3evx", + 24, + [ + "hall:dex2", + "hall:dex5", + "hall:tlrate" + ] + ], + [ + "【26기】슬라임", + 86, + 79, + 15, + "che_event_필살", + [ + 314323, + 10320, + 35875, + 44562, + 63783 + ], + 0, + "default.jpg", + 26, + "che_200716_3evx", + 25, + [ + "chief:6", + "hall:dex1", + "hall:dex3", + "hall:dex5", + "hall:experience", + "hall:killcrew", + "hall:killnum", + "hall:killrate", + "hall:killrate_person", + "hall:occupied", + "hall:ttrate", + "hall:winrate" + ] + ], + [ + "【26기】바넬로피", + 88, + 78, + 15, + "che_event_척사", + [ + 8120, + 31088, + 388876, + 61107, + 28456 + ], + 1, + "1aef988.jpg?=20200717", + 26, + "che_200716_3evx", + 26, + [ + "chief:11", + "hall:dedication", + "hall:dex3", + "hall:dex5", + "hall:experience", + "hall:killcrew", + "hall:killnum", + "hall:tlrate", + "hall:warnum", + "hall:winrate" + ] + ], + [ + "【26기】돼지", + 78, + 88, + 15, + "che_event_위압", + [ + 343248, + 7128, + 29621, + 56379, + 28202 + ], + 1, + "b0ce79d.png?=20200721", + 26, + "che_200716_3evx", + 28, + [ + "chief:10", + "hall:dedication", + "hall:dex1", + "hall:dex3", + "hall:experience", + "hall:killcrew", + "hall:killcrew_person", + "hall:killnum", + "hall:killrate", + "hall:killrate_person", + "hall:occupied", + "hall:tsrate", + "hall:warnum" + ] + ], + [ + "【26기】국립국어원", + 71, + 15, + 95, + "che_event_저격", + [ + 0, + 0, + 0, + 0, + 0 + ], + 1, + "ca34191.jpg?=20200716", + 26, + "che_200716_3evx", + 29, + [ + "hall:dedication", + "hall:tirate", + "hall:ttrate" + ] + ], + [ + "【26기】플라", + 69, + 20, + 92, + "che_event_집중", + [ + 18861, + 19765, + 15628, + 224742, + 15548 + ], + 1, + "816bde9.jpg?=20200716", + 26, + "che_200716_3evx", + 30, + [ + "hall:dedication", + "hall:dex4", + "hall:experience", + "hall:winrate" + ] + ], + [ + "【26기】외심장", + 73, + 16, + 93, + "che_event_신산", + [ + 22637, + 8581, + 19454, + 231309, + 29120 + ], + 1, + "36110cd.jpg?=20180826", + 26, + "che_200716_3evx", + 31, + [ + "hall:dex4", + "hall:dex5", + "hall:firenum", + "hall:tirate" + ] + ], + [ + "【26기】김나영", + 76, + 90, + 16, + "che_event_돌격", + [ + 26107, + 6147, + 379712, + 75224, + 21867 + ], + 1, + "c90a3d4.jpg?=20190905", + 26, + "che_200716_3evx", + 32, + [ + "hall:dex3", + "hall:killcrew", + "hall:killcrew_person", + "hall:killnum", + "hall:killrate_person", + "hall:occupied", + "hall:tsrate", + "hall:warnum", + "hall:winrate" + ] + ], + [ + "【26기】연", + 89, + 76, + 15, + "che_event_필살", + [ + 0, + 14, + 20901, + 5923, + 189277 + ], + 1, + "574aa5f.png?=20200802", + 26, + "che_200716_3evx", + 33, + [ + "hall:dex5", + "hall:killrate", + "hall:occupied", + "hall:tlrate" + ] + ], + [ + "【26기】시딱마", + 75, + 15, + 90, + "che_event_신산", + [ + 17590, + 0, + 17110, + 251531, + 17269 + ], + 0, + "default.jpg", + 26, + "che_200716_3evx", + 34, + [ + "hall:dex4", + "hall:ttrate" + ] + ], + [ + "【26기】창모", + 76, + 15, + 89, + "che_event_집중", + [ + 40734, + 7540, + 9892, + 203633, + 18165 + ], + 1, + "43193f0.jpg?=20200716", + 26, + "che_200716_3evx", + 35, + [ + "hall:tirate", + "hall:ttrate" + ] + ], + [ + "【26기】병리학적자세", + 72, + 15, + 93, + "che_event_집중", + [ + 2670, + 3953, + 12338, + 193185, + 16524 + ], + 1, + "3679089.jpg?=20180629", + 26, + "che_200716_3evx", + 36, + [ + "hall:tirate" + ] + ], + [ + "【26기】보스곰", + 74, + 15, + 91, + "che_event_집중", + [ + 49, + 23974, + 13619, + 316891, + 23608 + ], + 1, + "773556e.gif?=20190822", + 26, + "che_200716_3evx", + 37, + [ + "chief:5", + "hall:dedication", + "hall:dex4", + "hall:killrate" + ] + ], + [ + "【26기】료우기시키", + 88, + 78, + 15, + "che_event_저격", + [ + 15924, + 26289, + 316555, + 71475, + 21754 + ], + 1, + "559083f.jpg?=20190905", + 26, + "che_200716_3evx", + 40, + [ + "hall:dex3", + "hall:killcrew_person" + ] + ], + [ + "【26기】건방진노예", + 76, + 90, + 16, + "che_event_무쌍", + [ + 23369, + 239255, + 17766, + 38137, + 33372 + ], + 1, + "e1d250.png?=20200719", + 26, + "che_200716_3evx", + 41, + [ + "hall:dex2", + "hall:dex5", + "hall:tsrate" + ] + ], + [ + "【26기】낙지꿈", + 76, + 16, + 88, + "che_event_신중", + [ + 17289, + 23226, + 23261, + 258449, + 23656 + ], + 0, + "default.jpg", + 26, + "che_200716_3evx", + 42, + [ + "hall:dedication", + "hall:dex4" + ] + ], + [ + "【26기】레벤", + 73, + 15, + 91, + "che_event_반계", + [ + 4430, + 3734, + 10545, + 160291, + 14480 + ], + 0, + "default.jpg", + 26, + "che_200716_3evx", + 44, + [ + "hall:tirate" + ] + ], + [ + "【26기】일이석우", + 78, + 85, + 15, + "che_event_공성", + [ + 0, + 10700, + 0, + 12824, + 469750 + ], + 1, + "9c2026b.jpg?=20200527", + 26, + "che_200716_3evx", + 45, + [ + "hall:dex5", + "hall:experience", + "hall:killcrew", + "hall:killrate", + "hall:occupied", + "hall:tsrate" + ] + ], + [ + "【26기】개미호랑2", + 73, + 90, + 15, + "che_event_견고", + [ + 288, + 0, + 93742, + 6059, + 5087 + ], + 1, + "9e0429e.jpg?=20200313", + 26, + "che_200716_3evx", + 47, + [ + "hall:dex3", + "hall:tsrate" + ] + ], + [ + "【26기】김갑환", + 87, + 78, + 15, + "che_event_돌격", + [ + 346524, + 20951, + 20680, + 47837, + 27193 + ], + 1, + "dcff9fd.jpg?=20180823", + 26, + "che_200716_3evx", + 49, + [ + "hall:dex1", + "hall:killcrew", + "hall:killnum", + "hall:killrate", + "hall:killrate_person", + "hall:tlrate", + "hall:warnum", + "hall:winrate" + ] + ], + [ + "【26기】검호매의눈미호크", + 85, + 79, + 16, + "che_event_무쌍", + [ + 353639, + 0, + 26849, + 68746, + 21657 + ], + 1, + "284e288.jpg?=20200716", + 26, + "che_200716_3evx", + 53, + [ + "hall:dex1", + "hall:experience", + "hall:killcrew_person", + "hall:killnum", + "hall:occupied", + "hall:tlrate", + "hall:warnum" + ] + ], + [ + "【26기】시라이", + 76, + 89, + 15, + "che_event_척사", + [ + 240284, + 6177, + 33912, + 39817, + 18943 + ], + 1, + "9f7aca2.jpg?=20200718", + 26, + "che_200716_3evx", + 54, + [ + "hall:dex1", + "hall:dex3", + "hall:experience", + "hall:tsrate" + ] + ], + [ + "【26기】팀쿡", + 90, + 77, + 15, + "che_event_견고", + [ + 22014, + 211466, + 11573, + 55566, + 24781 + ], + 0, + "default.jpg", + 26, + "che_200716_3evx", + 55, + [ + "hall:dex2", + "hall:tlrate" + ] + ], + [ + "【26기】천재", + 76, + 15, + 91, + "che_event_집중", + [ + 10256, + 4662, + 5250, + 141527, + 9519 + ], + 0, + "default.jpg", + 26, + "che_200716_3evx", + 67, + [ + "hall:killrate_person", + "hall:ttrate" + ] + ], + [ + "【26기】민트토끼", + 72, + 16, + 94, + "che_event_저격", + [ + 0, + 7112, + 0, + 130793, + 8075 + ], + 1, + "3d9efb2.gif?=20200717", + 26, + "che_200716_3evx", + 69, + [ + "hall:killrate", + "hall:killrate_person" + ] + ], + [ + "【26기】평민킬러", + 75, + 92, + 15, + "che_event_무쌍", + [ + 425157, + 4564, + 31773, + 77457, + 36426 + ], + 1, + "fb23a32.jpg?=20190904", + 26, + "che_200716_3evx", + 70, + [ + "hall:dex1", + "hall:dex3", + "hall:dex5", + "hall:killcrew", + "hall:killcrew_person", + "hall:killnum", + "hall:killrate", + "hall:killrate_person", + "hall:occupied", + "hall:tsrate", + "hall:warnum", + "hall:winrate" + ] + ], + [ + "【26기】카라라트리", + 75, + 90, + 15, + "che_event_무쌍", + [ + 13974, + 26882, + 355365, + 39113, + 27730 + ], + 1, + "848a454.jpg?=20200717", + 26, + "che_200716_3evx", + 71, + [ + "chief:8", + "hall:dex3", + "hall:experience", + "hall:firenum", + "hall:killcrew", + "hall:killnum", + "hall:killrate", + "hall:killrate_person", + "hall:occupied", + "hall:tsrate", + "hall:winrate" + ] + ], + [ + "【26기】시키면반대로함", + 15, + 72, + 93, + "che_event_신산", + [ + 0, + 0, + 0, + 122, + 0 + ], + 0, + "default.jpg", + 26, + "che_200716_3evx", + 72, + [ + "hall:firenum", + "hall:tirate" + ] + ], + [ + "【26기】딱밤10스택=깡", + 17, + 74, + 89, + "che_event_반계", + [ + 0, + 0, + 0, + 0, + 0 + ], + 1, + "59fd00.png?=20200717", + 26, + "che_200716_3evx", + 78, + [ + "hall:tirate", + "hall:ttrate" + ] + ], + [ + "【26기】늦엇따당", + 88, + 75, + 15, + "che_event_무쌍", + [ + 124422, + 7894, + 38306, + 38130, + 7684 + ], + 1, + "99cd27f.gif?=20190606", + 26, + "che_200716_3evx", + 83, + [ + "hall:dex1", + "hall:dex3", + "hall:tlrate" + ] + ], + [ + "【26기】로리", + 16, + 71, + 92, + "che_event_척사", + [ + 0, + 0, + 0, + 0, + 0 + ], + 1, + "50794a6.jpg?=20190923", + 26, + "che_200716_3evx", + 112, + [ + "hall:dedication" + ] + ], + [ + "【26기】페이트", + 75, + 16, + 87, + "che_event_신중", + [ + 10917, + 33823, + 4849, + 155197, + 7651 + ], + 1, + "65f1662.jpg?=20200721", + 26, + "che_200716_3evx", + 205, + [ + "hall:dex2", + "hall:firenum" + ] + ], + [ + "【26기】체하나도모름비", + 15, + 74, + 83, + "che_event_척사", + [ + 0, + 0, + 0, + 0, + 0 + ], + 0, + "default.jpg", + 26, + "che_200716_3evx", + 208, + [ + "hall:tirate" + ] + ], + [ + "【26기】Nunsense", + 84, + 77, + 15, + "che_event_징병", + [ + 21737, + 121669, + 7073, + 50092, + 2716 + ], + 1, + "8b9b041.jpg?=20200721", + 26, + "che_200716_3evx", + 222, + [ + "hall:dex2" + ] + ], + [ + "【26기】카오스피닉스", + 15, + 82, + 77, + "che_event_돌격", + [ + 0, + 0, + 0, + 0, + 0 + ], + 1, + "7f80b2f.jpg?=20190715", + 26, + "che_200716_3evx", + 228, + [ + "hall:tsrate" + ] + ], + [ + "【26기】손견문대", + 75, + 15, + 85, + "che_event_신중", + [ + 12649, + 4871, + 7148, + 128067, + 19301 + ], + 0, + "default.jpg", + 26, + "che_200716_3evx", + 250, + [ + "hall:ttrate" + ] + ], + [ + "【26기】불랑기 화승총병", + 72, + 15, + 88, + "che_event_척사", + [ + 8991, + 14612, + 19908, + 110377, + 9626 + ], + 0, + "default.jpg", + 26, + "che_200716_3evx", + 252, + [ + "hall:winrate" + ] + ], + [ + "【26기】구경꾼", + 74, + 15, + 86, + "che_event_환술", + [ + 0, + 0, + 0, + 0, + 0 + ], + 1, + "eaa25e5.png?=20190910", + 26, + "che_200716_3evx", + 289, + [ + "hall:firenum" + ] + ], + [ + "【27기】평민킬러", + 93, + 74, + 15, + "che_event_견고", + [ + 328375, + 19870, + 72127, + 73179, + 28622 + ], + 1, + "fb23a32.jpg?=20190904", + 27, + "che_200813_3JgP", + 9, + [ + "hall:dex1", + "hall:dex3", + "hall:tlrate", + "hall:tsrate", + "hall:ttrate" + ] + ], + [ + "【27기】Hide_D", + 76, + 16, + 87, + "che_event_저격", + [ + 21081, + 17905, + 1664, + 264773, + 31872 + ], + 1, + "9f0a2a8.png?=20200106", + 27, + "che_200813_3JgP", + 10, + [ + "hall:occupied" + ] + ], + [ + "【27기】킹구", + 78, + 87, + 15, + "che_event_척사", + [ + 7824, + 16063, + 426658, + 25495, + 23824 + ], + 1, + "fb3c625.gif?=20190428", + 27, + "che_200813_3JgP", + 11, + [ + "hall:dex3", + "hall:tsrate" + ] + ], + [ + "【27기】외심장", + 76, + 15, + 91, + "che_event_집중", + [ + 26982, + 17222, + 17164, + 403788, + 16445 + ], + 1, + "36110cd.jpg?=20180826", + 27, + "che_200813_3JgP", + 12, + [ + "hall:dex4", + "hall:firenum", + "hall:killcrew", + "hall:killcrew_person", + "hall:killnum", + "hall:killrate", + "hall:killrate_person", + "hall:occupied", + "hall:warnum", + "hall:winrate" + ] + ], + [ + "【27기】플라", + 90, + 75, + 15, + "che_event_돌격", + [ + 37185, + 273841, + 127436, + 98723, + 19487 + ], + 1, + "816bde9.jpg?=20200716", + 27, + "che_200813_3JgP", + 13, + [ + "hall:dex2", + "hall:dex3", + "hall:killcrew_person", + "hall:killnum", + "hall:tlrate", + "hall:tsrate", + "hall:warnum", + "hall:winrate" + ] + ], + [ + "【27기】슬라임", + 87, + 79, + 15, + "che_event_격노", + [ + 21520, + 37308, + 305010, + 39429, + 55017 + ], + 0, + "default.jpg", + 27, + "che_200813_3JgP", + 16, + [ + "hall:dedication", + "hall:dex2", + "hall:dex3", + "hall:dex5", + "hall:experience", + "hall:tlrate" + ] + ], + [ + "【27기】김갑환", + 84, + 81, + 16, + "che_event_견고", + [ + 103424, + 21271, + 295071, + 105466, + 19801 + ], + 1, + "dcff9fd.jpg?=20180823", + 27, + "che_200813_3JgP", + 17, + [ + "hall:dex1", + "hall:dex3", + "hall:killcrew", + "hall:killcrew_person", + "hall:killnum", + "hall:killrate_person", + "hall:tsrate", + "hall:warnum" + ] + ], + [ + "【27기】평온의온도", + 75, + 15, + 91, + "che_event_신산", + [ + 11622, + 21107, + 35073, + 496002, + 24237 + ], + 1, + "7a86b2f.webp?=20200826", + 27, + "che_200813_3JgP", + 19, + [ + "chief:11", + "hall:dedication", + "hall:dex4", + "hall:experience", + "hall:killcrew", + "hall:killcrew_person", + "hall:killnum", + "hall:killrate", + "hall:killrate_person", + "hall:occupied", + "hall:warnum", + "hall:winrate" + ] + ], + [ + "【27기】파워에이드", + 75, + 15, + 90, + "che_event_집중", + [ + 14697, + 26762, + 45820, + 288257, + 38236 + ], + 1, + "7cde6c8.jpg?=20200813", + 27, + "che_200813_3JgP", + 20, + [ + "hall:dex5", + "hall:tirate" + ] + ], + [ + "【27기】RGB", + 76, + 15, + 88, + "che_event_신중", + [ + 48528, + 21254, + 41438, + 279400, + 11089 + ], + 1, + "91651d1.webp?=20200813", + 27, + "che_200813_3JgP", + 27, + [ + "hall:dex1" + ] + ], + [ + "【27기】연채홍", + 75, + 15, + 90, + "che_event_집중", + [ + 32340, + 5375, + 24321, + 262482, + 36315 + ], + 1, + "773556e.gif?=20190822", + 27, + "che_200813_3JgP", + 28, + [ + "hall:winrate" + ] + ], + [ + "【27기】김삿갓", + 19, + 73, + 89, + "che_event_신산", + [ + 0, + 0, + 0, + 0, + 0 + ], + 1, + "3f9f8af.gif?=20200825", + 27, + "che_200813_3JgP", + 29, + [ + "hall:tsrate", + "hall:ttrate" + ] + ], + [ + "【27기】태을진인", + 15, + 72, + 95, + "che_event_척사", + [ + 0, + 0, + 0, + 0, + 0 + ], + 1, + "5a607be.jpg?=20200813", + 27, + "che_200813_3JgP", + 30, + [ + "hall:experience" + ] + ], + [ + "【27기】코드블루", + 75, + 15, + 90, + "che_event_집중", + [ + 3436, + 23852, + 39886, + 465912, + 42245 + ], + 1, + "5c60836.jpg?=20200813", + 27, + "che_200813_3JgP", + 31, + [ + "chief:9", + "hall:dedication", + "hall:dex4", + "hall:dex5", + "hall:experience", + "hall:killcrew", + "hall:killnum", + "hall:killrate", + "hall:killrate_person", + "hall:tirate", + "hall:warnum", + "hall:winrate" + ] + ], + [ + "【27기】Oz Vessalius", + 75, + 16, + 92, + "che_event_신산", + [ + 25935, + 10913, + 24946, + 422082, + 46168 + ], + 1, + "21780f2.jpg?=20200812", + 27, + "che_200813_3JgP", + 32, + [ + "hall:dex4", + "hall:dex5", + "hall:experience", + "hall:killcrew", + "hall:killrate", + "hall:occupied", + "hall:tirate" + ] + ], + [ + "【27기】김나영", + 73, + 92, + 16, + "che_event_위압", + [ + 59501, + 279824, + 20812, + 68418, + 87778 + ], + 1, + "c90a3d4.jpg?=20190905", + 27, + "che_200813_3JgP", + 33, + [ + "hall:dex1", + "hall:dex2", + "hall:dex5", + "hall:firenum", + "hall:killrate", + "hall:killrate_person", + "hall:tsrate" + ] + ], + [ + "【27기】무한파워안경", + 17, + 70, + 94, + "che_event_신산", + [ + 0, + 0, + 0, + 0, + 0 + ], + 1, + "b7e1a1f.jpg?=20180525", + 27, + "che_200813_3JgP", + 34, + [ + "hall:tirate" + ] + ], + [ + "【27기】좌우쌍욍검유비", + 88, + 76, + 15, + "che_event_공성", + [ + 1930, + 49445, + 350730, + 51476, + 127117 + ], + 1, + "b9cb94e.jpg?=20200805", + 27, + "che_200813_3JgP", + 36, + [ + "chief:6", + "hall:dedication", + "hall:dex2", + "hall:dex3", + "hall:dex5", + "hall:experience", + "hall:killcrew", + "hall:killrate", + "hall:occupied", + "hall:tlrate" + ] + ], + [ + "【27기】독구", + 77, + 15, + 90, + "che_event_신산", + [ + 13756, + 39987, + 36335, + 519343, + 19490 + ], + 1, + "b769004.png?=20200726", + 27, + "che_200813_3JgP", + 37, + [ + "chief:12", + "hall:dedication", + "hall:dex2", + "hall:dex4", + "hall:experience", + "hall:killcrew", + "hall:killcrew_person", + "hall:killnum", + "hall:killrate", + "hall:killrate_person", + "hall:tirate", + "hall:warnum" + ] + ], + [ + "【27기】티와즈", + 76, + 88, + 16, + "che_event_견고", + [ + 556071, + 10300, + 11065, + 10215, + 14337 + ], + 1, + "b033007.jpg?=20200813", + 27, + "che_200813_3JgP", + 38, + [ + "chief:10", + "hall:betgold", + "hall:dedication", + "hall:dex1", + "hall:experience", + "hall:killcrew", + "hall:killcrew_person", + "hall:killnum", + "hall:killrate", + "hall:killrate_person", + "hall:occupied", + "hall:tsrate", + "hall:warnum" + ] + ], + [ + "【27기】료우기시키", + 88, + 78, + 15, + "che_event_돌격", + [ + 27311, + 232365, + 152840, + 73882, + 35427 + ], + 1, + "559083f.jpg?=20190905", + 27, + "che_200813_3JgP", + 39, + [ + "hall:dex2", + "hall:dex3", + "hall:occupied", + "hall:tlrate" + ] + ], + [ + "【27기】카이스트", + 77, + 15, + 88, + "che_event_귀병", + [ + 44185, + 31197, + 24729, + 378695, + 18448 + ], + 1, + "9361ef8.jpg?=20180907", + 27, + "che_200813_3JgP", + 40, + [ + "hall:dex1", + "hall:dex2", + "hall:dex4", + "hall:firenum", + "hall:killcrew_person" + ] + ], + [ + "【27기】미즈하라 치즈루", + 93, + 75, + 15, + "che_event_저격", + [ + 24606, + 14798, + 382590, + 109486, + 26909 + ], + 1, + "29b7b6e.gif?=20200814", + 27, + "che_200813_3JgP", + 41, + [ + "hall:dex3", + "hall:killcrew", + "hall:killcrew_person", + "hall:killnum", + "hall:tlrate", + "hall:tsrate", + "hall:warnum", + "hall:winrate" + ] + ], + [ + "【27기】만샘", + 76, + 15, + 91, + "che_event_의술", + [ + 6157, + 31823, + 34012, + 367505, + 30094 + ], + 1, + "4a206a1.jpg?=20181122", + 27, + "che_200813_3JgP", + 42, + [ + "hall:dedication", + "hall:dex2", + "hall:dex4" + ] + ], + [ + "【27기】갈근", + 15, + 76, + 90, + "che_event_필살", + [ + 0, + 0, + 0, + 0, + 0 + ], + 0, + "default.jpg", + 27, + "che_200813_3JgP", + 44, + [ + "hall:firenum" + ] + ], + [ + "【27기】카오스피닉스", + 15, + 71, + 94, + "che_event_집중", + [ + 0, + 0, + 0, + 0, + 0 + ], + 1, + "7f80b2f.jpg?=20190715", + 27, + "che_200813_3JgP", + 45, + [ + "hall:tirate" + ] + ], + [ + "【27기】.", + 89, + 76, + 16, + "che_event_척사", + [ + 381657, + 27108, + 30955, + 88955, + 28368 + ], + 0, + "default.jpg", + 27, + "che_200813_3JgP", + 47, + [ + "chief:8", + "hall:dedication", + "hall:dex1", + "hall:experience", + "hall:killcrew", + "hall:killrate", + "hall:killrate_person", + "hall:occupied", + "hall:tlrate", + "hall:warnum" + ] + ], + [ + "【27기】DDDD", + 86, + 15, + 79, + "che_event_신산", + [ + 7092, + 17438, + 43824, + 429534, + 6462 + ], + 1, + "a1ad420.jpg?=20200425", + 27, + "che_200813_3JgP", + 48, + [ + "chief:5", + "hall:dex4" + ] + ], + [ + "【27기】낙지꿈", + 74, + 16, + 91, + "che_event_신산", + [ + 45995, + 10026, + 20324, + 258916, + 10631 + ], + 0, + "default.jpg", + 27, + "che_200813_3JgP", + 50, + [ + "hall:dex1", + "hall:firenum", + "hall:tirate", + "hall:winrate" + ] + ], + [ + "【27기】10068", + 75, + 15, + 90, + "che_event_환술", + [ + 6406, + 18783, + 34572, + 302122, + 39794 + ], + 0, + "default.jpg", + 27, + "che_200813_3JgP", + 51, + [ + "hall:dex5" + ] + ], + [ + "【27기】시뉴카린스택계산기", + 78, + 15, + 89, + "che_event_저격", + [ + 28753, + 22731, + 42592, + 361818, + 40488 + ], + 1, + "59fd00.png?=20200717", + 27, + "che_200813_3JgP", + 52, + [ + "hall:dex5", + "hall:ttrate" + ] + ], + [ + "【27기】불반도", + 74, + 17, + 92, + "che_event_신중", + [ + 40918, + 14960, + 26391, + 211317, + 10188 + ], + 0, + "default.jpg", + 27, + "che_200813_3JgP", + 54, + [ + "hall:dex1", + "hall:ttrate" + ] + ], + [ + "【27기】따당따당", + 86, + 79, + 15, + "che_event_돌격", + [ + 33281, + 22170, + 169360, + 46034, + 29983 + ], + 1, + "99cd27f.gif?=20190606", + 27, + "che_200813_3JgP", + 55, + [ + "hall:dex3", + "hall:tlrate", + "hall:tsrate" + ] + ], + [ + "【27기】레벤", + 90, + 76, + 15, + "che_event_척사", + [ + 120441, + 235217, + 47229, + 94905, + 17168 + ], + 0, + "default.jpg", + 27, + "che_200813_3JgP", + 58, + [ + "hall:dex1", + "hall:dex2", + "hall:experience", + "hall:firenum", + "hall:killcrew_person", + "hall:killnum", + "hall:occupied", + "hall:tlrate", + "hall:warnum", + "hall:winrate" + ] + ], + [ + "【27기】일이석우", + 74, + 15, + 90, + "che_event_신산", + [ + 22677, + 3107, + 22321, + 169066, + 21499 + ], + 1, + "9c2026b.jpg?=20200527", + 27, + "che_200813_3JgP", + 59, + [ + "hall:firenum" + ] + ], + [ + "【27기】미스터트롯예매기원", + 16, + 71, + 94, + "che_event_신산", + [ + 0, + 0, + 0, + 0, + 0 + ], + 0, + "default.jpg", + 27, + "che_200813_3JgP", + 61, + [ + "hall:dedication", + "hall:firenum" + ] + ], + [ + "【27기】민토의속마음", + 75, + 16, + 91, + "che_event_신중", + [ + 16200, + 23263, + 5382, + 401151, + 4961 + ], + 1, + "e610ff7.gif?=20200813", + 27, + "che_200813_3JgP", + 75, + [ + "hall:dex4", + "hall:killcrew_person", + "hall:killnum", + "hall:winrate" + ] + ], + [ + "【27기】건방진노예", + 75, + 15, + 89, + "che_event_신중", + [ + 27021, + 12661, + 21393, + 286784, + 10487 + ], + 0, + "default.jpg", + 27, + "che_200813_3JgP", + 78, + [ + "hall:winrate" + ] + ], + [ + "【27기】임사영", + 72, + 15, + 91, + "che_event_신중", + [ + 8874, + 10068, + 10408, + 64188, + 9078 + ], + 1, + "7f9473e.gif?=20200211", + 27, + "che_200813_3JgP", + 82, + [ + "hall:dedication", + "hall:tirate" + ] + ], + [ + "【27기】크류", + 75, + 89, + 17, + "che_event_척사", + [ + 6631, + 27238, + 154457, + 40746, + 48676 + ], + 1, + "51540ea.jpg?=20200425", + 27, + "che_200813_3JgP", + 86, + [ + "hall:dex3", + "hall:dex5", + "hall:ttrate" + ] + ], + [ + "【27기】asdf", + 88, + 78, + 15, + "che_event_무쌍", + [ + 23286, + 81912, + 18007, + 45249, + 2397 + ], + 0, + "default.jpg", + 27, + "che_200813_3JgP", + 89, + [ + "hall:dex2", + "hall:tlrate", + "hall:ttrate" + ] + ], + [ + "【27기】시뉴카린", + 75, + 16, + 90, + "che_event_환술", + [ + 12433, + 27173, + 41403, + 367167, + 25788 + ], + 1, + "4d0310a.gif?=20200814", + 27, + "che_200813_3JgP", + 91, + [ + "chief:7", + "hall:dex4", + "hall:killrate_person", + "hall:tirate" + ] + ], + [ + "【27기】오이슬", + 15, + 80, + 85, + "che_event_신산", + [ + 4038, + 0, + 0, + 14464, + 4097 + ], + 0, + "default.jpg", + 27, + "che_200813_3JgP", + 99, + [ + "hall:firenum", + "hall:tsrate" + ] + ], + [ + "【27기】개미호랑이", + 74, + 16, + 90, + "che_event_신중", + [ + 5946, + 21933, + 38387, + 290896, + 20432 + ], + 1, + "9e0429e.jpg?=20200313", + 27, + "che_200813_3JgP", + 117, + [ + "hall:killrate", + "hall:killrate_person", + "hall:ttrate" + ] + ], + [ + "【27기】네시", + 75, + 15, + 89, + "che_event_공성", + [ + 6498, + 11184, + 23694, + 186586, + 95806 + ], + 0, + "default.jpg", + 27, + "che_200813_3JgP", + 130, + [ + "hall:dex5", + "hall:occupied", + "hall:tirate", + "hall:ttrate" + ] + ], + [ + "【27기】구독독구해주세요", + 75, + 15, + 90, + "che_event_신중", + [ + 5145, + 8560, + 35205, + 203873, + 35600 + ], + 0, + "default.jpg", + 27, + "che_200813_3JgP", + 164, + [ + "hall:ttrate" + ] + ], + [ + "【27기】smile", + 16, + 77, + 85, + "che_event_징병", + [ + 0, + 0, + 0, + 2294, + 275 + ], + 0, + "default.jpg", + 27, + "che_200813_3JgP", + 195, + [ + "hall:firenum", + "hall:ttrate" + ] + ], + [ + "【28기】숨질래", + 75, + 15, + 94, + "che_event_반계", + [ + 6674, + 11915, + 20850, + 167781, + 21523 + ], + 1, + "7a86b2f.webp?=20200826", + 28, + "che_200910_cWTH", + 5, + [ + "hall:occupied", + "hall:tirate" + ] + ], + [ + "【28기】하우젤", + 75, + 15, + 93, + "che_event_필살", + [ + 12922, + 34062, + 17431, + 324008, + 21805 + ], + 1, + "dcff9fd.jpg?=20180823", + 28, + "che_200910_cWTH", + 9, + [ + "hall:dex4", + "hall:ttrate" + ] + ], + [ + "【28기】10068", + 74, + 92, + 15, + "che_event_격노", + [ + 117983, + 38024, + 27309, + 42003, + 7518 + ], + 0, + "default.jpg", + 28, + "che_200910_cWTH", + 10, + [ + "hall:dex1", + "hall:firenum", + "hall:tsrate" + ] + ], + [ + "【28기】플라", + 90, + 77, + 16, + "che_event_돌격", + [ + 37546, + 45018, + 197291, + 45059, + 24196 + ], + 1, + "816bde9.jpg?=20200716", + 28, + "che_200910_cWTH", + 11, + [ + "hall:dex2", + "hall:dex3", + "hall:occupied", + "hall:tlrate", + "hall:ttrate", + "hall:winrate" + ] + ], + [ + "【28기】그저늅늅", + 74, + 16, + 94, + "che_event_집중", + [ + 29189, + 40126, + 16335, + 207133, + 26108 + ], + 1, + "5cedbb3.jpg?=20190817", + 28, + "che_200910_cWTH", + 12, + [ + "hall:dex2", + "hall:killrate_person", + "hall:tirate", + "hall:winrate" + ] + ], + [ + "【28기】리화", + 15, + 74, + 94, + "che_event_반계", + [ + 0, + 0, + 0, + 0, + 0 + ], + 1, + "57697e3.jpg?=20200910", + 28, + "che_200910_cWTH", + 14, + [ + "hall:dedication", + "hall:tirate" + ] + ], + [ + "【28기】이초홍", + 16, + 89, + 78, + "che_event_돌격", + [ + 0, + 0, + 0, + 0, + 0 + ], + 1, + "641883f.jpg?=20200910", + 28, + "che_200910_cWTH", + 16, + [ + "hall:firenum", + "hall:tsrate" + ] + ], + [ + "【28기】낙지꿈", + 75, + 16, + 91, + "che_event_환술", + [ + 49689, + 24687, + 49890, + 372449, + 4668 + ], + 0, + "default.jpg", + 28, + "che_200910_cWTH", + 22, + [ + "hall:dex1", + "hall:dex3", + "hall:dex4", + "hall:firenum", + "hall:killcrew", + "hall:killcrew_person", + "hall:warnum" + ] + ], + [ + "【28기】카이스트", + 75, + 15, + 91, + "che_event_신중", + [ + 13005, + 10025, + 31132, + 243434, + 26760 + ], + 1, + "9361ef8.jpg?=20180907", + 28, + "che_200910_cWTH", + 23, + [ + "hall:occupied", + "hall:ttrate" + ] + ], + [ + "【28기】호두농구왕왕쌍", + 89, + 75, + 15, + "che_event_위압", + [ + 13559, + 31626, + 243416, + 44992, + 84661 + ], + 1, + "889056.jpg?=20200910", + 28, + "che_200910_cWTH", + 28, + [ + "hall:dedication", + "hall:dex3", + "hall:dex5", + "hall:killrate", + "hall:tlrate" + ] + ], + [ + "【28기】네시", + 75, + 15, + 92, + "che_event_신중", + [ + 32073, + 24821, + 24183, + 347579, + 33880 + ], + 0, + "default.jpg", + 28, + "che_200910_cWTH", + 30, + [ + "chief:9", + "hall:dedication", + "hall:dex4", + "hall:dex5", + "hall:experience", + "hall:killnum", + "hall:killrate", + "hall:killrate_person", + "hall:occupied", + "hall:winrate" + ] + ], + [ + "【28기】임사영", + 74, + 15, + 93, + "che_event_척사", + [ + 1197, + 9238, + 13259, + 117696, + 7349 + ], + 1, + "7f9473e.gif?=20200211", + 28, + "che_200910_cWTH", + 32, + [ + "hall:winrate" + ] + ], + [ + "【28기】smile", + 75, + 15, + 92, + "che_event_신산", + [ + 8491, + 27827, + 14724, + 146641, + 6234 + ], + 0, + "default.jpg", + 28, + "che_200910_cWTH", + 33, + [ + "hall:dedication" + ] + ], + [ + "【28기】클로토", + 76, + 91, + 15, + "che_event_견고", + [ + 22608, + 17732, + 418884, + 64188, + 16802 + ], + 1, + "c0a2d90.jpg?=20200910", + 28, + "che_200910_cWTH", + 36, + [ + "hall:betgold", + "hall:dex3", + "hall:experience", + "hall:killcrew", + "hall:killcrew_person", + "hall:killnum", + "hall:killrate", + "hall:killrate_person", + "hall:occupied", + "hall:tsrate", + "hall:warnum", + "hall:winrate" + ] + ], + [ + "【28기】나누기", + 75, + 15, + 89, + "che_event_집중", + [ + 29650, + 15283, + 15334, + 269656, + 42610 + ], + 1, + "913a59.png?=20200910", + 28, + "che_200910_cWTH", + 37, + [ + "chief:7", + "hall:dedication", + "hall:dex4", + "hall:dex5" + ] + ], + [ + "【28기】카류", + 84, + 83, + 16, + "che_event_위압", + [ + 7089, + 55927, + 500966, + 75676, + 28165 + ], + 1, + "1a5835b.jpg?=20200905", + 28, + "che_200910_cWTH", + 38, + [ + "chief:10", + "hall:dedication", + "hall:dex2", + "hall:dex3", + "hall:experience", + "hall:killcrew", + "hall:killcrew_person", + "hall:killnum", + "hall:killrate", + "hall:killrate_person", + "hall:occupied", + "hall:tlrate", + "hall:tsrate", + "hall:warnum", + "hall:winrate" + ] + ], + [ + "【28기】하루1분", + 73, + 15, + 93, + "che_event_신중", + [ + 9558, + 17184, + 15922, + 222769, + 22134 + ], + 0, + "default.jpg", + 28, + "che_200910_cWTH", + 40, + [ + "hall:ttrate" + ] + ], + [ + "【28기】병리학적자세", + 75, + 15, + 93, + "che_event_집중", + [ + 33042, + 13166, + 8892, + 229034, + 32235 + ], + 1, + "3679089.jpg?=20180629", + 28, + "che_200910_cWTH", + 41, + [ + "hall:dex5", + "hall:experience", + "hall:killrate", + "hall:killrate_person", + "hall:occupied", + "hall:tirate" + ] + ], + [ + "【28기】Dok2", + 76, + 15, + 92, + "che_event_신산", + [ + 15645, + 18476, + 29407, + 458343, + 22932 + ], + 1, + "41f83a4.jpg?=20200910", + 28, + "che_200910_cWTH", + 42, + [ + "chief:12", + "hall:dedication", + "hall:dex4", + "hall:experience", + "hall:killcrew", + "hall:killcrew_person", + "hall:killnum", + "hall:killrate", + "hall:killrate_person", + "hall:occupied" + ] + ], + [ + "【28기】초코맛국수", + 74, + 15, + 94, + "che_event_반계", + [ + 22968, + 8249, + 6181, + 279734, + 40911 + ], + 1, + "4bcd3f5.jpg?=20200904", + 28, + "che_200910_cWTH", + 43, + [ + "hall:dedication", + "hall:dex4", + "hall:dex5", + "hall:experience", + "hall:occupied", + "hall:tirate", + "hall:ttrate", + "hall:winrate" + ] + ], + [ + "【28기】킹구", + 90, + 78, + 15, + "che_event_위압", + [ + 12717, + 412793, + 13330, + 30416, + 6219 + ], + 1, + "fb3c625.gif?=20190428", + 28, + "che_200910_cWTH", + 44, + [ + "hall:dex2", + "hall:killrate" + ] + ], + [ + "【28기】Per", + 87, + 81, + 15, + "che_event_위압", + [ + 31187, + 494344, + 3253, + 110288, + 24963 + ], + 1, + "2fa4389.jpg?=20200910", + 28, + "che_200910_cWTH", + 45, + [ + "chief:11", + "hall:dedication", + "hall:dex2", + "hall:experience", + "hall:killcrew", + "hall:killcrew_person", + "hall:killnum", + "hall:killrate", + "hall:killrate_person", + "hall:occupied", + "hall:tlrate", + "hall:warnum" + ] + ], + [ + "【28기】Hide_D", + 75, + 16, + 90, + "che_event_척사", + [ + 3714, + 16503, + 9420, + 133889, + 58423 + ], + 1, + "9f0a2a8.png?=20200106", + 28, + "che_200910_cWTH", + 46, + [ + "hall:dex5", + "hall:tirate" + ] + ], + [ + "【28기】광성자", + 94, + 73, + 15, + "che_event_견고", + [ + 17184, + 38044, + 170768, + 46389, + 127582 + ], + 1, + "1c59b40.jpg?=20200929", + 28, + "che_200910_cWTH", + 47, + [ + "chief:6", + "hall:dex2", + "hall:dex3", + "hall:dex5", + "hall:experience", + "hall:killrate", + "hall:tlrate" + ] + ], + [ + "【28기】전각 9글자", + 79, + 15, + 91, + "che_event_집중", + [ + 40738, + 23533, + 54122, + 555877, + 16563 + ], + 0, + "default.jpg", + 28, + "che_200910_cWTH", + 48, + [ + "chief:5", + "hall:dex1", + "hall:dex3", + "hall:dex4", + "hall:experience", + "hall:firenum", + "hall:killcrew", + "hall:killcrew_person", + "hall:killnum", + "hall:killrate_person", + "hall:tirate", + "hall:tlrate", + "hall:warnum", + "hall:winrate" + ] + ], + [ + "【28기】일이석우", + 76, + 15, + 92, + "che_event_집중", + [ + 30266, + 22715, + 36369, + 421288, + 8146 + ], + 1, + "9c2026b.jpg?=20200527", + 28, + "che_200910_cWTH", + 49, + [ + "hall:dex3", + "hall:dex4", + "hall:firenum", + "hall:killcrew", + "hall:killcrew_person", + "hall:killnum", + "hall:warnum" + ] + ], + [ + "【28기】1", + 85, + 80, + 16, + "che_event_위압", + [ + 21956, + 52106, + 129707, + 47076, + 8879 + ], + 0, + "default.jpg", + 28, + "che_200910_cWTH", + 50, + [ + "hall:dex2", + "hall:dex3", + "hall:tsrate", + "hall:ttrate" + ] + ], + [ + "【28기】평민킬러", + 78, + 90, + 15, + "che_event_위압", + [ + 384279, + 9522, + 26489, + 71101, + 38383 + ], + 1, + "fb23a32.jpg?=20190904", + 28, + "che_200910_cWTH", + 51, + [ + "hall:dex1", + "hall:dex5", + "hall:firenum", + "hall:killcrew", + "hall:killnum", + "hall:killrate", + "hall:killrate_person", + "hall:tsrate", + "hall:ttrate", + "hall:winrate" + ] + ], + [ + "【28기】갈근", + 16, + 73, + 94, + "che_event_저격", + [ + 0, + 0, + 0, + 0, + 0 + ], + 0, + "default.jpg", + 28, + "che_200910_cWTH", + 52, + [ + "hall:dedication", + "hall:tirate" + ] + ], + [ + "【28기】시뉴카린임포스터", + 76, + 90, + 15, + "che_event_돌격", + [ + 243109, + 19191, + 21407, + 75205, + 30235 + ], + 1, + "59fd00.png?=20200717", + 28, + "che_200910_cWTH", + 54, + [ + "hall:dex1", + "hall:dex5", + "hall:tsrate", + "hall:ttrate" + ] + ], + [ + "【28기】로리", + 79, + 88, + 15, + "che_event_견고", + [ + 55755, + 376241, + 31380, + 72421, + 54233 + ], + 1, + "50794a6.jpg?=20190923", + 28, + "che_200910_cWTH", + 55, + [ + "hall:dex1", + "hall:dex2", + "hall:dex5", + "hall:killcrew", + "hall:killcrew_person", + "hall:killnum", + "hall:tlrate", + "hall:tsrate", + "hall:warnum" + ] + ], + [ + "【28기】하루10분영어야나두", + 76, + 15, + 90, + "che_event_집중", + [ + 4293, + 37851, + 3682, + 123181, + 11194 + ], + 1, + "c300801.jpg?=20200910", + 28, + "che_200910_cWTH", + 56, + [ + "hall:ttrate" + ] + ], + [ + "【28기】불반도", + 77, + 15, + 90, + "che_event_환술", + [ + 48158, + 28371, + 34182, + 367456, + 8475 + ], + 0, + "default.jpg", + 28, + "che_200910_cWTH", + 57, + [ + "hall:dex1", + "hall:dex4", + "hall:warnum" + ] + ], + [ + "【28기】아리아", + 74, + 93, + 15, + "che_event_척사", + [ + 221784, + 5449, + 32195, + 72028, + 16420 + ], + 1, + "f7358b.jpg?=20200822", + 28, + "che_200910_cWTH", + 71, + [ + "hall:dex1", + "hall:firenum", + "hall:tsrate" + ] + ], + [ + "【28기】민트토끼", + 16, + 73, + 94, + "che_event_신산", + [ + 0, + 0, + 0, + 0, + 0 + ], + 1, + "a381f84.gif?=20200911", + 28, + "che_200910_cWTH", + 79, + [ + "hall:firenum" + ] + ], + [ + "【28기】외심장", + 76, + 15, + 90, + "che_event_신중", + [ + 16021, + 6026, + 21154, + 177875, + 16952 + ], + 1, + "36110cd.jpg?=20180826", + 28, + "che_200910_cWTH", + 95, + [ + "hall:tirate", + "hall:tlrate" + ] + ], + [ + "【28기】000000000", + 15, + 75, + 91, + "che_event_신산", + [ + 0, + 0, + 0, + 0, + 0 + ], + 0, + "default.jpg", + 28, + "che_200910_cWTH", + 113, + [ + "hall:firenum", + "hall:tirate" + ] + ], + [ + "【28기】건방진노예", + 77, + 15, + 91, + "che_event_신중", + [ + 33795, + 36995, + 30258, + 369123, + 5936 + ], + 0, + "default.jpg", + 28, + "che_200910_cWTH", + 124, + [ + "hall:dex4", + "hall:killcrew_person", + "hall:ttrate", + "hall:warnum" + ] + ], + [ + "【28기】레벤", + 87, + 80, + 15, + "che_event_저격", + [ + 16579, + 48214, + 462530, + 89288, + 23546 + ], + 0, + "default.jpg", + 28, + "che_200910_cWTH", + 139, + [ + "chief:8", + "hall:dex2", + "hall:dex3", + "hall:experience", + "hall:firenum", + "hall:killcrew", + "hall:killcrew_person", + "hall:killnum", + "hall:killrate_person", + "hall:tlrate", + "hall:warnum", + "hall:winrate" + ] + ], + [ + "【28기】조혜련", + 86, + 79, + 15, + "che_event_격노", + [ + 55461, + 7585, + 0, + 23171, + 0 + ], + 1, + "e15df5b.png?=20200716", + 28, + "che_200910_cWTH", + 227, + [ + "hall:dex1" + ] + ], + [ + "【28기】ZL", + 83, + 15, + 76, + "che_event_집중", + [ + 16143, + 11560, + 13934, + 100111, + 6971 + ], + 0, + "default.jpg", + 28, + "che_200910_cWTH", + 255, + [ + "hall:tlrate" + ] + ], + [ + "【28기】제로원", + 75, + 86, + 15, + "che_event_무쌍", + [ + 39183, + 135884, + 18796, + 67457, + 5973 + ], + 1, + "64b105a.jpg?=20200921", + 28, + "che_200910_cWTH", + 312, + [ + "hall:dex1", + "hall:dex2", + "hall:tsrate" + ] + ], + [ + "【29기】네시", + 73, + 15, + 88, + "che_event_신중", + [ + 3770, + 13065, + 3003, + 125064, + 16567 + ], + 0, + "default.jpg", + 29, + "che_201111_33ml", + 6, + [ + "chief:11", + "hall:dedication", + "hall:killrate", + "hall:killrate_person" + ] + ], + [ + "【29기】둘리", + 74, + 15, + 87, + "che_event_집중", + [ + 14960, + 17290, + 17739, + 141582, + 21609 + ], + 1, + "df25f02.jpg?=20201114", + 29, + "che_201111_33ml", + 8, + [ + "hall:dex2", + "hall:dex4", + "hall:killcrew_person" + ] + ], + [ + "【29기】빼빼로", + 74, + 86, + 15, + "che_event_돌격", + [ + 62472, + 49336, + 102711, + 34245, + 39102 + ], + 1, + "5d0c1e1.png?=20201111", + 29, + "che_201111_33ml", + 10, + [ + "chief:10", + "hall:dedication", + "hall:dex1", + "hall:dex2", + "hall:dex3", + "hall:dex5", + "hall:experience", + "hall:killcrew", + "hall:killnum", + "hall:killrate", + "hall:killrate_person", + "hall:occupied", + "hall:tsrate", + "hall:warnum", + "hall:winrate" + ] + ], + [ + "【29기】이드", + 74, + 86, + 15, + "che_event_견고", + [ + 9274, + 9709, + 200170, + 31005, + 20057 + ], + 1, + "641883f.jpg?=20200910", + 29, + "che_201111_33ml", + 11, + [ + "hall:dex3", + "hall:firenum", + "hall:killcrew", + "hall:killcrew_person", + "hall:killnum", + "hall:occupied", + "hall:tsrate", + "hall:winrate" + ] + ], + [ + "【29기】보스곰", + 74, + 16, + 86, + "che_event_징병", + [ + 5773, + 10638, + 9569, + 140241, + 12532 + ], + 1, + "773556e.gif?=20190822", + 29, + "che_201111_33ml", + 12, + [ + "chief:7", + "hall:tirate", + "hall:tlrate" + ] + ], + [ + "【29기】기", + 89, + 72, + 15, + "che_event_필살", + [ + 11265, + 12229, + 159370, + 39591, + 20039 + ], + 0, + "default.jpg", + 29, + "che_201111_33ml", + 14, + [ + "hall:dex3", + "hall:killcrew_person", + "hall:tlrate", + "hall:tsrate", + "hall:ttrate", + "hall:warnum" + ] + ], + [ + "【29기】잭프로스트", + 75, + 15, + 86, + "che_event_척사", + [ + 14350, + 5835, + 3653, + 73127, + 62457 + ], + 1, + "733f3b9.jpg?=20201111", + 29, + "che_201111_33ml", + 17, + [ + "hall:dedication", + "hall:dex5", + "hall:killrate_person", + "hall:tlrate", + "hall:ttrate" + ] + ], + [ + "【29기】1시30분", + 89, + 73, + 15, + "che_event_견고", + [ + 6227, + 16004, + 292895, + 33442, + 26718 + ], + 0, + "default.jpg", + 29, + "che_201111_33ml", + 18, + [ + "chief:12", + "hall:betgold", + "hall:betwin", + "hall:betwingold", + "hall:dedication", + "hall:dex3", + "hall:dex5", + "hall:experience", + "hall:killcrew", + "hall:killcrew_person", + "hall:killnum", + "hall:killrate", + "hall:killrate_person", + "hall:occupied", + "hall:tlrate", + "hall:warnum", + "hall:winrate" + ] + ], + [ + "【29기】로비", + 15, + 71, + 91, + "che_event_징병", + [ + 0, + 0, + 0, + 0, + 0 + ], + 1, + "708a981.png?=20200402", + 29, + "che_201111_33ml", + 20, + [ + "hall:tirate", + "hall:tsrate", + "hall:ttrate" + ] + ], + [ + "【29기】나타", + 74, + 15, + 88, + "che_event_집중", + [ + 36198, + 2357, + 3981, + 246405, + 32928 + ], + 1, + "c17b4b2.jpg?=20201111", + 29, + "che_201111_33ml", + 21, + [ + "hall:dex1", + "hall:dex4", + "hall:dex5", + "hall:experience", + "hall:killcrew", + "hall:killcrew_person", + "hall:killnum", + "hall:killrate", + "hall:killrate_person", + "hall:occupied", + "hall:tirate", + "hall:warnum", + "hall:winrate" + ] + ], + [ + "【29기】야가다마스터", + 77, + 85, + 15, + "che_event_저격", + [ + 0, + 22627, + 155612, + 31020, + 23839 + ], + 0, + "default.jpg", + 29, + "che_201111_33ml", + 22, + [ + "chief:6", + "hall:dedication", + "hall:dex2", + "hall:dex3", + "hall:experience", + "hall:occupied", + "hall:tsrate", + "hall:ttrate", + "hall:winrate" + ] + ], + [ + "【29기】일이석우", + 72, + 15, + 89, + "che_event_저격", + [ + 4208, + 2648, + 3852, + 123975, + 26703 + ], + 1, + "9c2026b.jpg?=20200527", + 29, + "che_201111_33ml", + 26, + [ + "hall:dedication", + "hall:experience", + "hall:killrate", + "hall:tirate" + ] + ], + [ + "【29기】낙지꿈", + 71, + 15, + 87, + "che_event_신중", + [ + 10409, + 2823, + 3628, + 145487, + 30121 + ], + 0, + "default.jpg", + 29, + "che_201111_33ml", + 30, + [ + "hall:dex4", + "hall:dex5", + "hall:experience", + "hall:killrate", + "hall:killrate_person", + "hall:occupied", + "hall:tirate" + ] + ], + [ + "【29기】껄룩", + 74, + 85, + 16, + "che_event_저격", + [ + 106366, + 5100, + 0, + 21741, + 20446 + ], + 0, + "default.jpg", + 29, + "che_201111_33ml", + 37, + [ + "hall:dedication", + "hall:dex1", + "hall:experience", + "hall:killrate", + "hall:killrate_person", + "hall:ttrate" + ] + ], + [ + "【29기】도우너", + 75, + 85, + 15, + "che_event_돌격", + [ + 126988, + 10011, + 1820, + 27450, + 13133 + ], + 1, + "55b37a2.jpg?=20201111", + 29, + "che_201111_33ml", + 39, + [ + "hall:dex1", + "hall:firenum", + "hall:killnum", + "hall:occupied", + "hall:tsrate", + "hall:ttrate", + "hall:winrate" + ] + ], + [ + "【29기】시딱마! 옥끼토끼!", + 75, + 15, + 87, + "che_event_징병", + [ + 18865, + 19779, + 8284, + 120765, + 17694 + ], + 1, + "c4e8391.gif?=20201111", + 29, + "che_201111_33ml", + 40, + [ + "hall:dex2", + "hall:tirate", + "hall:tlrate" + ] + ], + [ + "【29기】이즈미", + 74, + 15, + 86, + "che_event_신중", + [ + 7309, + 4430, + 4873, + 129565, + 22800 + ], + 1, + "5d37b46.jpg?=20201105", + 29, + "che_201111_33ml", + 41, + [ + "hall:tirate" + ] + ], + [ + "【29기】로리", + 73, + 15, + 88, + "che_event_집중", + [ + 0, + 6291, + 2373, + 186549, + 35041 + ], + 1, + "50794a6.jpg?=20190923", + 29, + "che_201111_33ml", + 45, + [ + "hall:dedication", + "hall:dex4", + "hall:dex5", + "hall:killcrew", + "hall:killrate", + "hall:killrate_person", + "hall:tirate" + ] + ], + [ + "【29기】앵벌스", + 82, + 75, + 15, + "che_event_무쌍", + [ + 8200, + 16316, + 0, + 5855, + 39790 + ], + 1, + "e15df5b.png?=20200716", + 29, + "che_201111_33ml", + 47, + [ + "hall:dex2", + "hall:dex5", + "hall:tlrate" + ] + ], + [ + "【29기】갈근", + 74, + 16, + 87, + "che_event_신중", + [ + 11696, + 7548, + 11825, + 163198, + 37843 + ], + 0, + "default.jpg", + 29, + "che_201111_33ml", + 49, + [ + "chief:5", + "hall:dex4", + "hall:dex5", + "hall:ttrate", + "hall:warnum" + ] + ], + [ + "【29기】I", + 74, + 88, + 15, + "che_event_보병", + [ + 113568, + 3852, + 31882, + 12954, + 7743 + ], + 0, + "default.jpg", + 29, + "che_201111_33ml", + 53, + [ + "hall:dex1", + "hall:dex3", + "hall:firenum", + "hall:tsrate" + ] + ], + [ + "【29기】코브라", + 75, + 15, + 87, + "che_event_저격", + [ + 16519, + 4181, + 8506, + 208875, + 17207 + ], + 1, + "1102963.jpg?=20201112", + 29, + "che_201111_33ml", + 56, + [ + "hall:dex4", + "hall:killcrew", + "hall:killcrew_person", + "hall:tirate", + "hall:tlrate", + "hall:warnum" + ] + ], + [ + "【29기】그저늅늅", + 73, + 87, + 15, + "che_event_무쌍", + [ + 24005, + 18846, + 104901, + 19928, + 20662 + ], + 1, + "5cedbb3.jpg?=20190817", + 29, + "che_201111_33ml", + 58, + [ + "hall:dex1", + "hall:dex2", + "hall:dex3", + "hall:firenum", + "hall:tsrate" + ] + ], + [ + "【29기】Vicpie", + 72, + 16, + 87, + "che_event_신중", + [ + 0, + 11476, + 10520, + 155774, + 24653 + ], + 1, + "c4a956e.png?=20201120", + 29, + "che_201111_33ml", + 59, + [ + "chief:9", + "hall:dedication", + "hall:dex4", + "hall:experience", + "hall:killnum", + "hall:occupied" + ] + ], + [ + "【29기】초코맛국수", + 75, + 16, + 84, + "che_event_저격", + [ + 3978, + 9405, + 8903, + 141528, + 48094 + ], + 1, + "4bcd3f5.jpg?=20200904", + 29, + "che_201111_33ml", + 60, + [ + "hall:dex5", + "hall:tlrate", + "hall:ttrate" + ] + ], + [ + "【29기】외심장", + 75, + 16, + 86, + "che_event_징병", + [ + 34513, + 24662, + 17991, + 176754, + 16421 + ], + 1, + "36110cd.jpg?=20180826", + 29, + "che_201111_33ml", + 63, + [ + "hall:betgold", + "hall:dex1", + "hall:dex2", + "hall:dex4", + "hall:killcrew_person", + "hall:ttrate", + "hall:warnum" + ] + ], + [ + "【29기】평민킬러", + 76, + 85, + 15, + "che_event_필살", + [ + 235256, + 4058, + 10652, + 21438, + 25208 + ], + 1, + "fb23a32.jpg?=20190904", + 29, + "che_201111_33ml", + 64, + [ + "chief:8", + "hall:dedication", + "hall:dex1", + "hall:experience", + "hall:killcrew", + "hall:killcrew_person", + "hall:killnum", + "hall:killrate", + "hall:killrate_person", + "hall:winrate" + ] + ], + [ + "【29기】민트토끼", + 73, + 16, + 87, + "che_event_신중", + [ + 11797, + 19044, + 4646, + 251880, + 13077 + ], + 1, + "e04b397.gif?=20201119", + 29, + "che_201111_33ml", + 68, + [ + "hall:dex2", + "hall:dex4", + "hall:firenum", + "hall:killcrew", + "hall:killcrew_person", + "hall:killnum", + "hall:killrate", + "hall:killrate_person", + "hall:occupied", + "hall:tirate", + "hall:warnum", + "hall:winrate" + ] + ], + [ + "【29기】조승상", + 87, + 72, + 16, + "che_event_척사", + [ + 205872, + 5254, + 26663, + 31698, + 18211 + ], + 1, + "bda7d37.jpg?=20200606", + 29, + "che_201111_33ml", + 76, + [ + "hall:dex1", + "hall:dex3", + "hall:killcrew", + "hall:killcrew_person", + "hall:killnum", + "hall:tlrate", + "hall:warnum" + ] + ], + [ + "【29기】수장", + 84, + 76, + 15, + "che_event_필살", + [ + 40848, + 170042, + 5282, + 36200, + 36530 + ], + 1, + "2a0afd0.jpg?=20201116", + 29, + "che_201111_33ml", + 91, + [ + "hall:dex1", + "hall:dex2", + "hall:dex5", + "hall:experience", + "hall:killcrew", + "hall:killnum", + "hall:occupied", + "hall:tlrate", + "hall:warnum", + "hall:winrate" + ] + ], + [ + "【29기】병리학적자세", + 73, + 15, + 88, + "che_event_집중", + [ + 4218, + 377, + 4898, + 70729, + 10126 + ], + 1, + "3679089.jpg?=20180629", + 29, + "che_201111_33ml", + 103, + [ + "hall:winrate" + ] + ], + [ + "【29기】마왕", + 71, + 85, + 17, + "che_event_저격", + [ + 0, + 10033, + 112335, + 25714, + 14310 + ], + 1, + "f7358b.jpg?=20200822", + 29, + "che_201111_33ml", + 109, + [ + "hall:dex3" + ] + ], + [ + "【29기】카오스피닉스", + 15, + 83, + 77, + "che_event_위압", + [ + 0, + 0, + 0, + 0, + 0 + ], + 1, + "7f80b2f.jpg?=20190715", + 29, + "che_201111_33ml", + 142, + [ + "hall:tsrate", + "hall:ttrate" + ] + ], + [ + "【29기】배규리", + 74, + 15, + 84, + "che_event_징병", + [ + 0, + 3898, + 4601, + 150071, + 23672 + ], + 1, + "74dec00.png?=20201114", + 29, + "che_201111_33ml", + 143, + [ + "hall:dex4" + ] + ], + [ + "【29기】료우기시키", + 80, + 76, + 15, + "che_event_기병", + [ + 0, + 2516, + 28781, + 10560, + 0 + ], + 1, + "559083f.jpg?=20190905", + 29, + "che_201111_33ml", + 153, + [ + "hall:dex3", + "hall:tsrate" + ] + ], + [ + "【29기】게르티카", + 82, + 75, + 17, + "che_event_격노", + [ + 0, + 77819, + 720, + 20825, + 6208 + ], + 0, + "default.jpg", + 29, + "che_201111_33ml", + 205, + [ + "hall:dex2" + ] + ], + [ + "【30기】⑦이드", + 69, + 79, + 9, + "che_event_환술", + [ + 96782, + 903159, + 65095, + 225631, + 22495 + ], + 1, + "5e36874.jpg?=20190126", + 30, + "che_201231_zpIW", + 7, + [ + "hall:dex1", + "hall:dex2", + "hall:occupied", + "hall:tirate", + "hall:ttrate", + "hall:winrate" + ] + ], + [ + "【30기】⑱Hide_D", + 87, + 10, + 88, + "che_event_저격", + [ + 74991, + 139082, + 209362, + 1820173, + 145056 + ], + 1, + "ee5accd.jpg?=20190411", + 30, + "che_201231_zpIW", + 9, + [ + "hall:dedication", + "hall:dex3", + "hall:dex4", + "hall:dex5", + "hall:experience", + "hall:killcrew", + "hall:killcrew_person", + "hall:tirate", + "hall:tlrate", + "hall:warnum" + ] + ], + [ + "【30기】㉗김나영", + 79, + 100, + 16, + "che_event_견고", + [ + 69042, + 70525, + 959824, + 71987, + 69759 + ], + 1, + "c90a3d4.jpg?=20190905", + 30, + "che_201231_zpIW", + 10, + [ + "chief:6", + "hall:dedication", + "hall:dex3", + "hall:killcrew", + "hall:killrate", + "hall:killrate_person", + "hall:tsrate", + "hall:ttrate", + "hall:warnum" + ] + ], + [ + "【30기】②도리도리반도리도리", + 91, + 89, + 10, + "che_event_견고", + [ + 43295, + 182952, + 2368257, + 344449, + 109689 + ], + 1, + "79cffda.png?=20180805", + 30, + "che_201231_zpIW", + 14, + [ + "hall:dex2", + "hall:dex3", + "hall:dex5", + "hall:experience", + "hall:killcrew", + "hall:killcrew_person", + "hall:killnum", + "hall:killrate", + "hall:killrate_person", + "hall:occupied", + "hall:tlrate", + "hall:tsrate", + "hall:warnum", + "hall:winrate" + ] + ], + [ + "【30기】㉓박일아", + 80, + 11, + 98, + "che_event_집중", + [ + 78867, + 114692, + 144924, + 2012183, + 84156 + ], + 1, + "8608979.gif?=20191024", + 30, + "che_201231_zpIW", + 16, + [ + "hall:dex4", + "hall:dex5", + "hall:killrate", + "hall:killrate_person", + "hall:occupied", + "hall:winrate" + ] + ], + [ + "【30기】②아저씨쨩", + 84, + 10, + 95, + "che_event_환술", + [ + 70253, + 261581, + 177594, + 2070229, + 99090 + ], + 1, + "dff1ae6.jpg?=20180729", + 30, + "che_201231_zpIW", + 17, + [ + "chief:9", + "hall:dedication", + "hall:dex2", + "hall:dex4", + "hall:dex5", + "hall:experience", + "hall:killcrew", + "hall:killcrew_person", + "hall:killnum", + "hall:killrate", + "hall:killrate_person", + "hall:occupied", + "hall:tirate", + "hall:tlrate", + "hall:ttrate", + "hall:warnum", + "hall:winrate" + ] + ], + [ + "【30기】⑫꼬리♡", + 73, + 10, + 90, + "che_event_견고", + [ + 24478, + 27771, + 20496, + 454170, + 34509 + ], + 1, + "844a93b.gif?=20190717", + 30, + "che_201231_zpIW", + 21, + [ + "hall:tsrate" + ] + ], + [ + "【30기】⑦한서진", + 82, + 87, + 9, + "che_event_위압", + [ + 99048, + 227225, + 2520764, + 532521, + 99172 + ], + 1, + "53f1ebd.jpg?=20190221", + 30, + "che_201231_zpIW", + 29, + [ + "hall:dex1", + "hall:dex2", + "hall:dex3", + "hall:dex5", + "hall:occupied", + "hall:tsrate", + "hall:warnum" + ] + ], + [ + "【30기】㉖수장", + 84, + 81, + 15, + "che_event_저격", + [ + 275020, + 9883, + 12463, + 43924, + 26502 + ], + 1, + "190d7ff.jpg?=20200312", + 30, + "che_201231_zpIW", + 31, + [ + "hall:dex1", + "hall:tlrate" + ] + ], + [ + "【30기】⑦이쓰미", + 75, + 9, + 80, + "che_event_징병", + [ + 121862, + 180870, + 148181, + 974504, + 24220 + ], + 1, + "fd6a0fd.jpg?=20181212", + 30, + "che_201231_zpIW", + 40, + [ + "hall:dex1", + "hall:dex2", + "hall:tirate" + ] + ], + [ + "【30기】㉓강지", + 101, + 80, + 10, + "che_event_무쌍", + [ + 67449, + 135593, + 2081166, + 269672, + 96729 + ], + 1, + "3a967d1.jpg?=20200129", + 30, + "che_201231_zpIW", + 41, + [ + "chief:8", + "hall:dedication", + "hall:dex3", + "hall:dex5", + "hall:experience", + "hall:killcrew", + "hall:killcrew_person", + "hall:killnum", + "hall:killrate", + "hall:killrate_person", + "hall:tsrate", + "hall:ttrate", + "hall:warnum", + "hall:winrate" + ] + ], + [ + "【30기】⑦이수임", + 71, + 9, + 89, + "che_event_신산", + [ + 120764, + 95125, + 158981, + 1172145, + 75638 + ], + 1, + "555823.jpg?=20190223", + 30, + "che_201231_zpIW", + 43, + [ + "hall:dex1", + "hall:firenum", + "hall:occupied", + "hall:tirate" + ] + ], + [ + "【30기】㉓랜갈덤근", + 80, + 10, + 100, + "che_event_신산", + [ + 79393, + 107246, + 139699, + 2388577, + 104027 + ], + 0, + "./default.jpg", + 30, + "che_201231_zpIW", + 44, + [ + "hall:betgold", + "hall:dedication", + "hall:dex4", + "hall:dex5", + "hall:experience", + "hall:killcrew", + "hall:killcrew_person", + "hall:killnum", + "hall:killrate", + "hall:killrate_person", + "hall:occupied", + "hall:tirate", + "hall:ttrate", + "hall:warnum", + "hall:winrate" + ] + ], + [ + "【30기】⑳Hide_D", + 78, + 10, + 92, + "che_event_신산", + [ + 51683, + 53193, + 64955, + 1407540, + 58158 + ], + 1, + "9f0a2a8.png?=20200106", + 30, + "che_201231_zpIW", + 55, + [ + "hall:dex4", + "hall:experience", + "hall:killcrew", + "hall:killcrew_person", + "hall:killnum", + "hall:tirate", + "hall:warnum" + ] + ], + [ + "【30기】⑧프로야구매니저", + 77, + 96, + 10, + "che_event_돌격", + [ + 732778, + 496411, + 103546, + 200447, + 80490 + ], + 1, + "2f51d31.jpg?=20190318", + 30, + "che_201231_zpIW", + 58, + [ + "hall:dex1", + "hall:dex2", + "hall:tsrate" + ] + ], + [ + "【30기】②Hide_D", + 79, + 10, + 91, + "che_event_집중", + [ + 58534, + 159520, + 140687, + 884041, + 42549 + ], + 1, + "21d378f.jpg?=20180630", + 30, + "che_201231_zpIW", + 59, + [ + "chief:7", + "hall:dedication", + "hall:dex2", + "hall:experience", + "hall:killrate" + ] + ], + [ + "【30기】②농다리", + 82, + 99, + 10, + "che_event_견고", + [ + 46608, + 1982697, + 162469, + 291309, + 108222 + ], + 1, + "eb2cf45.jpg?=20180805", + 30, + "che_201231_zpIW", + 60, + [ + "hall:dex2", + "hall:dex5", + "hall:firenum", + "hall:killcrew_person", + "hall:killnum", + "hall:killrate", + "hall:killrate_person", + "hall:tsrate", + "hall:ttrate" + ] + ], + [ + "【30기】㉓카이스트", + 79, + 10, + 98, + "che_event_반계", + [ + 118260, + 103772, + 160426, + 1577408, + 61662 + ], + 1, + "9361ef8.jpg?=20180907", + 30, + "che_201231_zpIW", + 62, + [ + "hall:dedication", + "hall:dex1", + "hall:dex4", + "hall:ttrate" + ] + ], + [ + "【30기】②명가의 수호자", + 80, + 12, + 93, + "che_event_집중", + [ + 66204, + 133920, + 261091, + 1702542, + 75377 + ], + 0, + "default.jpg", + 30, + "che_201231_zpIW", + 65, + [ + "hall:betgold", + "hall:betwin", + "hall:betwingold", + "hall:dex3", + "hall:dex4", + "hall:killcrew", + "hall:killcrew_person", + "hall:killnum", + "hall:killrate_person", + "hall:occupied", + "hall:tirate", + "hall:tlrate", + "hall:warnum", + "hall:winrate" + ] + ], + [ + "【30기】⑦김주영", + 79, + 9, + 76, + "che_event_척사", + [ + 99369, + 78503, + 151453, + 1211945, + 36168 + ], + 1, + "ecadeaf.png?=20190221", + 30, + "che_201231_zpIW", + 68, + [ + "hall:dex1", + "hall:tlrate" + ] + ], + [ + "【30기】㉓삼모몰라요", + 77, + 10, + 100, + "che_event_신산", + [ + 91147, + 82146, + 91833, + 1264114, + 49375 + ], + 0, + "./default.jpg", + 30, + "che_201231_zpIW", + 69, + [ + "hall:dex4", + "hall:experience", + "hall:killrate", + "hall:killrate_person", + "hall:winrate" + ] + ], + [ + "【30기】②모하지맨", + 81, + 92, + 10, + "che_event_돌격", + [ + 27372, + 1615515, + 133890, + 360936, + 68511 + ], + 0, + "./default.jpg", + 30, + "che_201231_zpIW", + 72, + [ + "hall:dex2", + "hall:killnum", + "hall:tlrate", + "hall:tsrate", + "hall:winrate" + ] + ], + [ + "【30기】⑦노루야캐요", + 75, + 9, + 87, + "che_event_반계", + [ + 96605, + 124703, + 203633, + 1015923, + 44988 + ], + 1, + "8212a8.jpg?=20190207", + 30, + "che_201231_zpIW", + 177, + [ + "hall:dedication", + "hall:dex3" + ] + ], + [ + "【30기】㉓독구", + 82, + 11, + 94, + "che_event_신산", + [ + 48939, + 44920, + 49274, + 1622000, + 53164 + ], + 1, + "ac701b0.jpg?=20180625", + 30, + "che_201231_zpIW", + 178, + [ + "chief:5", + "hall:dedication", + "hall:dex4", + "hall:experience", + "hall:killcrew", + "hall:killnum", + "hall:killrate", + "hall:killrate_person", + "hall:occupied", + "hall:tirate", + "hall:tlrate", + "hall:ttrate" + ] + ], + [ + "【30기】⑮아들", + 79, + 97, + 10, + "che_event_견고", + [ + 80039, + 150540, + 1695954, + 212758, + 65555 + ], + 1, + "97d501f.jpg?=20190926", + 30, + "che_201231_zpIW", + 180, + [ + "chief:10", + "hall:dedication", + "hall:dex3", + "hall:experience", + "hall:killcrew", + "hall:killcrew_person", + "hall:killnum", + "hall:tsrate", + "hall:warnum", + "hall:winrate" + ] + ], + [ + "【30기】②삼남매아빠", + 94, + 79, + 10, + "che_event_무쌍", + [ + 1487755, + 123974, + 196132, + 264386, + 78048 + ], + 0, + "default.jpg", + 30, + "che_201231_zpIW", + 207, + [ + "hall:dex1", + "hall:firenum", + "hall:tlrate", + "hall:ttrate" + ] + ], + [ + "【30기】⑦필터링", + 73, + 9, + 84, + "che_event_집중", + [ + 65405, + 116799, + 224266, + 1434646, + 59107 + ], + 0, + "default.jpg", + 30, + "che_201231_zpIW", + 246, + [ + "hall:dex3", + "hall:dex4", + "hall:killcrew_person", + "hall:tirate" + ] + ], + [ + "【30기】㉓등화", + 108, + 66, + 11, + "che_event_돌격", + [ + 6320, + 2735, + 15549, + 111940, + 1564119 + ], + 1, + "f11922a.png?=20200218", + 30, + "che_201231_zpIW", + 296, + [ + "hall:dex5", + "hall:occupied", + "hall:ttrate" + ] + ], + [ + "【30기】⑩과학 5호", + 96, + 10, + 57, + "che_event_필살", + [ + 1571, + 1623, + 4072, + 41281, + 1697858 + ], + 0, + "./default.jpg", + 30, + "che_201231_zpIW", + 374, + [ + "hall:dex5", + "hall:tlrate" + ] + ], + [ + "【30기】⑨수장", + 81, + 88, + 10, + "che_event_저격", + [ + 56543, + 143272, + 1015423, + 241296, + 48049 + ], + 1, + "897dde2.png?=20190411", + 30, + "che_201231_zpIW", + 404, + [ + "chief:12", + "hall:dex3", + "hall:firenum", + "hall:tsrate" + ] + ], + [ + "【30기】⑦갓드오브갓크", + 69, + 9, + 82, + "che_event_신중", + [ + 104300, + 81444, + 63010, + 944086, + 28267 + ], + 0, + "default.jpg", + 30, + "che_201231_zpIW", + 439, + [ + "hall:dex1" + ] + ], + [ + "【30기】③졸린마녀", + 74, + 83, + 11, + "che_event_반계", + [ + 94739, + 647413, + 84113, + 97749, + 29074 + ], + 1, + "ef47121.jpg?=20180825", + 30, + "che_201231_zpIW", + 462, + [ + "hall:dex2" + ] + ], + [ + "【30기】⑩Hide_D", + 90, + 9, + 56, + "che_event_저격", + [ + 5517, + 11665, + 20996, + 18351, + 1594952 + ], + 1, + "ee5accd.jpg?=20190411", + 30, + "che_201231_zpIW", + 545, + [ + "chief:11" + ] + ], + [ + "【31기】네이미", + 90, + 15, + 77, + "che_event_집중", + [ + 65699, + 21491, + 32533, + 581688, + 26594 + ], + 0, + "default.jpg", + 31, + "che_210211_57VT", + 3, + [ + "chief:5", + "hall:dedication", + "hall:dex4", + "hall:experience", + "hall:killcrew", + "hall:occupied", + "hall:tlrate", + "hall:warnum" + ] + ], + [ + "【31기】Hide_D", + 78, + 16, + 88, + "che_event_징병", + [ + 102613, + 56474, + 41349, + 627610, + 57663 + ], + 1, + "9f0a2a8.png?=20200106", + 31, + "che_210211_57VT", + 4, + [ + "hall:dex1", + "hall:dex2", + "hall:dex4", + "hall:dex5", + "hall:experience", + "hall:killcrew", + "hall:killcrew_person", + "hall:occupied", + "hall:warnum" + ] + ], + [ + "【31기】로비", + 15, + 72, + 94, + "che_event_저격", + [ + 0, + 0, + 0, + 0, + 0 + ], + 1, + "708a981.png?=20200402", + 31, + "che_210211_57VT", + 8, + [ + "hall:dedication", + "hall:experience", + "hall:tirate", + "hall:tsrate" + ] + ], + [ + "【31기】임사영", + 84, + 15, + 86, + "che_event_집중", + [ + 55540, + 52457, + 22392, + 932292, + 22653 + ], + 1, + "7f9473e.gif?=20200211", + 31, + "che_210211_57VT", + 9, + [ + "hall:dex2", + "hall:dex4", + "hall:experience", + "hall:killcrew", + "hall:killcrew_person", + "hall:killnum", + "hall:killrate", + "hall:killrate_person", + "hall:tlrate", + "hall:ttrate", + "hall:warnum", + "hall:winrate" + ] + ], + [ + "【31기】시뉴카린", + 79, + 16, + 86, + "che_event_집중", + [ + 51882, + 17165, + 32068, + 543886, + 22854 + ], + 1, + "52c5495.gif?=20210211", + 31, + "che_210211_57VT", + 11, + [ + "chief:12", + "hall:dedication", + "hall:dex4", + "hall:experience", + "hall:ttrate" + ] + ], + [ + "【31기】카이스트", + 76, + 16, + 87, + "che_event_신산", + [ + 38769, + 19745, + 51109, + 542636, + 38378 + ], + 1, + "9361ef8.jpg?=20180907", + 31, + "che_210211_57VT", + 12, + [ + "hall:dedication", + "hall:dex3", + "hall:dex4", + "hall:dex5" + ] + ], + [ + "【31기】초코맛국수", + 75, + 15, + 88, + "che_event_집중", + [ + 16043, + 0, + 45194, + 385947, + 37099 + ], + 1, + "4bcd3f5.jpg?=20200904", + 31, + "che_210211_57VT", + 13, + [ + "hall:dedication", + "hall:dex5", + "hall:occupied", + "hall:tirate" + ] + ], + [ + "【31기】smile", + 77, + 16, + 90, + "che_event_집중", + [ + 16432, + 24769, + 33079, + 500965, + 34216 + ], + 0, + "default.jpg", + 31, + "che_210211_57VT", + 14, + [ + "hall:killrate", + "hall:killrate_person", + "hall:occupied", + "hall:tirate", + "hall:winrate" + ] + ], + [ + "【31기】독구", + 78, + 15, + 89, + "che_event_집중", + [ + 43954, + 20534, + 38970, + 518565, + 36370 + ], + 1, + "c17d03c.png?=20210126", + 31, + "che_210211_57VT", + 15, + [ + "chief:9", + "hall:dedication", + "hall:dex4", + "hall:dex5", + "hall:experience", + "hall:killrate", + "hall:occupied", + "hall:ttrate" + ] + ], + [ + "【31기】퍄퍄", + 78, + 87, + 15, + "che_event_위압", + [ + 104913, + 556801, + 9974, + 154903, + 33137 + ], + 0, + "default.jpg", + 31, + "che_210211_57VT", + 16, + [ + "hall:dex1", + "hall:dex2", + "hall:experience", + "hall:killcrew", + "hall:killcrew_person", + "hall:killnum", + "hall:killrate_person", + "hall:tsrate", + "hall:warnum" + ] + ], + [ + "【31기】소울아크", + 89, + 76, + 15, + "che_event_돌격", + [ + 213701, + 23000, + 42570, + 88385, + 34343 + ], + 0, + "default.jpg", + 31, + "che_210211_57VT", + 17, + [ + "hall:dex1", + "hall:dex5", + "hall:tlrate", + "hall:tsrate" + ] + ], + [ + "【31기】이즈미", + 78, + 87, + 15, + "che_event_돌격", + [ + 40152, + 14383, + 496267, + 117615, + 27851 + ], + 1, + "5d37b46.jpg?=20201105", + 31, + "che_210211_57VT", + 18, + [ + "hall:dex3", + "hall:killnum", + "hall:killrate", + "hall:killrate_person", + "hall:tsrate", + "hall:warnum", + "hall:winrate" + ] + ], + [ + "【31기】평민킬러", + 92, + 75, + 16, + "che_event_견고", + [ + 738064, + 33340, + 53894, + 129242, + 28922 + ], + 1, + "fb23a32.jpg?=20190904", + 31, + "che_210211_57VT", + 19, + [ + "hall:dex1", + "hall:dex3", + "hall:killcrew", + "hall:killcrew_person", + "hall:killnum", + "hall:killrate", + "hall:killrate_person", + "hall:tlrate", + "hall:warnum", + "hall:winrate" + ] + ], + [ + "【31기】토마스", + 76, + 90, + 16, + "che_event_돌격", + [ + 61528, + 11660, + 506819, + 96125, + 90533 + ], + 1, + "f8118c3.jpg?=20210209", + 31, + "che_210211_57VT", + 20, + [ + "chief:8", + "hall:dedication", + "hall:dex3", + "hall:dex5", + "hall:experience", + "hall:firenum", + "hall:killcrew", + "hall:killnum", + "hall:killrate", + "hall:killrate_person", + "hall:occupied", + "hall:tsrate", + "hall:winrate" + ] + ], + [ + "【31기】외심장", + 77, + 15, + 89, + "che_event_척사", + [ + 78589, + 36144, + 37705, + 466261, + 46524 + ], + 1, + "36110cd.jpg?=20180826", + 31, + "che_210211_57VT", + 21, + [ + "hall:dex2", + "hall:dex5", + "hall:tirate", + "hall:ttrate" + ] + ], + [ + "【31기】잭프로스트", + 73, + 16, + 91, + "che_event_신산", + [ + 14718, + 10140, + 17498, + 255516, + 22482 + ], + 1, + "733f3b9.jpg?=20201111", + 31, + "che_210211_57VT", + 23, + [ + "hall:dedication", + "hall:firenum", + "hall:killrate", + "hall:killrate_person", + "hall:tirate", + "hall:ttrate" + ] + ], + [ + "【31기】돌아온너구리", + 92, + 75, + 15, + "che_event_견고", + [ + 747885, + 121283, + 174633, + 235248, + 15610 + ], + 0, + "default.jpg", + 31, + "che_210211_57VT", + 24, + [ + "hall:dex1", + "hall:dex2", + "hall:dex3", + "hall:experience", + "hall:firenum", + "hall:killcrew", + "hall:killcrew_person", + "hall:killnum", + "hall:killrate", + "hall:killrate_person", + "hall:occupied", + "hall:tlrate", + "hall:ttrate", + "hall:warnum" + ] + ], + [ + "【31기】일이석우", + 87, + 15, + 77, + "che_event_신중", + [ + 35711, + 35826, + 17520, + 431434, + 3035 + ], + 1, + "9c2026b.jpg?=20200527", + 31, + "che_210211_57VT", + 25, + [ + "hall:tlrate" + ] + ], + [ + "【31기】시스시", + 89, + 74, + 16, + "che_event_의술", + [ + 329756, + 2214, + 69593, + 113101, + 17886 + ], + 0, + "default.jpg", + 31, + "che_210211_57VT", + 29, + [ + "chief:6", + "hall:dex1", + "hall:dex3", + "hall:tlrate" + ] + ], + [ + "【31기】새해복많이받으세요", + 78, + 15, + 88, + "che_event_집중", + [ + 35991, + 4640, + 23039, + 572243, + 44394 + ], + 0, + "default.jpg", + 31, + "che_210211_57VT", + 41, + [ + "hall:dedication", + "hall:dex4", + "hall:dex5", + "hall:experience", + "hall:firenum", + "hall:tirate" + ] + ], + [ + "【31기】낙지꿈", + 75, + 15, + 90, + "che_event_집중", + [ + 38671, + 38377, + 19575, + 593071, + 20859 + ], + 0, + "default.jpg", + 31, + "che_210211_57VT", + 43, + [ + "hall:dex2", + "hall:dex4", + "hall:killcrew_person", + "hall:winrate" + ] + ], + [ + "【31기】와", + 78, + 89, + 15, + "che_event_견고", + [ + 62654, + 70384, + 848458, + 210790, + 41942 + ], + 1, + "106f82e.jpg?=20210212", + 31, + "che_210211_57VT", + 50, + [ + "hall:dex2", + "hall:dex3", + "hall:dex5", + "hall:firenum", + "hall:killcrew", + "hall:killcrew_person", + "hall:killnum", + "hall:killrate", + "hall:killrate_person", + "hall:occupied", + "hall:tsrate", + "hall:ttrate", + "hall:warnum" + ] + ], + [ + "【31기】그저늅늅", + 78, + 15, + 90, + "che_event_집중", + [ + 93417, + 33235, + 35672, + 447044, + 640 + ], + 1, + "5cedbb3.jpg?=20190817", + 31, + "che_210211_57VT", + 62, + [ + "hall:dex1", + "hall:tirate", + "hall:ttrate" + ] + ], + [ + "【31기】건방진노예", + 80, + 15, + 88, + "che_event_신중", + [ + 32766, + 24978, + 61325, + 571312, + 9940 + ], + 0, + "default.jpg", + 31, + "che_210211_57VT", + 67, + [ + "hall:dex3", + "hall:dex4", + "hall:killcrew_person", + "hall:killnum", + "hall:ttrate", + "hall:warnum", + "hall:winrate" + ] + ], + [ + "【31기】DDDD", + 80, + 84, + 15, + "che_event_돌격", + [ + 450001, + 15330, + 49716, + 121408, + 23641 + ], + 1, + "2fbb8b.jpg?=20210217", + 31, + "che_210211_57VT", + 162, + [ + "hall:dedication", + "hall:dex1", + "hall:occupied", + "hall:tlrate", + "hall:tsrate", + "hall:winrate" + ] + ], + [ + "【31기】퀸델", + 74, + 89, + 17, + "che_event_무쌍", + [ + 96981, + 391014, + 18881, + 99074, + 15507 + ], + 1, + "5c0bd92.jpg?=20210214", + 31, + "che_210211_57VT", + 164, + [ + "chief:11", + "hall:dex1", + "hall:dex2", + "hall:killnum", + "hall:tsrate", + "hall:winrate" + ] + ], + [ + "【31기】시초밥", + 74, + 15, + 89, + "che_event_필살", + [ + 71813, + 14785, + 37576, + 392215, + 29290 + ], + 1, + "9196d68.jpg?=20210121", + 31, + "che_210211_57VT", + 182, + [ + "chief:7", + "hall:tirate" + ] + ], + [ + "【31기】ㅇㅅㅇ", + 76, + 15, + 89, + "che_event_신중", + [ + 40752, + 55652, + 31764, + 597428, + 10938 + ], + 0, + "default.jpg", + 31, + "che_210211_57VT", + 193, + [ + "hall:dex2", + "hall:dex4", + "hall:firenum", + "hall:killcrew", + "hall:killcrew_person", + "hall:killnum", + "hall:tirate", + "hall:warnum", + "hall:winrate" + ] + ], + [ + "【31기】료우기시키", + 84, + 76, + 15, + "che_event_징병", + [ + 59024, + 318349, + 20556, + 134416, + 28883 + ], + 1, + "559083f.jpg?=20190905", + 31, + "che_210211_57VT", + 194, + [ + "hall:dex2", + "hall:tlrate", + "hall:ttrate" + ] + ], + [ + "【31기】안녕하세용가릐~", + 74, + 89, + 15, + "che_event_위압", + [ + 46164, + 31446, + 503337, + 72190, + 35532 + ], + 1, + "ce5c51c.jpg?=20210215", + 31, + "che_210211_57VT", + 195, + [ + "chief:10", + "hall:dex3", + "hall:dex5", + "hall:killcrew", + "hall:killcrew_person", + "hall:killrate", + "hall:killrate_person", + "hall:tsrate" + ] + ], + [ + "【31기】츠키히나리", + 86, + 77, + 15, + "che_event_돌격", + [ + 293416, + 1323, + 78881, + 115263, + 31437 + ], + 0, + "default.jpg", + 31, + "che_210211_57VT", + 200, + [ + "hall:dex1", + "hall:dex3", + "hall:occupied", + "hall:tlrate", + "hall:tsrate" + ] + ], + [ + "【31기】이드", + 74, + 15, + 86, + "che_event_의술", + [ + 13158, + 9046, + 3757, + 64490, + 0 + ], + 1, + "1a15ff3.jpg?=20210218", + 31, + "che_210211_57VT", + 216, + [ + "hall:tirate" + ] + ], + [ + "【32기】퍄퍄", + 77, + 87, + 15, + "che_event_필살", + [ + 2526, + 18133, + 192429, + 70348, + 20230 + ], + 0, + "default.jpg", + 32, + "che_210325_Wzil", + 5, + [ + "chief:6", + "hall:dex3", + "hall:killcrew_person", + "hall:tsrate" + ] + ], + [ + "【32기】평민킬러", + 87, + 74, + 15, + "che_event_위압", + [ + 274293, + 5978, + 42117, + 79138, + 17994 + ], + 1, + "fb23a32.jpg?=20190904", + 32, + "che_210325_Wzil", + 6, + [ + "hall:dex1", + "hall:dex3", + "hall:killcrew", + "hall:killcrew_person", + "hall:killnum", + "hall:killrate", + "hall:tlrate", + "hall:tsrate", + "hall:warnum" + ] + ], + [ + "【32기】제갈여포", + 73, + 15, + 89, + "che_event_척사", + [ + 6144, + 8303, + 5622, + 108170, + 20423 + ], + 1, + "e8e8adc.jpg?=20180419", + 32, + "che_210325_Wzil", + 9, + [ + "hall:killrate", + "hall:occupied", + "hall:winrate" + ] + ], + [ + "【32기】이드", + 74, + 87, + 16, + "che_event_견고", + [ + 18615, + 178419, + 7086, + 32883, + 22294 + ], + 1, + "1a15ff3.jpg?=20210218", + 32, + "che_210325_Wzil", + 10, + [ + "hall:dedication", + "hall:dex1", + "hall:dex2", + "hall:firenum", + "hall:killrate", + "hall:killrate_person", + "hall:tsrate", + "hall:ttrate" + ] + ], + [ + "【32기】트릭스터", + 72, + 16, + 89, + "che_event_신중", + [ + 92, + 20708, + 3740, + 203375, + 32235 + ], + 1, + "735c7c8.jpg?=20210406", + 32, + "che_210325_Wzil", + 11, + [ + "chief:5", + "hall:dedication", + "hall:dex2", + "hall:dex4", + "hall:dex5", + "hall:experience", + "hall:killrate_person", + "hall:occupied", + "hall:tlrate" + ] + ], + [ + "【32기】롤린", + 75, + 15, + 89, + "che_event_반계", + [ + 5289, + 32759, + 21250, + 269966, + 30648 + ], + 0, + "default.jpg", + 32, + "che_210325_Wzil", + 12, + [ + "hall:dex2", + "hall:dex4", + "hall:killcrew", + "hall:killcrew_person", + "hall:killnum", + "hall:tirate", + "hall:ttrate", + "hall:warnum" + ] + ], + [ + "【32기】DDDD", + 84, + 76, + 15, + "che_event_저격", + [ + 184110, + 12385, + 26213, + 63853, + 22340 + ], + 1, + "2fbb8b.jpg?=20210217", + 32, + "che_210325_Wzil", + 14, + [ + "hall:dex1", + "hall:occupied", + "hall:tlrate", + "hall:tsrate", + "hall:warnum" + ] + ], + [ + "【32기】잭프로스트", + 72, + 15, + 87, + "che_event_환술", + [ + 5484, + 9972, + 798, + 110896, + 19523 + ], + 1, + "733f3b9.jpg?=20201111", + 32, + "che_210325_Wzil", + 15, + [ + "hall:tirate" + ] + ], + [ + "【32기】Hide_D", + 73, + 15, + 90, + "che_event_필살", + [ + 0, + 28413, + 56180, + 347728, + 28728 + ], + 1, + "9f0a2a8.png?=20200106", + 32, + "che_210325_Wzil", + 16, + [ + "hall:dex2", + "hall:dex3", + "hall:dex4", + "hall:experience", + "hall:killcrew", + "hall:killcrew_person", + "hall:killnum", + "hall:occupied", + "hall:warnum", + "hall:winrate" + ] + ], + [ + "【32기】쿠팡맨", + 74, + 15, + 88, + "che_event_집중", + [ + 7721, + 6367, + 18371, + 267021, + 60724 + ], + 0, + "default.jpg", + 32, + "che_210325_Wzil", + 19, + [ + "chief:12", + "hall:dedication", + "hall:dex4", + "hall:dex5", + "hall:experience", + "hall:firenum", + "hall:killcrew", + "hall:killcrew_person", + "hall:killnum", + "hall:killrate", + "hall:killrate_person", + "hall:occupied", + "hall:tirate", + "hall:tlrate", + "hall:warnum", + "hall:winrate" + ] + ], + [ + "【32기】아타나시아", + 87, + 75, + 16, + "che_event_공성", + [ + 24894, + 304152, + 15620, + 75304, + 40963 + ], + 1, + "e81ff49.jpg?=20210322", + 32, + "che_210325_Wzil", + 20, + [ + "hall:dex1", + "hall:dex2", + "hall:dex5", + "hall:experience", + "hall:killcrew", + "hall:killcrew_person", + "hall:killnum", + "hall:killrate", + "hall:occupied", + "hall:tlrate", + "hall:tsrate", + "hall:ttrate", + "hall:warnum", + "hall:winrate" + ] + ], + [ + "【32기】누렁", + 75, + 15, + 89, + "che_event_반계", + [ + 12555, + 24779, + 20670, + 268612, + 13750 + ], + 1, + "4bbfa36.jpg?=20190411", + 32, + "che_210325_Wzil", + 21, + [ + "hall:dex2", + "hall:dex4", + "hall:killcrew", + "hall:killcrew_person", + "hall:killnum", + "hall:tirate", + "hall:warnum", + "hall:winrate" + ] + ], + [ + "【32기】그저늅늅", + 74, + 15, + 89, + "che_event_신중", + [ + 7316, + 18357, + 31401, + 211066, + 16833 + ], + 1, + "5cedbb3.jpg?=20190817", + 32, + "che_210325_Wzil", + 22, + [ + "hall:dex3", + "hall:dex4", + "hall:killcrew_person", + "hall:tirate" + ] + ], + [ + "【32기】멈춰!", + 73, + 16, + 88, + "che_event_신산", + [ + 11027, + 15084, + 3016, + 217086, + 27073 + ], + 1, + "bce1599.gif?=20210325", + 32, + "che_210325_Wzil", + 23, + [ + "chief:7", + "hall:dex4", + "hall:killcrew_person", + "hall:killrate_person", + "hall:tirate" + ] + ], + [ + "【32기】천서진", + 73, + 16, + 87, + "che_event_신산", + [ + 1476, + 10903, + 2260, + 69266, + 14748 + ], + 1, + "8bddba9.png?=20210306", + 32, + "che_210325_Wzil", + 24, + [ + "hall:firenum" + ] + ], + [ + "【32기】앵코인", + 85, + 73, + 15, + "che_event_격노", + [ + 1429, + 12503, + 115543, + 14684, + 31491 + ], + 1, + "541a80a.jpg?=20210325", + 32, + "che_210325_Wzil", + 25, + [ + "hall:dex3", + "hall:dex5", + "hall:tlrate", + "hall:tsrate" + ] + ], + [ + "【32기】할까말까", + 75, + 15, + 87, + "che_event_신중", + [ + 2024, + 27030, + 30713, + 176126, + 17072 + ], + 1, + "db298a4.jpg?=20210325", + 32, + "che_210325_Wzil", + 27, + [ + "hall:dex2", + "hall:dex3", + "hall:ttrate" + ] + ], + [ + "【32기】분탕", + 76, + 88, + 15, + "che_event_돌격", + [ + 0, + 15226, + 113910, + 32385, + 27066 + ], + 0, + "default.jpg", + 32, + "che_210325_Wzil", + 28, + [ + "hall:dex3", + "hall:occupied", + "hall:tsrate" + ] + ], + [ + "【32기】효성중공업", + 85, + 75, + 15, + "che_event_무쌍", + [ + 8636, + 16697, + 133035, + 33695, + 20471 + ], + 1, + "e15df5b.png?=20200716", + 32, + "che_210325_Wzil", + 29, + [ + "hall:dex3", + "hall:tlrate", + "hall:tsrate", + "hall:winrate" + ] + ], + [ + "【32기】수장", + 85, + 77, + 16, + "che_event_필살", + [ + 48255, + 0, + 0, + 2847, + 16002 + ], + 1, + "b725306.jpg?=20210325", + 32, + "che_210325_Wzil", + 30, + [ + "hall:dedication", + "hall:dex1", + "hall:killrate_person", + "hall:tlrate", + "hall:ttrate" + ] + ], + [ + "【32기】와이어트", + 72, + 91, + 15, + "che_event_견고", + [ + 7673, + 19614, + 276445, + 29715, + 27981 + ], + 1, + "8829770.jpg?=20210325", + 32, + "che_210325_Wzil", + 31, + [ + "chief:10", + "hall:dedication", + "hall:dex3", + "hall:experience", + "hall:firenum", + "hall:killcrew", + "hall:killnum", + "hall:killrate", + "hall:killrate_person", + "hall:occupied", + "hall:tsrate", + "hall:warnum", + "hall:winrate" + ] + ], + [ + "【32기】일이석우", + 75, + 86, + 15, + "che_event_무쌍", + [ + 15396, + 182051, + 66551, + 43111, + 37609 + ], + 1, + "9c2026b.jpg?=20200527", + 32, + "che_210325_Wzil", + 32, + [ + "chief:8", + "hall:dedication", + "hall:dex1", + "hall:dex2", + "hall:dex3", + "hall:dex5", + "hall:experience", + "hall:firenum", + "hall:killcrew", + "hall:killrate", + "hall:killrate_person", + "hall:tsrate", + "hall:ttrate" + ] + ], + [ + "【32기】갈근", + 75, + 16, + 89, + "che_event_집중", + [ + 17593, + 15590, + 25469, + 335629, + 31283 + ], + 0, + "default.jpg", + 32, + "che_210325_Wzil", + 34, + [ + "hall:dex1", + "hall:dex4", + "hall:dex5", + "hall:killcrew", + "hall:killcrew_person", + "hall:killnum", + "hall:killrate", + "hall:killrate_person", + "hall:tirate", + "hall:tlrate", + "hall:warnum" + ] + ], + [ + "【32기】낙지꿈", + 74, + 15, + 90, + "che_event_신산", + [ + 18028, + 12567, + 15339, + 216824, + 54407 + ], + 0, + "default.jpg", + 32, + "che_210325_Wzil", + 35, + [ + "chief:11", + "hall:dedication", + "hall:dex1", + "hall:dex4", + "hall:dex5", + "hall:experience", + "hall:killcrew", + "hall:killnum", + "hall:killrate", + "hall:killrate_person", + "hall:occupied", + "hall:tirate", + "hall:warnum", + "hall:winrate" + ] + ], + [ + "【32기】불반도", + 73, + 15, + 90, + "che_event_척사", + [ + 15097, + 19904, + 5653, + 164180, + 37893 + ], + 0, + "default.jpg", + 32, + "che_210325_Wzil", + 36, + [ + "hall:dedication", + "hall:dex1", + "hall:dex2", + "hall:dex5", + "hall:experience", + "hall:tirate" + ] + ], + [ + "【32기】로리", + 74, + 15, + 90, + "che_event_신산", + [ + 7669, + 20870, + 5435, + 191353, + 48400 + ], + 1, + "50794a6.jpg?=20190923", + 32, + "che_210325_Wzil", + 38, + [ + "chief:9", + "hall:dedication", + "hall:dex2", + "hall:dex4", + "hall:dex5", + "hall:experience", + "hall:firenum", + "hall:killnum", + "hall:killrate", + "hall:killrate_person", + "hall:occupied", + "hall:ttrate", + "hall:winrate" + ] + ], + [ + "【32기】건방진노예", + 76, + 15, + 86, + "che_event_필살", + [ + 3133, + 13308, + 6461, + 166399, + 32587 + ], + 0, + "default.jpg", + 32, + "che_210325_Wzil", + 56, + [ + "hall:dedication", + "hall:dex5", + "hall:experience" + ] + ], + [ + "【32기】기", + 73, + 15, + 89, + "che_event_필살", + [ + 8395, + 17701, + 9506, + 112460, + 3105 + ], + 0, + "default.jpg", + 32, + "che_210325_Wzil", + 60, + [ + "hall:ttrate", + "hall:winrate" + ] + ], + [ + "【32기】통솔지력형", + 84, + 16, + 78, + "che_event_반계", + [ + 10863, + 860, + 4352, + 66485, + 5455 + ], + 0, + "default.jpg", + 32, + "che_210325_Wzil", + 127, + [ + "hall:tlrate", + "hall:ttrate" + ] + ], + [ + "【32기】Liam", + 73, + 15, + 86, + "che_event_신산", + [ + 20093, + 3631, + 7988, + 166403, + 16931 + ], + 0, + "default.jpg", + 32, + "che_210325_Wzil", + 148, + [ + "hall:dex1", + "hall:tirate", + "hall:ttrate" + ] + ], + [ + "【33기】쑤앤날ψ", + 76, + 15, + 94, + "che_event_집중", + [ + 12377, + 3669, + 37021, + 185240, + 10634 + ], + 0, + "default.jpg", + 33, + "che_210429_IuO8", + 4, + [ + "hall:dex1", + "hall:dex4", + "hall:tirate", + "hall:winrate" + ] + ], + [ + "【33기】아르테미시아", + 88, + 84, + 15, + "che_event_격노", + [ + 4752, + 36838, + 607875, + 66251, + 31330 + ], + 1, + "3578444.jpg?=20210429", + 33, + "che_210429_IuO8", + 7, + [ + "hall:dex2", + "hall:dex3", + "hall:experience", + "hall:killcrew", + "hall:killcrew_person", + "hall:killnum", + "hall:killrate", + "hall:killrate_person", + "hall:occupied", + "hall:tlrate", + "hall:tsrate", + "hall:warnum", + "hall:winrate" + ] + ], + [ + "【33기】임사영", + 75, + 15, + 95, + "che_event_필살", + [ + 9607, + 6914, + 35909, + 250669, + 35007 + ], + 1, + "10e5f72.jpg?=20210430", + 33, + "che_210429_IuO8", + 10, + [ + "hall:dex4", + "hall:dex5", + "hall:experience", + "hall:killrate", + "hall:killrate_person", + "hall:occupied", + "hall:tirate", + "hall:winrate" + ] + ], + [ + "【33기】시벌", + 74, + 15, + 96, + null, + [ + 11936, + 13298, + 52674, + 352913, + 33023 + ], + 1, + "e8e6c63.png?=20210429", + 33, + "che_210429_IuO8", + 16, + [ + "hall:dex1", + "hall:dex4", + "hall:experience", + "hall:killcrew", + "hall:killnum", + "hall:killrate", + "hall:killrate_person", + "hall:occupied", + "hall:tirate", + "hall:ttrate", + "hall:warnum" + ] + ], + [ + "【33기】누렁", + 76, + 92, + 15, + "che_event_필살", + [ + 206293, + 75287, + 60181, + 46072, + 22326 + ], + 1, + "4bbfa36.jpg?=20190411", + 33, + "che_210429_IuO8", + 18, + [ + "hall:dex1", + "hall:dex2", + "hall:tsrate", + "hall:ttrate" + ] + ], + [ + "【33기】갈근", + 73, + 15, + 98, + "che_event_집중", + [ + 32480, + 26790, + 19428, + 517299, + 38380 + ], + 0, + "default.jpg", + 33, + "che_210429_IuO8", + 20, + [ + "chief:7", + "hall:dedication", + "hall:dex1", + "hall:dex2", + "hall:dex4", + "hall:dex5", + "hall:experience", + "hall:killcrew", + "hall:killcrew_person", + "hall:killnum", + "hall:killrate", + "hall:killrate_person", + "hall:occupied", + "hall:tirate", + "hall:warnum", + "hall:winrate" + ] + ], + [ + "【33기】Hide_D", + 79, + 16, + 92, + "che_event_신중", + [ + 44230, + 52214, + 100452, + 649281, + 24304 + ], + 1, + "9f0a2a8.png?=20200106", + 33, + "che_210429_IuO8", + 21, + [ + "hall:dex1", + "hall:dex2", + "hall:dex4", + "hall:experience", + "hall:killcrew", + "hall:killcrew_person", + "hall:killnum", + "hall:occupied", + "hall:tirate", + "hall:warnum" + ] + ], + [ + "【33기】꼬리사냥꾼", + 78, + 91, + 15, + "che_event_위압", + [ + 8052, + 51385, + 427108, + 48048, + 29537 + ], + 1, + "81f77b0.png?=20210429", + 33, + "che_210429_IuO8", + 22, + [ + "chief:11", + "hall:dedication", + "hall:dex2", + "hall:dex3", + "hall:killcrew", + "hall:killcrew_person", + "hall:killnum", + "hall:killrate", + "hall:killrate_person", + "hall:tsrate", + "hall:warnum", + "hall:winrate" + ] + ], + [ + "【33기】Pink", + 87, + 82, + 15, + "che_event_무쌍", + [ + 6562, + 35210, + 471925, + 52327, + 36756 + ], + 1, + "b94a8e8.jpg?=20210509", + 33, + "che_210429_IuO8", + 24, + [ + "hall:dex2", + "hall:dex3", + "hall:dex5", + "hall:killcrew", + "hall:killcrew_person", + "hall:killnum", + "hall:tlrate", + "hall:tsrate", + "hall:warnum", + "hall:winrate" + ] + ], + [ + "【33기】이드", + 74, + 15, + 97, + "che_event_집중", + [ + 13364, + 18691, + 32728, + 348878, + 42540 + ], + 1, + "1a15ff3.jpg?=20210218", + 33, + "che_210429_IuO8", + 25, + [ + "chief:9", + "hall:betgold", + "hall:betwin", + "hall:betwingold", + "hall:dedication", + "hall:dex1", + "hall:dex4", + "hall:dex5", + "hall:experience", + "hall:killrate_person", + "hall:tirate", + "hall:ttrate" + ] + ], + [ + "【33기】시뉴카린", + 74, + 16, + 96, + "che_event_신산", + [ + 10920, + 23662, + 11347, + 570687, + 35150 + ], + 1, + "6dd0b38.jpg?=20210430", + 33, + "che_210429_IuO8", + 26, + [ + "chief:12", + "hall:dedication", + "hall:dex4", + "hall:dex5", + "hall:experience", + "hall:killcrew", + "hall:killcrew_person", + "hall:killnum", + "hall:killrate", + "hall:killrate_person", + "hall:occupied", + "hall:tirate", + "hall:warnum", + "hall:winrate" + ] + ], + [ + "【33기】Ni", + 75, + 16, + 95, + "che_event_반계", + [ + 18831, + 27645, + 59290, + 430740, + 18081 + ], + 1, + "b3236de.png?=20210429", + 33, + "che_210429_IuO8", + 29, + [ + "chief:5", + "hall:betgold", + "hall:dedication", + "hall:dex1", + "hall:dex2", + "hall:dex4", + "hall:experience", + "hall:killcrew", + "hall:killcrew_person", + "hall:killnum", + "hall:killrate", + "hall:killrate_person", + "hall:tirate", + "hall:warnum", + "hall:winrate" + ] + ], + [ + "【33기】광성자", + 92, + 78, + 15, + "che_event_위압", + [ + 0, + 0, + 16108, + 7421, + 65999 + ], + 1, + "1c59b40.jpg?=20200929", + 33, + "che_210429_IuO8", + 30, + [ + "hall:dex5", + "hall:killrate", + "hall:occupied", + "hall:tlrate", + "hall:tsrate", + "hall:ttrate" + ] + ], + [ + "【33기】외심장", + 75, + 16, + 95, + "che_event_집중", + [ + 13967, + 9623, + 70758, + 330749, + 10694 + ], + 1, + "36110cd.jpg?=20180826", + 33, + "che_210429_IuO8", + 31, + [ + "hall:dedication", + "hall:dex1", + "hall:dex4", + "hall:experience", + "hall:killcrew_person", + "hall:killrate_person", + "hall:occupied", + "hall:tirate", + "hall:winrate" + ] + ], + [ + "【33기】체섭", + 92, + 78, + 15, + "che_event_돌격", + [ + 1991, + 15006, + 333934, + 77237, + 80111 + ], + 0, + "default.jpg", + 33, + "che_210429_IuO8", + 32, + [ + "chief:10", + "hall:dex3", + "hall:dex5", + "hall:occupied", + "hall:tlrate", + "hall:tsrate", + "hall:ttrate" + ] + ], + [ + "【33기】퉤섭", + 93, + 75, + 16, + "che_event_돌격", + [ + 5592, + 33943, + 286487, + 67010, + 50940 + ], + 0, + "default.jpg", + 33, + "che_210429_IuO8", + 33, + [ + "chief:8", + "hall:dex2", + "hall:dex3", + "hall:dex5", + "hall:tlrate" + ] + ], + [ + "【33기】냥냥", + 75, + 96, + 15, + "che_event_필살", + [ + 16544, + 40198, + 794758, + 73112, + 26797 + ], + 0, + "default.jpg", + 33, + "che_210429_IuO8", + 72, + [ + "hall:dex1", + "hall:dex2", + "hall:dex3", + "hall:experience", + "hall:killcrew", + "hall:killcrew_person", + "hall:killnum", + "hall:killrate", + "hall:killrate_person", + "hall:occupied", + "hall:tsrate", + "hall:ttrate", + "hall:warnum", + "hall:winrate" + ] + ], + [ + "【33기】니노미야아스카", + 76, + 89, + 16, + "che_event_기병", + [ + 9431, + 18552, + 267556, + 40162, + 22733 + ], + 1, + "7902022.jpg?=20210429", + 33, + "che_210429_IuO8", + 92, + [ + "hall:killrate", + "hall:tsrate" + ] + ], + [ + "【33기】낙지꿈", + 95, + 75, + 15, + "che_event_격노", + [ + 13639, + 23583, + 416468, + 85885, + 21572 + ], + 0, + "default.jpg", + 33, + "che_210429_IuO8", + 94, + [ + "chief:6", + "hall:dedication", + "hall:dex1", + "hall:dex3", + "hall:dex4", + "hall:killcrew", + "hall:killcrew_person", + "hall:killnum", + "hall:tlrate", + "hall:ttrate", + "hall:warnum" + ] + ], + [ + "【33기】루드네스", + 92, + 76, + 15, + "che_event_돌격", + [ + 10817, + 16433, + 330440, + 73414, + 38178 + ], + 0, + "default.jpg", + 33, + "che_210429_IuO8", + 95, + [ + "hall:dedication", + "hall:dex3", + "hall:dex5", + "hall:tlrate" + ] + ], + [ + "【33기】Liam", + 95, + 74, + 15, + "che_event_격노", + [ + 118, + 23455, + 225915, + 68162, + 33746 + ], + 0, + "default.jpg", + 33, + "che_210429_IuO8", + 97, + [ + "hall:dedication", + "hall:tlrate" + ] + ], + [ + "【33기】불반도", + 94, + 77, + 15, + "che_event_돌격", + [ + 10268, + 39304, + 306039, + 60568, + 25024 + ], + 0, + "default.jpg", + 33, + "che_210429_IuO8", + 99, + [ + "hall:dex2", + "hall:dex3", + "hall:tlrate", + "hall:tsrate", + "hall:ttrate" + ] + ], + [ + "【33기】건방진노예", + 94, + 73, + 16, + "che_event_격노", + [ + 3097, + 21031, + 291655, + 55068, + 40846 + ], + 0, + "default.jpg", + 33, + "che_210429_IuO8", + 102, + [ + "hall:dedication", + "hall:dex3", + "hall:dex5", + "hall:tlrate", + "hall:ttrate" + ] + ], + [ + "【33기】로비", + 16, + 71, + 94, + "che_event_신산", + [ + 0, + 0, + 0, + 0, + 0 + ], + 1, + "708a981.png?=20200402", + 33, + "che_210429_IuO8", + 240, + [ + "hall:tirate", + "hall:ttrate" + ] + ], + [ + "【33기】미소년소지로", + 77, + 87, + 15, + "che_event_견고", + [ + 0, + 194, + 32878, + 6399, + 0 + ], + 1, + "2bb0e25.jpg?=20210506", + 33, + "che_210429_IuO8", + 260, + [ + "hall:tsrate" + ] + ], + [ + "【34기】라가라자", + 78, + 15, + 95, + "che_event_집중", + [ + 37279, + 73514, + 132203, + 1022039, + 40689 + ], + 1, + "583754b.jpg?=20210812", + 34, + "che_210812_Q0FJ", + 4, + [ + "hall:betgold", + "hall:betrate", + "hall:betwin", + "hall:betwingold", + "hall:dedication", + "hall:dex3", + "hall:dex4", + "hall:experience", + "hall:firenum", + "hall:killrate", + "hall:killrate_person", + "hall:occupied", + "hall:tirate", + "hall:ttrate" + ] + ], + [ + "【34기】랑해", + 85, + 89, + 15, + "che_event_견고", + [ + 1081945, + 43871, + 124705, + 168353, + 27976 + ], + 1, + "d64500a.png?=20210820", + 34, + "che_210812_Q0FJ", + 7, + [ + "chief:6", + "hall:betgold", + "hall:betrate", + "hall:betwin", + "hall:betwingold", + "hall:dedication", + "hall:dex1", + "hall:experience", + "hall:killcrew", + "hall:killcrew_person", + "hall:killrate", + "hall:killrate_person", + "hall:tlrate", + "hall:tsrate", + "hall:ttrate", + "hall:warnum" + ] + ], + [ + "【34기】이드", + 79, + 15, + 94, + "che_event_신중", + [ + 55932, + 72627, + 119441, + 1100401, + 59035 + ], + 1, + "5898830.jpg?=20210831", + 34, + "che_210812_Q0FJ", + 11, + [ + "hall:betgold", + "hall:betrate", + "hall:betwin", + "hall:betwingold", + "hall:dex4", + "hall:dex5", + "hall:killcrew", + "hall:killcrew_person", + "hall:tirate" + ] + ], + [ + "【34기】Hide_D", + 79, + 15, + 95, + "che_event_환술", + [ + 41788, + 54195, + 145221, + 1159712, + 73732 + ], + 1, + "9f0a2a8.png?=20200106", + 34, + "che_210812_Q0FJ", + 12, + [ + "chief:11", + "hall:betwin", + "hall:betwingold", + "hall:dedication", + "hall:dex3", + "hall:dex4", + "hall:dex5", + "hall:experience", + "hall:killcrew", + "hall:killnum", + "hall:occupied", + "hall:warnum", + "hall:winrate" + ] + ], + [ + "【34기】퍄퍄", + 80, + 16, + 94, + "che_event_저격", + [ + 57516, + 50704, + 77209, + 980470, + 31318 + ], + 0, + "default.jpg", + 34, + "che_210812_Q0FJ", + 15, + [ + "hall:betgold", + "hall:betwin", + "hall:betwingold", + "hall:dex4", + "hall:tlrate" + ] + ], + [ + "【34기】제갈여포", + 95, + 15, + 82, + "che_event_집중", + [ + 91542, + 105131, + 100222, + 1115825, + 19919 + ], + 1, + "e8e8adc.jpg?=20180419", + 34, + "che_210812_Q0FJ", + 16, + [ + "hall:dex1", + "hall:dex4", + "hall:firenum", + "hall:killcrew_person", + "hall:killnum", + "hall:tlrate", + "hall:ttrate", + "hall:warnum", + "hall:winrate" + ] + ], + [ + "【34기】제로펩시", + 78, + 15, + 95, + "che_event_의술", + [ + 14307, + 46324, + 97621, + 1064607, + 61055 + ], + 1, + "87b6968.jpg?=20210414", + 34, + "che_210812_Q0FJ", + 17, + [ + "chief:9", + "hall:dedication", + "hall:dex4", + "hall:dex5", + "hall:experience", + "hall:killrate", + "hall:killrate_person", + "hall:occupied", + "hall:tirate" + ] + ], + [ + "【34기】갈근", + 79, + 15, + 97, + "che_event_신중", + [ + 63253, + 87288, + 101534, + 1696806, + 43342 + ], + 0, + "default.jpg", + 34, + "che_210812_Q0FJ", + 18, + [ + "chief:7", + "hall:betgold", + "hall:betwin", + "hall:betwingold", + "hall:dex4", + "hall:dex5", + "hall:experience", + "hall:killcrew", + "hall:killcrew_person", + "hall:killnum", + "hall:killrate", + "hall:killrate_person", + "hall:occupied", + "hall:tirate", + "hall:ttrate", + "hall:warnum", + "hall:winrate" + ] + ], + [ + "【34기】퍽퍽퍽퍽퍽퍽퍽퍽퍽", + 80, + 94, + 15, + "che_event_견고", + [ + 62389, + 1360884, + 87234, + 232037, + 34768 + ], + 1, + "27869f4.gif?=20210812", + 34, + "che_210812_Q0FJ", + 19, + [ + "chief:10", + "hall:betgold", + "hall:betrate", + "hall:betwin", + "hall:betwingold", + "hall:dedication", + "hall:dex2", + "hall:experience", + "hall:killcrew", + "hall:killcrew_person", + "hall:killnum", + "hall:killrate", + "hall:killrate_person", + "hall:occupied", + "hall:tsrate", + "hall:warnum", + "hall:winrate" + ] + ], + [ + "【34기】창섭", + 95, + 80, + 15, + "che_event_견고", + [ + 38414, + 135748, + 1200250, + 296304, + 37376 + ], + 1, + "3778b5.jpg?=20210817", + 34, + "che_210812_Q0FJ", + 20, + [ + "hall:dex2", + "hall:dex3", + "hall:firenum", + "hall:killcrew", + "hall:killcrew_person", + "hall:occupied", + "hall:tlrate", + "hall:warnum" + ] + ], + [ + "【34기】고릴라", + 77, + 15, + 95, + "che_event_신중", + [ + 45894, + 41626, + 106970, + 859549, + 38494 + ], + 1, + "9585359.jpg?=20210814", + 34, + "che_210812_Q0FJ", + 21, + [ + "hall:betwin", + "hall:betwingold", + "hall:dedication", + "hall:tirate" + ] + ], + [ + "【34기】독구", + 80, + 15, + 96, + "che_event_집중", + [ + 53855, + 72746, + 148992, + 1367223, + 24589 + ], + 1, + "f3b9b8b.png?=20210802", + 34, + "che_210812_Q0FJ", + 22, + [ + "chief:12", + "hall:betgold", + "hall:betrate", + "hall:betwin", + "hall:betwingold", + "hall:dedication", + "hall:dex3", + "hall:dex4", + "hall:experience", + "hall:firenum", + "hall:killcrew", + "hall:killcrew_person", + "hall:killnum", + "hall:killrate", + "hall:killrate_person", + "hall:tirate", + "hall:ttrate", + "hall:warnum", + "hall:winrate" + ] + ], + [ + "【34기】네이미", + 78, + 93, + 16, + "che_event_격노", + [ + 527400, + 101311, + 101814, + 167612, + 29896 + ], + 0, + "default.jpg", + 34, + "che_210812_Q0FJ", + 24, + [ + "hall:dex1", + "hall:tsrate", + "hall:ttrate" + ] + ], + [ + "【34기】시뉴카린", + 80, + 91, + 17, + "che_event_돌격", + [ + 24629, + 144718, + 1051374, + 261192, + 47307 + ], + 1, + "b647daa.gif?=20210902", + 34, + "che_210812_Q0FJ", + 25, + [ + "hall:dex2", + "hall:dex3", + "hall:dex5", + "hall:killnum", + "hall:occupied", + "hall:tsrate", + "hall:winrate" + ] + ], + [ + "【34기】외심장", + 80, + 15, + 95, + "che_event_집중", + [ + 51025, + 85159, + 82790, + 1236168, + 55728 + ], + 1, + "36110cd.jpg?=20180826", + 34, + "che_210812_Q0FJ", + 26, + [ + "hall:betwin", + "hall:dex4", + "hall:dex5", + "hall:experience", + "hall:killcrew", + "hall:killcrew_person", + "hall:killnum", + "hall:killrate", + "hall:killrate_person", + "hall:occupied", + "hall:tlrate", + "hall:warnum", + "hall:winrate" + ] + ], + [ + "【34기】태상노군", + 96, + 76, + 15, + "che_event_돌격", + [ + 40019, + 146468, + 789905, + 251987, + 37644 + ], + 1, + "89b75dc.jpg?=20210630", + 34, + "che_210812_Q0FJ", + 28, + [ + "hall:betwingold", + "hall:dex2", + "hall:dex3", + "hall:tlrate" + ] + ], + [ + "【34기】rwitch", + 76, + 15, + 97, + "che_event_신중", + [ + 27334, + 55262, + 107977, + 726326, + 21215 + ], + 1, + "54e527.png?=20201024", + 34, + "che_210812_Q0FJ", + 30, + [ + "chief:5", + "hall:dedication", + "hall:tirate" + ] + ], + [ + "【34기】임사영", + 79, + 15, + 96, + "che_event_신중", + [ + 55041, + 53946, + 69082, + 997001, + 57848 + ], + 1, + "10e5f72.jpg?=20210430", + 34, + "che_210812_Q0FJ", + 32, + [ + "hall:dex4", + "hall:dex5", + "hall:experience", + "hall:killnum", + "hall:killrate", + "hall:killrate_person", + "hall:tirate", + "hall:ttrate", + "hall:winrate" + ] + ], + [ + "【34기】그림자", + 79, + 94, + 16, + "che_event_기병", + [ + 34660, + 79860, + 949183, + 244756, + 35964 + ], + 0, + "default.jpg", + 34, + "che_210812_Q0FJ", + 33, + [ + "hall:dex3", + "hall:tsrate" + ] + ], + [ + "【34기】평민킬러", + 95, + 80, + 15, + "che_event_척사", + [ + 29305, + 91496, + 1437833, + 277508, + 62014 + ], + 1, + "fb23a32.jpg?=20190904", + 34, + "che_210812_Q0FJ", + 64, + [ + "chief:8", + "hall:betgold", + "hall:dex3", + "hall:dex5", + "hall:killcrew", + "hall:killcrew_person", + "hall:killnum", + "hall:killrate", + "hall:killrate_person", + "hall:occupied", + "hall:tlrate", + "hall:tsrate", + "hall:warnum", + "hall:winrate" + ] + ], + [ + "【34기】동오의덕", + 78, + 92, + 16, + "che_event_무쌍", + [ + 23840, + 157387, + 792892, + 180414, + 33880 + ], + 0, + "default.jpg", + 34, + "che_210812_Q0FJ", + 68, + [ + "hall:dex2", + "hall:dex3", + "hall:tsrate" + ] + ], + [ + "【34기】누렁", + 77, + 16, + 95, + "che_event_환술", + [ + 8041, + 62897, + 108021, + 966617, + 40092 + ], + 1, + "4bbfa36.jpg?=20190411", + 34, + "che_210812_Q0FJ", + 74, + [ + "hall:dedication", + "hall:experience", + "hall:killrate", + "hall:killrate_person" + ] + ], + [ + "【34기】관지평", + 80, + 90, + 15, + "che_event_의술", + [ + 642663, + 278478, + 98713, + 205056, + 28879 + ], + 1, + "2d4c8b7.jpg?=20210821", + 34, + "che_210812_Q0FJ", + 78, + [ + "hall:dex1", + "hall:dex2", + "hall:occupied", + "hall:tsrate" + ] + ], + [ + "【34기】뿌뿌", + 92, + 82, + 16, + "che_event_척사", + [ + 104890, + 1002747, + 55473, + 252671, + 32377 + ], + 0, + "default.jpg", + 34, + "che_210812_Q0FJ", + 170, + [ + "hall:dex1", + "hall:dex2", + "hall:killcrew", + "hall:killcrew_person", + "hall:killnum", + "hall:tlrate", + "hall:tsrate", + "hall:ttrate", + "hall:warnum", + "hall:winrate" + ] + ], + [ + "【34기】일이석우", + 90, + 78, + 16, + "che_event_저격", + [ + 15141, + 75946, + 372116, + 163811, + 17675 + ], + 1, + "9c2026b.jpg?=20200527", + 34, + "che_210812_Q0FJ", + 172, + [ + "hall:dex3", + "hall:tlrate" + ] + ], + [ + "【34기】사스케", + 16, + 79, + 91, + "che_event_신산", + [ + 9363, + 6653, + 3955, + 3193, + 4218 + ], + 1, + "986348a.jpg?=20190815", + 34, + "che_210812_Q0FJ", + 176, + [ + "hall:firenum", + "hall:ttrate" + ] + ], + [ + "【34기】건방진노예", + 78, + 15, + 92, + "che_event_집중", + [ + 64680, + 51171, + 66575, + 545991, + 20062 + ], + 0, + "default.jpg", + 34, + "che_210812_Q0FJ", + 185, + [ + "hall:dex1", + "hall:tirate" + ] + ], + [ + "【34기】INDIS", + 91, + 81, + 15, + "che_event_격노", + [ + 69771, + 631801, + 61599, + 204046, + 269915 + ], + 0, + "default.jpg", + 34, + "che_210812_Q0FJ", + 188, + [ + "hall:betgold", + "hall:dex1", + "hall:dex2", + "hall:dex5", + "hall:tlrate" + ] + ], + [ + "【34기】도지코인", + 15, + 74, + 96, + "che_event_신산", + [ + 0, + 0, + 0, + 0, + 0 + ], + 1, + "7449f9e.png?=20210815", + 34, + "che_210812_Q0FJ", + 269, + [ + "hall:dedication", + "hall:firenum", + "hall:tirate", + "hall:ttrate" + ] + ], + [ + "【34기】천괴금", + 77, + 89, + 17, + "che_event_돌격", + [ + 52798, + 882959, + 98883, + 163026, + 40898 + ], + 1, + "2b239af.png?=20190824", + 34, + "che_210812_Q0FJ", + 310, + [ + "hall:dex2", + "hall:dex5", + "hall:tsrate" + ] + ], + [ + "【34기】독피자찬스", + 85, + 73, + 15, + "che_event_격노", + [ + 274752, + 27747, + 52862, + 96562, + 27308 + ], + 1, + "6f8492f.png?=20210830", + 34, + "che_210812_Q0FJ", + 569, + [ + "hall:betgold", + "hall:dex1" + ] + ], + [ + "【34기】천투랑", + 72, + 83, + 17, + "che_event_징병", + [ + 158454, + 60884, + 9584, + 80732, + 3933 + ], + 0, + "default.jpg", + 34, + "che_210812_Q0FJ", + 573, + [ + "hall:dex1" + ] + ], + [ + "【34기】이데아캐논", + 84, + 73, + 15, + "che_event_위압", + [ + 167008, + 10750, + 69084, + 93895, + 11486 + ], + 0, + "default.jpg", + 34, + "che_210812_Q0FJ", + 577, + [ + "hall:dex1" + ] + ], + [ + "【34기】김먁사", + 85, + 73, + 15, + "che_event_돌격", + [ + 28114, + 246757, + 37995, + 100660, + 12391 + ], + 0, + "default.jpg", + 34, + "che_210812_Q0FJ", + 578, + [ + "hall:dex2" + ] + ], + [ + "【35기】타코다치", + 87, + 78, + 16, + "che_event_궁병", + [ + 49772, + 356856, + 23035, + 50415, + 20515 + ], + 1, + "a42b8f6.jpg?=20210916", + 35, + "che_210916_SfW7", + 4, + [ + "hall:dex2", + "hall:killrate_person" + ] + ], + [ + "【35기】돌아온너구리", + 94, + 76, + 15, + "che_event_견고", + [ + 951083, + 17418, + 34926, + 28248, + 21483 + ], + 1, + "79dbce5.jpg?=20210918", + 35, + "che_210916_SfW7", + 8, + [ + "chief:11", + "hall:betgold", + "hall:betrate", + "hall:betwin", + "hall:betwingold", + "hall:dex1", + "hall:killcrew", + "hall:killcrew_person", + "hall:killnum", + "hall:warnum", + "hall:winrate" + ] + ], + [ + "【35기】메지로 맥퀸", + 94, + 75, + 15, + "che_event_돌격", + [ + 22973, + 99279, + 602209, + 121913, + 12922 + ], + 1, + "a03e34.jpg?=20210916", + 35, + "che_210916_SfW7", + 9, + [ + "hall:dex3", + "hall:tlrate" + ] + ], + [ + "【35기】임사영", + 76, + 15, + 97, + "che_event_집중", + [ + 126130, + 119334, + 126735, + 1097320, + 29296 + ], + 1, + "10e5f72.jpg?=20210430", + 35, + "che_210916_SfW7", + 10, + [ + "hall:dex1", + "hall:dex4", + "hall:experience", + "hall:killcrew", + "hall:killcrew_person", + "hall:killnum", + "hall:killrate", + "hall:killrate_person", + "hall:tirate", + "hall:warnum", + "hall:winrate" + ] + ], + [ + "【35기】사스케", + 76, + 94, + 15, + "che_event_견고", + [ + 25272, + 95535, + 1050031, + 57782, + 63488 + ], + 1, + "986348a.jpg?=20190815", + 35, + "che_210916_SfW7", + 11, + [ + "chief:12", + "hall:betgold", + "hall:betrate", + "hall:betwin", + "hall:betwingold", + "hall:dedication", + "hall:dex3", + "hall:dex5", + "hall:experience", + "hall:firenum", + "hall:killcrew", + "hall:killnum", + "hall:killrate", + "hall:killrate_person", + "hall:occupied", + "hall:tsrate", + "hall:warnum", + "hall:winrate" + ] + ], + [ + "【35기】Hide_D", + 78, + 16, + 91, + "che_event_집중", + [ + 48830, + 90889, + 94770, + 620197, + 19262 + ], + 1, + "9f0a2a8.png?=20200106", + 35, + "che_210916_SfW7", + 12, + [ + "hall:dex4", + "hall:killcrew_person", + "hall:tirate" + ] + ], + [ + "【35기】반계", + 15, + 94, + 75, + "che_event_신산", + [ + 0, + 0, + 0, + 0, + 0 + ], + 0, + "default.jpg", + 35, + "che_210916_SfW7", + 14, + [ + "hall:dedication", + "hall:experience", + "hall:firenum", + "hall:tsrate" + ] + ], + [ + "【35기】퍄퍄", + 93, + 76, + 15, + "che_event_견고", + [ + 956867, + 53835, + 94042, + 150828, + 33857 + ], + 0, + "default.jpg", + 35, + "che_210916_SfW7", + 16, + [ + "hall:betwin", + "hall:betwingold", + "hall:dex1", + "hall:dex5", + "hall:experience", + "hall:firenum", + "hall:killcrew", + "hall:killcrew_person", + "hall:killrate", + "hall:killrate_person", + "hall:occupied", + "hall:tlrate", + "hall:ttrate", + "hall:warnum" + ] + ], + [ + "【35기】이드", + 76, + 93, + 15, + "che_event_무쌍", + [ + 97184, + 489678, + 22729, + 101833, + 26118 + ], + 1, + "5898830.jpg?=20210831", + 35, + "che_210916_SfW7", + 18, + [ + "hall:dex2", + "hall:tsrate" + ] + ], + [ + "【35기】수장", + 88, + 79, + 16, + "che_event_견고", + [ + 734366, + 28652, + 138204, + 129814, + 31727 + ], + 1, + "b725306.jpg?=20210325", + 35, + "che_210916_SfW7", + 19, + [ + "hall:dex1", + "hall:ttrate" + ] + ], + [ + "【35기】트위치", + 75, + 93, + 15, + "che_event_돌격", + [ + 47113, + 395814, + 144430, + 56095, + 22912 + ], + 1, + "8fd9b35.png?=20210916", + 35, + "che_210916_SfW7", + 20, + [ + "hall:betwin", + "hall:dex2", + "hall:dex3", + "hall:killrate", + "hall:killrate_person", + "hall:tsrate", + "hall:winrate" + ] + ], + [ + "【35기】갈근", + 77, + 15, + 94, + "che_event_반계", + [ + 63078, + 116644, + 58350, + 591788, + 14066 + ], + 0, + "default.jpg", + 35, + "che_210916_SfW7", + 21, + [ + "hall:dex4", + "hall:tirate" + ] + ], + [ + "【35기】아크라시아", + 100, + 43, + 42, + "che_event_공성", + [ + 3880, + 0, + 0, + 12434, + 430173 + ], + 1, + "7d93805.jpg?=20210916", + 35, + "che_210916_SfW7", + 23, + [ + "hall:betwin", + "hall:betwingold", + "hall:dex5", + "hall:experience", + "hall:firenum", + "hall:killrate", + "hall:occupied", + "hall:tlrate", + "hall:ttrate", + "hall:winrate" + ] + ], + [ + "【35기】천괴금", + 15, + 70, + 100, + "che_event_의술", + [ + 0, + 0, + 0, + 0, + 0 + ], + 1, + "2b239af.png?=20190824", + 35, + "che_210916_SfW7", + 24, + [ + "hall:betwin", + "hall:betwingold", + "hall:tirate" + ] + ], + [ + "【35기】방비방비", + 15, + 86, + 79, + "che_event_신산", + [ + 0, + 0, + 0, + 0, + 0 + ], + 0, + "default.jpg", + 35, + "che_210916_SfW7", + 27, + [ + "hall:experience", + "hall:firenum" + ] + ], + [ + "【35기】중집", + 15, + 93, + 75, + "che_event_신산", + [ + 0, + 0, + 0, + 0, + 0 + ], + 0, + "default.jpg", + 35, + "che_210916_SfW7", + 28, + [ + "hall:firenum", + "hall:tsrate" + ] + ], + [ + "【35기】로리", + 76, + 15, + 93, + "che_event_신산", + [ + 86428, + 68387, + 120004, + 555435, + 19939 + ], + 1, + "50794a6.jpg?=20190923", + 35, + "che_210916_SfW7", + 29, + [ + "hall:dex4", + "hall:tirate" + ] + ], + [ + "【35기】시뉴카린", + 77, + 15, + 92, + "che_event_집중", + [ + 106217, + 49397, + 69460, + 553667, + 32937 + ], + 1, + "a7a3fdf.gif?=20210917", + 35, + "che_210916_SfW7", + 31, + [ + "chief:7", + "hall:betgold", + "hall:dex4", + "hall:tirate" + ] + ], + [ + "【35기】따슬링어", + 90, + 79, + 15, + "che_event_위압", + [ + 270743, + 271321, + 151396, + 112140, + 27872 + ], + 0, + "default.jpg", + 35, + "che_210916_SfW7", + 32, + [ + "hall:betgold", + "hall:dex1", + "hall:dex3" + ] + ], + [ + "【35기】평민킬러", + 95, + 74, + 15, + "che_event_견고", + [ + 107699, + 797067, + 101775, + 163015, + 39124 + ], + 1, + "fb23a32.jpg?=20190904", + 35, + "che_210916_SfW7", + 33, + [ + "hall:dex2", + "hall:dex5", + "hall:killcrew", + "hall:killcrew_person", + "hall:tlrate", + "hall:warnum" + ] + ], + [ + "【35기】외심장", + 82, + 15, + 89, + "che_event_환술", + [ + 73786, + 88105, + 122172, + 612532, + 8299 + ], + 1, + "36110cd.jpg?=20180826", + 35, + "che_210916_SfW7", + 34, + [ + "hall:dex4", + "hall:winrate" + ] + ], + [ + "【35기】유카", + 91, + 79, + 15, + "che_event_돌격", + [ + 636793, + 43623, + 92314, + 73289, + 43592 + ], + 0, + "default.jpg", + 35, + "che_210916_SfW7", + 35, + [ + "chief:10", + "hall:betgold", + "hall:betrate", + "hall:betwingold", + "hall:dedication", + "hall:dex1", + "hall:dex5", + "hall:firenum", + "hall:killnum", + "hall:killrate", + "hall:tlrate", + "hall:ttrate", + "hall:winrate" + ] + ], + [ + "【35기】실패왕대악질", + 94, + 76, + 15, + "che_event_반계", + [ + 78860, + 79194, + 853372, + 118713, + 25112 + ], + 1, + "fcf7003.gif?=20210916", + 35, + "che_210916_SfW7", + 36, + [ + "hall:betgold", + "hall:betrate", + "hall:betwin", + "hall:betwingold", + "hall:dex3", + "hall:experience", + "hall:killcrew", + "hall:killcrew_person", + "hall:killnum", + "hall:killrate", + "hall:killrate_person", + "hall:warnum" + ] + ], + [ + "【35기】음화화핫", + 93, + 77, + 15, + "che_event_궁병", + [ + 64342, + 1112859, + 30441, + 89550, + 44762 + ], + 1, + "a12cb00.jpg?=20210925", + 35, + "che_210916_SfW7", + 37, + [ + "chief:6", + "hall:betgold", + "hall:betrate", + "hall:betwin", + "hall:betwingold", + "hall:dex2", + "hall:dex5", + "hall:experience", + "hall:killcrew", + "hall:killcrew_person", + "hall:killnum", + "hall:killrate", + "hall:killrate_person", + "hall:occupied", + "hall:tlrate", + "hall:warnum" + ] + ], + [ + "【35기】제갈여포", + 89, + 78, + 15, + "che_event_견고", + [ + 582892, + 280066, + 111335, + 154627, + 32515 + ], + 1, + "e8e8adc.jpg?=20180419", + 35, + "che_210916_SfW7", + 38, + [ + "hall:dex1", + "hall:killcrew", + "hall:killcrew_person", + "hall:killnum", + "hall:warnum" + ] + ], + [ + "【35기】호갱", + 79, + 15, + 90, + "che_event_의술", + [ + 25128, + 27867, + 59752, + 321412, + 11348 + ], + 0, + "default.jpg", + 35, + "che_210916_SfW7", + 39, + [ + "hall:dedication", + "hall:dex4" + ] + ], + [ + "【35기】통천교주", + 79, + 15, + 90, + "che_event_집중", + [ + 100309, + 106430, + 47762, + 562463, + 30050 + ], + 1, + "715dec5.jpg?=20210921", + 35, + "che_210916_SfW7", + 40, + [ + "chief:5", + "hall:betwin", + "hall:dex4", + "hall:killnum", + "hall:winrate" + ] + ], + [ + "【35기】똑똑똑똑똑똑똑똑똑", + 76, + 95, + 15, + "che_event_견고", + [ + 854836, + 44585, + 98308, + 186395, + 27104 + ], + 1, + "d1d2ae.gif?=20210921", + 35, + "che_210916_SfW7", + 41, + [ + "hall:betgold", + "hall:betrate", + "hall:betwin", + "hall:betwingold", + "hall:dex1", + "hall:killcrew", + "hall:killcrew_person", + "hall:killnum", + "hall:killrate_person", + "hall:occupied", + "hall:tsrate", + "hall:warnum" + ] + ], + [ + "【35기】Kronii", + 98, + 71, + 15, + "che_event_견고", + [ + 57845, + 363626, + 19346, + 56645, + 19974 + ], + 1, + "364c0f0.gif?=20210922", + 35, + "che_210916_SfW7", + 42, + [ + "hall:dex2", + "hall:firenum", + "hall:occupied", + "hall:tlrate", + "hall:ttrate" + ] + ], + [ + "【35기】로비", + 15, + 71, + 96, + "che_event_의술", + [ + 0, + 0, + 0, + 0, + 0 + ], + 1, + "708a981.png?=20200402", + 35, + "che_210916_SfW7", + 43, + [ + "chief:9", + "hall:betgold", + "hall:dedication", + "hall:experience", + "hall:tirate" + ] + ], + [ + "【35기】귀달", + 77, + 93, + 15, + "che_event_견고", + [ + 120803, + 569580, + 76343, + 83602, + 19488 + ], + 0, + "default.jpg", + 35, + "che_210916_SfW7", + 45, + [ + "hall:dex2", + "hall:firenum", + "hall:tsrate" + ] + ], + [ + "【35기】Karl", + 91, + 75, + 16, + "che_event_견고", + [ + 80343, + 128575, + 678645, + 175848, + 49687 + ], + 0, + "default.jpg", + 35, + "che_210916_SfW7", + 46, + [ + "hall:betgold", + "hall:betrate", + "hall:betwingold", + "hall:dex3", + "hall:dex5", + "hall:occupied" + ] + ], + [ + "【35기】rwitch", + 76, + 15, + 93, + "che_event_징병", + [ + 100980, + 53398, + 41480, + 341251, + 12175 + ], + 1, + "54e527.png?=20201024", + 35, + "che_210916_SfW7", + 47, + [ + "hall:dex4", + "hall:tirate", + "hall:ttrate" + ] + ], + [ + "【35기】조민", + 94, + 77, + 15, + "che_event_무쌍", + [ + 142494, + 862647, + 50349, + 175019, + 22951 + ], + 1, + "e843171.png?=20210922", + 35, + "che_210916_SfW7", + 48, + [ + "hall:dex1", + "hall:dex2", + "hall:killcrew", + "hall:killcrew_person", + "hall:killnum", + "hall:tlrate", + "hall:ttrate", + "hall:warnum" + ] + ], + [ + "【35기】버그좀써보자", + 80, + 88, + 15, + "che_event_견고", + [ + 58340, + 515594, + 41576, + 65872, + 32125 + ], + 0, + "default.jpg", + 35, + "che_210916_SfW7", + 49, + [ + "hall:dedication", + "hall:dex2" + ] + ], + [ + "【35기】봄꽃", + 84, + 16, + 83, + "che_event_귀병", + [ + 23972, + 67494, + 42019, + 361950, + 31095 + ], + 0, + "default.jpg", + 35, + "che_210916_SfW7", + 50, + [ + "hall:dedication", + "hall:dex4" + ] + ], + [ + "【35기】ARES군주", + 78, + 90, + 16, + "che_event_견고", + [ + 108209, + 122585, + 581013, + 148874, + 34671 + ], + 1, + "106f82e.jpg?=20210212", + 35, + "che_210916_SfW7", + 51, + [ + "hall:dex3", + "hall:dex5", + "hall:tsrate" + ] + ], + [ + "【35기】김나영", + 76, + 93, + 15, + "che_event_필살", + [ + 41788, + 131744, + 695133, + 95344, + 37092 + ], + 1, + "f6ea996.jpg?=20210930", + 35, + "che_210916_SfW7", + 53, + [ + "hall:dex3", + "hall:dex5", + "hall:firenum", + "hall:occupied", + "hall:tsrate", + "hall:ttrate" + ] + ], + [ + "【35기】ㅇㄷ", + 92, + 74, + 16, + "che_event_견고", + [ + 448165, + 21537, + 53835, + 129552, + 8653 + ], + 0, + "default.jpg", + 35, + "che_210916_SfW7", + 55, + [ + "hall:dex1", + "hall:tlrate" + ] + ], + [ + "【35기】김갑환", + 73, + 15, + 96, + "che_event_집중", + [ + 54601, + 36161, + 29585, + 251271, + 27395 + ], + 1, + "dcff9fd.jpg?=20180823", + 35, + "che_210916_SfW7", + 58, + [ + "hall:dedication", + "hall:tirate", + "hall:ttrate" + ] + ], + [ + "【35기】누렁", + 79, + 90, + 15, + "che_event_위압", + [ + 22327, + 62994, + 443107, + 29276, + 29562 + ], + 1, + "4bbfa36.jpg?=20190411", + 35, + "che_210916_SfW7", + 59, + [ + "hall:dedication", + "hall:dex3", + "hall:killrate", + "hall:killrate_person", + "hall:winrate" + ] + ], + [ + "【35기】리플5년차", + 89, + 78, + 15, + "che_event_궁병", + [ + 39038, + 515839, + 25627, + 55478, + 16723 + ], + 1, + "cd4cd29.jpg?=20210917", + 35, + "che_210916_SfW7", + 93, + [ + "hall:dex2", + "hall:killrate_person", + "hall:occupied" + ] + ], + [ + "【35기】나데코", + 90, + 76, + 15, + "che_event_돌격", + [ + 38922, + 60402, + 419258, + 82328, + 12658 + ], + 0, + "default.jpg", + 35, + "che_210916_SfW7", + 162, + [ + "hall:dex3", + "hall:tlrate", + "hall:ttrate" + ] + ], + [ + "【35기】페이트", + 86, + 78, + 15, + "che_event_공성", + [ + 3961, + 0, + 483, + 6554, + 609319 + ], + 1, + "39cbafe.jpg?=20210910", + 35, + "che_210916_SfW7", + 254, + [ + "chief:8", + "hall:dex5", + "hall:experience", + "hall:killrate", + "hall:occupied", + "hall:winrate" + ] + ], + [ + "【35기】ㅅ1뉴카린", + 71, + 15, + 92, + "che_event_징병", + [ + 0, + 0, + 0, + 0, + 0 + ], + 1, + "ebefbb6.jpg?=20210929", + 35, + "che_210916_SfW7", + 267, + [ + "hall:tirate" + ] + ], + [ + "【35기】어르신", + 74, + 90, + 15, + "che_event_견고", + [ + 54595, + 346565, + 37961, + 41429, + 20145 + ], + 0, + "default.jpg", + 35, + "che_210916_SfW7", + 274, + [ + "hall:dedication", + "hall:tsrate" + ] + ], + [ + "【36기】코코로네네", + 77, + 16, + 93, + "che_event_집중", + [ + 22692, + 64442, + 115137, + 940514, + 48551 + ], + 1, + "dc97821.jpg?=20211014", + 36, + "che_211014_PYQl", + 4, + [ + "chief:9", + "hall:dex4", + "hall:dex5", + "hall:experience", + "hall:killcrew", + "hall:killcrew_person", + "hall:killnum", + "hall:killrate", + "hall:killrate_person", + "hall:occupied", + "hall:warnum", + "hall:winrate" + ] + ], + [ + "【36기】부됸니", + 79, + 87, + 17, + "che_event_위압", + [ + 13115, + 155150, + 567344, + 66017, + 17924 + ], + 0, + "default.jpg", + 36, + "che_211014_PYQl", + 9, + [ + "hall:dex3", + "hall:tsrate", + "hall:ttrate" + ] + ], + [ + "【36기】과학자", + 15, + 77, + 93, + "che_event_신산", + [ + 0, + 0, + 0, + 0, + 0 + ], + 0, + "default.jpg", + 36, + "che_211014_PYQl", + 10, + [ + "hall:firenum", + "hall:tirate" + ] + ], + [ + "【36기】퍄퍄", + 78, + 91, + 15, + "che_event_위압", + [ + 48597, + 129870, + 865023, + 182928, + 18449 + ], + 0, + "default.jpg", + 36, + "che_211014_PYQl", + 11, + [ + "hall:dex3", + "hall:firenum", + "hall:killcrew", + "hall:killcrew_person", + "hall:killnum", + "hall:tsrate", + "hall:warnum" + ] + ], + [ + "【36기】Hide_D", + 80, + 15, + 89, + "che_event_신중", + [ + 59325, + 89148, + 104675, + 555999, + 26825 + ], + 1, + "9f0a2a8.png?=20200106", + 36, + "che_211014_PYQl", + 12, + [ + "hall:dex4", + "hall:occupied" + ] + ], + [ + "【36기】음화하핫", + 90, + 82, + 16, + "che_event_궁병", + [ + 66222, + 1718630, + 71201, + 68643, + 30074 + ], + 1, + "a12cb00.jpg?=20210925", + 36, + "che_211014_PYQl", + 13, + [ + "hall:dex2", + "hall:experience", + "hall:killcrew", + "hall:killcrew_person", + "hall:killnum", + "hall:killrate", + "hall:killrate_person", + "hall:warnum" + ] + ], + [ + "【36기】이드", + 87, + 81, + 15, + "che_event_견고", + [ + 658019, + 44568, + 86649, + 95159, + 35899 + ], + 1, + "5898830.jpg?=20210831", + 36, + "che_211014_PYQl", + 14, + [ + "hall:dex1", + "hall:firenum", + "hall:killrate", + "hall:killrate_person", + "hall:occupied", + "hall:ttrate", + "hall:winrate" + ] + ], + [ + "【36기】평민킬러", + 75, + 97, + 15, + "che_event_척사", + [ + 37816, + 804387, + 19677, + 142616, + 38690 + ], + 1, + "fb23a32.jpg?=20190904", + 36, + "che_211014_PYQl", + 15, + [ + "chief:8", + "hall:betgold", + "hall:betrate", + "hall:betwin", + "hall:betwingold", + "hall:dedication", + "hall:dex2", + "hall:experience", + "hall:killcrew", + "hall:killnum", + "hall:killrate", + "hall:killrate_person", + "hall:occupied", + "hall:tsrate", + "hall:winrate" + ] + ], + [ + "【36기】네시", + 90, + 78, + 16, + "che_event_위압", + [ + 68776, + 105630, + 752719, + 270718, + 16172 + ], + 0, + "default.jpg", + 36, + "che_211014_PYQl", + 16, + [ + "hall:betgold", + "hall:betwin", + "hall:betwingold", + "hall:dex3", + "hall:killcrew_person" + ] + ], + [ + "【36기】갈근", + 79, + 15, + 90, + "che_event_집중", + [ + 17537, + 49048, + 70305, + 801477, + 24367 + ], + 0, + "default.jpg", + 36, + "che_211014_PYQl", + 19, + [ + "hall:dex4", + "hall:firenum" + ] + ], + [ + "【36기】귀달", + 88, + 15, + 82, + "che_event_환술", + [ + 56852, + 92760, + 30414, + 440115, + 36696 + ], + 0, + "default.jpg", + 36, + "che_211014_PYQl", + 21, + [ + "hall:tlrate" + ] + ], + [ + "【36기】앵드캡", + 81, + 88, + 15, + "che_event_위압", + [ + 823455, + 69014, + 54364, + 52561, + 43072 + ], + 0, + "default.jpg", + 36, + "che_211014_PYQl", + 23, + [ + "hall:dex1", + "hall:dex5", + "hall:experience", + "hall:killrate", + "hall:occupied", + "hall:warnum" + ] + ], + [ + "【36기】rwitch", + 78, + 15, + 91, + "che_event_반계", + [ + 10957, + 43893, + 61428, + 466306, + 31267 + ], + 1, + "54e527.png?=20201024", + 36, + "che_211014_PYQl", + 24, + [ + "hall:firenum", + "hall:tirate", + "hall:winrate" + ] + ], + [ + "【36기】이루마야 요루파쨩", + 90, + 80, + 15, + "che_event_격노", + [ + 22272, + 47095, + 848235, + 235257, + 23122 + ], + 1, + "fbd22b6.jpg?=20211014", + 36, + "che_211014_PYQl", + 28, + [ + "hall:dex3", + "hall:killcrew", + "hall:killcrew_person", + "hall:killnum", + "hall:killrate_person", + "hall:tlrate", + "hall:warnum", + "hall:winrate" + ] + ], + [ + "【36기】킹구", + 88, + 80, + 15, + "che_event_무쌍", + [ + 37057, + 818315, + 77763, + 131816, + 38105 + ], + 1, + "a01d0b5.png?=20211014", + 36, + "che_211014_PYQl", + 29, + [ + "hall:dex2", + "hall:killcrew", + "hall:killcrew_person", + "hall:killrate", + "hall:killrate_person" + ] + ], + [ + "【36기】루이즈", + 75, + 15, + 95, + "che_event_환술", + [ + 26163, + 88978, + 113964, + 717747, + 43695 + ], + 1, + "fe73c1a.jpg?=20211015", + 36, + "che_211014_PYQl", + 30, + [ + "hall:dex4", + "hall:dex5", + "hall:experience", + "hall:killnum", + "hall:occupied", + "hall:tirate", + "hall:warnum", + "hall:winrate" + ] + ], + [ + "【36기】페이트", + 16, + 92, + 76, + "che_event_필살", + [ + 0, + 0, + 0, + 1, + 0 + ], + 1, + "39cbafe.jpg?=20210910", + 36, + "che_211014_PYQl", + 31, + [ + "hall:firenum" + ] + ], + [ + "【36기】사스케", + 94, + 75, + 15, + "che_event_견고", + [ + 54146, + 704829, + 46132, + 75303, + 58441 + ], + 1, + "986348a.jpg?=20190815", + 36, + "che_211014_PYQl", + 32, + [ + "hall:betgold", + "hall:betrate", + "hall:betwin", + "hall:betwingold", + "hall:dex2", + "hall:dex5", + "hall:experience", + "hall:firenum", + "hall:occupied", + "hall:tlrate" + ] + ], + [ + "【36기】임사영", + 77, + 91, + 15, + "che_event_견고", + [ + 60372, + 406357, + 199935, + 161825, + 40210 + ], + 1, + "10e5f72.jpg?=20210430", + 36, + "che_211014_PYQl", + 33, + [ + "hall:dex2", + "hall:dex5", + "hall:tsrate", + "hall:ttrate" + ] + ], + [ + "【36기】아텐 누", + 90, + 16, + 80, + "che_event_신산", + [ + 31826, + 217784, + 200069, + 962605, + 28169 + ], + 1, + "79dbce5.jpg?=20210918", + 36, + "che_211014_PYQl", + 34, + [ + "hall:dex4", + "hall:killcrew", + "hall:killcrew_person", + "hall:killnum", + "hall:warnum" + ] + ], + [ + "【36기】장화", + 79, + 90, + 15, + "che_event_견고", + [ + 49683, + 105671, + 955288, + 81120, + 22328 + ], + 1, + "82060d2.jpg?=20211014", + 36, + "che_211014_PYQl", + 35, + [ + "hall:dex3", + "hall:firenum", + "hall:killcrew", + "hall:killcrew_person", + "hall:killnum", + "hall:occupied", + "hall:warnum" + ] + ], + [ + "【36기】네이미", + 77, + 90, + 17, + "che_event_위압", + [ + 636435, + 78711, + 130548, + 106433, + 25038 + ], + 0, + "default.jpg", + 36, + "che_211014_PYQl", + 36, + [ + "hall:betgold", + "hall:betrate", + "hall:betwin", + "hall:betwingold", + "hall:dex1", + "hall:killrate_person", + "hall:tsrate" + ] + ], + [ + "【36기】지갑여전사시뉴카린", + 76, + 89, + 16, + "che_event_견고", + [ + 303496, + 21473, + 145674, + 79452, + 42172 + ], + 1, + "7670149.gif?=20211013", + 36, + "che_211014_PYQl", + 37, + [ + "hall:betgold", + "hall:betwin", + "hall:betwingold", + "hall:dedication", + "hall:dex1", + "hall:dex5", + "hall:experience", + "hall:firenum", + "hall:occupied" + ] + ], + [ + "【36기】Inanis", + 78, + 92, + 15, + "che_event_돌격", + [ + 453030, + 26031, + 57119, + 61151, + 19614 + ], + 1, + "5ddb14a.webp?=20211014", + 36, + "che_211014_PYQl", + 38, + [ + "hall:dex1", + "hall:tsrate" + ] + ], + [ + "【36기】로리", + 79, + 15, + 90, + "che_event_신산", + [ + 31581, + 156781, + 73617, + 473678, + 27018 + ], + 1, + "50794a6.jpg?=20190923", + 36, + "che_211014_PYQl", + 39, + [ + "hall:tirate" + ] + ], + [ + "【36기】방비방비", + 78, + 15, + 89, + "che_event_집중", + [ + 23996, + 92126, + 78607, + 613074, + 33973 + ], + 0, + "default.jpg", + 36, + "che_211014_PYQl", + 40, + [ + "hall:dex4", + "hall:tirate" + ] + ], + [ + "【36기】스이세이", + 95, + 73, + 16, + "che_event_징병", + [ + 51630, + 567201, + 13680, + 138825, + 44323 + ], + 1, + "82b4f5e.jpg?=20211014", + 36, + "che_211014_PYQl", + 41, + [ + "chief:6", + "hall:betgold", + "hall:dedication", + "hall:dex2", + "hall:dex5", + "hall:tlrate" + ] + ], + [ + "【36기】깡!", + 77, + 16, + 91, + "che_event_신중", + [ + 21529, + 73267, + 56320, + 482131, + 33700 + ], + 1, + "59fd00.png?=20200717", + 36, + "che_211014_PYQl", + 42, + [ + "chief:11" + ] + ], + [ + "【36기】제갈여포", + 78, + 92, + 15, + "che_event_척사", + [ + 16690, + 95325, + 597796, + 78362, + 39315 + ], + 1, + "e8e8adc.jpg?=20180419", + 36, + "che_211014_PYQl", + 43, + [ + "hall:dex3", + "hall:tsrate", + "hall:winrate" + ] + ], + [ + "【36기】일이석우", + 92, + 75, + 16, + "che_event_위압", + [ + 14454, + 121017, + 514951, + 149247, + 14285 + ], + 1, + "9c2026b.jpg?=20200527", + 36, + "che_211014_PYQl", + 44, + [ + "hall:dex3", + "hall:tlrate" + ] + ], + [ + "【36기】중집", + 76, + 15, + 92, + "che_event_집중", + [ + 14389, + 61081, + 70428, + 427864, + 12083 + ], + 0, + "default.jpg", + 36, + "che_211014_PYQl", + 45, + [ + "hall:tirate", + "hall:winrate" + ] + ], + [ + "【36기】조민", + 79, + 15, + 90, + "che_event_척사", + [ + 116280, + 94588, + 72320, + 741935, + 26702 + ], + 1, + "e843171.png?=20210922", + 36, + "che_211014_PYQl", + 46, + [ + "hall:dex1", + "hall:dex4" + ] + ], + [ + "【36기】봄꽃", + 90, + 15, + 78, + "che_event_필살", + [ + 29210, + 50262, + 47208, + 423476, + 15536 + ], + 1, + "1390e40.jpg?=20211015", + 36, + "che_211014_PYQl", + 47, + [ + "hall:betgold", + "hall:tlrate" + ] + ], + [ + "【36기】RainbowVoyage", + 76, + 15, + 93, + "che_event_의술", + [ + 23888, + 12088, + 12415, + 515872, + 49384 + ], + 1, + "3533aad.webp?=20211013", + 36, + "che_211014_PYQl", + 48, + [ + "chief:7", + "hall:betgold", + "hall:betwin", + "hall:betwingold", + "hall:dedication", + "hall:dex4", + "hall:dex5" + ] + ], + [ + "【36기】부스터샷", + 97, + 77, + 15, + "che_event_견고", + [ + 150203, + 1780830, + 93563, + 256392, + 33687 + ], + 1, + "e41c212.png?=20211103", + 36, + "che_211014_PYQl", + 49, + [ + "hall:betgold", + "hall:betrate", + "hall:betwin", + "hall:betwingold", + "hall:dex1", + "hall:dex2", + "hall:experience", + "hall:killcrew", + "hall:killcrew_person", + "hall:killnum", + "hall:killrate", + "hall:killrate_person", + "hall:tlrate", + "hall:ttrate", + "hall:warnum", + "hall:winrate" + ] + ], + [ + "【36기】양전", + 15, + 71, + 97, + "che_event_신산", + [ + 0, + 0, + 0, + 0, + 0 + ], + 1, + "f2ed519.jpg?=20211020", + 36, + "che_211014_PYQl", + 50, + [ + "hall:dedication", + "hall:firenum", + "hall:tirate" + ] + ], + [ + "【36기】야고", + 90, + 77, + 16, + "che_event_견고", + [ + 24489, + 66817, + 610739, + 136020, + 35364 + ], + 1, + "c14c0f.jpg?=20211014", + 36, + "che_211014_PYQl", + 51, + [ + "chief:12", + "hall:dedication", + "hall:dex3", + "hall:experience", + "hall:killrate", + "hall:killrate_person", + "hall:tlrate" + ] + ], + [ + "【36기】마령화강혜원", + 90, + 79, + 15, + "che_event_무쌍", + [ + 55761, + 482979, + 69697, + 182124, + 13259 + ], + 1, + "7a328c.jpg?=20210903", + 36, + "che_211014_PYQl", + 52, + [ + "hall:dex2", + "hall:ttrate" + ] + ], + [ + "【36기】타카나시 키아라", + 77, + 92, + 16, + "che_event_견고", + [ + 432939, + 30319, + 103338, + 80375, + 57165 + ], + 1, + "a131a91.jpg?=20211016", + 36, + "che_211014_PYQl", + 53, + [ + "chief:10", + "hall:dedication", + "hall:dex1", + "hall:dex5", + "hall:experience", + "hall:killrate", + "hall:occupied", + "hall:tsrate" + ] + ], + [ + "【36기】나이키쨉엄", + 86, + 15, + 81, + "che_event_집중", + [ + 37860, + 39749, + 157665, + 393697, + 13876 + ], + 1, + "19886a9.jpg?=20211014", + 36, + "che_211014_PYQl", + 54, + [ + "hall:tlrate" + ] + ], + [ + "【36기】천괴금", + 73, + 15, + 94, + "che_event_징병", + [ + 19153, + 31898, + 31059, + 343804, + 54640 + ], + 1, + "2b239af.png?=20190824", + 36, + "che_211014_PYQl", + 55, + [ + "chief:5", + "hall:dedication", + "hall:dex5", + "hall:tirate" + ] + ], + [ + "【36기】버그좀써보자", + 83, + 83, + 16, + "che_event_무쌍", + [ + 27534, + 353125, + 49795, + 146808, + 26757 + ], + 0, + "default.jpg", + 36, + "che_211014_PYQl", + 58, + [ + "hall:dex2" + ] + ], + [ + "【36기】메뚜기", + 16, + 70, + 95, + "che_event_필살", + [ + 0, + 0, + 0, + 0, + 0 + ], + 0, + "default.jpg", + 36, + "che_211014_PYQl", + 62, + [ + "hall:ttrate" + ] + ], + [ + "【36기】ㅇ", + 77, + 89, + 16, + "che_event_기병", + [ + 27352, + 148370, + 486588, + 137056, + 22969 + ], + 0, + "default.jpg", + 36, + "che_211014_PYQl", + 64, + [ + "hall:dex3", + "hall:tsrate" + ] + ], + [ + "【36기】ARES군주", + 77, + 94, + 15, + "che_event_무쌍", + [ + 255644, + 457111, + 372097, + 248160, + 21126 + ], + 1, + "106f82e.jpg?=20210212", + 36, + "che_211014_PYQl", + 67, + [ + "hall:betgold", + "hall:betrate", + "hall:betwin", + "hall:betwingold", + "hall:dex1", + "hall:dex2", + "hall:dex3", + "hall:killcrew", + "hall:killcrew_person", + "hall:killnum", + "hall:killrate", + "hall:killrate_person", + "hall:tsrate", + "hall:ttrate", + "hall:warnum", + "hall:winrate" + ] + ], + [ + "【36기】무지성 치성수", + 15, + 95, + 74, + "che_event_기병", + [ + 0, + 0, + 0, + 0, + 0 + ], + 1, + "3fe1b1f.jpg?=20211014", + 36, + "che_211014_PYQl", + 123, + [ + "hall:dedication", + "hall:ttrate" + ] + ], + [ + "【36기】갓갓가가갓갓", + 79, + 15, + 90, + "che_event_신산", + [ + 15116, + 89902, + 112591, + 646033, + 34054 + ], + 0, + "default.jpg", + 36, + "che_211014_PYQl", + 126, + [ + "hall:dex4", + "hall:tirate", + "hall:ttrate" + ] + ], + [ + "【36기】1분장", + 77, + 15, + 92, + "che_event_신중", + [ + 56965, + 105168, + 68365, + 653492, + 3877 + ], + 1, + "c40f9f7.jpg?=20200222", + 36, + "che_211014_PYQl", + 127, + [ + "hall:dex4", + "hall:tirate", + "hall:ttrate" + ] + ], + [ + "【36기】Nunsense", + 73, + 15, + 94, + "che_event_척사", + [ + 9838, + 35341, + 11282, + 107391, + 813 + ], + 1, + "f456d3.jpg?=20200828", + 36, + "che_211014_PYQl", + 181, + [ + "hall:dedication" + ] + ], + [ + "【36기】구우경맨", + 87, + 79, + 15, + "che_event_견고", + [ + 314575, + 12427, + 36566, + 74779, + 19456 + ], + 0, + "default.jpg", + 36, + "che_211014_PYQl", + 274, + [ + "hall:dex1", + "hall:tlrate" + ] + ], + [ + "【37기】퍄퍄", + 90, + 79, + 15, + "che_event_위압", + [ + 22266, + 96904, + 1153862, + 191214, + 19633 + ], + 0, + "default.jpg", + 37, + "che_211118_dLJd", + 5, + [ + "hall:betrate", + "hall:dex3", + "hall:killcrew", + "hall:killcrew_person", + "hall:killnum", + "hall:killrate_person", + "hall:tlrate", + "hall:warnum" + ] + ], + [ + "【37기】강백호", + 79, + 94, + 15, + "che_event_무쌍", + [ + 36510, + 1542083, + 37033, + 104240, + 34975 + ], + 1, + "7189faa.jpg?=20211128", + 37, + "che_211118_dLJd", + 7, + [ + "hall:dex2", + "hall:experience", + "hall:killcrew", + "hall:killcrew_person", + "hall:killnum", + "hall:killrate", + "hall:killrate_person", + "hall:occupied", + "hall:tsrate", + "hall:warnum", + "hall:winrate" + ] + ], + [ + "【37기】ㄷ", + 80, + 89, + 15, + "che_event_격노", + [ + 77378, + 696446, + 15706, + 124398, + 49122 + ], + 0, + "default.jpg", + 37, + "che_211118_dLJd", + 12, + [ + "hall:dex2", + "hall:dex5" + ] + ], + [ + "【37기】독?루", + 76, + 95, + 15, + "che_event_기병", + [ + 712680, + 49280, + 193627, + 231049, + 32761 + ], + 1, + "d64113f.png?=20211116", + 37, + "che_211118_dLJd", + 14, + [ + "chief:11", + "hall:betgold", + "hall:betrate", + "hall:betwin", + "hall:betwingold", + "hall:dex1", + "hall:dex3", + "hall:experience", + "hall:killcrew", + "hall:killcrew_person", + "hall:killnum", + "hall:killrate", + "hall:killrate_person", + "hall:occupied", + "hall:tsrate", + "hall:warnum", + "hall:winrate" + ] + ], + [ + "【37기】독멜른", + 78, + 15, + 93, + "che_event_신중", + [ + 54229, + 112705, + 39987, + 741820, + 47270 + ], + 1, + "f914551.jpg?=20211029", + 37, + "che_211118_dLJd", + 22, + [ + "chief:5", + "hall:dex4", + "hall:dex5" + ] + ], + [ + "【37기】카이스트", + 78, + 16, + 93, + "che_event_집중", + [ + 25050, + 25526, + 20223, + 993341, + 40410 + ], + 1, + "9361ef8.jpg?=20180907", + 37, + "che_211118_dLJd", + 26, + [ + "chief:9", + "hall:betgold", + "hall:betwin", + "hall:betwingold", + "hall:dedication", + "hall:dex4", + "hall:experience", + "hall:killcrew", + "hall:killnum", + "hall:killrate", + "hall:killrate_person", + "hall:warnum", + "hall:winrate" + ] + ], + [ + "【37기】갓수정차냥해", + 15, + 72, + 97, + "che_event_신중", + [ + 0, + 0, + 0, + 0, + 0 + ], + 0, + "default.jpg", + 37, + "che_211118_dLJd", + 27, + [ + "hall:dedication", + "hall:tirate" + ] + ], + [ + "【37기】피자배달현장복귀딘", + 91, + 79, + 15, + "che_event_무쌍", + [ + 332814, + 72823, + 230435, + 159853, + 51787 + ], + 1, + "d7def07.jpg?=20211118", + 37, + "che_211118_dLJd", + 28, + [ + "hall:dex1", + "hall:dex3", + "hall:dex5", + "hall:tlrate" + ] + ], + [ + "【37기】이드", + 77, + 15, + 93, + "che_event_반계", + [ + 49948, + 78804, + 48820, + 845483, + 5469 + ], + 1, + "5898830.jpg?=20210831", + 37, + "che_211118_dLJd", + 31, + [ + "hall:dex4", + "hall:firenum", + "hall:killcrew_person", + "hall:tirate" + ] + ], + [ + "【37기】네이미", + 79, + 15, + 91, + "che_event_집중", + [ + 67934, + 83603, + 61988, + 639970, + 22052 + ], + 0, + "default.jpg", + 37, + "che_211118_dLJd", + 32, + [ + "hall:dex4", + "hall:ttrate" + ] + ], + [ + "【37기】곡괭이", + 15, + 72, + 99, + "che_event_척사", + [ + 0, + 0, + 0, + 0, + 0 + ], + 1, + "80f1740.jpg?=20211121", + 37, + "che_211118_dLJd", + 33, + [ + "hall:betgold", + "hall:betwin", + "hall:betwingold", + "hall:firenum" + ] + ], + [ + "【37기】이시미", + 76, + 15, + 95, + "che_event_집중", + [ + 31931, + 97549, + 43887, + 705853, + 41164 + ], + 1, + "f5739c9.jpg?=20211118", + 37, + "che_211118_dLJd", + 34, + [ + "hall:dex4", + "hall:experience", + "hall:occupied", + "hall:tirate", + "hall:ttrate", + "hall:winrate" + ] + ], + [ + "【37기】경국지색소교", + 74, + 17, + 93, + "che_event_반계", + [ + 49904, + 14461, + 16097, + 271471, + 21749 + ], + 0, + "default.jpg", + 37, + "che_211118_dLJd", + 35, + [ + "hall:firenum" + ] + ], + [ + "【37기】갓갓갓", + 93, + 76, + 16, + "che_event_위압", + [ + 784563, + 44413, + 46155, + 165087, + 26226 + ], + 0, + "default.jpg", + 37, + "che_211118_dLJd", + 37, + [ + "hall:betrate", + "hall:betwingold", + "hall:dex1", + "hall:killcrew", + "hall:killnum", + "hall:killrate", + "hall:killrate_person" + ] + ], + [ + "【37기】마리아님", + 75, + 96, + 15, + "che_event_격노", + [ + 753466, + 39025, + 84266, + 118860, + 40717 + ], + 1, + "d953edc.jpg?=20211116", + 37, + "che_211118_dLJd", + 41, + [ + "chief:8", + "hall:dex1", + "hall:experience", + "hall:firenum", + "hall:killnum", + "hall:killrate", + "hall:killrate_person", + "hall:occupied", + "hall:tsrate", + "hall:winrate" + ] + ], + [ + "【37기】Hide_D", + 82, + 16, + 87, + "che_event_저격", + [ + 54475, + 88235, + 131004, + 567783, + 16635 + ], + 1, + "9f0a2a8.png?=20200106", + 37, + "che_211118_dLJd", + 42, + [ + "hall:dex3" + ] + ], + [ + "【37기】독구", + 76, + 15, + 96, + "che_event_집중", + [ + 73891, + 86660, + 37744, + 976783, + 45866 + ], + 1, + "e41c212.png?=20211103", + 37, + "che_211118_dLJd", + 44, + [ + "chief:7", + "hall:betgold", + "hall:betrate", + "hall:betwin", + "hall:betwingold", + "hall:dex4", + "hall:dex5", + "hall:experience", + "hall:killcrew", + "hall:killcrew_person", + "hall:killnum", + "hall:killrate", + "hall:occupied", + "hall:tirate", + "hall:ttrate", + "hall:warnum", + "hall:winrate" + ] + ], + [ + "【37기】팬텀", + 78, + 17, + 90, + "che_event_집중", + [ + 36857, + 74492, + 67614, + 614465, + 62058 + ], + 1, + "a9c6f29.jpg?=20211117", + 37, + "che_211118_dLJd", + 46, + [ + "hall:betgold", + "hall:betwingold", + "hall:dex4", + "hall:dex5", + "hall:ttrate" + ] + ], + [ + "【37기】앵드캡", + 81, + 91, + 15, + "che_event_위압", + [ + 132067, + 701486, + 49416, + 177488, + 4357 + ], + 1, + "7b5fe98.png?=20211118", + 37, + "che_211118_dLJd", + 47, + [ + "hall:dex1", + "hall:dex2", + "hall:firenum", + "hall:killcrew_person" + ] + ], + [ + "【37기】네시", + 77, + 15, + 94, + "che_event_집중", + [ + 40973, + 43052, + 53088, + 775288, + 66093 + ], + 0, + "default.jpg", + 37, + "che_211118_dLJd", + 49, + [ + "hall:betgold", + "hall:betwin", + "hall:betwingold", + "hall:dedication", + "hall:dex4", + "hall:dex5", + "hall:experience", + "hall:killnum", + "hall:killrate", + "hall:occupied", + "hall:tirate", + "hall:winrate" + ] + ], + [ + "【37기】볼코프 레보스키", + 96, + 73, + 15, + "che_event_견고", + [ + 763486, + 57536, + 58841, + 193022, + 56697 + ], + 1, + "5c22db9.png?=20211118", + 37, + "che_211118_dLJd", + 50, + [ + "chief:10", + "hall:betgold", + "hall:betwin", + "hall:dedication", + "hall:dex1", + "hall:dex5", + "hall:tlrate", + "hall:ttrate", + "hall:warnum" + ] + ], + [ + "【37기】사스케", + 77, + 92, + 17, + "che_event_궁병", + [ + 96792, + 726359, + 16340, + 105469, + 31814 + ], + 1, + "986348a.jpg?=20190815", + 37, + "che_211118_dLJd", + 52, + [ + "hall:betgold", + "hall:betrate", + "hall:betwin", + "hall:betwingold", + "hall:dex1", + "hall:dex2", + "hall:firenum", + "hall:killrate", + "hall:killrate_person", + "hall:occupied", + "hall:tsrate", + "hall:winrate" + ] + ], + [ + "【37기】페르2", + 97, + 74, + 15, + "che_event_견고", + [ + 79505, + 380202, + 86697, + 166727, + 68925 + ], + 1, + "79dbce5.jpg?=20210918", + 37, + "che_211118_dLJd", + 53, + [ + "hall:dex2", + "hall:dex5", + "hall:occupied", + "hall:tlrate" + ] + ], + [ + "【37기】한세건", + 94, + 75, + 16, + "che_event_돌격", + [ + 30679, + 139848, + 780853, + 192976, + 60684 + ], + 1, + "470eec4.jpg?=20211118", + 37, + "che_211118_dLJd", + 54, + [ + "chief:6", + "hall:dedication", + "hall:dex3", + "hall:dex5", + "hall:experience", + "hall:killnum", + "hall:occupied", + "hall:tlrate", + "hall:warnum", + "hall:winrate" + ] + ], + [ + "【37기】아르곤", + 76, + 97, + 15, + "che_event_견고", + [ + 89183, + 1373363, + 87465, + 151399, + 39518 + ], + 1, + "9b8a0e.jpg?=20211120", + 37, + "che_211118_dLJd", + 55, + [ + "chief:12", + "hall:betwin", + "hall:dedication", + "hall:dex2", + "hall:experience", + "hall:killcrew", + "hall:killcrew_person", + "hall:killnum", + "hall:killrate", + "hall:killrate_person", + "hall:occupied", + "hall:tsrate", + "hall:warnum", + "hall:winrate" + ] + ], + [ + "【37기】페르", + 91, + 15, + 80, + "che_event_저격", + [ + 39859, + 203813, + 115623, + 805279, + 20449 + ], + 1, + "1e0f242.jpg?=20211118", + 37, + "che_211118_dLJd", + 57, + [ + "hall:dex4", + "hall:experience", + "hall:killcrew", + "hall:killcrew_person", + "hall:tlrate" + ] + ], + [ + "【37기】평민킬러", + 78, + 92, + 15, + "che_event_견고", + [ + 18751, + 492514, + 124021, + 136180, + 17860 + ], + 1, + "fb23a32.jpg?=20190904", + 37, + "che_211118_dLJd", + 59, + [ + "hall:dex2", + "hall:dex3", + "hall:tsrate", + "hall:ttrate" + ] + ], + [ + "【37기】로나로나땅", + 92, + 78, + 15, + "che_event_위압", + [ + 66932, + 71945, + 397788, + 138117, + 12341 + ], + 1, + "fbd22b6.jpg?=20211014", + 37, + "che_211118_dLJd", + 60, + [ + "hall:dex3", + "hall:tlrate" + ] + ], + [ + "【37기】봄꽃", + 88, + 15, + 80, + "che_event_반계", + [ + 64019, + 28897, + 43833, + 601650, + 58159 + ], + 1, + "1390e40.jpg?=20211015", + 37, + "che_211118_dLJd", + 61, + [ + "hall:dex5", + "hall:tlrate" + ] + ], + [ + "【37기】귀달", + 92, + 79, + 15, + "che_event_격노", + [ + 50516, + 636444, + 33575, + 284125, + 9511 + ], + 0, + "default.jpg", + 37, + "che_211118_dLJd", + 62, + [ + "hall:betwin", + "hall:dex2", + "hall:tlrate" + ] + ], + [ + "【37기】중집", + 77, + 16, + 90, + "che_event_환술", + [ + 10560, + 74681, + 105492, + 321085, + 16793 + ], + 0, + "default.jpg", + 37, + "che_211118_dLJd", + 63, + [ + "hall:tirate" + ] + ], + [ + "【37기】A_Little_Tanker", + 76, + 93, + 15, + "che_event_필살", + [ + 443315, + 43153, + 28677, + 96126, + 28564 + ], + 0, + "default.jpg", + 37, + "che_211118_dLJd", + 65, + [ + "hall:betrate", + "hall:dex1", + "hall:firenum", + "hall:tsrate" + ] + ], + [ + "【37기】과학자", + 76, + 16, + 94, + "che_event_집중", + [ + 80246, + 35278, + 31123, + 496525, + 21912 + ], + 0, + "default.jpg", + 37, + "che_211118_dLJd", + 66, + [ + "hall:betrate", + "hall:firenum", + "hall:tirate" + ] + ], + [ + "【37기】킹구", + 90, + 79, + 15, + "che_event_징병", + [ + 125170, + 606570, + 18871, + 152775, + 31935 + ], + 1, + "a01d0b5.png?=20211014", + 37, + "che_211118_dLJd", + 68, + [ + "hall:dex1", + "hall:dex2", + "hall:tlrate" + ] + ], + [ + "【37기】로비", + 15, + 72, + 95, + "che_event_징병", + [ + 0, + 0, + 0, + 0, + 0 + ], + 1, + "708a981.png?=20200402", + 37, + "che_211118_dLJd", + 69, + [ + "hall:tirate" + ] + ], + [ + "【37기】쪽끼한", + 89, + 77, + 18, + "che_event_견고", + [ + 72664, + 673587, + 14781, + 235174, + 8890 + ], + 1, + "24b57e9.png?=20211118", + 37, + "che_211118_dLJd", + 70, + [ + "hall:dex2", + "hall:ttrate" + ] + ], + [ + "【37기】임사영", + 82, + 15, + 88, + "che_event_집중", + [ + 45150, + 94055, + 66210, + 1220840, + 32289 + ], + 1, + "10e5f72.jpg?=20210430", + 37, + "che_211118_dLJd", + 72, + [ + "hall:dex4", + "hall:killcrew", + "hall:killcrew_person", + "hall:killrate_person", + "hall:warnum" + ] + ], + [ + "【37기】그거아세요?", + 16, + 72, + 98, + "che_event_집중", + [ + 0, + 0, + 0, + 0, + 0 + ], + 1, + "f341b03.png?=20211118", + 37, + "che_211118_dLJd", + 73, + [ + "hall:betgold", + "hall:betrate", + "hall:betwingold", + "hall:ttrate" + ] + ], + [ + "【37기】ARES군주", + 79, + 89, + 15, + "che_event_위압", + [ + 118190, + 134863, + 734534, + 189802, + 22934 + ], + 1, + "106f82e.jpg?=20210212", + 37, + "che_211118_dLJd", + 74, + [ + "hall:betwin", + "hall:dex1", + "hall:dex3", + "hall:killcrew", + "hall:killcrew_person", + "hall:killrate", + "hall:killrate_person", + "hall:warnum" + ] + ], + [ + "【37기】멸치", + 87, + 15, + 82, + "che_event_징병", + [ + 16358, + 130975, + 147762, + 349698, + 14659 + ], + 1, + "532fdca.jpg?=20211118", + 37, + "che_211118_dLJd", + 78, + [ + "hall:dex3" + ] + ], + [ + "【37기】누조미", + 17, + 93, + 75, + "che_event_견고", + [ + 0, + 0, + 0, + 0, + 0 + ], + 1, + "ee6beae.png?=20211118", + 37, + "che_211118_dLJd", + 146, + [ + "hall:tsrate" + ] + ], + [ + "【37기】랜덤임관합니다", + 15, + 79, + 90, + "che_event_신산", + [ + 0, + 0, + 0, + 0, + 0 + ], + 0, + "default.jpg", + 37, + "che_211118_dLJd", + 149, + [ + "hall:dedication" + ] + ], + [ + "【37기】김갑환", + 75, + 15, + 94, + "che_event_신산", + [ + 18656, + 57720, + 95056, + 192060, + 3149 + ], + 1, + "dcff9fd.jpg?=20180823", + 37, + "che_211118_dLJd", + 154, + [ + "hall:ttrate" + ] + ], + [ + "【37기】민초조아", + 78, + 16, + 91, + "che_event_집중", + [ + 31162, + 132810, + 118300, + 450179, + 9545 + ], + 0, + "default.jpg", + 37, + "che_211118_dLJd", + 161, + [ + "hall:ttrate" + ] + ], + [ + "【37기】Nunsense", + 76, + 15, + 94, + "che_event_신중", + [ + 18803, + 44224, + 32690, + 351860, + 20078 + ], + 1, + "f456d3.jpg?=20200828", + 37, + "che_211118_dLJd", + 279, + [ + "hall:dedication" + ] + ], + [ + "【37기】배고프고 지친 사람", + 15, + 89, + 78, + "che_event_징병", + [ + 0, + 0, + 0, + 0, + 0 + ], + 1, + "1758e7c.png?=20211118", + 37, + "che_211118_dLJd", + 281, + [ + "hall:dedication", + "hall:tsrate" + ] + ], + [ + "【37기】페이트", + 17, + 94, + 71, + "che_event_무쌍", + [ + 0, + 0, + 90, + 76, + 0 + ], + 1, + "a68233.png?=20211119", + 37, + "che_211118_dLJd", + 334, + [ + "hall:betgold", + "hall:betrate", + "hall:betwingold", + "hall:dedication", + "hall:firenum", + "hall:tsrate" + ] + ], + [ + "【37기】기술력은세개체고", + 15, + 71, + 94, + "che_event_척사", + [ + 0, + 0, + 0, + 0, + 0 + ], + 0, + "default.jpg", + 37, + "che_211118_dLJd", + 390, + [ + "hall:betrate", + "hall:tirate" + ] + ], + [ + "【37기】고고싱", + 73, + 17, + 87, + "che_event_환술", + [ + 10421, + 14237, + 7847, + 70528, + 0 + ], + 0, + "default.jpg", + 37, + "che_211118_dLJd", + 421, + [ + "hall:tirate" + ] + ], + [ + "【37기】블루아카이브", + 75, + 87, + 16, + "che_event_무쌍", + [ + 87777, + 75979, + 204566, + 101494, + 28895 + ], + 1, + "dbeeb0d.jpg?=20190620", + 37, + "che_211118_dLJd", + 434, + [ + "hall:dex3" + ] + ], + [ + "【37기】민트토끼", + 17, + 85, + 72, + "che_event_무쌍", + [ + 0, + 0, + 0, + 0, + 0 + ], + 1, + "e04b397.gif?=20201119", + 37, + "che_211118_dLJd", + 536, + [ + "hall:firenum" + ] + ], + [ + "【38기】스즈키아야", + 75, + 91, + 15, + "che_event_돌격", + [ + 495635, + 9784, + 28520, + 44389, + 66885 + ], + 1, + "b0bc01.jpg?=20211216", + 38, + "che_211216_yUso", + 9, + [ + "hall:dedication", + "hall:dex1", + "hall:dex5", + "hall:experience", + "hall:killrate", + "hall:occupied", + "hall:tsrate", + "hall:winrate" + ] + ], + [ + "【38기】라플라스 다크니스", + 91, + 73, + 15, + "che_event_필살", + [ + 292930, + 8095, + 25121, + 47193, + 23322 + ], + 1, + "649822a.jpg?=20211216", + 38, + "che_211216_yUso", + 12, + [ + "hall:dex1", + "hall:tlrate" + ] + ], + [ + "【38기】임사영", + 77, + 15, + 89, + "che_event_신중", + [ + 37483, + 26276, + 33380, + 596832, + 36300 + ], + 1, + "10e5f72.jpg?=20210430", + 38, + "che_211216_yUso", + 16, + [ + "hall:dex4", + "hall:killcrew", + "hall:killcrew_person", + "hall:killnum", + "hall:warnum" + ] + ], + [ + "【38기】갈근", + 75, + 16, + 90, + "che_event_반계", + [ + 19078, + 21732, + 27390, + 369395, + 29726 + ], + 0, + "default.jpg", + 38, + "che_211216_yUso", + 17, + [ + "hall:dex4", + "hall:tirate" + ] + ], + [ + "【38기】사니", + 93, + 74, + 15, + "che_event_척사", + [ + 729518, + 18875, + 33998, + 73015, + 45086 + ], + 1, + "5c0e8f0.jpg?=20211216", + 38, + "che_211216_yUso", + 18, + [ + "hall:betrate", + "hall:betwin", + "hall:dex1", + "hall:dex5", + "hall:experience", + "hall:killcrew", + "hall:killcrew_person", + "hall:killnum", + "hall:occupied", + "hall:tlrate", + "hall:warnum" + ] + ], + [ + "【38기】광학자", + 15, + 79, + 84, + "che_event_신산", + [ + 0, + 0, + 0, + 0, + 0 + ], + 0, + "default.jpg", + 38, + "che_211216_yUso", + 19, + [ + "hall:experience", + "hall:firenum" + ] + ], + [ + "【38기】ㅇ", + 77, + 87, + 17, + "che_event_저격", + [ + 22485, + 635291, + 3830, + 67825, + 45552 + ], + 0, + "default.jpg", + 38, + "che_211216_yUso", + 20, + [ + "hall:dex2", + "hall:dex5", + "hall:killcrew", + "hall:killcrew_person", + "hall:killnum", + "hall:killrate", + "hall:killrate_person", + "hall:warnum", + "hall:winrate" + ] + ], + [ + "【38기】이둔", + 71, + 21, + 90, + "che_event_신산", + [ + 43049, + 25692, + 10386, + 497886, + 41389 + ], + 0, + "default.jpg", + 38, + "che_211216_yUso", + 23, + [ + "hall:dex4", + "hall:tirate", + "hall:ttrate" + ] + ], + [ + "【38기】A_Little_Tanker", + 78, + 88, + 15, + "che_event_보병", + [ + 445373, + 8045, + 33924, + 61629, + 29238 + ], + 0, + "default.jpg", + 38, + "che_211216_yUso", + 25, + [ + "hall:dex1", + "hall:firenum", + "hall:occupied", + "hall:tsrate" + ] + ], + [ + "【38기】사스케", + 75, + 94, + 15, + "che_event_돌격", + [ + 31313, + 34204, + 1146060, + 104600, + 46321 + ], + 1, + "986348a.jpg?=20190815", + 38, + "che_211216_yUso", + 27, + [ + "hall:betgold", + "hall:betrate", + "hall:betwin", + "hall:betwingold", + "hall:dex2", + "hall:dex3", + "hall:dex5", + "hall:experience", + "hall:firenum", + "hall:killcrew", + "hall:killcrew_person", + "hall:killnum", + "hall:killrate", + "hall:killrate_person", + "hall:occupied", + "hall:tsrate", + "hall:warnum", + "hall:winrate" + ] + ], + [ + "【38기】421", + 88, + 76, + 15, + "che_event_척사", + [ + 538191, + 8008, + 18418, + 88226, + 41249 + ], + 0, + "default.jpg", + 38, + "che_211216_yUso", + 31, + [ + "hall:dex1", + "hall:tlrate", + "hall:warnum" + ] + ], + [ + "【38기】엘든 링", + 15, + 82, + 84, + "che_event_신중", + [ + 0, + 0, + 0, + 0, + 0 + ], + 1, + "f4f0cf1.jpg?=20211217", + 38, + "che_211216_yUso", + 32, + [ + "hall:firenum" + ] + ], + [ + "【38기】독?루아카이브", + 76, + 15, + 88, + "che_event_의술", + [ + 29273, + 23798, + 41530, + 299397, + 29965 + ], + 1, + "b4e71f5.png?=20211213", + 38, + "che_211216_yUso", + 33, + [ + "hall:ttrate" + ] + ], + [ + "【38기】승원이", + 91, + 76, + 15, + "che_event_위압", + [ + 47390, + 667821, + 56132, + 96623, + 43139 + ], + 0, + "default.jpg", + 38, + "che_211216_yUso", + 34, + [ + "chief:10", + "hall:dex2", + "hall:dex3", + "hall:experience", + "hall:killcrew", + "hall:killcrew_person", + "hall:killnum", + "hall:occupied", + "hall:tlrate", + "hall:ttrate", + "hall:warnum", + "hall:winrate" + ] + ], + [ + "【38기】꺄", + 75, + 15, + 89, + "che_event_신중", + [ + 18360, + 14681, + 16997, + 278374, + 20087 + ], + 1, + "ff77e01.jpg?=20200704", + 38, + "che_211216_yUso", + 36, + [ + "hall:betwin", + "hall:tirate" + ] + ], + [ + "【38기】킹구", + 76, + 15, + 90, + "che_event_척사", + [ + 18663, + 18863, + 22097, + 477007, + 23012 + ], + 1, + "a01d0b5.png?=20211014", + 38, + "che_211216_yUso", + 38, + [ + "hall:dex4", + "hall:occupied", + "hall:winrate" + ] + ], + [ + "【38기】Hide_D", + 77, + 15, + 89, + "che_event_환술", + [ + 41010, + 23003, + 11673, + 573792, + 38486 + ], + 1, + "9f0a2a8.png?=20200106", + 38, + "che_211216_yUso", + 39, + [ + "hall:dex4", + "hall:killcrew", + "hall:killcrew_person", + "hall:killnum", + "hall:tirate", + "hall:warnum" + ] + ], + [ + "【38기】퍄퍄", + 76, + 16, + 89, + "che_event_신산", + [ + 6782, + 20331, + 21491, + 397677, + 30358 + ], + 0, + "default.jpg", + 38, + "che_211216_yUso", + 41, + [ + "hall:dex4" + ] + ], + [ + "【38기】피자왕독피자", + 94, + 73, + 15, + "che_event_척사", + [ + 27183, + 18014, + 597161, + 40305, + 34378 + ], + 1, + "cc8a718.jpg?=20211216", + 38, + "che_211216_yUso", + 43, + [ + "hall:betgold", + "hall:betrate", + "hall:betwin", + "hall:betwingold", + "hall:dex3", + "hall:experience", + "hall:firenum", + "hall:killcrew", + "hall:killcrew_person", + "hall:killnum", + "hall:killrate", + "hall:killrate_person", + "hall:occupied", + "hall:tlrate", + "hall:ttrate", + "hall:warnum", + "hall:winrate" + ] + ], + [ + "【38기】앵드캡", + 77, + 84, + 17, + "che_event_견고", + [ + 515334, + 18674, + 34194, + 40895, + 40993 + ], + 1, + "7b5fe98.png?=20211118", + 38, + "che_211216_yUso", + 44, + [ + "hall:dex1", + "hall:firenum", + "hall:killrate", + "hall:killrate_person" + ] + ], + [ + "【38기】독피자", + 80, + 85, + 15, + "che_event_견고", + [ + 527485, + 16414, + 45329, + 40226, + 28384 + ], + 1, + "6611d26.png?=20211215", + 38, + "che_211216_yUso", + 45, + [ + "hall:betgold", + "hall:betrate", + "hall:betwin", + "hall:betwingold", + "hall:dex1", + "hall:dex3", + "hall:experience", + "hall:killnum", + "hall:killrate", + "hall:killrate_person", + "hall:occupied", + "hall:winrate" + ] + ], + [ + "【38기】평민킬러", + 75, + 91, + 15, + "che_event_무쌍", + [ + 536021, + 15548, + 15295, + 36787, + 38181 + ], + 1, + "fb23a32.jpg?=20190904", + 38, + "che_211216_yUso", + 46, + [ + "hall:dex1", + "hall:killrate_person", + "hall:tsrate", + "hall:ttrate" + ] + ], + [ + "【38기】마요이", + 76, + 15, + 88, + "che_event_반계", + [ + 4775, + 18549, + 19533, + 250355, + 17577 + ], + 1, + "3d319b5.png?=20190422", + 38, + "che_211216_yUso", + 48, + [ + "hall:tirate" + ] + ], + [ + "【38기】독두꺼비", + 76, + 86, + 17, + "che_event_척사", + [ + 101198, + 274415, + 16711, + 50276, + 32622 + ], + 1, + "fa6639d.jpg?=20211220", + 38, + "che_211216_yUso", + 49, + [ + "hall:dex2" + ] + ], + [ + "【38기】외심장", + 79, + 16, + 86, + "che_event_의술", + [ + 55648, + 19572, + 21848, + 501870, + 32536 + ], + 1, + "36110cd.jpg?=20180826", + 38, + "che_211216_yUso", + 50, + [ + "hall:dex4" + ] + ], + [ + "【38기】갓갓갓", + 76, + 15, + 89, + "che_event_신중", + [ + 35063, + 9285, + 11056, + 454632, + 47576 + ], + 0, + "default.jpg", + 38, + "che_211216_yUso", + 51, + [ + "chief:7", + "hall:betgold", + "hall:betrate", + "hall:betwingold", + "hall:dedication", + "hall:dex4", + "hall:dex5", + "hall:killrate", + "hall:killrate_person", + "hall:tirate", + "hall:winrate" + ] + ], + [ + "【38기】핫소스", + 90, + 73, + 16, + "che_event_견고", + [ + 56504, + 25744, + 308331, + 36886, + 18343 + ], + 0, + "default.jpg", + 38, + "che_211216_yUso", + 52, + [ + "hall:dedication", + "hall:dex3", + "hall:tlrate" + ] + ], + [ + "【38기】제갈여포", + 76, + 16, + 88, + "che_event_집중", + [ + 2972, + 10982, + 9213, + 293862, + 19660 + ], + 1, + "e8e8adc.jpg?=20180419", + 38, + "che_211216_yUso", + 53, + [ + "hall:ttrate", + "hall:winrate" + ] + ], + [ + "【38기】불량", + 75, + 91, + 15, + "che_event_위압", + [ + 14075, + 10260, + 348859, + 27854, + 22234 + ], + 0, + "default.jpg", + 38, + "che_211216_yUso", + 55, + [ + "hall:dex3", + "hall:killrate", + "hall:killrate_person", + "hall:occupied", + "hall:tsrate", + "hall:winrate" + ] + ], + [ + "【38기】니키타", + 76, + 15, + 90, + "che_event_환술", + [ + 15530, + 3368, + 10700, + 336908, + 42357 + ], + 0, + "default.jpg", + 38, + "che_211216_yUso", + 56, + [ + "chief:5" + ] + ], + [ + "【38기】카이스트", + 76, + 16, + 88, + "che_event_척사", + [ + 32822, + 21810, + 26217, + 306652, + 36180 + ], + 1, + "9361ef8.jpg?=20180907", + 38, + "che_211216_yUso", + 57, + [ + "chief:9", + "hall:betgold", + "hall:betrate", + "hall:betwin", + "hall:betwingold", + "hall:firenum" + ] + ], + [ + "【38기】어림도없다!", + 16, + 71, + 93, + "che_event_저격", + [ + 0, + 0, + 0, + 0, + 0 + ], + 1, + "e51b340.gif?=20211216", + 38, + "che_211216_yUso", + 58, + [ + "hall:betgold", + "hall:betrate", + "hall:betwingold", + "hall:dedication" + ] + ], + [ + "【38기】봄꽃", + 15, + 70, + 94, + "che_event_신중", + [ + 0, + 0, + 0, + 0, + 0 + ], + 1, + "1390e40.jpg?=20211015", + 38, + "che_211216_yUso", + 59, + [ + "hall:tirate" + ] + ], + [ + "【38기】냥뿌꾸", + 77, + 90, + 15, + "che_event_위압", + [ + 20999, + 17822, + 512723, + 89599, + 49873 + ], + 1, + "8453795.png?=20211129", + 38, + "che_211216_yUso", + 60, + [ + "hall:betgold", + "hall:betrate", + "hall:betwin", + "hall:betwingold", + "hall:dex3", + "hall:dex5", + "hall:tsrate" + ] + ], + [ + "【38기】이창선", + 75, + 90, + 15, + "che_event_견고", + [ + 345762, + 79620, + 151412, + 50646, + 35864 + ], + 1, + "32c7d27.jpg?=20211216", + 38, + "che_211216_yUso", + 61, + [ + "chief:12", + "hall:betgold", + "hall:betwingold", + "hall:dedication", + "hall:dex1", + "hall:dex2", + "hall:dex3", + "hall:experience", + "hall:killrate", + "hall:killrate_person", + "hall:tsrate" + ] + ], + [ + "【38기】구독", + 16, + 84, + 78, + "che_event_필살", + [ + 0, + 0, + 0, + 0, + 0 + ], + 1, + "7d70cfa.jpg?=20211216", + 38, + "che_211216_yUso", + 63, + [ + "hall:firenum", + "hall:ttrate" + ] + ], + [ + "【38기】도둑이닷", + 15, + 87, + 77, + "che_event_위압", + [ + 0, + 0, + 0, + 0, + 0 + ], + 0, + "default.jpg", + 38, + "che_211216_yUso", + 64, + [ + "hall:dedication", + "hall:firenum" + ] + ], + [ + "【38기】독생독사", + 75, + 15, + 91, + "che_event_신산", + [ + 45551, + 22876, + 28991, + 606029, + 41343 + ], + 1, + "b9e332e.jpg?=20211218", + 38, + "che_211216_yUso", + 66, + [ + "hall:betwin", + "hall:dex4", + "hall:experience", + "hall:killcrew", + "hall:killcrew_person", + "hall:killnum", + "hall:occupied", + "hall:warnum" + ] + ], + [ + "【38기】초밥왕시뉴카린", + 87, + 77, + 15, + "che_event_위압", + [ + 32436, + 234885, + 567, + 31484, + 26548 + ], + 1, + "e8adcdd.jpg?=20211216", + 38, + "che_211216_yUso", + 67, + [ + "hall:dex2", + "hall:tlrate" + ] + ], + [ + "【38기】시카이슈테르", + 87, + 74, + 15, + "che_event_척사", + [ + 86366, + 294869, + 12333, + 49178, + 14177 + ], + 1, + "91309e0.jpg?=20211217", + 38, + "che_211216_yUso", + 70, + [ + "hall:dex2", + "hall:tlrate" + ] + ], + [ + "【38기】ARES군주", + 76, + 91, + 15, + "che_event_견고", + [ + 44193, + 6186, + 615915, + 50433, + 53950 + ], + 1, + "106f82e.jpg?=20210212", + 38, + "che_211216_yUso", + 72, + [ + "chief:6", + "hall:betwin", + "hall:dex3", + "hall:dex5", + "hall:killcrew", + "hall:killcrew_person", + "hall:killnum", + "hall:killrate", + "hall:killrate_person", + "hall:tsrate", + "hall:warnum" + ] + ], + [ + "【38기】Cure", + 78, + 15, + 89, + "che_event_귀병", + [ + 38153, + 8730, + 11741, + 527027, + 45852 + ], + 1, + "b423d19.jpg?=20190718", + 38, + "che_211216_yUso", + 73, + [ + "hall:dex4", + "hall:dex5", + "hall:killcrew", + "hall:ttrate" + ] + ], + [ + "【38기】귀달", + 87, + 78, + 16, + "che_event_척사", + [ + 24880, + 15204, + 576187, + 74697, + 48623 + ], + 0, + "default.jpg", + 38, + "che_211216_yUso", + 74, + [ + "chief:8", + "hall:betgold", + "hall:betrate", + "hall:betwin", + "hall:betwingold", + "hall:dex3", + "hall:dex5", + "hall:killcrew_person", + "hall:tlrate" + ] + ], + [ + "【38기】크렌스", + 89, + 75, + 15, + "che_event_척사", + [ + 404648, + 4870, + 31325, + 48067, + 46006 + ], + 1, + "dbeeb0d.jpg?=20190620", + 38, + "che_211216_yUso", + 75, + [ + "chief:11", + "hall:dedication", + "hall:dex1", + "hall:dex5", + "hall:experience", + "hall:tlrate" + ] + ], + [ + "【38기】세일러문", + 72, + 15, + 92, + "che_event_집중", + [ + 18031, + 3565, + 6146, + 175009, + 23297 + ], + 0, + "default.jpg", + 38, + "che_211216_yUso", + 77, + [ + "hall:tirate" + ] + ], + [ + "【38기】삭턴과1분장", + 75, + 15, + 89, + "che_event_신산", + [ + 16445, + 25029, + 19294, + 291495, + 16927 + ], + 0, + "default.jpg", + 38, + "che_211216_yUso", + 119, + [ + "hall:tirate" + ] + ], + [ + "【38기】펭탄두", + 15, + 92, + 72, + "che_event_위압", + [ + 0, + 0, + 0, + 0, + 0 + ], + 0, + "default.jpg", + 38, + "che_211216_yUso", + 129, + [ + "hall:dedication", + "hall:firenum", + "hall:tsrate" + ] + ], + [ + "【38기】멜덩이", + 58, + 62, + 58, + "che_event_저격", + [ + 21075, + 125482, + 4168, + 39394, + 19457 + ], + 0, + "default.jpg", + 38, + "che_211216_yUso", + 205, + [ + "hall:dex2" + ] + ], + [ + "【38기】네정", + 15, + 72, + 91, + "che_event_신중", + [ + 0, + 0, + 0, + 0, + 0 + ], + 0, + "default.jpg", + 38, + "che_211216_yUso", + 301, + [ + "hall:dedication", + "hall:ttrate" + ] + ], + [ + "【38기】물고기맛쿠키", + 75, + 16, + 86, + "che_event_귀병", + [ + 29238, + 24469, + 11486, + 237168, + 10693 + ], + 0, + "default.jpg", + 38, + "che_211216_yUso", + 309, + [ + "hall:ttrate" + ] + ], + [ + "【38기】무지장캐논", + 17, + 76, + 86, + "che_event_필살", + [ + 0, + 0, + 0, + 0, + 0 + ], + 0, + "default.jpg", + 38, + "che_211216_yUso", + 316, + [ + "hall:dedication" + ] + ], + [ + "【38기】초록햄과초록달걀", + 73, + 15, + 89, + "che_event_징병", + [ + 1758, + 380, + 970, + 23066, + 0 + ], + 0, + "default.jpg", + 38, + "che_211216_yUso", + 336, + [ + "hall:tirate" + ] + ], + [ + "【38기】구경잼꿀잼뭐하나", + 74, + 86, + 15, + "che_event_위압", + [ + 22568, + 277635, + 24204, + 43024, + 7795 + ], + 0, + "default.jpg", + 38, + "che_211216_yUso", + 347, + [ + "hall:betgold", + "hall:betrate", + "hall:betwingold", + "hall:dex2", + "hall:tsrate" + ] + ], + [ + "【38기】ㅁㄴㅇㄹ", + 73, + 84, + 15, + "che_event_궁병", + [ + 13745, + 150091, + 5029, + 31334, + 25366 + ], + 0, + "default.jpg", + 38, + "che_211216_yUso", + 453, + [ + "hall:dex2" + ] + ], + [ + "【39기】피리부는사나이", + 15, + 94, + 70, + "che_event_신산", + [ + 0, + 0, + 0, + 0, + 0 + ], + 1, + "449abac.jpg?=20220107", + 39, + "che_220106_orjm", + 11, + [ + "hall:firenum", + "hall:tsrate", + "hall:ttrate" + ] + ], + [ + "【39기】아이린", + 73, + 89, + 15, + "che_event_척사", + [ + 19296, + 220067, + 7579, + 31927, + 29072 + ], + 1, + "8dac73c.jpg?=20180922", + 39, + "che_220106_orjm", + 12, + [ + "hall:dex2", + "hall:firenum", + "hall:tsrate" + ] + ], + [ + "【39기】앵드캡", + 75, + 89, + 15, + "che_event_돌격", + [ + 10613, + 21383, + 343970, + 22850, + 167356 + ], + 1, + "3936437.png?=20220104", + 39, + "che_220106_orjm", + 16, + [ + "chief:11", + "hall:betgold", + "hall:betrate", + "hall:betwingold", + "hall:dedication", + "hall:dex3", + "hall:dex5", + "hall:experience", + "hall:killcrew", + "hall:killnum", + "hall:killrate", + "hall:killrate_person", + "hall:occupied", + "hall:winrate" + ] + ], + [ + "【39기】릴파", + 16, + 89, + 74, + "che_event_척사", + [ + 2465, + 2650, + 46137, + 8685, + 8214 + ], + 1, + "aa47ca2.jpg?=20220106", + 39, + "che_220106_orjm", + 20, + [ + "hall:dex3", + "hall:tsrate" + ] + ], + [ + "【39기】착한람쥐죽은람쥐", + 73, + 90, + 15, + "che_event_필살", + [ + 9823, + 38634, + 249228, + 17949, + 25454 + ], + 1, + "96a0d54.png?=20220106", + 39, + "che_220106_orjm", + 25, + [ + "chief:8", + "hall:dex2", + "hall:dex3", + "hall:occupied" + ] + ], + [ + "【39기】이드", + 72, + 15, + 92, + "che_event_집중", + [ + 7144, + 3696, + 942, + 235041, + 30562 + ], + 1, + "5898830.jpg?=20210831", + 39, + "che_220106_orjm", + 26, + [ + "hall:dex5" + ] + ], + [ + "【39기】머슬다람쥐", + 76, + 88, + 15, + "che_event_척사", + [ + 251659, + 13999, + 7855, + 33688, + 32504 + ], + 1, + "dada49d.png?=20220105", + 39, + "che_220106_orjm", + 27, + [ + "hall:betgold", + "hall:betwin", + "hall:betwingold", + "hall:dedication", + "hall:dex1", + "hall:dex5", + "hall:experience", + "hall:killrate", + "hall:killrate_person" + ] + ], + [ + "【39기】카비", + 71, + 20, + 88, + "che_event_신중", + [ + 4456, + 8395, + 24459, + 172967, + 23688 + ], + 0, + "default.jpg", + 39, + "che_220106_orjm", + 28, + [ + "hall:occupied" + ] + ], + [ + "【39기】Hide_D", + 76, + 15, + 88, + "che_event_신산", + [ + 9145, + 8548, + 7800, + 315758, + 20679 + ], + 1, + "9f0a2a8.png?=20200106", + 39, + "che_220106_orjm", + 29, + [ + "hall:betrate", + "hall:dex4", + "hall:killcrew", + "hall:killcrew_person", + "hall:killnum", + "hall:warnum" + ] + ], + [ + "【39기】로비", + 15, + 71, + 93, + "che_event_징병", + [ + 0, + 0, + 0, + 0, + 0 + ], + 1, + "d38cb34.png?=20220106", + 39, + "che_220106_orjm", + 30, + [ + "hall:dedication", + "hall:tirate" + ] + ], + [ + "【39기】호람쥐", + 71, + 20, + 89, + "che_event_징병", + [ + 15651, + 20334, + 11352, + 204738, + 17225 + ], + 1, + "4de305c.png?=20220106", + 39, + "che_220106_orjm", + 32, + [ + "chief:7", + "hall:dedication" + ] + ], + [ + "【39기】다랍쥐", + 15, + 87, + 75, + "che_event_척사", + [ + 0, + 0, + 0, + 0, + 0 + ], + 0, + "default.jpg", + 39, + "che_220106_orjm", + 34, + [ + "hall:tsrate" + ] + ], + [ + "【39기】복숭아좋아", + 74, + 16, + 87, + "che_event_신중", + [ + 16572, + 15405, + 10973, + 197184, + 26935 + ], + 1, + "57e4a39.jpg?=20190620", + 39, + "che_220106_orjm", + 37, + [ + "hall:tirate" + ] + ], + [ + "【39기】수장", + 75, + 15, + 88, + "che_event_집중", + [ + 7287, + 18612, + 15496, + 334172, + 22591 + ], + 1, + "5c1a589.jpg?=20220106", + 39, + "che_220106_orjm", + 41, + [ + "hall:dex4", + "hall:killcrew", + "hall:killcrew_person", + "hall:tirate", + "hall:ttrate" + ] + ], + [ + "【39기】불멸의어르신", + 76, + 89, + 15, + "che_event_위압", + [ + 46402, + 258616, + 1317, + 21201, + 22511 + ], + 0, + "default.jpg", + 39, + "che_220106_orjm", + 42, + [ + "hall:betgold", + "hall:betwin", + "hall:betwingold", + "hall:dex2", + "hall:killnum", + "hall:tsrate", + "hall:ttrate", + "hall:warnum" + ] + ], + [ + "【39기】자숙케", + 75, + 86, + 16, + "che_event_위압", + [ + 2314, + 3313, + 243303, + 38662, + 7968 + ], + 1, + "f8e3afe.gif?=20220106", + 39, + "che_220106_orjm", + 43, + [ + "hall:dex3" + ] + ], + [ + "【39기】ㅣ", + 74, + 88, + 15, + "che_event_기병", + [ + 3943, + 7248, + 205438, + 26168, + 25802 + ], + 0, + "default.jpg", + 39, + "che_220106_orjm", + 45, + [ + "hall:dex3", + "hall:tsrate" + ] + ], + [ + "【39기】갤노트람쥐", + 72, + 91, + 15, + "che_event_돌격", + [ + 10768, + 23535, + 164698, + 46897, + 20169 + ], + 1, + "c8a8171.png?=20220106", + 39, + "che_220106_orjm", + 46, + [ + "hall:dex3", + "hall:tsrate" + ] + ], + [ + "【39기】ThirtyNine", + 88, + 74, + 15, + "che_event_무쌍", + [ + 14069, + 9021, + 17369, + 33654, + 215915 + ], + 1, + "8c540c9.png?=20220109", + 39, + "che_220106_orjm", + 47, + [ + "hall:dex5", + "hall:killrate", + "hall:occupied", + "hall:tlrate" + ] + ], + [ + "【39기】마요이", + 77, + 85, + 15, + "che_event_필살", + [ + 288948, + 4806, + 22326, + 45283, + 27807 + ], + 1, + "3d319b5.png?=20190422", + 39, + "che_220106_orjm", + 54, + [ + "hall:betgold", + "hall:dex1", + "hall:experience", + "hall:firenum", + "hall:killrate", + "hall:killrate_person", + "hall:winrate" + ] + ], + [ + "【39기】천괴금", + 18, + 71, + 89, + "che_event_신중", + [ + 0, + 1600, + 9000, + 30289, + 1495 + ], + 1, + "51d357b.png?=20211228", + 39, + "che_220106_orjm", + 56, + [ + "hall:dedication", + "hall:firenum" + ] + ], + [ + "【39기】오과국화약", + 86, + 77, + 15, + "che_event_위압", + [ + 209970, + 16685, + 22622, + 29760, + 16352 + ], + 1, + "8882c16.jpg?=20220106", + 39, + "che_220106_orjm", + 57, + [ + "hall:dex1", + "hall:ttrate" + ] + ], + [ + "【39기】독구킬러다람쥐", + 75, + 88, + 15, + "che_event_보병", + [ + 183099, + 13424, + 26004, + 9427, + 19547 + ], + 1, + "23a229a.png?=20220106", + 39, + "che_220106_orjm", + 58, + [ + "hall:dex1" + ] + ], + [ + "【39기】갈근", + 89, + 74, + 15, + "che_event_척사", + [ + 310241, + 7921, + 26836, + 45516, + 23112 + ], + 0, + "default.jpg", + 39, + "che_220106_orjm", + 59, + [ + "chief:6", + "hall:betwin", + "hall:dex1", + "hall:killrate", + "hall:killrate_person", + "hall:tlrate" + ] + ], + [ + "【39기】비앙카", + 91, + 74, + 15, + "che_event_의술", + [ + 6223, + 261516, + 27819, + 36853, + 27379 + ], + 1, + "2fd3f18.png?=20220106", + 39, + "che_220106_orjm", + 60, + [ + "hall:dex2", + "hall:firenum", + "hall:killcrew", + "hall:killcrew_person", + "hall:tlrate", + "hall:warnum" + ] + ], + [ + "【39기】박일아", + 74, + 16, + 89, + "che_event_반계", + [ + 16743, + 15118, + 687, + 280432, + 20055 + ], + 1, + "8608979.gif?=20191024", + 39, + "che_220106_orjm", + 61, + [ + "hall:betrate", + "hall:dex4", + "hall:killcrew_person", + "hall:killrate_person" + ] + ], + [ + "【39기】네시네시", + 75, + 15, + 89, + "che_event_집중", + [ + 16737, + 11554, + 6196, + 195151, + 28153 + ], + 0, + "default.jpg", + 39, + "che_220106_orjm", + 62, + [ + "hall:betgold", + "hall:betrate", + "hall:betwin", + "hall:betwingold" + ] + ], + [ + "【39기】아가다람쥐앵벌스", + 75, + 88, + 15, + "che_event_돌격", + [ + 14036, + 153924, + 8103, + 18695, + 11255 + ], + 0, + "default.jpg", + 39, + "che_220106_orjm", + 64, + [ + "hall:dex2", + "hall:tsrate" + ] + ], + [ + "【39기】페이트", + 15, + 91, + 72, + "che_event_신산", + [ + 0, + 0, + 0, + 0, + 0 + ], + 1, + "51f4b6c.jpg?=20220106", + 39, + "che_220106_orjm", + 67, + [ + "hall:experience", + "hall:firenum", + "hall:tsrate" + ] + ], + [ + "【39기】제갈람쥐", + 76, + 15, + 87, + "che_event_신중", + [ + 7795, + 2749, + 14358, + 237517, + 20984 + ], + 1, + "d0643a6.png?=20220106", + 39, + "che_220106_orjm", + 69, + [ + "hall:dex4" + ] + ], + [ + "【39기】로?루", + 15, + 72, + 90, + "che_event_척사", + [ + 0, + 368, + 0, + 10564, + 76 + ], + 1, + "532f1a5.jpg?=20220104", + 39, + "che_220106_orjm", + 71, + [ + "hall:betrate", + "hall:betwingold" + ] + ], + [ + "【39기】평민킬러", + 93, + 71, + 15, + "che_event_견고", + [ + 249359, + 15075, + 17359, + 34191, + 26572 + ], + 1, + "fb23a32.jpg?=20190904", + 39, + "che_220106_orjm", + 72, + [ + "hall:dex1", + "hall:experience", + "hall:tlrate" + ] + ], + [ + "【39기】디람쥐", + 84, + 79, + 15, + "che_event_궁병", + [ + 11304, + 262071, + 9786, + 40690, + 14165 + ], + 1, + "9b06c23.png?=20220112", + 39, + "che_220106_orjm", + 73, + [ + "hall:betgold", + "hall:dex2", + "hall:firenum", + "hall:warnum" + ] + ], + [ + "【39기】카이스트", + 73, + 16, + 89, + "che_event_환술", + [ + 15322, + 14472, + 2323, + 249303, + 25567 + ], + 1, + "9361ef8.jpg?=20180907", + 39, + "che_220106_orjm", + 74, + [ + "hall:betgold", + "hall:betrate", + "hall:betwin", + "hall:betwingold", + "hall:dex4", + "hall:killnum", + "hall:occupied", + "hall:tirate", + "hall:winrate" + ] + ], + [ + "【39기】킹구", + 72, + 16, + 89, + "che_event_저격", + [ + 9501, + 22113, + 6971, + 219989, + 16379 + ], + 1, + "35f1b7d.png?=20220106", + 39, + "che_220106_orjm", + 75, + [ + "hall:experience", + "hall:killrate", + "hall:occupied" + ] + ], + [ + "【39기】임사영", + 76, + 15, + 89, + "che_event_저격", + [ + 15853, + 22513, + 2453, + 371219, + 23439 + ], + 1, + "10e5f72.jpg?=20210430", + 39, + "che_220106_orjm", + 76, + [ + "hall:dex4", + "hall:killcrew", + "hall:killcrew_person", + "hall:killnum", + "hall:tirate", + "hall:warnum", + "hall:winrate" + ] + ], + [ + "【39기】돌림쥐", + 73, + 16, + 88, + "che_event_신산", + [ + 19469, + 12800, + 3897, + 292039, + 64783 + ], + 1, + "ac01935.gif?=20220107", + 39, + "che_220106_orjm", + 77, + [ + "hall:betgold", + "hall:betrate", + "hall:betwin", + "hall:betwingold", + "hall:dex4", + "hall:dex5", + "hall:occupied", + "hall:tirate" + ] + ], + [ + "【39기】다림쥐", + 75, + 15, + 88, + "che_event_반계", + [ + 13995, + 21461, + 8525, + 185015, + 20360 + ], + 1, + "7e4946e.png?=20220106", + 39, + "che_220106_orjm", + 78, + [ + "hall:firenum" + ] + ], + [ + "【39기】앵야호", + 73, + 15, + 91, + "che_event_필살", + [ + 4805, + 27755, + 20001, + 228376, + 24120 + ], + 1, + "a9b8236.png?=20220106", + 39, + "che_220106_orjm", + 79, + [ + "chief:9", + "hall:betgold", + "hall:betwingold", + "hall:dedication", + "hall:killrate", + "hall:killrate_person", + "hall:tirate", + "hall:ttrate", + "hall:winrate" + ] + ], + [ + "【39기】앵날먹", + 16, + 72, + 89, + "che_event_척사", + [ + 0, + 0, + 0, + 0, + 0 + ], + 0, + "default.jpg", + 39, + "che_220106_orjm", + 80, + [ + "hall:dedication", + "hall:ttrate" + ] + ], + [ + "【39기】야람쥐", + 91, + 73, + 15, + "che_event_돌격", + [ + 68270, + 320258, + 34833, + 40222, + 29081 + ], + 1, + "ceafeed.jpg?=20220103", + 39, + "che_220106_orjm", + 81, + [ + "chief:10", + "hall:dex2", + "hall:dex5", + "hall:experience", + "hall:killcrew", + "hall:killcrew_person", + "hall:killnum", + "hall:killrate", + "hall:killrate_person", + "hall:tlrate", + "hall:warnum" + ] + ], + [ + "【39기】독구", + 73, + 15, + 92, + "che_event_돌격", + [ + 16081, + 48655, + 14113, + 300901, + 26397 + ], + 1, + "aea7807.png?=20220106", + 39, + "che_220106_orjm", + 83, + [ + "chief:5", + "hall:betgold", + "hall:betrate", + "hall:betwin", + "hall:betwingold", + "hall:dedication", + "hall:dex2", + "hall:dex4", + "hall:experience", + "hall:occupied", + "hall:winrate" + ] + ], + [ + "【39기】앵벌스", + 74, + 15, + 91, + "che_event_신산", + [ + 11969, + 26745, + 16967, + 303892, + 19058 + ], + 1, + "d679638.png?=20220112", + 39, + "che_220106_orjm", + 84, + [ + "chief:12", + "hall:dedication", + "hall:dex4", + "hall:experience", + "hall:killcrew", + "hall:killcrew_person", + "hall:tirate" + ] + ], + [ + "【39기】다람쥐", + 75, + 15, + 88, + "che_event_집중", + [ + 7752, + 12064, + 4731, + 220820, + 36394 + ], + 1, + "d30e30f.png?=20220106", + 39, + "che_220106_orjm", + 85, + [ + "hall:betrate", + "hall:betwin", + "hall:dex5", + "hall:experience", + "hall:occupied" + ] + ], + [ + "【39기】퍄퍄", + 75, + 87, + 15, + "che_event_견고", + [ + 11310, + 11299, + 305350, + 28712, + 30253 + ], + 0, + "default.jpg", + 39, + "che_220106_orjm", + 86, + [ + "hall:dex3", + "hall:dex5", + "hall:killcrew", + "hall:killcrew_person", + "hall:killnum", + "hall:killrate_person", + "hall:warnum" + ] + ], + [ + "【39기】검은참깨두유", + 75, + 89, + 16, + "che_event_무쌍", + [ + 10450, + 314932, + 231, + 25629, + 21371 + ], + 0, + "default.jpg", + 39, + "che_220106_orjm", + 90, + [ + "hall:dex2", + "hall:killcrew", + "hall:killcrew_person", + "hall:killnum", + "hall:ttrate", + "hall:warnum", + "hall:winrate" + ] + ], + [ + "【39기】봄꽃", + 85, + 15, + 77, + "che_event_필살", + [ + 15520, + 4992, + 1969, + 215994, + 23760 + ], + 1, + "1390e40.jpg?=20211015", + 39, + "che_220106_orjm", + 95, + [ + "hall:tlrate" + ] + ], + [ + "【39기】ARES군주", + 74, + 89, + 17, + "che_event_의술", + [ + 5099, + 12445, + 304109, + 22047, + 34803 + ], + 1, + "106f82e.jpg?=20210212", + 39, + "che_220106_orjm", + 97, + [ + "hall:betwin", + "hall:dex3", + "hall:dex5", + "hall:killrate" + ] + ], + [ + "【39기】귀달", + 76, + 86, + 15, + "che_event_위압", + [ + 9441, + 36148, + 162881, + 36869, + 23248 + ], + 0, + "default.jpg", + 39, + "che_220106_orjm", + 98, + [ + "hall:betwin", + "hall:dex3" + ] + ], + [ + "【39기】애국보수", + 74, + 15, + 87, + "che_event_징병", + [ + 2807, + 11288, + 13677, + 190102, + 24512 + ], + 0, + "default.jpg", + 39, + "che_220106_orjm", + 99, + [ + "hall:ttrate" + ] + ], + [ + "【39기】파개한다", + 16, + 86, + 76, + "che_event_위압", + [ + 0, + 0, + 0, + 0, + 0 + ], + 0, + "default.jpg", + 39, + "che_220106_orjm", + 100, + [ + "hall:tsrate", + "hall:ttrate" + ] + ], + [ + "【39기】콘슈퍼람", + 75, + 15, + 89, + "che_event_집중", + [ + 13715, + 11036, + 11829, + 298869, + 5848 + ], + 1, + "7211671.jpg?=20220106", + 39, + "che_220106_orjm", + 137, + [ + "hall:dex4", + "hall:killcrew_person", + "hall:killnum", + "hall:killrate_person", + "hall:tirate", + "hall:warnum", + "hall:winrate" + ] + ], + [ + "【39기】전라", + 73, + 16, + 87, + "che_event_신산", + [ + 7797, + 14212, + 7899, + 121809, + 13908 + ], + 0, + "default.jpg", + 39, + "che_220106_orjm", + 151, + [ + "hall:ttrate" + ] + ], + [ + "【39기】1분장삭턴다람쥐", + 71, + 15, + 90, + "che_event_귀병", + [ + 0, + 3693, + 254, + 22603, + 0 + ], + 1, + "aceb71a.jpg?=20220107", + 39, + "che_220106_orjm", + 266, + [ + "hall:tirate" + ] + ], + [ + "【39기】몰루", + 83, + 78, + 15, + "che_event_척사", + [ + 334201, + 7273, + 12264, + 26003, + 29159 + ], + 1, + "4119a.gif?=20220110", + 39, + "che_220106_orjm", + 327, + [ + "hall:dex1", + "hall:dex5", + "hall:killcrew", + "hall:killnum", + "hall:killrate", + "hall:killrate_person", + "hall:occupied", + "hall:warnum", + "hall:winrate" + ] + ], + [ + "【39기】정상수", + 15, + 73, + 90, + "che_event_신산", + [ + 0, + 0, + 0, + 0, + 0 + ], + 1, + "9ba3b15.jpg?=20211230", + 39, + "che_220106_orjm", + 328, + [ + "hall:dedication" + ] + ], + [ + "【39기】연애그만해라", + 83, + 79, + 16, + "che_event_저격", + [ + 233784, + 16461, + 17254, + 29838, + 28564 + ], + 1, + "526f311.jpg?=20220111", + 39, + "che_220106_orjm", + 343, + [ + "hall:betrate", + "hall:betwingold", + "hall:dex1", + "hall:tlrate" + ] + ], + [ + "【39기】edz", + 84, + 76, + 15, + "che_event_징병", + [ + 4838, + 77297, + 2052, + 15444, + 5016 + ], + 0, + "default.jpg", + 39, + "che_220106_orjm", + 354, + [ + "hall:dex2", + "hall:tlrate" + ] + ], + [ + "【39기】료우기시키", + 85, + 76, + 15, + "che_event_필살", + [ + 7243, + 17485, + 210742, + 37501, + 14345 + ], + 1, + "72a190e.jpg?=20220109", + 39, + "che_220106_orjm", + 361, + [ + "hall:dex3", + "hall:tlrate", + "hall:winrate" + ] + ], + [ + "【39기】김갑환", + 85, + 77, + 15, + "che_event_척사", + [ + 182508, + 35571, + 25994, + 12827, + 24710 + ], + 1, + "dcff9fd.jpg?=20180823", + 39, + "che_220106_orjm", + 365, + [ + "hall:dex1", + "hall:tlrate" + ] + ], + [ + "【39기】앵람쥐", + 84, + 77, + 15, + "che_event_징병", + [ + 167375, + 7354, + 41473, + 24544, + 16854 + ], + 1, + "ead5091.jpg?=20220109", + 39, + "che_220106_orjm", + 369, + [ + "hall:dex1" + ] + ], + [ + "【39기】쿤타", + 15, + 72, + 89, + "che_event_징병", + [ + 0, + 0, + 0, + 0, + 0 + ], + 0, + "default.jpg", + 39, + "che_220106_orjm", + 392, + [ + "hall:firenum" + ] + ], + [ + "【39기】할래", + 15, + 73, + 84, + "che_event_척사", + [ + 0, + 0, + 0, + 0, + 0 + ], + 0, + "default.jpg", + 39, + "che_220106_orjm", + 448, + [ + "hall:firenum" + ] + ], + [ + "【40기】ⓝ장로", + 90, + 87, + 90, + "che_event_위압", + [ + 10652, + 6609, + 12422, + 293343, + 18812 + ], + 0, + "1319.jpg", + 40, + "che_220127_IYPv", + 16, + [ + "chief:12" + ] + ], + [ + "【40기】내정용인형", + 77, + 92, + 15, + "che_event_필살", + [ + 8918, + 16180, + 493968, + 35214, + 19400 + ], + 1, + "47cefa0.jpg?=20220120", + 40, + "che_220127_IYPv", + 27, + [ + "hall:betrate", + "hall:dex3", + "hall:experience", + "hall:killcrew", + "hall:killcrew_person", + "hall:killnum", + "hall:occupied", + "hall:tsrate", + "hall:warnum", + "hall:winrate" + ] + ], + [ + "【40기】도?루", + 76, + 91, + 15, + "che_event_저격", + [ + 12858, + 28134, + 377247, + 41567, + 16445 + ], + 1, + "9eef576.gif?=20220127", + 40, + "che_220127_IYPv", + 28, + [ + "hall:betgold", + "hall:betrate", + "hall:betwingold", + "hall:dex3", + "hall:experience", + "hall:killrate", + "hall:killrate_person", + "hall:occupied" + ] + ], + [ + "【40기】라니", + 76, + 91, + 15, + "che_event_견고", + [ + 39850, + 4746, + 424590, + 49585, + 14264 + ], + 1, + "c93b2d2.jpg?=20220127", + 40, + "che_220127_IYPv", + 30, + [ + "hall:dex3", + "hall:firenum", + "hall:tsrate" + ] + ], + [ + "【40기】Shining Light", + 87, + 79, + 16, + "che_event_돌격", + [ + 400358, + 31037, + 31597, + 37826, + 19062 + ], + 1, + "906931a.jpg?=20220128", + 40, + "che_220127_IYPv", + 33, + [ + "hall:dex1", + "hall:tlrate" + ] + ], + [ + "【40기】Montis", + 76, + 16, + 89, + "che_event_반계", + [ + 22002, + 27695, + 10253, + 221080, + 20851 + ], + 0, + "default.jpg", + 40, + "che_220127_IYPv", + 35, + [ + "hall:tirate", + "hall:ttrate" + ] + ], + [ + "【40기】카이스트", + 75, + 16, + 91, + "che_event_집중", + [ + 18761, + 37792, + 71850, + 413004, + 21492 + ], + 1, + "9361ef8.jpg?=20180907", + 40, + "che_220127_IYPv", + 37, + [ + "hall:betgold", + "hall:betwin", + "hall:betwingold", + "hall:dex4", + "hall:tirate" + ] + ], + [ + "【40기】금붕어", + 75, + 15, + 92, + "che_event_반계", + [ + 9986, + 6905, + 21975, + 238979, + 30844 + ], + 0, + "default.jpg", + 40, + "che_220127_IYPv", + 40, + [ + "hall:dex5", + "hall:occupied", + "hall:tirate" + ] + ], + [ + "【40기】귀달", + 78, + 88, + 15, + "che_event_무쌍", + [ + 65855, + 398880, + 10842, + 52034, + 21468 + ], + 0, + "default.jpg", + 40, + "che_220127_IYPv", + 41, + [ + "hall:betgold", + "hall:betrate", + "hall:betwin", + "hall:betwingold", + "hall:dex1", + "hall:dex2", + "hall:warnum" + ] + ], + [ + "【40기】SARS", + 79, + 91, + 15, + "che_event_견고", + [ + 51118, + 29496, + 525073, + 30606, + 28799 + ], + 1, + "b84944.jpg?=20180829", + 40, + "che_220127_IYPv", + 45, + [ + "chief:10", + "hall:betgold", + "hall:betwin", + "hall:betwingold", + "hall:dedication", + "hall:dex3", + "hall:dex5", + "hall:experience", + "hall:killcrew", + "hall:killcrew_person", + "hall:killnum", + "hall:killrate", + "hall:killrate_person", + "hall:occupied", + "hall:tlrate", + "hall:tsrate", + "hall:warnum", + "hall:winrate" + ] + ], + [ + "【40기】아트라", + 15, + 97, + 70, + "che_event_신산", + [ + 0, + 0, + 0, + 0, + 0 + ], + 0, + "default.jpg", + 40, + "che_220127_IYPv", + 47, + [ + "chief:5", + "hall:dedication", + "hall:experience", + "hall:firenum", + "hall:tsrate" + ] + ], + [ + "【40기】이드", + 74, + 93, + 15, + "che_event_돌격", + [ + 5569, + 8087, + 287706, + 50562, + 25486 + ], + 1, + "5898830.jpg?=20210831", + 40, + "che_220127_IYPv", + 50, + [ + "hall:dedication", + "hall:firenum", + "hall:ttrate" + ] + ], + [ + "【40기】밀접접촉자", + 76, + 91, + 16, + "che_event_무쌍", + [ + 40054, + 355186, + 13856, + 48773, + 15539 + ], + 0, + "default.jpg", + 40, + "che_220127_IYPv", + 51, + [ + "hall:betrate", + "hall:betwingold", + "hall:dex2" + ] + ], + [ + "【40기】갈근", + 90, + 76, + 16, + "che_event_무쌍", + [ + 11977, + 54087, + 496901, + 28212, + 17091 + ], + 0, + "default.jpg", + 40, + "che_220127_IYPv", + 56, + [ + "hall:betgold", + "hall:betwin", + "hall:dex3", + "hall:killcrew", + "hall:killcrew_person", + "hall:killnum", + "hall:killrate", + "hall:killrate_person", + "hall:tlrate", + "hall:warnum", + "hall:winrate" + ] + ], + [ + "【40기】dokodomo", + 76, + 91, + 15, + "che_event_의술", + [ + 40011, + 259700, + 16564, + 14084, + 22064 + ], + 1, + "65faa27.jpg?=20220128", + 40, + "che_220127_IYPv", + 57, + [ + "hall:dex2" + ] + ], + [ + "【40기】사스케", + 78, + 89, + 15, + "che_event_견고", + [ + 45554, + 490878, + 14827, + 61717, + 29916 + ], + 1, + "31e1a0c.jpg?=20220109", + 40, + "che_220127_IYPv", + 59, + [ + "chief:11", + "hall:betgold", + "hall:betwin", + "hall:betwingold", + "hall:dedication", + "hall:dex2", + "hall:dex5", + "hall:experience", + "hall:firenum", + "hall:killcrew", + "hall:killnum", + "hall:killrate", + "hall:occupied" + ] + ], + [ + "【40기】킹구", + 77, + 15, + 89, + "che_event_신중", + [ + 41251, + 51399, + 47851, + 338710, + 11552 + ], + 1, + "35f1b7d.png?=20220106", + 40, + "che_220127_IYPv", + 62, + [ + "hall:tirate" + ] + ], + [ + "【40기】UBiSoft", + 88, + 75, + 16, + "che_event_무쌍", + [ + 30396, + 27850, + 263594, + 27982, + 10406 + ], + 1, + "87ae8da.png?=20220128", + 40, + "che_220127_IYPv", + 63, + [ + "hall:tlrate" + ] + ], + [ + "【40기】도화가", + 76, + 15, + 91, + "che_event_신중", + [ + 18561, + 43184, + 14229, + 349760, + 14534 + ], + 0, + "default.jpg", + 40, + "che_220127_IYPv", + 64, + [ + "hall:dex4", + "hall:tirate" + ] + ], + [ + "【40기】천괴금", + 15, + 97, + 70, + "che_event_신산", + [ + 0, + 0, + 0, + 0, + 0 + ], + 1, + "51d357b.png?=20211228", + 40, + "che_220127_IYPv", + 67, + [ + "hall:dedication", + "hall:experience", + "hall:firenum", + "hall:tsrate" + ] + ], + [ + "【40기】박일아", + 76, + 15, + 91, + "che_event_집중", + [ + 34329, + 21150, + 11355, + 400643, + 18911 + ], + 1, + "8608979.gif?=20191024", + 40, + "che_220127_IYPv", + 68, + [ + "hall:dedication", + "hall:dex4", + "hall:killnum", + "hall:killrate", + "hall:killrate_person", + "hall:occupied", + "hall:tirate", + "hall:ttrate", + "hall:winrate" + ] + ], + [ + "【40기】엘윈", + 76, + 87, + 15, + "che_event_기병", + [ + 6405, + 20259, + 205689, + 36397, + 10659 + ], + 0, + "default.jpg", + 40, + "che_220127_IYPv", + 69, + [ + "hall:tsrate" + ] + ], + [ + "【40기】Hide_D", + 78, + 15, + 90, + "che_event_집중", + [ + 4374, + 21536, + 9076, + 389218, + 24554 + ], + 1, + "9f0a2a8.png?=20200106", + 40, + "che_220127_IYPv", + 70, + [ + "hall:dex4", + "hall:winrate" + ] + ], + [ + "【40기】독구", + 74, + 15, + 94, + "che_event_집중", + [ + 24358, + 67611, + 25828, + 396041, + 20624 + ], + 1, + "7c6844b.png?=20220125", + 40, + "che_220127_IYPv", + 71, + [ + "hall:betgold", + "hall:betrate", + "hall:betwin", + "hall:betwingold", + "hall:dex4", + "hall:experience", + "hall:tirate", + "hall:winrate" + ] + ], + [ + "【40기】네시", + 76, + 15, + 91, + "che_event_집중", + [ + 25998, + 19192, + 6316, + 544907, + 43069 + ], + 0, + "default.jpg", + 40, + "che_220127_IYPv", + 72, + [ + "chief:9", + "hall:betrate", + "hall:betwin", + "hall:dedication", + "hall:dex4", + "hall:dex5", + "hall:experience", + "hall:killcrew", + "hall:killcrew_person", + "hall:killnum", + "hall:killrate", + "hall:killrate_person", + "hall:occupied", + "hall:warnum", + "hall:winrate" + ] + ], + [ + "【40기】앵벌스", + 76, + 17, + 88, + "che_event_집중", + [ + 15177, + 22385, + 27951, + 374801, + 30393 + ], + 1, + "77ae39d.jpg?=20220129", + 40, + "che_220127_IYPv", + 73, + [ + "hall:dex4", + "hall:dex5", + "hall:killrate", + "hall:killrate_person", + "hall:occupied" + ] + ], + [ + "【40기】하츄핑", + 75, + 92, + 15, + "che_event_무쌍", + [ + 375407, + 14420, + 15343, + 47793, + 25514 + ], + 1, + "a2aee2.jpg?=20220127", + 40, + "che_220127_IYPv", + 74, + [ + "hall:betrate", + "hall:dex1", + "hall:tsrate" + ] + ], + [ + "【40기】333", + 78, + 89, + 15, + "che_event_위압", + [ + 24269, + 13944, + 368084, + 22382, + 21207 + ], + 0, + "default.jpg", + 40, + "che_220127_IYPv", + 75, + [ + "hall:dex3" + ] + ], + [ + "【40기】퍄퍄", + 79, + 88, + 15, + "che_event_무쌍", + [ + 7558, + 13270, + 452947, + 46298, + 23256 + ], + 0, + "default.jpg", + 40, + "che_220127_IYPv", + 77, + [ + "hall:dex3", + "hall:killcrew_person", + "hall:killnum", + "hall:occupied", + "hall:tlrate" + ] + ], + [ + "【40기】독시탈", + 76, + 16, + 87, + "che_event_신중", + [ + 10717, + 17182, + 20662, + 348267, + 28101 + ], + 1, + "11a36d4.jpg?=20220109", + 40, + "che_220127_IYPv", + 80, + [ + "hall:dex5" + ] + ], + [ + "【40기】평민킬러", + 75, + 93, + 15, + "che_event_격노", + [ + 616730, + 29223, + 37315, + 40453, + 51158 + ], + 1, + "fb23a32.jpg?=20190904", + 40, + "che_220127_IYPv", + 81, + [ + "chief:8", + "hall:dedication", + "hall:dex1", + "hall:dex5", + "hall:experience", + "hall:killcrew", + "hall:killnum", + "hall:killrate", + "hall:killrate_person", + "hall:occupied", + "hall:tsrate", + "hall:warnum", + "hall:winrate" + ] + ], + [ + "【40기】겨울", + 91, + 75, + 15, + "che_event_징병", + [ + 12949, + 45132, + 459448, + 30000, + 13140 + ], + 1, + "5c609d.jpg?=20220129", + 40, + "che_220127_IYPv", + 84, + [ + "hall:betgold", + "hall:betwin", + "hall:betwingold", + "hall:dex3", + "hall:killcrew", + "hall:killcrew_person", + "hall:tlrate", + "hall:warnum" + ] + ], + [ + "【40기】후로세수", + 75, + 15, + 93, + "che_event_집중", + [ + 14653, + 8856, + 12325, + 267770, + 17371 + ], + 0, + "default.jpg", + 40, + "che_220127_IYPv", + 85, + [ + "hall:tirate" + ] + ], + [ + "【40기】여긴어딘가", + 17, + 77, + 86, + "che_event_징병", + [ + 0, + 0, + 0, + 0, + 0 + ], + 0, + "default.jpg", + 40, + "che_220127_IYPv", + 87, + [ + "hall:ttrate" + ] + ], + [ + "【40기】임사영", + 75, + 93, + 15, + "che_event_무쌍", + [ + 222769, + 220557, + 74843, + 36176, + 27239 + ], + 1, + "10e5f72.jpg?=20210430", + 40, + "che_220127_IYPv", + 88, + [ + "hall:dex1", + "hall:dex2", + "hall:dex5", + "hall:killrate", + "hall:tsrate" + ] + ], + [ + "【40기】^ㅠ^", + 77, + 93, + 15, + "che_event_저격", + [ + 17851, + 599184, + 20191, + 60479, + 25392 + ], + 1, + "3441892.jpg?=20220127", + 40, + "che_220127_IYPv", + 89, + [ + "hall:betgold", + "hall:betwin", + "hall:betwingold", + "hall:dex2", + "hall:killcrew", + "hall:killcrew_person", + "hall:killnum", + "hall:tsrate", + "hall:ttrate", + "hall:warnum" + ] + ], + [ + "【40기】천재마법사", + 88, + 15, + 79, + "che_event_필살", + [ + 17271, + 36544, + 19537, + 482714, + 30040 + ], + 1, + "141e365.jpg?=20220127", + 40, + "che_220127_IYPv", + 90, + [ + "hall:dex4", + "hall:dex5", + "hall:killcrew", + "hall:killcrew_person", + "hall:tlrate", + "hall:warnum" + ] + ], + [ + "【40기】아이린", + 76, + 91, + 15, + "che_event_징병", + [ + 217927, + 158845, + 46352, + 43551, + 13625 + ], + 1, + "8dac73c.jpg?=20180922", + 40, + "che_220127_IYPv", + 92, + [ + "hall:betrate", + "hall:dex1", + "hall:dex2", + "hall:firenum" + ] + ], + [ + "【40기】ARES군주", + 78, + 88, + 16, + "che_event_필살", + [ + 58684, + 201153, + 184708, + 31198, + 9912 + ], + 1, + "106f82e.jpg?=20210212", + 40, + "che_220127_IYPv", + 94, + [ + "hall:dex1", + "hall:dex2", + "hall:killcrew_person", + "hall:killrate_person", + "hall:ttrate", + "hall:winrate" + ] + ], + [ + "【40기】INTP", + 18, + 90, + 74, + "che_event_의술", + [ + 13387, + 34222, + 94557, + 17871, + 8510 + ], + 0, + "default.jpg", + 40, + "che_220127_IYPv", + 95, + [ + "hall:betrate", + "hall:firenum", + "hall:killrate", + "hall:killrate_person" + ] + ], + [ + "【40기】외심장", + 74, + 15, + 93, + "che_event_집중", + [ + 19610, + 33015, + 16847, + 424504, + 31743 + ], + 1, + "36110cd.jpg?=20180826", + 40, + "che_220127_IYPv", + 96, + [ + "chief:7", + "hall:dedication", + "hall:dex4", + "hall:dex5", + "hall:experience", + "hall:tirate", + "hall:winrate" + ] + ], + [ + "【40기】나데코", + 77, + 15, + 86, + "che_event_신중", + [ + 32981, + 33956, + 58542, + 279306, + 21910 + ], + 0, + "default.jpg", + 40, + "che_220127_IYPv", + 97, + [ + "hall:firenum" + ] + ], + [ + "【40기】크렌", + 79, + 88, + 15, + "che_event_척사", + [ + 180371, + 336293, + 19660, + 53283, + 23233 + ], + 0, + "default.jpg", + 40, + "che_220127_IYPv", + 101, + [ + "hall:dex1", + "hall:dex2", + "hall:killcrew", + "hall:killcrew_person", + "hall:killnum", + "hall:ttrate", + "hall:warnum" + ] + ], + [ + "【40기】2", + 77, + 87, + 15, + "che_event_견고", + [ + 19778, + 43593, + 428928, + 34848, + 8888 + ], + 0, + "default.jpg", + 40, + "che_220127_IYPv", + 105, + [ + "hall:dex3", + "hall:killrate_person", + "hall:tlrate" + ] + ], + [ + "【40기】호갱", + 75, + 16, + 89, + "che_event_저격", + [ + 9468, + 25289, + 44874, + 248807, + 14042 + ], + 0, + "default.jpg", + 40, + "che_220127_IYPv", + 254, + [ + "hall:tirate" + ] + ], + [ + "【40기】수장", + 78, + 90, + 15, + "che_event_견고", + [ + 228627, + 81280, + 32983, + 27902, + 9084 + ], + 1, + "5c1a589.jpg?=20220106", + 40, + "che_220127_IYPv", + 259, + [ + "chief:6", + "hall:dedication", + "hall:dex1", + "hall:ttrate" + ] + ], + [ + "【40기】봄꽃", + 88, + 15, + 78, + "che_event_신산", + [ + 22780, + 32237, + 11589, + 350280, + 20774 + ], + 1, + "1390e40.jpg?=20211015", + 40, + "che_220127_IYPv", + 261, + [ + "hall:dex4", + "hall:tlrate", + "hall:ttrate" + ] + ], + [ + "【40기】방상", + 85, + 76, + 16, + "che_event_필살", + [ + 175216, + 7875, + 19406, + 38306, + 8267 + ], + 0, + "default.jpg", + 40, + "che_220127_IYPv", + 267, + [ + "hall:dex1", + "hall:tlrate" + ] + ], + [ + "【40기】귀여운홍차", + 77, + 88, + 15, + "che_event_저격", + [ + 32269, + 42912, + 320878, + 34042, + 11287 + ], + 0, + "default.jpg", + 40, + "che_220127_IYPv", + 273, + [ + "hall:dex3" + ] + ], + [ + "【40기】퉤", + 15, + 79, + 84, + "che_event_반계", + [ + 0, + 0, + 0, + 0, + 0 + ], + 1, + "51c5fda.png?=20220131", + 40, + "che_220127_IYPv", + 401, + [ + "hall:betgold", + "hall:betwin", + "hall:betwingold", + "hall:firenum", + "hall:ttrate" + ] + ], + [ + "【40기】누군가", + 78, + 86, + 15, + "che_event_위압", + [ + 29355, + 264552, + 12602, + 29478, + 6097 + ], + 0, + "default.jpg", + 40, + "che_220127_IYPv", + 432, + [ + "hall:betrate", + "hall:dex2" + ] + ], + [ + "【40기】흑우", + 15, + 73, + 87, + "che_event_필살", + [ + 1500, + 0, + 0, + 786, + 0 + ], + 1, + "50b617f.jpg?=20220206", + 40, + "che_220127_IYPv", + 568, + [ + "hall:firenum" + ] + ], + [ + "【41기】박일아", + 75, + 90, + 15, + "che_event_돌격", + [ + 43452, + 437388, + 7650, + 68585, + 25888 + ], + 1, + "8608979.gif?=20191024", + 41, + "che_220224_Fj8Q", + 6, + [ + "hall:betgold", + "hall:betwin", + "hall:betwingold", + "hall:dex2", + "hall:occupied", + "hall:tsrate" + ] + ], + [ + "【41기】로제타", + 73, + 15, + 93, + "che_event_의술", + [ + 17523, + 7085, + 5262, + 249044, + 18016 + ], + 1, + "a7815f.jpg?=20220224", + 41, + "che_220224_Fj8Q", + 9, + [ + "hall:tirate" + ] + ], + [ + "【41기】독마독갈테르", + 78, + 89, + 15, + "che_event_무쌍", + [ + 21761, + 444018, + 9855, + 24419, + 31179 + ], + 1, + "bc1ef1f.jpg?=20220224", + 41, + "che_220224_Fj8Q", + 10, + [ + "hall:betgold", + "hall:betrate", + "hall:betwingold", + "hall:dex2", + "hall:firenum", + "hall:killcrew", + "hall:killcrew_person", + "hall:killnum", + "hall:tsrate", + "hall:warnum" + ] + ], + [ + "【41기】하츄핑", + 74, + 15, + 93, + "che_event_집중", + [ + 21535, + 42163, + 36827, + 683755, + 33733 + ], + 1, + "4e57009.gif?=20220225", + 41, + "che_220224_Fj8Q", + 12, + [ + "hall:betgold", + "hall:betrate", + "hall:betwingold", + "hall:dex4", + "hall:experience", + "hall:killcrew", + "hall:killcrew_person", + "hall:killnum", + "hall:killrate", + "hall:killrate_person", + "hall:tirate", + "hall:warnum", + "hall:winrate" + ] + ], + [ + "【41기】제갈공명", + 75, + 16, + 90, + "che_event_징병", + [ + 27943, + 14572, + 13776, + 426952, + 51052 + ], + 1, + "65f385f.jpg?=20220311", + 41, + "che_220224_Fj8Q", + 15, + [ + "hall:dex4", + "hall:dex5", + "hall:killcrew" + ] + ], + [ + "【41기】콩가루", + 74, + 93, + 15, + "che_event_무쌍", + [ + 11240, + 7048, + 296328, + 13622, + 22317 + ], + 1, + "c65bf58.jpg?=20220224", + 41, + "che_220224_Fj8Q", + 17, + [ + "hall:betrate", + "hall:dex3", + "hall:firenum", + "hall:tsrate" + ] + ], + [ + "【41기】SARS", + 90, + 76, + 15, + "che_event_징병", + [ + 27287, + 426889, + 44972, + 42835, + 19903 + ], + 1, + "b84944.jpg?=20180829", + 41, + "che_220224_Fj8Q", + 21, + [ + "chief:8", + "hall:betgold", + "hall:betwin", + "hall:betwingold", + "hall:dex2", + "hall:experience", + "hall:killcrew", + "hall:killcrew_person", + "hall:killnum", + "hall:tlrate", + "hall:warnum" + ] + ], + [ + "【41기】악동핑", + 74, + 92, + 15, + "che_event_위압", + [ + 79547, + 31456, + 264832, + 35411, + 20533 + ], + 1, + "e27f92b.jpg?=20220224", + 41, + "che_220224_Fj8Q", + 22, + [ + "hall:betgold", + "hall:betwingold", + "hall:dex3", + "hall:firenum", + "hall:tsrate" + ] + ], + [ + "【41기】아우", + 75, + 86, + 16, + "che_event_보병", + [ + 108027, + 1133, + 10053, + 2178, + 15152 + ], + 1, + "cdab72d.jpg?=20220311", + 41, + "che_220224_Fj8Q", + 26, + [ + "hall:dex1", + "hall:killrate" + ] + ], + [ + "【41기】코케 레수렉시온", + 20, + 86, + 74, + "che_event_위압", + [ + 11991, + 7158, + 260072, + 31833, + 20262 + ], + 1, + "b04a5f3.png?=20220224", + 41, + "che_220224_Fj8Q", + 28, + [ + "chief:7", + "hall:killrate", + "hall:killrate_person", + "hall:ttrate" + ] + ], + [ + "【41기】앵버거독피자시스시", + 77, + 86, + 15, + "che_event_필살", + [ + 17917, + 15385, + 339551, + 15195, + 30243 + ], + 1, + "4791e3e.png?=20220228", + 41, + "che_220224_Fj8Q", + 30, + [ + "hall:dex3" + ] + ], + [ + "【41기】평민킬러", + 94, + 73, + 15, + "che_event_견고", + [ + 449497, + 7882, + 41591, + 25395, + 29311 + ], + 1, + "fb23a32.jpg?=20190904", + 41, + "che_220224_Fj8Q", + 31, + [ + "hall:dex1", + "hall:experience", + "hall:killcrew", + "hall:killcrew_person", + "hall:tlrate", + "hall:ttrate", + "hall:warnum" + ] + ], + [ + "【41기】초코맛국수", + 78, + 16, + 86, + "che_event_반계", + [ + 22432, + 32964, + 14135, + 332658, + 27111 + ], + 1, + "4bcd3f5.jpg?=20200904", + 41, + "che_220224_Fj8Q", + 32, + [ + "hall:dex4", + "hall:ttrate" + ] + ], + [ + "【41기】퍄퍄", + 75, + 88, + 15, + "che_event_척사", + [ + 35503, + 35372, + 281079, + 66369, + 11616 + ], + 0, + "default.jpg", + 41, + "che_220224_Fj8Q", + 34, + [ + "hall:dex3", + "hall:ttrate" + ] + ], + [ + "【41기】카이스트", + 75, + 15, + 89, + "che_event_집중", + [ + 31652, + 29636, + 25506, + 413076, + 35780 + ], + 1, + "9361ef8.jpg?=20180907", + 41, + "che_220224_Fj8Q", + 35, + [ + "hall:betwin", + "hall:dex4", + "hall:killrate_person", + "hall:winrate" + ] + ], + [ + "【41기】반도핑", + 80, + 86, + 15, + "che_event_위압", + [ + 444881, + 40282, + 76960, + 41638, + 30272 + ], + 1, + "e6269b8.png?=20220223", + 41, + "che_220224_Fj8Q", + 38, + [ + "hall:betgold", + "hall:betrate", + "hall:betwin", + "hall:betwingold", + "hall:dex1", + "hall:killcrew", + "hall:killcrew_person", + "hall:killnum", + "hall:warnum" + ] + ], + [ + "【41기】게르니카", + 78, + 15, + 87, + "che_event_필살", + [ + 5338, + 8934, + 13868, + 152359, + 9650 + ], + 1, + "40874e3.jpg?=20220304", + 41, + "che_220224_Fj8Q", + 39, + [ + "hall:ttrate" + ] + ], + [ + "【41기】조승상", + 86, + 78, + 16, + "che_event_징병", + [ + 383320, + 16298, + 43382, + 57809, + 40538 + ], + 1, + "bda7d37.jpg?=20200606", + 41, + "che_220224_Fj8Q", + 40, + [ + "hall:dex1", + "hall:dex5", + "hall:occupied", + "hall:tlrate", + "hall:ttrate", + "hall:warnum" + ] + ], + [ + "【41기】네이미", + 85, + 80, + 15, + "che_event_무쌍", + [ + 77277, + 6360, + 1785, + 7671, + 47658 + ], + 0, + "default.jpg", + 41, + "che_220224_Fj8Q", + 41, + [ + "hall:dex5", + "hall:firenum", + "hall:tlrate", + "hall:ttrate" + ] + ], + [ + "【41기】앵벌스♡리즈나", + 76, + 15, + 89, + "che_event_환술", + [ + 11161, + 264, + 14990, + 157336, + 12554 + ], + 0, + "default.jpg", + 41, + "che_220224_Fj8Q", + 43, + [ + "hall:firenum" + ] + ], + [ + "【41기】바로핑", + 75, + 15, + 92, + "che_event_신중", + [ + 29932, + 29109, + 20100, + 435655, + 31249 + ], + 1, + "fad2d4d.gif?=20220226", + 41, + "che_220224_Fj8Q", + 45, + [ + "hall:betgold", + "hall:betwin", + "hall:betwingold", + "hall:dex4", + "hall:killcrew_person", + "hall:killnum", + "hall:tirate" + ] + ], + [ + "【41기】유카", + 74, + 92, + 15, + "che_event_필살", + [ + 32022, + 220114, + 8249, + 21112, + 25980 + ], + 0, + "default.jpg", + 41, + "che_220224_Fj8Q", + 46, + [ + "hall:dex2" + ] + ], + [ + "【41기】루리나", + 15, + 73, + 91, + "che_event_필살", + [ + 0, + 0, + 0, + 0, + 0 + ], + 0, + "default.jpg", + 41, + "che_220224_Fj8Q", + 47, + [ + "hall:firenum" + ] + ], + [ + "【41기】1.0", + 73, + 15, + 93, + "che_event_의술", + [ + 19744, + 11102, + 10924, + 378546, + 21790 + ], + 0, + "default.jpg", + 41, + "che_220224_Fj8Q", + 49, + [ + "hall:betrate", + "hall:dex4", + "hall:experience", + "hall:killrate", + "hall:killrate_person", + "hall:occupied", + "hall:tirate", + "hall:winrate" + ] + ], + [ + "【41기】핑", + 77, + 16, + 88, + "che_event_반계", + [ + 19719, + 27389, + 18374, + 326154, + 45549 + ], + 1, + "5b67ef7.gif?=20220224", + 41, + "che_220224_Fj8Q", + 51, + [ + "hall:dex4", + "hall:dex5" + ] + ], + [ + "【41기】갈근", + 89, + 75, + 15, + "che_event_척사", + [ + 420849, + 17484, + 20526, + 59786, + 25936 + ], + 0, + "default.jpg", + 41, + "che_220224_Fj8Q", + 52, + [ + "hall:dex1", + "hall:killnum", + "hall:tlrate", + "hall:warnum" + ] + ], + [ + "【41기】도9", + 86, + 77, + 16, + "che_event_견고", + [ + 244863, + 2803, + 18539, + 35060, + 28143 + ], + 0, + "default.jpg", + 41, + "che_220224_Fj8Q", + 53, + [ + "hall:dex1" + ] + ], + [ + "【41기】시뉴카린", + 75, + 88, + 16, + "che_event_의술", + [ + 335381, + 9479, + 5494, + 26662, + 28282 + ], + 1, + "a0900f2.jpg?=20220224", + 41, + "che_220224_Fj8Q", + 54, + [ + "chief:6", + "hall:betwin", + "hall:dedication", + "hall:dex1", + "hall:killrate", + "hall:killrate_person" + ] + ], + [ + "【41기】불패", + 75, + 15, + 90, + "che_event_신중", + [ + 16090, + 10349, + 8786, + 267626, + 38685 + ], + 1, + "3efdfcc.jpg?=20220224", + 41, + "che_220224_Fj8Q", + 55, + [ + "hall:dedication", + "hall:experience", + "hall:killrate_person", + "hall:occupied" + ] + ], + [ + "【41기】시진핑", + 89, + 78, + 15, + "che_event_견고", + [ + 35857, + 51264, + 461518, + 58913, + 41876 + ], + 1, + "aabda9a.png?=20220224", + 41, + "che_220224_Fj8Q", + 57, + [ + "hall:dex3", + "hall:dex5", + "hall:experience", + "hall:killcrew", + "hall:killcrew_person", + "hall:occupied", + "hall:tlrate", + "hall:ttrate", + "hall:warnum" + ] + ], + [ + "【41기】ZZARA", + 75, + 89, + 15, + "che_event_위압", + [ + 403599, + 10202, + 16749, + 31807, + 26313 + ], + 1, + "1d43adb.jpg?=20220224", + 41, + "che_220224_Fj8Q", + 58, + [ + "hall:dex1", + "hall:killnum", + "hall:killrate", + "hall:killrate_person", + "hall:tsrate", + "hall:warnum" + ] + ], + [ + "【41기】마휘핑", + 74, + 15, + 92, + "che_event_의술", + [ + 32176, + 15977, + 14948, + 412194, + 32175 + ], + 1, + "d2e91a.png?=20220220", + 41, + "che_220224_Fj8Q", + 59, + [ + "hall:betgold", + "hall:betrate", + "hall:betwin", + "hall:betwingold", + "hall:dex4", + "hall:tirate" + ] + ], + [ + "【41기】차차핑", + 77, + 87, + 16, + "che_event_견고", + [ + 11993, + 39166, + 297921, + 21401, + 71308 + ], + 1, + "c86f7b.gif?=20220226", + 41, + "che_220224_Fj8Q", + 60, + [ + "hall:betrate", + "hall:betwin", + "hall:dex3", + "hall:dex5" + ] + ], + [ + "【41기】임사영", + 76, + 15, + 91, + "che_event_환술", + [ + 28696, + 21170, + 7537, + 453587, + 27951 + ], + 1, + "10e5f72.jpg?=20210430", + 41, + "che_220224_Fj8Q", + 61, + [ + "chief:12", + "hall:dedication", + "hall:dex4", + "hall:experience", + "hall:killcrew", + "hall:killcrew_person", + "hall:killnum", + "hall:killrate", + "hall:killrate_person", + "hall:occupied", + "hall:winrate" + ] + ], + [ + "【41기】커여운홍차", + 19, + 83, + 79, + "che_event_환술", + [ + 2008, + 12986, + 32509, + 6089, + 41006 + ], + 1, + "567fec5.png?=20220224", + 41, + "che_220224_Fj8Q", + 63, + [ + "hall:dex5" + ] + ], + [ + "【41기】넌못지나간다", + 93, + 73, + 15, + "che_event_의술", + [ + 22890, + 15106, + 17593, + 34781, + 192833 + ], + 1, + "deab2f.png?=20220312", + 41, + "che_220224_Fj8Q", + 64, + [ + "hall:dex5", + "hall:firenum", + "hall:ttrate" + ] + ], + [ + "【41기】뉴턴", + 74, + 16, + 90, + "che_event_척사", + [ + 13078, + 18275, + 31557, + 259969, + 29006 + ], + 0, + "default.jpg", + 41, + "che_220224_Fj8Q", + 66, + [ + "hall:dedication", + "hall:tirate" + ] + ], + [ + "【41기】고독한삐에로", + 91, + 75, + 15, + "che_event_징병", + [ + 18721, + 390604, + 9010, + 34384, + 29969 + ], + 1, + "44f3d1e.jpg?=20220224", + 41, + "che_220224_Fj8Q", + 68, + [ + "hall:dex2", + "hall:killnum", + "hall:tlrate", + "hall:warnum" + ] + ], + [ + "【41기】페르난도", + 73, + 93, + 15, + "che_event_무쌍", + [ + 22861, + 312434, + 9286, + 35172, + 31654 + ], + 1, + "6c07b3e.jpg?=20220305", + 41, + "che_220224_Fj8Q", + 69, + [ + "chief:10", + "hall:dedication", + "hall:dex2", + "hall:experience", + "hall:killrate", + "hall:occupied", + "hall:tsrate", + "hall:winrate" + ] + ], + [ + "【41기】민방위n년차", + 83, + 15, + 81, + "che_event_필살", + [ + 15261, + 22389, + 8240, + 206868, + 35025 + ], + 0, + "default.jpg", + 41, + "che_220224_Fj8Q", + 70, + [ + "hall:occupied" + ] + ], + [ + "【41기】불곰", + 38, + 52, + 90, + "che_event_신산", + [ + 7300, + 4300, + 7554, + 98769, + 12063 + ], + 1, + "80ee728.png?=20220224", + 41, + "che_220224_Fj8Q", + 71, + [ + "hall:dedication" + ] + ], + [ + "【41기】군필22학번", + 74, + 15, + 90, + "che_event_신산", + [ + 13849, + 15586, + 24052, + 254690, + 38855 + ], + 0, + "default.jpg", + 41, + "che_220224_Fj8Q", + 72, + [ + "hall:betrate", + "hall:dex5", + "hall:experience", + "hall:firenum" + ] + ], + [ + "【41기】네시", + 93, + 72, + 15, + "che_event_위압", + [ + 98135, + 25649, + 210036, + 33285, + 23269 + ], + 0, + "default.jpg", + 41, + "che_220224_Fj8Q", + 74, + [ + "hall:dex1", + "hall:tlrate" + ] + ], + [ + "【41기】칠리크랩", + 15, + 73, + 93, + "che_event_척사", + [ + 0, + 0, + 0, + 0, + 0 + ], + 0, + "default.jpg", + 41, + "che_220224_Fj8Q", + 75, + [ + "hall:tirate" + ] + ], + [ + "【41기】AI 흑우", + 76, + 15, + 90, + "che_event_저격", + [ + 20885, + 36148, + 18960, + 289777, + 22512 + ], + 1, + "50b617f.jpg?=20220206", + 41, + "che_220224_Fj8Q", + 76, + [ + "hall:betgold", + "hall:tirate", + "hall:winrate" + ] + ], + [ + "【41기】tqtt", + 72, + 15, + 91, + "che_event_척사", + [ + 7489, + 3328, + 1111, + 102259, + 22328 + ], + 0, + "default.jpg", + 41, + "che_220224_Fj8Q", + 77, + [ + "hall:dedication" + ] + ], + [ + "【41기】호갱", + 77, + 87, + 15, + "che_event_필살", + [ + 2920, + 37271, + 243527, + 28901, + 10186 + ], + 0, + "default.jpg", + 41, + "che_220224_Fj8Q", + 78, + [ + "hall:winrate" + ] + ], + [ + "【41기】3", + 76, + 87, + 16, + "che_event_저격", + [ + 20570, + 10717, + 452051, + 29756, + 21682 + ], + 0, + "default.jpg", + 41, + "che_220224_Fj8Q", + 79, + [ + "hall:dex3", + "hall:tsrate", + "hall:winrate" + ] + ], + [ + "【41기】무장입니다", + 74, + 94, + 15, + "che_event_필살", + [ + 9499, + 17007, + 399963, + 25618, + 20559 + ], + 0, + "default.jpg", + 41, + "che_220224_Fj8Q", + 118, + [ + "chief:11", + "hall:betwin", + "hall:dedication", + "hall:dex3", + "hall:experience", + "hall:killrate", + "hall:killrate_person", + "hall:occupied", + "hall:tsrate", + "hall:winrate" + ] + ], + [ + "【41기】갓갓가가갓갓", + 77, + 87, + 15, + "che_event_돌격", + [ + 17464, + 13134, + 307569, + 41865, + 29963 + ], + 0, + "default.jpg", + 41, + "che_220224_Fj8Q", + 129, + [ + "hall:dex3" + ] + ], + [ + "【41기】아야핑", + 76, + 89, + 15, + "che_event_척사", + [ + 18358, + 93171, + 364886, + 49216, + 26193 + ], + 1, + "b959298.gif?=20220226", + 41, + "che_220224_Fj8Q", + 142, + [ + "hall:betrate", + "hall:betwingold", + "hall:dex3", + "hall:killcrew", + "hall:killcrew_person" + ] + ], + [ + "【41기】수장", + 75, + 89, + 15, + "che_event_척사", + [ + 29947, + 310066, + 15063, + 59867, + 14164 + ], + 1, + "5c1a589.jpg?=20220106", + 41, + "che_220224_Fj8Q", + 281, + [ + "hall:dex2", + "hall:tsrate" + ] + ], + [ + "【41기】봄꽃", + 86, + 15, + 78, + "che_event_필살", + [ + 12065, + 7559, + 22313, + 156037, + 13345 + ], + 1, + "1390e40.jpg?=20211015", + 41, + "che_220224_Fj8Q", + 284, + [ + "hall:tlrate" + ] + ], + [ + "【41기】천마", + 75, + 15, + 90, + "che_event_신산", + [ + 26090, + 5952, + 19702, + 261314, + 24068 + ], + 1, + "141e365.jpg?=20220127", + 41, + "che_220224_Fj8Q", + 290, + [ + "chief:5", + "hall:dedication", + "hall:tirate" + ] + ], + [ + "【41기】중달", + 77, + 15, + 88, + "che_event_신산", + [ + 10047, + 18467, + 28378, + 483579, + 35952 + ], + 0, + "default.jpg", + 41, + "che_220224_Fj8Q", + 292, + [ + "chief:9", + "hall:betgold", + "hall:betrate", + "hall:betwin", + "hall:betwingold", + "hall:dex4", + "hall:killcrew", + "hall:killcrew_person", + "hall:killnum", + "hall:killrate", + "hall:killrate_person", + "hall:winrate" + ] + ], + [ + "【41기】후랴", + 73, + 15, + 92, + "che_event_신산", + [ + 10432, + 2627, + 9550, + 228265, + 52145 + ], + 0, + "default.jpg", + 41, + "che_220224_Fj8Q", + 296, + [ + "hall:dedication", + "hall:dex5", + "hall:occupied", + "hall:tirate" + ] + ], + [ + "【41기】료우기시키", + 86, + 74, + 16, + "che_event_저격", + [ + 17509, + 177855, + 9211, + 31553, + 7485 + ], + 1, + "72a190e.jpg?=20220109", + 41, + "che_220224_Fj8Q", + 413, + [ + "hall:dex2" + ] + ], + [ + "【41기】맛있는딸기", + 74, + 90, + 15, + "che_event_무쌍", + [ + 14587, + 158281, + 1057, + 28691, + 10061 + ], + 0, + "default.jpg", + 41, + "che_220224_Fj8Q", + 422, + [ + "hall:dex2", + "hall:tsrate" + ] + ], + [ + "【41기】rwitch", + 86, + 77, + 15, + "che_event_무쌍", + [ + 149799, + 2589, + 32606, + 23093, + 25457 + ], + 1, + "54e527.png?=20201024", + 41, + "che_220224_Fj8Q", + 435, + [ + "hall:dex1", + "hall:tlrate", + "hall:ttrate" + ] + ], + [ + "【41기】냐옹", + 74, + 87, + 15, + "che_event_필살", + [ + 17419, + 95899, + 1786, + 12508, + 476 + ], + 1, + "b9b1f53.png?=20220301", + 41, + "che_220224_Fj8Q", + 460, + [ + "hall:dex2" + ] + ], + [ + "【41기】엘독링", + 15, + 84, + 74, + "che_event_위압", + [ + 0, + 0, + 0, + 0, + 0 + ], + 0, + "default.jpg", + 41, + "che_220224_Fj8Q", + 519, + [ + "hall:firenum" + ] + ], + [ + "【41기】유산스카", + 15, + 86, + 73, + "che_event_징병", + [ + 0, + 0, + 0, + 0, + 0 + ], + 1, + "7782366.jpg?=20220304", + 41, + "che_220224_Fj8Q", + 533, + [ + "hall:firenum" + ] + ], + [ + "【42기】HMR", + 77, + 15, + 91, + "che_event_신산", + [ + 6727, + 15421, + 10548, + 355505, + 30759 + ], + 1, + "6a2e2a9.png?=20220319", + 42, + "che_220317_36DC", + 17, + [ + "hall:dex4" + ] + ], + [ + "【42기】카이스트", + 75, + 15, + 93, + "che_event_집중", + [ + 12376, + 705, + 18577, + 165655, + 7488 + ], + 1, + "9361ef8.jpg?=20180907", + 42, + "che_220317_36DC", + 23, + [ + "hall:betwin", + "hall:firenum", + "hall:tirate", + "hall:ttrate" + ] + ], + [ + "【42기】천괴은", + 76, + 93, + 15, + "che_event_척사", + [ + 34276, + 4719, + 364266, + 55731, + 27188 + ], + 1, + "280dc70.png?=20220317", + 42, + "che_220317_36DC", + 24, + [ + "hall:betwin", + "hall:dex3", + "hall:killnum", + "hall:winrate" + ] + ], + [ + "【42기】갈근", + 91, + 77, + 15, + "che_event_돌격", + [ + 606120, + 19511, + 89178, + 87614, + 46836 + ], + 0, + "default.jpg", + 42, + "che_220317_36DC", + 25, + [ + "hall:betrate", + "hall:betwin", + "hall:dedication", + "hall:dex1", + "hall:experience", + "hall:killcrew", + "hall:killcrew_person", + "hall:killnum", + "hall:killrate", + "hall:killrate_person", + "hall:tlrate", + "hall:warnum", + "hall:winrate" + ] + ], + [ + "【42기】블루마운틴", + 15, + 95, + 71, + "che_event_저격", + [ + 0, + 0, + 0, + 0, + 0 + ], + 1, + "9ce4f55.jpg?=20220317", + 42, + "che_220317_36DC", + 26, + [ + "hall:betgold", + "hall:experience", + "hall:firenum" + ] + ], + [ + "【42기】엔틱", + 77, + 15, + 93, + "che_event_집중", + [ + 21198, + 20686, + 22001, + 672464, + 19957 + ], + 1, + "2dc4058.jpg?=20190816", + 42, + "che_220317_36DC", + 28, + [ + "chief:5", + "hall:dex4", + "hall:experience", + "hall:killcrew", + "hall:killcrew_person", + "hall:killnum", + "hall:killrate_person", + "hall:warnum", + "hall:winrate" + ] + ], + [ + "【42기】천재마법사", + 76, + 15, + 92, + "che_event_신중", + [ + 18213, + 9734, + 8988, + 362896, + 33302 + ], + 1, + "141e365.jpg?=20220127", + 42, + "che_220317_36DC", + 32, + [ + "hall:dex4" + ] + ], + [ + "【42기】심의위원장", + 73, + 16, + 93, + "che_event_집중", + [ + 12704, + 14129, + 6126, + 295869, + 58510 + ], + 1, + "66f794f.jpg?=20220318", + 42, + "che_220317_36DC", + 35, + [ + "hall:dex5" + ] + ], + [ + "【42기】수장", + 77, + 91, + 15, + "che_event_저격", + [ + 4533, + 28722, + 493346, + 31210, + 43505 + ], + 1, + "5c1a589.jpg?=20220106", + 42, + "che_220317_36DC", + 46, + [ + "chief:10", + "hall:dedication", + "hall:dex3", + "hall:experience", + "hall:killrate", + "hall:killrate_person", + "hall:occupied" + ] + ], + [ + "【42기】미네르바", + 90, + 79, + 15, + "che_event_격노", + [ + 37636, + 32815, + 501935, + 75799, + 41605 + ], + 1, + "300a501.jpg?=20220317", + 42, + "che_220317_36DC", + 47, + [ + "hall:dex2", + "hall:dex3", + "hall:killcrew", + "hall:killcrew_person", + "hall:killnum", + "hall:tlrate" + ] + ], + [ + "【42기】천괴다이아", + 73, + 15, + 96, + "che_event_환술", + [ + 13454, + 13144, + 1555, + 238308, + 13756 + ], + 1, + "e47c9ca.png?=20220318", + 42, + "che_220317_36DC", + 49, + [ + "hall:occupied", + "hall:tirate" + ] + ], + [ + "【42기】사사게", + 76, + 91, + 15, + "che_event_의술", + [ + 420906, + 11581, + 9636, + 36881, + 48846 + ], + 1, + "7d6c295.jpg?=20220318", + 42, + "che_220317_36DC", + 50, + [ + "hall:dex1", + "hall:killrate", + "hall:occupied", + "hall:tsrate" + ] + ], + [ + "【42기】박일아", + 76, + 91, + 15, + "che_event_척사", + [ + 523199, + 10477, + 26851, + 71632, + 38919 + ], + 1, + "8608979.gif?=20191024", + 42, + "che_220317_36DC", + 52, + [ + "hall:betrate", + "hall:dex1", + "hall:killcrew", + "hall:tsrate", + "hall:warnum" + ] + ], + [ + "【42기】SARS", + 88, + 78, + 16, + "che_event_위압", + [ + 46419, + 21759, + 214313, + 27401, + 258660 + ], + 1, + "b84944.jpg?=20180829", + 42, + "che_220317_36DC", + 53, + [ + "hall:dex5", + "hall:firenum", + "hall:killcrew", + "hall:killcrew_person", + "hall:tlrate", + "hall:warnum" + ] + ], + [ + "【42기】이드", + 74, + 94, + 15, + "che_event_저격", + [ + 347159, + 7448, + 15226, + 49756, + 26678 + ], + 1, + "5898830.jpg?=20210831", + 42, + "che_220317_36DC", + 59, + [ + "hall:dex1", + "hall:tsrate", + "hall:ttrate" + ] + ], + [ + "【42기】킹구", + 76, + 15, + 91, + "che_event_신산", + [ + 16489, + 22855, + 12427, + 217338, + 39743 + ], + 1, + "35f1b7d.png?=20220106", + 42, + "che_220317_36DC", + 60, + [ + "hall:ttrate" + ] + ], + [ + "【42기】빵사능홍차", + 89, + 78, + 15, + "che_event_척사", + [ + 17292, + 62615, + 622484, + 53144, + 38500 + ], + 1, + "567fec5.png?=20220224", + 42, + "che_220317_36DC", + 62, + [ + "chief:8", + "hall:betwin", + "hall:dex2", + "hall:dex3", + "hall:killcrew", + "hall:killcrew_person", + "hall:killnum", + "hall:killrate", + "hall:killrate_person", + "hall:occupied", + "hall:tlrate", + "hall:warnum" + ] + ], + [ + "【42기】루피", + 74, + 95, + 15, + "che_event_무쌍", + [ + 4619, + 38241, + 359218, + 32089, + 36023 + ], + 1, + "9dcd7c3.jpg?=20220317", + 42, + "che_220317_36DC", + 63, + [ + "hall:dex2", + "hall:dex3", + "hall:occupied", + "hall:tsrate" + ] + ], + [ + "【42기】복숭아좋아", + 74, + 16, + 91, + "che_event_신산", + [ + 20671, + 17889, + 35903, + 317790, + 35818 + ], + 1, + "57e4a39.jpg?=20190620", + 42, + "che_220317_36DC", + 64, + [ + "chief:9", + "hall:dedication" + ] + ], + [ + "【42기】Mella", + 75, + 93, + 16, + "che_event_저격", + [ + 11376, + 333680, + 8130, + 53732, + 29914 + ], + 1, + "7cc8da6.jpg?=20220319", + 42, + "che_220317_36DC", + 66, + [ + "hall:betrate", + "hall:dex2", + "hall:tsrate", + "hall:ttrate" + ] + ], + [ + "【42기】방화범", + 72, + 93, + 16, + "che_event_돌격", + [ + 86998, + 928, + 8500, + 6888, + 6369 + ], + 1, + "d3f5889.jpg?=20220317", + 42, + "che_220317_36DC", + 69, + [ + "hall:tsrate" + ] + ], + [ + "【42기】퍄퍄", + 75, + 16, + 91, + "che_event_신중", + [ + 18741, + 21058, + 28142, + 329065, + 33028 + ], + 0, + "default.jpg", + 42, + "che_220317_36DC", + 70, + [ + "hall:betrate" + ] + ], + [ + "【42기】마요이", + 77, + 92, + 15, + "che_event_무쌍", + [ + 25174, + 334528, + 8838, + 36055, + 20860 + ], + 1, + "b17b98f.png?=20220313", + 42, + "che_220317_36DC", + 71, + [ + "hall:dex2", + "hall:firenum" + ] + ], + [ + "【42기】rwitch", + 75, + 15, + 94, + "che_event_집중", + [ + 15784, + 10533, + 5446, + 364976, + 29798 + ], + 1, + "54e527.png?=20201024", + 42, + "che_220317_36DC", + 72, + [ + "hall:dex4", + "hall:killnum", + "hall:tirate", + "hall:winrate" + ] + ], + [ + "【42기】천재", + 74, + 15, + 92, + "che_event_신중", + [ + 19626, + 14719, + 4089, + 338619, + 48964 + ], + 0, + "default.jpg", + 42, + "che_220317_36DC", + 73, + [ + "hall:betgold", + "hall:betwin", + "hall:betwingold", + "hall:dedication", + "hall:dex5" + ] + ], + [ + "【42기】천괴흙", + 76, + 15, + 92, + "che_event_집중", + [ + 15214, + 4902, + 2976, + 348202, + 17365 + ], + 1, + "a7b607b.png?=20220317", + 42, + "che_220317_36DC", + 75, + [ + "hall:occupied", + "hall:tirate" + ] + ], + [ + "【42기】천괴코인", + 91, + 77, + 15, + "che_event_돌격", + [ + 12092, + 182798, + 9778, + 27472, + 26098 + ], + 1, + "8f074b9.png?=20220317", + 42, + "che_220317_36DC", + 76, + [ + "hall:dex2", + "hall:tlrate" + ] + ], + [ + "【42기】사스케", + 75, + 15, + 91, + "che_event_집중", + [ + 13753, + 20413, + 19875, + 498352, + 59119 + ], + 1, + "30dee4e.jpg?=20220225", + 42, + "che_220317_36DC", + 78, + [ + "chief:12", + "hall:betgold", + "hall:betwin", + "hall:betwingold", + "hall:dedication", + "hall:dex4", + "hall:dex5", + "hall:experience", + "hall:killcrew", + "hall:killnum", + "hall:killrate", + "hall:killrate_person", + "hall:winrate" + ] + ], + [ + "【42기】SARS케", + 79, + 89, + 15, + "che_event_위압", + [ + 7319, + 15315, + 291997, + 30461, + 16926 + ], + 1, + "ad1c68a.jpg?=20220320", + 42, + "che_220317_36DC", + 80, + [ + "hall:dex3", + "hall:occupied" + ] + ], + [ + "【42기】평민킬러", + 76, + 93, + 15, + "che_event_척사", + [ + 413726, + 7004, + 20082, + 51027, + 31004 + ], + 1, + "fb23a32.jpg?=20190904", + 42, + "che_220317_36DC", + 81, + [ + "hall:dex1", + "hall:tsrate", + "hall:ttrate" + ] + ], + [ + "【42기】참고하라고", + 75, + 92, + 15, + "che_event_저격", + [ + 652011, + 14579, + 24956, + 115319, + 54094 + ], + 1, + "c9273ff.jpg?=20220317", + 42, + "che_220317_36DC", + 82, + [ + "hall:betgold", + "hall:betwingold", + "hall:dex1", + "hall:dex5", + "hall:killcrew", + "hall:killcrew_person", + "hall:tsrate", + "hall:warnum" + ] + ], + [ + "【42기】임사영", + 76, + 15, + 92, + "che_event_척사", + [ + 33626, + 20972, + 14763, + 389331, + 29795 + ], + 1, + "ced58f6.jpg?=20220317", + 42, + "che_220317_36DC", + 84, + [ + "chief:7", + "hall:betwin", + "hall:dedication", + "hall:dex4", + "hall:experience" + ] + ], + [ + "【42기】전술핵", + 75, + 93, + 15, + "che_event_돌격", + [ + 16094, + 30289, + 835794, + 77448, + 38574 + ], + 1, + "4ec7260.jpg?=20220317", + 42, + "che_220317_36DC", + 85, + [ + "chief:11", + "hall:betgold", + "hall:betwin", + "hall:betwingold", + "hall:dedication", + "hall:dex2", + "hall:dex3", + "hall:experience", + "hall:killcrew", + "hall:killcrew_person", + "hall:killnum", + "hall:killrate", + "hall:killrate_person", + "hall:occupied", + "hall:tsrate", + "hall:warnum", + "hall:winrate" + ] + ], + [ + "【42기】Hide_D", + 77, + 15, + 91, + "che_event_신산", + [ + 15048, + 7078, + 13469, + 399070, + 19807 + ], + 1, + "8cf2033.png?=20220228", + 42, + "che_220317_36DC", + 86, + [ + "hall:dex4", + "hall:killcrew_person", + "hall:warnum" + ] + ], + [ + "【42기】천괴옥", + 77, + 91, + 15, + "che_event_위압", + [ + 30921, + 15980, + 255487, + 39720, + 26337 + ], + 1, + "29a4921.png?=20220317", + 42, + "che_220317_36DC", + 87, + [ + "hall:betgold", + "hall:betwingold", + "hall:dex3" + ] + ], + [ + "【42기】천괴동", + 73, + 15, + 93, + "che_event_신중", + [ + 18761, + 4162, + 0, + 130204, + 12101 + ], + 1, + "458d076.png?=20220318", + 42, + "che_220317_36DC", + 88, + [ + "hall:tirate" + ] + ], + [ + "【42기】갓갓가가갓갓", + 77, + 15, + 91, + "che_event_집중", + [ + 14171, + 1623, + 20817, + 289335, + 24954 + ], + 1, + "6f00e57.jpg?=20220325", + 42, + "che_220317_36DC", + 89, + [ + "hall:betgold", + "hall:betwingold" + ] + ], + [ + "【42기】페르난도", + 78, + 89, + 16, + "che_event_격노", + [ + 35771, + 443642, + 15183, + 83463, + 32307 + ], + 1, + "6c07b3e.jpg?=20220305", + 42, + "che_220317_36DC", + 92, + [ + "hall:betrate", + "hall:dex2", + "hall:killcrew_person", + "hall:ttrate" + ] + ], + [ + "【42기】코로나다메요", + 87, + 78, + 16, + "che_event_무쌍", + [ + 22819, + 13145, + 275882, + 43705, + 36382 + ], + 0, + "default.jpg", + 42, + "che_220317_36DC", + 93, + [ + "hall:dex3", + "hall:tlrate" + ] + ], + [ + "【42기】불곰", + 76, + 90, + 15, + "che_event_위압", + [ + 446246, + 6247, + 11409, + 64057, + 36700 + ], + 1, + "2656d9d.png?=20220317", + 42, + "che_220317_36DC", + 94, + [ + "hall:dex1", + "hall:killrate", + "hall:killrate_person" + ] + ], + [ + "【42기】천개금", + 15, + 98, + 70, + "che_event_신산", + [ + 0, + 0, + 0, + 0, + 0 + ], + 1, + "1b322be.png?=20220317", + 42, + "che_220317_36DC", + 95, + [ + "hall:betrate", + "hall:betwingold", + "hall:experience", + "hall:firenum", + "hall:tsrate" + ] + ], + [ + "【42기】황혼중", + 87, + 15, + 80, + "che_event_신중", + [ + 13574, + 11159, + 501, + 118665, + 20397 + ], + 1, + "64a306e.png?=20220127", + 42, + "che_220317_36DC", + 96, + [ + "hall:tlrate" + ] + ], + [ + "【42기】불패", + 91, + 74, + 15, + "che_event_저격", + [ + 29356, + 437206, + 25696, + 46700, + 50468 + ], + 1, + "3efdfcc.jpg?=20220224", + 42, + "che_220317_36DC", + 97, + [ + "hall:dex2", + "hall:dex5", + "hall:tlrate" + ] + ], + [ + "【42기】4.6", + 79, + 91, + 15, + "che_event_척사", + [ + 650110, + 19401, + 69113, + 43724, + 42624 + ], + 0, + "default.jpg", + 42, + "che_220317_36DC", + 98, + [ + "hall:betgold", + "hall:betwin", + "hall:betwingold", + "hall:dex1", + "hall:experience", + "hall:killcrew", + "hall:killcrew_person", + "hall:killnum", + "hall:killrate", + "hall:killrate_person", + "hall:occupied", + "hall:warnum", + "hall:winrate" + ] + ], + [ + "【42기】네시", + 84, + 82, + 15, + "che_event_견고", + [ + 245812, + 856, + 11228, + 43545, + 26023 + ], + 1, + "3c436ef.png?=20220322", + 42, + "che_220317_36DC", + 99, + [ + "hall:tlrate" + ] + ], + [ + "【42기】렌고쿠 쿄주로", + 76, + 90, + 15, + "che_event_무쌍", + [ + 361108, + 9329, + 25203, + 26853, + 33515 + ], + 1, + "40874e3.jpg?=20220304", + 42, + "che_220317_36DC", + 100, + [ + "hall:dedication", + "hall:dex1", + "hall:killrate", + "hall:killrate_person", + "hall:occupied" + ] + ], + [ + "【42기】초코맛국수", + 77, + 15, + 89, + "che_event_신중", + [ + 21121, + 10114, + 17979, + 374347, + 55916 + ], + 1, + "4bcd3f5.jpg?=20200904", + 42, + "che_220317_36DC", + 101, + [ + "hall:dex4", + "hall:dex5" + ] + ], + [ + "【42기】빛", + 77, + 90, + 15, + "che_event_견고", + [ + 33510, + 22231, + 303826, + 55675, + 75064 + ], + 1, + "cd7ab74.png?=20220323", + 42, + "che_220317_36DC", + 102, + [ + "hall:betgold", + "hall:betwingold", + "hall:dex3", + "hall:dex5", + "hall:firenum", + "hall:warnum" + ] + ], + [ + "【42기】외심장", + 73, + 18, + 93, + "che_event_집중", + [ + 24057, + 11976, + 4348, + 413702, + 39431 + ], + 1, + "36110cd.jpg?=20180826", + 42, + "che_220317_36DC", + 103, + [ + "hall:dex4", + "hall:killrate", + "hall:killrate_person", + "hall:winrate" + ] + ], + [ + "【42기】돈까스에치즈빼라", + 75, + 15, + 94, + "che_event_집중", + [ + 10119, + 16548, + 21371, + 457714, + 53430 + ], + 0, + "default.jpg", + 42, + "che_220317_36DC", + 104, + [ + "hall:dex4", + "hall:dex5", + "hall:killnum", + "hall:tirate", + "hall:ttrate", + "hall:winrate" + ] + ], + [ + "【42기】정승필18센치", + 15, + 75, + 91, + "che_event_집중", + [ + 0, + 0, + 0, + 0, + 0 + ], + 1, + "d5e518d.png?=20220317", + 42, + "che_220317_36DC", + 109, + [ + "hall:betrate" + ] + ], + [ + "【42기】네시분신", + 74, + 15, + 93, + "che_event_신산", + [ + 17165, + 1508, + 6145, + 210596, + 6246 + ], + 1, + "d0b15f1.png?=20220331", + 42, + "che_220317_36DC", + 110, + [ + "hall:tirate" + ] + ], + [ + "【42기】중달", + 96, + 72, + 15, + "che_event_견고", + [ + 378922, + 20180, + 32054, + 52630, + 60774 + ], + 0, + "default.jpg", + 42, + "che_220317_36DC", + 112, + [ + "hall:betgold", + "hall:betrate", + "hall:betwin", + "hall:betwingold", + "hall:dedication", + "hall:dex1", + "hall:dex5", + "hall:experience", + "hall:tlrate" + ] + ], + [ + "【42기】상임위원", + 76, + 89, + 17, + "che_event_기병", + [ + 2942, + 5944, + 172269, + 26500, + 25260 + ], + 0, + "default.jpg", + 42, + "che_220317_36DC", + 113, + [ + "hall:betrate" + ] + ], + [ + "【42기】tqtt", + 72, + 15, + 94, + "che_event_신산", + [ + 15063, + 2660, + 10959, + 126403, + 22296 + ], + 0, + "default.jpg", + 42, + "che_220317_36DC", + 114, + [ + "hall:tirate" + ] + ], + [ + "【42기】제갈여포", + 15, + 76, + 92, + "che_event_필살", + [ + 528, + 0, + 250, + 0, + 0 + ], + 1, + "e8e8adc.jpg?=20180419", + 42, + "che_220317_36DC", + 116, + [ + "hall:ttrate" + ] + ], + [ + "【42기】로아의노예", + 15, + 80, + 86, + "che_event_신산", + [ + 0, + 0, + 0, + 0, + 0 + ], + 0, + "default.jpg", + 42, + "che_220317_36DC", + 142, + [ + "chief:6", + "hall:dedication", + "hall:firenum" + ] + ], + [ + "【42기】모리쿠보노노", + 74, + 15, + 92, + "che_event_집중", + [ + 17841, + 10129, + 16103, + 274248, + 20508 + ], + 1, + "fa4755d.jpg?=20220317", + 42, + "che_220317_36DC", + 145, + [ + "hall:firenum", + "hall:tirate", + "hall:ttrate", + "hall:winrate" + ] + ], + [ + "【42기】후랴", + 77, + 15, + 89, + "che_event_환술", + [ + 18534, + 8613, + 30530, + 194615, + 19334 + ], + 0, + "default.jpg", + 42, + "che_220317_36DC", + 267, + [ + "hall:betrate" + ] + ], + [ + "【42기】멜덩이", + 16, + 74, + 90, + "che_event_집중", + [ + 0, + 0, + 0, + 0, + 0 + ], + 0, + "default.jpg", + 42, + "che_220317_36DC", + 359, + [ + "hall:tirate" + ] + ], + [ + "【42기】민초치카", + 16, + 92, + 72, + "che_event_견고", + [ + 0, + 0, + 0, + 0, + 0 + ], + 0, + "default.jpg", + 42, + "che_220317_36DC", + 364, + [ + "hall:firenum" + ] + ], + [ + "【42기】숨쉴래", + 71, + 15, + 95, + "che_event_척사", + [ + 0, + 0, + 0, + 0, + 0 + ], + 1, + "9a13729.webp?=20211104", + 42, + "che_220317_36DC", + 367, + [ + "hall:ttrate" + ] + ], + [ + "【42기】멜랑멜랑", + 15, + 73, + 90, + "che_event_신중", + [ + 0, + 0, + 0, + 0, + 0 + ], + 0, + "default.jpg", + 42, + "che_220317_36DC", + 475, + [ + "hall:firenum" + ] + ], + [ + "【42기】Q1", + 83, + 77, + 15, + "che_event_견고", + [ + 2770, + 49976, + 788, + 4824, + 0 + ], + 0, + "default.jpg", + 42, + "che_220317_36DC", + 508, + [ + "hall:dex2" + ] + ], + [ + "【43기】구동매", + 78, + 94, + 15, + "che_event_위압", + [ + 79750, + 758095, + 42576, + 74745, + 17667 + ], + 1, + "b485136.jpg?=20220424", + 43, + "che_220414_IXks", + 7, + [ + "hall:betrate", + "hall:dex2", + "hall:killcrew", + "hall:killcrew_person", + "hall:killnum", + "hall:killrate_person", + "hall:tsrate", + "hall:warnum", + "hall:winrate" + ] + ], + [ + "【43기】징버거", + 76, + 91, + 15, + "che_event_무쌍", + [ + 27208, + 12076, + 330747, + 36355, + 7372 + ], + 1, + "e0daaa2.png?=20220417", + 43, + "che_220414_IXks", + 10, + [ + "hall:dex3", + "hall:ttrate" + ] + ], + [ + "【43기】히나", + 76, + 16, + 94, + "che_event_집중", + [ + 34495, + 31680, + 22013, + 511761, + 27662 + ], + 1, + "85dd2df.jpg?=20220413", + 43, + "che_220414_IXks", + 11, + [ + "hall:betgold", + "hall:betwingold", + "hall:dex4" + ] + ], + [ + "【43기】굴먹는고양이", + 87, + 84, + 15, + "che_event_돌격", + [ + 506354, + 38798, + 11986, + 67001, + 56406 + ], + 0, + "default.jpg", + 43, + "che_220414_IXks", + 14, + [ + "hall:dex1", + "hall:dex5" + ] + ], + [ + "【43기】카리야개팬다", + 78, + 95, + 15, + "che_event_견고", + [ + 54901, + 647590, + 12879, + 89551, + 17321 + ], + 0, + "default.jpg", + 43, + "che_220414_IXks", + 19, + [ + "hall:betgold", + "hall:betwingold", + "hall:dex2", + "hall:killcrew", + "hall:killcrew_person", + "hall:killnum", + "hall:killrate", + "hall:killrate_person", + "hall:tsrate", + "hall:warnum", + "hall:winrate" + ] + ], + [ + "【43기】악질사랑스런케리건", + 77, + 91, + 15, + "che_event_견고", + [ + 372808, + 47438, + 29941, + 61259, + 24145 + ], + 1, + "abe6c2c.jpg?=20220507", + 43, + "che_220414_IXks", + 26, + [ + "hall:dedication", + "hall:dex1" + ] + ], + [ + "【43기】K9자주포", + 101, + 15, + 70, + "che_event_척사", + [ + 21015, + 40381, + 58498, + 113666, + 628533 + ], + 0, + "default.jpg", + 43, + "che_220414_IXks", + 27, + [ + "hall:betgold", + "hall:dex5", + "hall:experience", + "hall:killrate", + "hall:occupied", + "hall:tlrate" + ] + ], + [ + "【43기】고세구", + 76, + 15, + 93, + "che_event_집중", + [ + 39782, + 12622, + 20411, + 501066, + 30927 + ], + 1, + "3f05e2a.png?=20220408", + 43, + "che_220414_IXks", + 30, + [ + "hall:dex4" + ] + ], + [ + "【43기】Hide_D", + 79, + 15, + 92, + "che_event_귀병", + [ + 11275, + 33545, + 27500, + 472781, + 24903 + ], + 1, + "8cf2033.png?=20220228", + 43, + "che_220414_IXks", + 38, + [ + "chief:7", + "hall:dex4", + "hall:ttrate" + ] + ], + [ + "【43기】놀러와~~", + 78, + 92, + 15, + "che_event_척사", + [ + 29786, + 38626, + 348246, + 35922, + 16699 + ], + 0, + "default.jpg", + 43, + "che_220414_IXks", + 43, + [ + "hall:betwingold", + "hall:dex3" + ] + ], + [ + "【43기】이드", + 75, + 15, + 96, + "che_event_집중", + [ + 17281, + 17019, + 11619, + 377538, + 36414 + ], + 1, + "5898830.jpg?=20210831", + 43, + "che_220414_IXks", + 44, + [ + "hall:dedication", + "hall:tirate", + "hall:ttrate" + ] + ], + [ + "【43기】메스가키", + 96, + 78, + 15, + "che_event_무쌍", + [ + 63724, + 664216, + 59507, + 65032, + 31745 + ], + 1, + "516b2b5.jpg?=20220414", + 43, + "che_220414_IXks", + 45, + [ + "chief:8", + "hall:betwin", + "hall:dex2", + "hall:killcrew", + "hall:killcrew_person", + "hall:killnum", + "hall:tlrate", + "hall:ttrate", + "hall:warnum", + "hall:winrate" + ] + ], + [ + "【43기】OpenSea", + 79, + 15, + 92, + "che_event_반계", + [ + 36090, + 26737, + 15661, + 261128, + 10398 + ], + 1, + "4ac3968.png?=20220414", + 43, + "che_220414_IXks", + 47, + [ + "hall:occupied" + ] + ], + [ + "【43기】페코린느", + 79, + 93, + 15, + "che_event_필살", + [ + 37458, + 33252, + 295662, + 51538, + 24886 + ], + 1, + "93ee802.png?=20190621", + 43, + "che_220414_IXks", + 52, + [ + "hall:dedication", + "hall:dex3", + "hall:occupied", + "hall:tsrate" + ] + ], + [ + "【43기】라이언", + 100, + 70, + 15, + "che_event_공성", + [ + 13187, + 9050, + 12702, + 0, + 330986 + ], + 1, + "3a86f19.gif?=20220419", + 43, + "che_220414_IXks", + 54, + [ + "hall:betrate", + "hall:dex5", + "hall:killrate", + "hall:occupied", + "hall:tlrate", + "hall:winrate" + ] + ], + [ + "【43기】마크", + 92, + 79, + 15, + "che_event_위압", + [ + 369905, + 28223, + 38723, + 51458, + 26231 + ], + 0, + "default.jpg", + 43, + "che_220414_IXks", + 62, + [ + "hall:dedication", + "hall:dex1", + "hall:tlrate" + ] + ], + [ + "【43기】SARS", + 89, + 83, + 15, + "che_event_무쌍", + [ + 655562, + 164448, + 72989, + 49446, + 33557 + ], + 1, + "b84944.jpg?=20180829", + 43, + "che_220414_IXks", + 63, + [ + "chief:12", + "hall:betwin", + "hall:dex1", + "hall:dex2", + "hall:killcrew", + "hall:killcrew_person", + "hall:killnum", + "hall:killrate", + "hall:killrate_person", + "hall:tlrate", + "hall:warnum" + ] + ], + [ + "【43기】황혼중", + 78, + 17, + 91, + "che_event_신산", + [ + 12740, + 9705, + 3430, + 240495, + 17347 + ], + 1, + "64a306e.png?=20220127", + 43, + "che_220414_IXks", + 64, + [ + "hall:ttrate" + ] + ], + [ + "【43기】SARS케앵벌스케", + 89, + 15, + 83, + "che_event_신중", + [ + 26102, + 30692, + 25131, + 396339, + 13096 + ], + 1, + "30b3a05.jpg?=20220408", + 43, + "che_220414_IXks", + 66, + [ + "hall:betrate", + "hall:tlrate" + ] + ], + [ + "【43기】독피자", + 79, + 93, + 15, + "che_event_무쌍", + [ + 679279, + 18770, + 21729, + 100387, + 13247 + ], + 0, + "default.jpg", + 43, + "che_220414_IXks", + 67, + [ + "hall:dex1", + "hall:killcrew", + "hall:killcrew_person", + "hall:killnum", + "hall:killrate_person", + "hall:tsrate", + "hall:warnum" + ] + ], + [ + "【43기】예쁜애", + 76, + 15, + 95, + "che_event_척사", + [ + 28881, + 17214, + 12983, + 633864, + 20913 + ], + 1, + "7b757ae.png?=20220414", + 43, + "che_220414_IXks", + 69, + [ + "chief:11", + "hall:betrate", + "hall:dex4", + "hall:experience", + "hall:killnum", + "hall:occupied", + "hall:winrate" + ] + ], + [ + "【43기】양아치파이리", + 77, + 15, + 95, + "che_event_반계", + [ + 16019, + 23692, + 14236, + 399971, + 27634 + ], + 1, + "954fadb.jpg?=20220414", + 43, + "che_220414_IXks", + 71, + [ + "chief:5", + "hall:experience" + ] + ], + [ + "【43기】카리야 깡!", + 76, + 95, + 15, + "che_event_돌격", + [ + 35425, + 400645, + 16194, + 58494, + 19815 + ], + 1, + "95c66e6.gif?=20220415", + 43, + "che_220414_IXks", + 72, + [ + "hall:dex2", + "hall:tsrate", + "hall:ttrate", + "hall:winrate" + ] + ], + [ + "【43기】라이마", + 75, + 15, + 97, + "che_event_집중", + [ + 27593, + 22496, + 15604, + 518637, + 51940 + ], + 1, + "290f78e.jpg?=20220414", + 43, + "che_220414_IXks", + 74, + [ + "hall:dedication", + "hall:dex4", + "hall:dex5", + "hall:tirate" + ] + ], + [ + "【43기】라디오", + 88, + 81, + 16, + "che_event_저격", + [ + 14830, + 3047, + 562918, + 38103, + 24105 + ], + 0, + "default.jpg", + 43, + "che_220414_IXks", + 76, + [ + "hall:dex3", + "hall:tlrate" + ] + ], + [ + "【43기】불패", + 76, + 15, + 94, + "che_event_집중", + [ + 21951, + 12374, + 18746, + 359026, + 43326 + ], + 1, + "3efdfcc.jpg?=20220224", + 43, + "che_220414_IXks", + 77, + [ + "hall:betgold", + "hall:betwingold", + "hall:tirate" + ] + ], + [ + "【43기】제갈여포", + 15, + 73, + 95, + "che_event_척사", + [ + 0, + 0, + 0, + 0, + 3095 + ], + 1, + "e8e8adc.jpg?=20180419", + 43, + "che_220414_IXks", + 79, + [ + "hall:firenum", + "hall:tirate" + ] + ], + [ + "【43기】양아치파이", + 77, + 17, + 93, + "che_event_신중", + [ + 5628, + 21575, + 2943, + 459461, + 54341 + ], + 1, + "f76fa74.jpg?=20190629", + 43, + "che_220414_IXks", + 80, + [ + "hall:dex5" + ] + ], + [ + "【43기】네시", + 77, + 92, + 15, + "che_event_무쌍", + [ + 55699, + 62788, + 465642, + 62599, + 23652 + ], + 0, + "default.jpg", + 43, + "che_220414_IXks", + 81, + [ + "hall:dex3", + "hall:tsrate" + ] + ], + [ + "【43기】갈근", + 94, + 76, + 16, + "che_event_위압", + [ + 66387, + 460614, + 7811, + 55495, + 39200 + ], + 0, + "default.jpg", + 43, + "che_220414_IXks", + 82, + [ + "hall:dex2", + "hall:tlrate" + ] + ], + [ + "【43기】김나영", + 79, + 92, + 16, + "che_event_의술", + [ + 895118, + 24392, + 49937, + 85819, + 38378 + ], + 1, + "171a93a.jpg?=20220413", + 43, + "che_220414_IXks", + 84, + [ + "hall:betgold", + "hall:betwin", + "hall:betwingold", + "hall:dex1", + "hall:firenum", + "hall:killcrew", + "hall:killcrew_person", + "hall:killnum", + "hall:occupied", + "hall:warnum" + ] + ], + [ + "【43기】복숭아좋아", + 76, + 16, + 93, + "che_event_신중", + [ + 23175, + 15365, + 31707, + 427854, + 23616 + ], + 1, + "57e4a39.jpg?=20190620", + 43, + "che_220414_IXks", + 85, + [ + "hall:ttrate" + ] + ], + [ + "【43기】고애신", + 76, + 15, + 95, + "che_event_집중", + [ + 33612, + 30989, + 28079, + 577318, + 10112 + ], + 1, + "b73b56e.jpg?=20220407", + 43, + "che_220414_IXks", + 87, + [ + "hall:dex4" + ] + ], + [ + "【43기】임사영", + 77, + 16, + 93, + "che_event_척사", + [ + 23364, + 11629, + 14692, + 427070, + 31832 + ], + 1, + "ced58f6.jpg?=20220317", + 43, + "che_220414_IXks", + 91, + [ + "chief:9", + "hall:betrate", + "hall:betwin", + "hall:dedication", + "hall:experience" + ] + ], + [ + "【43기】마요이", + 74, + 15, + 97, + "che_event_집중", + [ + 33268, + 25528, + 13642, + 468262, + 48414 + ], + 1, + "b17b98f.png?=20220313", + 43, + "che_220414_IXks", + 92, + [ + "hall:dex5", + "hall:killrate", + "hall:occupied", + "hall:tirate", + "hall:winrate" + ] + ], + [ + "【43기】중달", + 76, + 94, + 15, + "che_event_척사", + [ + 597915, + 13863, + 22779, + 54390, + 24427 + ], + 0, + "default.jpg", + 43, + "che_220414_IXks", + 93, + [ + "hall:betgold", + "hall:betwin", + "hall:betwingold", + "hall:dex1", + "hall:killrate", + "hall:killrate_person" + ] + ], + [ + "【43기】천괴금", + 77, + 15, + 95, + "che_event_척사", + [ + 32929, + 47455, + 22617, + 669346, + 27825 + ], + 1, + "c15e0b0.png?=20220318", + 43, + "che_220414_IXks", + 94, + [ + "hall:dex4", + "hall:experience", + "hall:killcrew", + "hall:killcrew_person", + "hall:warnum" + ] + ], + [ + "【43기】달", + 77, + 15, + 96, + "che_event_집중", + [ + 22998, + 32280, + 14300, + 590851, + 26960 + ], + 0, + "default.jpg", + 43, + "che_220414_IXks", + 95, + [ + "hall:betrate", + "hall:dex4", + "hall:experience", + "hall:occupied", + "hall:tirate" + ] + ], + [ + "【43기】제롬파월", + 79, + 90, + 16, + "che_event_저격", + [ + 572475, + 20785, + 26053, + 39810, + 23540 + ], + 0, + "default.jpg", + 43, + "che_220414_IXks", + 96, + [ + "hall:dex1", + "hall:killrate", + "hall:killrate_person" + ] + ], + [ + "【43기】트윈터보", + 78, + 95, + 15, + "che_event_필살", + [ + 42997, + 39441, + 618546, + 67653, + 53289 + ], + 1, + "6db8bf6.jpg?=20220414", + 43, + "che_220414_IXks", + 97, + [ + "chief:6", + "hall:dex3", + "hall:dex5", + "hall:tsrate" + ] + ], + [ + "【43기】5.5", + 77, + 94, + 15, + "che_event_의술", + [ + 283230, + 158826, + 32497, + 48701, + 67828 + ], + 0, + "default.jpg", + 43, + "che_220414_IXks", + 99, + [ + "chief:10", + "hall:betwin", + "hall:dedication", + "hall:dex2", + "hall:dex5", + "hall:experience", + "hall:occupied" + ] + ], + [ + "【43기】카이스트", + 75, + 15, + 95, + "che_event_척사", + [ + 20145, + 17074, + 20163, + 423940, + 29287 + ], + 1, + "9361ef8.jpg?=20180907", + 43, + "che_220414_IXks", + 100, + [ + "hall:betwin", + "hall:killrate", + "hall:killrate_person" + ] + ], + [ + "【43기】사스케", + 109, + 15, + 71, + "che_event_돌격", + [ + 121422, + 116746, + 61621, + 164963, + 2120864 + ], + 1, + "30dee4e.jpg?=20220225", + 43, + "che_220414_IXks", + 101, + [ + "hall:betgold", + "hall:betwin", + "hall:betwingold", + "hall:dex5", + "hall:experience", + "hall:killcrew", + "hall:killcrew_person", + "hall:killnum", + "hall:killrate", + "hall:killrate_person", + "hall:occupied", + "hall:tlrate", + "hall:warnum", + "hall:winrate" + ] + ], + [ + "【43기】카류", + 75, + 15, + 101, + "che_event_돌격", + [ + 44264, + 41338, + 68146, + 1326882, + 44633 + ], + 1, + "ae614e3.jpg?=20220410", + 43, + "che_220414_IXks", + 102, + [ + "hall:betgold", + "hall:betwin", + "hall:betwingold", + "hall:dex4", + "hall:experience", + "hall:killcrew", + "hall:killcrew_person", + "hall:killnum", + "hall:killrate", + "hall:killrate_person", + "hall:tirate", + "hall:warnum", + "hall:winrate" + ] + ], + [ + "【43기】외심장", + 75, + 15, + 96, + "che_event_신산", + [ + 9255, + 21208, + 13922, + 295584, + 36385 + ], + 1, + "36110cd.jpg?=20180826", + 43, + "che_220414_IXks", + 103, + [ + "hall:dedication", + "hall:tirate", + "hall:ttrate" + ] + ], + [ + "【43기】불멍", + 16, + 78, + 91, + "che_event_신산", + [ + 5833, + 0, + 0, + 2610, + 9483 + ], + 1, + "6ccaab6.gif?=20220416", + 43, + "che_220414_IXks", + 104, + [ + "hall:betwin", + "hall:firenum" + ] + ], + [ + "【43기】농부", + 79, + 93, + 17, + "che_event_위압", + [ + 32510, + 642389, + 9768, + 32239, + 33451 + ], + 1, + "a00fe87.jpg?=20220404", + 43, + "che_220414_IXks", + 105, + [ + "hall:dex2", + "hall:experience", + "hall:killcrew", + "hall:killcrew_person", + "hall:killnum", + "hall:killrate_person", + "hall:warnum" + ] + ], + [ + "【43기】바나나파이", + 79, + 91, + 15, + "che_event_돌격", + [ + 32872, + 54402, + 426150, + 118776, + 28674 + ], + 1, + "90608db.png?=20220415", + 43, + "che_220414_IXks", + 106, + [ + "hall:betgold", + "hall:betwingold", + "hall:dex3" + ] + ], + [ + "【43기】은월떡상", + 76, + 94, + 16, + "che_event_견고", + [ + 24798, + 307035, + 28493, + 25848, + 13940 + ], + 0, + "default.jpg", + 43, + "che_220414_IXks", + 107, + [ + "hall:betrate", + "hall:dex2", + "hall:tsrate" + ] + ], + [ + "【43기】근작", + 74, + 98, + 15, + "che_event_돌격", + [ + 93597, + 50047, + 348730, + 73579, + 30910 + ], + 0, + "default.jpg", + 43, + "che_220414_IXks", + 108, + [ + "hall:betgold", + "hall:betwingold", + "hall:dex3", + "hall:firenum", + "hall:tsrate" + ] + ], + [ + "【43기】우서", + 77, + 15, + 92, + "che_event_집중", + [ + 6034, + 14809, + 5798, + 287252, + 41249 + ], + 0, + "default.jpg", + 43, + "che_220414_IXks", + 111, + [ + "hall:dedication" + ] + ], + [ + "【43기】유진초이", + 76, + 92, + 17, + "che_event_위압", + [ + 24326, + 473523, + 13467, + 108295, + 19241 + ], + 1, + "ffecd35.jpg?=20220407", + 43, + "che_220414_IXks", + 112, + [ + "hall:dex2", + "hall:firenum" + ] + ], + [ + "【43기】평민킬러", + 79, + 91, + 16, + "che_event_척사", + [ + 507851, + 22181, + 35266, + 54277, + 30382 + ], + 1, + "fb23a32.jpg?=20190904", + 43, + "che_220414_IXks", + 113, + [ + "hall:dex1" + ] + ], + [ + "【43기】르세라핌", + 88, + 79, + 16, + "che_event_견고", + [ + 445818, + 16496, + 23672, + 78386, + 36291 + ], + 1, + "8e3b361.png?=20220414", + 43, + "che_220414_IXks", + 116, + [ + "hall:dex1", + "hall:tlrate" + ] + ], + [ + "【43기】딸깍", + 76, + 15, + 96, + "che_event_신중", + [ + 10850, + 11422, + 2415, + 363479, + 19350 + ], + 0, + "default.jpg", + 43, + "che_220414_IXks", + 119, + [ + "hall:tirate" + ] + ], + [ + "【43기】개미호랑이", + 79, + 15, + 92, + "che_event_반계", + [ + 30444, + 40733, + 29092, + 567147, + 48121 + ], + 1, + "48d0ff5.jpg?=20220328", + 43, + "che_220414_IXks", + 120, + [ + "hall:dex4", + "hall:dex5" + ] + ], + [ + "【43기】미스터정승필", + 15, + 77, + 94, + "che_event_집중", + [ + 0, + 0, + 0, + 0, + 0 + ], + 1, + "6ff7af5.jpg?=20220415", + 43, + "che_220414_IXks", + 186, + [ + "hall:betrate", + "hall:tirate", + "hall:ttrate" + ] + ], + [ + "【43기】페르난도", + 77, + 95, + 15, + "che_event_견고", + [ + 11340, + 21346, + 386720, + 23546, + 26445 + ], + 1, + "6c07b3e.jpg?=20220305", + 43, + "che_220414_IXks", + 192, + [ + "hall:dex3", + "hall:tsrate", + "hall:winrate" + ] + ], + [ + "【43기】류화영", + 16, + 80, + 87, + "che_event_위압", + [ + 2622, + 0, + 0, + 0, + 0 + ], + 1, + "fd6202c.jpg?=20220417", + 43, + "che_220414_IXks", + 194, + [ + "hall:firenum" + ] + ], + [ + "【43기】q1", + 81, + 88, + 15, + "che_event_견고", + [ + 249457, + 1096, + 20401, + 23293, + 46588 + ], + 0, + "default.jpg", + 43, + "che_220414_IXks", + 256, + [ + "hall:betrate" + ] + ], + [ + "【43기】오드아이즈", + 80, + 90, + 15, + "che_event_위압", + [ + 14574, + 33718, + 339406, + 58902, + 19418 + ], + 0, + "default.jpg", + 43, + "che_220414_IXks", + 331, + [ + "hall:dex3" + ] + ], + [ + "【43기】와타메이트", + 17, + 75, + 90, + "che_event_신산", + [ + 0, + 0, + 0, + 0, + 0 + ], + 1, + "6f7d1b0.jpg?=20211108", + 43, + "che_220414_IXks", + 332, + [ + "hall:ttrate" + ] + ], + [ + "【43기】Wanderer", + 15, + 81, + 87, + "che_event_신산", + [ + 0, + 0, + 0, + 0, + 0 + ], + 1, + "f6844a9.png?=20220502", + 43, + "che_220414_IXks", + 352, + [ + "hall:betrate", + "hall:dedication", + "hall:firenum" + ] + ], + [ + "【43기】봄꽃", + 15, + 86, + 82, + "che_event_의술", + [ + 0, + 0, + 0, + 0, + 0 + ], + 1, + "1390e40.jpg?=20211015", + 43, + "che_220414_IXks", + 474, + [ + "hall:firenum" + ] + ], + [ + "【43기】옴마니밭매용", + 15, + 75, + 89, + "che_event_신산", + [ + 0, + 0, + 0, + 0, + 73 + ], + 1, + "79dbce5.jpg?=20210918", + 43, + "che_220414_IXks", + 512, + [ + "hall:firenum" + ] + ], + [ + "【43기】악마가붙잡음", + 15, + 73, + 89, + "che_event_신중", + [ + 0, + 1470, + 0, + 6363, + 2970 + ], + 0, + "default.jpg", + 43, + "che_220414_IXks", + 523, + [ + "hall:firenum" + ] + ], + [ + "【44기】카이스트", + 75, + 17, + 89, + "che_event_척사", + [ + 23256, + 18688, + 19424, + 517273, + 16996 + ], + 1, + "9361ef8.jpg?=20180907", + 44, + "che_220512_jq1I", + 4, + [ + "hall:betwin", + "hall:dedication", + "hall:dex4", + "hall:killrate", + "hall:killrate_person", + "hall:occupied" + ] + ], + [ + "【44기】오리꿍", + 75, + 92, + 15, + "che_event_보병", + [ + 386098, + 2334, + 9802, + 72393, + 18567 + ], + 1, + "5bbffc8.gif?=20220512", + 44, + "che_220512_jq1I", + 14, + [ + "hall:betrate", + "hall:dex1", + "hall:firenum", + "hall:tsrate" + ] + ], + [ + "【44기】감흥", + 87, + 16, + 80, + "che_event_집중", + [ + 34663, + 17229, + 20437, + 488998, + 23103 + ], + 1, + "cd597bb3.jpg?=20220529", + 44, + "che_220512_jq1I", + 15, + [ + "hall:betwin", + "hall:dex4", + "hall:killcrew", + "hall:killcrew_person", + "hall:killnum", + "hall:occupied", + "hall:tlrate", + "hall:warnum" + ] + ], + [ + "【44기】뉴비", + 76, + 89, + 15, + "che_event_척사", + [ + 10309, + 37881, + 289669, + 28495, + 20617 + ], + 0, + "default.jpg", + 44, + "che_220512_jq1I", + 16, + [ + "hall:betgold", + "hall:betrate", + "hall:betwingold", + "hall:tsrate" + ] + ], + [ + "【44기】달스케", + 76, + 90, + 15, + "che_event_필살", + [ + 379444, + 2754, + 26811, + 76279, + 27056 + ], + 1, + "a411055.jpg?=20220512", + 44, + "che_220512_jq1I", + 18, + [ + "hall:betgold", + "hall:betwin", + "hall:betwingold", + "hall:killrate" + ] + ], + [ + "【44기】SARS", + 75, + 15, + 90, + "che_event_신중", + [ + 51037, + 25935, + 24791, + 475656, + 11965 + ], + 1, + "b84944.jpg?=20180829", + 44, + "che_220512_jq1I", + 23, + [ + "hall:betgold", + "hall:betwin", + "hall:betwingold", + "hall:dex4", + "hall:killcrew_person" + ] + ], + [ + "【44기】공명", + 88, + 16, + 78, + "che_event_집중", + [ + 5275, + 21305, + 27269, + 292391, + 24898 + ], + 1, + "82d6b6.jpg?=20220510", + 44, + "che_220512_jq1I", + 30, + [ + "hall:betwingold", + "hall:tlrate" + ] + ], + [ + "【44기】나루토", + 75, + 89, + 16, + "che_event_척사", + [ + 415610, + 30631, + 42096, + 91880, + 17238 + ], + 1, + "6ff49f.png?=20220512", + 44, + "che_220512_jq1I", + 31, + [ + "hall:betgold", + "hall:betwingold", + "hall:dex1" + ] + ], + [ + "【44기】리안", + 74, + 91, + 15, + "che_event_견고", + [ + 19265, + 162861, + 50219, + 57114, + 6254 + ], + 1, + "db0cb7a.jpg?=20190719", + 44, + "che_220512_jq1I", + 36, + [ + "hall:tsrate" + ] + ], + [ + "【44기】CodeMico", + 78, + 89, + 15, + "che_event_격노", + [ + 25232, + 461552, + 15095, + 40440, + 35047 + ], + 1, + "8d0fb32c.webp?=20220528", + 44, + "che_220512_jq1I", + 37, + [ + "hall:dex2", + "hall:dex5", + "hall:killnum", + "hall:killrate_person", + "hall:tsrate", + "hall:winrate" + ] + ], + [ + "【44기】에이펙스레전드", + 76, + 92, + 15, + "che_event_위압", + [ + 31415, + 582146, + 12983, + 46951, + 25537 + ], + 0, + "default.jpg", + 44, + "che_220512_jq1I", + 38, + [ + "hall:dex2", + "hall:experience", + "hall:killcrew", + "hall:killcrew_person", + "hall:killnum", + "hall:killrate", + "hall:killrate_person", + "hall:occupied", + "hall:tsrate", + "hall:winrate" + ] + ], + [ + "【44기】소피 노이엔뮐러", + 74, + 15, + 93, + "che_event_의술", + [ + 18929, + 41229, + 32375, + 290423, + 26418 + ], + 1, + "8fd5c9d.jpg?=20220512", + 44, + "che_220512_jq1I", + 40, + [ + "hall:dedication", + "hall:tirate", + "hall:ttrate" + ] + ], + [ + "【44기】정승필실종사건", + 87, + 15, + 79, + "che_event_의술", + [ + 18647, + 26762, + 18005, + 444203, + 30018 + ], + 1, + "6deb642.jpg?=20220512", + 44, + "che_220512_jq1I", + 41, + [ + "hall:dex4", + "hall:killcrew_person", + "hall:tlrate", + "hall:warnum" + ] + ], + [ + "【44기】미스티", + 75, + 17, + 90, + "che_event_신중", + [ + 57122, + 18445, + 16009, + 306670, + 17812 + ], + 1, + "1aadcba.png?=20180908", + 44, + "che_220512_jq1I", + 45, + [ + "hall:tirate", + "hall:ttrate" + ] + ], + [ + "【44기】찐승필", + 93, + 75, + 15, + "che_event_견고", + [ + 34898, + 23167, + 412612, + 68553, + 14041 + ], + 1, + "6ff7af5.jpg?=20220415", + 44, + "che_220512_jq1I", + 46, + [ + "hall:dex3", + "hall:tlrate", + "hall:warnum" + ] + ], + [ + "【44기】아누비스", + 75, + 92, + 15, + "che_event_견고", + [ + 430217, + 9159, + 17549, + 64724, + 25811 + ], + 1, + "fe72709.jpg?=20220511", + 44, + "che_220512_jq1I", + 50, + [ + "hall:dex1", + "hall:occupied" + ] + ], + [ + "【44기】슬라임이당", + 89, + 78, + 15, + "che_event_견고", + [ + 5643, + 15309, + 258240, + 69507, + 8682 + ], + 1, + "d7af202.jpg?=20220107", + 44, + "che_220512_jq1I", + 52, + [ + "hall:tlrate", + "hall:ttrate" + ] + ], + [ + "【44기】사스캣", + 76, + 15, + 93, + "che_event_필살", + [ + 31607, + 13001, + 32727, + 648283, + 24237 + ], + 1, + "7ea4128.jpg?=20220512", + 44, + "che_220512_jq1I", + 61, + [ + "hall:betwin", + "hall:dex4", + "hall:killcrew", + "hall:killcrew_person", + "hall:killnum", + "hall:killrate", + "hall:killrate_person", + "hall:warnum", + "hall:winrate" + ] + ], + [ + "【44기】Hide_D", + 82, + 15, + 85, + "che_event_환술", + [ + 28795, + 29778, + 11355, + 512838, + 27728 + ], + 1, + "8cf2033.png?=20220228", + 44, + "che_220512_jq1I", + 72, + [ + "hall:dex4", + "hall:killcrew", + "hall:warnum" + ] + ], + [ + "【44기】4水Ke", + 73, + 93, + 15, + "che_event_신산", + [ + 61213, + 370279, + 9488, + 41408, + 12045 + ], + 1, + "d574603.jpg?=20220512", + 44, + "che_220512_jq1I", + 74, + [ + "hall:dex2", + "hall:firenum", + "hall:winrate" + ] + ], + [ + "【44기】?바나나?", + 77, + 90, + 15, + "che_event_무쌍", + [ + 476380, + 21081, + 24227, + 51013, + 26017 + ], + 1, + "72596d91.gif?=20220520", + 44, + "che_220512_jq1I", + 77, + [ + "chief:8", + "hall:betgold", + "hall:betwingold", + "hall:dex1", + "hall:killrate", + "hall:killrate_person", + "hall:occupied" + ] + ], + [ + "【44기】정승필", + 79, + 87, + 16, + "che_event_견고", + [ + 30558, + 812994, + 27455, + 93309, + 28098 + ], + 1, + "998ad08.jpg?=20220511", + 44, + "che_220512_jq1I", + 78, + [ + "hall:dex2", + "hall:killcrew", + "hall:killcrew_person", + "hall:killnum", + "hall:killrate_person", + "hall:warnum" + ] + ], + [ + "【44기】ㅋㅋㄹ", + 74, + 15, + 92, + "che_event_신중", + [ + 28814, + 14124, + 40620, + 270271, + 20439 + ], + 1, + "2251e0.jpg?=20220509", + 44, + "che_220512_jq1I", + 80, + [ + "hall:tirate" + ] + ], + [ + "【44기】콘", + 76, + 15, + 90, + "che_event_척사", + [ + 22483, + 9002, + 24585, + 413667, + 32662 + ], + 1, + "7ca38d3.jpg?=20220324", + 44, + "che_220512_jq1I", + 82, + [ + "hall:dex5", + "hall:experience" + ] + ], + [ + "【44기】날먹유카", + 80, + 87, + 16, + "che_event_필살", + [ + 555273, + 9157, + 34230, + 42811, + 21470 + ], + 0, + "default.jpg", + 44, + "che_220512_jq1I", + 83, + [ + "hall:dex1", + "hall:killcrew", + "hall:killcrew_person", + "hall:killnum", + "hall:ttrate" + ] + ], + [ + "【44기】이드", + 95, + 74, + 15, + "che_event_보병", + [ + 540848, + 6125, + 14620, + 42589, + 8634 + ], + 1, + "5898830.jpg?=20210831", + 44, + "che_220512_jq1I", + 86, + [ + "hall:dex1", + "hall:killcrew", + "hall:killcrew_person", + "hall:tlrate", + "hall:ttrate", + "hall:warnum" + ] + ], + [ + "【44기】6.5", + 87, + 78, + 15, + "che_event_견고", + [ + 125740, + 239280, + 40781, + 19370, + 13459 + ], + 0, + "default.jpg", + 44, + "che_220512_jq1I", + 87, + [ + "hall:dex2", + "hall:tlrate" + ] + ], + [ + "【44기】박일아", + 78, + 15, + 89, + "che_event_집중", + [ + 24606, + 11712, + 7883, + 229132, + 27296 + ], + 1, + "8608979.gif?=20191024", + 44, + "che_220512_jq1I", + 88, + [ + "hall:betrate" + ] + ], + [ + "【44기】망냥냥", + 75, + 90, + 15, + "che_event_척사", + [ + 53426, + 367070, + 19009, + 84269, + 31499 + ], + 1, + "6584c19d.jpg?=20220525", + 44, + "che_220512_jq1I", + 90, + [ + "hall:dex2", + "hall:ttrate" + ] + ], + [ + "【44기】야스케", + 74, + 16, + 89, + "che_event_환술", + [ + 7407, + 59058, + 22986, + 365981, + 30848 + ], + 1, + "85e0ded9.jpg?=20220528", + 44, + "che_220512_jq1I", + 92, + [ + "hall:betgold", + "hall:betrate", + "hall:betwin", + "hall:betwingold", + "hall:dedication" + ] + ], + [ + "【44기】유스케", + 76, + 15, + 90, + "che_event_집중", + [ + 37652, + 40838, + 12735, + 360279, + 34196 + ], + 1, + "558bdd.jpg?=20220512", + 44, + "che_220512_jq1I", + 93, + [ + "hall:betwin", + "hall:dex5", + "hall:occupied" + ] + ], + [ + "【44기】몰⸮루", + 74, + 15, + 93, + "che_event_집중", + [ + 40977, + 17252, + 20871, + 530771, + 28416 + ], + 1, + "b59e3c8b.gif?=20220520", + 44, + "che_220512_jq1I", + 96, + [ + "hall:betgold", + "hall:betwingold", + "hall:dex4", + "hall:tirate" + ] + ], + [ + "【44기】사스가키", + 74, + 93, + 15, + "che_event_격노", + [ + 36459, + 49676, + 436498, + 36296, + 26652 + ], + 1, + "ba69325.png?=20220512", + 44, + "che_220512_jq1I", + 97, + [ + "hall:dex3", + "hall:occupied", + "hall:tsrate" + ] + ], + [ + "【44기】한시", + 75, + 15, + 92, + "che_event_신중", + [ + 61567, + 18567, + 25126, + 355792, + 15360 + ], + 0, + "default.jpg", + 44, + "che_220512_jq1I", + 99, + [ + "hall:tirate" + ] + ], + [ + "【44기】오디오", + 76, + 90, + 16, + "che_event_견고", + [ + 414456, + 19574, + 51692, + 28916, + 14907 + ], + 0, + "default.jpg", + 44, + "che_220512_jq1I", + 100, + [ + "hall:betgold", + "hall:betrate", + "hall:betwingold", + "hall:dex1" + ] + ], + [ + "【44기】사스케", + 76, + 15, + 91, + "che_event_필살", + [ + 72561, + 30042, + 21413, + 441929, + 19582 + ], + 1, + "c4005f8.jpg?=20220512", + 44, + "che_220512_jq1I", + 101, + [ + "hall:dex4", + "hall:killrate", + "hall:killrate_person", + "hall:tirate" + ] + ], + [ + "【44기】퇴사까지4달", + 78, + 15, + 89, + "che_event_저격", + [ + 17121, + 9595, + 11247, + 329796, + 25379 + ], + 0, + "default.jpg", + 44, + "che_220512_jq1I", + 102, + [ + "hall:firenum" + ] + ], + [ + "【44기】평민킬러", + 77, + 88, + 15, + "che_event_견고", + [ + 515217, + 13976, + 43063, + 64370, + 27763 + ], + 1, + "fb23a32.jpg?=20190904", + 44, + "che_220512_jq1I", + 103, + [ + "chief:12", + "hall:dedication", + "hall:dex1", + "hall:experience", + "hall:killrate", + "hall:killrate_person" + ] + ], + [ + "【44기】덕구", + 78, + 89, + 15, + "che_event_필살", + [ + 686869, + 37724, + 51723, + 33751, + 29737 + ], + 1, + "d2f17b7.png?=20220512", + 44, + "che_220512_jq1I", + 104, + [ + "hall:betrate", + "hall:dex1", + "hall:experience", + "hall:firenum", + "hall:killcrew", + "hall:killcrew_person", + "hall:killnum", + "hall:killrate", + "hall:killrate_person", + "hall:occupied", + "hall:warnum", + "hall:winrate" + ] + ], + [ + "【44기】몰?루", + 75, + 90, + 16, + "che_event_무쌍", + [ + 130162, + 40564, + 319794, + 44839, + 15487 + ], + 1, + "fbe325ac.gif?=20220520", + 44, + "che_220512_jq1I", + 105, + [ + "hall:betwin", + "hall:dex3" + ] + ], + [ + "【44기】왓슨 아멜리아", + 75, + 91, + 16, + "che_event_필살", + [ + 11321, + 61891, + 505364, + 45510, + 31012 + ], + 1, + "24e2c563.gif?=20220522", + 44, + "che_220512_jq1I", + 106, + [ + "hall:dedication", + "hall:dex3", + "hall:experience", + "hall:killrate", + "hall:killrate_person", + "hall:tsrate", + "hall:winrate" + ] + ], + [ + "【44기】마스케", + 76, + 89, + 15, + "che_event_위압", + [ + 91928, + 261561, + 17474, + 22846, + 14293 + ], + 1, + "bb33c0e.png?=20220512", + 44, + "che_220512_jq1I", + 108, + [ + "hall:dex2" + ] + ], + [ + "【44기】돌아온너구리", + 77, + 88, + 15, + "che_event_척사", + [ + 0, + 0, + 0, + 0, + 0 + ], + 1, + "79dbce5.jpg?=20210918", + 44, + "che_220512_jq1I", + 109, + [ + "hall:ttrate" + ] + ], + [ + "【44기】닥터승필레인지", + 77, + 16, + 89, + "che_event_척사", + [ + 16750, + 6601, + 24869, + 368674, + 31257 + ], + 1, + "e130b03.jpg?=20220512", + 44, + "che_220512_jq1I", + 110, + [ + "hall:firenum" + ] + ], + [ + "【44기】갈근", + 93, + 75, + 15, + "che_event_의술", + [ + 497716, + 3403, + 15678, + 76760, + 29316 + ], + 0, + "default.jpg", + 44, + "che_220512_jq1I", + 111, + [ + "hall:betrate", + "hall:dex1", + "hall:experience", + "hall:killcrew", + "hall:occupied", + "hall:tlrate", + "hall:warnum" + ] + ], + [ + "【44기】오스케", + 77, + 88, + 16, + "che_event_견고", + [ + 41387, + 371053, + 9742, + 41907, + 13591 + ], + 0, + "default.jpg", + 44, + "che_220512_jq1I", + 113, + [ + "chief:11", + "hall:betgold", + "hall:betwin", + "hall:betwingold", + "hall:dex2" + ] + ], + [ + "【44기】세시", + 91, + 73, + 15, + "che_event_위압", + [ + 17119, + 19508, + 372683, + 51278, + 17736 + ], + 1, + "b8a03ae.jpg?=20220512", + 44, + "che_220512_jq1I", + 114, + [ + "hall:betrate", + "hall:dex3", + "hall:tlrate" + ] + ], + [ + "【44기】아이언승필", + 77, + 15, + 90, + "che_event_필살", + [ + 45151, + 12303, + 37466, + 584871, + 23365 + ], + 1, + "4abdaaf.jpg?=20220513", + 44, + "che_220512_jq1I", + 115, + [ + "chief:7", + "hall:betrate", + "hall:dex4", + "hall:experience", + "hall:killcrew", + "hall:killcrew_person", + "hall:killnum", + "hall:warnum", + "hall:winrate" + ] + ], + [ + "【44기】캡틴승필리카", + 74, + 91, + 15, + "che_event_돌격", + [ + 16943, + 51626, + 297819, + 55401, + 33767 + ], + 1, + "7702db2.jpg?=20220512", + 44, + "che_220512_jq1I", + 116, + [ + "hall:dex3", + "hall:dex5", + "hall:tsrate" + ] + ], + [ + "【44기】가짜", + 15, + 95, + 72, + "che_event_신산", + [ + 0, + 0, + 0, + 0, + 0 + ], + 1, + "cbec18d.jpg?=20220512", + 44, + "che_220512_jq1I", + 117, + [ + "hall:experience", + "hall:firenum", + "hall:tsrate" + ] + ], + [ + "【44기】サンソン", + 73, + 94, + 15, + "che_event_무쌍", + [ + 9230, + 7680, + 161185, + 17863, + 4480 + ], + 1, + "5e2f387.jpg?=20220512", + 44, + "che_220512_jq1I", + 118, + [ + "hall:firenum", + "hall:tsrate" + ] + ], + [ + "【44기】여캠시뉴카린", + 75, + 89, + 16, + "che_event_징병", + [ + 56348, + 42126, + 323600, + 50054, + 14789 + ], + 1, + "5b37ae0.jpg?=20220514", + 44, + "che_220512_jq1I", + 120, + [ + "hall:dex3" + ] + ], + [ + "【44기】외심장", + 76, + 15, + 91, + "che_event_신중", + [ + 22068, + 6875, + 5309, + 195652, + 11583 + ], + 1, + "36110cd.jpg?=20180826", + 44, + "che_220512_jq1I", + 123, + [ + "hall:tirate" + ] + ], + [ + "【44기】아메리카", + 74, + 15, + 92, + "che_event_신중", + [ + 16790, + 17757, + 26392, + 304847, + 36662 + ], + 1, + "19ae19b2.jpg?=20220521", + 44, + "che_220512_jq1I", + 124, + [ + "chief:5", + "hall:dex5" + ] + ], + [ + "【44기】비앙키", + 78, + 88, + 15, + "che_event_돌격", + [ + 38818, + 13376, + 477495, + 31766, + 29393 + ], + 0, + "default.jpg", + 44, + "che_220512_jq1I", + 125, + [ + "hall:dex3", + "hall:killnum", + "hall:occupied" + ] + ], + [ + "【44기】루나", + 16, + 71, + 95, + "che_event_집중", + [ + 0, + 0, + 0, + 16417, + 2790 + ], + 0, + "default.jpg", + 44, + "che_220512_jq1I", + 127, + [ + "hall:tirate", + "hall:ttrate" + ] + ], + [ + "【44기】호각", + 77, + 85, + 17, + "che_event_견고", + [ + 14462, + 66656, + 363619, + 63622, + 32567 + ], + 1, + "ffbb6e8.png?=20220512", + 44, + "che_220512_jq1I", + 128, + [ + "chief:6", + "hall:dex3", + "hall:firenum" + ] + ], + [ + "【44기】로리", + 76, + 17, + 89, + "che_event_집중", + [ + 0, + 0, + 0, + 0, + 0 + ], + 1, + "50794a6.jpg?=20190923", + 44, + "che_220512_jq1I", + 132, + [ + "hall:tirate" + ] + ], + [ + "【44기】봄꽃", + 15, + 71, + 96, + "che_event_신산", + [ + 0, + 0, + 0, + 0, + 0 + ], + 1, + "1390e40.jpg?=20211015", + 44, + "che_220512_jq1I", + 135, + [ + "hall:dedication", + "hall:tirate" + ] + ], + [ + "【44기】무천도사", + 74, + 16, + 91, + "che_event_신중", + [ + 25381, + 24024, + 18734, + 339054, + 19550 + ], + 1, + "f533ba4.jpg?=20220516", + 44, + "che_220512_jq1I", + 137, + [ + "hall:betwin" + ] + ], + [ + "【44기】황혼중", + 75, + 16, + 90, + "che_event_환술", + [ + 30229, + 15711, + 17379, + 414730, + 40846 + ], + 1, + "64a306e.png?=20220127", + 44, + "che_220512_jq1I", + 140, + [ + "hall:dedication", + "hall:dex5", + "hall:experience", + "hall:killrate" + ] + ], + [ + "【44기】배팅의신", + 77, + 16, + 90, + "che_event_집중", + [ + 24846, + 9188, + 41063, + 382237, + 15492 + ], + 0, + "default.jpg", + 44, + "che_220512_jq1I", + 142, + [ + "hall:betgold" + ] + ], + [ + "【44기】르세라핌", + 86, + 78, + 16, + "che_event_위압", + [ + 48516, + 302457, + 22268, + 79557, + 36989 + ], + 1, + "8e3b361.png?=20220414", + 44, + "che_220512_jq1I", + 145, + [ + "chief:10", + "hall:dedication", + "hall:dex2", + "hall:dex5" + ] + ], + [ + "【44기】파도", + 76, + 16, + 86, + "che_event_신중", + [ + 55283, + 14527, + 28386, + 283948, + 5485 + ], + 0, + "default.jpg", + 44, + "che_220512_jq1I", + 239, + [ + "hall:winrate" + ] + ], + [ + "【44기】중집", + 78, + 17, + 89, + "che_event_신중", + [ + 0, + 0, + 0, + 0, + 0 + ], + 0, + "default.jpg", + 44, + "che_220512_jq1I", + 241, + [ + "hall:ttrate" + ] + ], + [ + "【44기】개미호랑이", + 74, + 16, + 90, + "che_event_집중", + [ + 16493, + 12090, + 16503, + 444121, + 48665 + ], + 1, + "48d0ff5.jpg?=20220328", + 44, + "che_220512_jq1I", + 243, + [ + "chief:9", + "hall:betrate", + "hall:dedication", + "hall:dex4", + "hall:dex5", + "hall:experience" + ] + ], + [ + "【44기】태수", + 77, + 15, + 89, + "che_event_신산", + [ + 24543, + 27641, + 17739, + 391671, + 11889 + ], + 0, + "default.jpg", + 44, + "che_220512_jq1I", + 244, + [ + "hall:firenum", + "hall:winrate" + ] + ], + [ + "【44기】페르난도", + 76, + 15, + 92, + "che_event_필살", + [ + 31584, + 7971, + 8519, + 405765, + 15604 + ], + 1, + "6c07b3e.jpg?=20220305", + 44, + "che_220512_jq1I", + 249, + [ + "hall:killnum", + "hall:ttrate", + "hall:winrate" + ] + ], + [ + "【44기】로비", + 16, + 73, + 91, + "che_event_신중", + [ + 0, + 0, + 0, + 0, + 0 + ], + 1, + "d38cb34.png?=20220106", + 44, + "che_220512_jq1I", + 251, + [ + "hall:dedication" + ] + ], + [ + "【44기】지옥", + 90, + 74, + 15, + "che_event_저격", + [ + 17644, + 8329, + 379877, + 56967, + 33116 + ], + 0, + "default.jpg", + 44, + "che_220512_jq1I", + 287, + [ + "hall:dex3", + "hall:dex5", + "hall:tlrate" + ] + ], + [ + "【44기】어피치", + 89, + 72, + 15, + "che_event_위압", + [ + 65336, + 9729, + 20386, + 64686, + 173354 + ], + 0, + "default.jpg", + 44, + "che_220512_jq1I", + 464, + [ + "hall:dex5" + ] + ], + [ + "【44기】페코린느", + 75, + 87, + 16, + "che_event_위압", + [ + 14270, + 174583, + 6993, + 52603, + 2268 + ], + 1, + "93ee802.png?=20190621", + 44, + "che_220512_jq1I", + 477, + [ + "hall:dex2" + ] + ], + [ + "【44기】아이", + 74, + 17, + 86, + "che_event_집중", + [ + 6598, + 16978, + 10633, + 197150, + 14171 + ], + 0, + "default.jpg", + 44, + "che_220512_jq1I", + 502, + [ + "hall:firenum" + ] + ], + [ + "【45기】소울리스좌", + 78, + 15, + 95, + "che_event_집중", + [ + 92344, + 24670, + 56169, + 523932, + 27133 + ], + 1, + "ed298c9c.jpg?=20220620", + 45, + "che_220609_RAze", + 5, + [ + "hall:betgold", + "hall:betwingold", + "hall:tirate" + ] + ], + [ + "【45기】독틀링건", + 96, + 75, + 15, + "che_event_필살", + [ + 52584, + 24660, + 35804, + 44885, + 647541 + ], + 1, + "34cdc4ff.png?=20220609", + 45, + "che_220609_RAze", + 9, + [ + "hall:dex5", + "hall:firenum", + "hall:tlrate" + ] + ], + [ + "【45기】마법대통령휴2롱", + 78, + 91, + 16, + "che_event_필살", + [ + 554949, + 18189, + 53933, + 53996, + 15192 + ], + 1, + "33396692.jpg?=20220526", + 45, + "che_220609_RAze", + 10, + [ + "hall:tsrate" + ] + ], + [ + "【45기】?바나나?", + 79, + 95, + 15, + "che_event_필살", + [ + 19932, + 12661, + 494714, + 38054, + 3476 + ], + 1, + "fb47413d.gif?=20220608", + 45, + "che_220609_RAze", + 16, + [ + "hall:betgold", + "hall:betrate", + "hall:betwin", + "hall:betwingold", + "hall:dex3", + "hall:tsrate", + "hall:ttrate" + ] + ], + [ + "【45기】한끗에5억을태워?", + 78, + 95, + 15, + "che_event_필살", + [ + 45313, + 54236, + 622744, + 59445, + 17020 + ], + 1, + "95534aea.jpg?=20220617", + 45, + "che_220609_RAze", + 17, + [ + "hall:betwin", + "hall:dex3", + "hall:killrate_person", + "hall:tsrate" + ] + ], + [ + "【45기】퍄퍄", + 81, + 89, + 16, + "che_event_위압", + [ + 684191, + 21190, + 10669, + 43652, + 21426 + ], + 0, + "default.jpg", + 45, + "che_220609_RAze", + 21, + [ + "hall:dex1", + "hall:firenum", + "hall:killrate", + "hall:killrate_person" + ] + ], + [ + "【45기】그믐달", + 79, + 94, + 15, + "che_event_척사", + [ + 832642, + 26369, + 38705, + 53227, + 42680 + ], + 0, + "default.jpg", + 45, + "che_220609_RAze", + 23, + [ + "hall:betwin", + "hall:dex1", + "hall:dex5", + "hall:killcrew", + "hall:killcrew_person", + "hall:killnum", + "hall:killrate", + "hall:killrate_person", + "hall:occupied", + "hall:warnum", + "hall:winrate" + ] + ], + [ + "【45기】갈근", + 92, + 80, + 16, + "che_event_필살", + [ + 800807, + 24884, + 21665, + 73790, + 18334 + ], + 1, + "d1918d8b.png?=20220612", + 45, + "che_220609_RAze", + 24, + [ + "hall:betrate", + "hall:dex1", + "hall:killcrew_person", + "hall:killnum", + "hall:killrate_person" + ] + ], + [ + "【45기】셀레ㅁ1", + 77, + 15, + 96, + "che_event_집중", + [ + 45356, + 42885, + 10053, + 881454, + 24125 + ], + 1, + "ff3c82.jpg?=20220420", + 45, + "che_220609_RAze", + 25, + [ + "hall:betgold", + "hall:dex4", + "hall:killcrew", + "hall:killcrew_person", + "hall:killnum", + "hall:killrate", + "hall:killrate_person", + "hall:tirate", + "hall:warnum", + "hall:winrate" + ] + ], + [ + "【45기】리모스", + 101, + 70, + 15, + "che_event_공성", + [ + 25033, + 3910, + 22563, + 18041, + 223473 + ], + 1, + "e94c338c.jpg?=20220609", + 45, + "che_220609_RAze", + 29, + [ + "hall:dex5", + "hall:occupied", + "hall:tlrate", + "hall:ttrate" + ] + ], + [ + "【45기】과학5호기", + 79, + 94, + 15, + "che_event_위압", + [ + 54286, + 598682, + 61767, + 51131, + 25290 + ], + 1, + "4773bc14.png?=20220610", + 45, + "che_220609_RAze", + 36, + [ + "hall:betwin", + "hall:dex2" + ] + ], + [ + "【45기】네시", + 81, + 90, + 15, + "che_event_견고", + [ + 33213, + 525001, + 25006, + 56752, + 24763 + ], + 0, + "default.jpg", + 45, + "che_220609_RAze", + 39, + [ + "hall:dex2", + "hall:ttrate" + ] + ], + [ + "【45기】독구", + 78, + 15, + 94, + "che_event_집중", + [ + 80250, + 65921, + 19575, + 801671, + 26030 + ], + 1, + "3d7c9c7f.png?=20220603", + 45, + "che_220609_RAze", + 40, + [ + "hall:betgold", + "hall:betrate", + "hall:betwin", + "hall:betwingold", + "hall:dex4", + "hall:killcrew", + "hall:killcrew_person", + "hall:killrate", + "hall:killrate_person", + "hall:ttrate" + ] + ], + [ + "【45기】Windows 10", + 100, + 70, + 15, + "che_event_공성", + [ + 31905, + 14317, + 26376, + 40952, + 1317920 + ], + 1, + "deaeed4d.png?=20220609", + 45, + "che_220609_RAze", + 41, + [ + "chief:6", + "hall:betrate", + "hall:betwin", + "hall:betwingold", + "hall:dex5", + "hall:experience", + "hall:killcrew", + "hall:killrate", + "hall:occupied", + "hall:tlrate" + ] + ], + [ + "【45기】쇼이치", + 74, + 97, + 15, + "che_event_필살", + [ + 509313, + 16983, + 83764, + 28074, + 29635 + ], + 1, + "944e81ae.png?=20220621", + 45, + "che_220609_RAze", + 42, + [ + "chief:8", + "hall:dedication", + "hall:firenum", + "hall:killrate", + "hall:tsrate", + "hall:ttrate" + ] + ], + [ + "【45기】루나 2.0", + 92, + 15, + 80, + "che_event_돌격", + [ + 62403, + 12468, + 29032, + 117065, + 416563 + ], + 1, + "58d520d0.png?=20220609", + 45, + "che_220609_RAze", + 45, + [ + "hall:dex5" + ] + ], + [ + "【45기】장원0", + 74, + 15, + 97, + "che_event_환술", + [ + 51086, + 26318, + 40488, + 576703, + 64156 + ], + 1, + "1c769a6.jpg?=20220516", + 45, + "che_220609_RAze", + 46, + [ + "chief:12", + "hall:dedication", + "hall:dex4", + "hall:dex5", + "hall:experience", + "hall:occupied" + ] + ], + [ + "【45기】킹구", + 94, + 75, + 15, + "che_event_궁병", + [ + 11469, + 12839, + 530798, + 23071, + 8601 + ], + 1, + "35f1b7d.png?=20220106", + 45, + "che_220609_RAze", + 47, + [ + "chief:11", + "hall:dedication", + "hall:dex3", + "hall:tlrate" + ] + ], + [ + "【45기】술마시면깽판침", + 80, + 92, + 15, + "che_event_견고", + [ + 610573, + 24757, + 36358, + 52461, + 34842 + ], + 1, + "3f817389.png?=20220609", + 45, + "che_220609_RAze", + 53, + [ + "hall:betrate", + "hall:dex1" + ] + ], + [ + "【45기】료우기시키", + 91, + 77, + 15, + "che_event_척사", + [ + 142352, + 533517, + 72314, + 70950, + 22156 + ], + 1, + "72a190e.jpg?=20220109", + 45, + "che_220609_RAze", + 59, + [ + "hall:dex2" + ] + ], + [ + "【45기】엄마의시크릿레시피", + 78, + 17, + 92, + "che_event_필살", + [ + 44171, + 51092, + 8141, + 557589, + 19923 + ], + 0, + "default.jpg", + 45, + "che_220609_RAze", + 60, + [ + "hall:dex4", + "hall:firenum" + ] + ], + [ + "【45기】콘", + 81, + 15, + 90, + "che_event_신중", + [ + 84901, + 73238, + 37596, + 554786, + 22832 + ], + 1, + "7ca38d3.jpg?=20220324", + 45, + "che_220609_RAze", + 61, + [ + "hall:dex4" + ] + ], + [ + "【45기】르세라핌", + 89, + 79, + 15, + "che_event_위압", + [ + 66814, + 62891, + 592113, + 79431, + 18374 + ], + 1, + "8e3b361.png?=20220414", + 45, + "che_220609_RAze", + 63, + [ + "hall:dex3", + "hall:tlrate" + ] + ], + [ + "【45기】그는 신이야", + 85, + 87, + 15, + "che_event_필살", + [ + 502207, + 51401, + 46239, + 30286, + 9646 + ], + 1, + "e63388a3.png?=20220617", + 45, + "che_220609_RAze", + 64, + [ + "hall:firenum" + ] + ], + [ + "【45기】K3기관총", + 75, + 15, + 96, + "che_event_필살", + [ + 43245, + 45690, + 17873, + 544141, + 57700 + ], + 1, + "785cfc1c.jpg?=20220609", + 45, + "che_220609_RAze", + 65, + [ + "hall:dex4", + "hall:dex5", + "hall:experience", + "hall:occupied", + "hall:tirate" + ] + ], + [ + "【45기】똑딱똑딱", + 94, + 75, + 15, + "che_event_격노", + [ + 158045, + 175774, + 511875, + 62840, + 27934 + ], + 1, + "5205afe3.webp?=20220609", + 45, + "che_220609_RAze", + 69, + [ + "hall:betrate", + "hall:dex3", + "hall:occupied", + "hall:warnum" + ] + ], + [ + "【45기】펭삼이", + 16, + 73, + 92, + "che_event_신산", + [ + 0, + 0, + 0, + 0, + 0 + ], + 1, + "8151605.jpg?=20191024", + 45, + "che_220609_RAze", + 70, + [ + "hall:firenum" + ] + ], + [ + "【45기】사무라이", + 79, + 95, + 15, + "che_event_위압", + [ + 46743, + 49108, + 976750, + 44420, + 21151 + ], + 1, + "e4d737ea.png?=20220630", + 45, + "che_220609_RAze", + 71, + [ + "hall:betrate", + "hall:dex3", + "hall:firenum", + "hall:killcrew", + "hall:killcrew_person", + "hall:killnum", + "hall:killrate", + "hall:killrate_person", + "hall:tsrate", + "hall:warnum", + "hall:winrate" + ] + ], + [ + "【45기】DDDD", + 80, + 91, + 16, + "che_event_무쌍", + [ + 103438, + 36057, + 524741, + 49270, + 25026 + ], + 0, + "default.jpg", + 45, + "che_220609_RAze", + 72, + [ + "hall:dex3" + ] + ], + [ + "【45기】야옹이", + 78, + 15, + 95, + "che_event_집중", + [ + 30123, + 30284, + 53649, + 656388, + 24703 + ], + 1, + "44fa6a24.png?=20220610", + 45, + "che_220609_RAze", + 74, + [ + "hall:dex4", + "hall:experience", + "hall:winrate" + ] + ], + [ + "【45기】7", + 90, + 81, + 15, + "che_event_척사", + [ + 790871, + 35381, + 72207, + 38271, + 19331 + ], + 0, + "default.jpg", + 45, + "che_220609_RAze", + 75, + [ + "hall:dedication", + "hall:dex1", + "hall:experience", + "hall:killcrew", + "hall:killcrew_person", + "hall:killrate", + "hall:killrate_person", + "hall:warnum" + ] + ], + [ + "【45기】하하하", + 79, + 17, + 92, + "che_event_신중", + [ + 63007, + 46196, + 19536, + 526006, + 25656 + ], + 0, + "default.jpg", + 45, + "che_220609_RAze", + 77, + [ + "hall:ttrate" + ] + ], + [ + "【45기】독버지", + 77, + 95, + 15, + "che_event_무쌍", + [ + 45479, + 35057, + 481432, + 46788, + 22237 + ], + 1, + "4b6c2fe7.png?=20220603", + 45, + "che_220609_RAze", + 78, + [ + "hall:tsrate" + ] + ], + [ + "【45기】마요이", + 97, + 76, + 15, + "che_event_격노", + [ + 54903, + 671386, + 28221, + 32867, + 19155 + ], + 1, + "96bc8973.png?=20220529", + 45, + "che_220609_RAze", + 79, + [ + "hall:dex2", + "hall:killnum", + "hall:occupied", + "hall:tlrate", + "hall:warnum" + ] + ], + [ + "【45기】냥0ㅏ치파이", + 78, + 95, + 15, + "che_event_척사", + [ + 583118, + 36967, + 62305, + 49554, + 19236 + ], + 1, + "f315b8af.jpg?=20220610", + 45, + "che_220609_RAze", + 80, + [ + "hall:dex1", + "hall:tsrate" + ] + ], + [ + "【45기】남자라면배팅", + 81, + 90, + 15, + "che_event_필살", + [ + 41778, + 335519, + 11076, + 23821, + 16101 + ], + 0, + "default.jpg", + 45, + "che_220609_RAze", + 81, + [ + "hall:betgold", + "hall:betwingold" + ] + ], + [ + "【45기】리버싱핵심원리", + 84, + 90, + 15, + "che_event_신산", + [ + 45079, + 74047, + 650618, + 52291, + 10823 + ], + 0, + "default.jpg", + 45, + "che_220609_RAze", + 82, + [ + "hall:betrate", + "hall:dex3", + "hall:ttrate" + ] + ], + [ + "【45기】사스케넨", + 75, + 15, + 96, + "che_event_필살", + [ + 33632, + 12228, + 37548, + 353999, + 19129 + ], + 1, + "d8e91983.jpg?=20220609", + 45, + "che_220609_RAze", + 83, + [ + "hall:betrate", + "hall:occupied", + "hall:tirate" + ] + ], + [ + "【45기】7ELEVEN", + 93, + 78, + 15, + "che_event_척사", + [ + 560951, + 21107, + 82290, + 84064, + 19377 + ], + 1, + "0b04758a.png?=20220608", + 45, + "che_220609_RAze", + 85, + [ + "hall:dex1", + "hall:tlrate" + ] + ], + [ + "【45기】벨레스", + 78, + 96, + 15, + "che_event_척사", + [ + 38695, + 672021, + 17328, + 68722, + 23846 + ], + 1, + "0fadd0a8.jpg?=20220624", + 45, + "che_220609_RAze", + 86, + [ + "hall:dex2", + "hall:killcrew_person", + "hall:killnum", + "hall:winrate" + ] + ], + [ + "【45기】춘식이", + 78, + 96, + 15, + "che_event_필살", + [ + 163025, + 30964, + 835373, + 142079, + 33131 + ], + 1, + "70ab6caa.webp?=20220604", + 45, + "che_220609_RAze", + 87, + [ + "hall:dex3", + "hall:experience", + "hall:killcrew", + "hall:killcrew_person", + "hall:killnum", + "hall:killrate", + "hall:killrate_person", + "hall:occupied", + "hall:warnum", + "hall:winrate" + ] + ], + [ + "【45기】수신호", + 92, + 77, + 15, + "che_event_필살", + [ + 479268, + 18964, + 166179, + 43484, + 20603 + ], + 0, + "default.jpg", + 45, + "che_220609_RAze", + 90, + [ + "hall:betgold", + "hall:betwingold", + "hall:tlrate" + ] + ], + [ + "【45기】이토 카이지", + 79, + 94, + 15, + "che_event_척사", + [ + 78307, + 800764, + 66678, + 90310, + 40517 + ], + 1, + "94978bf7.png?=20220609", + 45, + "che_220609_RAze", + 91, + [ + "hall:betgold", + "hall:betwin", + "hall:betwingold", + "hall:dex2", + "hall:dex5", + "hall:killcrew", + "hall:killcrew_person", + "hall:killnum", + "hall:killrate", + "hall:killrate_person", + "hall:warnum", + "hall:winrate" + ] + ], + [ + "【45기】박일아", + 78, + 93, + 16, + "che_event_무쌍", + [ + 364937, + 6385, + 14195, + 14863, + 0 + ], + 1, + "8608979.gif?=20191024", + 45, + "che_220609_RAze", + 93, + [ + "hall:betrate", + "hall:firenum" + ] + ], + [ + "【45기】Hide_D", + 81, + 15, + 89, + "che_event_의술", + [ + 95692, + 14163, + 74105, + 579162, + 23037 + ], + 1, + "8cf2033.png?=20220228", + 45, + "che_220609_RAze", + 94, + [ + "hall:dex4", + "hall:occupied" + ] + ], + [ + "【45기】독구독트린", + 98, + 75, + 15, + "che_event_무쌍", + [ + 57091, + 752284, + 9882, + 59784, + 27427 + ], + 1, + "6bbd5da4.png?=20220609", + 45, + "che_220609_RAze", + 95, + [ + "hall:dex2", + "hall:killcrew", + "hall:killcrew_person", + "hall:killnum", + "hall:tlrate", + "hall:warnum" + ] + ], + [ + "【45기】마리모", + 81, + 90, + 15, + "che_event_궁병", + [ + 91022, + 593313, + 6738, + 64851, + 23379 + ], + 0, + "default.jpg", + 45, + "che_220609_RAze", + 96, + [ + "hall:dex2", + "hall:winrate" + ] + ], + [ + "【45기】300M고세구큰거온다", + 78, + 95, + 15, + "che_event_필살", + [ + 656971, + 17449, + 32087, + 44689, + 15180 + ], + 1, + "2cb52730.jpg?=20220607", + 45, + "che_220609_RAze", + 97, + [ + "hall:dex1", + "hall:tsrate" + ] + ], + [ + "【45기】매너게이머", + 95, + 15, + 76, + "che_event_집중", + [ + 62907, + 54918, + 38966, + 323569, + 8999 + ], + 0, + "default.jpg", + 45, + "che_220609_RAze", + 98, + [ + "hall:tlrate" + ] + ], + [ + "【45기】서민3호기", + 76, + 15, + 96, + "che_event_신중", + [ + 47413, + 14243, + 29129, + 503787, + 34414 + ], + 0, + "default.jpg", + 45, + "che_220609_RAze", + 99, + [ + "hall:betgold", + "hall:betwingold", + "hall:tirate" + ] + ], + [ + "【45기】고장난부관", + 16, + 81, + 87, + "che_event_필살", + [ + 4091, + 2200, + 32144, + 1673, + 8379 + ], + 1, + "de4b0404.gif?=20220606", + 45, + "che_220609_RAze", + 100, + [ + "hall:firenum" + ] + ], + [ + "【45기】외심장", + 78, + 15, + 92, + "che_event_집중", + [ + 88385, + 14678, + 28877, + 709797, + 44406 + ], + 1, + "36110cd.jpg?=20180826", + 45, + "che_220609_RAze", + 101, + [ + "hall:dex4", + "hall:dex5", + "hall:killcrew", + "hall:killnum" + ] + ], + [ + "【45기】기", + 74, + 15, + 95, + "che_event_공성", + [ + 22988, + 13472, + 13160, + 47752, + 108409 + ], + 1, + "3a86f19.gif?=20220419", + 45, + "che_220609_RAze", + 102, + [ + "hall:dex5", + "hall:tirate" + ] + ], + [ + "【45기】니노마에이나니스", + 78, + 15, + 95, + "che_event_집중", + [ + 71337, + 22098, + 22388, + 640719, + 23438 + ], + 1, + "dc4e759f.gif?=20220609", + 45, + "che_220609_RAze", + 103, + [ + "hall:dex4", + "hall:ttrate", + "hall:winrate" + ] + ], + [ + "【45기】페르난도", + 74, + 15, + 97, + "che_event_집중", + [ + 64887, + 8678, + 56796, + 481816, + 38284 + ], + 1, + "6c07b3e.jpg?=20220305", + 45, + "che_220609_RAze", + 112, + [ + "chief:9", + "hall:dedication", + "hall:experience", + "hall:tirate" + ] + ], + [ + "【45기】허니카스테라", + 77, + 95, + 15, + "che_event_척사", + [ + 81140, + 418186, + 145329, + 41465, + 24528 + ], + 1, + "ee430e43.jpg?=20220610", + 45, + "che_220609_RAze", + 114, + [ + "hall:betwin", + "hall:dex2", + "hall:tsrate" + ] + ], + [ + "【45기】봄꽃", + 16, + 70, + 101, + "che_event_의술", + [ + 0, + 0, + 0, + 0, + 0 + ], + 1, + "1390e40.jpg?=20211015", + 45, + "che_220609_RAze", + 117, + [ + "hall:dedication", + "hall:tirate" + ] + ], + [ + "【45기】복숭아좋아", + 76, + 15, + 93, + "che_event_신중", + [ + 17168, + 4834, + 44860, + 464699, + 32984 + ], + 1, + "57e4a39.jpg?=20190620", + 45, + "che_220609_RAze", + 118, + [ + "chief:5" + ] + ], + [ + "【45기】크렌스", + 75, + 96, + 15, + "che_event_견고", + [ + 122034, + 370027, + 143808, + 64504, + 24236 + ], + 0, + "default.jpg", + 45, + "che_220609_RAze", + 120, + [ + "chief:10", + "hall:dedication", + "hall:dex2", + "hall:experience", + "hall:firenum", + "hall:tsrate", + "hall:ttrate" + ] + ], + [ + "【45기】삼국지", + 77, + 15, + 92, + "che_event_집중", + [ + 40325, + 26052, + 21126, + 391812, + 12489 + ], + 0, + "default.jpg", + 45, + "che_220609_RAze", + 122, + [ + "hall:winrate" + ] + ], + [ + "【45기】황혼중", + 78, + 15, + 91, + "che_event_환술", + [ + 79040, + 38145, + 37667, + 488194, + 8314 + ], + 1, + "64a306e.png?=20220127", + 45, + "che_220609_RAze", + 123, + [ + "hall:ttrate" + ] + ], + [ + "【45기】애옹이", + 79, + 90, + 15, + "che_event_위압", + [ + 33408, + 29981, + 543566, + 37022, + 30777 + ], + 0, + "default.jpg", + 45, + "che_220609_RAze", + 252, + [ + "hall:betgold", + "hall:betwingold", + "hall:dex3" + ] + ], + [ + "【45기】카이스트", + 74, + 15, + 97, + "che_event_집중", + [ + 80185, + 17538, + 46464, + 421754, + 31814 + ], + 1, + "9361ef8.jpg?=20180907", + 45, + "che_220609_RAze", + 255, + [ + "chief:7", + "hall:betwin", + "hall:dedication", + "hall:experience", + "hall:tirate" + ] + ], + [ + "【45기】엔틱", + 15, + 70, + 101, + "che_event_의술", + [ + 0, + 0, + 0, + 0, + 0 + ], + 1, + "b59e3c8b.gif?=20220520", + 45, + "che_220609_RAze", + 264, + [ + "hall:dedication", + "hall:experience", + "hall:tirate" + ] + ], + [ + "【45기】작은 황금나무", + 92, + 79, + 16, + "che_event_돌격", + [ + 617034, + 47898, + 134257, + 86188, + 29190 + ], + 1, + "e12fa0f7.jpg?=20220529", + 45, + "che_220609_RAze", + 283, + [ + "hall:betgold", + "hall:betwin", + "hall:betwingold", + "hall:dex1", + "hall:warnum" + ] + ], + [ + "【45기】뉴턴", + 79, + 15, + 88, + "che_event_척사", + [ + 38137, + 4989, + 21129, + 352898, + 24639 + ], + 1, + "7b2bbf71.jpg?=20220612", + 45, + "che_220609_RAze", + 291, + [ + "hall:dedication" + ] + ], + [ + "【45기】와일드플라워", + 90, + 78, + 15, + "che_event_저격", + [ + 671224, + 24214, + 53904, + 37553, + 15015 + ], + 0, + "default.jpg", + 45, + "che_220609_RAze", + 448, + [ + "hall:dex1" + ] + ], + [ + "【46기】소피", + 74, + 91, + 15, + "che_event_궁병", + [ + 18562, + 109494, + 2584, + 29236, + 10591 + ], + 1, + "adda4462.jpg?=20220706", + 46, + "che_220707_R8Fd", + 3, + [ + "hall:dex2", + "hall:tsrate" + ] + ], + [ + "【46기】박일아", + 73, + 15, + 93, + "che_event_필살", + [ + 17102, + 8223, + 7751, + 180106, + 19938 + ], + 1, + "8608979.gif?=20191024", + 46, + "che_220707_R8Fd", + 4, + [ + "hall:tirate" + ] + ], + [ + "【46기】임춘식", + 75, + 91, + 15, + "che_event_척사", + [ + 122430, + 12783, + 421956, + 58841, + 21415 + ], + 1, + "70ab6caa.webp?=20220604", + 46, + "che_220707_R8Fd", + 6, + [ + "hall:betwin", + "hall:dex3", + "hall:killcrew", + "hall:killcrew_person", + "hall:killnum", + "hall:killrate_person", + "hall:tsrate" + ] + ], + [ + "【46기】라이츄", + 76, + 87, + 15, + "che_event_척사", + [ + 77630, + 337331, + 10246, + 75574, + 14845 + ], + 1, + "f7e5422a.png?=20220706", + 46, + "che_220707_R8Fd", + 8, + [ + "hall:dex2" + ] + ], + [ + "【46기】킹구", + 76, + 15, + 90, + "che_event_집중", + [ + 16080, + 6024, + 8154, + 542226, + 10365 + ], + 1, + "35f1b7d.png?=20220106", + 46, + "che_220707_R8Fd", + 9, + [ + "hall:dex4", + "hall:experience", + "hall:killrate_person", + "hall:winrate" + ] + ], + [ + "【46기】페이몬", + 75, + 16, + 89, + "che_event_집중", + [ + 31712, + 1623, + 28196, + 246091, + 13769 + ], + 1, + "39e3f3a2.gif?=20220716", + 46, + "che_220707_R8Fd", + 12, + [ + "hall:ttrate" + ] + ], + [ + "【46기】바나낫", + 74, + 92, + 15, + "che_event_무쌍", + [ + 385231, + 5499, + 11250, + 14109, + 26902 + ], + 1, + "ea75c1dd.gif?=20220707", + 46, + "che_220707_R8Fd", + 13, + [ + "chief:12", + "hall:betgold", + "hall:betrate", + "hall:betwingold", + "hall:dedication", + "hall:dex1", + "hall:experience", + "hall:killrate", + "hall:killrate_person", + "hall:occupied", + "hall:tsrate", + "hall:winrate" + ] + ], + [ + "【46기】레이스", + 77, + 90, + 15, + "che_event_필살", + [ + 748569, + 16035, + 76404, + 48093, + 16403 + ], + 1, + "30f69493.jpg?=20220707", + 46, + "che_220707_R8Fd", + 14, + [ + "hall:dex1", + "hall:killcrew", + "hall:killcrew_person", + "hall:killnum", + "hall:killrate_person", + "hall:warnum", + "hall:winrate" + ] + ], + [ + "【46기】오에에에엑시뉴카린", + 74, + 15, + 92, + "che_event_신중", + [ + 24485, + 15707, + 12478, + 376396, + 43422 + ], + 1, + "dcfd2298.png?=20220710", + 46, + "che_220707_R8Fd", + 24, + [ + "hall:dex5", + "hall:occupied", + "hall:tirate" + ] + ], + [ + "【46기】페르난도", + 76, + 89, + 15, + "che_event_필살", + [ + 612685, + 4628, + 38005, + 86166, + 18051 + ], + 1, + "6c07b3e.jpg?=20220305", + 46, + "che_220707_R8Fd", + 25, + [ + "hall:dex1", + "hall:killcrew", + "hall:killcrew_person", + "hall:killnum", + "hall:warnum" + ] + ], + [ + "【46기】류화영", + 28, + 73, + 80, + "che_event_위압", + [ + 10312, + 4496, + 88390, + 4664, + 11017 + ], + 1, + "2eca7aec.png?=20220705", + 46, + "che_220707_R8Fd", + 27, + [ + "chief:5", + "hall:dedication" + ] + ], + [ + "【46기】츄츄족", + 75, + 88, + 16, + "che_event_척사", + [ + 34696, + 23189, + 375594, + 85823, + 28811 + ], + 1, + "7f7a1c81.jpg?=20220707", + 46, + "che_220707_R8Fd", + 30, + [ + "hall:dex3" + ] + ], + [ + "【46기】SARS", + 80, + 86, + 15, + "che_event_무쌍", + [ + 25530, + 33349, + 421023, + 69133, + 17527 + ], + 1, + "b84944.jpg?=20180829", + 46, + "che_220707_R8Fd", + 31, + [ + "hall:betwin", + "hall:dex3", + "hall:ttrate" + ] + ], + [ + "【46기】홍홍", + 77, + 87, + 15, + "che_event_위압", + [ + 17944, + 294201, + 6673, + 26697, + 16611 + ], + 0, + "default.jpg", + 46, + "che_220707_R8Fd", + 33, + [ + "hall:dex2", + "hall:tsrate" + ] + ], + [ + "【46기】노인을묶으면타이틀", + 76, + 89, + 16, + "che_event_돌격", + [ + 33397, + 214784, + 7151, + 60754, + 10639 + ], + 0, + "default.jpg", + 46, + "che_220707_R8Fd", + 34, + [ + "hall:dex2", + "hall:tsrate", + "hall:ttrate" + ] + ], + [ + "【46기】장원영", + 91, + 73, + 15, + "che_event_위압", + [ + 491036, + 5258, + 15383, + 50672, + 31303 + ], + 1, + "011601c5.jpg?=20220713", + 46, + "che_220707_R8Fd", + 37, + [ + "hall:dex1", + "hall:dex5", + "hall:experience", + "hall:occupied", + "hall:tlrate", + "hall:warnum" + ] + ], + [ + "【46기】POCARI.", + 90, + 75, + 15, + "che_event_징병", + [ + 822, + 1547, + 587509, + 3161, + 9653 + ], + 1, + "085bc73a.jpg?=20220716", + 46, + "che_220707_R8Fd", + 38, + [ + "hall:dex3", + "hall:killcrew_person", + "hall:tlrate", + "hall:warnum" + ] + ], + [ + "【46기】삼체미시뉴카린", + 75, + 92, + 15, + "che_event_필살", + [ + 923850, + 21898, + 44244, + 38865, + 29161 + ], + 1, + "c3aee291.png?=20220711", + 46, + "che_220707_R8Fd", + 50, + [ + "hall:betwin", + "hall:dex1", + "hall:experience", + "hall:killcrew", + "hall:killcrew_person", + "hall:killnum", + "hall:killrate", + "hall:killrate_person", + "hall:occupied", + "hall:tsrate", + "hall:warnum", + "hall:winrate" + ] + ], + [ + "【46기】나옹이", + 80, + 88, + 15, + "che_event_필살", + [ + 20594, + 18744, + 625650, + 23764, + 5349 + ], + 1, + "44fa6a24.png?=20220610", + 46, + "che_220707_R8Fd", + 61, + [ + "hall:dex3", + "hall:killcrew", + "hall:killcrew_person", + "hall:killnum", + "hall:warnum", + "hall:winrate" + ] + ], + [ + "【46기】제갈여포", + 88, + 15, + 76, + "che_event_신중", + [ + 38472, + 21626, + 18486, + 388426, + 6828 + ], + 1, + "d87fd80.png?=20220515", + 46, + "che_220707_R8Fd", + 63, + [ + "hall:tlrate" + ] + ], + [ + "【46기】8", + 89, + 77, + 15, + "che_event_척사", + [ + 153188, + 13320, + 151725, + 40607, + 53954 + ], + 0, + "default.jpg", + 46, + "che_220707_R8Fd", + 65, + [ + "hall:dex5", + "hall:firenum", + "hall:occupied", + "hall:tlrate" + ] + ], + [ + "【46기】피카츄", + 87, + 15, + 78, + "che_event_집중", + [ + 27940, + 10363, + 27755, + 280937, + 16685 + ], + 1, + "d1ceeec0.png?=20220707", + 46, + "che_220707_R8Fd", + 66, + [ + "hall:betgold", + "hall:betwingold", + "hall:tlrate" + ] + ], + [ + "【46기】감흥", + 76, + 15, + 90, + "che_event_집중", + [ + 43165, + 53864, + 16837, + 449684, + 24952 + ], + 1, + "cd597bb3.jpg?=20220529", + 46, + "che_220707_R8Fd", + 68, + [ + "hall:betwin", + "hall:dex4", + "hall:firenum" + ] + ], + [ + "【46기】마요이", + 75, + 15, + 93, + "che_event_필살", + [ + 11999, + 5453, + 13412, + 552696, + 13874 + ], + 1, + "96bc8973.png?=20220529", + 46, + "che_220707_R8Fd", + 72, + [ + "hall:betgold", + "hall:betrate", + "hall:betwingold", + "hall:dex4", + "hall:killcrew", + "hall:killcrew_person", + "hall:killnum", + "hall:killrate", + "hall:killrate_person", + "hall:tirate", + "hall:winrate" + ] + ], + [ + "【46기】아약스", + 77, + 86, + 15, + "che_event_견고", + [ + 21820, + 360945, + 10894, + 61549, + 6440 + ], + 1, + "4068a98e.jpg?=20220707", + 46, + "che_220707_R8Fd", + 73, + [ + "hall:dex2" + ] + ], + [ + "【46기】고통의가시", + 89, + 15, + 74, + "che_event_척사", + [ + 27827, + 14642, + 9606, + 262544, + 7425 + ], + 1, + "f5e184b6.gif?=20220718", + 46, + "che_220707_R8Fd", + 74, + [ + "hall:tlrate" + ] + ], + [ + "【46기】짭뉴카린", + 75, + 15, + 90, + "che_event_집중", + [ + 38594, + 28784, + 35761, + 392715, + 15932 + ], + 0, + "default.jpg", + 46, + "che_220707_R8Fd", + 75, + [ + "hall:dex4", + "hall:tirate" + ] + ], + [ + "【46기】와일드플라워", + 83, + 81, + 15, + "che_event_필살", + [ + 0, + 165, + 15821, + 1215, + 3416 + ], + 0, + "default.jpg", + 46, + "che_220707_R8Fd", + 76, + [ + "hall:experience", + "hall:firenum" + ] + ], + [ + "【46기】깡패", + 80, + 85, + 15, + "che_event_필살", + [ + 56103, + 326615, + 22258, + 44619, + 14673 + ], + 0, + "default.jpg", + 46, + "che_220707_R8Fd", + 77, + [ + "hall:dex2", + "hall:firenum" + ] + ], + [ + "【46기】바나나OUT", + 75, + 15, + 89, + "che_event_필살", + [ + 6385, + 19339, + 2511, + 206601, + 13355 + ], + 1, + "b4ae42d1.jpg?=20220716", + 46, + "che_220707_R8Fd", + 78, + [ + "chief:9", + "hall:dedication" + ] + ], + [ + "【46기】나이스네이처", + 76, + 88, + 16, + "che_event_척사", + [ + 337351, + 19831, + 52055, + 71133, + 25209 + ], + 1, + "12e4fa8e.png?=20220708", + 46, + "che_220707_R8Fd", + 79, + [ + "hall:dex1" + ] + ], + [ + "【46기】물자조달", + 17, + 89, + 74, + "che_event_척사", + [ + 0, + 0, + 0, + 0, + 0 + ], + 0, + "default.jpg", + 46, + "che_220707_R8Fd", + 80, + [ + "hall:ttrate" + ] + ], + [ + "【46기】이드", + 74, + 15, + 92, + "che_event_환술", + [ + 20746, + 7959, + 10591, + 231150, + 12054 + ], + 1, + "5898830.jpg?=20210831", + 46, + "che_220707_R8Fd", + 81, + [ + "hall:tirate", + "hall:ttrate" + ] + ], + [ + "【46기】카이스트", + 77, + 15, + 88, + "che_event_집중", + [ + 15118, + 10256, + 14585, + 321237, + 20296 + ], + 1, + "9361ef8.jpg?=20180907", + 46, + "che_220707_R8Fd", + 82, + [ + "hall:betwin" + ] + ], + [ + "【46기】미스티", + 78, + 15, + 88, + "che_event_필살", + [ + 37617, + 1677, + 8141, + 237884, + 7152 + ], + 1, + "1aadcba.png?=20180908", + 46, + "che_220707_R8Fd", + 83, + [ + "hall:tirate" + ] + ], + [ + "【46기】슬라임", + 88, + 76, + 15, + "che_event_척사", + [ + 246109, + 8331, + 17002, + 27756, + 25179 + ], + 0, + "default.jpg", + 46, + "che_220707_R8Fd", + 85, + [ + "chief:6", + "hall:dedication", + "hall:experience", + "hall:tlrate" + ] + ], + [ + "【46기】칸나", + 76, + 15, + 91, + "che_event_필살", + [ + 10490, + 16782, + 29794, + 512757, + 9010 + ], + 1, + "b11efa74.webp?=20220707", + 46, + "che_220707_R8Fd", + 86, + [ + "hall:betgold", + "hall:betwin", + "hall:dex4", + "hall:killcrew", + "hall:killcrew_person", + "hall:killnum", + "hall:warnum" + ] + ], + [ + "【46기】호나", + 80, + 85, + 15, + "che_event_척사", + [ + 18466, + 16621, + 567556, + 25922, + 26529 + ], + 0, + "default.jpg", + 46, + "che_220707_R8Fd", + 87, + [ + "hall:betrate", + "hall:dex3" + ] + ], + [ + "【46기】사스케", + 94, + 72, + 15, + "che_event_견고", + [ + 61839, + 12878, + 10521, + 51881, + 744542 + ], + 1, + "f9c9d6b6.jpg?=20220613", + 46, + "che_220707_R8Fd", + 88, + [ + "hall:betgold", + "hall:betrate", + "hall:betwin", + "hall:betwingold", + "hall:dex5", + "hall:experience", + "hall:killcrew", + "hall:killcrew_person", + "hall:killnum", + "hall:killrate", + "hall:killrate_person", + "hall:occupied", + "hall:tlrate", + "hall:warnum", + "hall:winrate" + ] + ], + [ + "【46기】평민킬러", + 76, + 93, + 15, + "che_event_필살", + [ + 934053, + 23975, + 39230, + 49842, + 35792 + ], + 1, + "70bf9aac.jpg?=20220707", + 46, + "che_220707_R8Fd", + 89, + [ + "chief:8", + "hall:dex1", + "hall:dex5", + "hall:experience", + "hall:killcrew", + "hall:killcrew_person", + "hall:killnum", + "hall:killrate", + "hall:killrate_person", + "hall:occupied", + "hall:tsrate", + "hall:warnum", + "hall:winrate" + ] + ], + [ + "【46기】마이멜로디", + 76, + 16, + 87, + "che_event_필살", + [ + 9981, + 24321, + 36408, + 413789, + 20936 + ], + 1, + "ba8513af.jpg?=20220707", + 46, + "che_220707_R8Fd", + 92, + [ + "hall:dex4" + ] + ], + [ + "【46기】퍄퍄", + 77, + 15, + 87, + "che_event_집중", + [ + 53580, + 22223, + 53973, + 399935, + 28154 + ], + 0, + "default.jpg", + 46, + "che_220707_R8Fd", + 93, + [ + "hall:dex4" + ] + ], + [ + "【46기】쫒겨난애옹이", + 77, + 15, + 86, + "che_event_필살", + [ + 24591, + 34925, + 19649, + 329191, + 2786 + ], + 0, + "default.jpg", + 46, + "che_220707_R8Fd", + 94, + [ + "hall:betgold", + "hall:betwingold" + ] + ], + [ + "【46기】독괴금", + 73, + 15, + 90, + "che_event_신중", + [ + 4793, + 10595, + 2080, + 117563, + 16199 + ], + 1, + "715fc358.png?=20220707", + 46, + "che_220707_R8Fd", + 95, + [ + "hall:dedication" + ] + ], + [ + "【46기】스시카린", + 74, + 15, + 91, + "che_event_신중", + [ + 18145, + 42535, + 11704, + 332815, + 41005 + ], + 1, + "7c27c1f5.png?=20220721", + 46, + "che_220707_R8Fd", + 97, + [ + "hall:betrate", + "hall:dex5" + ] + ], + [ + "【46기】료우기시키", + 76, + 15, + 89, + "che_event_의술", + [ + 19237, + 18156, + 22692, + 307661, + 18795 + ], + 1, + "72a190e.jpg?=20220109", + 46, + "che_220707_R8Fd", + 98, + [ + "hall:betrate", + "hall:betwingold" + ] + ], + [ + "【46기】갈근", + 92, + 72, + 15, + "che_event_견고", + [ + 4684, + 11653, + 168034, + 22056, + 27593 + ], + 1, + "b0d5a26b.png?=20220717", + 46, + "che_220707_R8Fd", + 99, + [ + "hall:betrate", + "hall:betwin", + "hall:dedication", + "hall:tlrate" + ] + ], + [ + "【46기】초코바나나빽스치노", + 74, + 91, + 15, + "che_event_돌격", + [ + 109766, + 69678, + 94226, + 35686, + 26325 + ], + 1, + "6a48d1fc.png?=20220707", + 46, + "che_220707_R8Fd", + 100, + [ + "chief:11", + "hall:betgold", + "hall:betrate", + "hall:betwingold", + "hall:dex2", + "hall:experience", + "hall:killrate", + "hall:killrate_person", + "hall:tsrate", + "hall:winrate" + ] + ], + [ + "【46기】시뉴카린", + 79, + 84, + 15, + "che_event_위압", + [ + 495820, + 14255, + 51856, + 61163, + 23874 + ], + 1, + "fc0cd4b2.png?=20220707", + 46, + "che_220707_R8Fd", + 101, + [ + "hall:betgold", + "hall:betwin", + "hall:betwingold", + "hall:dex1", + "hall:killrate", + "hall:occupied" + ] + ], + [ + "【46기】복숭아좋아", + 75, + 15, + 89, + "che_event_환술", + [ + 31283, + 13315, + 31561, + 316198, + 32538 + ], + 1, + "57e4a39.jpg?=20190620", + 46, + "che_220707_R8Fd", + 102, + [ + "hall:dex5" + ] + ], + [ + "【46기】비챤", + 72, + 15, + 92, + "che_event_집중", + [ + 26465, + 3200, + 1637, + 156799, + 28994 + ], + 1, + "9d8b0902.png?=20220707", + 46, + "che_220707_R8Fd", + 103, + [ + "hall:tirate" + ] + ], + [ + "【46기】흑화시뉴카린", + 78, + 86, + 16, + "che_event_척사", + [ + 18032, + 27066, + 280680, + 55608, + 24306 + ], + 1, + "f87023ad.png?=20220707", + 46, + "che_220707_R8Fd", + 104, + [ + "hall:dex3" + ] + ], + [ + "【46기】물조만하는기상술사", + 15, + 85, + 78, + "che_event_저격", + [ + 0, + 0, + 0, + 0, + 0 + ], + 1, + "fbe60147.png?=20220707", + 46, + "che_220707_R8Fd", + 105, + [ + "hall:betgold", + "hall:betwingold" + ] + ], + [ + "【46기】난배팅만한다", + 72, + 15, + 93, + "che_event_집중", + [ + 4493, + 18665, + 20915, + 162455, + 22596 + ], + 0, + "default.jpg", + 46, + "che_220707_R8Fd", + 109, + [ + "hall:betgold", + "hall:betrate", + "hall:betwingold", + "hall:firenum" + ] + ], + [ + "【46기】안유진", + 73, + 18, + 89, + "che_event_필살", + [ + 41632, + 11309, + 22173, + 316881, + 30387 + ], + 1, + "280c16b7.jpg?=20220707", + 46, + "che_220707_R8Fd", + 110, + [ + "hall:dex5", + "hall:ttrate" + ] + ], + [ + "【46기】가든", + 76, + 16, + 88, + "che_event_집중", + [ + 60379, + 23576, + 25846, + 529447, + 25711 + ], + 1, + "901fcbb6.png?=20220718", + 46, + "che_220707_R8Fd", + 111, + [ + "hall:dex4" + ] + ], + [ + "【46기】무쌍", + 74, + 93, + 15, + "che_event_필살", + [ + 120103, + 3901, + 467994, + 56155, + 31694 + ], + 1, + "4cecf224.jpg?=20220709", + 46, + "che_220707_R8Fd", + 121, + [ + "hall:betwin", + "hall:dex3", + "hall:dex5", + "hall:experience", + "hall:killcrew", + "hall:killnum", + "hall:killrate", + "hall:killrate_person", + "hall:occupied", + "hall:tsrate", + "hall:winrate" + ] + ], + [ + "【46기】르세라핌", + 85, + 78, + 15, + "che_event_격노", + [ + 5539, + 15225, + 207932, + 31948, + 27651 + ], + 1, + "c5ac308f.png?=20220725", + 46, + "che_220707_R8Fd", + 122, + [ + "chief:10", + "hall:dedication", + "hall:dex3", + "hall:ttrate" + ] + ], + [ + "【46기】바나나킥", + 15, + 71, + 93, + "che_event_집중", + [ + 0, + 0, + 0, + 0, + 0 + ], + 1, + "a4af5d3b.png?=20220708", + 46, + "che_220707_R8Fd", + 125, + [ + "hall:dedication" + ] + ], + [ + "【46기】베라", + 74, + 15, + 91, + "che_event_필살", + [ + 24575, + 27909, + 35361, + 498858, + 52930 + ], + 1, + "f4e625c7.jpg?=20220707", + 46, + "che_220707_R8Fd", + 127, + [ + "hall:dex4", + "hall:dex5", + "hall:firenum", + "hall:killrate", + "hall:tirate" + ] + ], + [ + "【46기】아샤", + 77, + 15, + 86, + "che_event_신중", + [ + 4736, + 11773, + 18132, + 256444, + 11480 + ], + 0, + "default.jpg", + 46, + "che_220707_R8Fd", + 131, + [ + "hall:ttrate" + ] + ], + [ + "【46기】삼국지", + 74, + 15, + 89, + "che_event_집중", + [ + 4800, + 7308, + 17756, + 199170, + 22909 + ], + 0, + "default.jpg", + 46, + "che_220707_R8Fd", + 133, + [ + "chief:7", + "hall:firenum", + "hall:killrate" + ] + ], + [ + "【46기】tqtt", + 83, + 83, + 15, + "che_event_격노", + [ + 55719, + 161437, + 11559, + 34559, + 6922 + ], + 0, + "default.jpg", + 46, + "che_220707_R8Fd", + 134, + [ + "hall:dex2", + "hall:ttrate" + ] + ], + [ + "【46기】묵언수행", + 72, + 16, + 91, + "che_event_환술", + [ + 19734, + 12936, + 5362, + 174770, + 18867 + ], + 0, + "default.jpg", + 46, + "che_220707_R8Fd", + 135, + [ + "hall:dedication" + ] + ], + [ + "【46기】아무고토몰라요", + 79, + 85, + 15, + "che_event_격노", + [ + 35709, + 15041, + 272098, + 62288, + 12798 + ], + 1, + "79dbce5.jpg?=20210918", + 46, + "che_220707_R8Fd", + 227, + [ + "hall:dex3" + ] + ], + [ + "【46기】민트토끼", + 15, + 75, + 90, + "che_event_반계", + [ + 0, + 0, + 0, + 0, + 0 + ], + 1, + "de6c89a2.jpg?=20220707", + 46, + "che_220707_R8Fd", + 229, + [ + "hall:dedication", + "hall:tirate" + ] + ], + [ + "【46기】미친과학", + 87, + 76, + 17, + "che_event_필살", + [ + 166262, + 10020, + 27611, + 7986, + 4913 + ], + 1, + "f3fe11f4.png?=20220708", + 46, + "che_220707_R8Fd", + 233, + [ + "hall:tlrate" + ] + ], + [ + "【46기】엘리시아", + 76, + 88, + 15, + "che_event_의술", + [ + 12202, + 140073, + 3184, + 42200, + 9692 + ], + 0, + "default.jpg", + 46, + "che_220707_R8Fd", + 234, + [ + "hall:dex2" + ] + ], + [ + "【46기】루나3.0", + 78, + 15, + 86, + "che_event_집중", + [ + 50620, + 20354, + 19511, + 417650, + 24517 + ], + 0, + "default.jpg", + 46, + "che_220707_R8Fd", + 235, + [ + "hall:dex4", + "hall:occupied", + "hall:warnum" + ] + ], + [ + "【46기】감소영", + 78, + 85, + 15, + "che_event_무쌍", + [ + 462706, + 9211, + 35910, + 75600, + 15686 + ], + 1, + "52903079.jpg?=20220707", + 46, + "che_220707_R8Fd", + 248, + [ + "hall:dex1", + "hall:ttrate" + ] + ], + [ + "【46기】바이돌", + 86, + 16, + 76, + "che_event_신중", + [ + 26577, + 25949, + 14389, + 253507, + 16068 + ], + 0, + "default.jpg", + 46, + "che_220707_R8Fd", + 254, + [ + "hall:betrate" + ] + ], + [ + "【46기】꿀벌", + 76, + 85, + 15, + "che_event_저격", + [ + 18506, + 154821, + 3637, + 46763, + 15457 + ], + 0, + "default.jpg", + 46, + "che_220707_R8Fd", + 303, + [ + "hall:dex2" + ] + ], + [ + "【46기】체비", + 78, + 86, + 15, + "che_event_필살", + [ + 309696, + 16547, + 44788, + 63827, + 23534 + ], + 0, + "default.jpg", + 46, + "che_220707_R8Fd", + 305, + [ + "hall:dex1" + ] + ], + [ + "【46기】허허허", + 15, + 71, + 92, + "che_event_신산", + [ + 0, + 0, + 0, + 0, + 0 + ], + 0, + "default.jpg", + 46, + "che_220707_R8Fd", + 316, + [ + "hall:tirate" + ] + ], + [ + "【46기】월급오른페이트", + 15, + 90, + 73, + "che_event_징병", + [ + 0, + 0, + 0, + 0, + 0 + ], + 1, + "6045256.png?=20220317", + 46, + "che_220707_R8Fd", + 404, + [ + "hall:tsrate" + ] + ], + [ + "【47기】민트토끼", + 17, + 75, + 94, + "che_event_신산", + [ + 704, + 0, + 0, + 162, + 0 + ], + 1, + "de6c89a2.jpg?=20220707", + 47, + "che_220728_ymSZ", + 6, + [ + "hall:firenum", + "hall:tirate" + ] + ], + [ + "【47기】우영우", + 76, + 16, + 96, + "che_event_필살", + [ + 45139, + 47414, + 42847, + 981543, + 30640 + ], + 1, + "60be4a9f.jpg?=20220728", + 47, + "che_220728_ymSZ", + 8, + [ + "chief:9", + "hall:betrate", + "hall:dedication", + "hall:dex4", + "hall:experience", + "hall:killcrew", + "hall:killcrew_person", + "hall:killnum", + "hall:killrate", + "hall:killrate_person", + "hall:occupied", + "hall:warnum", + "hall:winrate" + ] + ], + [ + "【47기】김나영", + 80, + 93, + 15, + "che_event_척사", + [ + 47092, + 55772, + 581357, + 92546, + 32181 + ], + 1, + "6a9eaa87.jpg?=20220728", + 47, + "che_220728_ymSZ", + 10, + [ + "hall:betrate", + "hall:dex3" + ] + ], + [ + "【47기】카레니나", + 76, + 98, + 15, + "che_event_무쌍", + [ + 22567, + 27098, + 477329, + 62410, + 10332 + ], + 1, + "c44ab977.jpg?=20220728", + 47, + "che_220728_ymSZ", + 11, + [ + "hall:dex3", + "hall:tsrate" + ] + ], + [ + "【47기】마요이", + 77, + 15, + 94, + "che_event_신산", + [ + 35754, + 19540, + 38559, + 533490, + 18482 + ], + 1, + "96bc8973.png?=20220529", + 47, + "che_220728_ymSZ", + 12, + [ + "hall:dedication" + ] + ], + [ + "【47기】독구독", + 99, + 72, + 15, + "che_event_공성", + [ + 41851, + 28699, + 33879, + 47916, + 1038341 + ], + 1, + "b6e4e6cc.jpg?=20220730", + 47, + "che_220728_ymSZ", + 14, + [ + "hall:betrate", + "hall:dex5", + "hall:experience", + "hall:killcrew", + "hall:killrate", + "hall:occupied", + "hall:tlrate" + ] + ], + [ + "【47기】천사소녀네티", + 15, + 82, + 90, + "che_event_신산", + [ + 0, + 0, + 0, + 0, + 0 + ], + 1, + "9fab67a1.png?=20220728", + 47, + "che_220728_ymSZ", + 17, + [ + "hall:betgold", + "hall:betwingold", + "hall:firenum" + ] + ], + [ + "【47기】NK", + 87, + 84, + 15, + "che_event_돌격", + [ + 19921, + 39654, + 527658, + 49765, + 43192 + ], + 1, + "cca357a7.jpg?=20220729", + 47, + "che_220728_ymSZ", + 22, + [ + "hall:betgold", + "hall:dex3", + "hall:winrate" + ] + ], + [ + "【47기】역삼역", + 15, + 73, + 97, + "che_event_저격", + [ + 0, + 0, + 0, + 0, + 0 + ], + 1, + "c6c1a55a.jpg?=20220728", + 47, + "che_220728_ymSZ", + 25, + [ + "hall:tirate" + ] + ], + [ + "【47기】슬라임♡", + 94, + 75, + 16, + "che_event_격노", + [ + 35870, + 29392, + 401995, + 72310, + 19680 + ], + 0, + "default.jpg", + 47, + "che_220728_ymSZ", + 31, + [ + "hall:tlrate" + ] + ], + [ + "【47기】이준호", + 79, + 94, + 15, + "che_event_필살", + [ + 80884, + 77147, + 789467, + 56588, + 36767 + ], + 1, + "1b28fcd9.png?=20220728", + 47, + "che_220728_ymSZ", + 39, + [ + "chief:10", + "hall:betgold", + "hall:dex3", + "hall:killcrew_person", + "hall:killnum", + "hall:killrate", + "hall:killrate_person", + "hall:tsrate", + "hall:ttrate" + ] + ], + [ + "【47기】갈근", + 95, + 76, + 15, + "che_event_견고", + [ + 36653, + 56882, + 473091, + 80853, + 32546 + ], + 1, + "0cd671cc.png?=20220815", + 47, + "che_220728_ymSZ", + 42, + [ + "hall:betgold", + "hall:betwin", + "hall:betwingold", + "hall:dex3", + "hall:tlrate" + ] + ], + [ + "【47기】시나모롤", + 91, + 79, + 15, + "che_event_척사", + [ + 30683, + 398243, + 11965, + 30767, + 23895 + ], + 1, + "c5ac308f.png?=20220725", + 47, + "che_220728_ymSZ", + 46, + [ + "hall:dex2", + "hall:tlrate" + ] + ], + [ + "【47기】박일아", + 96, + 75, + 15, + "che_event_돌격", + [ + 56843, + 25672, + 47064, + 61224, + 453210 + ], + 1, + "8608979.gif?=20191024", + 47, + "che_220728_ymSZ", + 47, + [ + "hall:dex5", + "hall:tlrate" + ] + ], + [ + "【47기】마이멜로디", + 96, + 76, + 15, + "che_event_척사", + [ + 40670, + 52817, + 88544, + 121271, + 734905 + ], + 1, + "d2459ba4.png?=20220811", + 47, + "che_220728_ymSZ", + 48, + [ + "hall:dex5", + "hall:killcrew", + "hall:tlrate" + ] + ], + [ + "【47기】더 월드", + 78, + 93, + 15, + "che_event_돌격", + [ + 15785, + 17239, + 206327, + 15142, + 21109 + ], + 1, + "5c53b3a6.jpg?=20220729", + 47, + "che_220728_ymSZ", + 50, + [ + "hall:tsrate" + ] + ], + [ + "【47기】수장", + 15, + 82, + 86, + "che_event_신산", + [ + 0, + 0, + 0, + 0, + 0 + ], + 0, + "default.jpg", + 47, + "che_220728_ymSZ", + 54, + [ + "hall:firenum" + ] + ], + [ + "【47기】스피드왜건", + 84, + 84, + 16, + "che_event_보병", + [ + 364269, + 18026, + 56822, + 62852, + 6694 + ], + 1, + "b112d9ff.png?=20220728", + 47, + "che_220728_ymSZ", + 55, + [ + "hall:dex1" + ] + ], + [ + "【47기】털게", + 91, + 80, + 15, + "che_event_필살", + [ + 991231, + 19254, + 78611, + 60314, + 57149 + ], + 1, + "3b4fd339.jpg?=20220728", + 47, + "che_220728_ymSZ", + 62, + [ + "hall:dex1", + "hall:dex5", + "hall:experience", + "hall:killcrew", + "hall:killcrew_person", + "hall:killnum", + "hall:killrate", + "hall:killrate_person", + "hall:occupied", + "hall:tlrate", + "hall:warnum" + ] + ], + [ + "【47기】엔틱", + 76, + 15, + 95, + "che_event_신중", + [ + 55267, + 27530, + 65775, + 534673, + 40861 + ], + 1, + "b11efa74.webp?=20220707", + 47, + "che_220728_ymSZ", + 65, + [ + "hall:betgold", + "hall:betwin", + "hall:betwingold", + "hall:experience", + "hall:occupied", + "hall:tirate" + ] + ], + [ + "【47기】방가방가햄토리", + 80, + 91, + 15, + "che_event_격노", + [ + 22605, + 44321, + 460767, + 62766, + 18425 + ], + 0, + "default.jpg", + 47, + "che_220728_ymSZ", + 68, + [ + "hall:dex3" + ] + ], + [ + "【47기】불패", + 81, + 92, + 15, + "che_event_위압", + [ + 56938, + 418405, + 13674, + 56726, + 16210 + ], + 1, + "45efe231.jpg?=20220726", + 47, + "che_220728_ymSZ", + 69, + [ + "hall:dex2" + ] + ], + [ + "【47기】DIO", + 80, + 92, + 15, + "che_event_보병", + [ + 319598, + 2336, + 12019, + 36923, + 15603 + ], + 1, + "08fffee2.jpg?=20220728", + 47, + "che_220728_ymSZ", + 70, + [ + "hall:dex1" + ] + ], + [ + "【47기】고래", + 15, + 95, + 76, + "che_event_돌격", + [ + 0, + 0, + 0, + 0, + 0 + ], + 1, + "56f491fe.jpg?=20220728", + 47, + "che_220728_ymSZ", + 72, + [ + "hall:tsrate" + ] + ], + [ + "【47기】제갈여포", + 92, + 15, + 83, + "che_event_필살", + [ + 59726, + 27847, + 41080, + 814950, + 37209 + ], + 1, + "d87fd80.png?=20220515", + 47, + "che_220728_ymSZ", + 74, + [ + "hall:dex4", + "hall:experience", + "hall:killcrew", + "hall:killcrew_person", + "hall:killnum", + "hall:tlrate", + "hall:warnum", + "hall:winrate" + ] + ], + [ + "【47기】나이샤", + 78, + 15, + 93, + "che_event_척사", + [ + 23900, + 24220, + 14725, + 296416, + 8125 + ], + 0, + "default.jpg", + 47, + "che_220728_ymSZ", + 79, + [ + "hall:ttrate" + ] + ], + [ + "【47기】나나", + 89, + 81, + 15, + "che_event_저격", + [ + 110144, + 162520, + 429269, + 80834, + 46795 + ], + 0, + "default.jpg", + 47, + "che_220728_ymSZ", + 80, + [ + "hall:dex5", + "hall:occupied", + "hall:warnum" + ] + ], + [ + "【47기】카이스트", + 80, + 15, + 93, + "che_event_집중", + [ + 60538, + 13673, + 45040, + 572383, + 30164 + ], + 1, + "9361ef8.jpg?=20180907", + 47, + "che_220728_ymSZ", + 81, + [ + "hall:betwin", + "hall:dex4" + ] + ], + [ + "【47기】네이미", + 90, + 79, + 16, + "che_event_돌격", + [ + 46020, + 219345, + 151332, + 60672, + 18671 + ], + 0, + "default.jpg", + 47, + "che_220728_ymSZ", + 87, + [ + "hall:dex2" + ] + ], + [ + "【47기】삼모처음하는강아지", + 91, + 80, + 15, + "che_event_저격", + [ + 313850, + 201720, + 105675, + 80531, + 27310 + ], + 0, + "default.jpg", + 47, + "che_220728_ymSZ", + 88, + [ + "hall:tlrate" + ] + ], + [ + "【47기】자택경비담당자", + 79, + 90, + 16, + "che_event_의술", + [ + 16176, + 393809, + 26776, + 55294, + 19707 + ], + 1, + "bae896c1.png?=20220729", + 47, + "che_220728_ymSZ", + 89, + [ + "hall:dex2" + ] + ], + [ + "【47기】토마토", + 77, + 16, + 92, + "che_event_필살", + [ + 34278, + 28085, + 46780, + 609588, + 39404 + ], + 1, + "56e43f99.jpg?=20220728", + 47, + "che_220728_ymSZ", + 93, + [ + "hall:dex4" + ] + ], + [ + "【47기】십원", + 83, + 90, + 15, + "che_event_척사", + [ + 541616, + 17988, + 67485, + 68543, + 35102 + ], + 0, + "default.jpg", + 47, + "che_220728_ymSZ", + 94, + [ + "hall:betgold", + "hall:betrate", + "hall:betwingold", + "hall:dex1", + "hall:ttrate" + ] + ], + [ + "【47기】독미손", + 76, + 15, + 98, + "che_event_필살", + [ + 72285, + 10223, + 10907, + 605429, + 17524 + ], + 1, + "979d7f25.jpg?=20220728", + 47, + "che_220728_ymSZ", + 95, + [ + "hall:betgold", + "hall:betrate", + "hall:betwin", + "hall:betwingold", + "hall:dex4", + "hall:tirate" + ] + ], + [ + "【47기】네시", + 79, + 15, + 92, + "che_event_필살", + [ + 81191, + 31873, + 81909, + 638802, + 55092 + ], + 0, + "default.jpg", + 47, + "che_220728_ymSZ", + 96, + [ + "hall:dex4", + "hall:dex5" + ] + ], + [ + "【47기】킹구", + 78, + 15, + 92, + "che_event_척사", + [ + 16515, + 15519, + 22209, + 804223, + 13996 + ], + 1, + "35f1b7d.png?=20220106", + 47, + "che_220728_ymSZ", + 97, + [ + "chief:7", + "hall:dedication", + "hall:dex4", + "hall:experience", + "hall:killrate_person" + ] + ], + [ + "【47기】9.9", + 79, + 93, + 15, + "che_event_무쌍", + [ + 511205, + 4610, + 23593, + 40886, + 25773 + ], + 0, + "default.jpg", + 47, + "che_220728_ymSZ", + 99, + [ + "hall:betrate", + "hall:dex1", + "hall:firenum" + ] + ], + [ + "【47기】사스케", + 80, + 91, + 15, + "che_event_필살", + [ + 974465, + 37395, + 67806, + 96648, + 50594 + ], + 1, + "f9c9d6b6.jpg?=20220613", + 47, + "che_220728_ymSZ", + 100, + [ + "chief:6", + "hall:betgold", + "hall:betwin", + "hall:betwingold", + "hall:dex1", + "hall:dex5", + "hall:experience", + "hall:killcrew", + "hall:killcrew_person", + "hall:killnum", + "hall:killrate", + "hall:killrate_person", + "hall:occupied", + "hall:warnum", + "hall:winrate" + ] + ], + [ + "【47기】SARS", + 76, + 15, + 95, + "che_event_신중", + [ + 37504, + 9284, + 31223, + 443215, + 14779 + ], + 1, + "b84944.jpg?=20180829", + 47, + "che_220728_ymSZ", + 101, + [ + "hall:betwin" + ] + ], + [ + "【47기】임사영", + 79, + 96, + 15, + "che_event_무쌍", + [ + 1395214, + 91647, + 72323, + 63836, + 44061 + ], + 1, + "5cd8be38.jpg?=20220720", + 47, + "che_220728_ymSZ", + 102, + [ + "chief:12", + "hall:betwin", + "hall:dedication", + "hall:dex1", + "hall:experience", + "hall:killcrew", + "hall:killcrew_person", + "hall:killnum", + "hall:killrate", + "hall:killrate_person", + "hall:occupied", + "hall:warnum", + "hall:winrate" + ] + ], + [ + "【47기】평민킬러", + 79, + 95, + 15, + "che_event_무쌍", + [ + 41688, + 66261, + 1040852, + 54254, + 44225 + ], + 1, + "70bf9aac.jpg?=20220707", + 47, + "che_220728_ymSZ", + 103, + [ + "chief:8", + "hall:dex3", + "hall:killcrew", + "hall:killcrew_person", + "hall:killnum", + "hall:killrate", + "hall:occupied", + "hall:warnum" + ] + ], + [ + "【47기】Hide_D", + 79, + 15, + 93, + "che_event_필살", + [ + 65336, + 46446, + 54610, + 788230, + 41027 + ], + 1, + "8cf2033.png?=20220228", + 47, + "che_220728_ymSZ", + 104, + [ + "chief:5", + "hall:betrate", + "hall:dedication", + "hall:dex4", + "hall:experience", + "hall:killcrew", + "hall:killcrew_person", + "hall:killnum", + "hall:killrate", + "hall:killrate_person", + "hall:winrate" + ] + ], + [ + "【47기】나이스네짱!", + 75, + 97, + 15, + "che_event_위압", + [ + 31230, + 5766, + 295692, + 61374, + 24279 + ], + 1, + "12e4fa8e.png?=20220708", + 47, + "che_220728_ymSZ", + 106, + [ + "hall:tsrate" + ] + ], + [ + "【47기】껄룩", + 15, + 94, + 75, + "che_event_돌격", + [ + 0, + 0, + 0, + 0, + 0 + ], + 1, + "14e967cf.jpg?=20220728", + 47, + "che_220728_ymSZ", + 107, + [ + "hall:firenum", + "hall:tsrate" + ] + ], + [ + "【47기】호나", + 89, + 79, + 15, + "che_event_견고", + [ + 536812, + 12966, + 27166, + 39630, + 10090 + ], + 0, + "default.jpg", + 47, + "che_220728_ymSZ", + 108, + [ + "hall:betrate", + "hall:dex1" + ] + ], + [ + "【47기】퍄퍄", + 74, + 98, + 15, + "che_event_저격", + [ + 21135, + 17490, + 242858, + 29833, + 14432 + ], + 0, + "default.jpg", + 47, + "che_220728_ymSZ", + 109, + [ + "hall:firenum", + "hall:tsrate" + ] + ], + [ + "【47기】와일드플라워", + 93, + 77, + 16, + "che_event_필살", + [ + 12387, + 50714, + 555878, + 58674, + 40869 + ], + 0, + "default.jpg", + 47, + "che_220728_ymSZ", + 110, + [ + "hall:dex3", + "hall:occupied", + "hall:tlrate" + ] + ], + [ + "【47기】큐베", + 77, + 15, + 95, + "che_event_필살", + [ + 77419, + 21660, + 22756, + 507655, + 42931 + ], + 1, + "afd0d98c.png?=20220728", + 47, + "che_220728_ymSZ", + 112, + [ + "hall:betwingold", + "hall:ttrate" + ] + ], + [ + "【47기】군필22학번", + 78, + 15, + 93, + "che_event_집중", + [ + 81892, + 27842, + 60506, + 654540, + 35163 + ], + 0, + "default.jpg", + 47, + "che_220728_ymSZ", + 113, + [ + "hall:betgold", + "hall:betwingold", + "hall:dedication", + "hall:dex4", + "hall:winrate" + ] + ], + [ + "【47기】UK", + 85, + 17, + 84, + "che_event_환술", + [ + 30831, + 22293, + 31801, + 344233, + 38122 + ], + 1, + "5233cf4d.jpg?=20220729", + 47, + "che_220728_ymSZ", + 114, + [ + "hall:betwin" + ] + ], + [ + "【47기】불멍", + 74, + 19, + 91, + "che_event_집중", + [ + 7964, + 1153, + 737, + 68434, + 4234 + ], + 1, + "9293a176.png?=20220728", + 47, + "che_220728_ymSZ", + 115, + [ + "hall:betrate", + "hall:betwingold", + "hall:ttrate", + "hall:winrate" + ] + ], + [ + "【47기】페르난도", + 78, + 94, + 15, + "che_event_필살", + [ + 21067, + 470679, + 11539, + 34388, + 21524 + ], + 1, + "6c07b3e.jpg?=20220305", + 47, + "che_220728_ymSZ", + 116, + [ + "hall:dex2", + "hall:firenum" + ] + ], + [ + "【47기】화난나옹이", + 79, + 93, + 15, + "che_event_척사", + [ + 714273, + 6702, + 39725, + 72213, + 13247 + ], + 1, + "44fa6a24.png?=20220610", + 47, + "che_220728_ymSZ", + 118, + [ + "hall:dex1", + "hall:killcrew_person", + "hall:warnum" + ] + ], + [ + "【47기】충치", + 77, + 15, + 96, + "che_event_신산", + [ + 37485, + 10757, + 32540, + 587576, + 16093 + ], + 1, + "ff4431ac.png?=20220728", + 47, + "che_220728_ymSZ", + 120, + [ + "hall:betrate", + "hall:dex4", + "hall:ttrate" + ] + ], + [ + "【47기】외심장", + 78, + 16, + 95, + "che_event_집중", + [ + 14730, + 30945, + 36560, + 556340, + 33487 + ], + 1, + "36110cd.jpg?=20180826", + 47, + "che_220728_ymSZ", + 121, + [ + "hall:tirate", + "hall:ttrate" + ] + ], + [ + "【47기】사쿠라미코", + 76, + 15, + 95, + "che_event_집중", + [ + 70799, + 25011, + 24428, + 557767, + 22681 + ], + 1, + "caa96049.jpg?=20220728", + 47, + "che_220728_ymSZ", + 123, + [ + "hall:ttrate" + ] + ], + [ + "【47기】ARES군주", + 78, + 94, + 17, + "che_event_무쌍", + [ + 64833, + 58972, + 751151, + 96252, + 47568 + ], + 1, + "5590a863.jpg?=20220729", + 47, + "che_220728_ymSZ", + 124, + [ + "chief:11", + "hall:betwin", + "hall:dedication", + "hall:dex3", + "hall:dex5", + "hall:experience", + "hall:killnum", + "hall:killrate", + "hall:killrate_person", + "hall:occupied", + "hall:winrate" + ] + ], + [ + "【47기】찍먹", + 79, + 96, + 15, + "che_event_필살", + [ + 10713, + 6088, + 602219, + 42530, + 22803 + ], + 0, + "default.jpg", + 47, + "che_220728_ymSZ", + 126, + [ + "hall:dex3", + "hall:firenum", + "hall:killnum", + "hall:killrate", + "hall:killrate_person", + "hall:tsrate", + "hall:winrate" + ] + ], + [ + "【47기】칠리크랩", + 15, + 80, + 90, + "che_event_신산", + [ + 0, + 0, + 0, + 0, + 0 + ], + 0, + "default.jpg", + 47, + "che_220728_ymSZ", + 127, + [ + "hall:dedication" + ] + ], + [ + "【47기】여행자", + 80, + 90, + 16, + "che_event_무쌍", + [ + 78926, + 826857, + 24802, + 100685, + 48475 + ], + 1, + "6cf3163d.png?=20220809", + 47, + "che_220728_ymSZ", + 130, + [ + "hall:dex2", + "hall:dex5", + "hall:killcrew", + "hall:killcrew_person", + "hall:warnum" + ] + ], + [ + "【47기】아라타키 이토", + 82, + 88, + 15, + "che_event_무쌍", + [ + 695040, + 16943, + 71538, + 83635, + 24581 + ], + 1, + "a76349e6.png?=20220810", + 47, + "che_220728_ymSZ", + 132, + [ + "hall:dex1", + "hall:warnum" + ] + ], + [ + "【47기】사하드", + 73, + 16, + 97, + "che_event_반계", + [ + 53739, + 7321, + 30712, + 306783, + 21123 + ], + 1, + "31f10b32.jpg?=20220717", + 47, + "che_220728_ymSZ", + 135, + [ + "hall:tirate" + ] + ], + [ + "【47기】소현", + 88, + 81, + 15, + "che_event_위압", + [ + 87404, + 410457, + 13143, + 57294, + 29735 + ], + 1, + "63dd05f8.jpg?=20220815", + 47, + "che_220728_ymSZ", + 137, + [ + "hall:betgold", + "hall:betwin", + "hall:betwingold", + "hall:dex2" + ] + ], + [ + "【47기】멍", + 15, + 82, + 89, + "che_event_신산", + [ + 0, + 0, + 0, + 0, + 0 + ], + 1, + "5cedbb3.jpg?=20190817", + 47, + "che_220728_ymSZ", + 138, + [ + "hall:dedication", + "hall:firenum" + ] + ], + [ + "【47기】rwitch", + 76, + 15, + 95, + "che_event_의술", + [ + 11280, + 29289, + 17602, + 394645, + 18466 + ], + 1, + "54e527.png?=20201024", + 47, + "che_220728_ymSZ", + 292, + [ + "hall:tirate" + ] + ], + [ + "【47기】천괴금", + 75, + 15, + 93, + "che_event_의술", + [ + 48730, + 47367, + 33474, + 407921, + 53847 + ], + 1, + "c5fbb210.png?=20220729", + 47, + "che_220728_ymSZ", + 300, + [ + "hall:dex5" + ] + ], + [ + "【47기】호각", + 76, + 93, + 16, + "che_event_의술", + [ + 23960, + 17649, + 274831, + 43951, + 16199 + ], + 0, + "default.jpg", + 47, + "che_220728_ymSZ", + 303, + [ + "hall:firenum", + "hall:tsrate" + ] + ], + [ + "【47기】불끈불끈", + 15, + 73, + 98, + "che_event_징병", + [ + 0, + 0, + 0, + 0, + 0 + ], + 0, + "default.jpg", + 47, + "che_220728_ymSZ", + 317, + [ + "hall:tirate", + "hall:ttrate" + ] + ], + [ + "【47기】무지무지", + 16, + 71, + 99, + "che_event_척사", + [ + 0, + 0, + 0, + 0, + 0 + ], + 1, + "0d9869ae.png?=20220730", + 47, + "che_220728_ymSZ", + 318, + [ + "hall:tirate" + ] + ], + [ + "【47기】사슴곰", + 16, + 72, + 98, + "che_event_반계", + [ + 0, + 0, + 0, + 0, + 0 + ], + 1, + "74dec00.png?=20201114", + 47, + "che_220728_ymSZ", + 355, + [ + "hall:tirate" + ] + ], + [ + "【47기】우마무스메", + 15, + 83, + 88, + "che_event_돌격", + [ + 0, + 0, + 0, + 0, + 0 + ], + 0, + "default.jpg", + 47, + "che_220728_ymSZ", + 391, + [ + "hall:dedication", + "hall:ttrate" + ] + ], + [ + "【47기】클레", + 90, + 76, + 15, + "che_event_무쌍", + [ + 55555, + 277211, + 115116, + 59275, + 22898 + ], + 1, + "f1c9d1ef.jpg?=20220803", + 47, + "che_220728_ymSZ", + 520, + [ + "hall:dex2" + ] + ], + [ + "【47기】페이트", + 16, + 92, + 74, + "che_event_저격", + [ + 0, + 0, + 0, + 0, + 0 + ], + 1, + "6045256.png?=20220317", + 47, + "che_220728_ymSZ", + 524, + [ + "hall:tsrate" + ] + ], + [ + "【47기】아무것도안하는사람", + 76, + 91, + 15, + "che_event_척사", + [ + 63895, + 308625, + 22949, + 50989, + 36000 + ], + 0, + "default.jpg", + 47, + "che_220728_ymSZ", + 539, + [ + "hall:dex2" + ] + ], + [ + "【47기】Bianchi", + 77, + 86, + 15, + "che_event_위압", + [ + 36497, + 306430, + 41839, + 39274, + 24241 + ], + 0, + "default.jpg", + 47, + "che_220728_ymSZ", + 640, + [ + "hall:dex2" + ] + ], + [ + "【47기】멜덩이멜랑멜랑", + 15, + 72, + 86, + "che_event_필살", + [ + 2254, + 0, + 0, + 0, + 132 + ], + 0, + "default.jpg", + 47, + "che_220728_ymSZ", + 693, + [ + "hall:killrate_person" + ] + ], + [ + "【48기】셀레미", + 65, + 13, + 83, + "che_event_신중", + [ + 4312, + 1656, + 7877, + 308888, + 12228 + ], + 1, + "6145713a.jpg?=20220829", + 48, + "che_220901_bxX6", + 7, + [ + "hall:betgold", + "hall:betwingold", + "hall:dedication" + ] + ], + [ + "【48기】칼든피아노", + 66, + 82, + 13, + "che_event_필살", + [ + 24599, + 272474, + 13144, + 50554, + 15099 + ], + 1, + "48055d32.jpg?=20220912", + 48, + "che_220901_bxX6", + 8, + [ + "hall:betrate", + "hall:dex2", + "hall:tsrate" + ] + ], + [ + "【48기】세레나", + 66, + 83, + 13, + "che_event_필살", + [ + 30310, + 317828, + 5191, + 42959, + 7662 + ], + 1, + "f17aed2a.png?=20220831", + 48, + "che_220901_bxX6", + 12, + [ + "hall:dex2", + "hall:tsrate" + ] + ], + [ + "【48기】SARS", + 84, + 63, + 13, + "che_event_필살", + [ + 20200, + 12104, + 25173, + 22872, + 665032 + ], + 1, + "b84944.jpg?=20180829", + 48, + "che_220901_bxX6", + 13, + [ + "chief:10", + "hall:betrate", + "hall:dex5", + "hall:experience", + "hall:killcrew", + "hall:killcrew_person", + "hall:killnum", + "hall:killrate", + "hall:occupied", + "hall:tlrate", + "hall:warnum" + ] + ], + [ + "【48기】임사영", + 68, + 13, + 82, + "che_event_집중", + [ + 33680, + 28459, + 20177, + 531650, + 40848 + ], + 1, + "5cd8be38.jpg?=20220720", + 48, + "che_220901_bxX6", + 19, + [ + "chief:7", + "hall:betgold", + "hall:betwin", + "hall:betwingold", + "hall:dex4", + "hall:killcrew", + "hall:killcrew_person", + "hall:killnum", + "hall:warnum", + "hall:winrate" + ] + ], + [ + "【48기】칼든멜로디", + 66, + 13, + 82, + "che_event_신중", + [ + 32413, + 13947, + 12109, + 248813, + 22442 + ], + 1, + "46f5474b.jpg?=20220924", + 48, + "che_220901_bxX6", + 22, + [ + "hall:betrate", + "hall:tirate" + ] + ], + [ + "【48기】마요이", + 66, + 14, + 81, + "che_event_환술", + [ + 51400, + 8947, + 18006, + 421087, + 41099 + ], + 1, + "96bc8973.png?=20220529", + 48, + "che_220901_bxX6", + 23, + [ + "hall:dex4", + "hall:dex5", + "hall:experience" + ] + ], + [ + "【48기】독구", + 67, + 13, + 82, + "che_event_신중", + [ + 21257, + 11151, + 9977, + 425459, + 26280 + ], + 1, + "f729c74e.png?=20220801", + 48, + "che_220901_bxX6", + 24, + [ + "chief:5", + "hall:betgold", + "hall:betwin", + "hall:betwingold", + "hall:dex4" + ] + ], + [ + "【48기】무지무지막지", + 15, + 64, + 81, + "che_event_집중", + [ + 0, + 0, + 0, + 0, + 0 + ], + 1, + "0d9869ae.png?=20220730", + 48, + "che_220901_bxX6", + 26, + [ + "hall:tirate" + ] + ], + [ + "【48기】미래없는영끌족", + 86, + 64, + 13, + "che_event_필살", + [ + 459095, + 8040, + 23149, + 36803, + 23692 + ], + 1, + "83e5de42.jpg?=20220924", + 48, + "che_220901_bxX6", + 27, + [ + "hall:dex1", + "hall:killcrew", + "hall:killnum", + "hall:occupied", + "hall:tlrate" + ] + ], + [ + "【48기】네시", + 81, + 92, + 15, + "che_event_위압", + [ + 71579, + 14790, + 540560, + 73502, + 4573 + ], + 0, + "default.jpg", + 48, + "che_220901_bxX6", + 28, + [ + "hall:dex3" + ] + ], + [ + "【48기】김나영", + 68, + 82, + 13, + "che_event_필살", + [ + 48198, + 681993, + 32114, + 58199, + 60708 + ], + 1, + "6a9eaa87.jpg?=20220728", + 48, + "che_220901_bxX6", + 30, + [ + "hall:dex2", + "hall:dex5", + "hall:experience", + "hall:killcrew", + "hall:killcrew_person", + "hall:killnum", + "hall:killrate_person", + "hall:occupied", + "hall:warnum", + "hall:winrate" + ] + ], + [ + "【48기】Tiger VI", + 86, + 63, + 13, + "che_event_필살", + [ + 9800, + 27201, + 430728, + 47037, + 29783 + ], + 1, + "682fea71.png?=20220901", + 48, + "che_220901_bxX6", + 31, + [ + "hall:dex3", + "hall:killnum", + "hall:killrate", + "hall:killrate_person", + "hall:tlrate", + "hall:winrate" + ] + ], + [ + "【48기】11", + 78, + 95, + 15, + "che_event_위압", + [ + 404558, + 18858, + 79717, + 60840, + 15455 + ], + 0, + "default.jpg", + 48, + "che_220901_bxX6", + 37, + [ + "hall:betrate", + "hall:dex3" + ] + ], + [ + "【48기】륜", + 70, + 13, + 78, + "che_event_환술", + [ + 24842, + 18411, + 7887, + 363091, + 38708 + ], + 1, + "e56dcf5a.png?=20220919", + 48, + "che_220901_bxX6", + 40, + [ + "hall:occupied" + ] + ], + [ + "【48기】페르난도", + 72, + 76, + 13, + "che_event_필살", + [ + 25470, + 19426, + 453469, + 96155, + 55796 + ], + 1, + "6c07b3e.jpg?=20220305", + 48, + "che_220901_bxX6", + 45, + [ + "hall:dex3", + "hall:dex5" + ] + ], + [ + "【48기】카이스트", + 67, + 13, + 80, + "che_event_척사", + [ + 41918, + 30827, + 28133, + 473604, + 41197 + ], + 1, + "9361ef8.jpg?=20180907", + 48, + "che_220901_bxX6", + 46, + [ + "hall:betgold", + "hall:betwin", + "hall:betwingold", + "hall:dex2", + "hall:dex4", + "hall:warnum" + ] + ], + [ + "【48기】Hide_D", + 66, + 13, + 84, + "che_event_환술", + [ + 62367, + 18673, + 18910, + 699401, + 41774 + ], + 1, + "8cf2033.png?=20220228", + 48, + "che_220901_bxX6", + 47, + [ + "chief:12", + "hall:dex4", + "hall:dex5", + "hall:experience", + "hall:killcrew", + "hall:killcrew_person", + "hall:killnum", + "hall:killrate", + "hall:killrate_person", + "hall:occupied", + "hall:tirate", + "hall:warnum", + "hall:winrate" + ] + ], + [ + "【48기】바나낫", + 65, + 83, + 13, + "che_event_견고", + [ + 340155, + 3151, + 12962, + 28576, + 11869 + ], + 1, + "10f12b0c.gif?=20220829", + 48, + "che_220901_bxX6", + 53, + [ + "hall:dex1", + "hall:experience", + "hall:firenum", + "hall:occupied" + ] + ], + [ + "【48기】금강", + 67, + 81, + 13, + "che_event_필살", + [ + 16461, + 289705, + 7147, + 54260, + 11652 + ], + 1, + "a84b4220.jpg?=20220901", + 48, + "che_220901_bxX6", + 57, + [ + "hall:betrate", + "hall:dex2", + "hall:tsrate" + ] + ], + [ + "【48기】독구리", + 84, + 64, + 13, + "che_event_필살", + [ + 22088, + 25699, + 10494, + 57222, + 423367 + ], + 1, + "b316e3cb.webp?=20220830", + 48, + "che_220901_bxX6", + 58, + [ + "hall:betgold", + "hall:betwin", + "hall:betwingold", + "hall:dex5", + "hall:killrate", + "hall:killrate_person", + "hall:tlrate", + "hall:winrate" + ] + ], + [ + "【48기】꽈배기", + 65, + 13, + 82, + "che_event_신산", + [ + 10715, + 2712, + 11971, + 137351, + 4987 + ], + 0, + "default.jpg", + 48, + "che_220901_bxX6", + 63, + [ + "hall:betgold", + "hall:betwingold" + ] + ], + [ + "【48기】이드", + 65, + 13, + 84, + "che_event_집중", + [ + 26452, + 6930, + 6396, + 278151, + 14061 + ], + 1, + "5898830.jpg?=20210831", + 48, + "che_220901_bxX6", + 64, + [ + "hall:dedication" + ] + ], + [ + "【48기】밧줄이 유일한 희망", + 13, + 82, + 65, + "che_event_의술", + [ + 718, + 0, + 2056, + 252, + 0 + ], + 0, + "default.jpg", + 48, + "che_220901_bxX6", + 66, + [ + "hall:tsrate" + ] + ], + [ + "【48기】갈근", + 94, + 79, + 15, + "che_event_견고", + [ + 27734, + 59046, + 792706, + 116215, + 53247 + ], + 1, + "8d1d320d.png?=20220904", + 48, + "che_220901_bxX6", + 68, + [ + "hall:betwin", + "hall:dex2", + "hall:dex3", + "hall:killcrew_person", + "hall:tlrate", + "hall:warnum" + ] + ], + [ + "【48기】로비", + 77, + 13, + 70, + "che_event_환술", + [ + 29872, + 9607, + 11895, + 184572, + 7583 + ], + 1, + "d38cb34.png?=20220106", + 48, + "che_220901_bxX6", + 69, + [ + "hall:tlrate" + ] + ], + [ + "【48기】독재자", + 65, + 13, + 84, + "che_event_집중", + [ + 27278, + 10634, + 9840, + 432666, + 43128 + ], + 1, + "13753408.jpg?=20220907", + 48, + "che_220901_bxX6", + 70, + [ + "hall:killrate", + "hall:killrate_person", + "hall:tirate" + ] + ], + [ + "【48기】Hide_Doc", + 77, + 96, + 16, + "che_event_척사", + [ + 979329, + 8944, + 21442, + 27678, + 24185 + ], + 1, + "066fbe95.png?=20220908", + 48, + "che_220901_bxX6", + 73, + [ + "hall:dedication", + "hall:dex1", + "hall:experience", + "hall:killcrew", + "hall:killcrew_person", + "hall:killnum", + "hall:killrate", + "hall:killrate_person", + "hall:winrate" + ] + ], + [ + "【48기】예쁜꽃에는독이있다", + 65, + 13, + 81, + "che_event_필살", + [ + 27879, + 22144, + 3870, + 375596, + 27637 + ], + 1, + "572172fc.png?=20220901", + 48, + "che_220901_bxX6", + 74, + [ + "hall:dex4", + "hall:occupied", + "hall:winrate" + ] + ], + [ + "【48기】독단비", + 86, + 60, + 13, + "che_event_저격", + [ + 26058, + 18580, + 31223, + 64808, + 252200 + ], + 1, + "1e2e3608.png?=20220902", + 48, + "che_220901_bxX6", + 76, + [ + "hall:dex5", + "hall:tlrate" + ] + ], + [ + "【48기】악질", + 15, + 79, + 93, + "che_event_신산", + [ + 0, + 0, + 0, + 0, + 0 + ], + 0, + "default.jpg", + 48, + "che_220901_bxX6", + 78, + [ + "hall:firenum" + ] + ], + [ + "【48기】원영토끼", + 14, + 85, + 62, + "che_event_징병", + [ + 0, + 0, + 0, + 0, + 0 + ], + 1, + "e95b192f.jpg?=20220811", + 48, + "che_220901_bxX6", + 79, + [ + "hall:firenum", + "hall:tsrate", + "hall:ttrate" + ] + ], + [ + "【48기】돌아온너구리", + 14, + 74, + 72, + "che_event_신산", + [ + 0, + 0, + 0, + 0, + 0 + ], + 1, + "79dbce5.jpg?=20210918", + 48, + "che_220901_bxX6", + 80, + [ + "hall:firenum", + "hall:ttrate" + ] + ], + [ + "【48기】독극물", + 65, + 13, + 85, + "che_event_필살", + [ + 22962, + 7179, + 6977, + 508782, + 33109 + ], + 1, + "f2b3955b.png?=20220901", + 48, + "che_220901_bxX6", + 84, + [ + "chief:9", + "hall:dedication", + "hall:experience", + "hall:killrate", + "hall:killrate_person", + "hall:occupied", + "hall:tirate", + "hall:winrate" + ] + ], + [ + "【48기】호나", + 72, + 13, + 76, + "che_event_신산", + [ + 27874, + 4926, + 30184, + 505273, + 41311 + ], + 0, + "default.jpg", + 48, + "che_220901_bxX6", + 85, + [ + "hall:betrate", + "hall:dex4", + "hall:ttrate" + ] + ], + [ + "【48기】독워그레이몬", + 87, + 60, + 14, + "che_event_공성", + [ + 11077, + 2143, + 7543, + 7439, + 406416 + ], + 1, + "1eb81f35.png?=20220831", + 48, + "che_220901_bxX6", + 86, + [ + "hall:betgold", + "hall:betwin", + "hall:betwingold", + "hall:dedication", + "hall:dex5", + "hall:experience", + "hall:killrate", + "hall:occupied", + "hall:tlrate", + "hall:winrate" + ] + ], + [ + "【48기】6시내고향", + 68, + 79, + 14, + "che_event_필살", + [ + 597327, + 12763, + 22243, + 75143, + 38651 + ], + 1, + "9c85b757.png?=20220902", + 48, + "che_220901_bxX6", + 87, + [ + "chief:6", + "hall:betrate", + "hall:dex1", + "hall:killcrew", + "hall:killcrew_person", + "hall:killnum", + "hall:killrate_person", + "hall:warnum" + ] + ], + [ + "【48기】하루", + 68, + 78, + 14, + "che_event_무쌍", + [ + 562881, + 14485, + 14840, + 17244, + 23405 + ], + 1, + "664b0a55.jpg?=20220923", + 48, + "che_220901_bxX6", + 88, + [ + "chief:11", + "hall:betgold", + "hall:betwin", + "hall:betwingold", + "hall:dex1", + "hall:experience", + "hall:killcrew", + "hall:killcrew_person", + "hall:killnum", + "hall:killrate", + "hall:killrate_person", + "hall:occupied", + "hall:warnum", + "hall:winrate" + ] + ], + [ + "【48기】내정내정", + 61, + 14, + 85, + "che_event_신산", + [ + 7518, + 2996, + 5920, + 68768, + 2189 + ], + 0, + "default.jpg", + 48, + "che_220901_bxX6", + 90, + [ + "hall:tirate" + ] + ], + [ + "【48기】불곰", + 13, + 84, + 62, + "che_event_척사", + [ + 0, + 0, + 0, + 0, + 0 + ], + 1, + "5cd8411.png?=20220513", + 48, + "che_220901_bxX6", + 92, + [ + "hall:firenum" + ] + ], + [ + "【48기】웨이더", + 69, + 77, + 14, + "che_event_저격", + [ + 35031, + 174890, + 9819, + 40959, + 14658 + ], + 1, + "4035e659.png?=20220901", + 48, + "che_220901_bxX6", + 93, + [ + "hall:dex2", + "hall:ttrate" + ] + ], + [ + "【48기】Hide의과거형HideD", + 69, + 79, + 14, + "che_event_척사", + [ + 19648, + 18004, + 576863, + 30865, + 25800 + ], + 1, + "54fe0f3d.jpg?=20220926", + 48, + "che_220901_bxX6", + 96, + [ + "chief:8", + "hall:betrate", + "hall:dex3", + "hall:experience", + "hall:killcrew", + "hall:killcrew_person", + "hall:killnum", + "hall:killrate", + "hall:killrate_person", + "hall:warnum" + ] + ], + [ + "【48기】나옹이", + 79, + 16, + 93, + "che_event_집중", + [ + 67980, + 31675, + 27875, + 872009, + 62717 + ], + 1, + "44fa6a24.png?=20220610", + 48, + "che_220901_bxX6", + 97, + [ + "hall:dex4", + "hall:killcrew", + "hall:killcrew_person", + "hall:warnum" + ] + ], + [ + "【48기】Air", + 66, + 82, + 13, + "che_event_돌격", + [ + 9108, + 1288, + 165539, + 40962, + 10805 + ], + 0, + "default.jpg", + 48, + "che_220901_bxX6", + 98, + [ + "hall:dex3", + "hall:ttrate" + ] + ], + [ + "【48기】대교", + 83, + 62, + 13, + "che_event_척사", + [ + 156381, + 1464, + 9881, + 43255, + 66924 + ], + 1, + "9f0e6dcc.jpg?=20220808", + 48, + "che_220901_bxX6", + 99, + [ + "hall:dex5", + "hall:tlrate", + "hall:ttrate" + ] + ], + [ + "【48기】히메모리루나", + 68, + 13, + 81, + "che_event_집중", + [ + 30133, + 29686, + 5267, + 301207, + 22490 + ], + 1, + "a0ebf2d4.jpg?=20220902", + 48, + "che_220901_bxX6", + 101, + [ + "hall:dex2", + "hall:tirate" + ] + ], + [ + "【48기】유카", + 79, + 92, + 15, + "che_event_위압", + [ + 498928, + 2276, + 33601, + 89915, + 22495 + ], + 0, + "default.jpg", + 48, + "che_220901_bxX6", + 102, + [ + "hall:dex1" + ] + ], + [ + "【48기】엔틱", + 64, + 13, + 83, + "che_event_척사", + [ + 20699, + 4767, + 12731, + 187000, + 10813 + ], + 1, + "b11efa74.webp?=20220707", + 48, + "che_220901_bxX6", + 104, + [ + "hall:tirate" + ] + ], + [ + "【48기】벽돌도둑", + 13, + 85, + 61, + "che_event_견고", + [ + 0, + 0, + 0, + 0, + 0 + ], + 1, + "38cd7c1d.png?=20220901", + 48, + "che_220901_bxX6", + 105, + [ + "hall:firenum", + "hall:tsrate" + ] + ], + [ + "【48기】와일드플라워", + 65, + 83, + 13, + "che_event_척사", + [ + 224496, + 3504, + 14168, + 22184, + 20109 + ], + 0, + "default.jpg", + 48, + "che_220901_bxX6", + 108, + [ + "hall:tsrate" + ] + ], + [ + "【48기】소현", + 90, + 81, + 16, + "che_event_견고", + [ + 81283, + 675506, + 14684, + 111500, + 70431 + ], + 1, + "71f2ac5b.png?=20220902", + 48, + "che_220901_bxX6", + 109, + [ + "hall:betgold", + "hall:betrate", + "hall:betwin", + "hall:betwingold", + "hall:dex2" + ] + ], + [ + "【48기】꿀벌군단", + 67, + 78, + 13, + "che_event_보병", + [ + 208129, + 4699, + 3613, + 56551, + 29753 + ], + 0, + "default.jpg", + 48, + "che_220901_bxX6", + 112, + [ + "hall:ttrate" + ] + ], + [ + "【48기】카겜디져라", + 67, + 81, + 13, + "che_event_견고", + [ + 374240, + 14765, + 13847, + 47063, + 31060 + ], + 1, + "12e4fa8e.png?=20220708", + 48, + "che_220901_bxX6", + 113, + [ + "hall:dex1", + "hall:tsrate" + ] + ], + [ + "【48기】아키카와 야요이", + 68, + 14, + 79, + "che_event_집중", + [ + 18205, + 16588, + 18902, + 395724, + 36092 + ], + 1, + "325c6336.png?=20220901", + 48, + "che_220901_bxX6", + 115, + [ + "hall:dex4" + ] + ], + [ + "【48기】껄룩", + 70, + 76, + 14, + "che_event_견고", + [ + 261640, + 1970, + 15377, + 36473, + 10105 + ], + 1, + "14e967cf.jpg?=20220728", + 48, + "che_220901_bxX6", + 117, + [ + "hall:dex1" + ] + ], + [ + "【48기】데스네이트", + 66, + 81, + 13, + "che_event_견고", + [ + 381777, + 11032, + 17487, + 46657, + 46608 + ], + 1, + "4d2184f9.jpg?=20220819", + 48, + "che_220901_bxX6", + 120, + [ + "hall:betwin", + "hall:dex1", + "hall:tsrate" + ] + ], + [ + "【48기】료우기시키", + 66, + 14, + 82, + "che_event_징병", + [ + 3659, + 3047, + 9592, + 128337, + 3001 + ], + 1, + "72a190e.jpg?=20220109", + 48, + "che_220901_bxX6", + 121, + [ + "hall:ttrate" + ] + ], + [ + "【48기】대한총대장그레이스", + 69, + 13, + 79, + "che_event_집중", + [ + 27534, + 24852, + 11082, + 266221, + 6511 + ], + 1, + "901f33f2.png?=20220903", + 48, + "che_220901_bxX6", + 122, + [ + "hall:dex2" + ] + ], + [ + "【48기】우마무스메", + 77, + 14, + 67, + "che_event_필살", + [ + 15199, + 11125, + 5932, + 144574, + 7319 + ], + 0, + "default.jpg", + 48, + "che_220901_bxX6", + 126, + [ + "hall:firenum" + ] + ], + [ + "【48기】네코 아르크", + 81, + 91, + 15, + "che_event_기병", + [ + 39845, + 25532, + 675351, + 78287, + 40848 + ], + 1, + "14c3add6.jpg?=20220901", + 48, + "che_220901_bxX6", + 128, + [ + "hall:dex3" + ] + ], + [ + "【48기】바이돌", + 77, + 13, + 71, + "che_event_필살", + [ + 8352, + 9565, + 10097, + 197814, + 7512 + ], + 0, + "default.jpg", + 48, + "che_220901_bxX6", + 129, + [ + "hall:ttrate" + ] + ], + [ + "【48기】칼든사냥꾼", + 13, + 64, + 82, + "che_event_환술", + [ + 0, + 0, + 0, + 0, + 0 + ], + 0, + "default.jpg", + 48, + "che_220901_bxX6", + 130, + [ + "hall:firenum", + "hall:tirate" + ] + ], + [ + "【48기】물조멜로디", + 13, + 65, + 81, + "che_event_필살", + [ + 2587, + 390, + 0, + 1613, + 627 + ], + 1, + "51bb6c35.png?=20220826", + 48, + "che_220901_bxX6", + 132, + [ + "hall:dedication", + "hall:firenum" + ] + ], + [ + "【48기】1004", + 65, + 82, + 13, + "che_event_돌격", + [ + 23287, + 9671, + 239053, + 41481, + 18850 + ], + 0, + "default.jpg", + 48, + "che_220901_bxX6", + 134, + [ + "hall:dex3" + ] + ], + [ + "【48기】운영자님글카업글좀", + 17, + 63, + 79, + "che_event_의술", + [ + 28, + 0, + 1919, + 212, + 0 + ], + 1, + "975933c2.jpg?=20220808", + 48, + "che_220901_bxX6", + 135, + [ + "hall:dedication" + ] + ], + [ + "【48기】아기쿠로미", + 67, + 81, + 13, + "che_event_견고", + [ + 178820, + 2776, + 38663, + 28936, + 12808 + ], + 1, + "0215322b.jpg?=20220902", + 48, + "che_220901_bxX6", + 263, + [ + "hall:betgold", + "hall:betwin", + "hall:betwingold", + "hall:tsrate" + ] + ], + [ + "【48기】내정만함", + 14, + 79, + 66, + "che_event_견고", + [ + 0, + 106, + 922, + 71, + 0 + ], + 1, + "30690ec1.jpg?=20220927", + 48, + "che_220901_bxX6", + 271, + [ + "hall:dedication" + ] + ], + [ + "【48기】Evans", + 66, + 80, + 13, + "che_event_필살", + [ + 410934, + 10518, + 28722, + 34812, + 25609 + ], + 0, + "default.jpg", + 48, + "che_220901_bxX6", + 272, + [ + "hall:dex1" + ] + ], + [ + "【48기】잠복기간", + 89, + 15, + 82, + "che_event_환술", + [ + 95385, + 26758, + 32381, + 820092, + 70442 + ], + 0, + "default.jpg", + 48, + "che_220901_bxX6", + 273, + [ + "hall:dex4", + "hall:dex5" + ] + ], + [ + "【48기】사하드", + 65, + 13, + 81, + "che_event_의술", + [ + 8819, + 11066, + 12065, + 185163, + 25573 + ], + 1, + "31f10b32.jpg?=20220717", + 48, + "che_220901_bxX6", + 281, + [ + "hall:dedication" + ] + ], + [ + "【48기】만샘", + 16, + 60, + 82, + "che_event_신중", + [ + 0, + 0, + 0, + 990, + 2053 + ], + 1, + "4a206a1.jpg?=20181122", + 48, + "che_220901_bxX6", + 283, + [ + "hall:dedication", + "hall:tirate", + "hall:ttrate" + ] + ], + [ + "【48기】조선아", + 79, + 66, + 15, + "che_event_필살", + [ + 1545, + 735, + 37120, + 2558, + 1360 + ], + 1, + "76aae8e.jpg?=20220514", + 48, + "che_220901_bxX6", + 286, + [ + "hall:betrate", + "hall:tlrate" + ] + ], + [ + "【48기】메지로 맥퀸", + 78, + 93, + 15, + "che_event_무쌍", + [ + 21007, + 19074, + 632240, + 59667, + 39577 + ], + 1, + "80ee36b9.png?=20220901", + 48, + "che_220901_bxX6", + 287, + [ + "hall:dex3" + ] + ], + [ + "【48기】무지장", + 15, + 75, + 87, + "che_event_반계", + [ + 0, + 0, + 0, + 0, + 0 + ], + 0, + "default.jpg", + 48, + "che_220901_bxX6", + 641, + [ + "hall:firenum" + ] + ], + [ + "【49기】부관", + 77, + 94, + 15, + "che_event_필살", + [ + 33601, + 817257, + 33735, + 57065, + 33746 + ], + 1, + "bf096c12.jpg?=20221017", + 49, + "che_221006_WnwE", + 10, + [ + "hall:betrate", + "hall:dex2", + "hall:killcrew", + "hall:killcrew_person", + "hall:killnum", + "hall:killrate_person", + "hall:warnum", + "hall:winrate" + ] + ], + [ + "【49기】셀레미", + 73, + 15, + 96, + "che_event_집중", + [ + 17739, + 17026, + 12814, + 382588, + 16471 + ], + 1, + "c6c8f418.jpg?=20220902", + 49, + "che_221006_WnwE", + 15, + [ + "hall:experience", + "hall:killnum", + "hall:killrate", + "hall:killrate_person", + "hall:occupied", + "hall:tirate", + "hall:winrate" + ] + ], + [ + "【49기】갈근", + 93, + 73, + 15, + "che_event_필살", + [ + 41353, + 9978, + 76390, + 147044, + 277337 + ], + 1, + "f61a1fbb.png?=20221004", + 49, + "che_221006_WnwE", + 16, + [ + "hall:betgold", + "hall:betwin", + "hall:betwingold", + "hall:dex5" + ] + ], + [ + "【49기】자", + 74, + 15, + 94, + "che_event_집중", + [ + 18525, + 10188, + 22228, + 276524, + 20035 + ], + 1, + "bd47d1e5.png?=20221006", + 49, + "che_221006_WnwE", + 18, + [ + "hall:tirate", + "hall:winrate" + ] + ], + [ + "【49기】우마무스메", + 77, + 90, + 16, + "che_event_무쌍", + [ + 348688, + 18802, + 40197, + 50014, + 12163 + ], + 0, + "default.jpg", + 49, + "che_221006_WnwE", + 19, + [ + "hall:dex1", + "hall:firenum" + ] + ], + [ + "【49기】마요이", + 73, + 15, + 95, + "che_event_필살", + [ + 9514, + 13496, + 7051, + 263934, + 19258 + ], + 1, + "0af2c879.jpg?=20221002", + 49, + "che_221006_WnwE", + 20, + [ + "hall:tirate" + ] + ], + [ + "【49기】쿠라마", + 76, + 15, + 89, + "che_event_집중", + [ + 27299, + 12309, + 24731, + 383414, + 14754 + ], + 1, + "0e46614a.png?=20221023", + 49, + "che_221006_WnwE", + 29, + [ + "hall:betrate", + "hall:firenum" + ] + ], + [ + "【49기】스누피", + 97, + 71, + 15, + "che_event_필살", + [ + 61471, + 11827, + 247599, + 32285, + 111535 + ], + 1, + "c5c6bcfb.png?=20221006", + 49, + "che_221006_WnwE", + 30, + [ + "chief:11", + "hall:betwin", + "hall:dex3", + "hall:occupied", + "hall:tlrate" + ] + ], + [ + "【49기】강유", + 80, + 16, + 89, + "che_event_환술", + [ + 15714, + 13705, + 21526, + 491407, + 20725 + ], + 1, + "95534aea.jpg?=20220617", + 49, + "che_221006_WnwE", + 31, + [ + "hall:betrate", + "hall:betwin", + "hall:dex4" + ] + ], + [ + "【49기】SARS", + 89, + 78, + 15, + "che_event_돌격", + [ + 19448, + 10187, + 331459, + 85371, + 112462 + ], + 1, + "b84944.jpg?=20180829", + 49, + "che_221006_WnwE", + 38, + [ + "chief:12", + "hall:dedication", + "hall:dex3", + "hall:experience", + "hall:winrate" + ] + ], + [ + "【49기】장원영", + 98, + 70, + 15, + "che_event_공성", + [ + 0, + 1614, + 2547, + 27667, + 870470 + ], + 1, + "38360a82.jpg?=20221004", + 49, + "che_221006_WnwE", + 39, + [ + "hall:betgold", + "hall:betrate", + "hall:betwingold", + "hall:dex5", + "hall:experience", + "hall:killcrew", + "hall:killrate", + "hall:killrate_person", + "hall:occupied", + "hall:tlrate", + "hall:winrate" + ] + ], + [ + "【49기】만리향", + 15, + 93, + 74, + "che_event_의술", + [ + 4373, + 17258, + 0, + 1890, + 6930 + ], + 1, + "9e805440.jpg?=20221006", + 49, + "che_221006_WnwE", + 41, + [ + "hall:betgold", + "hall:betwingold", + "hall:firenum", + "hall:tsrate" + ] + ], + [ + "【49기】곡", + 75, + 95, + 15, + "che_event_척사", + [ + 632843, + 3385, + 47043, + 65516, + 34610 + ], + 1, + "dcfcc021.jpg?=20221018", + 49, + "che_221006_WnwE", + 43, + [ + "hall:dedication", + "hall:dex1", + "hall:experience", + "hall:killcrew", + "hall:killcrew_person", + "hall:killnum", + "hall:killrate", + "hall:killrate_person", + "hall:tsrate", + "hall:warnum" + ] + ], + [ + "【49기】제갈여포", + 77, + 15, + 93, + "che_event_집중", + [ + 37589, + 7622, + 23151, + 440456, + 28114 + ], + 1, + "d87fd80.png?=20220515", + 49, + "che_221006_WnwE", + 44, + [ + "hall:tirate" + ] + ], + [ + "【49기】정기예금들어라", + 76, + 16, + 90, + "che_event_환술", + [ + 43093, + 21737, + 7809, + 337466, + 29988 + ], + 0, + "default.jpg", + 49, + "che_221006_WnwE", + 45, + [ + "hall:ttrate" + ] + ], + [ + "【49기】이드", + 73, + 93, + 16, + "che_event_견고", + [ + 255975, + 11012, + 11370, + 35555, + 29400 + ], + 1, + "5898830.jpg?=20210831", + 49, + "che_221006_WnwE", + 47, + [ + "hall:dex1", + "hall:killrate" + ] + ], + [ + "【49기】카이스트", + 76, + 15, + 90, + "che_event_필살", + [ + 25261, + 23543, + 34518, + 463323, + 15825 + ], + 1, + "9361ef8.jpg?=20180907", + 49, + "che_221006_WnwE", + 51, + [ + "hall:betgold", + "hall:betwin", + "hall:betwingold", + "hall:dex4", + "hall:firenum" + ] + ], + [ + "【49기】엄마슈퍼", + 77, + 93, + 15, + "che_event_필살", + [ + 4535, + 6218, + 799527, + 10233, + 6941 + ], + 1, + "aa3e02ce.jpg?=20221008", + 49, + "che_221006_WnwE", + 54, + [ + "hall:betgold", + "hall:betwin", + "hall:betwingold", + "hall:dex3", + "hall:experience", + "hall:killcrew", + "hall:killcrew_person", + "hall:killnum", + "hall:occupied", + "hall:tsrate", + "hall:warnum", + "hall:winrate" + ] + ], + [ + "【49기】민트토끼", + 75, + 93, + 15, + "che_event_필살", + [ + 513077, + 11917, + 15671, + 45361, + 16178 + ], + 1, + "957e7732.jpg?=20221006", + 49, + "che_221006_WnwE", + 64, + [ + "hall:betgold", + "hall:betwingold", + "hall:dex1", + "hall:killrate", + "hall:killrate_person", + "hall:occupied", + "hall:tsrate", + "hall:winrate" + ] + ], + [ + "【49기】박일아", + 78, + 15, + 91, + "che_event_집중", + [ + 12736, + 7542, + 62262, + 550107, + 22938 + ], + 1, + "8608979.gif?=20191024", + 49, + "che_221006_WnwE", + 65, + [ + "hall:dex4", + "hall:killcrew_person", + "hall:killnum", + "hall:warnum" + ] + ], + [ + "【49기】독", + 97, + 70, + 15, + "che_event_무쌍", + [ + 29533, + 18789, + 60237, + 37838, + 707288 + ], + 1, + "abf61eb8.png?=20221006", + 49, + "che_221006_WnwE", + 66, + [ + "chief:6", + "hall:dex5", + "hall:experience", + "hall:killcrew", + "hall:killrate", + "hall:killrate_person", + "hall:occupied", + "hall:tlrate" + ] + ], + [ + "【49기】리플리", + 77, + 16, + 91, + "che_event_필살", + [ + 21324, + 7947, + 20602, + 317406, + 22011 + ], + 1, + "102c5ecc.png?=20221009", + 49, + "che_221006_WnwE", + 75, + [ + "hall:betrate" + ] + ], + [ + "【49기】와일드플라워", + 96, + 72, + 15, + "che_event_돌격", + [ + 531620, + 5812, + 66235, + 87659, + 65600 + ], + 0, + "default.jpg", + 49, + "che_221006_WnwE", + 76, + [ + "hall:dex1", + "hall:tlrate", + "hall:warnum" + ] + ], + [ + "【49기】군필22학번", + 76, + 16, + 92, + "che_event_필살", + [ + 10035, + 9575, + 8622, + 361132, + 36387 + ], + 0, + "default.jpg", + 49, + "che_221006_WnwE", + 78, + [ + "hall:tirate" + ] + ], + [ + "【49기】유기의길", + 77, + 89, + 16, + "che_event_필살", + [ + 265079, + 1929, + 17482, + 37897, + 30125 + ], + 0, + "default.jpg", + 49, + "che_221006_WnwE", + 79, + [ + "hall:dex1", + "hall:ttrate", + "hall:winrate" + ] + ], + [ + "【49기】오의난무위소", + 90, + 76, + 15, + "che_event_필살", + [ + 54696, + 8769, + 70591, + 39686, + 211193 + ], + 0, + "default.jpg", + 49, + "che_221006_WnwE", + 81, + [ + "hall:dex5", + "hall:tlrate" + ] + ], + [ + "【49기】12", + 78, + 89, + 15, + "che_event_무쌍", + [ + 106036, + 29004, + 576781, + 92625, + 49993 + ], + 0, + "default.jpg", + 49, + "che_221006_WnwE", + 82, + [ + "chief:10", + "hall:betrate", + "hall:dex3", + "hall:killcrew", + "hall:killcrew_person", + "hall:killnum", + "hall:killrate", + "hall:killrate_person", + "hall:occupied", + "hall:tsrate", + "hall:warnum" + ] + ], + [ + "【49기】다람쥐헌터", + 89, + 15, + 78, + "che_event_징병", + [ + 26114, + 22742, + 7101, + 83500, + 277483 + ], + 0, + "default.jpg", + 49, + "che_221006_WnwE", + 83, + [ + "hall:dex5", + "hall:occupied", + "hall:ttrate" + ] + ], + [ + "【49기】앤젤라", + 75, + 15, + 93, + "che_event_신중", + [ + 31638, + 14456, + 7137, + 153146, + 24900 + ], + 1, + "4f82f26f.png?=20221006", + 49, + "che_221006_WnwE", + 84, + [ + "hall:dedication", + "hall:tirate" + ] + ], + [ + "【49기】응애", + 90, + 77, + 15, + "che_event_위압", + [ + 6624, + 38083, + 417999, + 103071, + 26243 + ], + 1, + "0d9869ae.png?=20220730", + 49, + "che_221006_WnwE", + 85, + [ + "hall:dex2", + "hall:dex3" + ] + ], + [ + "【49기】바이돌", + 84, + 15, + 83, + "che_event_집중", + [ + 37030, + 31892, + 57577, + 494068, + 21577 + ], + 0, + "default.jpg", + 49, + "che_221006_WnwE", + 86, + [ + "hall:dex2", + "hall:dex4" + ] + ], + [ + "【49기】가을?", + 98, + 70, + 15, + "che_event_징병", + [ + 33823, + 22153, + 63120, + 62370, + 264877 + ], + 1, + "d1db2a6d.webp?=20221006", + 49, + "che_221006_WnwE", + 87, + [ + "hall:betwin", + "hall:dedication", + "hall:dex5", + "hall:experience", + "hall:tlrate" + ] + ], + [ + "【49기】앙투아네트", + 74, + 15, + 95, + "che_event_반계", + [ + 25251, + 7789, + 41112, + 283381, + 25793 + ], + 1, + "0cdeeaea.jpg?=20221006", + 49, + "che_221006_WnwE", + 88, + [ + "hall:experience", + "hall:tirate" + ] + ], + [ + "【49기】대교", + 89, + 15, + 79, + "che_event_필살", + [ + 13302, + 34828, + 39784, + 521351, + 67041 + ], + 1, + "9f0e6dcc.jpg?=20220808", + 49, + "che_221006_WnwE", + 89, + [ + "hall:dex2", + "hall:dex4", + "hall:killnum" + ] + ], + [ + "【49기】잘거야", + 76, + 89, + 15, + "che_event_무쌍", + [ + 13732, + 23747, + 249470, + 39120, + 27233 + ], + 0, + "default.jpg", + 49, + "che_221006_WnwE", + 90, + [ + "chief:8", + "hall:dedication", + "hall:dex3", + "hall:firenum" + ] + ], + [ + "【49기】피", + 76, + 90, + 15, + "che_event_저격", + [ + 23179, + 18978, + 392251, + 69700, + 18690 + ], + 1, + "7b387a5a.png?=20221006", + 49, + "che_221006_WnwE", + 92, + [ + "hall:dex3", + "hall:tsrate" + ] + ], + [ + "【49기】평민킬러", + 94, + 76, + 15, + "che_event_무쌍", + [ + 32648, + 943971, + 30653, + 31730, + 25257 + ], + 1, + "83e5de42.jpg?=20220924", + 49, + "che_221006_WnwE", + 93, + [ + "hall:dex2", + "hall:killcrew", + "hall:killcrew_person", + "hall:killnum", + "hall:killrate", + "hall:killrate_person", + "hall:occupied", + "hall:tlrate", + "hall:ttrate", + "hall:warnum", + "hall:winrate" + ] + ], + [ + "【49기】예초기", + 74, + 92, + 15, + "che_event_징병", + [ + 374827, + 11672, + 25190, + 106615, + 14161 + ], + 1, + "f55d1b6f.jpg?=20221007", + 49, + "che_221006_WnwE", + 95, + [ + "hall:dex1", + "hall:tsrate" + ] + ], + [ + "【49기】뭘봐", + 88, + 78, + 16, + "che_event_필살", + [ + 242434, + 31123, + 60405, + 45878, + 8514 + ], + 0, + "default.jpg", + 49, + "che_221006_WnwE", + 96, + [ + "hall:dex1", + "hall:dex2", + "hall:tlrate" + ] + ], + [ + "【49기】관부", + 77, + 15, + 90, + "che_event_집중", + [ + 23913, + 8086, + 24821, + 470122, + 30132 + ], + 1, + "59bb4c31.jpg?=20221016", + 49, + "che_221006_WnwE", + 98, + [ + "hall:betwin", + "hall:dex4", + "hall:occupied" + ] + ], + [ + "【49기】네시", + 78, + 15, + 90, + "che_event_필살", + [ + 9544, + 6037, + 37551, + 455462, + 5140 + ], + 0, + "default.jpg", + 49, + "che_221006_WnwE", + 99, + [ + "hall:dex4", + "hall:ttrate" + ] + ], + [ + "【49기】마왕", + 76, + 15, + 90, + "che_event_환술", + [ + 35209, + 17285, + 13320, + 223136, + 39332 + ], + 1, + "f39217aa.gif?=20220916", + 49, + "che_221006_WnwE", + 100, + [ + "chief:9", + "hall:dedication", + "hall:experience" + ] + ], + [ + "【49기】사스케", + 75, + 15, + 93, + "che_event_필살", + [ + 2770, + 19972, + 16080, + 295043, + 36874 + ], + 1, + "2babffbe.jpg?=20220910", + 49, + "che_221006_WnwE", + 102, + [ + "chief:7", + "hall:betgold", + "hall:betwin", + "hall:betwingold", + "hall:experience", + "hall:killrate", + "hall:killrate_person", + "hall:winrate" + ] + ], + [ + "【49기】환선", + 78, + 89, + 15, + "che_event_징병", + [ + 18290, + 26262, + 18952, + 27186, + 315322 + ], + 0, + "default.jpg", + 49, + "che_221006_WnwE", + 103, + [ + "hall:betgold", + "hall:betrate", + "hall:betwingold", + "hall:dex5" + ] + ], + [ + "【49기】Hide_D", + 77, + 16, + 90, + "che_event_척사", + [ + 27670, + 6447, + 7768, + 505892, + 39254 + ], + 1, + "8cf2033.png?=20220228", + 49, + "che_221006_WnwE", + 104, + [ + "hall:betrate", + "hall:dex4", + "hall:warnum" + ] + ], + [ + "【49기】마작왕페이트", + 94, + 74, + 15, + "che_event_필살", + [ + 51341, + 19149, + 21200, + 67283, + 529709 + ], + 1, + "82f377d3.png?=20221006", + 49, + "che_221006_WnwE", + 105, + [ + "hall:betgold", + "hall:betwin", + "hall:betwingold", + "hall:dex5", + "hall:killcrew", + "hall:killcrew_person", + "hall:tlrate", + "hall:ttrate", + "hall:warnum" + ] + ], + [ + "【49기】나옹이", + 77, + 89, + 15, + "che_event_견고", + [ + 7702, + 12664, + 502475, + 67173, + 53015 + ], + 1, + "44fa6a24.png?=20220610", + 49, + "che_221006_WnwE", + 106, + [ + "hall:dex3", + "hall:tsrate" + ] + ], + [ + "【49기】아싸", + 76, + 16, + 91, + "che_event_필살", + [ + 37954, + 13685, + 48181, + 555099, + 41256 + ], + 0, + "default.jpg", + 49, + "che_221006_WnwE", + 107, + [ + "hall:dex4", + "hall:killcrew", + "hall:killcrew_person", + "hall:killnum" + ] + ], + [ + "【49기】독여시", + 77, + 89, + 16, + "che_event_필살", + [ + 47168, + 315201, + 88504, + 71425, + 23780 + ], + 1, + "89f1014d.png?=20221006", + 49, + "che_221006_WnwE", + 109, + [ + "hall:dex2", + "hall:tsrate" + ] + ], + [ + "【49기】평민힐러", + 15, + 73, + 95, + "che_event_저격", + [ + 0, + 0, + 0, + 0, + 0 + ], + 0, + "default.jpg", + 49, + "che_221006_WnwE", + 111, + [ + "hall:dedication", + "hall:ttrate" + ] + ], + [ + "【49기】소현", + 89, + 79, + 16, + "che_event_저격", + [ + 43090, + 379233, + 19591, + 50280, + 33147 + ], + 1, + "47ee1148.png?=20221007", + 49, + "che_221006_WnwE", + 112, + [ + "hall:betgold", + "hall:betwin", + "hall:betwingold", + "hall:dex2" + ] + ], + [ + "【49기】료우기시키", + 78, + 15, + 90, + "che_event_환술", + [ + 47506, + 9369, + 7209, + 260421, + 22052 + ], + 1, + "72a190e.jpg?=20220109", + 49, + "che_221006_WnwE", + 113, + [ + "hall:dedication" + ] + ], + [ + "【49기】태홍", + 75, + 92, + 15, + "che_event_필살", + [ + 10399, + 29486, + 255694, + 39736, + 9828 + ], + 1, + "fc6a0e0f.png?=20221006", + 49, + "che_221006_WnwE", + 114, + [ + "hall:dex3", + "hall:tsrate" + ] + ], + [ + "【49기】페르난도", + 79, + 87, + 15, + "che_event_필살", + [ + 583172, + 20614, + 45864, + 96619, + 44727 + ], + 1, + "6c07b3e.jpg?=20220305", + 49, + "che_221006_WnwE", + 116, + [ + "hall:betrate", + "hall:dex1", + "hall:killrate", + "hall:killrate_person" + ] + ], + [ + "【49기】골든치즈렐라와퍼", + 89, + 78, + 15, + "che_event_필살", + [ + 28136, + 53052, + 624283, + 126494, + 50654 + ], + 1, + "75aec126.jpg?=20221007", + 49, + "che_221006_WnwE", + 118, + [ + "hall:dex2", + "hall:dex3", + "hall:killcrew", + "hall:killcrew_person", + "hall:killnum", + "hall:warnum" + ] + ], + [ + "【49기】Bianchi", + 79, + 90, + 15, + "che_event_무쌍", + [ + 513815, + 15088, + 19467, + 19157, + 12842 + ], + 0, + "default.jpg", + 49, + "che_221006_WnwE", + 120, + [ + "hall:dex1" + ] + ], + [ + "【49기】くま", + 77, + 16, + 91, + "che_event_집중", + [ + 38972, + 21386, + 14065, + 489449, + 25893 + ], + 1, + "770f53.jpg?=20190718", + 49, + "che_221006_WnwE", + 125, + [ + "hall:dex4", + "hall:killcrew_person" + ] + ], + [ + "【49기】개미호랑이", + 76, + 15, + 92, + "che_event_집중", + [ + 7806, + 10039, + 24375, + 251800, + 22771 + ], + 1, + "817c8a88.jpg?=20221007", + 49, + "che_221006_WnwE", + 127, + [ + "hall:betrate" + ] + ], + [ + "【49기】반역의루돌프", + 75, + 15, + 91, + "che_event_신중", + [ + 23561, + 9545, + 37577, + 211095, + 17747 + ], + 0, + "default.jpg", + 49, + "che_221006_WnwE", + 128, + [ + "hall:tirate" + ] + ], + [ + "【49기】구경꾼", + 15, + 87, + 78, + "che_event_척사", + [ + 0, + 0, + 0, + 0, + 0 + ], + 0, + "default.jpg", + 49, + "che_221006_WnwE", + 131, + [ + "hall:firenum" + ] + ], + [ + "【49기】POCARI.", + 74, + 15, + 93, + "che_event_집중", + [ + 18013, + 17000, + 23702, + 401726, + 36200 + ], + 0, + "default.jpg", + 49, + "che_221006_WnwE", + 132, + [ + "hall:tirate", + "hall:ttrate" + ] + ], + [ + "【49기】네이미", + 89, + 78, + 15, + "che_event_돌격", + [ + 91525, + 451626, + 51895, + 133172, + 76572 + ], + 0, + "default.jpg", + 49, + "che_221006_WnwE", + 137, + [ + "hall:dex2" + ] + ], + [ + "【49기】호시마치스이세이", + 75, + 15, + 92, + "che_event_신중", + [ + 10952, + 11150, + 13761, + 115328, + 18813 + ], + 1, + "e2e5d0de.jpg?=20221007", + 49, + "che_221006_WnwE", + 224, + [ + "chief:5", + "hall:dedication", + "hall:tirate" + ] + ], + [ + "【49기】돌아온너구리", + 93, + 73, + 16, + "che_event_돌격", + [ + 17013, + 19055, + 29363, + 72159, + 311777 + ], + 1, + "79dbce5.jpg?=20210918", + 49, + "che_221006_WnwE", + 226, + [ + "hall:dex5" + ] + ], + [ + "【49기】낙지꿈", + 73, + 17, + 91, + "che_event_집중", + [ + 8669, + 11407, + 22297, + 214149, + 25919 + ], + 0, + "default.jpg", + 49, + "che_221006_WnwE", + 228, + [ + "hall:ttrate" + ] + ], + [ + "【49기】신", + 90, + 15, + 77, + "che_event_필살", + [ + 20109, + 15279, + 19854, + 25664, + 457839 + ], + 0, + "default.jpg", + 49, + "che_221006_WnwE", + 234, + [ + "hall:dex5", + "hall:tlrate" + ] + ], + [ + "【49기】게을로트레이너", + 15, + 73, + 92, + "che_event_필살", + [ + 0, + 0, + 0, + 0, + 0 + ], + 0, + "default.jpg", + 49, + "che_221006_WnwE", + 381, + [ + "hall:dedication" + ] + ], + [ + "【49기】앵벌스의결혼식", + 15, + 85, + 75, + "che_event_돌격", + [ + 0, + 0, + 0, + 0, + 0 + ], + 0, + "default.jpg", + 49, + "che_221006_WnwE", + 492, + [ + "hall:ttrate" + ] + ], + [ + "【50기】태사탁", + 98, + 72, + 15, + "che_event_위압", + [ + 31578, + 27462, + 70900, + 56174, + 604637 + ], + 0, + "default.jpg", + 50, + "che_221103_1JGx", + 7, + [ + "hall:betwin", + "hall:dex5", + "hall:occupied", + "hall:tlrate" + ] + ], + [ + "【50기】방색", + 79, + 16, + 91, + "che_event_신중", + [ + 33579, + 10683, + 28309, + 460527, + 52808 + ], + 1, + "5898830.jpg?=20210831", + 50, + "che_221103_1JGx", + 11, + [ + "hall:tirate" + ] + ], + [ + "【50기】유연", + 80, + 94, + 15, + "che_event_무쌍", + [ + 1140334, + 47982, + 89409, + 96521, + 47338 + ], + 1, + "60dba1bf.webp?=20221103", + 50, + "che_221103_1JGx", + 14, + [ + "hall:betwin", + "hall:dex1", + "hall:dex2", + "hall:killcrew", + "hall:killcrew_person", + "hall:killnum", + "hall:killrate", + "hall:killrate_person", + "hall:occupied", + "hall:tsrate", + "hall:warnum", + "hall:winrate" + ] + ], + [ + "【50기】마대", + 79, + 93, + 16, + "che_event_무쌍", + [ + 45334, + 24071, + 828138, + 80633, + 47143 + ], + 1, + "b055465b.jpg?=20221103", + 50, + "che_221103_1JGx", + 17, + [ + "chief:12", + "hall:betgold", + "hall:betwin", + "hall:betwingold", + "hall:dedication", + "hall:dex3", + "hall:experience", + "hall:killnum", + "hall:killrate", + "hall:killrate_person", + "hall:tsrate", + "hall:winrate" + ] + ], + [ + "【50기】반순", + 90, + 79, + 15, + "che_event_척사", + [ + 43790, + 18325, + 874982, + 138804, + 57575 + ], + 1, + "8aa09909.jpg?=20221104", + 50, + "che_221103_1JGx", + 20, + [ + "hall:dex3", + "hall:killcrew_person" + ] + ], + [ + "【50기】엄웅", + 80, + 15, + 92, + "che_event_필살", + [ + 36512, + 10443, + 43506, + 1199933, + 71321 + ], + 0, + "default.jpg", + 50, + "che_221103_1JGx", + 29, + [ + "chief:9", + "hall:dex4", + "hall:experience", + "hall:killcrew", + "hall:killcrew_person", + "hall:killnum", + "hall:killrate", + "hall:killrate_person", + "hall:warnum", + "hall:winrate" + ] + ], + [ + "【50기】화익", + 78, + 15, + 91, + "che_event_척사", + [ + 41867, + 27054, + 35041, + 394784, + 20408 + ], + 0, + "default.jpg", + 50, + "che_221103_1JGx", + 32, + [ + "hall:tirate" + ] + ], + [ + "【50기】우환", + 78, + 90, + 16, + "che_event_무쌍", + [ + 527394, + 8889, + 101569, + 80236, + 38727 + ], + 0, + "default.jpg", + 50, + "che_221103_1JGx", + 37, + [ + "hall:dex1", + "hall:tsrate" + ] + ], + [ + "【50기】우모", + 94, + 77, + 15, + "che_event_무쌍", + [ + 69937, + 37797, + 749879, + 70799, + 78706 + ], + 1, + "2ddba29e.png?=20221103", + 50, + "che_221103_1JGx", + 38, + [ + "hall:dex3" + ] + ], + [ + "【50기】가모", + 93, + 79, + 15, + "che_event_필살", + [ + 27412, + 13070, + 1061974, + 67659, + 74574 + ], + 1, + "ad271564.png?=20221103", + 50, + "che_221103_1JGx", + 47, + [ + "hall:betgold", + "hall:betrate", + "hall:betwin", + "hall:betwingold", + "hall:dex3", + "hall:killcrew", + "hall:killcrew_person", + "hall:tlrate", + "hall:ttrate" + ] + ], + [ + "【50기】사공", + 80, + 92, + 15, + "che_event_필살", + [ + 5069, + 622215, + 31700, + 65048, + 69482 + ], + 1, + "4583d988.jpg?=20221109", + 50, + "che_221103_1JGx", + 54, + [ + "chief:6", + "hall:dedication", + "hall:dex2", + "hall:experience", + "hall:killrate", + "hall:killrate_person", + "hall:occupied", + "hall:tsrate", + "hall:winrate" + ] + ], + [ + "【50기】관합", + 83, + 87, + 15, + "che_event_위압", + [ + 40168, + 541720, + 10016, + 56501, + 43659 + ], + 0, + "default.jpg", + 50, + "che_221103_1JGx", + 61, + [ + "hall:dex2" + ] + ], + [ + "【50기】금완", + 94, + 76, + 16, + "che_event_척사", + [ + 104696, + 23313, + 64423, + 143680, + 768774 + ], + 1, + "f39217aa.gif?=20220916", + 50, + "che_221103_1JGx", + 63, + [ + "hall:dex5", + "hall:ttrate", + "hall:warnum" + ] + ], + [ + "【50기】안간", + 93, + 79, + 15, + "che_event_필살", + [ + 592659, + 2902, + 58995, + 84208, + 42228 + ], + 0, + "default.jpg", + 50, + "che_221103_1JGx", + 64, + [ + "hall:dex1", + "hall:tlrate" + ] + ], + [ + "【50기】미찬", + 80, + 15, + 93, + "che_event_필살", + [ + 64962, + 19202, + 50954, + 665586, + 33027 + ], + 0, + "default.jpg", + 50, + "che_221103_1JGx", + 85, + [ + "hall:dex4", + "hall:ttrate", + "hall:winrate" + ] + ], + [ + "【50기】뇌우", + 80, + 90, + 15, + "che_event_견고", + [ + 28997, + 7704, + 313271, + 16164, + 31400 + ], + 0, + "default.jpg", + 50, + "che_221103_1JGx", + 90, + [ + "hall:ttrate" + ] + ], + [ + "【50기】방위", + 90, + 82, + 15, + "che_event_무쌍", + [ + 910995, + 8569, + 47178, + 55863, + 44474 + ], + 1, + "83224718.png?=20221106", + 50, + "che_221103_1JGx", + 104, + [ + "chief:10", + "hall:dedication", + "hall:dex1", + "hall:experience", + "hall:killcrew", + "hall:killnum", + "hall:killrate", + "hall:killrate_person", + "hall:occupied", + "hall:ttrate" + ] + ], + [ + "【50기】채훈", + 69, + 13, + 77, + "che_event_집중", + [ + 14337, + 10628, + 14444, + 304603, + 25027 + ], + 0, + "default.jpg", + 50, + "che_221103_1JGx", + 105, + [ + "hall:dex4", + "hall:ttrate" + ] + ], + [ + "【50기】관제", + 93, + 76, + 15, + "che_event_척사", + [ + 59851, + 834712, + 32509, + 111259, + 49418 + ], + 1, + "b93e1522.png?=20221103", + 50, + "che_221103_1JGx", + 111, + [ + "hall:dex2", + "hall:firenum", + "hall:killcrew", + "hall:killcrew_person", + "hall:tlrate", + "hall:warnum" + ] + ], + [ + "【50기】위사", + 78, + 15, + 93, + "che_event_집중", + [ + 58547, + 13767, + 62768, + 638110, + 72907 + ], + 0, + "default.jpg", + 50, + "che_221103_1JGx", + 115, + [ + "hall:dex4", + "hall:tirate" + ] + ], + [ + "【50기】허화", + 79, + 88, + 16, + "che_event_격노", + [ + 24579, + 113709, + 321660, + 59327, + 25849 + ], + 0, + "default.jpg", + 50, + "che_221103_1JGx", + 117, + [ + "hall:dex2", + "hall:firenum" + ] + ], + [ + "【50기】태사충", + 78, + 16, + 95, + "che_event_필살", + [ + 50541, + 22543, + 71780, + 870816, + 42043 + ], + 1, + "23baa269.jpg?=20221103", + 50, + "che_221103_1JGx", + 118, + [ + "hall:betgold", + "hall:betrate", + "hall:betwin", + "hall:betwingold", + "hall:dex4", + "hall:killcrew", + "hall:killcrew_person", + "hall:killnum", + "hall:tirate", + "hall:warnum" + ] + ], + [ + "【50기】황녕", + 91, + 79, + 15, + "che_event_필살", + [ + 21547, + 38646, + 667626, + 88971, + 73963 + ], + 0, + "default.jpg", + 50, + "che_221103_1JGx", + 122, + [ + "hall:dex3" + ] + ], + [ + "【50기】반탁", + 90, + 61, + 13, + "che_event_징병", + [ + 115129, + 64075, + 160508, + 185098, + 2004429 + ], + 1, + "bb31c034.jpg?=20221125", + 50, + "che_221103_1JGx", + 123, + [ + "hall:betgold", + "hall:betrate", + "hall:betwin", + "hall:betwingold", + "hall:dedication", + "hall:dex2", + "hall:dex5", + "hall:experience", + "hall:killcrew", + "hall:killcrew_person", + "hall:killnum", + "hall:killrate", + "hall:killrate_person", + "hall:occupied", + "hall:tlrate", + "hall:warnum" + ] + ], + [ + "【50기】사순", + 79, + 15, + 92, + "che_event_필살", + [ + 16958, + 12045, + 38960, + 473222, + 81579 + ], + 1, + "41b12b95.png?=20221102", + 50, + "che_221103_1JGx", + 124, + [ + "hall:betgold", + "hall:betrate", + "hall:betwin", + "hall:betwingold", + "hall:dedication", + "hall:experience" + ] + ], + [ + "【50기】손회", + 78, + 86, + 16, + "che_event_견고", + [ + 332170, + 4237, + 63609, + 35258, + 50661 + ], + 0, + "default.jpg", + 50, + "che_221103_1JGx", + 125, + [ + "hall:firenum", + "hall:tsrate" + ] + ], + [ + "【50기】조양", + 96, + 77, + 15, + "che_event_무쌍", + [ + 23633, + 17084, + 895980, + 91219, + 61289 + ], + 0, + "default.jpg", + 50, + "che_221103_1JGx", + 126, + [ + "chief:11", + "hall:dedication", + "hall:dex3", + "hall:experience", + "hall:killnum", + "hall:killrate", + "hall:occupied", + "hall:tlrate", + "hall:winrate" + ] + ], + [ + "【50기】금이", + 80, + 15, + 89, + "che_event_척사", + [ + 39687, + 42550, + 40915, + 614228, + 83230 + ], + 1, + "5f947ce7.png?=20221103", + 50, + "che_221103_1JGx", + 131, + [ + "hall:dex4" + ] + ], + [ + "【50기】화량", + 80, + 89, + 16, + "che_event_징병", + [ + 558481, + 13373, + 61244, + 106710, + 75065 + ], + 0, + "default.jpg", + 50, + "che_221103_1JGx", + 132, + [ + "hall:dex1" + ] + ], + [ + "【50기】안단", + 80, + 89, + 15, + "che_event_돌격", + [ + 503971, + 3380, + 57362, + 54333, + 61254 + ], + 0, + "default.jpg", + 50, + "che_221103_1JGx", + 138, + [ + "hall:dex1", + "hall:occupied", + "hall:tsrate" + ] + ], + [ + "【50기】종준", + 94, + 75, + 15, + "che_event_무쌍", + [ + 33443, + 39903, + 68093, + 84071, + 895800 + ], + 0, + "default.jpg", + 50, + "che_221103_1JGx", + 140, + [ + "hall:betgold", + "hall:betrate", + "hall:betwingold", + "hall:dex5", + "hall:occupied" + ] + ], + [ + "【50기】심해", + 80, + 15, + 91, + "che_event_저격", + [ + 48043, + 11288, + 39466, + 694641, + 88717 + ], + 1, + "95534aea.jpg?=20220617", + 50, + "che_221103_1JGx", + 141, + [ + "chief:5", + "hall:dedication", + "hall:dex4", + "hall:dex5", + "hall:tirate", + "hall:ttrate" + ] + ], + [ + "【50기】등현", + 91, + 77, + 15, + "che_event_위압", + [ + 186789, + 23254, + 66591, + 80642, + 406597 + ], + 0, + "default.jpg", + 50, + "che_221103_1JGx", + 142, + [ + "hall:betgold", + "hall:betrate", + "hall:betwin", + "hall:betwingold", + "hall:dex5", + "hall:firenum", + "hall:tlrate" + ] + ], + [ + "【50기】금월", + 80, + 90, + 15, + "che_event_저격", + [ + 762440, + 7595, + 55419, + 71148, + 83258 + ], + 1, + "4f5d2342.png?=20221119", + 50, + "che_221103_1JGx", + 143, + [ + "hall:dex1", + "hall:occupied", + "hall:ttrate" + ] + ], + [ + "【50기】공유", + 77, + 93, + 15, + "che_event_격노", + [ + 22768, + 5617, + 401215, + 30221, + 20589 + ], + 1, + "03af3976.jpg?=20221103", + 50, + "che_221103_1JGx", + 144, + [ + "hall:tsrate" + ] + ], + [ + "【50기】동통", + 16, + 73, + 96, + "che_event_반계", + [ + 0, + 0, + 0, + 0, + 0 + ], + 0, + "default.jpg", + 50, + "che_221103_1JGx", + 145, + [ + "hall:tirate" + ] + ], + [ + "【50기】위조", + 81, + 91, + 16, + "che_event_필살", + [ + 22801, + 21470, + 708489, + 56032, + 53051 + ], + 1, + "0ed1b338.gif?=20221124", + 50, + "che_221103_1JGx", + 146, + [ + "hall:betgold", + "hall:betrate", + "hall:betwingold", + "hall:dex3" + ] + ], + [ + "【50기】여합", + 102, + 71, + 15, + "che_event_무쌍", + [ + 80529, + 35868, + 84827, + 80274, + 1342944 + ], + 1, + "106bc0e4.png?=20221125", + 50, + "che_221103_1JGx", + 147, + [ + "chief:8", + "hall:betgold", + "hall:betrate", + "hall:betwin", + "hall:betwingold", + "hall:dex5", + "hall:experience", + "hall:killcrew", + "hall:killcrew_person", + "hall:killnum", + "hall:killrate", + "hall:killrate_person", + "hall:tlrate", + "hall:warnum", + "hall:winrate" + ] + ], + [ + "【50기】마료", + 78, + 96, + 15, + "che_event_무쌍", + [ + 58887, + 47916, + 1087911, + 111179, + 35375 + ], + 1, + "e6ae27a0.jpg?=20221103", + 50, + "che_221103_1JGx", + 150, + [ + "hall:dex2", + "hall:dex3", + "hall:killcrew", + "hall:killcrew_person", + "hall:killnum", + "hall:killrate_person", + "hall:tsrate", + "hall:warnum", + "hall:winrate" + ] + ], + [ + "【50기】문훈", + 97, + 77, + 15, + "che_event_무쌍", + [ + 21687, + 49817, + 788391, + 66447, + 47967 + ], + 0, + "default.jpg", + 50, + "che_221103_1JGx", + 151, + [ + "hall:dex2", + "hall:dex3", + "hall:tlrate" + ] + ], + [ + "【50기】하거", + 93, + 77, + 15, + "che_event_필살", + [ + 106742, + 12567, + 376843, + 61017, + 28561 + ], + 0, + "default.jpg", + 50, + "che_221103_1JGx", + 152, + [ + "hall:betrate", + "hall:firenum", + "hall:tlrate" + ] + ], + [ + "【50기】종정", + 80, + 88, + 16, + "che_event_위압", + [ + 676836, + 10826, + 31562, + 48133, + 74535 + ], + 0, + "default.jpg", + 50, + "che_221103_1JGx", + 154, + [ + "hall:dex1" + ] + ], + [ + "【50기】육속", + 76, + 15, + 94, + "che_event_신중", + [ + 31301, + 13940, + 30847, + 510523, + 22869 + ], + 0, + "default.jpg", + 50, + "che_221103_1JGx", + 155, + [ + "hall:tirate" + ] + ], + [ + "【50기】저익", + 76, + 15, + 96, + "che_event_필살", + [ + 41480, + 42640, + 33084, + 915750, + 78982 + ], + 0, + "default.jpg", + 50, + "che_221103_1JGx", + 157, + [ + "chief:7", + "hall:dedication", + "hall:dex4", + "hall:experience", + "hall:killcrew", + "hall:killnum", + "hall:killrate", + "hall:killrate_person", + "hall:occupied", + "hall:tirate" + ] + ], + [ + "【50기】두유", + 83, + 89, + 15, + "che_event_필살", + [ + 747946, + 5339, + 39253, + 45580, + 14511 + ], + 1, + "519eb73f.jpg?=20221103", + 50, + "che_221103_1JGx", + 163, + [ + "hall:dex1", + "hall:winrate" + ] + ], + [ + "【50기】종승", + 90, + 15, + 81, + "che_event_필살", + [ + 52111, + 57630, + 88423, + 75523, + 887485 + ], + 1, + "b84944.jpg?=20180829", + 50, + "che_221103_1JGx", + 165, + [ + "hall:dex2", + "hall:dex5", + "hall:killcrew_person", + "hall:ttrate", + "hall:warnum" + ] + ], + [ + "【50기】송우", + 79, + 15, + 93, + "che_event_집중", + [ + 41308, + 14584, + 89476, + 799948, + 61333 + ], + 1, + "c1fba45c.png?=20221103", + 50, + "che_221103_1JGx", + 166, + [ + "hall:dex4", + "hall:tirate" + ] + ], + [ + "【50기】괴후", + 80, + 15, + 93, + "che_event_집중", + [ + 40544, + 12108, + 39317, + 593266, + 20733 + ], + 1, + "31f10b32.jpg?=20220717", + 50, + "che_221103_1JGx", + 167, + [ + "hall:winrate" + ] + ], + [ + "【50기】공손윤", + 79, + 16, + 92, + "che_event_집중", + [ + 34511, + 16795, + 23459, + 677226, + 67044 + ], + 1, + "817c8a88.jpg?=20221007", + 50, + "che_221103_1JGx", + 171, + [ + "hall:dex4", + "hall:experience" + ] + ], + [ + "【50기】미검", + 15, + 71, + 93, + "che_event_의술", + [ + 0, + 0, + 0, + 0, + 0 + ], + 0, + "default.jpg", + 50, + "che_221103_1JGx", + 176, + [ + "hall:dedication", + "hall:tirate" + ] + ], + [ + "【50기】괴견", + 80, + 92, + 15, + "che_event_무쌍", + [ + 14672, + 16555, + 612848, + 38409, + 83093 + ], + 0, + "default.jpg", + 50, + "che_221103_1JGx", + 331, + [ + "hall:dedication", + "hall:dex3", + "hall:killrate", + "hall:killrate_person", + "hall:tsrate" + ] + ], + [ + "【50기】진보", + 95, + 74, + 16, + "che_event_무쌍", + [ + 115052, + 36265, + 74233, + 129871, + 866260 + ], + 1, + "1ff44d41.jpg?=20221111", + 50, + "che_221103_1JGx", + 332, + [ + "hall:betgold", + "hall:betrate", + "hall:betwin", + "hall:betwingold", + "hall:dex5", + "hall:firenum", + "hall:warnum" + ] + ], + [ + "【50기】미강", + 87, + 18, + 78, + "che_event_신중", + [ + 21339, + 6177, + 35166, + 171817, + 4846 + ], + 1, + "db0cb7a.jpg?=20190719", + 50, + "che_221103_1JGx", + 336, + [ + "hall:ttrate" + ] + ], + [ + "【50기】두패", + 80, + 87, + 16, + "che_event_척사", + [ + 562788, + 14566, + 73570, + 75211, + 88188 + ], + 1, + "a5eb006e.png?=20221106", + 50, + "che_221103_1JGx", + 348, + [ + "hall:dex1", + "hall:dex5", + "hall:firenum" + ] + ], + [ + "【50기】전람", + 92, + 79, + 15, + "che_event_필살", + [ + 71762, + 813345, + 16523, + 121508, + 62971 + ], + 0, + "default.jpg", + 50, + "che_221103_1JGx", + 349, + [ + "hall:dex2" + ] + ], + [ + "【50기】성완", + 78, + 89, + 15, + "che_event_무쌍", + [ + 340235, + 3075, + 57456, + 59019, + 20483 + ], + 0, + "default.jpg", + 50, + "che_221103_1JGx", + 527, + [ + "hall:tsrate" + ] + ], + [ + "【51기】3성구", + 90, + 79, + 15, + "che_event_무쌍", + [ + 38292, + 5810, + 19927, + 30402, + 860423 + ], + 1, + "3d15eaec.jpg?=20221130", + 51, + "che_221201_Fmth", + 6, + [ + "chief:10", + "hall:betgold", + "hall:betwin", + "hall:betwingold", + "hall:dex5", + "hall:experience", + "hall:killcrew", + "hall:killcrew_person", + "hall:killnum", + "hall:killrate", + "hall:killrate_person", + "hall:occupied", + "hall:tlrate", + "hall:warnum" + ] + ], + [ + "【51기】자유", + 78, + 91, + 15, + "che_event_무쌍", + [ + 513433, + 18235, + 23684, + 53404, + 38414 + ], + 0, + "default.jpg", + 51, + "che_221201_Fmth", + 13, + [ + "chief:6", + "hall:betgold", + "hall:betwin", + "hall:dedication", + "hall:dex1", + "hall:experience", + "hall:killrate", + "hall:killrate_person", + "hall:tsrate" + ] + ], + [ + "【51기】문피아", + 79, + 15, + 90, + "che_event_환술", + [ + 52450, + 26217, + 8497, + 534600, + 46785 + ], + 0, + "default.jpg", + 51, + "che_221201_Fmth", + 15, + [ + "hall:dex4" + ] + ], + [ + "【51기】밍나뇽", + 74, + 95, + 15, + "che_event_척사", + [ + 40097, + 257157, + 48021, + 36541, + 28308 + ], + 1, + "c2f36fd2.jpg?=20221201", + 51, + "che_221201_Fmth", + 22, + [ + "hall:betrate", + "hall:dex2", + "hall:dex3", + "hall:occupied", + "hall:tsrate" + ] + ], + [ + "【51기】장만월", + 74, + 16, + 94, + "che_event_신중", + [ + 35683, + 11575, + 22261, + 206525, + 11328 + ], + 1, + "ba0edf47.jpg?=20221201", + 51, + "che_221201_Fmth", + 26, + [ + "hall:tirate" + ] + ], + [ + "【51기】1성구", + 16, + 70, + 98, + "che_event_척사", + [ + 0, + 0, + 0, + 0, + 0 + ], + 1, + "fd45c7dd.jpg?=20221126", + 51, + "che_221201_Fmth", + 28, + [ + "hall:betrate", + "hall:firenum", + "hall:tirate" + ] + ], + [ + "【51기】그린치", + 98, + 74, + 15, + "che_event_필살", + [ + 67295, + 80289, + 687843, + 70200, + 31158 + ], + 1, + "d1280de8.jpg?=20221202", + 51, + "che_221201_Fmth", + 30, + [ + "hall:dex2", + "hall:dex3", + "hall:killcrew", + "hall:killcrew_person", + "hall:killnum", + "hall:tlrate", + "hall:ttrate", + "hall:warnum", + "hall:winrate" + ] + ], + [ + "【51기】가자미", + 85, + 83, + 16, + "che_event_필살", + [ + 432442, + 2907, + 54237, + 52279, + 24598 + ], + 1, + "a7160fed.jpg?=20221127", + 51, + "che_221201_Fmth", + 31, + [ + "hall:dex1", + "hall:dex3" + ] + ], + [ + "【51기】겨울엔 군고구마", + 94, + 76, + 15, + "che_event_필살", + [ + 502059, + 2533, + 3127, + 42967, + 36648 + ], + 1, + "52bd973a.jpg?=20221201", + 51, + "che_221201_Fmth", + 34, + [ + "hall:dex1", + "hall:killnum", + "hall:killrate", + "hall:killrate_person", + "hall:winrate" + ] + ], + [ + "【51기】0성구", + 76, + 15, + 92, + "che_event_신산", + [ + 14619, + 12679, + 19927, + 348809, + 61421 + ], + 1, + "57a0fa21.png?=20221130", + 51, + "che_221201_Fmth", + 35, + [ + "hall:tirate" + ] + ], + [ + "【51기】독황상제", + 78, + 16, + 90, + "che_event_귀병", + [ + 62349, + 4576, + 9006, + 554760, + 62400 + ], + 1, + "ae0dba3d.jpg?=20221201", + 51, + "che_221201_Fmth", + 37, + [ + "hall:betrate", + "hall:dex4", + "hall:dex5", + "hall:killcrew", + "hall:killnum", + "hall:occupied" + ] + ], + [ + "【51기】소용돌이", + 86, + 81, + 15, + "che_event_무쌍", + [ + 162069, + 77308, + 13919, + 43582, + 111235 + ], + 1, + "1e3418b3.webp?=20221201", + 51, + "che_221201_Fmth", + 50, + [ + "hall:dex2", + "hall:dex5" + ] + ], + [ + "【51기】퍄퍄", + 93, + 75, + 16, + "che_event_필살", + [ + 486328, + 91963, + 29309, + 87969, + 22572 + ], + 0, + "default.jpg", + 51, + "che_221201_Fmth", + 57, + [ + "hall:dex1", + "hall:dex2", + "hall:killcrew_person" + ] + ], + [ + "【51기】카류", + 76, + 92, + 16, + "che_event_척사", + [ + 11459, + 6600, + 267394, + 68199, + 18012 + ], + 1, + "147e2e39.png?=20221201", + 51, + "che_221201_Fmth", + 58, + [ + "hall:dex3", + "hall:tsrate" + ] + ], + [ + "【51기】유카", + 76, + 16, + 92, + "che_event_신산", + [ + 25671, + 52776, + 44570, + 520905, + 39964 + ], + 0, + "default.jpg", + 51, + "che_221201_Fmth", + 60, + [ + "hall:dex3", + "hall:dex4" + ] + ], + [ + "【51기】tqtt", + 78, + 15, + 92, + "che_event_필살", + [ + 21442, + 27043, + 20298, + 450153, + 23985 + ], + 0, + "default.jpg", + 51, + "che_221201_Fmth", + 61, + [ + "hall:tirate" + ] + ], + [ + "【51기】くま", + 78, + 15, + 91, + "che_event_징병", + [ + 27236, + 42312, + 22504, + 528444, + 55891 + ], + 1, + "770f53.jpg?=20190718", + 51, + "che_221201_Fmth", + 68, + [ + "hall:dex4", + "hall:killnum", + "hall:warnum" + ] + ], + [ + "【51기】멍멍", + 15, + 91, + 78, + "che_event_무쌍", + [ + 0, + 0, + 0, + 0, + 0 + ], + 1, + "883b4237.png?=20221201", + 51, + "che_221201_Fmth", + 69, + [ + "hall:dedication", + "hall:tsrate", + "hall:ttrate" + ] + ], + [ + "【51기】바이돌", + 76, + 15, + 93, + "che_event_집중", + [ + 35801, + 22603, + 27839, + 259662, + 25911 + ], + 0, + "default.jpg", + 51, + "che_221201_Fmth", + 70, + [ + "hall:betrate" + ] + ], + [ + "【51기】월성대군", + 77, + 91, + 16, + "che_event_저격", + [ + 16829, + 269748, + 4352, + 28047, + 40325 + ], + 0, + "default.jpg", + 51, + "che_221201_Fmth", + 75, + [ + "hall:dex2", + "hall:tsrate" + ] + ], + [ + "【51기】후랴", + 74, + 15, + 93, + "che_event_척사", + [ + 11089, + 26720, + 807, + 185393, + 39247 + ], + 0, + "default.jpg", + 51, + "che_221201_Fmth", + 76, + [ + "hall:dedication" + ] + ], + [ + "【51기】와일드플라워", + 98, + 70, + 15, + "che_event_저격", + [ + 37935, + 27417, + 20212, + 35528, + 346902 + ], + 0, + "default.jpg", + 51, + "che_221201_Fmth", + 77, + [ + "hall:dex5", + "hall:killrate", + "hall:tlrate" + ] + ], + [ + "【51기】독황", + 96, + 71, + 15, + "che_event_필살", + [ + 40730, + 34970, + 13472, + 76148, + 693088 + ], + 1, + "011b2ab4.png?=20221211", + 51, + "che_221201_Fmth", + 78, + [ + "hall:betgold", + "hall:betwin", + "hall:dex5", + "hall:experience", + "hall:killcrew", + "hall:killcrew_person", + "hall:killrate", + "hall:killrate_person", + "hall:occupied", + "hall:tlrate", + "hall:winrate" + ] + ], + [ + "【51기】강유", + 75, + 95, + 15, + "che_event_무쌍", + [ + 596460, + 17690, + 26297, + 48706, + 22690 + ], + 1, + "5e9af240.png?=20221201", + 51, + "che_221201_Fmth", + 79, + [ + "chief:12", + "hall:betwin", + "hall:betwingold", + "hall:dedication", + "hall:dex1", + "hall:experience", + "hall:killcrew", + "hall:killcrew_person", + "hall:killrate", + "hall:killrate_person", + "hall:tsrate", + "hall:winrate" + ] + ], + [ + "【51기】NK", + 74, + 15, + 95, + "che_event_반계", + [ + 42546, + 18606, + 8110, + 502740, + 57873 + ], + 1, + "d48fe93a.jpg?=20221209", + 51, + "che_221201_Fmth", + 80, + [ + "hall:betgold", + "hall:betrate", + "hall:betwingold", + "hall:dedication", + "hall:dex4", + "hall:experience" + ] + ], + [ + "【51기】월향", + 73, + 15, + 94, + "che_event_집중", + [ + 25089, + 10565, + 17754, + 461543, + 24022 + ], + 1, + "b832f05e.jpg?=20221202", + 51, + "che_221201_Fmth", + 81, + [ + "chief:5", + "hall:betrate", + "hall:betwin", + "hall:betwingold", + "hall:dedication", + "hall:experience", + "hall:killrate", + "hall:killrate_person", + "hall:winrate" + ] + ], + [ + "【51기】7성구", + 100, + 71, + 15, + "che_event_척사", + [ + 70766, + 51783, + 65791, + 110893, + 806670 + ], + 1, + "08b43652.jpg?=20221129", + 51, + "che_221201_Fmth", + 82, + [ + "hall:dex3", + "hall:dex5", + "hall:experience", + "hall:occupied", + "hall:tlrate", + "hall:warnum" + ] + ], + [ + "【51기】호나", + 76, + 90, + 16, + "che_event_저격", + [ + 1335, + 17575, + 16219, + 30491, + 276407 + ], + 0, + "default.jpg", + 51, + "che_221201_Fmth", + 83, + [ + "hall:betrate", + "hall:dex5" + ] + ], + [ + "【51기】임사영", + 74, + 95, + 15, + "che_event_무쌍", + [ + 396296, + 19946, + 26543, + 39765, + 37668 + ], + 1, + "99458b9f.jpg?=20221104", + 51, + "che_221201_Fmth", + 84, + [ + "hall:betrate", + "hall:betwin", + "hall:dex1", + "hall:occupied", + "hall:tsrate" + ] + ], + [ + "【51기】그걸다먹냐~", + 76, + 91, + 16, + "che_event_척사", + [ + 784914, + 45265, + 37665, + 71787, + 42920 + ], + 1, + "ff019218.jpg?=20221201", + 51, + "che_221201_Fmth", + 85, + [ + "hall:dex1", + "hall:killcrew", + "hall:killcrew_person", + "hall:killnum", + "hall:killrate", + "hall:killrate_person", + "hall:warnum", + "hall:winrate" + ] + ], + [ + "【51기】카와이세이야", + 91, + 76, + 15, + "che_event_위압", + [ + 44323, + 441651, + 10922, + 70913, + 26492 + ], + 1, + "618ef9e2.jpg?=20221201", + 51, + "che_221201_Fmth", + 86, + [ + "hall:dex2" + ] + ], + [ + "【51기】삼모안식년", + 76, + 91, + 16, + "che_event_필살", + [ + 51445, + 28669, + 282477, + 35265, + 41576 + ], + 1, + "448f9d33.png?=20221201", + 51, + "che_221201_Fmth", + 87, + [ + "hall:dex3", + "hall:tsrate" + ] + ], + [ + "【51기】초승달", + 75, + 16, + 94, + "che_event_집중", + [ + 15821, + 14497, + 23130, + 466533, + 41794 + ], + 0, + "default.jpg", + 51, + "che_221201_Fmth", + 88, + [ + "chief:9", + "hall:betgold", + "hall:betrate", + "hall:betwin", + "hall:betwingold", + "hall:dedication", + "hall:experience", + "hall:killrate", + "hall:killrate_person", + "hall:tirate", + "hall:winrate" + ] + ], + [ + "【51기】SARS", + 92, + 76, + 16, + "che_event_저격", + [ + 69042, + 823897, + 5019, + 115061, + 36192 + ], + 1, + "b84944.jpg?=20180829", + 51, + "che_221201_Fmth", + 89, + [ + "hall:dex2", + "hall:killcrew", + "hall:killcrew_person", + "hall:killnum", + "hall:occupied", + "hall:tlrate", + "hall:warnum", + "hall:winrate" + ] + ], + [ + "【51기】료우기시키", + 75, + 15, + 94, + "che_event_신산", + [ + 15058, + 19115, + 8760, + 200085, + 18463 + ], + 1, + "72a190e.jpg?=20220109", + 51, + "che_221201_Fmth", + 90, + [ + "hall:ttrate" + ] + ], + [ + "【51기】대교", + 87, + 15, + 82, + "che_event_집중", + [ + 10292, + 7846, + 8831, + 282029, + 44232 + ], + 1, + "9f0e6dcc.jpg?=20220808", + 51, + "che_221201_Fmth", + 91, + [ + "hall:dedication", + "hall:ttrate" + ] + ], + [ + "【51기】간지밍이", + 77, + 15, + 92, + "che_event_신중", + [ + 11781, + 28931, + 8097, + 267073, + 18860 + ], + 1, + "41b12b95.png?=20221102", + 51, + "che_221201_Fmth", + 92, + [ + "hall:betgold", + "hall:betrate", + "hall:betwin", + "hall:betwingold" + ] + ], + [ + "【51기】사스케", + 75, + 15, + 94, + "che_event_집중", + [ + 39004, + 9593, + 14431, + 428930, + 40791 + ], + 1, + "bb31c034.jpg?=20221125", + 51, + "che_221201_Fmth", + 93, + [ + "hall:betgold", + "hall:betwin", + "hall:betwingold", + "hall:experience", + "hall:occupied", + "hall:tirate" + ] + ], + [ + "【51기】강有", + 77, + 15, + 93, + "che_event_의술", + [ + 41001, + 39801, + 12381, + 458195, + 28491 + ], + 1, + "e633c12c.jpg?=20221206", + 51, + "che_221201_Fmth", + 94, + [ + "hall:tirate" + ] + ], + [ + "【51기】4성구", + 76, + 15, + 92, + "che_event_필살", + [ + 37762, + 24884, + 15754, + 450130, + 40668 + ], + 1, + "5e5b5d13.jpg?=20221201", + 51, + "che_221201_Fmth", + 95, + [ + "chief:7", + "hall:occupied" + ] + ], + [ + "【51기】구찬성", + 76, + 90, + 15, + "che_event_징병", + [ + 166460, + 834, + 466, + 33723, + 9656 + ], + 1, + "557e3202.jpg?=20221201", + 51, + "che_221201_Fmth", + 96, + [ + "hall:tsrate", + "hall:ttrate" + ] + ], + [ + "【51기】쇼쿠호미사키", + 79, + 89, + 15, + "che_event_척사", + [ + 583081, + 17937, + 14491, + 63496, + 28393 + ], + 1, + "4856449d.jpg?=20221130", + 51, + "che_221201_Fmth", + 97, + [ + "hall:dex1", + "hall:warnum" + ] + ], + [ + "【51기】진도준", + 98, + 70, + 15, + "che_event_징병", + [ + 49242, + 31370, + 30928, + 75808, + 498124 + ], + 1, + "e1b87876.jpg?=20221130", + 51, + "che_221201_Fmth", + 99, + [ + "chief:11", + "hall:betgold", + "hall:betwingold", + "hall:dex5", + "hall:killrate", + "hall:tlrate" + ] + ], + [ + "【51기】장수명", + 13, + 68, + 75, + "che_event_의술", + [ + 0, + 0, + 0, + 0, + 0 + ], + 1, + "451bd74f.jpg?=20221218", + 51, + "che_221201_Fmth", + 100, + [ + "hall:dedication", + "hall:ttrate" + ] + ], + [ + "【51기】100", + 85, + 83, + 16, + "che_event_필살", + [ + 203015, + 65328, + 12544, + 35612, + 27709 + ], + 0, + "default.jpg", + 51, + "che_221201_Fmth", + 101, + [ + "hall:betgold", + "hall:betwingold", + "hall:firenum" + ] + ], + [ + "【51기】파이", + 79, + 87, + 15, + "che_event_필살", + [ + 49281, + 7634, + 373233, + 47749, + 44435 + ], + 1, + "4583d988.jpg?=20221109", + 51, + "che_221201_Fmth", + 102, + [ + "hall:dex3" + ] + ], + [ + "【51기】21호", + 92, + 77, + 15, + "che_event_의술", + [ + 546225, + 7423, + 8577, + 83715, + 35545 + ], + 1, + "e6ae27a0.jpg?=20221103", + 51, + "che_221201_Fmth", + 103, + [ + "hall:dex1", + "hall:tlrate" + ] + ], + [ + "【51기】독구", + 67, + 14, + 77, + "che_event_신산", + [ + 19335, + 7096, + 15143, + 356629, + 25077 + ], + 1, + "106bc0e4.png?=20221125", + 51, + "che_221201_Fmth", + 105, + [ + "hall:betgold", + "hall:betwin", + "hall:betwingold", + "hall:dex4", + "hall:experience", + "hall:killcrew", + "hall:killcrew_person", + "hall:killnum", + "hall:killrate_person", + "hall:occupied", + "hall:warnum" + ] + ], + [ + "【51기】초선", + 77, + 15, + 90, + "che_event_신중", + [ + 28804, + 29005, + 15130, + 502721, + 23711 + ], + 0, + "default.jpg", + 51, + "che_221201_Fmth", + 106, + [ + "hall:dex4" + ] + ], + [ + "【51기】풀문", + 73, + 15, + 96, + "che_event_신중", + [ + 14840, + 5936, + 12198, + 156197, + 11261 + ], + 1, + "5a2c9000.jpg?=20221201", + 51, + "che_221201_Fmth", + 107, + [ + "hall:dedication", + "hall:tirate" + ] + ], + [ + "【51기】이누가미코로네", + 78, + 15, + 92, + "che_event_집중", + [ + 46541, + 31997, + 9167, + 538671, + 30782 + ], + 1, + "c0779da0.jpg?=20221201", + 51, + "che_221201_Fmth", + 108, + [ + "hall:dex4", + "hall:tirate" + ] + ], + [ + "【51기】산책중", + 77, + 16, + 91, + "che_event_필살", + [ + 34652, + 25924, + 2094, + 488395, + 31683 + ], + 0, + "default.jpg", + 51, + "che_221201_Fmth", + 110, + [ + "hall:dex4" + ] + ], + [ + "【51기】리안", + 81, + 87, + 15, + "che_event_무쌍", + [ + 29061, + 29649, + 429205, + 39116, + 19121 + ], + 1, + "db0cb7a.jpg?=20190719", + 51, + "che_221201_Fmth", + 112, + [ + "hall:dex3", + "hall:ttrate" + ] + ], + [ + "【51기】마법소년", + 86, + 83, + 15, + "che_event_격노", + [ + 725793, + 6756, + 14565, + 100171, + 28119 + ], + 1, + "ae83730b.jpg?=20221219", + 51, + "che_221201_Fmth", + 116, + [ + "hall:dex1", + "hall:killcrew", + "hall:killcrew_person", + "hall:killnum", + "hall:killrate_person", + "hall:warnum" + ] + ], + [ + "【51기】키리코", + 76, + 17, + 91, + "che_event_필살", + [ + 10141, + 17282, + 6376, + 263180, + 6068 + ], + 1, + "a53dca28.jpg?=20221129", + 51, + "che_221201_Fmth", + 118, + [ + "hall:ttrate" + ] + ], + [ + "【51기】블랙어니언와퍼", + 96, + 75, + 15, + "che_event_위압", + [ + 61197, + 651146, + 1387, + 56937, + 34486 + ], + 1, + "dc53c7c8.png?=20221201", + 51, + "che_221201_Fmth", + 120, + [ + "hall:dex2", + "hall:killcrew", + "hall:killcrew_person", + "hall:killnum", + "hall:tlrate", + "hall:warnum" + ] + ], + [ + "【51기】2성구", + 16, + 92, + 74, + "che_event_신산", + [ + 0, + 0, + 0, + 0, + 0 + ], + 1, + "133134ac.png?=20221130", + 51, + "che_221201_Fmth", + 122, + [ + "hall:firenum", + "hall:tsrate" + ] + ], + [ + "【51기】야근왕", + 92, + 75, + 16, + "che_event_필살", + [ + 44284, + 341803, + 10262, + 48004, + 25593 + ], + 0, + "default.jpg", + 51, + "che_221201_Fmth", + 123, + [ + "hall:dex2" + ] + ], + [ + "【51기】템먹튀하야", + 76, + 15, + 93, + "che_event_저격", + [ + 54438, + 7106, + 1180, + 383113, + 28085 + ], + 0, + "default.jpg", + 51, + "che_221201_Fmth", + 205, + [ + "hall:firenum", + "hall:tirate" + ] + ], + [ + "【51기】사하드", + 80, + 15, + 90, + "che_event_집중", + [ + 28585, + 27605, + 34029, + 475106, + 34970 + ], + 1, + "31f10b32.jpg?=20220717", + 51, + "che_221201_Fmth", + 214, + [ + "hall:dex4", + "hall:firenum", + "hall:winrate" + ] + ], + [ + "【51기】독무장", + 95, + 71, + 16, + "che_event_징병", + [ + 165419, + 49573, + 31151, + 106524, + 355756 + ], + 1, + "d5b2c4c6.jpg?=20220901", + 51, + "che_221201_Fmth", + 245, + [ + "hall:dex5", + "hall:tlrate", + "hall:ttrate" + ] + ], + [ + "【51기】득점왕모라타", + 81, + 86, + 15, + "che_event_돌격", + [ + 19911, + 336032, + 1465, + 57646, + 5961 + ], + 1, + "20913c88.png?=20221204", + 51, + "che_221201_Fmth", + 250, + [ + "hall:dex2", + "hall:ttrate" + ] + ], + [ + "【51기】돌아온너구리", + 86, + 83, + 16, + "che_event_돌격", + [ + 60011, + 17656, + 39177, + 104736, + 524981 + ], + 1, + "79dbce5.jpg?=20210918", + 51, + "che_221201_Fmth", + 268, + [ + "chief:8", + "hall:dex5", + "hall:winrate" + ] + ], + [ + "【51기】Bianchi", + 77, + 87, + 15, + "che_event_필살", + [ + 14032, + 17829, + 355824, + 40676, + 23174 + ], + 0, + "default.jpg", + 51, + "che_221201_Fmth", + 392, + [ + "hall:dex3" + ] + ], + [ + "【52기】골든리트리버", + 88, + 60, + 13, + "che_event_무쌍", + [ + 69834, + 17705, + 10475, + 71962, + 681372 + ], + 1, + "40bbf68e.jpg?=20221229", + 52, + "che_221229_iTyB", + 7, + [ + "hall:dex5", + "hall:experience", + "hall:killcrew", + "hall:killcrew_person", + "hall:killnum", + "hall:killrate", + "hall:killrate_person", + "hall:occupied", + "hall:tlrate", + "hall:warnum", + "hall:winrate" + ] + ], + [ + "【52기】Mella", + 76, + 97, + 15, + "che_event_필살", + [ + 49799, + 917918, + 18973, + 113550, + 68645 + ], + 1, + "f86f0436.jpg?=20221230", + 52, + "che_221229_iTyB", + 12, + [ + "chief:6", + "hall:betrate", + "hall:dex2", + "hall:killnum", + "hall:killrate", + "hall:killrate_person", + "hall:tsrate", + "hall:winrate" + ] + ], + [ + "【52기】륜", + 96, + 15, + 76, + "che_event_척사", + [ + 64760, + 38848, + 14533, + 625024, + 68688 + ], + 1, + "69880da3.png?=20230109", + 52, + "che_221229_iTyB", + 13, + [ + "hall:tlrate" + ] + ], + [ + "【52기】굴먹는고양이", + 93, + 74, + 15, + "che_event_척사", + [ + 30101, + 54062, + 541223, + 70887, + 91982 + ], + 0, + "default.jpg", + 52, + "che_221229_iTyB", + 14, + [ + "chief:10", + "hall:betrate", + "hall:betwingold", + "hall:dex3" + ] + ], + [ + "【52기】Chuck", + 67, + 78, + 13, + "che_event_척사", + [ + 37124, + 18057, + 413529, + 46612, + 32835 + ], + 1, + "7cb75480.png?=20221202", + 52, + "che_221229_iTyB", + 23, + [ + "hall:dex3", + "hall:killnum", + "hall:killrate", + "hall:killrate_person", + "hall:tsrate", + "hall:winrate" + ] + ], + [ + "【52기】123", + 95, + 76, + 15, + "che_event_필살", + [ + 103696, + 639931, + 28017, + 95110, + 104480 + ], + 1, + "189bef26.png?=20230118", + 52, + "che_221229_iTyB", + 24, + [ + "hall:dex2", + "hall:tlrate", + "hall:ttrate" + ] + ], + [ + "【52기】민트토끼", + 13, + 65, + 78, + "che_event_신산", + [ + 0, + 0, + 1535, + 0, + 675 + ], + 1, + "1223e7e9.jpg?=20230114", + 52, + "che_221229_iTyB", + 26, + [ + "hall:betrate", + "hall:dedication", + "hall:firenum" + ] + ], + [ + "【52기】Hide_D", + 79, + 15, + 89, + "che_event_신산", + [ + 65765, + 74152, + 14643, + 460120, + 45390 + ], + 1, + "f2838dce.png?=20221201", + 52, + "che_221229_iTyB", + 28, + [ + "hall:dex2" + ] + ], + [ + "【52기】키류 카즈마", + 81, + 15, + 93, + "che_event_신중", + [ + 77110, + 27028, + 14337, + 893359, + 29135 + ], + 1, + "baae4e33.jpg?=20230108", + 52, + "che_221229_iTyB", + 29, + [ + "hall:dex4", + "hall:killcrew", + "hall:killcrew_person", + "hall:ttrate", + "hall:warnum" + ] + ], + [ + "【52기】200", + 95, + 75, + 15, + "che_event_척사", + [ + 88288, + 70718, + 26604, + 110861, + 891423 + ], + 0, + "default.jpg", + 52, + "che_221229_iTyB", + 33, + [ + "hall:dex5", + "hall:warnum" + ] + ], + [ + "【52기】초선", + 82, + 15, + 90, + "che_event_신산", + [ + 47079, + 62028, + 20229, + 773123, + 39980 + ], + 1, + "b24730b1.jpg?=20230112", + 52, + "che_221229_iTyB", + 35, + [ + "hall:dex4" + ] + ], + [ + "【52기】호나", + 92, + 78, + 15, + "che_event_징병", + [ + 598466, + 25264, + 124089, + 80774, + 138606 + ], + 0, + "default.jpg", + 52, + "che_221229_iTyB", + 36, + [ + "hall:betrate", + "hall:dex3", + "hall:dex5", + "hall:tlrate" + ] + ], + [ + "【52기】바이돌", + 78, + 15, + 92, + "che_event_신중", + [ + 45693, + 29569, + 11410, + 416582, + 89857 + ], + 0, + "default.jpg", + 52, + "che_221229_iTyB", + 40, + [ + "hall:betrate", + "hall:ttrate" + ] + ], + [ + "【52기】스크루지", + 77, + 97, + 15, + "che_event_척사", + [ + 36147, + 577030, + 4530, + 23690, + 9120 + ], + 1, + "944f91de.jpg?=20221229", + 52, + "che_221229_iTyB", + 41, + [ + "hall:dex2", + "hall:firenum", + "hall:tsrate" + ] + ], + [ + "【52기】무작위왕", + 66, + 13, + 81, + "che_event_환술", + [ + 26265, + 19010, + 3177, + 324427, + 10459 + ], + 0, + "default.jpg", + 52, + "che_221229_iTyB", + 42, + [ + "hall:tirate" + ] + ], + [ + "【52기】컴퓨터", + 92, + 78, + 15, + "che_event_격노", + [ + 74368, + 31255, + 405516, + 102311, + 71981 + ], + 0, + "default.jpg", + 52, + "che_221229_iTyB", + 44, + [ + "hall:dex3" + ] + ], + [ + "【52기】갈근", + 90, + 81, + 15, + "che_event_무쌍", + [ + 765611, + 21804, + 26249, + 77840, + 95624 + ], + 0, + "default.jpg", + 52, + "che_221229_iTyB", + 47, + [ + "hall:betwin", + "hall:dex1", + "hall:experience", + "hall:occupied" + ] + ], + [ + "【52기】아냐", + 77, + 15, + 94, + "che_event_환술", + [ + 87632, + 20144, + 9162, + 491436, + 34817 + ], + 1, + "f6ee915a.webp?=20230106", + 52, + "che_221229_iTyB", + 48, + [ + "hall:betgold", + "hall:betwin", + "hall:betwingold", + "hall:firenum" + ] + ], + [ + "【52기】감흥", + 77, + 15, + 94, + "che_event_필살", + [ + 30605, + 24279, + 21545, + 698051, + 55331 + ], + 1, + "11e7fe14.jpg?=20230114", + 52, + "che_221229_iTyB", + 50, + [ + "chief:9", + "hall:betgold", + "hall:betwin", + "hall:betwingold", + "hall:dex4", + "hall:ttrate" + ] + ], + [ + "【52기】마요이", + 66, + 13, + 82, + "che_event_집중", + [ + 32263, + 17766, + 9861, + 443564, + 21529 + ], + 1, + "2ffe4a7d.png?=20221201", + 52, + "che_221229_iTyB", + 52, + [ + "hall:dedication", + "hall:dex4", + "hall:experience", + "hall:killnum", + "hall:killrate_person", + "hall:tirate", + "hall:winrate" + ] + ], + [ + "【52기】임사영", + 88, + 64, + 13, + "che_event_필살", + [ + 77044, + 12587, + 50834, + 55156, + 984120 + ], + 1, + "99458b9f.jpg?=20221104", + 52, + "che_221229_iTyB", + 55, + [ + "hall:betwin", + "hall:dedication", + "hall:dex3", + "hall:dex5", + "hall:experience", + "hall:killcrew", + "hall:killcrew_person", + "hall:killnum", + "hall:killrate", + "hall:killrate_person", + "hall:occupied", + "hall:tlrate", + "hall:warnum", + "hall:winrate" + ] + ], + [ + "【52기】SARS", + 80, + 89, + 16, + "che_event_위압", + [ + 749945, + 38574, + 29532, + 171606, + 221004 + ], + 1, + "b84944.jpg?=20180829", + 52, + "che_221229_iTyB", + 59, + [ + "hall:betrate", + "hall:dex1", + "hall:dex5", + "hall:occupied" + ] + ], + [ + "【52기】쪼꼬미", + 76, + 15, + 95, + "che_event_집중", + [ + 58918, + 26031, + 33232, + 585703, + 83540 + ], + 1, + "308472b8.jpg?=20230105", + 52, + "che_221229_iTyB", + 60, + [ + "hall:betrate", + "hall:tirate" + ] + ], + [ + "【52기】바르바로스", + 15, + 73, + 99, + "che_event_의술", + [ + 0, + 0, + 0, + 0, + 0 + ], + 1, + "6e14bc28.png?=20221229", + 52, + "che_221229_iTyB", + 61, + [ + "hall:dedication", + "hall:experience", + "hall:ttrate" + ] + ], + [ + "【52기】카이스트", + 82, + 15, + 91, + "che_event_환술", + [ + 47360, + 41779, + 5621, + 601656, + 31110 + ], + 1, + "e7e27cd6.jpg?=20221125", + 52, + "che_221229_iTyB", + 64, + [ + "hall:betgold", + "hall:betwin", + "hall:betwingold" + ] + ], + [ + "【52기】불패", + 80, + 92, + 15, + "che_event_필살", + [ + 723496, + 10316, + 53978, + 55587, + 59988 + ], + 1, + "f84e4789.jpg?=20221229", + 52, + "che_221229_iTyB", + 66, + [ + "hall:betgold", + "hall:betrate", + "hall:betwingold", + "hall:dex1" + ] + ], + [ + "【52기】제갈여포", + 77, + 15, + 94, + "che_event_필살", + [ + 61302, + 27330, + 31528, + 517590, + 100621 + ], + 1, + "6e163e9b.jpg?=20221227", + 52, + "che_221229_iTyB", + 69, + [ + "hall:betrate", + "hall:tirate" + ] + ], + [ + "【52기】tqtt", + 79, + 92, + 16, + "che_event_척사", + [ + 893019, + 15615, + 26791, + 67899, + 46154 + ], + 0, + "default.jpg", + 52, + "che_221229_iTyB", + 71, + [ + "hall:dex1", + "hall:killrate", + "hall:killrate_person" + ] + ], + [ + "【52기】시진핑핑이", + 77, + 92, + 15, + "che_event_척사", + [ + 89147, + 392597, + 10144, + 80808, + 82673 + ], + 0, + "default.jpg", + 52, + "che_221229_iTyB", + 72, + [ + "hall:dex2", + "hall:tsrate" + ] + ], + [ + "【52기】제갈초선", + 76, + 15, + 95, + "che_event_집중", + [ + 42395, + 20662, + 30608, + 499527, + 83925 + ], + 1, + "c3a17b46.jpg?=20221229", + 52, + "che_221229_iTyB", + 74, + [ + "chief:7", + "hall:tirate" + ] + ], + [ + "【52기】로아온너구리", + 15, + 71, + 99, + "che_event_필살", + [ + 0, + 0, + 0, + 0, + 0 + ], + 1, + "79dbce5.jpg?=20210918", + 52, + "che_221229_iTyB", + 75, + [ + "hall:experience", + "hall:tirate" + ] + ], + [ + "【52기】바나낫", + 78, + 91, + 16, + "che_event_견고", + [ + 649517, + 23917, + 42302, + 102528, + 87870 + ], + 1, + "dd91a734.gif?=20221226", + 52, + "che_221229_iTyB", + 77, + [ + "chief:11", + "hall:dedication" + ] + ], + [ + "【52기】그걸다먹냐~", + 82, + 92, + 16, + "che_event_견고", + [ + 1727098, + 19009, + 34430, + 43325, + 51842 + ], + 1, + "ff019218.jpg?=20221201", + 52, + "che_221229_iTyB", + 78, + [ + "hall:dex1", + "hall:experience", + "hall:killcrew", + "hall:killcrew_person", + "hall:killnum", + "hall:occupied", + "hall:ttrate", + "hall:warnum" + ] + ], + [ + "【52기】월향", + 69, + 13, + 79, + "che_event_필살", + [ + 27612, + 25008, + 10116, + 582299, + 35904 + ], + 1, + "0b45cdf8.webp?=20230101", + 52, + "che_221229_iTyB", + 79, + [ + "hall:betgold", + "hall:betwin", + "hall:betwingold", + "hall:dex4", + "hall:experience", + "hall:killcrew", + "hall:killcrew_person", + "hall:killnum", + "hall:killrate", + "hall:killrate_person", + "hall:occupied", + "hall:warnum", + "hall:winrate" + ] + ], + [ + "【52기】독구", + 76, + 15, + 96, + "che_event_필살", + [ + 49905, + 32700, + 20887, + 758084, + 110257 + ], + 1, + "106bc0e4.png?=20221125", + 52, + "che_221229_iTyB", + 80, + [ + "chief:12", + "hall:betgold", + "hall:betrate", + "hall:betwin", + "hall:betwingold", + "hall:dedication", + "hall:dex4", + "hall:dex5", + "hall:experience", + "hall:killrate", + "hall:killrate_person", + "hall:tirate", + "hall:winrate" + ] + ], + [ + "【52기】카류", + 95, + 76, + 15, + "che_event_무쌍", + [ + 84773, + 766512, + 18854, + 68923, + 47069 + ], + 1, + "3110b45f.jpg?=20221229", + 52, + "che_221229_iTyB", + 81, + [ + "hall:dex2", + "hall:tlrate" + ] + ], + [ + "【52기】정장이좋아", + 98, + 74, + 15, + "che_event_위압", + [ + 82285, + 458059, + 2638, + 79615, + 15523 + ], + 0, + "default.jpg", + 52, + "che_221229_iTyB", + 82, + [ + "hall:dex2", + "hall:tlrate" + ] + ], + [ + "【52기】평민킬러", + 76, + 95, + 15, + "che_event_필살", + [ + 683597, + 19274, + 33776, + 74003, + 79150 + ], + 1, + "b0d4a54f.jpg?=20221229", + 52, + "che_221229_iTyB", + 83, + [ + "hall:dex1", + "hall:tsrate", + "hall:ttrate" + ] + ], + [ + "【52기】23턴휴식예정", + 76, + 95, + 15, + "che_event_무쌍", + [ + 86181, + 432504, + 5403, + 78040, + 66335 + ], + 1, + "22794a52.jpg?=20230110", + 52, + "che_221229_iTyB", + 84, + [ + "hall:dex2", + "hall:tsrate" + ] + ], + [ + "【52기】라스트댄스", + 77, + 98, + 15, + "che_event_필살", + [ + 1694954, + 20059, + 25629, + 53437, + 35619 + ], + 0, + "default.jpg", + 52, + "che_221229_iTyB", + 85, + [ + "hall:dex1", + "hall:experience", + "hall:killcrew", + "hall:killcrew_person", + "hall:killnum", + "hall:killrate", + "hall:killrate_person", + "hall:occupied", + "hall:tsrate", + "hall:warnum", + "hall:winrate" + ] + ], + [ + "【52기】구몬선생", + 79, + 91, + 15, + "che_event_필살", + [ + 567974, + 24871, + 33979, + 87612, + 90552 + ], + 1, + "442ae972.jpg?=20221229", + 52, + "che_221229_iTyB", + 86, + [ + "hall:ttrate" + ] + ], + [ + "【52기】사스케", + 80, + 90, + 15, + "che_event_의술", + [ + 88864, + 592453, + 4787, + 59198, + 71677 + ], + 1, + "bb31c034.jpg?=20221125", + 52, + "che_221229_iTyB", + 87, + [ + "hall:betgold", + "hall:betwin", + "hall:betwingold", + "hall:dex2", + "hall:firenum" + ] + ], + [ + "【52기】크렌스", + 78, + 91, + 15, + "che_event_돌격", + [ + 60326, + 33225, + 648039, + 145324, + 75777 + ], + 1, + "448f9d33.png?=20221201", + 52, + "che_221229_iTyB", + 88, + [ + "hall:dex3", + "hall:winrate" + ] + ], + [ + "【52기】비상식량", + 15, + 74, + 96, + "che_event_징병", + [ + 0, + 0, + 0, + 0, + 0 + ], + 1, + "3031b888.gif?=20221229", + 52, + "che_221229_iTyB", + 89, + [ + "hall:dedication", + "hall:tirate" + ] + ], + [ + "【52기】올리비아", + 77, + 15, + 95, + "che_event_징병", + [ + 27302, + 21059, + 38343, + 1386215, + 25803 + ], + 1, + "2c5f8db3.jpg?=20221229", + 52, + "che_221229_iTyB", + 91, + [ + "hall:betgold", + "hall:dex4", + "hall:killcrew", + "hall:killcrew_person", + "hall:tirate", + "hall:warnum" + ] + ], + [ + "【52기】간지밍이", + 77, + 16, + 91, + "che_event_집중", + [ + 45836, + 24003, + 22678, + 593884, + 58166 + ], + 1, + "41b12b95.png?=20221102", + 52, + "che_221229_iTyB", + 92, + [ + "hall:betgold", + "hall:betwin", + "hall:betwingold", + "hall:firenum" + ] + ], + [ + "【52기】파초선", + 79, + 92, + 16, + "che_event_필살", + [ + 1262684, + 32987, + 25211, + 108498, + 47304 + ], + 1, + "27a492db.jpg?=20221231", + 52, + "che_221229_iTyB", + 93, + [ + "hall:dex1", + "hall:killcrew", + "hall:killcrew_person", + "hall:killnum", + "hall:killrate", + "hall:killrate_person", + "hall:warnum" + ] + ], + [ + "【52기】개미호랑이", + 75, + 15, + 95, + "che_event_신중", + [ + 83243, + 19611, + 9344, + 473664, + 48080 + ], + 1, + "817c8a88.jpg?=20221007", + 52, + "che_221229_iTyB", + 96, + [ + "hall:dedication" + ] + ], + [ + "【52기】라콘타", + 98, + 72, + 15, + "che_event_필살", + [ + 50168, + 48402, + 515144, + 118124, + 86574 + ], + 1, + "ba444769.png?=20230111", + 52, + "che_221229_iTyB", + 97, + [ + "hall:dex3", + "hall:tlrate" + ] + ], + [ + "【52기】가후", + 81, + 15, + 90, + "che_event_집중", + [ + 35721, + 15376, + 15421, + 539581, + 84783 + ], + 0, + "default.jpg", + 52, + "che_221229_iTyB", + 99, + [ + "hall:ttrate" + ] + ], + [ + "【52기】장원영", + 96, + 71, + 15, + "che_event_징병", + [ + 27065, + 6134, + 9945, + 36510, + 733467 + ], + 1, + "cd51d961.jpg?=20221229", + 52, + "che_221229_iTyB", + 101, + [ + "chief:8", + "hall:dex5", + "hall:killrate", + "hall:occupied", + "hall:tlrate" + ] + ], + [ + "【52기】마왕", + 80, + 91, + 16, + "che_event_필살", + [ + 61021, + 63317, + 609928, + 73282, + 53203 + ], + 1, + "f39217aa.gif?=20220916", + 52, + "che_221229_iTyB", + 106, + [ + "hall:dex3", + "hall:tsrate" + ] + ], + [ + "【52기】온달", + 81, + 16, + 90, + "che_event_집중", + [ + 90006, + 43549, + 22588, + 933010, + 56051 + ], + 0, + "default.jpg", + 52, + "che_221229_iTyB", + 109, + [ + "hall:betgold", + "hall:betwin", + "hall:betwingold", + "hall:dex4", + "hall:killcrew", + "hall:killcrew_person", + "hall:killnum", + "hall:occupied", + "hall:warnum" + ] + ], + [ + "【52기】겨울홍차", + 15, + 76, + 92, + "che_event_신산", + [ + 0, + 0, + 0, + 0, + 0 + ], + 0, + "default.jpg", + 52, + "che_221229_iTyB", + 214, + [ + "hall:dedication", + "hall:firenum" + ] + ], + [ + "【52기】료우기시키", + 78, + 15, + 93, + "che_event_집중", + [ + 62714, + 22829, + 40223, + 694503, + 61295 + ], + 1, + "72a190e.jpg?=20220109", + 52, + "che_221229_iTyB", + 220, + [ + "hall:dex4" + ] + ], + [ + "【52기】리안", + 78, + 92, + 15, + "che_event_필살", + [ + 272174, + 51729, + 237517, + 145363, + 113254 + ], + 1, + "db0cb7a.jpg?=20190719", + 52, + "che_221229_iTyB", + 222, + [ + "hall:dex3", + "hall:dex5", + "hall:tsrate" + ] + ], + [ + "【52기】슈퍼소닉", + 78, + 15, + 95, + "che_event_집중", + [ + 54633, + 55449, + 10568, + 738317, + 51786 + ], + 0, + "default.jpg", + 52, + "che_221229_iTyB", + 225, + [ + "hall:dex4", + "hall:winrate" + ] + ], + [ + "【52기】콘", + 90, + 82, + 16, + "che_event_무쌍", + [ + 1006387, + 48342, + 16882, + 82144, + 65627 + ], + 1, + "60e808e2.jpg?=20230121", + 52, + "che_221229_iTyB", + 226, + [ + "hall:dex1", + "hall:killcrew", + "hall:killcrew_person" + ] + ], + [ + "【52기】아마자라시", + 78, + 91, + 15, + "che_event_무쌍", + [ + 359197, + 28081, + 7867, + 136664, + 66681 + ], + 1, + "4bb484b9.jpg?=20221229", + 52, + "che_221229_iTyB", + 228, + [ + "hall:tsrate" + ] + ], + [ + "【52기】자축인묘", + 95, + 16, + 74, + "che_event_필살", + [ + 64806, + 21533, + 4126, + 115880, + 210556 + ], + 1, + "057d5c72.webp?=20221230", + 52, + "che_221229_iTyB", + 232, + [ + "hall:dex5", + "hall:firenum" + ] + ], + [ + "【52기】야로나", + 78, + 91, + 15, + "che_event_위압", + [ + 25855, + 15908, + 410788, + 113774, + 48654 + ], + 0, + "default.jpg", + 52, + "che_221229_iTyB", + 261, + [ + "hall:dex3" + ] + ], + [ + "【52기】50040", + 88, + 76, + 15, + "che_event_돌격", + [ + 653111, + 30750, + 21125, + 173840, + 65708 + ], + 0, + "default.jpg", + 52, + "che_221229_iTyB", + 262, + [ + "hall:dex1" + ] + ], + [ + "【52기】くま", + 76, + 16, + 92, + "che_event_척사", + [ + 44389, + 17142, + 23184, + 427978, + 104985 + ], + 1, + "770f53.jpg?=20190718", + 52, + "che_221229_iTyB", + 273, + [ + "chief:5" + ] + ], + [ + "【52기】대교", + 95, + 15, + 74, + "che_event_징병", + [ + 18478, + 11684, + 19979, + 86779, + 643393 + ], + 1, + "9f0e6dcc.jpg?=20220808", + 52, + "che_221229_iTyB", + 274, + [ + "hall:dex5", + "hall:occupied", + "hall:tlrate" + ] + ], + [ + "【52기】껄룩", + 80, + 90, + 15, + "che_event_위압", + [ + 28962, + 166889, + 2779, + 13465, + 658 + ], + 0, + "default.jpg", + 52, + "che_221229_iTyB", + 275, + [ + "hall:dex2" + ] + ], + [ + "【52기】NK", + 16, + 95, + 74, + "che_event_필살", + [ + 0, + 0, + 0, + 0, + 0 + ], + 1, + "d48fe93a.jpg?=20221209", + 52, + "che_221229_iTyB", + 284, + [ + "hall:ttrate" + ] + ], + [ + "【52기】독급함", + 15, + 74, + 93, + "che_event_필살", + [ + 0, + 0, + 0, + 0, + 0 + ], + 1, + "d5b2c4c6.jpg?=20220901", + 52, + "che_221229_iTyB", + 453, + [ + "hall:dedication", + "hall:tirate" + ] + ], + [ + "【52기】기", + 16, + 72, + 91, + "che_event_저격", + [ + 0, + 0, + 0, + 0, + 0 + ], + 1, + "3a86f19.gif?=20220419", + 52, + "che_221229_iTyB", + 471, + [ + "hall:firenum" + ] + ], + [ + "【53기】사스케", + 64, + 84, + 13, + "che_event_돌격", + [ + 32787, + 33906, + 641827, + 30674, + 15519 + ], + 1, + "bb31c034.jpg?=20221125", + 53, + "che_230126_2I4P", + 3, + [ + "hall:betgold", + "hall:betrate", + "hall:betwin", + "hall:betwingold", + "hall:dedication", + "hall:dex3", + "hall:experience", + "hall:killcrew", + "hall:killcrew_person", + "hall:killnum", + "hall:killrate", + "hall:killrate_person", + "hall:occupied", + "hall:tsrate", + "hall:warnum", + "hall:winrate" + ] + ], + [ + "【53기】카류", + 104, + 70, + 15, + "che_event_돌격", + [ + 93715, + 50129, + 29987, + 170203, + 1045473 + ], + 1, + "8bc994bd.jpg?=20230122", + 53, + "che_230126_2I4P", + 4, + [ + "chief:12", + "hall:betgold", + "hall:betwin", + "hall:betwingold", + "hall:dedication", + "hall:dex5", + "hall:experience", + "hall:killcrew", + "hall:killcrew_person", + "hall:killnum", + "hall:killrate", + "hall:killrate_person", + "hall:occupied", + "hall:tlrate", + "hall:warnum", + "hall:winrate" + ] + ], + [ + "【53기】평민킬러", + 96, + 81, + 15, + "che_event_척사", + [ + 58011, + 1809898, + 40397, + 120221, + 65420 + ], + 1, + "b0d4a54f.jpg?=20221229", + 53, + "che_230126_2I4P", + 6, + [ + "hall:betwin", + "hall:dex2", + "hall:dex5", + "hall:experience", + "hall:killcrew", + "hall:killcrew_person", + "hall:killnum", + "hall:killrate", + "hall:killrate_person", + "hall:occupied", + "hall:tlrate", + "hall:warnum", + "hall:winrate" + ] + ], + [ + "【53기】물냉면", + 93, + 77, + 15, + "che_event_위압", + [ + 30516, + 39529, + 389448, + 51730, + 32689 + ], + 1, + "3741d475.png?=20230124", + 53, + "che_230126_2I4P", + 8, + [ + "chief:6", + "hall:betrate", + "hall:dex3" + ] + ], + [ + "【53기】크렌스", + 85, + 60, + 13, + "che_event_공성", + [ + 1501, + 13596, + 10203, + 19489, + 487904 + ], + 1, + "448f9d33.png?=20221201", + 53, + "che_230126_2I4P", + 11, + [ + "hall:dex5", + "hall:experience", + "hall:killcrew", + "hall:killrate", + "hall:occupied", + "hall:tlrate", + "hall:winrate" + ] + ], + [ + "【53기】SARS", + 69, + 13, + 78, + "che_event_신산", + [ + 10991, + 15008, + 12319, + 313885, + 12434 + ], + 1, + "b84944.jpg?=20180829", + 53, + "che_230126_2I4P", + 13, + [ + "hall:dex4" + ] + ], + [ + "【53기】뤼에르", + 75, + 96, + 15, + "che_event_견고", + [ + 60702, + 440329, + 16254, + 31671, + 21490 + ], + 1, + "a27bb4f3.png?=20230126", + 53, + "che_230126_2I4P", + 15, + [ + "hall:dex2", + "hall:firenum", + "hall:tsrate", + "hall:winrate" + ] + ], + [ + "【53기】장원영", + 100, + 70, + 15, + "che_event_공성", + [ + 1476, + 5951, + 9271, + 26933, + 1595218 + ], + 1, + "cd51d961.jpg?=20221229", + 53, + "che_230126_2I4P", + 18, + [ + "chief:10", + "hall:betgold", + "hall:betrate", + "hall:betwin", + "hall:betwingold", + "hall:dex5", + "hall:experience", + "hall:killcrew", + "hall:killrate", + "hall:killrate_person", + "hall:occupied", + "hall:tlrate", + "hall:winrate" + ] + ], + [ + "【53기】복분자막걸리", + 104, + 70, + 15, + "che_event_돌격", + [ + 76230, + 45531, + 34482, + 150241, + 1049733 + ], + 1, + "144c38ab.png?=20230126", + 53, + "che_230126_2I4P", + 19, + [ + "chief:8", + "hall:betgold", + "hall:betwingold", + "hall:dedication", + "hall:dex5", + "hall:experience", + "hall:killcrew", + "hall:killcrew_person", + "hall:killnum", + "hall:killrate", + "hall:killrate_person", + "hall:occupied", + "hall:tlrate", + "hall:warnum", + "hall:winrate" + ] + ], + [ + "【53기】키리코", + 64, + 13, + 82, + "che_event_집중", + [ + 10785, + 23010, + 16915, + 246852, + 17779 + ], + 1, + "283f3a39.jpg?=20230129", + 53, + "che_230126_2I4P", + 21, + [ + "hall:tirate", + "hall:ttrate" + ] + ], + [ + "【53기】와일드플라워", + 94, + 74, + 15, + "che_event_견고", + [ + 60387, + 771551, + 18330, + 89244, + 34314 + ], + 0, + "default.jpg", + 53, + "che_230126_2I4P", + 28, + [ + "hall:dex2", + "hall:warnum" + ] + ], + [ + "【53기】월향", + 91, + 76, + 18, + "che_event_필살", + [ + 195414, + 6261, + 42121, + 10796, + 11809 + ], + 1, + "0b45cdf8.webp?=20230101", + 53, + "che_230126_2I4P", + 29, + [ + "hall:dex1", + "hall:firenum", + "hall:tlrate" + ] + ], + [ + "【53기】렌스옹 근위병", + 64, + 82, + 13, + "che_event_돌격", + [ + 373176, + 38642, + 34585, + 73235, + 21374 + ], + 0, + "default.jpg", + 53, + "che_230126_2I4P", + 33, + [ + "hall:betwin", + "hall:dex1", + "hall:experience", + "hall:killnum", + "hall:tsrate", + "hall:winrate" + ] + ], + [ + "【53기】북오더", + 93, + 15, + 77, + "che_event_필살", + [ + 23528, + 85398, + 84546, + 115228, + 503039 + ], + 1, + "f39217aa.gif?=20220916", + 53, + "che_230126_2I4P", + 34, + [ + "hall:dex5", + "hall:occupied", + "hall:tlrate" + ] + ], + [ + "【53기】정일품", + 77, + 89, + 16, + "che_event_위압", + [ + 21242, + 461728, + 11094, + 59905, + 14210 + ], + 1, + "b3470750.jpg?=20230205", + 53, + "che_230126_2I4P", + 35, + [ + "hall:betrate", + "hall:dex2" + ] + ], + [ + "【53기】이서", + 73, + 15, + 97, + "che_event_신중", + [ + 21546, + 26000, + 9860, + 376645, + 51447 + ], + 1, + "78bf16fd.jpg?=20230126", + 53, + "che_230126_2I4P", + 38, + [ + "chief:5", + "hall:dedication", + "hall:dex5", + "hall:experience", + "hall:tirate", + "hall:ttrate" + ] + ], + [ + "【53기】에드몬드", + 87, + 83, + 15, + "che_event_위압", + [ + 663524, + 30440, + 63189, + 69087, + 33699 + ], + 1, + "226617c7.jpg?=20230127", + 53, + "che_230126_2I4P", + 40, + [ + "hall:dex1", + "hall:warnum" + ] + ], + [ + "【53기】리안", + 89, + 79, + 16, + "che_event_저격", + [ + 24624, + 19312, + 424075, + 37472, + 11726 + ], + 1, + "db0cb7a.jpg?=20190719", + 53, + "che_230126_2I4P", + 42, + [ + "hall:dex3" + ] + ], + [ + "【53기】라콘타", + 73, + 97, + 15, + "che_event_척사", + [ + 24930, + 33348, + 332111, + 48185, + 19782 + ], + 1, + "6c49660d.png?=20230127", + 53, + "che_230126_2I4P", + 43, + [ + "hall:tsrate" + ] + ], + [ + "【53기】안유진", + 74, + 96, + 15, + "che_event_견고", + [ + 374992, + 14140, + 23599, + 42389, + 18764 + ], + 1, + "c195cb5d.jpg?=20230126", + 53, + "che_230126_2I4P", + 44, + [ + "hall:dex1", + "hall:killrate", + "hall:killrate_person", + "hall:tsrate", + "hall:ttrate" + ] + ], + [ + "【53기】나나미", + 76, + 94, + 15, + "che_event_견고", + [ + 22080, + 25775, + 423943, + 53647, + 44288 + ], + 1, + "812786e4.jpg?=20230126", + 53, + "che_230126_2I4P", + 46, + [ + "hall:dex3", + "hall:tsrate" + ] + ], + [ + "【53기】머털도사", + 97, + 74, + 15, + "che_event_필살", + [ + 77862, + 55043, + 753840, + 196537, + 36129 + ], + 1, + "5dff87e7.jpg?=20230126", + 53, + "che_230126_2I4P", + 47, + [ + "hall:betwin", + "hall:dex3", + "hall:killcrew", + "hall:killcrew_person", + "hall:tlrate", + "hall:ttrate", + "hall:warnum" + ] + ], + [ + "【53기】5초만함", + 78, + 15, + 92, + "che_event_집중", + [ + 14726, + 35911, + 15066, + 563547, + 20202 + ], + 0, + "default.jpg", + 53, + "che_230126_2I4P", + 48, + [ + "hall:dex4" + ] + ], + [ + "【53기】카이스트", + 78, + 16, + 92, + "che_event_환술", + [ + 20957, + 46292, + 10667, + 453954, + 30736 + ], + 1, + "e7e27cd6.jpg?=20221125", + 53, + "che_230126_2I4P", + 49, + [ + "hall:betwin", + "hall:firenum" + ] + ], + [ + "【53기】김나영", + 81, + 91, + 15, + "che_event_저격", + [ + 51617, + 627858, + 17321, + 84740, + 19226 + ], + 1, + "12f75f31.jpg?=20230126", + 53, + "che_230126_2I4P", + 50, + [ + "hall:dex2", + "hall:firenum", + "hall:killnum", + "hall:winrate" + ] + ], + [ + "【53기】복숭아좋아", + 64, + 13, + 82, + "che_event_집중", + [ + 5146, + 6682, + 18310, + 247815, + 7308 + ], + 1, + "57e4a39.jpg?=20190620", + 53, + "che_230126_2I4P", + 58, + [ + "hall:tirate", + "hall:winrate" + ] + ], + [ + "【53기】네시", + 78, + 92, + 15, + "che_event_척사", + [ + 42766, + 609090, + 16192, + 63322, + 44491 + ], + 0, + "default.jpg", + 53, + "che_230126_2I4P", + 59, + [ + "hall:dex2", + "hall:killrate", + "hall:killrate_person", + "hall:tsrate", + "hall:ttrate" + ] + ], + [ + "【53기】양념소갈비", + 74, + 15, + 96, + "che_event_필살", + [ + 26587, + 23335, + 21680, + 518301, + 36307 + ], + 1, + "6b6e744b.jpg?=20230126", + 53, + "che_230126_2I4P", + 62, + [ + "chief:11", + "hall:dedication", + "hall:experience", + "hall:killrate_person", + "hall:tirate" + ] + ], + [ + "【53기】득구", + 96, + 73, + 15, + "che_event_척사", + [ + 611843, + 19483, + 79080, + 109517, + 17852 + ], + 1, + "30e42c39.png?=20230126", + 53, + "che_230126_2I4P", + 63, + [ + "hall:dex1" + ] + ], + [ + "【53기】호나", + 79, + 15, + 92, + "che_event_필살", + [ + 20877, + 29563, + 14354, + 582231, + 47545 + ], + 0, + "default.jpg", + 53, + "che_230126_2I4P", + 66, + [ + "hall:dex4" + ] + ], + [ + "【53기】200", + 91, + 80, + 15, + "che_event_격노", + [ + 41229, + 516241, + 77558, + 61832, + 17637 + ], + 0, + "default.jpg", + 53, + "che_230126_2I4P", + 68, + [ + "hall:betgold", + "hall:betrate", + "hall:betwingold", + "hall:dex2", + "hall:ttrate" + ] + ], + [ + "【53기】교수님", + 78, + 16, + 93, + "che_event_집중", + [ + 27435, + 19555, + 53161, + 849572, + 16780 + ], + 1, + "3bc0705a.png?=20230131", + 53, + "che_230126_2I4P", + 69, + [ + "hall:betrate", + "hall:dex4", + "hall:killcrew_person", + "hall:killnum" + ] + ], + [ + "【53기】박회장", + 77, + 91, + 15, + "che_event_무쌍", + [ + 14531, + 31391, + 406604, + 48716, + 50651 + ], + 1, + "ec6fe86b.png?=20230126", + 53, + "che_230126_2I4P", + 71, + [ + "hall:dex3", + "hall:dex5" + ] + ], + [ + "【53기】파이", + 78, + 15, + 91, + "che_event_필살", + [ + 18396, + 27824, + 29487, + 786596, + 28089 + ], + 1, + "420cb96e.png?=20230129", + 53, + "che_230126_2I4P", + 72, + [ + "hall:dex4", + "hall:killcrew", + "hall:killcrew_person", + "hall:killnum" + ] + ], + [ + "【53기】발터모델", + 80, + 92, + 15, + "che_event_무쌍", + [ + 28953, + 41139, + 1139220, + 68307, + 46160 + ], + 0, + "default.jpg", + 53, + "che_230126_2I4P", + 73, + [ + "hall:dex3", + "hall:killcrew", + "hall:killcrew_person", + "hall:killnum", + "hall:warnum" + ] + ], + [ + "【53기】청하", + 15, + 74, + 95, + "che_event_의술", + [ + 0, + 0, + 0, + 0, + 0 + ], + 1, + "693eb11d.jpg?=20230125", + 53, + "che_230126_2I4P", + 74, + [ + "hall:betrate", + "hall:dedication", + "hall:experience" + ] + ], + [ + "【53기】개미호랑이", + 82, + 15, + 89, + "che_event_집중", + [ + 28193, + 41867, + 28038, + 607666, + 51584 + ], + 1, + "817c8a88.jpg?=20221007", + 53, + "che_230126_2I4P", + 75, + [ + "hall:dex4", + "hall:dex5", + "hall:ttrate" + ] + ], + [ + "【53기】돼지갈비", + 19, + 72, + 91, + "che_event_징병", + [ + 1184, + 6230, + 48473, + 13147, + 17663 + ], + 1, + "296ff940.jpg?=20230126", + 53, + "che_230126_2I4P", + 77, + [ + "chief:9", + "hall:betgold", + "hall:betwin", + "hall:betwingold", + "hall:dedication" + ] + ], + [ + "【53기】NK", + 92, + 78, + 15, + "che_event_필살", + [ + 44666, + 50309, + 820786, + 89289, + 48556 + ], + 1, + "d48fe93a.jpg?=20221209", + 53, + "che_230126_2I4P", + 78, + [ + "hall:dex3", + "hall:killcrew", + "hall:killcrew_person", + "hall:killnum", + "hall:warnum" + ] + ], + [ + "【53기】간지밍이", + 74, + 15, + 96, + "che_event_필살", + [ + 7731, + 14567, + 6491, + 383628, + 39726 + ], + 1, + "41b12b95.png?=20221102", + 53, + "che_230126_2I4P", + 79, + [ + "chief:7", + "hall:betgold", + "hall:betwin", + "hall:betwingold", + "hall:dedication" + ] + ], + [ + "【53기】독구", + 75, + 15, + 96, + "che_event_필살", + [ + 14923, + 27679, + 37459, + 558471, + 33135 + ], + 1, + "106bc0e4.png?=20221125", + 53, + "che_230126_2I4P", + 80, + [ + "hall:betrate", + "hall:dex4", + "hall:killrate", + "hall:killrate_person", + "hall:tirate" + ] + ], + [ + "【53기】1초장", + 13, + 62, + 82, + "che_event_의술", + [ + 0, + 0, + 270, + 236, + 0 + ], + 1, + "63abb0e9.jpg?=20230126", + 53, + "che_230126_2I4P", + 82, + [ + "hall:dedication", + "hall:tirate" + ] + ], + [ + "【53기】하야마 우미", + 75, + 15, + 96, + "che_event_필살", + [ + 5561, + 28468, + 57857, + 596850, + 35145 + ], + 1, + "527169ae.jpg?=20230127", + 53, + "che_230126_2I4P", + 83, + [ + "hall:betgold", + "hall:betwingold", + "hall:dex4", + "hall:occupied", + "hall:tirate" + ] + ], + [ + "【53기】독구교3인자", + 96, + 71, + 16, + "che_event_의술", + [ + 37836, + 28489, + 111440, + 67108, + 588526 + ], + 0, + "default.jpg", + 53, + "che_230126_2I4P", + 84, + [ + "hall:dex5", + "hall:occupied" + ] + ], + [ + "【53기】무라사키시온", + 80, + 15, + 88, + "che_event_집중", + [ + 42628, + 47906, + 25550, + 655047, + 37851 + ], + 1, + "8f1aa121.jpg?=20230126", + 53, + "che_230126_2I4P", + 86, + [ + "hall:dex4" + ] + ], + [ + "【53기】아이리 칸나", + 79, + 90, + 15, + "che_event_위압", + [ + 889292, + 24445, + 21058, + 27749, + 31155 + ], + 1, + "89cd7e20.jpg?=20230126", + 53, + "che_230126_2I4P", + 89, + [ + "hall:dex1", + "hall:killcrew_person", + "hall:killrate", + "hall:killrate_person", + "hall:warnum" + ] + ], + [ + "【53기】임사영", + 76, + 95, + 15, + "che_event_필살", + [ + 86206, + 35915, + 374651, + 37840, + 17043 + ], + 1, + "99458b9f.jpg?=20221104", + 53, + "che_230126_2I4P", + 90, + [ + "hall:dex3", + "hall:tsrate", + "hall:ttrate" + ] + ], + [ + "【53기】허니츄러스", + 96, + 73, + 15, + "che_event_필살", + [ + 388677, + 18356, + 71349, + 60631, + 13459 + ], + 1, + "f2ebbf1e.png?=20230126", + 53, + "che_230126_2I4P", + 92, + [ + "hall:dex1", + "hall:tlrate" + ] + ], + [ + "【53기】경국지색소교", + 79, + 90, + 15, + "che_event_필살", + [ + 101965, + 356204, + 62005, + 35072, + 11405 + ], + 0, + "default.jpg", + 53, + "che_230126_2I4P", + 93, + [ + "hall:dex2", + "hall:tsrate" + ] + ], + [ + "【53기】네이미", + 89, + 79, + 15, + "che_event_위압", + [ + 128891, + 480958, + 14906, + 92268, + 46261 + ], + 0, + "default.jpg", + 53, + "che_230126_2I4P", + 94, + [ + "hall:dex2" + ] + ], + [ + "【53기】동네 이장", + 82, + 63, + 13, + "che_event_격노", + [ + 242129, + 7275, + 42840, + 35689, + 5937 + ], + 1, + "78fcb540.jpg?=20230126", + 53, + "che_230126_2I4P", + 95, + [ + "hall:dex1", + "hall:tlrate" + ] + ], + [ + "【53기】대교", + 93, + 75, + 15, + "che_event_무쌍", + [ + 15808, + 87859, + 680421, + 207670, + 32962 + ], + 1, + "9f0e6dcc.jpg?=20220808", + 53, + "che_230126_2I4P", + 101, + [ + "hall:dex3" + ] + ], + [ + "【53기】무광", + 69, + 13, + 75, + "che_event_저격", + [ + 20066, + 13106, + 16125, + 334417, + 10740 + ], + 0, + "default.jpg", + 53, + "che_230126_2I4P", + 103, + [ + "hall:dex4" + ] + ], + [ + "【53기】Chuck", + 76, + 16, + 93, + "che_event_반계", + [ + 11620, + 82869, + 10969, + 427587, + 26433 + ], + 1, + "7cb75480.png?=20221202", + 53, + "che_230126_2I4P", + 104, + [ + "hall:tirate", + "hall:ttrate" + ] + ], + [ + "【53기】삭턴사", + 15, + 73, + 97, + "che_event_척사", + [ + 0, + 0, + 0, + 0, + 0 + ], + 0, + "default.jpg", + 53, + "che_230126_2I4P", + 105, + [ + "hall:tirate" + ] + ], + [ + "【53기】비상식량", + 90, + 79, + 15, + "che_event_격노", + [ + 402335, + 12219, + 9417, + 60548, + 18354 + ], + 1, + "3031b888.gif?=20221229", + 53, + "che_230126_2I4P", + 107, + [ + "hall:dex1", + "hall:occupied" + ] + ], + [ + "【53기】23학번경영학도", + 92, + 75, + 15, + "che_event_견고", + [ + 12175, + 201793, + 68378, + 56856, + 4127 + ], + 0, + "default.jpg", + 53, + "che_230126_2I4P", + 108, + [ + "hall:dex2" + ] + ], + [ + "【53기】비빔냉면", + 75, + 15, + 93, + "che_event_집중", + [ + 1770, + 37512, + 6698, + 257756, + 13540 + ], + 1, + "0b7d1199.jpg?=20230128", + 53, + "che_230126_2I4P", + 110, + [ + "hall:dedication" + ] + ], + [ + "【53기】외심장", + 75, + 16, + 93, + "che_event_징병", + [ + 25894, + 2704, + 17900, + 272609, + 16856 + ], + 1, + "36110cd.jpg?=20180826", + 53, + "che_230126_2I4P", + 111, + [ + "hall:tirate" + ] + ], + [ + "【53기】Bianchi", + 65, + 79, + 14, + "che_event_돌격", + [ + 248024, + 13078, + 24657, + 57108, + 10575 + ], + 0, + "default.jpg", + 53, + "che_230126_2I4P", + 178, + [ + "hall:dex1", + "hall:tsrate", + "hall:ttrate" + ] + ], + [ + "【53기】국04", + 87, + 81, + 15, + "che_event_돌격", + [ + 7891, + 39316, + 364378, + 86818, + 49404 + ], + 1, + "36e514d2.jpg?=20230207", + 53, + "che_230126_2I4P", + 225, + [ + "hall:betgold" + ] + ], + [ + "【53기】Samo", + 79, + 15, + 87, + "che_event_집중", + [ + 19230, + 60198, + 15038, + 403499, + 263 + ], + 1, + "25449b0.png?=20190626", + 53, + "che_230126_2I4P", + 366, + [ + "hall:betrate", + "hall:betwingold" + ] + ], + [ + "【53기】건달", + 74, + 88, + 15, + "che_event_척사", + [ + 4728, + 43378, + 205878, + 63450, + 23561 + ], + 0, + "default.jpg", + 53, + "che_230126_2I4P", + 477, + [ + "hall:betgold", + "hall:betrate", + "hall:betwin", + "hall:betwingold" + ] + ], + [ + "【54기】카이스트", + 78, + 15, + 90, + "che_event_신산", + [ + 44889, + 12464, + 11489, + 409426, + 23413 + ], + 1, + "e7e27cd6.jpg?=20221125", + 54, + "che_230223_bffE", + 3, + [ + "hall:betgold", + "hall:betwin", + "hall:betwingold", + "hall:firenum", + "hall:tirate" + ] + ], + [ + "【54기】여포", + 78, + 15, + 88, + "che_event_필살", + [ + 49926, + 36667, + 39778, + 546042, + 43164 + ], + 1, + "160c3e3e.jpg?=20230225", + 54, + "che_230223_bffE", + 4, + [ + "hall:dex4", + "hall:occupied" + ] + ], + [ + "【54기】버터링딥초코", + 97, + 72, + 15, + "che_event_필살", + [ + 402068, + 71984, + 37868, + 75228, + 125486 + ], + 1, + "570c2ff6.jpg?=20230224", + 54, + "che_230223_bffE", + 8, + [ + "hall:betwin", + "hall:dex1", + "hall:dex2", + "hall:dex5", + "hall:killcrew", + "hall:killcrew_person", + "hall:killnum", + "hall:tlrate", + "hall:ttrate" + ] + ], + [ + "【54기】덕구", + 79, + 93, + 15, + "che_event_무쌍", + [ + 85002, + 1105608, + 23785, + 145540, + 48522 + ], + 1, + "c1713ebf.jpg?=20230223", + 54, + "che_230223_bffE", + 13, + [ + "hall:dex2", + "hall:experience", + "hall:killcrew", + "hall:killcrew_person", + "hall:killnum", + "hall:killrate", + "hall:killrate_person", + "hall:occupied", + "hall:tsrate", + "hall:warnum", + "hall:winrate" + ] + ], + [ + "【54기】Chuck", + 76, + 91, + 16, + "che_event_저격", + [ + 551491, + 13208, + 33962, + 58662, + 48409 + ], + 1, + "7cb75480.png?=20221202", + 54, + "che_230223_bffE", + 16, + [ + "hall:dex1", + "hall:experience", + "hall:occupied" + ] + ], + [ + "【54기】불패", + 75, + 15, + 92, + "che_event_필살", + [ + 23966, + 24078, + 27672, + 521391, + 46080 + ], + 1, + "c6d07baa.jpg?=20230223", + 54, + "che_230223_bffE", + 24, + [ + "chief:5", + "hall:betgold", + "hall:betwingold", + "hall:dedication", + "hall:dex4", + "hall:experience", + "hall:occupied" + ] + ], + [ + "【54기】재선충", + 76, + 92, + 15, + "che_event_돌격", + [ + 735608, + 40279, + 24020, + 105310, + 51946 + ], + 0, + "default.jpg", + 54, + "che_230223_bffE", + 25, + [ + "chief:8", + "hall:betwin", + "hall:dedication", + "hall:dex1", + "hall:experience", + "hall:killcrew", + "hall:killnum", + "hall:killrate", + "hall:killrate_person", + "hall:occupied", + "hall:tsrate", + "hall:warnum", + "hall:winrate" + ] + ], + [ + "【54기】토오노 아키하", + 77, + 15, + 91, + "che_event_필살", + [ + 8050, + 6739, + 17489, + 341682, + 5005 + ], + 1, + "c909ac38.png?=20230223", + 54, + "che_230223_bffE", + 26, + [ + "hall:killrate_person" + ] + ], + [ + "【54기】ㅊㄹㅊㄹ", + 78, + 90, + 15, + "che_event_필살", + [ + 29107, + 19572, + 421350, + 81142, + 19863 + ], + 1, + "63f1c106.png?=20230223", + 54, + "che_230223_bffE", + 30, + [ + "hall:dex3", + "hall:tsrate", + "hall:ttrate" + ] + ], + [ + "【54기】Mayday", + 95, + 73, + 15, + "che_event_필살", + [ + 435798, + 3067, + 4755, + 53409, + 19255 + ], + 1, + "7ff7c2c9.jpg?=20230225", + 54, + "che_230223_bffE", + 31, + [ + "hall:dex1", + "hall:tlrate" + ] + ], + [ + "【54기】내정장", + 76, + 15, + 91, + "che_event_신중", + [ + 15605, + 27523, + 26744, + 520501, + 19238 + ], + 1, + "53dd108f.jpg?=20230225", + 54, + "che_230223_bffE", + 33, + [ + "hall:betgold" + ] + ], + [ + "【54기】김채원", + 77, + 89, + 15, + "che_event_견고", + [ + 41399, + 304198, + 6178, + 80931, + 21497 + ], + 1, + "a7a529f5.jpg?=20230223", + 54, + "che_230223_bffE", + 35, + [ + "hall:dex2", + "hall:firenum", + "hall:tsrate" + ] + ], + [ + "【54기】국04", + 87, + 15, + 77, + "che_event_환술", + [ + 62748, + 26309, + 41697, + 478996, + 37957 + ], + 1, + "36e514d2.jpg?=20230207", + 54, + "che_230223_bffE", + 36, + [ + "hall:betrate", + "hall:betwingold", + "hall:tlrate" + ] + ], + [ + "【54기】엔틱", + 77, + 15, + 90, + "che_event_척사", + [ + 54761, + 22120, + 15550, + 733581, + 23612 + ], + 1, + "4a4bcd77.jpg?=20230223", + 54, + "che_230223_bffE", + 37, + [ + "hall:dex4", + "hall:killcrew", + "hall:killcrew_person", + "hall:killnum", + "hall:killrate", + "hall:killrate_person", + "hall:warnum", + "hall:winrate" + ] + ], + [ + "【54기】임사영", + 76, + 15, + 91, + "che_event_집중", + [ + 30519, + 37577, + 15852, + 517536, + 39601 + ], + 1, + "99458b9f.jpg?=20221104", + 54, + "che_230223_bffE", + 38, + [ + "hall:tirate" + ] + ], + [ + "【54기】Bianchi", + 74, + 91, + 15, + "che_event_필살", + [ + 429721, + 15887, + 20093, + 63316, + 52311 + ], + 0, + "default.jpg", + 54, + "che_230223_bffE", + 39, + [ + "hall:dex1", + "hall:tsrate" + ] + ], + [ + "【54기】헬창법사", + 94, + 15, + 74, + "che_event_신산", + [ + 42941, + 5038, + 24062, + 493394, + 47887 + ], + 1, + "d906854f.png?=20230224", + 54, + "che_230223_bffE", + 42, + [ + "hall:tlrate", + "hall:warnum" + ] + ], + [ + "【54기】바나낫", + 79, + 88, + 16, + "che_event_척사", + [ + 641112, + 17414, + 15524, + 60668, + 73441 + ], + 1, + "d52c3ea5.jpg?=20230215", + 54, + "che_230223_bffE", + 48, + [ + "hall:dex1", + "hall:dex5", + "hall:killcrew", + "hall:warnum" + ] + ], + [ + "【54기】나나미", + 94, + 75, + 15, + "che_event_필살", + [ + 495836, + 6074, + 37977, + 52473, + 13138 + ], + 1, + "812786e4.jpg?=20230126", + 54, + "che_230223_bffE", + 51, + [ + "hall:dex1", + "hall:firenum", + "hall:killcrew_person", + "hall:tlrate" + ] + ], + [ + "【54기】초선", + 76, + 16, + 89, + "che_event_필살", + [ + 37001, + 30173, + 15035, + 522852, + 42685 + ], + 1, + "b24730b1.jpg?=20230112", + 54, + "che_230223_bffE", + 56, + [ + "hall:dex4" + ] + ], + [ + "【54기】SARS", + 77, + 89, + 16, + "che_event_척사", + [ + 26336, + 327083, + 1205, + 94157, + 132141 + ], + 1, + "b84944.jpg?=20180829", + 54, + "che_230223_bffE", + 59, + [ + "hall:dex2", + "hall:dex5", + "hall:firenum", + "hall:tsrate" + ] + ], + [ + "【54기】동물", + 75, + 16, + 90, + "che_event_필살", + [ + 27892, + 20894, + 18166, + 588582, + 34336 + ], + 0, + "default.jpg", + 54, + "che_230223_bffE", + 68, + [ + "chief:9", + "hall:betgold", + "hall:betwin", + "hall:betwingold", + "hall:dedication", + "hall:dex4", + "hall:experience", + "hall:killcrew", + "hall:killnum", + "hall:killrate", + "hall:killrate_person", + "hall:occupied", + "hall:winrate" + ] + ], + [ + "【54기】환승역", + 93, + 74, + 15, + "che_event_척사", + [ + 10466, + 22674, + 334400, + 103476, + 37346 + ], + 0, + "default.jpg", + 54, + "che_230223_bffE", + 69, + [ + "hall:dex3", + "hall:firenum" + ] + ], + [ + "【54기】대교", + 93, + 74, + 15, + "che_event_돌격", + [ + 43465, + 23123, + 390783, + 155508, + 29314 + ], + 1, + "9f0e6dcc.jpg?=20220808", + 54, + "che_230223_bffE", + 71, + [ + "hall:dex3", + "hall:tlrate", + "hall:winrate" + ] + ], + [ + "【54기】네이미", + 89, + 75, + 16, + "che_event_돌격", + [ + 78640, + 183613, + 152233, + 88482, + 29282 + ], + 0, + "default.jpg", + 54, + "che_230223_bffE", + 74, + [ + "hall:dex2", + "hall:dex3" + ] + ], + [ + "【54기】에드몬드", + 83, + 15, + 84, + "che_event_척사", + [ + 15130, + 23370, + 12381, + 431296, + 63256 + ], + 1, + "226617c7.jpg?=20230127", + 54, + "che_230223_bffE", + 75, + [ + "hall:dex5", + "hall:ttrate" + ] + ], + [ + "【54기】제갈여포", + 75, + 15, + 94, + "che_event_의술", + [ + 21161, + 5148, + 21777, + 557443, + 29311 + ], + 1, + "6e163e9b.jpg?=20221227", + 54, + "che_230223_bffE", + 76, + [ + "hall:betrate", + "hall:dex4", + "hall:killcrew_person", + "hall:killnum", + "hall:tirate", + "hall:ttrate", + "hall:warnum", + "hall:winrate" + ] + ], + [ + "【54기】비상식량", + 89, + 78, + 15, + "che_event_견고", + [ + 42080, + 21908, + 760371, + 97788, + 37433 + ], + 1, + "3031b888.gif?=20221229", + 54, + "che_230223_bffE", + 77, + [ + "hall:dex3", + "hall:killcrew", + "hall:killcrew_person", + "hall:killnum", + "hall:killrate", + "hall:killrate_person", + "hall:occupied", + "hall:tlrate", + "hall:ttrate", + "hall:warnum", + "hall:winrate" + ] + ], + [ + "【54기】북오더", + 15, + 72, + 92, + "che_event_필살", + [ + 0, + 0, + 0, + 1710, + 218 + ], + 1, + "f39217aa.gif?=20220916", + 54, + "che_230223_bffE", + 79, + [ + "hall:experience" + ] + ], + [ + "【54기】셀레미", + 75, + 16, + 91, + "che_event_집중", + [ + 32762, + 15206, + 16298, + 649639, + 58258 + ], + 1, + "bcc7eb25.jpg?=20230131", + 54, + "che_230223_bffE", + 80, + [ + "chief:12", + "hall:betgold", + "hall:betwingold", + "hall:dedication", + "hall:dex4", + "hall:experience", + "hall:killcrew", + "hall:killcrew_person", + "hall:killnum", + "hall:killrate", + "hall:killrate_person", + "hall:winrate" + ] + ], + [ + "【54기】월향", + 76, + 15, + 91, + "che_event_환술", + [ + 33219, + 11118, + 24199, + 453429, + 58487 + ], + 1, + "0b45cdf8.webp?=20230101", + 54, + "che_230223_bffE", + 83, + [ + "hall:dex5", + "hall:experience", + "hall:killrate" + ] + ], + [ + "【54기】홍Kill동", + 90, + 74, + 15, + "che_event_보병", + [ + 624223, + 17088, + 18269, + 67889, + 44174 + ], + 1, + "13ac0db2.png?=20230223", + 54, + "che_230223_bffE", + 85, + [ + "chief:6", + "hall:betrate", + "hall:betwin", + "hall:betwingold", + "hall:dex1", + "hall:killcrew", + "hall:killcrew_person", + "hall:occupied", + "hall:warnum" + ] + ], + [ + "【54기】평민킬러", + 97, + 70, + 15, + "che_event_징병", + [ + 51376, + 64134, + 40475, + 82571, + 900850 + ], + 1, + "b0d4a54f.jpg?=20221229", + 54, + "che_230223_bffE", + 86, + [ + "chief:11", + "hall:betwin", + "hall:dedication", + "hall:dex2", + "hall:dex5", + "hall:experience", + "hall:killcrew", + "hall:killcrew_person", + "hall:killnum", + "hall:killrate", + "hall:killrate_person", + "hall:occupied", + "hall:tlrate", + "hall:warnum" + ] + ], + [ + "【54기】유카", + 76, + 90, + 15, + "che_event_징병", + [ + 15777, + 39650, + 397932, + 58752, + 43402 + ], + 0, + "default.jpg", + 54, + "che_230223_bffE", + 89, + [ + "hall:betrate", + "hall:dex3", + "hall:occupied", + "hall:tsrate" + ] + ], + [ + "【54기】독구", + 75, + 15, + 93, + "che_event_환술", + [ + 30119, + 27716, + 21628, + 565856, + 58485 + ], + 1, + "17b0fe48.gif?=20230224", + 54, + "che_230223_bffE", + 90, + [ + "chief:7", + "hall:betgold", + "hall:betwin", + "hall:betwingold", + "hall:dedication", + "hall:dex4", + "hall:dex5", + "hall:experience", + "hall:killnum", + "hall:killrate", + "hall:killrate_person", + "hall:tirate", + "hall:winrate" + ] + ], + [ + "【54기】자동태수", + 76, + 87, + 16, + "che_event_견고", + [ + 342462, + 7931, + 55693, + 32261, + 46505 + ], + 0, + "default.jpg", + 54, + "che_230223_bffE", + 91, + [ + "hall:dex1", + "hall:dex3" + ] + ], + [ + "【54기】Aeng572", + 15, + 93, + 71, + "che_event_징병", + [ + 0, + 0, + 0, + 0, + 0 + ], + 0, + "default.jpg", + 54, + "che_230223_bffE", + 92, + [ + "hall:firenum", + "hall:tsrate" + ] + ], + [ + "【54기】300", + 90, + 78, + 15, + "che_event_척사", + [ + 15799, + 176794, + 52614, + 64927, + 186234 + ], + 0, + "default.jpg", + 54, + "che_230223_bffE", + 93, + [ + "hall:betrate", + "hall:dex2", + "hall:dex5", + "hall:firenum" + ] + ], + [ + "【54기】간지밍이", + 91, + 15, + 73, + "che_event_필살", + [ + 29870, + 19060, + 20804, + 133505, + 356512 + ], + 1, + "41b12b95.png?=20221102", + 54, + "che_230223_bffE", + 95, + [ + "hall:betgold", + "hall:betwin", + "hall:betwingold", + "hall:dex5", + "hall:tlrate" + ] + ], + [ + "【54기】사스케", + 18, + 93, + 70, + "che_event_필살", + [ + 12423, + 236077, + 15765, + 33005, + 10977 + ], + 1, + "bb31c034.jpg?=20221125", + 54, + "che_230223_bffE", + 96, + [ + "chief:10", + "hall:betgold", + "hall:betwin", + "hall:betwingold", + "hall:dex2", + "hall:firenum", + "hall:killrate", + "hall:killrate_person", + "hall:tsrate", + "hall:winrate" + ] + ], + [ + "【54기】라콘타", + 75, + 15, + 93, + "che_event_집중", + [ + 48756, + 39308, + 31785, + 474545, + 26468 + ], + 1, + "d1c5c355.png?=20230312", + 54, + "che_230223_bffE", + 97, + [ + "hall:tirate" + ] + ], + [ + "【54기】모라스", + 77, + 16, + 91, + "che_event_신중", + [ + 26585, + 24537, + 38325, + 456139, + 40087 + ], + 1, + "fda33b70.jpg?=20230223", + 54, + "che_230223_bffE", + 98, + [ + "hall:betgold", + "hall:betwin", + "hall:betwingold", + "hall:ttrate" + ] + ], + [ + "【54기】tqtt", + 86, + 79, + 15, + "che_event_필살", + [ + 430031, + 25981, + 41008, + 84186, + 20672 + ], + 0, + "default.jpg", + 54, + "che_230223_bffE", + 99, + [ + "hall:dex1" + ] + ], + [ + "【54기】무지파이", + 15, + 77, + 89, + "che_event_저격", + [ + 0, + 0, + 0, + 0, + 0 + ], + 1, + "420cb96e.png?=20230129", + 54, + "che_230223_bffE", + 102, + [ + "hall:betrate", + "hall:dedication", + "hall:ttrate" + ] + ], + [ + "【54기】키리코", + 78, + 88, + 15, + "che_event_돌격", + [ + 14996, + 28237, + 413200, + 74530, + 14235 + ], + 1, + "283f3a39.jpg?=20230129", + 54, + "che_230223_bffE", + 105, + [ + "hall:betgold", + "hall:dex3", + "hall:tsrate" + ] + ], + [ + "【54기】고기방패", + 89, + 76, + 15, + "che_event_견고", + [ + 20469, + 41580, + 175219, + 40087, + 70582 + ], + 0, + "default.jpg", + 54, + "che_230223_bffE", + 110, + [ + "hall:dex3", + "hall:dex5" + ] + ], + [ + "【54기】panpenpan", + 76, + 15, + 91, + "che_event_환술", + [ + 22927, + 13810, + 10548, + 357063, + 33911 + ], + 0, + "default.jpg", + 54, + "che_230223_bffE", + 112, + [ + "hall:tirate" + ] + ], + [ + "【54기】개미호랑이", + 78, + 15, + 88, + "che_event_집중", + [ + 36789, + 31876, + 6729, + 546835, + 49534 + ], + 1, + "b0bc82cd.png?=20230226", + 54, + "che_230223_bffE", + 119, + [ + "hall:betrate", + "hall:dex4" + ] + ], + [ + "【54기】くま", + 74, + 16, + 90, + "che_event_신중", + [ + 25698, + 19903, + 10473, + 345071, + 21896 + ], + 1, + "770f53.jpg?=20190718", + 54, + "che_230223_bffE", + 121, + [ + "hall:firenum", + "hall:tirate" + ] + ], + [ + "【54기】아바타라", + 74, + 15, + 92, + "che_event_의술", + [ + 15947, + 18628, + 1504, + 369099, + 18609 + ], + 0, + "default.jpg", + 54, + "che_230223_bffE", + 219, + [ + "hall:tirate" + ] + ], + [ + "【54기】돌아온너구리", + 75, + 16, + 90, + "che_event_집중", + [ + 47396, + 20863, + 12487, + 340780, + 16044 + ], + 1, + "79dbce5.jpg?=20210918", + 54, + "che_230223_bffE", + 222, + [ + "hall:tirate", + "hall:ttrate" + ] + ], + [ + "【54기】호나", + 91, + 16, + 75, + "che_event_징병", + [ + 26545, + 39138, + 19677, + 531385, + 36321 + ], + 0, + "default.jpg", + 54, + "che_230223_bffE", + 227, + [ + "hall:betrate", + "hall:dex4", + "hall:killcrew_person", + "hall:tlrate", + "hall:warnum" + ] + ], + [ + "【54기】影:", + 15, + 75, + 92, + "che_event_신중", + [ + 0, + 0, + 0, + 0, + 0 + ], + 0, + "default.jpg", + 54, + "che_230223_bffE", + 230, + [ + "hall:dedication" + ] + ], + [ + "【54기】2초장프레기", + 15, + 76, + 90, + "che_event_징병", + [ + 0, + 0, + 0, + 0, + 0 + ], + 1, + "7b54c93b.jpg?=20230126", + 54, + "che_230223_bffE", + 272, + [ + "hall:dedication", + "hall:ttrate" + ] + ], + [ + "【54기】민트토끼", + 15, + 70, + 95, + "che_event_의술", + [ + 0, + 0, + 0, + 0, + 0 + ], + 1, + "b80db368.jpg?=20230221", + 54, + "che_230223_bffE", + 273, + [ + "hall:dedication", + "hall:tirate" + ] + ], + [ + "【54기】정일품", + 75, + 16, + 87, + "che_event_신중", + [ + 26083, + 8806, + 18946, + 306312, + 41186 + ], + 1, + "b3470750.jpg?=20230205", + 54, + "che_230223_bffE", + 310, + [ + "hall:betrate" + ] + ], + [ + "【54기】경국지색소교", + 75, + 89, + 15, + "che_event_격노", + [ + 32866, + 230869, + 24762, + 59169, + 27573 + ], + 0, + "default.jpg", + 54, + "che_230223_bffE", + 352, + [ + "hall:dex2", + "hall:ttrate" + ] + ], + [ + "【54기】이노리", + 15, + 79, + 85, + "che_event_척사", + [ + 0, + 0, + 0, + 0, + 0 + ], + 1, + "3dbc688f.jpg?=20230228", + 54, + "che_230223_bffE", + 404, + [ + "hall:betrate" + ] + ], + [ + "【54기】본드래곤", + 75, + 86, + 15, + "che_event_저격", + [ + 40577, + 270187, + 5183, + 65751, + 38466 + ], + 0, + "default.jpg", + 54, + "che_230223_bffE", + 429, + [ + "hall:dex2" + ] + ], + [ + "【54기】서희", + 73, + 84, + 15, + "che_event_무쌍", + [ + 10598, + 10802, + 102238, + 41069, + 8354 + ], + 1, + "8debf7e5.png?=20230308", + 54, + "che_230223_bffE", + 581, + [ + "hall:dex3", + "hall:firenum" + ] + ], + [ + "【55기】카이스트", + 90, + 25, + 131, + "che_event_필살", + [ + 38066, + 38424, + 42317, + 840728, + 22680 + ], + 1, + "e7e27cd6.jpg?=20221125", + 55, + "che_230316_WiVp", + 3, + [ + "hall:betgold", + "hall:betwin", + "hall:betwingold", + "hall:killrate_person", + "hall:tirate", + "hall:winrate" + ] + ], + [ + "【55기】테라도스", + 96, + 25, + 125, + "che_event_신중", + [ + 45457, + 39030, + 69292, + 1146991, + 27324 + ], + 1, + "d8948ae7.jpg?=20230318", + 55, + "che_230316_WiVp", + 4, + [ + "hall:dex4", + "hall:killcrew", + "hall:killcrew_person", + "hall:killnum", + "hall:warnum", + "hall:winrate" + ] + ], + [ + "【55기】정카야", + 134, + 89, + 26, + "che_event_징병", + [ + 28950, + 26406, + 57927, + 76025, + 1447943 + ], + 1, + "f2e3f1c7.jpg?=20230401", + 55, + "che_230316_WiVp", + 6, + [ + "hall:betgold", + "hall:betwin", + "hall:betwingold", + "hall:dex5", + "hall:killcrew", + "hall:killcrew_person", + "hall:killnum", + "hall:occupied", + "hall:tlrate", + "hall:ttrate", + "hall:warnum" + ] + ], + [ + "【55기】버거주면임관", + 96, + 119, + 26, + "che_event_저격", + [ + 111559, + 886046, + 70867, + 109872, + 26357 + ], + 1, + "e14e8b56.png?=20230316", + 55, + "che_230316_WiVp", + 8, + [ + "hall:dex2", + "hall:firenum" + ] + ], + [ + "【55기】양민킬러", + 94, + 25, + 125, + "che_event_필살", + [ + 32234, + 38457, + 70661, + 1129040, + 100074 + ], + 1, + "85c3daac.png?=20230316", + 55, + "che_230316_WiVp", + 12, + [ + "chief:9", + "hall:betrate", + "hall:betwin", + "hall:betwingold", + "hall:dex4", + "hall:experience", + "hall:occupied", + "hall:tirate", + "hall:winrate" + ] + ], + [ + "【55기】춥고배고프고졸리다", + 98, + 118, + 26, + "che_event_필살", + [ + 4710, + 70218, + 1030734, + 70727, + 99721 + ], + 0, + "default.jpg", + 55, + "che_230316_WiVp", + 14, + [ + "chief:6", + "hall:dex3" + ] + ], + [ + "【55기】퍄퍄", + 98, + 124, + 25, + "che_event_위압", + [ + 64308, + 1558519, + 92498, + 109315, + 21796 + ], + 1, + "1dcfe486.jpg?=20230317", + 55, + "che_230316_WiVp", + 18, + [ + "hall:betrate", + "hall:dex2", + "hall:experience", + "hall:killcrew", + "hall:killcrew_person", + "hall:killnum", + "hall:killrate", + "hall:killrate_person", + "hall:tsrate", + "hall:warnum" + ] + ], + [ + "【55기】대교", + 124, + 87, + 25, + "che_event_필살", + [ + 18437, + 56593, + 125511, + 81215, + 453068 + ], + 1, + "9f0e6dcc.jpg?=20220808", + 55, + "che_230316_WiVp", + 20, + [ + "hall:dex5", + "hall:tlrate", + "hall:ttrate" + ] + ], + [ + "【55기】전재준", + 93, + 123, + 26, + "che_event_징병", + [ + 45986, + 1161535, + 19552, + 71845, + 37276 + ], + 1, + "47319e53.png?=20230317", + 55, + "che_230316_WiVp", + 22, + [ + "hall:dex2" + ] + ], + [ + "【55기】미숫가루", + 132, + 93, + 25, + "che_event_징병", + [ + 65482, + 1112663, + 37461, + 243031, + 10556 + ], + 1, + "05422fbb.jpg?=20230321", + 55, + "che_230316_WiVp", + 23, + [ + "hall:betwin", + "hall:dex2", + "hall:killcrew", + "hall:killcrew_person", + "hall:killnum", + "hall:killrate", + "hall:killrate_person", + "hall:tlrate", + "hall:warnum" + ] + ], + [ + "【55기】서희", + 96, + 125, + 25, + "che_event_징병", + [ + 11648, + 85478, + 1418476, + 127953, + 70939 + ], + 1, + "8debf7e5.png?=20230308", + 55, + "che_230316_WiVp", + 24, + [ + "chief:8", + "hall:betrate", + "hall:dedication", + "hall:dex3", + "hall:experience", + "hall:killcrew", + "hall:killcrew_person", + "hall:killnum", + "hall:killrate", + "hall:killrate_person", + "hall:occupied", + "hall:tsrate", + "hall:warnum", + "hall:winrate" + ] + ], + [ + "【55기】백마의종", + 124, + 97, + 26, + "che_event_징병", + [ + 62649, + 56780, + 269586, + 193457, + 1467698 + ], + 0, + "default.jpg", + 55, + "che_230316_WiVp", + 26, + [ + "chief:10", + "hall:dex5", + "hall:experience", + "hall:killcrew", + "hall:killcrew_person", + "hall:killnum", + "hall:occupied", + "hall:tlrate", + "hall:warnum", + "hall:winrate" + ] + ], + [ + "【55기】SARS", + 90, + 25, + 122, + "che_event_징병", + [ + 58316, + 22797, + 88801, + 871204, + 9164 + ], + 1, + "b84944.jpg?=20180829", + 55, + "che_230316_WiVp", + 29, + [ + "hall:dex4" + ] + ], + [ + "【55기】Samo", + 125, + 88, + 25, + "che_event_저격", + [ + 25508, + 51407, + 109297, + 98876, + 608977 + ], + 1, + "e7191f5e.png?=20230223", + 55, + "che_230316_WiVp", + 37, + [ + "hall:dex5", + "hall:tlrate" + ] + ], + [ + "【55기】윤하", + 94, + 114, + 25, + "che_event_필살", + [ + 6828, + 32111, + 324300, + 82405, + 9055 + ], + 0, + "default.jpg", + 55, + "che_230316_WiVp", + 43, + [ + "hall:tsrate", + "hall:ttrate" + ] + ], + [ + "【55기】통지", + 94, + 25, + 120, + "che_event_환술", + [ + 17921, + 42020, + 34913, + 619631, + 80267 + ], + 0, + "default.jpg", + 55, + "che_230316_WiVp", + 45, + [ + "hall:tirate" + ] + ], + [ + "【55기】라콘타", + 97, + 118, + 25, + "che_event_격노", + [ + 30997, + 35893, + 752833, + 53746, + 23607 + ], + 1, + "af67c92c.png?=20230330", + 55, + "che_230316_WiVp", + 47, + [ + "hall:dex3", + "hall:firenum", + "hall:tsrate" + ] + ], + [ + "【55기】새로구미", + 120, + 102, + 25, + "che_event_무쌍", + [ + 1698580, + 65027, + 97625, + 116046, + 170122 + ], + 1, + "2817b643.png?=20230316", + 55, + "che_230316_WiVp", + 54, + [ + "chief:11", + "hall:betgold", + "hall:betwin", + "hall:betwingold", + "hall:dex1", + "hall:dex5", + "hall:experience", + "hall:killcrew", + "hall:killcrew_person", + "hall:killnum", + "hall:killrate", + "hall:killrate_person", + "hall:occupied", + "hall:tlrate", + "hall:warnum", + "hall:winrate" + ] + ], + [ + "【55기】환선", + 110, + 106, + 25, + "che_event_징병", + [ + 862408, + 64957, + 97107, + 94292, + 5473 + ], + 0, + "default.jpg", + 55, + "che_230316_WiVp", + 56, + [ + "hall:dex1" + ] + ], + [ + "【55기】네이미", + 122, + 91, + 25, + "che_event_격노", + [ + 154070, + 462984, + 65029, + 137987, + 286160 + ], + 0, + "default.jpg", + 55, + "che_230316_WiVp", + 58, + [ + "hall:betrate", + "hall:dex2", + "hall:dex5" + ] + ], + [ + "【55기】문흠", + 99, + 116, + 26, + "che_event_격노", + [ + 6529, + 46024, + 758060, + 50221, + 3412 + ], + 0, + "default.jpg", + 55, + "che_230316_WiVp", + 60, + [ + "hall:dex3", + "hall:tsrate" + ] + ], + [ + "【55기】정일품", + 100, + 115, + 26, + "che_event_필살", + [ + 833671, + 27542, + 61353, + 120576, + 100263 + ], + 1, + "b3470750.jpg?=20230205", + 55, + "che_230316_WiVp", + 62, + [ + "hall:betrate", + "hall:dex1", + "hall:occupied" + ] + ], + [ + "【55기】마이릴리아", + 92, + 26, + 122, + "che_event_신중", + [ + 34754, + 45568, + 54379, + 660733, + 98677 + ], + 1, + "a7755e4e.png?=20230310", + 55, + "che_230316_WiVp", + 64, + [ + "hall:dedication", + "hall:experience", + "hall:ttrate" + ] + ], + [ + "【55기】독구콘최다사용자", + 91, + 25, + 125, + "che_event_집중", + [ + 23355, + 8699, + 44201, + 588225, + 52247 + ], + 1, + "40d0e506.png?=20230312", + 55, + "che_230316_WiVp", + 69, + [ + "hall:betgold", + "hall:betwin", + "hall:betwingold" + ] + ], + [ + "【55기】키리코", + 98, + 127, + 26, + "che_event_필살", + [ + 64512, + 34381, + 1694784, + 137785, + 19037 + ], + 1, + "283f3a39.jpg?=20230129", + 55, + "che_230316_WiVp", + 70, + [ + "hall:betgold", + "hall:betwin", + "hall:dex3", + "hall:firenum", + "hall:killcrew", + "hall:killcrew_person", + "hall:killnum", + "hall:killrate", + "hall:killrate_person", + "hall:tsrate", + "hall:warnum", + "hall:winrate" + ] + ], + [ + "【55기】응애", + 92, + 25, + 125, + "che_event_필살", + [ + 28776, + 42288, + 32374, + 703439, + 20575 + ], + 1, + "fda33b70.jpg?=20230223", + 55, + "che_230316_WiVp", + 72, + [ + "hall:tirate" + ] + ], + [ + "【55기】정미희", + 120, + 95, + 26, + "che_event_징병", + [ + 354110, + 464694, + 329168, + 82962, + 30034 + ], + 1, + "5784b028.jpg?=20230326", + 55, + "che_230316_WiVp", + 73, + [ + "hall:dex2" + ] + ], + [ + "【55기】계모람쿠단해함몽봄", + 98, + 117, + 25, + "che_event_징병", + [ + 617211, + 36832, + 49646, + 74839, + 96329 + ], + 1, + "34132638.jpg?=20230316", + 55, + "che_230316_WiVp", + 74, + [ + "hall:dex1" + ] + ], + [ + "【55기】문동은", + 95, + 25, + 123, + "che_event_집중", + [ + 16389, + 39032, + 37518, + 892353, + 61367 + ], + 1, + "519f7208.png?=20230327", + 55, + "che_230316_WiVp", + 75, + [ + "hall:dex4", + "hall:ttrate" + ] + ], + [ + "【55기】tqtt", + 123, + 94, + 26, + "che_event_무쌍", + [ + 814288, + 26094, + 20759, + 83555, + 21391 + ], + 0, + "default.jpg", + 55, + "che_230316_WiVp", + 76, + [ + "hall:dex1" + ] + ], + [ + "【55기】ㅊㄹㅊㄹ", + 95, + 120, + 26, + "che_event_견고", + [ + 678209, + 38001, + 36573, + 63866, + 8090 + ], + 1, + "63f1c106.png?=20230223", + 55, + "che_230316_WiVp", + 78, + [ + "hall:dex1", + "hall:tsrate" + ] + ], + [ + "【55기】くま", + 90, + 26, + 122, + "che_event_환술", + [ + 23622, + 34453, + 81597, + 850766, + 123517 + ], + 1, + "770f53.jpg?=20190718", + 55, + "che_230316_WiVp", + 79, + [ + "chief:5", + "hall:dedication", + "hall:tirate", + "hall:ttrate" + ] + ], + [ + "【55기】료우기시키", + 124, + 92, + 26, + "che_event_격노", + [ + 896598, + 17183, + 47554, + 78891, + 23982 + ], + 1, + "72a190e.jpg?=20220109", + 55, + "che_230316_WiVp", + 81, + [ + "hall:dex1" + ] + ], + [ + "【55기】동남서북", + 31, + 81, + 125, + "che_event_징병", + [ + 0, + 0, + 0, + 0, + 0 + ], + 0, + "default.jpg", + 55, + "che_230316_WiVp", + 82, + [ + "hall:dedication" + ] + ], + [ + "【55기】불패", + 98, + 26, + 119, + "che_event_징병", + [ + 32245, + 50565, + 28526, + 947691, + 61978 + ], + 1, + "c6d07baa.jpg?=20230223", + 55, + "che_230316_WiVp", + 83, + [ + "hall:dex4" + ] + ], + [ + "【55기】박연진", + 96, + 124, + 26, + "che_event_필살", + [ + 68194, + 1045204, + 54294, + 100534, + 21032 + ], + 1, + "6e31ac0b.png?=20230405", + 55, + "che_230316_WiVp", + 85, + [ + "hall:dex2", + "hall:killrate", + "hall:killrate_person", + "hall:occupied", + "hall:tsrate", + "hall:winrate" + ] + ], + [ + "【55기】와일드플라워", + 125, + 87, + 27, + "che_event_필살", + [ + 11014, + 46038, + 723341, + 106966, + 64650 + ], + 0, + "default.jpg", + 55, + "che_230316_WiVp", + 86, + [ + "hall:dex3", + "hall:tlrate" + ] + ], + [ + "【55기】머큐리스", + 89, + 25, + 124, + "che_event_집중", + [ + 63753, + 25784, + 30119, + 473941, + 12203 + ], + 0, + "default.jpg", + 55, + "che_230316_WiVp", + 87, + [ + "hall:betgold", + "hall:betwingold" + ] + ], + [ + "【55기】간지밍이", + 97, + 25, + 118, + "che_event_필살", + [ + 16224, + 68734, + 85258, + 980973, + 90750 + ], + 1, + "41b12b95.png?=20221102", + 55, + "che_230316_WiVp", + 89, + [ + "hall:betgold", + "hall:betwin", + "hall:betwingold", + "hall:dedication", + "hall:dex4", + "hall:firenum" + ] + ], + [ + "【55기】최치열", + 96, + 25, + 116, + "che_event_집중", + [ + 50384, + 18929, + 31945, + 523661, + 33537 + ], + 1, + "7cd57508.jpg?=20230317", + 55, + "che_230316_WiVp", + 90, + [ + "hall:killrate", + "hall:tirate" + ] + ], + [ + "【55기】레드제플린", + 98, + 112, + 26, + "che_event_저격", + [ + 26274, + 61555, + 710325, + 105687, + 78351 + ], + 1, + "420cb96e.png?=20230129", + 55, + "che_230316_WiVp", + 91, + [ + "hall:betrate", + "hall:dex3" + ] + ], + [ + "【55기】메어 애슐리페커", + 92, + 25, + 134, + "che_event_징병", + [ + 19448, + 93632, + 80349, + 1945101, + 141230 + ], + 1, + "b0487617.png?=20230316", + 55, + "che_230316_WiVp", + 92, + [ + "chief:12", + "hall:betgold", + "hall:betrate", + "hall:betwingold", + "hall:dedication", + "hall:dex2", + "hall:dex4", + "hall:dex5", + "hall:experience", + "hall:killcrew", + "hall:killcrew_person", + "hall:killnum", + "hall:killrate", + "hall:killrate_person", + "hall:occupied", + "hall:tirate", + "hall:warnum", + "hall:winrate" + ] + ], + [ + "【55기】송하영", + 92, + 25, + 121, + "che_event_집중", + [ + 30880, + 31951, + 17603, + 701300, + 86420 + ], + 1, + "46c4ad92.jpg?=20230316", + 55, + "che_230316_WiVp", + 93, + [ + "hall:firenum" + ] + ], + [ + "【55기】새우튀김", + 96, + 25, + 119, + "che_event_환술", + [ + 47457, + 56642, + 58935, + 953015, + 102891 + ], + 0, + "default.jpg", + 55, + "che_230316_WiVp", + 94, + [ + "hall:dex4" + ] + ], + [ + "【55기】사스케", + 147, + 69, + 21, + "che_event_징병", + [ + 66715, + 21894, + 43039, + 119754, + 2160264 + ], + 1, + "bb31c034.jpg?=20221125", + 55, + "che_230316_WiVp", + 96, + [ + "hall:betgold", + "hall:betwin", + "hall:betwingold", + "hall:dex5", + "hall:experience", + "hall:firenum", + "hall:killcrew", + "hall:killcrew_person", + "hall:killnum", + "hall:killrate", + "hall:killrate_person", + "hall:occupied", + "hall:tlrate", + "hall:ttrate", + "hall:warnum", + "hall:winrate" + ] + ], + [ + "【55기】페르난도", + 98, + 114, + 26, + "che_event_위압", + [ + 12947, + 7753, + 544799, + 69288, + 29855 + ], + 0, + "default.jpg", + 55, + "che_230316_WiVp", + 97, + [ + "hall:betrate", + "hall:dex3" + ] + ], + [ + "【55기】외심장", + 93, + 26, + 121, + "che_event_의술", + [ + 31892, + 43082, + 72496, + 564845, + 117095 + ], + 1, + "36110cd.jpg?=20180826", + 55, + "che_230316_WiVp", + 99, + [ + "hall:dedication" + ] + ], + [ + "【55기】조민", + 92, + 25, + 128, + "che_event_징병", + [ + 47679, + 114526, + 47614, + 1070606, + 63269 + ], + 0, + "default.jpg", + 55, + "che_230316_WiVp", + 100, + [ + "hall:dex2", + "hall:dex4", + "hall:experience", + "hall:tirate" + ] + ], + [ + "【55기】디케", + 93, + 25, + 122, + "che_event_의술", + [ + 28394, + 49988, + 69133, + 799899, + 74644 + ], + 1, + "0db29940.jpg?=20230316", + 55, + "che_230316_WiVp", + 102, + [ + "hall:tirate" + ] + ], + [ + "【55기】1day.1min.", + 95, + 25, + 120, + "che_event_의술", + [ + 49652, + 18601, + 37925, + 459358, + 9974 + ], + 0, + "default.jpg", + 55, + "che_230316_WiVp", + 106, + [ + "hall:betrate", + "hall:ttrate" + ] + ], + [ + "【55기】메이플스토리", + 95, + 25, + 123, + "che_event_반계", + [ + 72631, + 26846, + 49074, + 942452, + 16591 + ], + 1, + "169a4077.png?=20230316", + 55, + "che_230316_WiVp", + 109, + [ + "hall:dex4", + "hall:tirate" + ] + ], + [ + "【55기】미친과학", + 117, + 98, + 25, + "che_event_무쌍", + [ + 778594, + 35983, + 24129, + 138510, + 137523 + ], + 1, + "7ff7c2c9.jpg?=20230225", + 55, + "che_230316_WiVp", + 110, + [ + "hall:dedication", + "hall:dex1", + "hall:dex5", + "hall:occupied" + ] + ], + [ + "【55기】본드래곤", + 97, + 116, + 26, + "che_event_무쌍", + [ + 814337, + 31719, + 47722, + 65926, + 16223 + ], + 0, + "default.jpg", + 55, + "che_230316_WiVp", + 111, + [ + "hall:dex1", + "hall:tsrate", + "hall:ttrate" + ] + ], + [ + "【55기】비상식량", + 127, + 89, + 25, + "che_event_의술", + [ + 61635, + 609154, + 12715, + 73733, + 18739 + ], + 1, + "3031b888.gif?=20221229", + 55, + "che_230316_WiVp", + 112, + [ + "hall:dex2", + "hall:tlrate" + ] + ], + [ + "【55기】척", + 99, + 115, + 25, + "che_event_필살", + [ + 21976, + 22068, + 684772, + 118126, + 15636 + ], + 1, + "7cb75480.png?=20221202", + 55, + "che_230316_WiVp", + 294, + [ + "hall:dex3", + "hall:firenum" + ] + ], + [ + "【55기】기술연구리", + 26, + 88, + 122, + "che_event_필살", + [ + 0, + 0, + 0, + 0, + 0 + ], + 1, + "79dbce5.jpg?=20210918", + 55, + "che_230316_WiVp", + 298, + [ + "hall:betgold", + "hall:betwin", + "hall:betwingold", + "hall:firenum" + ] + ], + [ + "【55기】추선생", + 114, + 97, + 25, + "che_event_견고", + [ + 380405, + 25323, + 60642, + 72107, + 102909 + ], + 1, + "28fe5c10.jpg?=20230318", + 55, + "che_230316_WiVp", + 299, + [ + "hall:tlrate" + ] + ], + [ + "【55기】월향", + 92, + 26, + 120, + "che_event_필살", + [ + 25139, + 18995, + 56093, + 737459, + 106915 + ], + 1, + "0b45cdf8.webp?=20230101", + 55, + "che_230316_WiVp", + 300, + [ + "chief:7", + "hall:dedication", + "hall:experience" + ] + ], + [ + "【55기】경국지색소교", + 95, + 114, + 25, + "che_event_견고", + [ + 8722, + 28058, + 269134, + 43819, + 28746 + ], + 0, + "default.jpg", + 55, + "che_230316_WiVp", + 302, + [ + "hall:tsrate" + ] + ], + [ + "【55기】Bianchi", + 94, + 116, + 25, + "che_event_징병", + [ + 25014, + 32446, + 682426, + 73474, + 29042 + ], + 0, + "default.jpg", + 55, + "che_230316_WiVp", + 307, + [ + "hall:dex3" + ] + ], + [ + "【55기】결산", + 95, + 120, + 27, + "che_event_격노", + [ + 634632, + 28328, + 170272, + 59403, + 32622 + ], + 0, + "default.jpg", + 55, + "che_230316_WiVp", + 308, + [ + "hall:dex1", + "hall:killrate", + "hall:killrate_person", + "hall:ttrate" + ] + ], + [ + "【55기】복숭아좋아", + 94, + 26, + 116, + "che_event_집중", + [ + 17063, + 35688, + 65804, + 644818, + 124301 + ], + 1, + "57e4a39.jpg?=20190620", + 55, + "che_230316_WiVp", + 327, + [ + "hall:dedication", + "hall:dex5" + ] + ], + [ + "【55기】민트토끼", + 27, + 80, + 122, + "che_event_신산", + [ + 0, + 0, + 0, + 0, + 0 + ], + 1, + "b80db368.jpg?=20230221", + 55, + "che_230316_WiVp", + 495, + [ + "hall:firenum" + ] + ], + [ + "【55기】춤과파티", + 89, + 30, + 95, + "che_event_환술", + [ + 860, + 14559, + 0, + 128698, + 3387 + ], + 0, + "default.jpg", + 55, + "che_230316_WiVp", + 785, + [ + "hall:betrate" + ] + ], + [ + "【56기】카이스트", + 78, + 15, + 93, + "che_event_필살", + [ + 73093, + 19820, + 24639, + 591210, + 15687 + ], + 1, + "e7e27cd6.jpg?=20221125", + 56, + "che_230413_JOa2", + 5, + [ + "hall:betgold", + "hall:betwin", + "hall:dex4", + "hall:firenum" + ] + ], + [ + "【56기】척", + 76, + 91, + 15, + "che_event_무쌍", + [ + 15410, + 21414, + 405248, + 48548, + 51509 + ], + 1, + "7cb75480.png?=20221202", + 56, + "che_230413_JOa2", + 8, + [ + "hall:dex3", + "hall:firenum", + "hall:killrate_person", + "hall:tsrate", + "hall:ttrate" + ] + ], + [ + "【56기】바나낫", + 80, + 93, + 15, + "che_event_무쌍", + [ + 1175496, + 2909, + 18163, + 63331, + 75066 + ], + 1, + "54bb31d3.gif?=20230412", + 56, + "che_230413_JOa2", + 9, + [ + "chief:6", + "hall:betgold", + "hall:betrate", + "hall:betwingold", + "hall:dex1", + "hall:experience", + "hall:firenum", + "hall:killcrew", + "hall:killcrew_person", + "hall:killnum", + "hall:killrate", + "hall:occupied", + "hall:tsrate", + "hall:warnum", + "hall:winrate" + ] + ], + [ + "【56기】멜리오다스", + 99, + 73, + 15, + "che_event_징병", + [ + 47912, + 38097, + 73526, + 100618, + 838984 + ], + 1, + "4f753b4b.jpg?=20230413", + 56, + "che_230413_JOa2", + 10, + [ + "hall:betwin", + "hall:dex5", + "hall:killcrew", + "hall:killcrew_person", + "hall:killnum", + "hall:killrate_person", + "hall:occupied", + "hall:tlrate", + "hall:warnum" + ] + ], + [ + "【56기】맥날스", + 75, + 94, + 15, + "che_event_필살", + [ + 35043, + 613159, + 13053, + 73849, + 87140 + ], + 1, + "4031a718.png?=20230413", + 56, + "che_230413_JOa2", + 12, + [ + "hall:betrate", + "hall:betwingold", + "hall:dex2", + "hall:killrate", + "hall:killrate_person", + "hall:tsrate" + ] + ], + [ + "【56기】구구단", + 77, + 15, + 94, + "che_event_집중", + [ + 83685, + 22018, + 30860, + 677065, + 42248 + ], + 0, + "default.jpg", + 56, + "che_230413_JOa2", + 15, + [ + "hall:dex4", + "hall:tirate", + "hall:ttrate" + ] + ], + [ + "【56기】사스케", + 99, + 70, + 15, + "che_event_공성", + [ + 37788, + 35175, + 20346, + 136530, + 894986 + ], + 1, + "b824cb97.jpg?=20230411", + 56, + "che_230413_JOa2", + 18, + [ + "hall:dex5", + "hall:experience", + "hall:killcrew", + "hall:killrate", + "hall:occupied", + "hall:tlrate" + ] + ], + [ + "【56기】경국지색소교", + 16, + 76, + 93, + "che_event_집중", + [ + 0, + 0, + 0, + 493, + 270 + ], + 0, + "default.jpg", + 56, + "che_230413_JOa2", + 19, + [ + "hall:dedication", + "hall:ttrate" + ] + ], + [ + "【56기】드래곤본", + 69, + 88, + 27, + "che_event_보병", + [ + 375645, + 6523, + 12207, + 59101, + 62284 + ], + 0, + "default.jpg", + 56, + "che_230413_JOa2", + 21, + [ + "hall:dex1", + "hall:tsrate", + "hall:ttrate" + ] + ], + [ + "【56기】Mbappe", + 76, + 15, + 92, + "che_event_필살", + [ + 7501, + 5984, + 5585, + 214248, + 24792 + ], + 0, + "default.jpg", + 56, + "che_230413_JOa2", + 25, + [ + "hall:betrate" + ] + ], + [ + "【56기】서희", + 88, + 81, + 15, + "che_event_필살", + [ + 20064, + 616203, + 4514, + 69018, + 90478 + ], + 1, + "8debf7e5.png?=20230308", + 56, + "che_230413_JOa2", + 26, + [ + "hall:dex2", + "hall:warnum" + ] + ], + [ + "【56기】조달요이2트", + 16, + 79, + 89, + "che_event_환술", + [ + 0, + 0, + 0, + 0, + 0 + ], + 1, + "2ffe4a7d.png?=20221201", + 56, + "che_230413_JOa2", + 29, + [ + "hall:experience" + ] + ], + [ + "【56기】tqtt", + 91, + 77, + 16, + "che_event_의술", + [ + 57687, + 21275, + 707344, + 142944, + 53570 + ], + 0, + "default.jpg", + 56, + "che_230413_JOa2", + 32, + [ + "hall:dex3", + "hall:killcrew_person", + "hall:warnum" + ] + ], + [ + "【56기】장원영", + 98, + 71, + 15, + "che_event_징병", + [ + 27581, + 64965, + 26623, + 83739, + 396413 + ], + 1, + "69cd1735.jpg?=20230413", + 56, + "che_230413_JOa2", + 33, + [ + "hall:tlrate" + ] + ], + [ + "【56기】예니체리", + 79, + 15, + 89, + "che_event_집중", + [ + 51635, + 32283, + 23684, + 247446, + 9194 + ], + 0, + "default.jpg", + 56, + "che_230413_JOa2", + 34, + [ + "hall:ttrate" + ] + ], + [ + "【56기】호나", + 96, + 74, + 15, + "che_event_필살", + [ + 66095, + 30874, + 198498, + 70624, + 550065 + ], + 0, + "default.jpg", + 56, + "che_230413_JOa2", + 36, + [ + "hall:betrate", + "hall:dex3", + "hall:dex5", + "hall:killnum", + "hall:winrate" + ] + ], + [ + "【56기】이서", + 75, + 15, + 94, + "che_event_신중", + [ + 53076, + 23489, + 24817, + 350512, + 24617 + ], + 1, + "ed799cdb.jpg?=20230413", + 56, + "che_230413_JOa2", + 37, + [ + "hall:tirate", + "hall:ttrate" + ] + ], + [ + "【56기】와일드플라워", + 76, + 15, + 93, + "che_event_환술", + [ + 36513, + 19818, + 12584, + 385093, + 49754 + ], + 0, + "default.jpg", + 56, + "che_230413_JOa2", + 38, + [ + "hall:dedication" + ] + ], + [ + "【56기】Hide_D", + 76, + 15, + 93, + "che_event_척사", + [ + 19555, + 20852, + 28049, + 379589, + 56443 + ], + 1, + "77b7fa0d.png?=20230222", + 56, + "che_230413_JOa2", + 44, + [ + "hall:tirate" + ] + ], + [ + "【56기】SARS", + 93, + 16, + 78, + "che_event_저격", + [ + 42746, + 34846, + 23285, + 117767, + 788396 + ], + 1, + "b84944.jpg?=20180829", + 56, + "che_230413_JOa2", + 45, + [ + "hall:dex5", + "hall:experience", + "hall:killcrew", + "hall:killcrew_person", + "hall:killnum", + "hall:killrate", + "hall:killrate_person", + "hall:ttrate", + "hall:winrate" + ] + ], + [ + "【56기】정일품", + 81, + 86, + 16, + "che_event_돌격", + [ + 9084, + 17895, + 66359, + 80747, + 268271 + ], + 1, + "b3470750.jpg?=20230205", + 56, + "che_230413_JOa2", + 50, + [ + "hall:firenum", + "hall:tsrate" + ] + ], + [ + "【56기】신의배팅", + 79, + 92, + 15, + "che_event_격노", + [ + 31029, + 668677, + 11668, + 102466, + 59796 + ], + 0, + "default.jpg", + 56, + "che_230413_JOa2", + 53, + [ + "hall:betgold", + "hall:betwingold", + "hall:dex2", + "hall:tsrate" + ] + ], + [ + "【56기】AI", + 79, + 90, + 15, + "che_event_의술", + [ + 472765, + 26280, + 12609, + 55334, + 17168 + ], + 1, + "49d964ae.png?=20230413", + 56, + "che_230413_JOa2", + 55, + [ + "hall:dex1" + ] + ], + [ + "【56기】독구는 승리한다", + 15, + 72, + 96, + "che_event_신산", + [ + 0, + 0, + 0, + 0, + 0 + ], + 1, + "40d0e506.png?=20230312", + 56, + "che_230413_JOa2", + 57, + [ + "hall:betwin", + "hall:firenum", + "hall:tirate" + ] + ], + [ + "【56기】강유", + 75, + 16, + 93, + "che_event_신산", + [ + 26621, + 20207, + 30776, + 436143, + 37401 + ], + 1, + "160c3e3e.jpg?=20230225", + 56, + "che_230413_JOa2", + 58, + [ + "hall:dedication" + ] + ], + [ + "【56기】카레", + 93, + 75, + 15, + "che_event_무쌍", + [ + 84792, + 34542, + 33405, + 66821, + 510790 + ], + 1, + "2e68382d.jpg?=20230413", + 56, + "che_230413_JOa2", + 60, + [ + "hall:dex5", + "hall:tlrate" + ] + ], + [ + "【56기】유카", + 15, + 75, + 94, + "che_event_신중", + [ + 0, + 0, + 0, + 68, + 0 + ], + 0, + "default.jpg", + 56, + "che_230413_JOa2", + 62, + [ + "hall:dedication", + "hall:tirate" + ] + ], + [ + "【56기】돌아온너구리", + 79, + 15, + 93, + "che_event_필살", + [ + 1826, + 14848, + 6880, + 391834, + 14718 + ], + 1, + "79dbce5.jpg?=20210918", + 56, + "che_230413_JOa2", + 63, + [ + "hall:ttrate", + "hall:winrate" + ] + ], + [ + "【56기】520", + 98, + 73, + 15, + "che_event_척사", + [ + 97192, + 19858, + 40408, + 79339, + 784252 + ], + 0, + "default.jpg", + 56, + "che_230413_JOa2", + 65, + [ + "hall:betgold", + "hall:betrate", + "hall:betwingold", + "hall:dex5", + "hall:killcrew", + "hall:killcrew_person", + "hall:killnum", + "hall:killrate", + "hall:killrate_person", + "hall:warnum", + "hall:winrate" + ] + ], + [ + "【56기】윤보미", + 97, + 74, + 15, + "che_event_필살", + [ + 38957, + 63557, + 960486, + 101298, + 52760 + ], + 1, + "0ccffa02.jpg?=20230418", + 56, + "che_230413_JOa2", + 66, + [ + "hall:betgold", + "hall:betwin", + "hall:betwingold", + "hall:dex3", + "hall:experience", + "hall:killcrew", + "hall:killcrew_person", + "hall:killnum", + "hall:occupied", + "hall:tlrate", + "hall:warnum" + ] + ], + [ + "【56기】김효진", + 79, + 15, + 92, + "che_event_필살", + [ + 22631, + 6758, + 12590, + 520855, + 49906 + ], + 1, + "0ca04a8c.jpg?=20230413", + 56, + "che_230413_JOa2", + 67, + [ + "hall:betgold", + "hall:betwingold", + "hall:dex4" + ] + ], + [ + "【56기】귀욤스", + 76, + 15, + 92, + "che_event_집중", + [ + 25866, + 6838, + 12367, + 500635, + 96706 + ], + 1, + "f1409128.jpg?=20230422", + 56, + "che_230413_JOa2", + 68, + [ + "chief:9", + "hall:dedication", + "hall:dex4", + "hall:experience" + ] + ], + [ + "【56기】파프타", + 96, + 72, + 15, + "che_event_필살", + [ + 109711, + 20255, + 22690, + 85861, + 388668 + ], + 1, + "4743ee13.png?=20230413", + 56, + "che_230413_JOa2", + 69, + [ + "hall:betwin", + "hall:dex1" + ] + ], + [ + "【56기】임사영", + 99, + 73, + 15, + "che_event_무쌍", + [ + 78095, + 28892, + 59204, + 78010, + 961028 + ], + 1, + "3185ceca.jpg?=20230322", + 56, + "che_230413_JOa2", + 70, + [ + "hall:betrate", + "hall:dex5", + "hall:experience", + "hall:killcrew", + "hall:killcrew_person", + "hall:killnum", + "hall:killrate_person", + "hall:occupied", + "hall:tlrate", + "hall:ttrate", + "hall:warnum", + "hall:winrate" + ] + ], + [ + "【56기】동탄역", + 76, + 15, + 94, + "che_event_필살", + [ + 32745, + 19203, + 14066, + 460148, + 45336 + ], + 1, + "33964777.jpg?=20230413", + 56, + "che_230413_JOa2", + 71, + [ + "hall:ttrate" + ] + ], + [ + "【56기】지원", + 76, + 15, + 95, + "che_event_집중", + [ + 9644, + 12643, + 4803, + 418343, + 24471 + ], + 1, + "0b45cdf8.webp?=20230101", + 56, + "che_230413_JOa2", + 72, + [ + "hall:tirate" + ] + ], + [ + "【56기】춤과파티", + 79, + 89, + 15, + "che_event_위압", + [ + 28140, + 15447, + 480384, + 67851, + 62704 + ], + 0, + "default.jpg", + 56, + "che_230413_JOa2", + 73, + [ + "hall:dex3", + "hall:killrate", + "hall:killrate_person" + ] + ], + [ + "【56기】대교", + 97, + 71, + 17, + "che_event_돌격", + [ + 115684, + 50658, + 70595, + 168616, + 421924 + ], + 1, + "9f0e6dcc.jpg?=20220808", + 56, + "che_230413_JOa2", + 74, + [ + "hall:dex1", + "hall:tlrate" + ] + ], + [ + "【56기】굴먹는고양이", + 77, + 89, + 16, + "che_event_필살", + [ + 286742, + 4063, + 4891, + 39943, + 53129 + ], + 0, + "default.jpg", + 56, + "che_230413_JOa2", + 75, + [ + "hall:dex1" + ] + ], + [ + "【56기】SamGPT", + 75, + 15, + 95, + "che_event_환술", + [ + 33309, + 24253, + 21953, + 626016, + 32948 + ], + 1, + "2b1b9e9e.png?=20230413", + 56, + "che_230413_JOa2", + 76, + [ + "hall:betgold", + "hall:betwin", + "hall:betwingold", + "hall:dex4", + "hall:killnum", + "hall:killrate_person", + "hall:tirate", + "hall:winrate" + ] + ], + [ + "【56기】간지밍이", + 107, + 70, + 15, + "che_event_돌격", + [ + 103058, + 76505, + 103451, + 160379, + 1514147 + ], + 1, + "41b12b95.png?=20221102", + 56, + "che_230413_JOa2", + 77, + [ + "hall:betgold", + "hall:betrate", + "hall:betwin", + "hall:betwingold", + "hall:dex3", + "hall:dex5", + "hall:experience", + "hall:killcrew", + "hall:killcrew_person", + "hall:killnum", + "hall:killrate", + "hall:killrate_person", + "hall:occupied", + "hall:tlrate", + "hall:warnum", + "hall:winrate" + ] + ], + [ + "【56기】라콘타2", + 77, + 16, + 92, + "che_event_척사", + [ + 34064, + 7136, + 37022, + 713296, + 74543 + ], + 1, + "244be9e6.png?=20230427", + 56, + "che_230413_JOa2", + 78, + [ + "hall:dex4", + "hall:killcrew", + "hall:killcrew_person", + "hall:warnum" + ] + ], + [ + "【56기】라콘타", + 96, + 75, + 15, + "che_event_돌격", + [ + 20533, + 301860, + 2855, + 78160, + 31022 + ], + 1, + "b44c3710.png?=20230422", + 56, + "che_230413_JOa2", + 79, + [ + "hall:dex2" + ] + ], + [ + "【56기】이오", + 97, + 74, + 15, + "che_event_견고", + [ + 50087, + 643125, + 7643, + 62646, + 72651 + ], + 1, + "547eba6b.jpg?=20230413", + 56, + "che_230413_JOa2", + 81, + [ + "hall:dex2" + ] + ], + [ + "【56기】여동사친", + 75, + 15, + 95, + "che_event_집중", + [ + 26892, + 18350, + 7522, + 715544, + 91153 + ], + 1, + "b663c463.jpg?=20230413", + 56, + "che_230413_JOa2", + 82, + [ + "chief:12", + "hall:betgold", + "hall:betwin", + "hall:betwingold", + "hall:dedication", + "hall:dex4", + "hall:experience", + "hall:killrate", + "hall:killrate_person", + "hall:occupied", + "hall:winrate" + ] + ], + [ + "【56기】카갈비", + 98, + 72, + 15, + "che_event_돌격", + [ + 48103, + 34756, + 49452, + 76768, + 678264 + ], + 1, + "147e2e39.png?=20221201", + 56, + "che_230413_JOa2", + 83, + [ + "chief:10", + "hall:betwin", + "hall:dex5", + "hall:killrate", + "hall:occupied", + "hall:tlrate" + ] + ], + [ + "【56기】키리코", + 77, + 90, + 15, + "che_event_돌격", + [ + 60492, + 353691, + 17019, + 92765, + 36188 + ], + 1, + "c1869cb8.jpg?=20230413", + 56, + "che_230413_JOa2", + 84, + [ + "hall:betgold", + "hall:betwin", + "hall:betwingold", + "hall:dex2", + "hall:tsrate" + ] + ], + [ + "【56기】하입보이", + 91, + 77, + 15, + "che_event_필살", + [ + 493850, + 24940, + 38316, + 72312, + 43460 + ], + 1, + "e9a1a5be.png?=20230413", + 56, + "che_230413_JOa2", + 85, + [ + "hall:dex1" + ] + ], + [ + "【56기】응애", + 74, + 15, + 95, + "che_event_집중", + [ + 23406, + 27335, + 9726, + 342243, + 70963 + ], + 1, + "fda33b70.jpg?=20230223", + 56, + "che_230413_JOa2", + 86, + [ + "chief:7", + "hall:tirate" + ] + ], + [ + "【56기】1", + 97, + 71, + 15, + "che_event_무쌍", + [ + 25502, + 9096, + 12300, + 41851, + 582865 + ], + 0, + "default.jpg", + 56, + "che_230413_JOa2", + 87, + [ + "chief:11", + "hall:betrate", + "hall:dex5", + "hall:experience", + "hall:killrate", + "hall:occupied", + "hall:tlrate" + ] + ], + [ + "【56기】페파", + 76, + 16, + 92, + "che_event_집중", + [ + 31992, + 15310, + 12616, + 496804, + 46318 + ], + 1, + "add686a6.jpg?=20230413", + 56, + "che_230413_JOa2", + 88, + [ + "hall:winrate" + ] + ], + [ + "【56기】Samo", + 77, + 91, + 15, + "che_event_척사", + [ + 18197, + 17948, + 285516, + 38324, + 29597 + ], + 1, + "0b53e4d0.png?=20230502", + 56, + "che_230413_JOa2", + 90, + [ + "chief:8", + "hall:betrate", + "hall:dex3" + ] + ], + [ + "【56기】외심장", + 79, + 15, + 91, + "che_event_척사", + [ + 4895, + 10032, + 1634, + 282975, + 41577 + ], + 1, + "36110cd.jpg?=20180826", + 56, + "che_230413_JOa2", + 91, + [ + "hall:dedication" + ] + ], + [ + "【56기】비상식량", + 94, + 73, + 15, + "che_event_돌격", + [ + 12795, + 30833, + 304197, + 80677, + 52661 + ], + 1, + "3031b888.gif?=20221229", + 56, + "che_230413_JOa2", + 96, + [ + "hall:dex3" + ] + ], + [ + "【56기】북오더", + 80, + 90, + 16, + "che_event_돌격", + [ + 434393, + 17873, + 11413, + 39549, + 25345 + ], + 1, + "f39217aa.gif?=20220916", + 56, + "che_230413_JOa2", + 99, + [ + "hall:dex1" + ] + ], + [ + "【56기】머큐리스", + 76, + 91, + 16, + "che_event_척사", + [ + 53094, + 533678, + 16544, + 157623, + 25194 + ], + 0, + "default.jpg", + 56, + "che_230413_JOa2", + 101, + [ + "hall:dex2", + "hall:tsrate" + ] + ], + [ + "【56기】김채원", + 76, + 89, + 15, + "che_event_필살", + [ + 17067, + 210394, + 5710, + 47553, + 35335 + ], + 1, + "a7a529f5.jpg?=20230223", + 56, + "che_230413_JOa2", + 102, + [ + "hall:dex2" + ] + ], + [ + "【56기】산월장수", + 80, + 87, + 15, + "che_event_척사", + [ + 565530, + 12751, + 50048, + 27235, + 67530 + ], + 1, + "a9b13d87.jpg?=20230413", + 56, + "che_230413_JOa2", + 103, + [ + "hall:dex1" + ] + ], + [ + "【56기】くま", + 76, + 16, + 92, + "che_event_환술", + [ + 25449, + 13841, + 8528, + 507744, + 98810 + ], + 1, + "770f53.jpg?=20190718", + 56, + "che_230413_JOa2", + 107, + [ + "chief:5", + "hall:dedication", + "hall:dex4", + "hall:tirate" + ] + ], + [ + "【56기】료우기시키", + 80, + 15, + 86, + "che_event_필살", + [ + 48932, + 37429, + 74785, + 539139, + 56678 + ], + 1, + "72a190e.jpg?=20220109", + 56, + "che_230413_JOa2", + 215, + [ + "hall:dex4" + ] + ], + [ + "【56기】김나영", + 78, + 91, + 15, + "che_event_궁병", + [ + 54434, + 355223, + 13749, + 37011, + 82721 + ], + 1, + "1d64c6d3.jpg?=20230414", + 56, + "che_230413_JOa2", + 217, + [ + "hall:dex2", + "hall:tsrate" + ] + ], + [ + "【56기】어둠", + 91, + 76, + 15, + "che_event_무쌍", + [ + 833242, + 35548, + 86462, + 61360, + 51641 + ], + 0, + "default.jpg", + 56, + "che_230413_JOa2", + 226, + [ + "hall:dex1", + "hall:dex3", + "hall:firenum", + "hall:killcrew", + "hall:killcrew_person", + "hall:killnum", + "hall:occupied", + "hall:warnum" + ] + ], + [ + "【56기】봇치", + 17, + 78, + 89, + "che_event_신중", + [ + 0, + 0, + 0, + 0, + 0 + ], + 1, + "eecd0f36.jpg?=20230414", + 56, + "che_230413_JOa2", + 234, + [ + "hall:dedication" + ] + ], + [ + "【56기】뉴턴", + 79, + 15, + 89, + "che_event_집중", + [ + 32590, + 13736, + 55153, + 605711, + 72909 + ], + 0, + "default.jpg", + 56, + "che_230413_JOa2", + 242, + [ + "hall:dex4", + "hall:tirate" + ] + ], + [ + "【56기】고고라니고고고라니", + 88, + 80, + 15, + "che_event_견고", + [ + 7534, + 15817, + 306228, + 37552, + 59729 + ], + 1, + "27e19b67.gif?=20230414", + 56, + "che_230413_JOa2", + 244, + [ + "hall:dex3" + ] + ], + [ + "【56기】ㅊㄹㅊㄹ", + 76, + 92, + 15, + "che_event_필살", + [ + 23274, + 274326, + 7600, + 53731, + 35584 + ], + 1, + "63f1c106.png?=20230223", + 56, + "che_230413_JOa2", + 248, + [ + "hall:dex2", + "hall:tsrate" + ] + ], + [ + "【56기】두꺼비", + 16, + 71, + 95, + "che_event_집중", + [ + 0, + 0, + 0, + 0, + 0 + ], + 0, + "default.jpg", + 56, + "che_230413_JOa2", + 380, + [ + "hall:dedication" + ] + ], + [ + "【56기】사필귀정", + 71, + 15, + 88, + "che_event_필살", + [ + 3878, + 168, + 76, + 115525, + 52720 + ], + 0, + "default.jpg", + 56, + "che_230413_JOa2", + 482, + [ + "hall:betrate" + ] + ], + [ + "【57기】민트도끼", + 94, + 80, + 15, + "che_event_필살", + [ + 760326, + 15629, + 69037, + 60111, + 27903 + ], + 1, + "b3d7f239.png?=20230511", + 57, + "che_230511_WkQk", + 3, + [ + "hall:betgold", + "hall:betwin", + "hall:betwingold", + "hall:dex1", + "hall:killcrew", + "hall:killcrew_person", + "hall:killnum", + "hall:killrate_person", + "hall:tlrate", + "hall:warnum", + "hall:winrate" + ] + ], + [ + "【57기】카이스트", + 67, + 13, + 81, + "che_event_필살", + [ + 7535, + 5669, + 11384, + 197331, + 10388 + ], + 1, + "e7e27cd6.jpg?=20221125", + 57, + "che_230511_WkQk", + 4, + [ + "hall:betgold", + "hall:betwin", + "hall:firenum", + "hall:ttrate" + ] + ], + [ + "【57기】척", + 77, + 95, + 15, + "che_event_필살", + [ + 18513, + 42572, + 505646, + 107318, + 15904 + ], + 1, + "7cb75480.png?=20221202", + 57, + "che_230511_WkQk", + 5, + [ + "hall:dex3", + "hall:firenum", + "hall:tsrate" + ] + ], + [ + "【57기】카류열전없는Hide_D", + 65, + 13, + 82, + "che_event_필살", + [ + 11711, + 3390, + 17848, + 176887, + 20489 + ], + 1, + "83a66610.jpg?=20230511", + 57, + "che_230511_WkQk", + 8, + [ + "hall:dex5", + "hall:tirate" + ] + ], + [ + "【57기】SARS", + 68, + 78, + 14, + "che_event_견고", + [ + 25327, + 271115, + 9153, + 30592, + 14557 + ], + 1, + "b84944.jpg?=20180829", + 57, + "che_230511_WkQk", + 11, + [ + "hall:dex2" + ] + ], + [ + "【57기】셀레미", + 15, + 101, + 71, + "che_event_신산", + [ + 0, + 0, + 0, + 0, + 0 + ], + 1, + "e33d656a.gif?=20230510", + 57, + "che_230511_WkQk", + 13, + [ + "hall:firenum", + "hall:tsrate" + ] + ], + [ + "【57기】열전도둑카류", + 14, + 82, + 64, + "che_event_징병", + [ + 2403, + 1536, + 1200, + 5490, + 0 + ], + 1, + "dee5e629.jpg?=20230510", + 57, + "che_230511_WkQk", + 18, + [ + "hall:betrate", + "hall:firenum", + "hall:tsrate" + ] + ], + [ + "【57기】자동포탑시스템", + 80, + 96, + 15, + "che_event_필살", + [ + 951643, + 20066, + 13100, + 65357, + 22054 + ], + 1, + "cbb3c8e5.jpg?=20230512", + 57, + "che_230511_WkQk", + 19, + [ + "chief:8", + "hall:betrate", + "hall:betwingold", + "hall:dex1", + "hall:killcrew", + "hall:killcrew_person", + "hall:killnum", + "hall:tsrate", + "hall:ttrate", + "hall:warnum" + ] + ], + [ + "【57기】예니체리", + 78, + 15, + 91, + "che_event_집중", + [ + 20465, + 16768, + 6778, + 255655, + 41965 + ], + 0, + "default.jpg", + 57, + "che_230511_WkQk", + 20, + [ + "hall:dex5" + ] + ], + [ + "【57기】김나영", + 67, + 82, + 13, + "che_event_척사", + [ + 13001, + 2491, + 271274, + 29656, + 7035 + ], + 1, + "1d64c6d3.jpg?=20230414", + 57, + "che_230511_WkQk", + 23, + [ + "hall:dex3", + "hall:firenum", + "hall:killrate_person" + ] + ], + [ + "【57기】글린다", + 63, + 13, + 85, + "che_event_필살", + [ + 12387, + 11890, + 14935, + 293793, + 19306 + ], + 1, + "4d99585a.jpg?=20230510", + 57, + "che_230511_WkQk", + 25, + [ + "hall:betwin", + "hall:dedication", + "hall:dex4", + "hall:experience", + "hall:killcrew_person", + "hall:killnum", + "hall:killrate", + "hall:killrate_person", + "hall:warnum", + "hall:winrate" + ] + ], + [ + "【57기】대의", + 80, + 94, + 16, + "che_event_위압", + [ + 32370, + 550770, + 45342, + 41006, + 19572 + ], + 0, + "default.jpg", + 57, + "che_230511_WkQk", + 26, + [ + "hall:dex2", + "hall:killcrew_person", + "hall:killnum", + "hall:ttrate", + "hall:warnum" + ] + ], + [ + "【57기】MSI우승 기원 독구", + 67, + 81, + 13, + "che_event_척사", + [ + 14361, + 161189, + 3010, + 40673, + 8270 + ], + 1, + "40d0e506.png?=20230312", + 57, + "che_230511_WkQk", + 27, + [ + "hall:betwin", + "hall:dex2", + "hall:tsrate" + ] + ], + [ + "【57기】Ceo카류", + 67, + 78, + 14, + "che_event_돌격", + [ + 33733, + 16447, + 202192, + 45119, + 16827 + ], + 1, + "1c6fdd91.png?=20230515", + 57, + "che_230511_WkQk", + 31, + [ + "hall:dex3" + ] + ], + [ + "【57기】악질카류열전내놔", + 88, + 60, + 13, + "che_event_공성", + [ + 9018, + 7538, + 6174, + 20952, + 601002 + ], + 1, + "e4e4a57b.jpg?=20230606", + 57, + "che_230511_WkQk", + 35, + [ + "chief:11", + "hall:dex5", + "hall:experience", + "hall:killcrew", + "hall:killrate", + "hall:occupied", + "hall:tlrate" + ] + ], + [ + "【57기】료우기시키", + 67, + 13, + 81, + "che_event_환술", + [ + 8034, + 9931, + 11646, + 263219, + 13776 + ], + 1, + "72a190e.jpg?=20220109", + 57, + "che_230511_WkQk", + 36, + [ + "hall:dex4" + ] + ], + [ + "【57기】열전먹튀범카류잡자", + 64, + 13, + 84, + "che_event_집중", + [ + 14646, + 16478, + 11374, + 239063, + 32031 + ], + 1, + "d18cb5f1.jpg?=20230511", + 57, + "che_230511_WkQk", + 39, + [ + "hall:dedication", + "hall:dex5" + ] + ], + [ + "【57기】리안", + 64, + 85, + 13, + "che_event_필살", + [ + 21517, + 381257, + 9202, + 26118, + 9891 + ], + 1, + "17285c76.png?=20230512", + 57, + "che_230511_WkQk", + 43, + [ + "hall:dex2", + "hall:killcrew", + "hall:killcrew_person", + "hall:killnum", + "hall:killrate", + "hall:killrate_person", + "hall:tsrate", + "hall:warnum", + "hall:winrate" + ] + ], + [ + "【57기】경국지색소교", + 78, + 92, + 15, + "che_event_저격", + [ + 385448, + 4897, + 12677, + 50970, + 29391 + ], + 1, + "ad2669b5.jpg?=20230605", + 57, + "che_230511_WkQk", + 44, + [ + "hall:dex1", + "hall:tsrate" + ] + ], + [ + "【57기】서희", + 89, + 86, + 15, + "che_event_무쌍", + [ + 12248, + 13771, + 703086, + 68815, + 26955 + ], + 1, + "8debf7e5.png?=20230308", + 57, + "che_230511_WkQk", + 45, + [ + "hall:dex3", + "hall:killcrew", + "hall:killcrew_person", + "hall:killnum", + "hall:warnum" + ] + ], + [ + "【57기】먹튀카류패는마동석", + 78, + 15, + 94, + "che_event_신중", + [ + 15055, + 23792, + 34602, + 428981, + 49098 + ], + 1, + "42a3a23a.jpg?=20230511", + 57, + "che_230511_WkQk", + 46, + [ + "chief:5", + "hall:dedication", + "hall:dex5" + ] + ], + [ + "【57기】환자킬러", + 15, + 73, + 99, + "che_event_의술", + [ + 0, + 0, + 0, + 0, + 0 + ], + 1, + "25e9db9e.jpg?=20230603", + 57, + "che_230511_WkQk", + 47, + [ + "hall:betrate", + "hall:dedication", + "hall:tirate" + ] + ], + [ + "【57기】월향", + 64, + 14, + 82, + "che_event_집중", + [ + 13341, + 8926, + 23099, + 308660, + 10514 + ], + 1, + "ceaaa7f5.webp?=20230505", + 57, + "che_230511_WkQk", + 53, + [ + "hall:betgold", + "hall:betwingold", + "hall:dex4", + "hall:killcrew_person", + "hall:killrate", + "hall:killrate_person", + "hall:occupied" + ] + ], + [ + "【57기】평민킬러", + 75, + 99, + 15, + "che_event_필살", + [ + 45457, + 45886, + 840144, + 54206, + 36022 + ], + 1, + "4cdaa18a.jpg?=20230510", + 57, + "che_230511_WkQk", + 55, + [ + "chief:12", + "hall:betwin", + "hall:dex3", + "hall:experience", + "hall:killcrew", + "hall:killcrew_person", + "hall:killnum", + "hall:killrate", + "hall:killrate_person", + "hall:occupied", + "hall:tsrate", + "hall:warnum", + "hall:winrate" + ] + ], + [ + "【57기】불패", + 76, + 15, + 98, + "che_event_필살", + [ + 19877, + 8990, + 27653, + 539882, + 22922 + ], + 1, + "c6d07baa.jpg?=20230223", + 57, + "che_230511_WkQk", + 57, + [ + "chief:7", + "hall:dedication", + "hall:dex4", + "hall:experience", + "hall:killrate", + "hall:killrate_person", + "hall:winrate" + ] + ], + [ + "【57기】엔틱", + 75, + 15, + 98, + "che_event_집중", + [ + 17245, + 16199, + 23664, + 325300, + 29140 + ], + 0, + "default.jpg", + 57, + "che_230511_WkQk", + 60, + [ + "hall:tirate" + ] + ], + [ + "【57기】양민킬러", + 82, + 65, + 13, + "che_event_의술", + [ + 147784, + 14860, + 9575, + 48251, + 14464 + ], + 1, + "f877a057.png?=20230511", + 57, + "che_230511_WkQk", + 63, + [ + "chief:6", + "hall:dex1", + "hall:tlrate" + ] + ], + [ + "【57기】농부", + 77, + 15, + 95, + "che_event_필살", + [ + 32581, + 42975, + 21153, + 395903, + 22166 + ], + 1, + "1dcfe486.jpg?=20230317", + 57, + "che_230511_WkQk", + 67, + [ + "hall:ttrate" + ] + ], + [ + "【57기】와일드플라워", + 94, + 78, + 16, + "che_event_돌격", + [ + 15427, + 46498, + 474338, + 152105, + 26199 + ], + 0, + "default.jpg", + 57, + "che_230511_WkQk", + 71, + [ + "hall:dex2", + "hall:dex3", + "hall:ttrate" + ] + ], + [ + "【57기】Mercy", + 78, + 18, + 91, + "che_event_환술", + [ + 25881, + 34339, + 20761, + 387978, + 19419 + ], + 1, + "a1bf6b72.jpg?=20230509", + 57, + "che_230511_WkQk", + 72, + [ + "hall:betgold", + "hall:betwin", + "hall:betwingold" + ] + ], + [ + "【57기】카류놈아열전내놔라", + 95, + 77, + 15, + "che_event_돌격", + [ + 96974, + 30872, + 625605, + 136508, + 37401 + ], + 1, + "5cbbf955.jpg?=20230511", + 57, + "che_230511_WkQk", + 75, + [ + "hall:dex1", + "hall:dex3", + "hall:killnum", + "hall:occupied", + "hall:tlrate", + "hall:winrate" + ] + ], + [ + "【57기】임사영", + 77, + 94, + 16, + "che_event_필살", + [ + 448240, + 35174, + 84402, + 45391, + 20990 + ], + 1, + "3185ceca.jpg?=20230322", + 57, + "che_230511_WkQk", + 77, + [ + "hall:dex1", + "hall:tsrate" + ] + ], + [ + "【57기】몬테크리스토", + 92, + 79, + 15, + "che_event_필살", + [ + 3097, + 15432, + 310920, + 26013, + 14936 + ], + 0, + "default.jpg", + 57, + "che_230511_WkQk", + 78, + [ + "hall:betrate", + "hall:tlrate" + ] + ], + [ + "【57기】차율라의파편", + 63, + 13, + 84, + "che_event_집중", + [ + 9735, + 14116, + 28694, + 233212, + 23005 + ], + 1, + "6e009d9.jpg?=20190620", + 57, + "che_230511_WkQk", + 79, + [ + "hall:dex5", + "hall:occupied" + ] + ], + [ + "【57기】ㅊㄹㅊㄹ", + 67, + 80, + 13, + "che_event_격노", + [ + 6078, + 19232, + 210462, + 28343, + 22103 + ], + 1, + "63f1c106.png?=20230223", + 57, + "che_230511_WkQk", + 81, + [ + "hall:dex3", + "hall:dex5", + "hall:tsrate" + ] + ], + [ + "【57기】대교", + 99, + 72, + 16, + "che_event_기병", + [ + 1306, + 26884, + 307973, + 42855, + 26934 + ], + 1, + "9f0e6dcc.jpg?=20220808", + 57, + "che_230511_WkQk", + 83, + [ + "hall:tlrate" + ] + ], + [ + "【57기】비상식량", + 97, + 75, + 15, + "che_event_격노", + [ + 2901, + 30651, + 343863, + 77463, + 20241 + ], + 1, + "3031b888.gif?=20221229", + 57, + "che_230511_WkQk", + 84, + [ + "hall:tlrate", + "hall:ttrate" + ] + ], + [ + "【57기】전역킬러", + 63, + 13, + 84, + "che_event_필살", + [ + 4535, + 12483, + 19918, + 191221, + 13391 + ], + 1, + "7b54c93b.jpg?=20230126", + 57, + "che_230511_WkQk", + 85, + [ + "hall:tirate" + ] + ], + [ + "【57기】돈내놔", + 75, + 15, + 97, + "che_event_환술", + [ + 26174, + 50998, + 16304, + 306664, + 17492 + ], + 0, + "default.jpg", + 57, + "che_230511_WkQk", + 87, + [ + "hall:dex2" + ] + ], + [ + "【57기】독구", + 65, + 13, + 82, + "che_event_집중", + [ + 15492, + 5219, + 13988, + 250249, + 13482 + ], + 1, + "afdf2e78.gif?=20230317", + 57, + "che_230511_WkQk", + 91, + [ + "hall:betrate", + "hall:experience" + ] + ], + [ + "【57기】네이", + 88, + 16, + 83, + "che_event_필살", + [ + 37214, + 45956, + 34593, + 540201, + 33323 + ], + 0, + "default.jpg", + 57, + "che_230511_WkQk", + 92, + [ + "hall:dex4" + ] + ], + [ + "【57기】괴물습격!사스템!", + 90, + 81, + 15, + "che_event_위압", + [ + 6807, + 17154, + 415144, + 54915, + 27412 + ], + 1, + "2c4eab0d.png?=20230511", + 57, + "che_230511_WkQk", + 93, + [ + "hall:dex3", + "hall:tlrate" + ] + ], + [ + "【57기】개미호랑이", + 74, + 15, + 100, + "che_event_집중", + [ + 26292, + 24198, + 50911, + 434735, + 24150 + ], + 1, + "c2dc2b59.png?=20230511", + 57, + "che_230511_WkQk", + 94, + [ + "hall:dedication", + "hall:experience", + "hall:tirate" + ] + ], + [ + "【57기】악질홍차", + 67, + 13, + 80, + "che_event_환술", + [ + 1665, + 3712, + 23063, + 135484, + 9057 + ], + 0, + "default.jpg", + 57, + "che_230511_WkQk", + 95, + [ + "hall:tirate" + ] + ], + [ + "【57기】새신랑카류", + 79, + 93, + 15, + "che_event_견고", + [ + 342818, + 15665, + 9439, + 37970, + 7585 + ], + 1, + "3e32dab3.jpg?=20230511", + 57, + "che_230511_WkQk", + 96, + [ + "hall:dex1" + ] + ], + [ + "【57기】777", + 78, + 94, + 15, + "che_event_척사", + [ + 64024, + 373517, + 92530, + 29735, + 36688 + ], + 0, + "default.jpg", + 57, + "che_230511_WkQk", + 97, + [ + "hall:betgold", + "hall:betwin", + "hall:betwingold", + "hall:dex2" + ] + ], + [ + "【57기】사필귀정", + 89, + 15, + 82, + "che_event_징병", + [ + 9364, + 2036, + 8258, + 264902, + 14453 + ], + 0, + "default.jpg", + 57, + "che_230511_WkQk", + 98, + [ + "hall:betgold", + "hall:betrate", + "hall:betwingold", + "hall:firenum", + "hall:tlrate", + "hall:ttrate" + ] + ], + [ + "【57기】감흥", + 76, + 15, + 98, + "che_event_필살", + [ + 8475, + 41638, + 25201, + 519771, + 11441 + ], + 1, + "a73ecaa1.jpg?=20230313", + 57, + "che_230511_WkQk", + 101, + [ + "chief:9", + "hall:betrate", + "hall:dedication", + "hall:dex4", + "hall:winrate" + ] + ], + [ + "【57기】굴먹는고양이", + 64, + 13, + 86, + "che_event_필살", + [ + 7420, + 4686, + 16414, + 262955, + 8731 + ], + 0, + "default.jpg", + 57, + "che_230511_WkQk", + 102, + [ + "hall:betgold", + "hall:betwin", + "hall:dedication", + "hall:dex4", + "hall:experience", + "hall:winrate" + ] + ], + [ + "【57기】복숭아좋아", + 65, + 13, + 82, + "che_event_신산", + [ + 7841, + 3325, + 32569, + 206428, + 19398 + ], + 0, + "default.jpg", + 57, + "che_230511_WkQk", + 104, + [ + "hall:dedication", + "hall:experience" + ] + ], + [ + "【57기】황금표호나우두", + 88, + 82, + 16, + "che_event_견고", + [ + 100352, + 12193, + 311979, + 57209, + 18304 + ], + 1, + "16a9b5c4.png?=20230515", + 57, + "che_230511_WkQk", + 107, + [ + "hall:dex1" + ] + ], + [ + "【57기】간지밍이", + 87, + 60, + 13, + "che_event_공성", + [ + 25977, + 13008, + 12960, + 18238, + 923260 + ], + 1, + "847a61de.jpg?=20230606", + 57, + "che_230511_WkQk", + 108, + [ + "chief:10", + "hall:betgold", + "hall:betwin", + "hall:betwingold", + "hall:dex5", + "hall:experience", + "hall:killcrew", + "hall:killrate", + "hall:occupied", + "hall:tlrate", + "hall:warnum" + ] + ], + [ + "【57기】응애", + 75, + 15, + 98, + "che_event_필살", + [ + 39414, + 8275, + 31012, + 387596, + 21294 + ], + 1, + "fda33b70.jpg?=20230223", + 57, + "che_230511_WkQk", + 109, + [ + "hall:tirate" + ] + ], + [ + "【57기】카갈비열전좀써라", + 76, + 15, + 98, + "che_event_집중", + [ + 19583, + 13818, + 19894, + 544640, + 40397 + ], + 1, + "4975a9f5.jpg?=20230511", + 57, + "che_230511_WkQk", + 110, + [ + "hall:betgold", + "hall:betwin", + "hall:betwingold", + "hall:dex4", + "hall:occupied", + "hall:tirate" + ] + ], + [ + "【57기】열전먹튀카갈비", + 76, + 16, + 95, + "che_event_필살", + [ + 14789, + 66330, + 17550, + 339404, + 26107 + ], + 1, + "87ce8145.jpg?=20230511", + 57, + "che_230511_WkQk", + 114, + [ + "hall:dex2" + ] + ], + [ + "【57기】월클센터백", + 75, + 72, + 13, + "che_event_무쌍", + [ + 5670, + 191380, + 26262, + 50148, + 12809 + ], + 1, + "530894d6.png?=20230511", + 57, + "che_230511_WkQk", + 115, + [ + "hall:betrate", + "hall:betwingold", + "hall:dex2" + ] + ], + [ + "【57기】くま", + 78, + 16, + 94, + "che_event_집중", + [ + 9333, + 13050, + 10081, + 682933, + 49896 + ], + 1, + "770f53.jpg?=20190718", + 57, + "che_230511_WkQk", + 121, + [ + "hall:dex4", + "hall:dex5", + "hall:killcrew", + "hall:killcrew_person", + "hall:killnum", + "hall:killrate", + "hall:killrate_person", + "hall:occupied", + "hall:ttrate", + "hall:warnum" + ] + ], + [ + "【57기】국04", + 90, + 15, + 82, + "che_event_신중", + [ + 10094, + 15839, + 22502, + 284742, + 27445 + ], + 1, + "36e514d2.jpg?=20230207", + 57, + "che_230511_WkQk", + 123, + [ + "hall:betrate", + "hall:ttrate" + ] + ], + [ + "【57기】장수풍뎅이", + 89, + 79, + 15, + "che_event_저격", + [ + 286193, + 10108, + 39248, + 58977, + 8043 + ], + 0, + "default.jpg", + 57, + "che_230511_WkQk", + 125, + [ + "hall:dex1" + ] + ], + [ + "【57기】NK", + 74, + 15, + 101, + "che_event_집중", + [ + 30291, + 16682, + 45156, + 710437, + 34024 + ], + 1, + "d48fe93a.jpg?=20221209", + 57, + "che_230511_WkQk", + 129, + [ + "hall:betgold", + "hall:betwingold", + "hall:dex4", + "hall:experience", + "hall:killcrew", + "hall:killcrew_person", + "hall:killnum", + "hall:killrate", + "hall:killrate_person", + "hall:occupied", + "hall:tirate", + "hall:warnum", + "hall:winrate" + ] + ], + [ + "【57기】뉴턴", + 81, + 15, + 92, + "che_event_필살", + [ + 7356, + 12939, + 18224, + 397078, + 14217 + ], + 0, + "default.jpg", + 57, + "che_230511_WkQk", + 130, + [ + "hall:winrate" + ] + ], + [ + "【57기】잠수중1반복", + 15, + 73, + 98, + "che_event_신중", + [ + 0, + 0, + 0, + 0, + 0 + ], + 0, + "default.jpg", + 57, + "che_230511_WkQk", + 215, + [ + "hall:firenum" + ] + ], + [ + "【57기】벽돌도둑", + 96, + 73, + 16, + "che_event_공성", + [ + 28487, + 23433, + 21221, + 56573, + 974299 + ], + 0, + "default.jpg", + 57, + "che_230511_WkQk", + 222, + [ + "hall:dex5", + "hall:killcrew", + "hall:killrate", + "hall:occupied" + ] + ], + [ + "【57기】은채", + 75, + 15, + 98, + "che_event_필살", + [ + 15236, + 10733, + 30871, + 329082, + 7224 + ], + 1, + "0b53e4d0.png?=20230502", + 57, + "che_230511_WkQk", + 232, + [ + "hall:dedication", + "hall:tirate" + ] + ], + [ + "【57기】Bianchi", + 79, + 91, + 16, + "che_event_필살", + [ + 14884, + 34085, + 505140, + 60172, + 28344 + ], + 0, + "default.jpg", + 57, + "che_230511_WkQk", + 238, + [ + "hall:dex3" + ] + ], + [ + "【57기】Fragile", + 74, + 15, + 98, + "che_event_집중", + [ + 16086, + 12780, + 18529, + 337136, + 11016 + ], + 1, + "03ba3579.webp?=20230512", + 57, + "che_230511_WkQk", + 252, + [ + "hall:killrate_person" + ] + ], + [ + "【57기】냐옹", + 17, + 78, + 89, + "che_event_징병", + [ + 0, + 0, + 0, + 0, + 0 + ], + 1, + "23ba519.jpg?=20190318", + 57, + "che_230511_WkQk", + 444, + [ + "hall:ttrate" + ] + ], + [ + "【57기】푸키삼모", + 85, + 15, + 82, + "che_event_집중", + [ + 22069, + 17462, + 20818, + 227551, + 6530 + ], + 0, + "default.jpg", + 57, + "che_230511_WkQk", + 474, + [ + "hall:betrate" + ] + ], + [ + "【57기】황진", + 74, + 88, + 17, + "che_event_저격", + [ + 243446, + 28440, + 7491, + 46866, + 5834 + ], + 0, + "default.jpg", + 57, + "che_230511_WkQk", + 563, + [ + "hall:dex1" + ] + ], + [ + "【57기】Navy마초", + 75, + 86, + 15, + "che_event_저격", + [ + 17958, + 138012, + 1290, + 63797, + 13252 + ], + 0, + "default.jpg", + 57, + "che_230511_WkQk", + 639, + [ + "hall:dex2" + ] + ], + [ + "【58기】호시노 아이", + 96, + 78, + 15, + "che_event_필살", + [ + 36107, + 51759, + 837565, + 47400, + 9404 + ], + 1, + "8831878b.gif?=20230615", + 58, + "che_230615_6aXZ", + 4, + [ + "hall:dex3", + "hall:firenum", + "hall:killnum", + "hall:tlrate", + "hall:winrate" + ] + ], + [ + "【58기】하츄핑", + 80, + 92, + 15, + "che_event_척사", + [ + 99831, + 39376, + 60242, + 55670, + 879190 + ], + 1, + "0f430520.gif?=20230614", + 58, + "che_230615_6aXZ", + 6, + [ + "hall:betrate", + "hall:dex5", + "hall:killcrew", + "hall:killcrew_person", + "hall:killnum", + "hall:killrate", + "hall:killrate_person", + "hall:occupied", + "hall:tsrate", + "hall:warnum" + ] + ], + [ + "【58기】SARS", + 90, + 82, + 15, + "che_event_척사", + [ + 72889, + 758197, + 28011, + 97661, + 37156 + ], + 1, + "b84944.jpg?=20180829", + 58, + "che_230615_6aXZ", + 12, + [ + "hall:dex2" + ] + ], + [ + "【58기】강유", + 76, + 15, + 95, + "che_event_필살", + [ + 57918, + 12864, + 31110, + 592324, + 47685 + ], + 1, + "160c3e3e.jpg?=20230225", + 58, + "che_230615_6aXZ", + 13, + [ + "hall:dedication" + ] + ], + [ + "【58기】피해자의눈물", + 80, + 96, + 15, + "che_event_척사", + [ + 25577, + 620123, + 529428, + 106418, + 21654 + ], + 0, + "default.jpg", + 58, + "che_230615_6aXZ", + 18, + [ + "hall:dex2", + "hall:dex3", + "hall:killcrew", + "hall:killcrew_person", + "hall:killnum", + "hall:killrate_person", + "hall:tsrate", + "hall:warnum", + "hall:winrate" + ] + ], + [ + "【58기】아자핑", + 80, + 15, + 91, + "che_event_반계", + [ + 83169, + 32873, + 59041, + 533852, + 29793 + ], + 1, + "1fbf194b.jpg?=20230613", + 58, + "che_230615_6aXZ", + 26, + [ + "hall:ttrate" + ] + ], + [ + "【58기】Sarspear", + 79, + 95, + 15, + "che_event_필살", + [ + 105059, + 88792, + 1619032, + 114195, + 54963 + ], + 0, + "default.jpg", + 58, + "che_230615_6aXZ", + 27, + [ + "chief:8", + "hall:betgold", + "hall:betwin", + "hall:betwingold", + "hall:dex3", + "hall:dex5", + "hall:experience", + "hall:killcrew", + "hall:killcrew_person", + "hall:killnum", + "hall:killrate", + "hall:killrate_person", + "hall:occupied", + "hall:warnum", + "hall:winrate" + ] + ], + [ + "【58기】바쁜척", + 79, + 91, + 15, + "che_event_무쌍", + [ + 134238, + 142600, + 420831, + 72248, + 48238 + ], + 1, + "7cb75480.png?=20221202", + 58, + "che_230615_6aXZ", + 32, + [ + "hall:dex3" + ] + ], + [ + "【58기】집합장 앵벌스", + 15, + 70, + 103, + "che_event_징병", + [ + 0, + 0, + 0, + 0, + 0 + ], + 1, + "01e6478e.png?=20230615", + 58, + "che_230615_6aXZ", + 36, + [ + "hall:betrate", + "hall:tirate" + ] + ], + [ + "【58기】호나", + 95, + 76, + 15, + "che_event_징병", + [ + 79130, + 110651, + 60079, + 133632, + 670130 + ], + 0, + "default.jpg", + 58, + "che_230615_6aXZ", + 40, + [ + "hall:betgold", + "hall:betrate", + "hall:betwingold", + "hall:dex5", + "hall:occupied", + "hall:warnum" + ] + ], + [ + "【58기】도비이즈프리", + 91, + 78, + 15, + "che_event_견고", + [ + 48178, + 515833, + 28531, + 153863, + 46400 + ], + 1, + "60767302.png?=20230703", + 58, + "che_230615_6aXZ", + 41, + [ + "hall:dex2", + "hall:tlrate" + ] + ], + [ + "【58기】비비안", + 79, + 98, + 15, + "che_event_필살", + [ + 1294564, + 15192, + 41421, + 124187, + 46822 + ], + 1, + "f764f97c.jpg?=20230615", + 58, + "che_230615_6aXZ", + 48, + [ + "hall:betwin", + "hall:dex1", + "hall:experience", + "hall:killcrew", + "hall:killcrew_person", + "hall:killnum", + "hall:killrate", + "hall:killrate_person", + "hall:occupied", + "hall:tsrate", + "hall:warnum", + "hall:winrate" + ] + ], + [ + "【58기】SAS", + 77, + 15, + 95, + "che_event_필살", + [ + 55669, + 13789, + 18785, + 967205, + 53157 + ], + 1, + "099b8b1f.jpg?=20230616", + 58, + "che_230615_6aXZ", + 54, + [ + "chief:5", + "hall:betgold", + "hall:betrate", + "hall:betwin", + "hall:betwingold", + "hall:dex4", + "hall:experience", + "hall:killcrew", + "hall:killnum", + "hall:killrate", + "hall:killrate_person", + "hall:occupied", + "hall:winrate" + ] + ], + [ + "【58기】행운핑", + 83, + 91, + 15, + "che_event_필살", + [ + 32807, + 42834, + 948515, + 46515, + 24369 + ], + 1, + "b815483b.png?=20230622", + 58, + "che_230615_6aXZ", + 58, + [ + "hall:dex3", + "hall:killcrew_person" + ] + ], + [ + "【58기】김나영", + 83, + 87, + 15, + "che_event_위압", + [ + 540051, + 20631, + 67877, + 158175, + 18652 + ], + 1, + "1d64c6d3.jpg?=20230414", + 58, + "che_230615_6aXZ", + 59, + [ + "hall:dex1", + "hall:ttrate" + ] + ], + [ + "【58기】가면핑", + 91, + 15, + 81, + "che_event_집중", + [ + 23515, + 49814, + 37988, + 65845, + 593340 + ], + 1, + "81902004.jpg?=20230626", + 58, + "che_230615_6aXZ", + 60, + [ + "hall:betgold", + "hall:betrate", + "hall:betwin", + "hall:betwingold", + "hall:dex5", + "hall:ttrate" + ] + ], + [ + "【58기】카이스트", + 80, + 18, + 88, + "che_event_집중", + [ + 2577, + 26534, + 9596, + 309141, + 10770 + ], + 1, + "e7e27cd6.jpg?=20221125", + 58, + "che_230615_6aXZ", + 68, + [ + "hall:firenum" + ] + ], + [ + "【58기】독스훈트", + 82, + 92, + 15, + "che_event_필살", + [ + 395481, + 39122, + 390781, + 87248, + 23627 + ], + 1, + "40d0e506.png?=20230312", + 58, + "che_230615_6aXZ", + 69, + [ + "hall:betgold", + "hall:betwin", + "hall:betwingold", + "hall:dex3" + ] + ], + [ + "【58기】푸키삼모", + 93, + 78, + 15, + "che_event_무쌍", + [ + 159373, + 91852, + 204203, + 76566, + 30075 + ], + 1, + "85de0e3b.jpg?=20230621", + 58, + "che_230615_6aXZ", + 75, + [ + "hall:tlrate" + ] + ], + [ + "【58기】SAR$", + 83, + 87, + 16, + "che_event_무쌍", + [ + 94956, + 586833, + 73620, + 114809, + 24125 + ], + 1, + "6c35e4c8.jpg?=20230615", + 58, + "che_230615_6aXZ", + 76, + [ + "hall:dex2" + ] + ], + [ + "【58기】SARS걸린 이연", + 78, + 15, + 92, + "che_event_집중", + [ + 45618, + 23112, + 52033, + 582700, + 56976 + ], + 1, + "eba7e0fe.jpg?=20230615", + 58, + "che_230615_6aXZ", + 78, + [ + "chief:7", + "hall:dedication", + "hall:dex5", + "hall:experience", + "hall:occupied" + ] + ], + [ + "【58기】렌스쪼앙", + 80, + 15, + 93, + "che_event_의술", + [ + 23418, + 57917, + 33121, + 780894, + 40944 + ], + 0, + "default.jpg", + 58, + "che_230615_6aXZ", + 80, + [ + "hall:dex4" + ] + ], + [ + "【58기】아휴핑", + 81, + 92, + 15, + "che_event_징병", + [ + 49553, + 621640, + 38499, + 119643, + 20415 + ], + 1, + "5a952cfc.png?=20230615", + 58, + "che_230615_6aXZ", + 81, + [ + "hall:dex2", + "hall:tsrate" + ] + ], + [ + "【58기】진희", + 15, + 71, + 99, + "che_event_필살", + [ + 0, + 0, + 0, + 0, + 0 + ], + 1, + "0ea762f7.jpg?=20230615", + 58, + "che_230615_6aXZ", + 82, + [ + "hall:dedication", + "hall:tirate" + ] + ], + [ + "【58기】SARS", + 77, + 15, + 95, + "che_event_집중", + [ + 39064, + 48903, + 13657, + 625536, + 63994 + ], + 1, + "f4d1a1d5.jpg?=20230615", + 58, + "che_230615_6aXZ", + 83, + [ + "hall:dedication", + "hall:dex5", + "hall:experience" + ] + ], + [ + "【58기】네이", + 92, + 15, + 79, + "che_event_환술", + [ + 43538, + 21612, + 58881, + 738359, + 25645 + ], + 0, + "default.jpg", + 58, + "che_230615_6aXZ", + 85, + [ + "hall:dex4", + "hall:tlrate", + "hall:ttrate" + ] + ], + [ + "【58기】ㅊㄹㅊㄹ", + 78, + 91, + 15, + "che_event_척사", + [ + 66809, + 389463, + 1823, + 92423, + 27342 + ], + 1, + "63f1c106.png?=20230223", + 58, + "che_230615_6aXZ", + 86, + [ + "hall:dex2" + ] + ], + [ + "【58기】서희", + 89, + 80, + 15, + "che_event_필살", + [ + 25969, + 80488, + 300499, + 81375, + 33623 + ], + 1, + "8debf7e5.png?=20230308", + 58, + "che_230615_6aXZ", + 87, + [ + "hall:dex3" + ] + ], + [ + "【58기】차차핑", + 79, + 15, + 93, + "che_event_필살", + [ + 73306, + 45808, + 46359, + 749573, + 24956 + ], + 1, + "49096043.jpg?=20230617", + 58, + "che_230615_6aXZ", + 89, + [ + "hall:dex4" + ] + ], + [ + "【58기】지원", + 81, + 15, + 94, + "che_event_집중", + [ + 33758, + 47648, + 21307, + 1012713, + 38989 + ], + 1, + "42fe8df4.webp?=20230627", + 58, + "che_230615_6aXZ", + 90, + [ + "hall:betgold", + "hall:betrate", + "hall:betwin", + "hall:betwingold", + "hall:dex4", + "hall:killcrew", + "hall:killcrew_person", + "hall:killnum", + "hall:warnum" + ] + ], + [ + "【58기】아라핑", + 13, + 64, + 83, + "che_event_의술", + [ + 0, + 0, + 0, + 0, + 0 + ], + 1, + "9060b69c.jpg?=20230613", + 58, + "che_230615_6aXZ", + 91, + [ + "hall:tirate" + ] + ], + [ + "【58기】북오더", + 89, + 82, + 15, + "che_event_척사", + [ + 57925, + 9921, + 578676, + 77782, + 46130 + ], + 1, + "f39217aa.gif?=20220916", + 58, + "che_230615_6aXZ", + 92, + [ + "hall:dex3" + ] + ], + [ + "【58기】간지밍이", + 79, + 15, + 94, + "che_event_의술", + [ + 44308, + 43395, + 33621, + 859576, + 42958 + ], + 1, + "19c0150f.png?=20230615", + 58, + "che_230615_6aXZ", + 93, + [ + "hall:betgold", + "hall:betwin", + "hall:betwingold", + "hall:dex4", + "hall:killcrew", + "hall:killcrew_person", + "hall:tirate", + "hall:ttrate", + "hall:warnum" + ] + ], + [ + "【58기】샤일록", + 15, + 79, + 91, + "che_event_필살", + [ + 0, + 0, + 0, + 0, + 0 + ], + 0, + "default.jpg", + 58, + "che_230615_6aXZ", + 94, + [ + "hall:ttrate" + ] + ], + [ + "【58기】시진핑", + 80, + 91, + 16, + "che_event_필살", + [ + 445662, + 207070, + 199355, + 123939, + 52799 + ], + 1, + "d25cdae5.png?=20230615", + 58, + "che_230615_6aXZ", + 95, + [ + "hall:dex1", + "hall:tsrate" + ] + ], + [ + "【58기】셀린", + 76, + 15, + 97, + "che_event_집중", + [ + 113297, + 23286, + 48110, + 946218, + 48755 + ], + 1, + "f60f0b4b.jpg?=20230616", + 58, + "che_230615_6aXZ", + 96, + [ + "hall:dex4", + "hall:experience", + "hall:killcrew", + "hall:killrate", + "hall:killrate_person", + "hall:tirate", + "hall:winrate" + ] + ], + [ + "【58기】SRAS", + 77, + 15, + 92, + "che_event_반계", + [ + 38278, + 51599, + 28445, + 391940, + 27455 + ], + 1, + "c320c031.jpg?=20230615", + 58, + "che_230615_6aXZ", + 97, + [ + "hall:dedication" + ] + ], + [ + "【58기】5ARS", + 79, + 101, + 15, + "che_event_필살", + [ + 72182, + 1991346, + 32796, + 87851, + 64610 + ], + 1, + "812be77d.jpg?=20230709", + 58, + "che_230615_6aXZ", + 98, + [ + "chief:10", + "hall:betgold", + "hall:betwin", + "hall:betwingold", + "hall:dex2", + "hall:dex5", + "hall:experience", + "hall:killcrew", + "hall:killcrew_person", + "hall:killnum", + "hall:killrate", + "hall:killrate_person", + "hall:occupied", + "hall:tsrate", + "hall:ttrate", + "hall:warnum", + "hall:winrate" + ] + ], + [ + "【58기】XARS", + 99, + 72, + 15, + "che_event_필살", + [ + 599289, + 35000, + 53515, + 80013, + 49081 + ], + 1, + "03eea19b.jpg?=20230615", + 58, + "che_230615_6aXZ", + 99, + [ + "chief:6", + "hall:dedication", + "hall:dex1", + "hall:occupied", + "hall:tlrate" + ] + ], + [ + "【58기】살스", + 78, + 15, + 97, + "che_event_필살", + [ + 21904, + 19621, + 16256, + 1266795, + 41615 + ], + 1, + "dc09183b.jpg?=20230709", + 58, + "che_230615_6aXZ", + 100, + [ + "chief:11", + "hall:betgold", + "hall:betwin", + "hall:betwingold", + "hall:dex4", + "hall:experience", + "hall:killcrew", + "hall:killcrew_person", + "hall:killnum", + "hall:killrate", + "hall:killrate_person", + "hall:occupied", + "hall:warnum", + "hall:winrate" + ] + ], + [ + "【58기】SAR5", + 76, + 15, + 97, + "che_event_집중", + [ + 70722, + 28837, + 36907, + 624988, + 49706 + ], + 1, + "fd23fa03.jpg?=20230615", + 58, + "che_230615_6aXZ", + 101, + [ + "chief:9", + "hall:betrate", + "hall:dedication", + "hall:experience", + "hall:killrate", + "hall:killrate_person", + "hall:tirate", + "hall:winrate" + ] + ], + [ + "【58기】문익점", + 91, + 15, + 78, + "che_event_저격", + [ + 59930, + 20609, + 20494, + 143567, + 389829 + ], + 1, + "73eff778.png?=20230615", + 58, + "che_230615_6aXZ", + 102, + [ + "hall:dedication", + "hall:dex5" + ] + ], + [ + "【58기】12345678910111213", + 91, + 80, + 16, + "che_event_필살", + [ + 522670, + 21645, + 81291, + 53946, + 18629 + ], + 1, + "ec03a7ce.png?=20230615", + 58, + "che_230615_6aXZ", + 103, + [ + "hall:dex1", + "hall:tlrate" + ] + ], + [ + "【58기】.", + 99, + 71, + 16, + "che_event_무쌍", + [ + 46664, + 70870, + 34825, + 163664, + 590994 + ], + 0, + "default.jpg", + 58, + "che_230615_6aXZ", + 104, + [ + "hall:betgold", + "hall:betrate", + "hall:betwin", + "hall:betwingold", + "hall:dex5", + "hall:occupied", + "hall:tlrate" + ] + ], + [ + "【58기】PARS", + 74, + 97, + 15, + "che_event_필살", + [ + 62510, + 361886, + 184538, + 59050, + 44535 + ], + 1, + "0d3c867d.gif?=20230616", + 58, + "che_230615_6aXZ", + 105, + [ + "hall:dedication", + "hall:dex2", + "hall:killrate", + "hall:tsrate" + ] + ], + [ + "【58기】료우기시키", + 77, + 15, + 95, + "che_event_집중", + [ + 82847, + 36293, + 59352, + 587967, + 33844 + ], + 1, + "72a190e.jpg?=20220109", + 58, + "che_230615_6aXZ", + 106, + [ + "hall:tirate" + ] + ], + [ + "【58기】Hide_D", + 80, + 15, + 95, + "che_event_필살", + [ + 85689, + 63404, + 27869, + 847090, + 31623 + ], + 1, + "4569d848.png?=20230612", + 58, + "che_230615_6aXZ", + 109, + [ + "hall:dex4", + "hall:killcrew_person", + "hall:killnum", + "hall:tirate", + "hall:warnum" + ] + ], + [ + "【58기】와일드플라워", + 97, + 73, + 15, + "che_event_돌격", + [ + 592053, + 29454, + 84014, + 129046, + 30387 + ], + 0, + "default.jpg", + 58, + "che_230615_6aXZ", + 110, + [ + "hall:dex1", + "hall:tlrate" + ] + ], + [ + "【58기】SABS", + 75, + 17, + 94, + "che_event_척사", + [ + 87437, + 17045, + 31123, + 748598, + 35923 + ], + 1, + "f86fd948.jpg?=20230615", + 58, + "che_230615_6aXZ", + 111, + [ + "chief:12", + "hall:betrate", + "hall:dedication", + "hall:dex4", + "hall:experience", + "hall:killrate", + "hall:killrate_person", + "hall:winrate" + ] + ], + [ + "【58기】응애", + 77, + 15, + 96, + "che_event_신중", + [ + 28178, + 26281, + 10954, + 458964, + 16168 + ], + 1, + "fda33b70.jpg?=20230223", + 58, + "che_230615_6aXZ", + 113, + [ + "hall:tirate" + ] + ], + [ + "【58기】악어의눈물", + 77, + 15, + 95, + "che_event_필살", + [ + 84011, + 28367, + 22913, + 647446, + 35368 + ], + 0, + "default.jpg", + 58, + "che_230615_6aXZ", + 115, + [ + "hall:ttrate" + ] + ], + [ + "【58기】기병", + 80, + 90, + 16, + "che_event_견고", + [ + 126244, + 88353, + 747030, + 102814, + 32841 + ], + 1, + "f552576a.png?=20230705", + 58, + "che_230615_6aXZ", + 116, + [ + "hall:dex3" + ] + ], + [ + "【58기】경국지색소교", + 79, + 93, + 15, + "che_event_무쌍", + [ + 547991, + 7536, + 33582, + 83805, + 35588 + ], + 1, + "ad2669b5.jpg?=20230605", + 58, + "che_230615_6aXZ", + 119, + [ + "hall:dex1", + "hall:tsrate" + ] + ], + [ + "【58기】이랑", + 77, + 94, + 15, + "che_event_필살", + [ + 101086, + 655195, + 12978, + 102673, + 38306 + ], + 1, + "c1d305d5.jpg?=20230616", + 58, + "che_230615_6aXZ", + 211, + [ + "hall:dex2", + "hall:tsrate" + ] + ], + [ + "【58기】황진", + 92, + 79, + 15, + "che_event_격노", + [ + 537859, + 86039, + 81233, + 114864, + 27200 + ], + 0, + "default.jpg", + 58, + "che_230615_6aXZ", + 214, + [ + "hall:dex1", + "hall:tlrate" + ] + ], + [ + "【58기】돌아온너구리", + 15, + 72, + 100, + "che_event_반계", + [ + 0, + 0, + 0, + 0, + 0 + ], + 1, + "79dbce5.jpg?=20210918", + 58, + "che_230615_6aXZ", + 218, + [ + "hall:tirate" + ] + ], + [ + "【58기】ㅂ1상식량", + 93, + 77, + 16, + "che_event_의술", + [ + 604374, + 58382, + 68468, + 127437, + 21057 + ], + 1, + "3031b888.gif?=20221229", + 58, + "che_230615_6aXZ", + 229, + [ + "hall:dex1" + ] + ], + [ + "【58기】무림", + 91, + 77, + 16, + "che_event_위압", + [ + 130695, + 388405, + 9360, + 90290, + 19966 + ], + 0, + "default.jpg", + 58, + "che_230615_6aXZ", + 230, + [ + "hall:dex2" + ] + ], + [ + "【58기】Bianchi", + 81, + 90, + 15, + "che_event_격노", + [ + 532643, + 66770, + 41671, + 96824, + 16340 + ], + 0, + "default.jpg", + 58, + "che_230615_6aXZ", + 231, + [ + "hall:dex1", + "hall:tsrate", + "hall:ttrate" + ] + ], + [ + "【58기】예니체리", + 90, + 15, + 79, + "che_event_척사", + [ + 40895, + 36198, + 58315, + 354618, + 9240 + ], + 0, + "default.jpg", + 58, + "che_230615_6aXZ", + 234, + [ + "hall:ttrate" + ] + ], + [ + "【58기】만샘", + 93, + 77, + 15, + "che_event_격노", + [ + 26241, + 86817, + 571012, + 101479, + 52618 + ], + 1, + "4a206a1.jpg?=20181122", + 58, + "che_230615_6aXZ", + 235, + [ + "hall:dex3", + "hall:tlrate" + ] + ], + [ + "【58기】삭턴전문가", + 78, + 15, + 92, + "che_event_집중", + [ + 48306, + 81170, + 28382, + 576979, + 55788 + ], + 0, + "default.jpg", + 58, + "che_230615_6aXZ", + 256, + [ + "hall:dex5" + ] + ], + [ + "【58기】Navy마초", + 79, + 15, + 91, + "che_event_신산", + [ + 70167, + 45359, + 42430, + 531192, + 42439 + ], + 0, + "default.jpg", + 58, + "che_230615_6aXZ", + 282, + [ + "hall:firenum" + ] + ], + [ + "【58기】진솔", + 18, + 74, + 86, + "che_event_신산", + [ + 0, + 0, + 0, + 0, + 0 + ], + 1, + "a076cf9f.webp?=20230626", + 58, + "che_230615_6aXZ", + 541, + [ + "hall:betrate" + ] + ], + [ + "【59기】아픈척", + 79, + 92, + 15, + "che_event_필살", + [ + 416616, + 83647, + 121002, + 74572, + 33417 + ], + 1, + "7cb75480.png?=20221202", + 59, + "che_230713_zRPI", + 7, + [ + "hall:firenum", + "hall:occupied" + ] + ], + [ + "【59기】양사영", + 81, + 96, + 15, + "che_event_필살", + [ + 477922, + 109568, + 509749, + 60580, + 8559 + ], + 1, + "77c40ccc.jpg?=20230713", + 59, + "che_230713_zRPI", + 8, + [ + "hall:dex1", + "hall:experience", + "hall:killcrew", + "hall:killcrew_person", + "hall:killnum", + "hall:killrate", + "hall:killrate_person", + "hall:warnum", + "hall:winrate" + ] + ], + [ + "【59기】헬조선망해라", + 69, + 80, + 13, + "che_event_견고", + [ + 19399, + 434996, + 9425, + 32936, + 11014 + ], + 0, + "default.jpg", + 59, + "che_230713_zRPI", + 10, + [ + "hall:betrate", + "hall:betwingold", + "hall:dex2", + "hall:killcrew", + "hall:killcrew_person", + "hall:occupied", + "hall:tsrate", + "hall:warnum" + ] + ], + [ + "【59기】鳴海大我", + 77, + 15, + 94, + "che_event_집중", + [ + 21332, + 33718, + 35403, + 593790, + 53288 + ], + 1, + "663df7a3.jpg?=20230713", + 59, + "che_230713_zRPI", + 11, + [ + "chief:11", + "hall:betrate", + "hall:dedication", + "hall:dex4", + "hall:dex5", + "hall:tirate" + ] + ], + [ + "【59기】만디", + 84, + 88, + 15, + "che_event_견고", + [ + 38958, + 1009292, + 27950, + 21126, + 27271 + ], + 1, + "528b77f4.jpg?=20230713", + 59, + "che_230713_zRPI", + 12, + [ + "hall:dex2", + "hall:killcrew", + "hall:killcrew_person", + "hall:warnum" + ] + ], + [ + "【59기】돌아온너구리", + 98, + 72, + 16, + "che_event_공성", + [ + 40278, + 16279, + 71516, + 80281, + 1433988 + ], + 1, + "79dbce5.jpg?=20210918", + 59, + "che_230713_zRPI", + 21, + [ + "chief:10", + "hall:dedication", + "hall:dex5", + "hall:experience", + "hall:killcrew", + "hall:killrate", + "hall:occupied", + "hall:tlrate" + ] + ], + [ + "【59기】SARS", + 90, + 84, + 15, + "che_event_척사", + [ + 117211, + 95255, + 625860, + 87068, + 36005 + ], + 1, + "b84944.jpg?=20180829", + 59, + "che_230713_zRPI", + 25, + [ + "hall:dex3", + "hall:experience", + "hall:killcrew", + "hall:killcrew_person", + "hall:killnum", + "hall:killrate", + "hall:killrate_person", + "hall:occupied", + "hall:winrate" + ] + ], + [ + "【59기】GATA미코가미리코", + 77, + 94, + 18, + "che_event_돌격", + [ + 127477, + 38674, + 832516, + 135320, + 50717 + ], + 1, + "dfd9105a.jpg?=20230713", + 59, + "che_230713_zRPI", + 26, + [ + "chief:6", + "hall:dedication", + "hall:dex3", + "hall:killcrew", + "hall:killcrew_person", + "hall:killnum", + "hall:killrate", + "hall:killrate_person", + "hall:winrate" + ] + ], + [ + "【59기】응애", + 76, + 15, + 96, + "che_event_필살", + [ + 21925, + 36969, + 39272, + 449508, + 26390 + ], + 1, + "fda33b70.jpg?=20230223", + 59, + "che_230713_zRPI", + 29, + [ + "hall:tirate" + ] + ], + [ + "【59기】Sase Kim", + 82, + 16, + 89, + "che_event_집중", + [ + 30375, + 27252, + 34276, + 495261, + 39046 + ], + 1, + "8e71251b.jpg?=20230713", + 59, + "che_230713_zRPI", + 32, + [ + "hall:betgold", + "hall:betwin", + "hall:betwingold" + ] + ], + [ + "【59기】길을가던냥이", + 95, + 76, + 15, + "che_event_척사", + [ + 95078, + 256749, + 62479, + 49249, + 26875 + ], + 1, + "fcf03180.png?=20230713", + 59, + "che_230713_zRPI", + 35, + [ + "hall:betrate", + "hall:dex2", + "hall:tlrate" + ] + ], + [ + "【59기】바나낫", + 80, + 91, + 15, + "che_event_돌격", + [ + 671473, + 21362, + 43058, + 50496, + 39199 + ], + 1, + "29bda5a8.gif?=20230712", + 59, + "che_230713_zRPI", + 36, + [ + "hall:dex1", + "hall:tsrate" + ] + ], + [ + "【59기】사카마타클로에", + 77, + 16, + 95, + "che_event_환술", + [ + 24800, + 21474, + 42877, + 676737, + 17576 + ], + 1, + "80447eca.jpg?=20230713", + 59, + "che_230713_zRPI", + 40, + [ + "hall:dex4", + "hall:killnum", + "hall:killrate", + "hall:killrate_person", + "hall:tirate", + "hall:winrate" + ] + ], + [ + "【59기】나가", + 75, + 96, + 15, + "che_event_필살", + [ + 27856, + 29966, + 629479, + 100680, + 54202 + ], + 1, + "f0aa9701.jpg?=20230712", + 59, + "che_230713_zRPI", + 42, + [ + "hall:dex3", + "hall:dex5", + "hall:firenum", + "hall:tsrate" + ] + ], + [ + "【59기】요리의신 청설모", + 76, + 95, + 15, + "che_event_척사", + [ + 35762, + 37918, + 188325, + 23662, + 20017 + ], + 1, + "aa2db600.png?=20230713", + 59, + "che_230713_zRPI", + 43, + [ + "hall:tsrate" + ] + ], + [ + "【59기】Hide_D", + 79, + 15, + 94, + "che_event_척사", + [ + 16477, + 14067, + 13436, + 433001, + 24434 + ], + 1, + "4569d848.png?=20230612", + 59, + "che_230713_zRPI", + 46, + [ + "hall:tirate", + "hall:ttrate" + ] + ], + [ + "【59기】진솔", + 16, + 71, + 99, + "che_event_반계", + [ + 0, + 0, + 0, + 0, + 0 + ], + 1, + "a076cf9f.webp?=20230626", + 59, + "che_230713_zRPI", + 47, + [ + "hall:experience", + "hall:firenum", + "hall:tirate" + ] + ], + [ + "【59기】이연", + 80, + 93, + 15, + "che_event_위압", + [ + 901762, + 16139, + 71848, + 65115, + 39344 + ], + 1, + "eba7e0fe.jpg?=20230615", + 59, + "che_230713_zRPI", + 49, + [ + "hall:betrate", + "hall:dex1", + "hall:killcrew", + "hall:killcrew_person", + "hall:killnum", + "hall:occupied", + "hall:tsrate", + "hall:ttrate", + "hall:warnum" + ] + ], + [ + "【59기】로니", + 82, + 90, + 15, + "che_event_저격", + [ + 23821, + 42708, + 629086, + 95303, + 27725 + ], + 1, + "19aa078e.png?=20230713", + 59, + "che_230713_zRPI", + 52, + [ + "hall:dex3" + ] + ], + [ + "【59기】외심장", + 76, + 16, + 93, + "che_event_신산", + [ + 4501, + 5683, + 7695, + 215525, + 38439 + ], + 1, + "36110cd.jpg?=20180826", + 59, + "che_230713_zRPI", + 53, + [ + "hall:tirate" + ] + ], + [ + "【59기】호시노 앵벌스", + 92, + 78, + 16, + "che_event_무쌍", + [ + 842265, + 8325, + 60957, + 60471, + 26192 + ], + 1, + "15f87f0d.webp?=20230712", + 59, + "che_230713_zRPI", + 57, + [ + "hall:betgold", + "hall:betwin", + "hall:betwingold", + "hall:dex1", + "hall:killcrew", + "hall:killcrew_person", + "hall:killnum", + "hall:occupied", + "hall:tlrate", + "hall:warnum", + "hall:winrate" + ] + ], + [ + "【59기】무녀", + 79, + 15, + 91, + "che_event_척사", + [ + 18235, + 11239, + 23656, + 245080, + 628 + ], + 1, + "59339fe7.gif?=20230704", + 59, + "che_230713_zRPI", + 58, + [ + "hall:ttrate" + ] + ], + [ + "【59기】네이", + 79, + 16, + 91, + "che_event_필살", + [ + 35253, + 16810, + 47737, + 542123, + 60987 + ], + 0, + "default.jpg", + 59, + "che_230713_zRPI", + 60, + [ + "chief:7", + "hall:dex5" + ] + ], + [ + "【59기】키리코", + 77, + 93, + 16, + "che_event_필살", + [ + 521650, + 14890, + 44844, + 113305, + 29988 + ], + 1, + "8f4e6d3e.jpg?=20230622", + 59, + "che_230713_zRPI", + 65, + [ + "hall:dex1", + "hall:tsrate" + ] + ], + [ + "【59기】묵은지닭찜과보드카", + 90, + 81, + 15, + "che_event_무쌍", + [ + 541343, + 23770, + 25879, + 75574, + 9307 + ], + 1, + "0cd92b02.png?=20230714", + 59, + "che_230713_zRPI", + 71, + [ + "hall:betrate", + "hall:dex1", + "hall:firenum" + ] + ], + [ + "【59기】셀레미", + 78, + 15, + 95, + "che_event_필살", + [ + 26038, + 15509, + 45087, + 609670, + 69077 + ], + 1, + "097305fb.jpg?=20230703", + 59, + "che_230713_zRPI", + 72, + [ + "hall:betwin", + "hall:dex4", + "hall:dex5", + "hall:experience" + ] + ], + [ + "【59기】감흥", + 15, + 75, + 95, + "che_event_반계", + [ + 0, + 0, + 0, + 0, + 0 + ], + 1, + "a73ecaa1.jpg?=20230313", + 59, + "che_230713_zRPI", + 73, + [ + "hall:experience" + ] + ], + [ + "【59기】와플", + 96, + 75, + 15, + "che_event_필살", + [ + 23791, + 32468, + 609367, + 90755, + 49414 + ], + 0, + "default.jpg", + 59, + "che_230713_zRPI", + 80, + [ + "hall:dex3", + "hall:tlrate" + ] + ], + [ + "【59기】학군사관", + 80, + 89, + 15, + "che_event_돌격", + [ + 40288, + 297062, + 31977, + 81862, + 17595 + ], + 0, + "default.jpg", + 59, + "che_230713_zRPI", + 85, + [ + "hall:dex2" + ] + ], + [ + "【59기】그림리퍼", + 80, + 89, + 15, + "che_event_무쌍", + [ + 10452, + 26478, + 479140, + 86633, + 45111 + ], + 0, + "default.jpg", + 59, + "che_230713_zRPI", + 88, + [ + "hall:firenum" + ] + ], + [ + "【59기】하디아", + 90, + 81, + 15, + "che_event_필살", + [ + 57020, + 123860, + 391607, + 57501, + 10990 + ], + 1, + "77816dac.png?=20230713", + 59, + "che_230713_zRPI", + 90, + [ + "hall:tlrate" + ] + ], + [ + "【59기】비상식량", + 90, + 82, + 15, + "che_event_저격", + [ + 33639, + 16485, + 614679, + 71957, + 52779 + ], + 1, + "3031b888.gif?=20221229", + 59, + "che_230713_zRPI", + 91, + [ + "hall:dex3", + "hall:dex5" + ] + ], + [ + "【59기】유카", + 80, + 91, + 15, + "che_event_위압", + [ + 495555, + 18320, + 57341, + 86906, + 45028 + ], + 0, + "default.jpg", + 59, + "che_230713_zRPI", + 92, + [ + "hall:dex1" + ] + ], + [ + "【59기】NK", + 77, + 96, + 15, + "che_event_필살", + [ + 18868, + 36182, + 785443, + 38268, + 27587 + ], + 1, + "d48fe93a.jpg?=20221209", + 59, + "che_230713_zRPI", + 96, + [ + "hall:dex3", + "hall:tsrate" + ] + ], + [ + "【59기】블로니", + 16, + 73, + 96, + "che_event_의술", + [ + 150, + 0, + 1650, + 11102, + 0 + ], + 1, + "a65dfd69.jpg?=20230712", + 59, + "che_230713_zRPI", + 100, + [ + "hall:killrate_person", + "hall:tirate" + ] + ], + [ + "【59기】비건 독구", + 78, + 91, + 15, + "che_event_견고", + [ + 82165, + 36044, + 668195, + 92912, + 51977 + ], + 1, + "40d0e506.png?=20230312", + 59, + "che_230713_zRPI", + 101, + [ + "chief:8", + "hall:betwin", + "hall:dedication", + "hall:dex3", + "hall:dex5", + "hall:experience", + "hall:killrate" + ] + ], + [ + "【59기】나무사이", + 78, + 92, + 15, + "che_event_위압", + [ + 417013, + 129499, + 75341, + 100461, + 42308 + ], + 1, + "7d1bfc64.png?=20230731", + 59, + "che_230713_zRPI", + 102, + [ + "hall:betrate", + "hall:firenum" + ] + ], + [ + "【59기】칼라", + 15, + 82, + 89, + "che_event_신산", + [ + 0, + 0, + 0, + 0, + 0 + ], + 1, + "709f4ae7.jpg?=20230713", + 59, + "che_230713_zRPI", + 103, + [ + "hall:firenum" + ] + ], + [ + "【59기】간지밍이", + 78, + 16, + 93, + "che_event_필살", + [ + 24409, + 35369, + 43610, + 547732, + 17258 + ], + 1, + "19c0150f.png?=20230615", + 59, + "che_230713_zRPI", + 104, + [ + "hall:betgold", + "hall:betwin", + "hall:betwingold", + "hall:firenum", + "hall:tirate" + ] + ], + [ + "【59기】호나", + 93, + 17, + 76, + "che_event_징병", + [ + 53030, + 49396, + 47861, + 154495, + 484305 + ], + 0, + "default.jpg", + 59, + "che_230713_zRPI", + 105, + [ + "hall:betgold", + "hall:dex5", + "hall:tlrate" + ] + ], + [ + "【59기】지원", + 79, + 92, + 16, + "che_event_척사", + [ + 34300, + 40098, + 772430, + 60618, + 12452 + ], + 1, + "13c59544.webp?=20230712", + 59, + "che_230713_zRPI", + 106, + [ + "hall:betgold", + "hall:betwin", + "hall:betwingold", + "hall:dex3", + "hall:tsrate" + ] + ], + [ + "【59기】불패", + 81, + 93, + 15, + "che_event_필살", + [ + 603424, + 15020, + 44268, + 52295, + 18741 + ], + 1, + "e52adea8.jpg?=20230712", + 59, + "che_230713_zRPI", + 107, + [ + "hall:betrate", + "hall:dex1" + ] + ], + [ + "【59기】크렌스", + 81, + 92, + 15, + "che_event_필살", + [ + 25782, + 33838, + 713364, + 80014, + 36873 + ], + 0, + "default.jpg", + 59, + "che_230713_zRPI", + 108, + [ + "hall:betgold", + "hall:betwin", + "hall:betwingold", + "hall:dex3" + ] + ], + [ + "【59기】인고나", + 78, + 15, + 93, + "che_event_집중", + [ + 28117, + 23868, + 34607, + 561114, + 44688 + ], + 0, + "default.jpg", + 59, + "che_230713_zRPI", + 109, + [ + "hall:dex4" + ] + ], + [ + "【59기】황진", + 82, + 92, + 15, + "che_event_위압", + [ + 39240, + 748716, + 19495, + 68269, + 39658 + ], + 0, + "default.jpg", + 59, + "che_230713_zRPI", + 110, + [ + "hall:dex2", + "hall:ttrate", + "hall:warnum" + ] + ], + [ + "【59기】라콘타", + 76, + 15, + 95, + "che_event_집중", + [ + 19495, + 18950, + 25118, + 431517, + 27176 + ], + 1, + "8a091db0.png?=20230714", + 59, + "che_230713_zRPI", + 113, + [ + "hall:tirate" + ] + ], + [ + "【59기】카이스트", + 79, + 15, + 91, + "che_event_신산", + [ + 21524, + 50882, + 18417, + 506090, + 31325 + ], + 1, + "e7e27cd6.jpg?=20221125", + 59, + "che_230713_zRPI", + 115, + [ + "hall:firenum" + ] + ], + [ + "【59기】사스케", + 20, + 95, + 71, + "che_event_필살", + [ + 22252, + 378039, + 31041, + 41017, + 35157 + ], + 1, + "812be77d.jpg?=20230709", + 59, + "che_230713_zRPI", + 116, + [ + "chief:12", + "hall:betgold", + "hall:betwin", + "hall:betwingold", + "hall:dedication", + "hall:dex2", + "hall:firenum", + "hall:killrate", + "hall:killrate_person", + "hall:tsrate" + ] + ], + [ + "【59기】pray", + 79, + 63, + 14, + "che_event_돌격", + [ + 144983, + 1445, + 9475, + 15845, + 7894 + ], + 1, + "7b54c93b.jpg?=20230126", + 59, + "che_230713_zRPI", + 117, + [ + "hall:tlrate", + "hall:ttrate" + ] + ], + [ + "【59기】독구", + 78, + 15, + 94, + "che_event_집중", + [ + 58807, + 40336, + 22097, + 780927, + 19147 + ], + 1, + "29a7e597.gif?=20230709", + 59, + "che_230713_zRPI", + 118, + [ + "hall:dex4", + "hall:killcrew_person", + "hall:killnum", + "hall:ttrate", + "hall:warnum" + ] + ], + [ + "【59기】사마귀", + 75, + 98, + 15, + "che_event_필살", + [ + 924948, + 17061, + 58500, + 50357, + 35196 + ], + 1, + "817fb3a2.png?=20230713", + 59, + "che_230713_zRPI", + 119, + [ + "hall:betgold", + "hall:betwin", + "hall:betwingold", + "hall:dedication", + "hall:dex1", + "hall:experience", + "hall:killcrew", + "hall:killcrew_person", + "hall:killnum", + "hall:killrate", + "hall:killrate_person", + "hall:occupied", + "hall:tsrate", + "hall:warnum", + "hall:winrate" + ] + ], + [ + "【59기】우돌", + 98, + 72, + 16, + "che_event_징병", + [ + 66902, + 46809, + 126680, + 133977, + 765463 + ], + 0, + "default.jpg", + 59, + "che_230713_zRPI", + 120, + [ + "hall:dex5", + "hall:occupied", + "hall:tlrate", + "hall:warnum" + ] + ], + [ + "【59기】군견", + 75, + 15, + 97, + "che_event_집중", + [ + 27305, + 11828, + 19010, + 588205, + 43119 + ], + 1, + "5c337cdd.png?=20230713", + 59, + "che_230713_zRPI", + 122, + [ + "chief:9", + "hall:dedication", + "hall:dex4", + "hall:experience", + "hall:killrate", + "hall:killrate_person", + "hall:tirate", + "hall:winrate" + ] + ], + [ + "【59기】아야츠노 유니", + 79, + 15, + 95, + "che_event_필살", + [ + 19077, + 8319, + 24390, + 790110, + 37549 + ], + 1, + "a6f82a19.gif?=20230715", + 59, + "che_230713_zRPI", + 123, + [ + "chief:5", + "hall:betgold", + "hall:betwin", + "hall:betwingold", + "hall:dex4", + "hall:experience", + "hall:killcrew", + "hall:killcrew_person", + "hall:killnum", + "hall:killrate", + "hall:killrate_person", + "hall:occupied", + "hall:winrate" + ] + ], + [ + "【59기】잉여_국04", + 76, + 15, + 94, + "che_event_필살", + [ + 73993, + 10428, + 45092, + 436419, + 41274 + ], + 1, + "36e514d2.jpg?=20230207", + 59, + "che_230713_zRPI", + 125, + [ + "hall:betrate", + "hall:dedication" + ] + ], + [ + "【59기】대교", + 95, + 73, + 16, + "che_event_무쌍", + [ + 23635, + 6367, + 483827, + 98098, + 62840 + ], + 1, + "9f0e6dcc.jpg?=20220808", + 59, + "che_230713_zRPI", + 127, + [ + "hall:dex5", + "hall:occupied", + "hall:tlrate" + ] + ], + [ + "【59기】Navy마초", + 97, + 73, + 15, + "che_event_위압", + [ + 27284, + 537354, + 40858, + 101631, + 22289 + ], + 0, + "default.jpg", + 59, + "che_230713_zRPI", + 129, + [ + "hall:betgold", + "hall:betwingold", + "hall:dex2", + "hall:tlrate" + ] + ], + [ + "【59기】초롱초롱 무지", + 80, + 92, + 15, + "che_event_무쌍", + [ + 629410, + 119344, + 45647, + 88128, + 29547 + ], + 1, + "63f1c106.png?=20230223", + 59, + "che_230713_zRPI", + 132, + [ + "hall:dex1", + "hall:ttrate" + ] + ], + [ + "【59기】경국지색소교", + 80, + 16, + 91, + "che_event_환술", + [ + 25138, + 34618, + 18632, + 606728, + 17860 + ], + 1, + "ad2669b5.jpg?=20230605", + 59, + "che_230713_zRPI", + 137, + [ + "hall:dex4" + ] + ], + [ + "【59기】고양이", + 91, + 15, + 81, + "che_event_집중", + [ + 59260, + 37670, + 8506, + 743894, + 20163 + ], + 0, + "default.jpg", + 59, + "che_230713_zRPI", + 142, + [ + "hall:dex4", + "hall:killnum", + "hall:winrate" + ] + ], + [ + "【59기】다유", + 78, + 15, + 93, + "che_event_환술", + [ + 28688, + 21251, + 34593, + 416701, + 14779 + ], + 1, + "f489a2a.jpg?=20181226", + 59, + "che_230713_zRPI", + 143, + [ + "hall:ttrate" + ] + ], + [ + "【59기】기연노예", + 76, + 15, + 95, + "che_event_집중", + [ + 50039, + 36156, + 17007, + 496473, + 16043 + ], + 0, + "default.jpg", + 59, + "che_230713_zRPI", + 208, + [ + "hall:ttrate" + ] + ], + [ + "【59기】서희", + 78, + 91, + 15, + "che_event_돌격", + [ + 38955, + 400244, + 16179, + 51934, + 29861 + ], + 1, + "8debf7e5.png?=20230308", + 59, + "che_230713_zRPI", + 210, + [ + "hall:dex2" + ] + ], + [ + "【59기】김유현", + 87, + 15, + 84, + "che_event_필살", + [ + 14797, + 5711, + 18609, + 312088, + 4889 + ], + 0, + "default.jpg", + 59, + "che_230713_zRPI", + 211, + [ + "hall:killrate_person", + "hall:winrate" + ] + ], + [ + "【59기】문어", + 77, + 90, + 16, + "che_event_의술", + [ + 354, + 249173, + 15895, + 50575, + 8961 + ], + 0, + "default.jpg", + 59, + "che_230713_zRPI", + 216, + [ + "hall:dex2" + ] + ], + [ + "【59기】나이많음의아이콘", + 80, + 16, + 92, + "che_event_환술", + [ + 39522, + 20877, + 32054, + 766709, + 22817 + ], + 0, + "default.jpg", + 59, + "che_230713_zRPI", + 223, + [ + "hall:dex4", + "hall:warnum" + ] + ], + [ + "【59기】블러드", + 78, + 91, + 15, + "che_event_무쌍", + [ + 77289, + 353463, + 113498, + 85271, + 19034 + ], + 0, + "default.jpg", + 59, + "che_230713_zRPI", + 226, + [ + "hall:betrate", + "hall:dex2" + ] + ], + [ + "【59기】くま", + 80, + 15, + 92, + "che_event_환술", + [ + 93622, + 104123, + 24622, + 540885, + 16422 + ], + 1, + "770f53.jpg?=20190718", + 59, + "che_230713_zRPI", + 228, + [ + "hall:ttrate" + ] + ], + [ + "【59기】어린양", + 15, + 73, + 95, + "che_event_신산", + [ + 0, + 0, + 0, + 0, + 0 + ], + 0, + "default.jpg", + 59, + "che_230713_zRPI", + 375, + [ + "hall:betrate" + ] + ], + [ + "【59기】초선", + 16, + 83, + 83, + "che_event_의술", + [ + 0, + 0, + 0, + 0, + 0 + ], + 1, + "b24730b1.jpg?=20230112", + 59, + "che_230713_zRPI", + 492, + [ + "hall:dedication" + ] + ], + [ + "【59기】임태산북두", + 15, + 73, + 92, + "che_event_징병", + [ + 0, + 0, + 0, + 0, + 0 + ], + 0, + "default.jpg", + 59, + "che_230713_zRPI", + 512, + [ + "hall:dedication" + ] + ], + [ + "【60기】척", + 76, + 88, + 15, + "che_event_필살", + [ + 367980, + 5335, + 57006, + 20173, + 187710 + ], + 1, + "7cb75480.png?=20221202", + 60, + "che_230810_pS8L", + 7, + [ + "hall:dex1", + "hall:dex5", + "hall:killrate" + ] + ], + [ + "【60기】ⓗ동탁", + 74, + 92, + 15, + "che_event_필살", + [ + 638499, + 3043, + 18060, + 26903, + 73391 + ], + 0, + "default.jpg", + 60, + "che_230810_pS8L", + 16, + [ + "hall:dex1", + "hall:killrate", + "hall:occupied", + "hall:tsrate" + ] + ], + [ + "【60기】경국지색소교", + 77, + 89, + 16, + "che_event_돌격", + [ + 1753, + 9683, + 212203, + 7257, + 48092 + ], + 1, + "ad2669b5.jpg?=20230605", + 60, + "che_230810_pS8L", + 22, + [ + "hall:ttrate" + ] + ], + [ + "【60기】모코코", + 76, + 91, + 15, + "che_event_무쌍", + [ + 816984, + 9389, + 103558, + 29937, + 90320 + ], + 1, + "de1526f7.jpg?=20230811", + 60, + "che_230810_pS8L", + 25, + [ + "hall:dex1", + "hall:experience", + "hall:killcrew", + "hall:killcrew_person", + "hall:killnum", + "hall:killrate", + "hall:killrate_person", + "hall:occupied", + "hall:warnum" + ] + ], + [ + "【60기】LK99", + 77, + 15, + 90, + "che_event_집중", + [ + 23384, + 2036, + 19889, + 656838, + 99344 + ], + 1, + "a6432751.png?=20230810", + 60, + "che_230810_pS8L", + 27, + [ + "hall:dex4", + "hall:killcrew", + "hall:killcrew_person", + "hall:tirate" + ] + ], + [ + "【60기】카이스트", + 74, + 15, + 91, + "che_event_집중", + [ + 9594, + 4744, + 12801, + 794727, + 123947 + ], + 1, + "e7e27cd6.jpg?=20221125", + 60, + "che_230810_pS8L", + 28, + [ + "hall:betrate", + "hall:dex4", + "hall:killnum", + "hall:tirate", + "hall:warnum" + ] + ], + [ + "【60기】김정은", + 87, + 78, + 15, + "che_event_징병", + [ + 564117, + 11404, + 25555, + 37588, + 195921 + ], + 1, + "6b516dfc.png?=20230810", + 60, + "che_230810_pS8L", + 29, + [ + "hall:betgold", + "hall:betrate", + "hall:betwin", + "hall:betwingold", + "hall:dex1", + "hall:dex5", + "hall:tlrate" + ] + ], + [ + "【60기】장원영", + 76, + 90, + 15, + "che_event_필살", + [ + 564018, + 8291, + 19288, + 30889, + 61438 + ], + 1, + "747944df.jpg?=20230731", + 60, + "che_230810_pS8L", + 31, + [ + "hall:dex1" + ] + ], + [ + "【60기】Sase Kim", + 72, + 15, + 94, + "che_event_환술", + [ + 19403, + 9129, + 4268, + 429778, + 54615 + ], + 1, + "1bf472d6.jpg?=20230810", + 60, + "che_230810_pS8L", + 39, + [ + "hall:betgold", + "hall:betwin", + "hall:betwingold", + "hall:tirate" + ] + ], + [ + "【60기】황진", + 75, + 15, + 91, + "che_event_집중", + [ + 392, + 1125, + 5517, + 152467, + 32695 + ], + 0, + "default.jpg", + 60, + "che_230810_pS8L", + 42, + [ + "hall:ttrate" + ] + ], + [ + "【60기】NS 청설모", + 77, + 87, + 15, + "che_event_위압", + [ + 39924, + 516100, + 4297, + 22944, + 68218 + ], + 0, + "default.jpg", + 60, + "che_230810_pS8L", + 44, + [ + "hall:dex2", + "hall:killrate_person" + ] + ], + [ + "【60기】개미호랑이", + 74, + 15, + 92, + "che_event_척사", + [ + 10941, + 989, + 0, + 182758, + 50769 + ], + 1, + "ce56034f.jpg?=20230714", + 60, + "che_230810_pS8L", + 45, + [ + "hall:dedication", + "hall:tirate" + ] + ], + [ + "【60기】라콘타", + 75, + 91, + 15, + "che_event_필살", + [ + 558376, + 4402, + 1727, + 25714, + 52680 + ], + 1, + "ab1b58bf.png?=20230804", + 60, + "che_230810_pS8L", + 47, + [ + "hall:dex1" + ] + ], + [ + "【60기】초선", + 77, + 15, + 91, + "che_event_집중", + [ + 20710, + 11126, + 20442, + 836540, + 38911 + ], + 1, + "b24730b1.jpg?=20230112", + 60, + "che_230810_pS8L", + 49, + [ + "hall:dex4", + "hall:experience", + "hall:killcrew", + "hall:killcrew_person", + "hall:killnum", + "hall:killrate", + "hall:killrate_person", + "hall:occupied", + "hall:ttrate", + "hall:warnum", + "hall:winrate" + ] + ], + [ + "【60기】유메하라노조미", + 74, + 90, + 18, + "che_event_돌격", + [ + 5033, + 21015, + 448157, + 18727, + 105575 + ], + 1, + "32383907.gif?=20230810", + 60, + "che_230810_pS8L", + 50, + [ + "hall:dex3", + "hall:tsrate" + ] + ], + [ + "【60기】료우기시키", + 75, + 15, + 91, + "che_event_환술", + [ + 21754, + 10891, + 14412, + 752841, + 109692 + ], + 1, + "72a190e.jpg?=20220109", + 60, + "che_230810_pS8L", + 53, + [ + "hall:dex4", + "hall:experience", + "hall:killcrew", + "hall:killcrew_person", + "hall:killnum", + "hall:warnum" + ] + ], + [ + "【60기】대교", + 92, + 73, + 15, + "che_event_격노", + [ + 1710, + 905, + 389480, + 16492, + 94829 + ], + 1, + "9f0e6dcc.jpg?=20220808", + 60, + "che_230810_pS8L", + 57, + [ + "hall:dex3", + "hall:tlrate" + ] + ], + [ + "【60기】강유", + 77, + 15, + 88, + "che_event_필살", + [ + 14258, + 5552, + 10151, + 514394, + 101891 + ], + 1, + "663df7a3.jpg?=20230713", + 60, + "che_230810_pS8L", + 62, + [ + "hall:dex4" + ] + ], + [ + "【60기】Samo", + 77, + 15, + 89, + "che_event_집중", + [ + 10349, + 14486, + 6162, + 498782, + 91393 + ], + 1, + "0b53e4d0.png?=20230502", + 60, + "che_230810_pS8L", + 67, + [ + "hall:dex4" + ] + ], + [ + "【60기】제갈여포", + 75, + 15, + 90, + "che_event_집중", + [ + 14659, + 6098, + 9127, + 347079, + 63187 + ], + 0, + "default.jpg", + 60, + "che_230810_pS8L", + 71, + [ + "hall:firenum", + "hall:tirate" + ] + ], + [ + "【60기】세헤라데", + 74, + 89, + 18, + "che_event_돌격", + [ + 10018, + 13233, + 214416, + 20543, + 21070 + ], + 1, + "0433b89f.png?=20230810", + 60, + "che_230810_pS8L", + 73, + [ + "hall:dex3", + "hall:ttrate" + ] + ], + [ + "【60기】토요일의 플라이트", + 73, + 15, + 93, + "che_event_필살", + [ + 22146, + 9964, + 10473, + 519998, + 70422 + ], + 1, + "61c3902b.jpg?=20230810", + 60, + "che_230810_pS8L", + 77, + [ + "hall:dex4", + "hall:tirate", + "hall:winrate" + ] + ], + [ + "【60기】살수묵링", + 86, + 80, + 15, + "che_event_돌격", + [ + 12815, + 6126, + 278728, + 27711, + 75545 + ], + 0, + "default.jpg", + 60, + "che_230810_pS8L", + 79, + [ + "hall:dex3", + "hall:tlrate" + ] + ], + [ + "【60기】서희", + 86, + 80, + 15, + "che_event_무쌍", + [ + 10780, + 9558, + 757311, + 44380, + 215491 + ], + 1, + "8debf7e5.png?=20230308", + 60, + "che_230810_pS8L", + 81, + [ + "hall:dex3", + "hall:dex5", + "hall:experience", + "hall:killcrew", + "hall:killcrew_person", + "hall:killnum", + "hall:occupied", + "hall:warnum" + ] + ], + [ + "【60기】SARS", + 77, + 16, + 90, + "che_event_돌격", + [ + 26865, + 18118, + 14959, + 939004, + 99433 + ], + 1, + "b84944.jpg?=20180829", + 60, + "che_230810_pS8L", + 82, + [ + "hall:dex4", + "hall:experience", + "hall:killcrew", + "hall:killcrew_person", + "hall:killnum", + "hall:killrate_person", + "hall:occupied", + "hall:warnum", + "hall:winrate" + ] + ], + [ + "【60기】초딩대우직딩", + 85, + 30, + 67, + "che_event_징병", + [ + 7188, + 10551, + 0, + 37047, + 308835 + ], + 0, + "default.jpg", + 60, + "che_230810_pS8L", + 83, + [ + "hall:dex5", + "hall:ttrate" + ] + ], + [ + "【60기】김정일", + 73, + 90, + 17, + "che_event_저격", + [ + 28836, + 1, + 2125, + 3263, + 6612 + ], + 0, + "default.jpg", + 60, + "che_230810_pS8L", + 87, + [ + "hall:tsrate" + ] + ], + [ + "【60기】민트토끼", + 15, + 77, + 89, + "che_event_저격", + [ + 1779, + 0, + 22514, + 3870, + 206 + ], + 1, + "be24281f.jpg?=20230805", + 60, + "che_230810_pS8L", + 90, + [ + "hall:betrate" + ] + ], + [ + "【60기】네이", + 84, + 15, + 81, + "che_event_집중", + [ + 17387, + 2417, + 5638, + 251219, + 51484 + ], + 0, + "default.jpg", + 60, + "che_230810_pS8L", + 91, + [ + "chief:7", + "hall:betgold", + "hall:betwin", + "hall:betwingold", + "hall:firenum" + ] + ], + [ + "【60기】불패", + 72, + 91, + 16, + "che_event_돌격", + [ + 293709, + 1949, + 10509, + 15430, + 46479 + ], + 1, + "e52adea8.jpg?=20230712", + 60, + "che_230810_pS8L", + 92, + [ + "chief:8", + "hall:dedication" + ] + ], + [ + "【60기】레반독구스키", + 87, + 79, + 15, + "che_event_돌격", + [ + 11687, + 18426, + 391952, + 25009, + 29586 + ], + 1, + "40d0e506.png?=20230312", + 60, + "che_230810_pS8L", + 93, + [ + "chief:6", + "hall:betwin", + "hall:dex3", + "hall:killrate_person", + "hall:tlrate", + "hall:winrate" + ] + ], + [ + "【60기】Hide_O", + 92, + 74, + 15, + "che_event_돌격", + [ + 7925, + 29146, + 411007, + 43706, + 72339 + ], + 1, + "6296e31b.png?=20230810", + 60, + "che_230810_pS8L", + 95, + [ + "hall:betgold", + "hall:betrate", + "hall:betwingold", + "hall:dex2", + "hall:dex3", + "hall:tlrate" + ] + ], + [ + "【60기】리안", + 75, + 15, + 90, + "che_event_저격", + [ + 6804, + 1359, + 2352, + 125998, + 16638 + ], + 0, + "default.jpg", + 60, + "che_230810_pS8L", + 97, + [ + "hall:dedication" + ] + ], + [ + "【60기】진솔", + 74, + 15, + 91, + "che_event_필살", + [ + 16458, + 18261, + 6177, + 215088, + 325609 + ], + 1, + "78b044c8.webp?=20230812", + 60, + "che_230810_pS8L", + 98, + [ + "hall:betgold", + "hall:betrate", + "hall:betwingold", + "hall:dex5", + "hall:experience", + "hall:occupied" + ] + ], + [ + "【60기】레드캡 청설모", + 76, + 89, + 15, + "che_event_필살", + [ + 396719, + 2045, + 3693, + 15095, + 47690 + ], + 0, + "default.jpg", + 60, + "che_230810_pS8L", + 99, + [ + "hall:betwin", + "hall:dex1", + "hall:killrate", + "hall:killrate_person", + "hall:tsrate" + ] + ], + [ + "【60기】Hide_D", + 74, + 15, + 93, + "che_event_신중", + [ + 0, + 3991, + 788, + 160443, + 54724 + ], + 1, + "4569d848.png?=20230612", + 60, + "che_230810_pS8L", + 100, + [ + "hall:dedication", + "hall:tirate" + ] + ], + [ + "【60기】202309211100", + 95, + 72, + 15, + "che_event_돌격", + [ + 16231, + 20406, + 3638, + 11618, + 314531 + ], + 0, + "default.jpg", + 60, + "che_230810_pS8L", + 102, + [ + "hall:dex5", + "hall:tlrate" + ] + ], + [ + "【60기】덕구", + 75, + 90, + 15, + "che_event_척사", + [ + 10241, + 297709, + 1717, + 18122, + 71404 + ], + 1, + "f6b9a68b.jpg?=20230810", + 60, + "che_230810_pS8L", + 103, + [ + "hall:dex2" + ] + ], + [ + "【60기】NK", + 93, + 74, + 15, + "che_event_필살", + [ + 15163, + 24653, + 20131, + 28209, + 742030 + ], + 1, + "d48fe93a.jpg?=20221209", + 60, + "che_230810_pS8L", + 104, + [ + "hall:dex5", + "hall:experience", + "hall:killcrew", + "hall:killcrew_person", + "hall:killnum", + "hall:killrate_person", + "hall:occupied", + "hall:tlrate", + "hall:ttrate", + "hall:warnum" + ] + ], + [ + "【60기】평민킬러", + 74, + 95, + 15, + "che_event_필살", + [ + 29378, + 772594, + 17568, + 20892, + 81755 + ], + 1, + "95fee767.jpg?=20230810", + 60, + "che_230810_pS8L", + 105, + [ + "hall:dex2", + "hall:experience", + "hall:killcrew", + "hall:killcrew_person", + "hall:killnum", + "hall:killrate", + "hall:occupied", + "hall:tsrate", + "hall:warnum", + "hall:winrate" + ] + ], + [ + "【60기】아나", + 77, + 89, + 15, + "che_event_공성", + [ + 33281, + 26650, + 354865, + 18536, + 145893 + ], + 0, + "default.jpg", + 60, + "che_230810_pS8L", + 106, + [ + "hall:betgold", + "hall:dex2", + "hall:dex3", + "hall:dex5" + ] + ], + [ + "【60기】팥드러슈", + 75, + 91, + 15, + "che_event_위압", + [ + 2243, + 16983, + 445738, + 17748, + 69135 + ], + 1, + "70b4b24a.jpg?=20230810", + 60, + "che_230810_pS8L", + 108, + [ + "hall:betrate", + "hall:dex3", + "hall:tsrate" + ] + ], + [ + "【60기】ㅊㄹㅊㄹ", + 76, + 91, + 15, + "che_event_돌격", + [ + 34117, + 686754, + 52385, + 22961, + 91121 + ], + 1, + "63f1c106.png?=20230223", + 60, + "che_230810_pS8L", + 109, + [ + "hall:dex2", + "hall:killcrew", + "hall:killcrew_person", + "hall:killnum", + "hall:killrate", + "hall:killrate_person", + "hall:occupied", + "hall:tsrate", + "hall:warnum", + "hall:winrate" + ] + ], + [ + "【60기】민토트끼", + 76, + 16, + 89, + "che_event_집중", + [ + 23718, + 458, + 9555, + 552668, + 80579 + ], + 1, + "1930ae61.jpg?=20230810", + 60, + "che_230810_pS8L", + 110, + [ + "hall:dex4" + ] + ], + [ + "【60기】청설모주니어", + 75, + 91, + 15, + "che_event_견고", + [ + 490792, + 2659, + 10986, + 23770, + 70915 + ], + 1, + "b4040012.png?=20230810", + 60, + "che_230810_pS8L", + 111, + [ + "hall:dex1", + "hall:tsrate" + ] + ], + [ + "【60기】블랙쿠션", + 74, + 90, + 16, + "che_event_필살", + [ + 4749, + 6265, + 607379, + 28228, + 83479 + ], + 1, + "61227d47.jpg?=20230810", + 60, + "che_230810_pS8L", + 112, + [ + "hall:dex3", + "hall:killrate_person", + "hall:winrate" + ] + ], + [ + "【60기】지원", + 95, + 70, + 15, + "che_event_필살", + [ + 41915, + 1314, + 2236, + 5709, + 403239 + ], + 1, + "13c59544.webp?=20230712", + 60, + "che_230810_pS8L", + 113, + [ + "chief:10", + "hall:betwin", + "hall:dex5", + "hall:killrate", + "hall:tlrate" + ] + ], + [ + "【60기】LK_99", + 73, + 15, + 93, + "che_event_신산", + [ + 3447, + 9093, + 12663, + 25681, + 98033 + ], + 0, + "default.jpg", + 60, + "che_230810_pS8L", + 114, + [ + "hall:tirate" + ] + ], + [ + "【60기】아내손미역국", + 75, + 90, + 15, + "che_event_격노", + [ + 337521, + 6978, + 44112, + 23861, + 68723 + ], + 0, + "default.jpg", + 60, + "che_230810_pS8L", + 115, + [ + "hall:betgold", + "hall:betrate", + "hall:betwin", + "hall:betwingold", + "hall:dex1", + "hall:tsrate" + ] + ], + [ + "【60기】랜덤의신도와줘요", + 73, + 95, + 15, + "che_event_필살", + [ + 426714, + 1846, + 2631, + 6589, + 41903 + ], + 1, + "7a9073de.gif?=20230816", + 60, + "che_230810_pS8L", + 117, + [ + "chief:12", + "hall:betwin", + "hall:dedication", + "hall:dex1", + "hall:experience", + "hall:killrate", + "hall:tsrate", + "hall:winrate" + ] + ], + [ + "【60기】독피자 다줘스", + 76, + 15, + 89, + "che_event_필살", + [ + 14845, + 3971, + 3113, + 327995, + 72706 + ], + 0, + "default.jpg", + 60, + "che_230810_pS8L", + 118, + [ + "chief:5" + ] + ], + [ + "【60기】사스케", + 94, + 72, + 16, + "che_event_돌격", + [ + 15661, + 1178, + 12992, + 37691, + 438790 + ], + 1, + "812be77d.jpg?=20230709", + 60, + "che_230810_pS8L", + 119, + [ + "chief:11", + "hall:betgold", + "hall:betwin", + "hall:betwingold", + "hall:dex5", + "hall:tlrate" + ] + ], + [ + "【60기】간지밍이", + 76, + 15, + 92, + "che_event_필살", + [ + 9703, + 1947, + 11361, + 732817, + 79415 + ], + 1, + "19c0150f.png?=20230615", + 60, + "che_230810_pS8L", + 120, + [ + "hall:betgold", + "hall:betrate", + "hall:betwin", + "hall:betwingold", + "hall:dex4", + "hall:experience", + "hall:killcrew", + "hall:killcrew_person", + "hall:killnum", + "hall:killrate", + "hall:killrate_person", + "hall:occupied", + "hall:warnum", + "hall:winrate" + ] + ], + [ + "【60기】외심장", + 76, + 16, + 89, + "che_event_저격", + [ + 11740, + 7256, + 14021, + 345937, + 65657 + ], + 1, + "36110cd.jpg?=20180826", + 60, + "che_230810_pS8L", + 122, + [ + "hall:ttrate" + ] + ], + [ + "【60기】중절모", + 78, + 15, + 89, + "che_event_신산", + [ + 16892, + 6232, + 5611, + 348587, + 70659 + ], + 1, + "7f2981a3.png?=20230810", + 60, + "che_230810_pS8L", + 123, + [ + "hall:betrate", + "hall:betwingold" + ] + ], + [ + "【60기】피와 눈물로", + 78, + 88, + 16, + "che_event_척사", + [ + 23261, + 340656, + 2373, + 16098, + 67473 + ], + 0, + "default.jpg", + 60, + "che_230810_pS8L", + 132, + [ + "hall:dex2", + "hall:ttrate" + ] + ], + [ + "【60기】유카", + 15, + 77, + 88, + "che_event_의술", + [ + 0, + 0, + 0, + 0, + 0 + ], + 0, + "default.jpg", + 60, + "che_230810_pS8L", + 133, + [ + "hall:tirate", + "hall:ttrate" + ] + ], + [ + "【60기】북오더", + 86, + 80, + 15, + "che_event_척사", + [ + 19777, + 25052, + 186817, + 16073, + 26712 + ], + 1, + "f39217aa.gif?=20220916", + 60, + "che_230810_pS8L", + 136, + [ + "hall:dedication", + "hall:dex2" + ] + ], + [ + "【60기】상온초전도치", + 74, + 16, + 91, + "che_event_척사", + [ + 3548, + 1524, + 1585, + 83958, + 128078 + ], + 1, + "6cf16829.jpg?=20230812", + 60, + "che_230810_pS8L", + 223, + [ + "chief:9", + "hall:dedication" + ] + ], + [ + "【60기】.", + 75, + 15, + 89, + "che_event_필살", + [ + 1370, + 10030, + 390, + 227134, + 53077 + ], + 0, + "default.jpg", + 60, + "che_230810_pS8L", + 234, + [ + "hall:tirate" + ] + ], + [ + "【60기】퍄퍄", + 75, + 15, + 91, + "che_event_신중", + [ + 4184, + 6123, + 8720, + 429216, + 90839 + ], + 0, + "default.jpg", + 60, + "che_230810_pS8L", + 237, + [ + "hall:ttrate" + ] + ], + [ + "【60기】히후미", + 88, + 77, + 15, + "che_event_돌격", + [ + 12895, + 494996, + 5648, + 24360, + 81730 + ], + 1, + "6eea6a0a.webp?=20230811", + 60, + "che_230810_pS8L", + 240, + [ + "hall:dex2", + "hall:winrate" + ] + ], + [ + "【60기】くま", + 74, + 15, + 90, + "che_event_저격", + [ + 10587, + 880, + 3656, + 134060, + 27872 + ], + 1, + "770f53.jpg?=20190718", + 60, + "che_230810_pS8L", + 242, + [ + "hall:dedication", + "hall:firenum" + ] + ], + [ + "【60기】냥뇽녕냥", + 74, + 16, + 89, + "che_event_필살", + [ + 2902, + 4153, + 1885, + 239273, + 40376 + ], + 1, + "6932e497.jpg?=20230714", + 60, + "che_230810_pS8L", + 251, + [ + "hall:dedication" + ] + ], + [ + "【60기】이재용", + 15, + 76, + 87, + "che_event_징병", + [ + 0, + 0, + 0, + 0, + 0 + ], + 1, + "b1be35a3.jpg?=20230811", + 60, + "che_230810_pS8L", + 253, + [ + "hall:dedication" + ] + ], + [ + "【60기】Navy마초", + 92, + 71, + 15, + "che_event_위압", + [ + 4976, + 136531, + 1882, + 9917, + 30015 + ], + 0, + "default.jpg", + 60, + "che_230810_pS8L", + 270, + [ + "hall:betgold", + "hall:betrate", + "hall:betwingold", + "hall:dex2", + "hall:tlrate" + ] + ], + [ + "【61기】앵벌스", + 73, + 15, + 92, + "che_event_반계", + [ + 9926, + 11729, + 22298, + 224360, + 25316 + ], + 1, + "0e4b2a86.png?=20230907", + 61, + "che_230831_qUn8", + 14, + [ + "chief:12", + "hall:betrate", + "hall:betwingold", + "hall:dedication", + "hall:experience", + "hall:tirate" + ] + ], + [ + "【61기】천지개불", + 76, + 15, + 89, + "che_event_필살", + [ + 3806, + 0, + 5940, + 164152, + 23879 + ], + 1, + "b09d6aef.jpg?=20230831", + 61, + "che_230831_qUn8", + 15, + [ + "hall:betrate", + "hall:tirate" + ] + ], + [ + "【61기】마요이", + 94, + 71, + 15, + "che_event_필살", + [ + 334020, + 3211, + 16584, + 42709, + 32473 + ], + 1, + "5d6919bb.webp?=20230831", + 61, + "che_230831_qUn8", + 23, + [ + "chief:10", + "hall:betgold", + "hall:betrate", + "hall:betwingold", + "hall:dedication", + "hall:dex1", + "hall:experience", + "hall:killrate", + "hall:killrate_person", + "hall:tlrate" + ] + ], + [ + "【61기】감흥", + 15, + 73, + 90, + "che_event_척사", + [ + 0, + 5554, + 0, + 9147, + 859 + ], + 1, + "a73ecaa1.jpg?=20230313", + 61, + "che_230831_qUn8", + 26, + [ + "hall:dedication", + "hall:tirate" + ] + ], + [ + "【61기】호그와트냉장고", + 76, + 15, + 87, + "che_event_집중", + [ + 28488, + 3651, + 2984, + 321529, + 31624 + ], + 1, + "6abbcc81.jpg?=20230831", + 61, + "che_230831_qUn8", + 28, + [ + "hall:experience" + ] + ], + [ + "【61기】강유", + 75, + 15, + 89, + "che_event_집중", + [ + 6906, + 9960, + 5537, + 229640, + 21007 + ], + 1, + "663df7a3.jpg?=20230713", + 61, + "che_230831_qUn8", + 30, + [ + "hall:ttrate" + ] + ], + [ + "【61기】척", + 75, + 87, + 16, + "che_event_저격", + [ + 19139, + 9441, + 82748, + 27830, + 6570 + ], + 1, + "7cb75480.png?=20221202", + 61, + "che_230831_qUn8", + 35, + [ + "hall:dex3" + ] + ], + [ + "【61기】바나낫", + 73, + 15, + 92, + "che_event_필살", + [ + 15029, + 21577, + 12912, + 393690, + 18426 + ], + 1, + "39e76b74.gif?=20230830", + 61, + "che_230831_qUn8", + 38, + [ + "hall:betrate", + "hall:dex4", + "hall:killcrew" + ] + ], + [ + "【61기】나데코", + 75, + 88, + 16, + "che_event_필살", + [ + 20853, + 27443, + 399608, + 61842, + 34221 + ], + 1, + "7e5de341.gif?=20230831", + 61, + "che_230831_qUn8", + 42, + [ + "hall:dex3", + "hall:dex5", + "hall:killcrew", + "hall:killcrew_person", + "hall:killnum", + "hall:killrate_person", + "hall:tsrate", + "hall:warnum", + "hall:winrate" + ] + ], + [ + "【61기】평민킬러", + 76, + 89, + 15, + "che_event_돌격", + [ + 268270, + 4077, + 23124, + 45305, + 31439 + ], + 1, + "95fee767.jpg?=20230810", + 61, + "che_230831_qUn8", + 49, + [ + "chief:6", + "hall:betrate", + "hall:betwin", + "hall:dedication", + "hall:dex1", + "hall:killrate" + ] + ], + [ + "【61기】냐옹", + 75, + 89, + 15, + "che_event_돌격", + [ + 6796, + 163113, + 14551, + 38237, + 10990 + ], + 1, + "23ba519.jpg?=20190318", + 61, + "che_230831_qUn8", + 50, + [ + "hall:dex2", + "hall:winrate" + ] + ], + [ + "【61기】근설모", + 74, + 91, + 15, + "che_event_무쌍", + [ + 249591, + 15560, + 7210, + 33307, + 16630 + ], + 1, + "19aa078e.png?=20230713", + 61, + "che_230831_qUn8", + 51, + [ + "hall:betgold", + "hall:betwingold", + "hall:dex1", + "hall:killrate_person", + "hall:winrate" + ] + ], + [ + "【61기】김채원", + 84, + 16, + 80, + "che_event_집중", + [ + 11124, + 17174, + 2681, + 215168, + 14388 + ], + 1, + "139e1bed.jpg?=20230831", + 61, + "che_230831_qUn8", + 53, + [ + "hall:tlrate" + ] + ], + [ + "【61기】카이스트", + 77, + 15, + 88, + "che_event_척사", + [ + 22377, + 15588, + 11024, + 391799, + 24460 + ], + 1, + "e7e27cd6.jpg?=20221125", + 61, + "che_230831_qUn8", + 55, + [ + "hall:dex4", + "hall:killcrew_person", + "hall:warnum" + ] + ], + [ + "【61기】호두", + 73, + 91, + 15, + "che_event_필살", + [ + 1732, + 11978, + 190270, + 30594, + 21722 + ], + 1, + "f6082814.png?=20230903", + 61, + "che_230831_qUn8", + 56, + [ + "hall:dex3", + "hall:killrate", + "hall:tsrate" + ] + ], + [ + "【61기】데스티니차일드", + 73, + 15, + 92, + "che_event_집중", + [ + 30988, + 8130, + 10562, + 411807, + 29933 + ], + 0, + "default.jpg", + 61, + "che_230831_qUn8", + 61, + [ + "hall:dex4", + "hall:killcrew", + "hall:killrate", + "hall:killrate_person", + "hall:tirate" + ] + ], + [ + "【61기】라콘타", + 77, + 87, + 15, + "che_event_무쌍", + [ + 203798, + 109850, + 52722, + 59660, + 12044 + ], + 1, + "581b1a38.webp?=20230831", + 61, + "che_230831_qUn8", + 70, + [ + "hall:dex1", + "hall:tsrate" + ] + ], + [ + "【61기】메메", + 91, + 71, + 16, + "che_event_필살", + [ + 14989, + 229768, + 12555, + 40004, + 26774 + ], + 1, + "245c352f.jpg?=20230831", + 61, + "che_230831_qUn8", + 73, + [ + "hall:dex2", + "hall:occupied", + "hall:tlrate", + "hall:winrate" + ] + ], + [ + "【61기】네이미", + 84, + 78, + 15, + "che_event_징병", + [ + 12584, + 28826, + 130576, + 50415, + 26783 + ], + 0, + "default.jpg", + 61, + "che_230831_qUn8", + 77, + [ + "hall:dex3", + "hall:tlrate" + ] + ], + [ + "【61기】페브리", + 73, + 89, + 15, + "che_event_저격", + [ + 23867, + 283757, + 5392, + 63580, + 13228 + ], + 1, + "dc0c120c.jpg?=20230830", + 61, + "che_230831_qUn8", + 79, + [ + "hall:dex2" + ] + ], + [ + "【61기】내정.D.ream", + 15, + 70, + 95, + "che_event_반계", + [ + 0, + 0, + 0, + 0, + 0 + ], + 0, + "default.jpg", + 61, + "che_230831_qUn8", + 85, + [ + "hall:betrate", + "hall:dedication", + "hall:ttrate" + ] + ], + [ + "【61기】미친과학", + 93, + 70, + 15, + "che_event_공성", + [ + 31103, + 8805, + 0, + 4226, + 314375 + ], + 1, + "bb6e0198.png?=20230913", + 61, + "che_230831_qUn8", + 86, + [ + "hall:dex5", + "hall:experience", + "hall:killrate", + "hall:occupied", + "hall:tlrate", + "hall:winrate" + ] + ], + [ + "【61기】딸배왕앵벌스", + 77, + 15, + 87, + "che_event_반계", + [ + 12267, + 3483, + 9071, + 254818, + 24510 + ], + 1, + "0db8b663.jpg?=20230831", + 61, + "che_230831_qUn8", + 87, + [ + "hall:killnum", + "hall:winrate" + ] + ], + [ + "【61기】SARS", + 76, + 88, + 15, + "che_event_견고", + [ + 193631, + 16350, + 60751, + 33608, + 9016 + ], + 1, + "b84944.jpg?=20180829", + 61, + "che_230831_qUn8", + 88, + [ + "hall:dex1", + "hall:tsrate" + ] + ], + [ + "【61기】북오더", + 74, + 15, + 88, + "che_event_신산", + [ + 6231, + 12107, + 13205, + 206568, + 15188 + ], + 1, + "f39217aa.gif?=20220916", + 61, + "che_230831_qUn8", + 92, + [ + "hall:killrate_person" + ] + ], + [ + "【61기】돌아온너구리", + 77, + 15, + 88, + "che_event_반계", + [ + 13815, + 16969, + 8606, + 205260, + 14845 + ], + 0, + "default.jpg", + 61, + "che_230831_qUn8", + 94, + [ + "hall:ttrate" + ] + ], + [ + "【61기】키리코", + 74, + 89, + 15, + "che_event_필살", + [ + 246161, + 8089, + 10180, + 48173, + 24999 + ], + 1, + "8f4e6d3e.jpg?=20230622", + 61, + "che_230831_qUn8", + 95, + [ + "hall:dex1" + ] + ], + [ + "【61기】대교", + 89, + 71, + 16, + "che_event_필살", + [ + 19520, + 6068, + 99644, + 15463, + 24994 + ], + 1, + "9f0e6dcc.jpg?=20220808", + 61, + "che_230831_qUn8", + 98, + [ + "hall:dex3", + "hall:tlrate" + ] + ], + [ + "【61기】정찬성", + 75, + 87, + 16, + "che_event_필살", + [ + 4164, + 4674, + 163723, + 73750, + 23483 + ], + 1, + "e0bda04b.jpg?=20230831", + 61, + "che_230831_qUn8", + 99, + [ + "hall:betrate", + "hall:betwin", + "hall:dex3", + "hall:tsrate" + ] + ], + [ + "【61기】지력5", + 74, + 15, + 91, + "che_event_신중", + [ + 25127, + 21225, + 7310, + 329055, + 7795 + ], + 0, + "default.jpg", + 61, + "che_230831_qUn8", + 100, + [ + "hall:firenum", + "hall:killcrew_person", + "hall:tirate", + "hall:ttrate", + "hall:warnum" + ] + ], + [ + "【61기】앵두한", + 74, + 15, + 89, + "che_event_징병", + [ + 43437, + 14034, + 5166, + 363774, + 23585 + ], + 1, + "76c8a8f6.png?=20230831", + 61, + "che_230831_qUn8", + 101, + [ + "hall:betgold", + "hall:betwingold", + "hall:dex4", + "hall:killnum", + "hall:occupied", + "hall:warnum" + ] + ], + [ + "【61기】설치류 사냥꾼 독구", + 76, + 89, + 15, + "che_event_무쌍", + [ + 19133, + 15071, + 239820, + 15975, + 24475 + ], + 1, + "40d0e506.png?=20230312", + 61, + "che_230831_qUn8", + 102, + [ + "hall:betgold", + "hall:betwin", + "hall:dex3", + "hall:occupied" + ] + ], + [ + "【61기】앵목사", + 73, + 15, + 91, + "che_event_징병", + [ + 39226, + 2357, + 9107, + 344071, + 37461 + ], + 1, + "1a9cf100.gif?=20230903", + 61, + "che_230831_qUn8", + 103, + [ + "hall:betgold", + "hall:betwin", + "hall:betwingold", + "hall:dex4", + "hall:dex5" + ] + ], + [ + "【61기】미친수학", + 75, + 15, + 91, + "che_event_필살", + [ + 40304, + 8291, + 13063, + 367991, + 19773 + ], + 1, + "99cad231.jpg?=20230906", + 61, + "che_230831_qUn8", + 104, + [ + "hall:dex4", + "hall:killcrew", + "hall:killcrew_person", + "hall:killnum", + "hall:tirate", + "hall:warnum" + ] + ], + [ + "【61기】하늘다람쥐", + 73, + 15, + 92, + "che_event_필살", + [ + 47651, + 24256, + 31431, + 389919, + 29392 + ], + 1, + "b9915640.jpg?=20230831", + 61, + "che_230831_qUn8", + 106, + [ + "hall:dex4", + "hall:killcrew", + "hall:killcrew_person", + "hall:killnum", + "hall:killrate_person", + "hall:warnum" + ] + ], + [ + "【61기】ㅊㄹㅊㄹ", + 74, + 89, + 15, + "che_event_필살", + [ + 7488, + 4536, + 106318, + 20688, + 7854 + ], + 1, + "63f1c106.png?=20230223", + 61, + "che_230831_qUn8", + 107, + [ + "hall:dex3" + ] + ], + [ + "【61기】초선", + 73, + 15, + 90, + "che_event_집중", + [ + 454, + 2299, + 14036, + 81341, + 15823 + ], + 1, + "b24730b1.jpg?=20230112", + 61, + "che_230831_qUn8", + 108, + [ + "hall:tirate" + ] + ], + [ + "【61기】앵만희", + 76, + 15, + 89, + "che_event_척사", + [ + 26284, + 2662, + 29029, + 338074, + 29329 + ], + 1, + "eb7d483b.jpg?=20230829", + 61, + "che_230831_qUn8", + 109, + [ + "hall:dex4" + ] + ], + [ + "【61기】정소민", + 73, + 15, + 93, + "che_event_집중", + [ + 4773, + 5571, + 6392, + 229947, + 15897 + ], + 1, + "79df2262.jpg?=20230831", + 61, + "che_230831_qUn8", + 110, + [ + "hall:experience", + "hall:occupied" + ] + ], + [ + "【61기】간지밍이", + 74, + 15, + 89, + "che_event_집중", + [ + 19131, + 2711, + 12843, + 270561, + 36949 + ], + 1, + "19c0150f.png?=20230615", + 61, + "che_230831_qUn8", + 111, + [ + "hall:betgold", + "hall:betwin", + "hall:betwingold", + "hall:dex5" + ] + ], + [ + "【61기】매일영혼을바나낫", + 76, + 88, + 15, + "che_event_돌격", + [ + 12224, + 203316, + 4082, + 46548, + 22665 + ], + 1, + "910675b6.png?=20230831", + 61, + "che_230831_qUn8", + 113, + [ + "hall:dex2" + ] + ], + [ + "【61기】성기사 이즈 킹", + 88, + 75, + 18, + "che_event_필살", + [ + 113115, + 584282, + 3183, + 35004, + 26469 + ], + 1, + "f3cedd04.jpg?=20230831", + 61, + "che_230831_qUn8", + 114, + [ + "chief:8", + "hall:betgold", + "hall:betwin", + "hall:betwingold", + "hall:dex2", + "hall:experience", + "hall:killcrew", + "hall:killcrew_person", + "hall:killnum", + "hall:killrate", + "hall:killrate_person", + "hall:occupied", + "hall:warnum", + "hall:winrate" + ] + ], + [ + "【61기】앵틀러", + 74, + 90, + 15, + "che_event_필살", + [ + 289062, + 5913, + 19426, + 48718, + 29049 + ], + 1, + "ec01b1bf.jpg?=20230831", + 61, + "che_230831_qUn8", + 115, + [ + "hall:dex1" + ] + ], + [ + "【61기】사스케", + 72, + 15, + 92, + "che_event_반계", + [ + 7661, + 1970, + 1045, + 191347, + 23680 + ], + 1, + "812be77d.jpg?=20230709", + 61, + "che_230831_qUn8", + 116, + [ + "chief:5", + "hall:betgold", + "hall:betwin", + "hall:betwingold", + "hall:dedication", + "hall:experience", + "hall:killrate", + "hall:killrate_person", + "hall:winrate" + ] + ], + [ + "【61기】1000", + 72, + 91, + 15, + "che_event_필살", + [ + 134417, + 6286, + 63947, + 25469, + 6018 + ], + 0, + "default.jpg", + 61, + "che_230831_qUn8", + 117, + [ + "hall:tsrate", + "hall:ttrate" + ] + ], + [ + "【61기】Hide_D", + 74, + 15, + 91, + "che_event_신산", + [ + 19784, + 8288, + 12076, + 300440, + 33017 + ], + 1, + "4569d848.png?=20230612", + 61, + "che_230831_qUn8", + 118, + [ + "hall:occupied", + "hall:tirate" + ] + ], + [ + "【61기】병종뭐할까요?", + 90, + 75, + 15, + "che_event_격노", + [ + 366988, + 45574, + 30772, + 68276, + 75744 + ], + 0, + "default.jpg", + 61, + "che_230831_qUn8", + 119, + [ + "hall:betwin", + "hall:dex1", + "hall:dex5", + "hall:killcrew", + "hall:killcrew_person", + "hall:killnum", + "hall:tlrate", + "hall:warnum" + ] + ], + [ + "【61기】ㅂ1상식량", + 88, + 78, + 15, + "che_event_격노", + [ + 66583, + 555878, + 61672, + 66721, + 32963 + ], + 1, + "3031b888.gif?=20221229", + 61, + "che_230831_qUn8", + 120, + [ + "hall:dex2", + "hall:experience", + "hall:killcrew", + "hall:killcrew_person", + "hall:killnum", + "hall:killrate", + "hall:killrate_person", + "hall:tlrate", + "hall:warnum", + "hall:winrate" + ] + ], + [ + "【61기】민트토끼", + 15, + 72, + 93, + "che_event_신산", + [ + 0, + 0, + 0, + 0, + 0 + ], + 1, + "2b5418ac.jpg?=20230831", + 61, + "che_230831_qUn8", + 121, + [ + "hall:tirate" + ] + ], + [ + "【61기】독구", + 73, + 15, + 91, + "che_event_환술", + [ + 5266, + 8786, + 9940, + 205901, + 38099 + ], + 1, + "7a9073de.gif?=20230816", + 61, + "che_230831_qUn8", + 122, + [ + "chief:11", + "hall:betrate", + "hall:betwin", + "hall:dex5", + "hall:occupied", + "hall:ttrate" + ] + ], + [ + "【61기】크렌스", + 75, + 88, + 15, + "che_event_척사", + [ + 249161, + 6859, + 73, + 35327, + 44113 + ], + 1, + "a2fef500.png?=20230831", + 61, + "che_230831_qUn8", + 123, + [ + "hall:betgold", + "hall:betwin", + "hall:betwingold", + "hall:dex1", + "hall:dex5", + "hall:experience", + "hall:killrate", + "hall:killrate_person", + "hall:ttrate" + ] + ], + [ + "【61기】엔틱", + 73, + 15, + 89, + "che_event_필살", + [ + 12997, + 405, + 14364, + 213509, + 34186 + ], + 1, + "a6f82a19.gif?=20230715", + 61, + "che_230831_qUn8", + 124, + [ + "chief:7", + "hall:experience", + "hall:occupied" + ] + ], + [ + "【61기】선덕", + 74, + 15, + 88, + "che_event_신중", + [ + 5659, + 5219, + 14218, + 210577, + 22971 + ], + 0, + "default.jpg", + 61, + "che_230831_qUn8", + 125, + [ + "hall:occupied" + ] + ], + [ + "【61기】료우기시키", + 75, + 15, + 90, + "che_event_신중", + [ + 2341, + 6164, + 1400, + 135952, + 20704 + ], + 1, + "72a190e.jpg?=20220109", + 61, + "che_230831_qUn8", + 126, + [ + "hall:ttrate" + ] + ], + [ + "【61기】불패", + 74, + 15, + 89, + "che_event_필살", + [ + 2824, + 4090, + 17995, + 209892, + 36955 + ], + 1, + "e52adea8.jpg?=20230712", + 61, + "che_230831_qUn8", + 127, + [ + "chief:9", + "hall:dex5" + ] + ], + [ + "【61기】덕구", + 73, + 91, + 15, + "che_event_보병", + [ + 43712, + 1952, + 0, + 1980, + 6308 + ], + 1, + "f6b9a68b.jpg?=20230810", + 61, + "che_230831_qUn8", + 129, + [ + "hall:firenum" + ] + ], + [ + "【61기】Jr. Aeng", + 74, + 15, + 88, + "che_event_신중", + [ + 31598, + 21666, + 29523, + 331037, + 10892 + ], + 0, + "default.jpg", + 61, + "che_230831_qUn8", + 132, + [ + "hall:dex4" + ] + ], + [ + "【61기】장원영", + 73, + 15, + 90, + "che_event_징병", + [ + 11202, + 11980, + 20152, + 129510, + 14864 + ], + 1, + "747944df.jpg?=20230731", + 61, + "che_230831_qUn8", + 133, + [ + "hall:dedication" + ] + ], + [ + "【61기】시뉴카린", + 73, + 15, + 89, + "che_event_집중", + [ + 720, + 0, + 19902, + 177406, + 35329 + ], + 1, + "8eae7038.png?=20230902", + 61, + "che_230831_qUn8", + 137, + [ + "hall:dex5" + ] + ], + [ + "【61기】삼겹살", + 73, + 15, + 92, + "che_event_필살", + [ + 12375, + 22786, + 13413, + 370406, + 22748 + ], + 1, + "6cf61a1a.gif?=20230831", + 61, + "che_230831_qUn8", + 142, + [ + "hall:dex4", + "hall:killcrew", + "hall:killcrew_person", + "hall:killnum", + "hall:winrate" + ] + ], + [ + "【61기】페이트", + 15, + 72, + 90, + "che_event_의술", + [ + 300, + 0, + 0, + 10551, + 0 + ], + 1, + "6045256.png?=20220317", + 61, + "che_230831_qUn8", + 147, + [ + "hall:dedication" + ] + ], + [ + "【61기】Navy마초", + 90, + 74, + 16, + "che_event_무쌍", + [ + 54012, + 379023, + 59228, + 73118, + 13349 + ], + 1, + "37644ed3.png?=20230831", + 61, + "che_230831_qUn8", + 148, + [ + "hall:betgold", + "hall:betrate", + "hall:betwingold", + "hall:dex2", + "hall:killcrew", + "hall:killcrew_person", + "hall:killnum", + "hall:tlrate", + "hall:warnum" + ] + ], + [ + "【61기】경국지색소교", + 78, + 15, + 86, + "che_event_귀병", + [ + 941, + 13037, + 9133, + 122741, + 17701 + ], + 1, + "ad2669b5.jpg?=20230605", + 61, + "che_230831_qUn8", + 151, + [ + "hall:ttrate" + ] + ], + [ + "【61기】지원", + 72, + 92, + 15, + "che_event_척사", + [ + 78350, + 39543, + 138677, + 32667, + 18056 + ], + 1, + "13c59544.webp?=20230712", + 61, + "che_230831_qUn8", + 193, + [ + "hall:dex3", + "hall:tsrate" + ] + ], + [ + "【61기】앵사노바", + 92, + 72, + 15, + "che_event_돌격", + [ + 59453, + 166546, + 26317, + 44709, + 52591 + ], + 1, + "6eb0046a.jpg?=20230906", + 61, + "che_230831_qUn8", + 199, + [ + "hall:dex2", + "hall:dex5", + "hall:tlrate" + ] + ], + [ + "【61기】응애", + 73, + 15, + 91, + "che_event_귀병", + [ + 15442, + 2349, + 10961, + 270323, + 24853 + ], + 1, + "fda33b70.jpg?=20230223", + 61, + "che_230831_qUn8", + 200, + [ + "hall:tirate" + ] + ], + [ + "【61기】초아인지", + 72, + 86, + 20, + "che_event_필살", + [ + 334, + 6267, + 218980, + 49618, + 18858 + ], + 1, + "c314b02e.jpg?=20230830", + 61, + "che_230831_qUn8", + 206, + [ + "hall:dex3" + ] + ], + [ + "【61기】피나콜라다", + 72, + 91, + 15, + "che_event_궁병", + [ + 23532, + 196345, + 3799, + 36818, + 17643 + ], + 1, + "b634e866.png?=20230901", + 61, + "che_230831_qUn8", + 211, + [ + "hall:betrate", + "hall:dex2", + "hall:killrate", + "hall:tsrate" + ] + ], + [ + "【61기】숨진사람", + 76, + 15, + 87, + "che_event_척사", + [ + 9201, + 6632, + 1770, + 133385, + 14158 + ], + 1, + "9a13729.webp?=20211104", + 61, + "che_230831_qUn8", + 212, + [ + "hall:ttrate" + ] + ], + [ + "【61기】앵여시", + 75, + 15, + 87, + "che_event_집중", + [ + 5440, + 6903, + 6543, + 202877, + 25116 + ], + 1, + "4a1c8c23.jpg?=20230831", + 61, + "che_230831_qUn8", + 233, + [ + "hall:firenum" + ] + ], + [ + "【61기】Meddugi", + 75, + 88, + 15, + "che_event_격노", + [ + 92473, + 1719, + 19157, + 25195, + 7780 + ], + 0, + "default.jpg", + 61, + "che_230831_qUn8", + 237, + [ + "hall:tsrate" + ] + ], + [ + "【61기】칠리크랩", + 15, + 73, + 89, + "che_event_척사", + [ + 0, + 0, + 0, + 0, + 0 + ], + 0, + "default.jpg", + 61, + "che_230831_qUn8", + 245, + [ + "hall:dedication" + ] + ], + [ + "【61기】블러드", + 73, + 87, + 16, + "che_event_궁병", + [ + 10520, + 168107, + 4507, + 7474, + 21620 + ], + 0, + "default.jpg", + 61, + "che_230831_qUn8", + 258, + [ + "hall:dex2", + "hall:tsrate" + ] + ], + [ + "【61기】Bianchi", + 74, + 86, + 15, + "che_event_격노", + [ + 193381, + 5130, + 14141, + 32113, + 16971 + ], + 0, + "default.jpg", + 61, + "che_230831_qUn8", + 333, + [ + "hall:dex1" + ] + ], + [ + "【61기】안유진", + 15, + 90, + 72, + "che_event_견고", + [ + 0, + 0, + 0, + 0, + 0 + ], + 1, + "eae194e7.jpg?=20230904", + 61, + "che_230831_qUn8", + 360, + [ + "hall:dedication" + ] + ], + [ + "【62기】SARS", + 78, + 89, + 15, + "che_event_필살", + [ + 16216, + 10111, + 326084, + 54813, + 72981 + ], + 1, + "b84944.jpg?=20180829", + 62, + "che_230921_gV5c", + 3, + [ + "hall:dex3", + "hall:dex5" + ] + ], + [ + "【62기】카이스트", + 83, + 15, + 89, + "che_event_집중", + [ + 56690, + 12136, + 50088, + 829249, + 38148 + ], + 1, + "e7e27cd6.jpg?=20221125", + 62, + "che_230921_gV5c", + 4, + [ + "hall:dex4" + ] + ], + [ + "【62기】Samo", + 79, + 15, + 91, + "che_event_저격", + [ + 22941, + 24806, + 13717, + 473590, + 13461 + ], + 1, + "0b53e4d0.png?=20230502", + 62, + "che_230921_gV5c", + 8, + [ + "hall:betgold", + "hall:betwin", + "hall:betwingold" + ] + ], + [ + "【62기】임사영", + 80, + 15, + 93, + "che_event_집중", + [ + 40530, + 20450, + 29706, + 723548, + 52186 + ], + 1, + "a526f6c9.jpg?=20230901", + 62, + "che_230921_gV5c", + 11, + [ + "hall:occupied" + ] + ], + [ + "【62기】POCARI.", + 77, + 95, + 15, + "che_event_필살", + [ + 529104, + 27491, + 18413, + 69924, + 48671 + ], + 1, + "b4f94da0.jpg?=20230927", + 62, + "che_230921_gV5c", + 15, + [ + "chief:12", + "hall:betgold", + "hall:dex1", + "hall:firenum", + "hall:killrate", + "hall:killrate_person", + "hall:tsrate", + "hall:winrate" + ] + ], + [ + "【62기】청설모", + 80, + 15, + 92, + "che_event_집중", + [ + 12607, + 14042, + 56972, + 536828, + 21942 + ], + 1, + "54b6efea.jpg?=20230921", + 62, + "che_230921_gV5c", + 18, + [ + "hall:tirate", + "hall:ttrate" + ] + ], + [ + "【62기】크렌스", + 76, + 97, + 15, + "che_event_돌격", + [ + 1027082, + 54291, + 59247, + 154089, + 72858 + ], + 1, + "15c33d02.jpg?=20231003", + 62, + "che_230921_gV5c", + 20, + [ + "hall:betgold", + "hall:betrate", + "hall:betwin", + "hall:betwingold", + "hall:dex1", + "hall:dex5", + "hall:experience", + "hall:killnum", + "hall:killrate", + "hall:killrate_person", + "hall:occupied", + "hall:tsrate", + "hall:winrate" + ] + ], + [ + "【62기】笠原桃奈", + 13, + 13, + 87, + "che_event_집중", + [ + 0, + 0, + 0, + 0, + 0 + ], + 1, + "7ad2ec21.jpg?=20230921", + 62, + "che_230921_gV5c", + 22, + [ + "hall:dedication", + "hall:tirate" + ] + ], + [ + "【62기】신도4", + 85, + 61, + 13, + "che_event_공성", + [ + 27970, + 7523, + 7936, + 49663, + 1581533 + ], + 1, + "fa2d5d65.png?=20230922", + 62, + "che_230921_gV5c", + 23, + [ + "chief:11", + "hall:betrate", + "hall:dex5", + "hall:experience", + "hall:killcrew", + "hall:killrate", + "hall:occupied", + "hall:tlrate", + "hall:winrate" + ] + ], + [ + "【62기】푸바오", + 93, + 76, + 15, + "che_event_저격", + [ + 30236, + 15395, + 264179, + 79680, + 35140 + ], + 1, + "c2230aea.jpg?=20231007", + 62, + "che_230921_gV5c", + 24, + [ + "chief:8", + "hall:dex3", + "hall:tlrate", + "hall:ttrate" + ] + ], + [ + "【62기】Navy마초", + 98, + 72, + 15, + "che_event_위압", + [ + 61464, + 401717, + 9598, + 76902, + 44994 + ], + 1, + "37644ed3.png?=20230831", + 62, + "che_230921_gV5c", + 30, + [ + "hall:dex2", + "hall:firenum", + "hall:tlrate" + ] + ], + [ + "【62기】염소희", + 77, + 92, + 15, + "che_event_징병", + [ + 27941, + 269804, + 25236, + 50805, + 31728 + ], + 1, + "90807e89.png?=20230921", + 62, + "che_230921_gV5c", + 33, + [ + "chief:6", + "hall:dex2", + "hall:firenum" + ] + ], + [ + "【62기】무통", + 76, + 69, + 13, + "che_event_격노", + [ + 27861, + 15498, + 300183, + 38320, + 37580 + ], + 0, + "default.jpg", + 62, + "che_230921_gV5c", + 35, + [ + "hall:betrate", + "hall:dex3", + "hall:dex5" + ] + ], + [ + "【62기】서림동", + 77, + 91, + 15, + "che_event_척사", + [ + 23334, + 16887, + 263289, + 70410, + 35308 + ], + 0, + "default.jpg", + 62, + "che_230921_gV5c", + 39, + [ + "hall:firenum" + ] + ], + [ + "【62기】신도40000", + 77, + 99, + 15, + "che_event_필살", + [ + 1158225, + 14570, + 22270, + 65055, + 31463 + ], + 1, + "f7b26d0e.png?=20230921", + 62, + "che_230921_gV5c", + 40, + [ + "hall:betrate", + "hall:betwin", + "hall:betwingold", + "hall:dex1", + "hall:experience", + "hall:killcrew", + "hall:killcrew_person", + "hall:killnum", + "hall:killrate", + "hall:killrate_person", + "hall:occupied", + "hall:tsrate", + "hall:warnum", + "hall:winrate" + ] + ], + [ + "【62기】카멘", + 81, + 15, + 92, + "che_event_집중", + [ + 40698, + 38274, + 36765, + 796911, + 53680 + ], + 1, + "45672d20.jpg?=20231011", + 62, + "che_230921_gV5c", + 43, + [ + "hall:dex4", + "hall:warnum" + ] + ], + [ + "【62기】유카", + 15, + 73, + 95, + "che_event_의술", + [ + 1947, + 0, + 3523, + 7472, + 0 + ], + 1, + "e4b9e9c6.png?=20230927", + 62, + "che_230921_gV5c", + 45, + [ + "hall:dedication", + "hall:firenum", + "hall:ttrate" + ] + ], + [ + "【62기】홍마진척왕근", + 69, + 80, + 13, + "che_event_돌격", + [ + 621053, + 16347, + 55247, + 60965, + 23278 + ], + 1, + "f39e5fac.jpg?=20230921", + 62, + "che_230921_gV5c", + 46, + [ + "hall:dex1", + "hall:experience", + "hall:killcrew", + "hall:killcrew_person", + "hall:killnum", + "hall:winrate" + ] + ], + [ + "【62기】프레데리카", + 78, + 95, + 15, + "che_event_척사", + [ + 49166, + 882531, + 10682, + 87221, + 70219 + ], + 1, + "b5a16765.jpg?=20230920", + 62, + "che_230921_gV5c", + 47, + [ + "hall:betgold", + "hall:betrate", + "hall:betwingold", + "hall:dex2", + "hall:dex5", + "hall:killrate", + "hall:killrate_person", + "hall:occupied", + "hall:tsrate", + "hall:winrate" + ] + ], + [ + "【62기】치유의부적", + 17, + 76, + 93, + "che_event_의술", + [ + 0, + 0, + 0, + 0, + 0 + ], + 1, + "0e2c7802.jpg?=20230921", + 62, + "che_230921_gV5c", + 49, + [ + "hall:dedication" + ] + ], + [ + "【62기】김채원", + 90, + 16, + 77, + "che_event_저격", + [ + 20947, + 72808, + 91920, + 662492, + 42653 + ], + 1, + "139e1bed.jpg?=20230831", + 62, + "che_230921_gV5c", + 52, + [ + "hall:tlrate" + ] + ], + [ + "【62기】크멘의 애완견", + 76, + 15, + 98, + "che_event_필살", + [ + 21484, + 24827, + 29804, + 899457, + 35712 + ], + 1, + "8c10d836.png?=20230921", + 62, + "che_230921_gV5c", + 58, + [ + "hall:betgold", + "hall:dex4", + "hall:killnum", + "hall:killrate", + "hall:killrate_person", + "hall:tirate", + "hall:winrate" + ] + ], + [ + "【62기】강유", + 67, + 13, + 82, + "che_event_환술", + [ + 6368, + 32045, + 18213, + 596967, + 19143 + ], + 1, + "79e150d0.jpg?=20230921", + 62, + "che_230921_gV5c", + 63, + [ + "hall:dex4", + "hall:experience", + "hall:killcrew", + "hall:killcrew_person", + "hall:killnum", + "hall:killrate_person", + "hall:warnum", + "hall:winrate" + ] + ], + [ + "【62기】파랑새", + 80, + 16, + 92, + "che_event_집중", + [ + 40104, + 17336, + 30780, + 743778, + 60661 + ], + 1, + "be8c069a.jpg?=20231010", + 62, + "che_230921_gV5c", + 64, + [ + "hall:betgold", + "hall:betwin", + "hall:betwingold", + "hall:dex4", + "hall:occupied" + ] + ], + [ + "【62기】크멘교 배제대생", + 97, + 75, + 15, + "che_event_필살", + [ + 973704, + 46655, + 34875, + 109135, + 51335 + ], + 0, + "default.jpg", + 62, + "che_230921_gV5c", + 65, + [ + "hall:betgold", + "hall:betwin", + "hall:betwingold", + "hall:dex1", + "hall:killcrew", + "hall:killcrew_person", + "hall:killnum", + "hall:tlrate" + ] + ], + [ + "【62기】따라큐", + 91, + 16, + 79, + "che_event_징병", + [ + 62134, + 24586, + 92864, + 1097632, + 62338 + ], + 1, + "12a4e4b9.png?=20230919", + 62, + "che_230921_gV5c", + 68, + [ + "hall:dex4", + "hall:killcrew", + "hall:killcrew_person", + "hall:warnum" + ] + ], + [ + "【62기】초롱초롱 무지", + 75, + 16, + 95, + "che_event_집중", + [ + 52219, + 23637, + 3114, + 355659, + 36444 + ], + 1, + "63f1c106.png?=20230223", + 62, + "che_230921_gV5c", + 78, + [ + "hall:dedication" + ] + ], + [ + "【62기】신도119", + 101, + 15, + 71, + "che_event_의술", + [ + 76898, + 107098, + 72304, + 171748, + 948278 + ], + 1, + "a0dafe81.jpg?=20230922", + 62, + "che_230921_gV5c", + 79, + [ + "hall:betgold", + "hall:betwin", + "hall:betwingold", + "hall:dex5", + "hall:occupied", + "hall:tlrate", + "hall:warnum" + ] + ], + [ + "【62기】뭐하지", + 90, + 80, + 16, + "che_event_필살", + [ + 88504, + 217433, + 67394, + 76163, + 30670 + ], + 1, + "21bbdaa9.jpg?=20230921", + 62, + "che_230921_gV5c", + 80, + [ + "hall:dex2", + "hall:firenum" + ] + ], + [ + "【62기】냐옹", + 79, + 90, + 15, + "che_event_척사", + [ + 16388, + 4181, + 417316, + 85580, + 48724 + ], + 1, + "23ba519.jpg?=20190318", + 62, + "che_230921_gV5c", + 82, + [ + "hall:dex3", + "hall:occupied" + ] + ], + [ + "【62기】신도44", + 76, + 95, + 15, + "che_event_필살", + [ + 664511, + 22566, + 37872, + 47885, + 90950 + ], + 0, + "default.jpg", + 62, + "che_230921_gV5c", + 84, + [ + "hall:dex1", + "hall:dex5", + "hall:killrate", + "hall:killrate_person", + "hall:tsrate", + "hall:ttrate" + ] + ], + [ + "【62기】신도444", + 76, + 15, + 95, + "che_event_필살", + [ + 48868, + 16192, + 31393, + 618276, + 77441 + ], + 0, + "default.jpg", + 62, + "che_230921_gV5c", + 85, + [ + "hall:dex5", + "hall:killrate", + "hall:killrate_person", + "hall:ttrate" + ] + ], + [ + "【62기】서희", + 92, + 78, + 15, + "che_event_척사", + [ + 32311, + 451286, + 40527, + 76778, + 39347 + ], + 1, + "8debf7e5.png?=20230308", + 62, + "che_230921_gV5c", + 87, + [ + "hall:dex2" + ] + ], + [ + "【62기】로열가드", + 77, + 15, + 96, + "che_event_집중", + [ + 18456, + 35041, + 19514, + 619681, + 22599 + ], + 1, + "90b9119c.jpg?=20230921", + 62, + "che_230921_gV5c", + 89, + [ + "hall:betrate", + "hall:tirate", + "hall:ttrate" + ] + ], + [ + "【62기】9999999999999", + 98, + 73, + 15, + "che_event_징병", + [ + 156672, + 70446, + 788104, + 215783, + 10484 + ], + 0, + "default.jpg", + 62, + "che_230921_gV5c", + 90, + [ + "hall:betrate", + "hall:betwingold", + "hall:dex3", + "hall:killcrew", + "hall:killcrew_person", + "hall:tlrate", + "hall:warnum" + ] + ], + [ + "【62기】신도5", + 76, + 15, + 98, + "che_event_돌격", + [ + 65359, + 63198, + 55520, + 773654, + 37126 + ], + 1, + "2fb36a1b.jpg?=20230921", + 62, + "che_230921_gV5c", + 91, + [ + "hall:betwin", + "hall:dex4", + "hall:tirate", + "hall:ttrate", + "hall:winrate" + ] + ], + [ + "【62기】샤를마뉴 렌쏭", + 79, + 93, + 16, + "che_event_필살", + [ + 25411, + 30805, + 479827, + 127962, + 25275 + ], + 1, + "b1648929.jpg?=20230921", + 62, + "che_230921_gV5c", + 92, + [ + "hall:betrate", + "hall:betwin", + "hall:dex3" + ] + ], + [ + "【62기】신도9", + 77, + 97, + 15, + "che_event_필살", + [ + 36434, + 740022, + 75930, + 105543, + 102304 + ], + 1, + "269968d8.png?=20230921", + 62, + "che_230921_gV5c", + 94, + [ + "chief:10", + "hall:betgold", + "hall:betwin", + "hall:betwingold", + "hall:dex2", + "hall:dex5", + "hall:firenum", + "hall:killrate", + "hall:killrate_person", + "hall:tsrate" + ] + ], + [ + "【62기】진솔", + 82, + 88, + 16, + "che_event_의술", + [ + 12478, + 4888, + 647653, + 133182, + 18953 + ], + 1, + "261b4a01.jpg?=20230921", + 62, + "che_230921_gV5c", + 96, + [ + "hall:dex3" + ] + ], + [ + "【62기】데바", + 96, + 75, + 15, + "che_event_견고", + [ + 412918, + 10034, + 34046, + 84602, + 39400 + ], + 1, + "c196c1a4.gif?=20230921", + 62, + "che_230921_gV5c", + 98, + [ + "hall:dex1", + "hall:firenum", + "hall:tlrate" + ] + ], + [ + "【62기】쓸모없음", + 15, + 70, + 102, + "che_event_신중", + [ + 0, + 0, + 0, + 0, + 0 + ], + 0, + "default.jpg", + 62, + "che_230921_gV5c", + 101, + [ + "hall:betrate", + "hall:experience", + "hall:tirate" + ] + ], + [ + "【62기】와일드플라워", + 13, + 63, + 83, + "che_event_환술", + [ + 0, + 0, + 0, + 0, + 0 + ], + 0, + "default.jpg", + 62, + "che_230921_gV5c", + 102, + [ + "hall:dedication", + "hall:experience" + ] + ], + [ + "【62기】오토노세 카나데", + 78, + 93, + 15, + "che_event_척사", + [ + 988479, + 16434, + 44542, + 44599, + 26566 + ], + 1, + "70d0b33e.jpg?=20230921", + 62, + "che_230921_gV5c", + 103, + [ + "hall:dex1", + "hall:tsrate" + ] + ], + [ + "【62기】F", + 77, + 95, + 15, + "che_event_위압", + [ + 65997, + 683008, + 21451, + 91019, + 34848 + ], + 0, + "default.jpg", + 62, + "che_230921_gV5c", + 104, + [ + "hall:dex2", + "hall:tsrate" + ] + ], + [ + "【62기】대교", + 82, + 63, + 13, + "che_event_필살", + [ + 18346, + 42323, + 434779, + 31159, + 20838 + ], + 1, + "9f0e6dcc.jpg?=20220808", + 62, + "che_230921_gV5c", + 105, + [ + "hall:dex3", + "hall:tlrate" + ] + ], + [ + "【62기】만샘", + 75, + 15, + 98, + "che_event_신중", + [ + 39711, + 19762, + 18833, + 478610, + 34612 + ], + 1, + "9bf1a807.jpg?=20230921", + 62, + "che_230921_gV5c", + 107, + [ + "chief:7", + "hall:betrate", + "hall:dedication", + "hall:experience", + "hall:tirate" + ] + ], + [ + "【62기】간지밍이", + 82, + 13, + 67, + "che_event_필살", + [ + 6651, + 19541, + 28153, + 886528, + 23488 + ], + 1, + "19c0150f.png?=20230615", + 62, + "che_230921_gV5c", + 108, + [ + "hall:betgold", + "hall:betwin", + "hall:betwingold", + "hall:dex4", + "hall:experience", + "hall:killcrew", + "hall:killcrew_person", + "hall:killnum", + "hall:killrate", + "hall:killrate_person", + "hall:occupied", + "hall:tlrate", + "hall:warnum", + "hall:winrate" + ] + ], + [ + "【62기】북오더", + 90, + 77, + 15, + "che_event_척사", + [ + 5523, + 33012, + 501481, + 232164, + 34268 + ], + 1, + "f39217aa.gif?=20220916", + 62, + "che_230921_gV5c", + 109, + [ + "hall:dex3" + ] + ], + [ + "【62기】초선", + 79, + 15, + 93, + "che_event_징병", + [ + 25010, + 57008, + 45503, + 719036, + 31660 + ], + 1, + "b24730b1.jpg?=20230112", + 62, + "che_230921_gV5c", + 112, + [ + "hall:tirate" + ] + ], + [ + "【62기】땃지", + 75, + 17, + 91, + "che_event_신산", + [ + 45944, + 13388, + 11858, + 298568, + 45100 + ], + 1, + "8be933cf.jpg?=20230810", + 62, + "che_230921_gV5c", + 113, + [ + "hall:ttrate" + ] + ], + [ + "【62기】덕구", + 85, + 89, + 15, + "che_event_무쌍", + [ + 17153, + 1058479, + 26969, + 24470, + 13644 + ], + 1, + "ca2fa1d4.jpg?=20230923", + 62, + "che_230921_gV5c", + 115, + [ + "hall:dex2", + "hall:killcrew", + "hall:killcrew_person", + "hall:killnum", + "hall:warnum" + ] + ], + [ + "【62기】doz IP Zak", + 83, + 15, + 89, + "che_event_필살", + [ + 43157, + 24562, + 57247, + 927816, + 18413 + ], + 0, + "default.jpg", + 62, + "che_230921_gV5c", + 116, + [ + "hall:dex4", + "hall:killcrew_person", + "hall:killnum", + "hall:warnum" + ] + ], + [ + "【62기】기술만올리는척", + 16, + 72, + 99, + "che_event_저격", + [ + 0, + 0, + 0, + 0, + 0 + ], + 1, + "7cb75480.png?=20221202", + 62, + "che_230921_gV5c", + 119, + [ + "hall:tirate" + ] + ], + [ + "【62기】퍄퍄", + 79, + 15, + 93, + "che_event_집중", + [ + 60991, + 17560, + 12167, + 613687, + 42831 + ], + 1, + "2d51ff50.jpg?=20230828", + 62, + "che_230921_gV5c", + 120, + [ + "hall:ttrate" + ] + ], + [ + "【62기】외심장", + 78, + 15, + 92, + "che_event_집중", + [ + 52531, + 5781, + 7432, + 392328, + 42148 + ], + 1, + "36110cd.jpg?=20180826", + 62, + "che_230921_gV5c", + 121, + [ + "hall:dedication" + ] + ], + [ + "【62기】POCAPI", + 83, + 15, + 89, + "che_event_척사", + [ + 6534, + 11103, + 20350, + 511624, + 7470 + ], + 0, + "default.jpg", + 62, + "che_230921_gV5c", + 126, + [ + "hall:ttrate" + ] + ], + [ + "【62기】임관권유거부", + 80, + 16, + 88, + "che_event_필살", + [ + 42123, + 47332, + 67473, + 768490, + 34301 + ], + 1, + "6cf61a1a.gif?=20230831", + 62, + "che_230921_gV5c", + 127, + [ + "hall:dex4" + ] + ], + [ + "【62기】초아인지", + 66, + 81, + 13, + "che_event_필살", + [ + 158706, + 34630, + 209650, + 68034, + 33157 + ], + 1, + "c314b02e.jpg?=20230830", + 62, + "che_230921_gV5c", + 128, + [ + "hall:dex1", + "hall:dex3", + "hall:dex5", + "hall:experience", + "hall:occupied", + "hall:tsrate" + ] + ], + [ + "【62기】미에 아이", + 75, + 17, + 92, + "che_event_신산", + [ + 28870, + 17104, + 11622, + 320429, + 49232 + ], + 1, + "c2572f0d.png?=20230921", + 62, + "che_230921_gV5c", + 130, + [ + "hall:dedication" + ] + ], + [ + "【62기】배틀마스터", + 83, + 90, + 16, + "che_event_필살", + [ + 911426, + 56401, + 44517, + 189758, + 35814 + ], + 1, + "3b7d08d7.png?=20230922", + 62, + "che_230921_gV5c", + 189, + [ + "hall:dex1", + "hall:killcrew", + "hall:killcrew_person", + "hall:killnum", + "hall:warnum" + ] + ], + [ + "【62기】민트토끼", + 16, + 72, + 97, + "che_event_의술", + [ + 0, + 0, + 0, + 0, + 0 + ], + 1, + "2b5418ac.jpg?=20230831", + 62, + "che_230921_gV5c", + 195, + [ + "hall:dedication" + ] + ], + [ + "【62기】초딩대우직딩", + 17, + 76, + 91, + "che_event_저격", + [ + 2189, + 4800, + 2200, + 51487, + 6557 + ], + 1, + "a266e440.jpg?=20230831", + 62, + "che_230921_gV5c", + 196, + [ + "hall:dedication" + ] + ], + [ + "【62기】불패", + 75, + 96, + 15, + "che_event_징병", + [ + 43457, + 200965, + 36030, + 48228, + 34974 + ], + 1, + "e52adea8.jpg?=20230712", + 62, + "che_230921_gV5c", + 197, + [ + "hall:dex2", + "hall:firenum", + "hall:tsrate" + ] + ], + [ + "【62기】くま", + 78, + 15, + 94, + "che_event_신산", + [ + 36936, + 15371, + 17346, + 366640, + 55343 + ], + 1, + "770f53.jpg?=20190718", + 62, + "che_230921_gV5c", + 199, + [ + "chief:5" + ] + ], + [ + "【62기】코노가고싶다", + 78, + 15, + 93, + "che_event_집중", + [ + 33026, + 15505, + 16910, + 640102, + 64419 + ], + 0, + "default.jpg", + 62, + "che_230921_gV5c", + 201, + [ + "chief:9", + "hall:tirate" + ] + ], + [ + "【62기】주사위논리학", + 88, + 76, + 16, + "che_event_돌격", + [ + 37276, + 165322, + 14008, + 52075, + 31805 + ], + 0, + "default.jpg", + 62, + "che_230921_gV5c", + 418, + [ + "hall:dex2", + "hall:firenum" + ] + ], + [ + "【63기】팬이에요.", + 73, + 85, + 13, + "che_event_필살", + [ + 813818, + 10976, + 6880, + 23367, + 10170 + ], + 1, + "33ba7162.jpg?=20231110", + 63, + "che_231019_ta2u", + 3, + [ + "hall:betrate", + "hall:dex1", + "hall:killcrew", + "hall:killcrew_person", + "hall:killnum", + "hall:warnum" + ] + ], + [ + "【63기】사스케", + 62, + 13, + 93, + "che_event_집중", + [ + 5227, + 0, + 3237, + 55827, + 13989 + ], + 1, + "9243587d.jpg?=20231018", + 63, + "che_231019_ta2u", + 13, + [ + "hall:betgold", + "hall:betwin", + "hall:betwingold", + "hall:dedication", + "hall:tirate" + ] + ], + [ + "【63기】조승상", + 85, + 70, + 14, + "che_event_필살", + [ + 21425, + 559953, + 20582, + 59794, + 16275 + ], + 1, + "99f1e7e3.png?=20231102", + 63, + "che_231019_ta2u", + 15, + [ + "hall:dex2" + ] + ], + [ + "【63기】장원영", + 62, + 14, + 89, + "che_event_환술", + [ + 5425, + 3258, + 10776, + 36137, + 9045 + ], + 1, + "e8f309fc.jpg?=20230928", + 63, + "che_231019_ta2u", + 18, + [ + "hall:dedication" + ] + ], + [ + "【63기】아보크", + 70, + 13, + 87, + "che_event_집중", + [ + 19788, + 23245, + 32519, + 519269, + 28227 + ], + 1, + "616e54ff.jpg?=20231019", + 63, + "che_231019_ta2u", + 22, + [ + "hall:dex4", + "hall:warnum" + ] + ], + [ + "【63기】양사영", + 69, + 13, + 87, + "che_event_필살", + [ + 42719, + 22768, + 25177, + 776067, + 37685 + ], + 1, + "c98febd6.jpg?=20231019", + 63, + "che_231019_ta2u", + 25, + [ + "hall:betgold", + "hall:betwin", + "hall:betwingold", + "hall:dex4", + "hall:experience", + "hall:killcrew", + "hall:killcrew_person", + "hall:killnum", + "hall:killrate", + "hall:killrate_person", + "hall:occupied", + "hall:warnum" + ] + ], + [ + "【63기】또도가스", + 86, + 72, + 13, + "che_event_척사", + [ + 604211, + 14015, + 14550, + 20690, + 11304 + ], + 1, + "36d96a91.png?=20231019", + 63, + "che_231019_ta2u", + 35, + [ + "hall:dex2", + "hall:experience", + "hall:tlrate" + ] + ], + [ + "【63기】엘사", + 70, + 86, + 13, + "che_event_의술", + [ + 50349, + 529411, + 20711, + 34118, + 26829 + ], + 1, + "64d29ccf.jpg?=20231018", + 63, + "che_231019_ta2u", + 38, + [ + "hall:betrate", + "hall:betwin", + "hall:dex2", + "hall:tsrate" + ] + ], + [ + "【63기】이누바시리 모미지", + 69, + 14, + 76, + "che_event_환술", + [ + 18849, + 8693, + 19626, + 293812, + 23955 + ], + 1, + "3148bc72.jpg?=20231019", + 63, + "che_231019_ta2u", + 40, + [ + "hall:dex4", + "hall:dex5", + "hall:occupied" + ] + ], + [ + "【63기】초아인지", + 65, + 13, + 89, + "che_event_집중", + [ + 7382, + 19091, + 34669, + 239950, + 13402 + ], + 1, + "c314b02e.jpg?=20230830", + 63, + "che_231019_ta2u", + 43, + [ + "hall:tirate" + ] + ], + [ + "【63기】히이라기 카가미", + 66, + 13, + 86, + "che_event_집중", + [ + 21284, + 18706, + 20734, + 318582, + 19379 + ], + 1, + "d787d3e7.webp?=20231021", + 63, + "che_231019_ta2u", + 44, + [ + "hall:tirate", + "hall:ttrate" + ] + ], + [ + "【63기】렌고쿠 쿄주로", + 66, + 84, + 13, + "che_event_견고", + [ + 116596, + 8662, + 25973, + 20559, + 4346 + ], + 1, + "40874e3.jpg?=20220304", + 63, + "che_231019_ta2u", + 49, + [ + "hall:dex1" + ] + ], + [ + "【63기】경국지색소교", + 69, + 82, + 14, + "che_event_견고", + [ + 14837, + 28498, + 200456, + 27250, + 18380 + ], + 1, + "ad2669b5.jpg?=20230605", + 63, + "che_231019_ta2u", + 50, + [ + "hall:ttrate" + ] + ], + [ + "【63기】재간둥이", + 80, + 70, + 14, + "che_event_견고", + [ + 186473, + 18527, + 43509, + 43800, + 20590 + ], + 0, + "default.jpg", + 63, + "che_231019_ta2u", + 53, + [ + "hall:dex1", + "hall:tlrate" + ] + ], + [ + "【63기】Hide_D", + 71, + 14, + 83, + "che_event_필살", + [ + 41195, + 32567, + 31969, + 409348, + 26858 + ], + 1, + "4569d848.png?=20230612", + 63, + "che_231019_ta2u", + 54, + [ + "hall:dex5", + "hall:ttrate", + "hall:winrate" + ] + ], + [ + "【63기】서희", + 65, + 13, + 89, + "che_event_필살", + [ + 3755, + 2208, + 1699, + 44875, + 16039 + ], + 1, + "8debf7e5.png?=20230308", + 63, + "che_231019_ta2u", + 60, + [ + "hall:dedication" + ] + ], + [ + "【63기】ㅊㄹㅊㄹ", + 66, + 13, + 88, + "che_event_필살", + [ + 15873, + 25794, + 21759, + 364021, + 13406 + ], + 1, + "63f1c106.png?=20230223", + 63, + "che_231019_ta2u", + 63, + [ + "hall:dedication" + ] + ], + [ + "【63기】로사", + 13, + 68, + 86, + "che_event_의술", + [ + 0, + 0, + 0, + 0, + 0 + ], + 1, + "3dc68488.jpg?=20231018", + 63, + "che_231019_ta2u", + 67, + [ + "hall:betgold" + ] + ], + [ + "【63기】SARS", + 81, + 73, + 14, + "che_event_격노", + [ + 39624, + 39902, + 578775, + 80551, + 82862 + ], + 1, + "b84944.jpg?=20180829", + 63, + "che_231019_ta2u", + 68, + [ + "chief:12", + "hall:betwingold", + "hall:dex3", + "hall:dex5", + "hall:experience", + "hall:firenum", + "hall:killrate", + "hall:occupied" + ] + ], + [ + "【63기】피엔나", + 71, + 13, + 88, + "che_event_환술", + [ + 17471, + 20688, + 17006, + 614107, + 20899 + ], + 1, + "3f9081cd.png?=20231019", + 63, + "che_231019_ta2u", + 70, + [ + "hall:betrate", + "hall:dex4", + "hall:winrate" + ] + ], + [ + "【63기】양요이", + 67, + 14, + 84, + "che_event_집중", + [ + 22896, + 10116, + 6911, + 372394, + 30394 + ], + 1, + "2b49c945.png?=20230921", + 63, + "che_231019_ta2u", + 72, + [ + "hall:ttrate" + ] + ], + [ + "【63기】마자용", + 67, + 13, + 90, + "che_event_집중", + [ + 53805, + 18707, + 57089, + 535048, + 19793 + ], + 1, + "af204688.jpg?=20231019", + 63, + "che_231019_ta2u", + 75, + [ + "chief:9", + "hall:betrate", + "hall:dedication", + "hall:dex4", + "hall:experience" + ] + ], + [ + "【63기】후라이팬", + 73, + 87, + 13, + "che_event_위압", + [ + 2930, + 1011638, + 2076, + 15101, + 4568 + ], + 1, + "1ec2709d.png?=20231019", + 63, + "che_231019_ta2u", + 77, + [ + "hall:dex2", + "hall:killcrew", + "hall:killcrew_person", + "hall:killnum", + "hall:killrate", + "hall:killrate_person", + "hall:occupied", + "hall:tsrate", + "hall:warnum" + ] + ], + [ + "【63기】미야와키 사쿠라", + 78, + 13, + 76, + "che_event_척사", + [ + 14790, + 39468, + 22163, + 247021, + 16179 + ], + 1, + "9d6f0f6a.jpg?=20231017", + 63, + "che_231019_ta2u", + 80, + [ + "hall:tlrate" + ] + ], + [ + "【63기】초딩대우직딩", + 81, + 70, + 14, + "che_event_저격", + [ + 4510, + 31165, + 265485, + 41731, + 22363 + ], + 1, + "a266e440.jpg?=20230831", + 63, + "che_231019_ta2u", + 82, + [ + "hall:betrate", + "hall:dex3" + ] + ], + [ + "【63기】PEPSI", + 68, + 13, + 86, + "che_event_집중", + [ + 22062, + 32581, + 32747, + 581703, + 23218 + ], + 1, + "436b9ead.jpg?=20231019", + 63, + "che_231019_ta2u", + 88, + [ + "chief:11", + "hall:dex4", + "hall:killrate", + "hall:killrate_person", + "hall:occupied", + "hall:winrate" + ] + ], + [ + "【63기】예턴장", + 83, + 71, + 14, + "che_event_필살", + [ + 40282, + 423676, + 99500, + 46583, + 27270 + ], + 0, + "default.jpg", + 63, + "che_231019_ta2u", + 89, + [ + "hall:dex2" + ] + ], + [ + "【63기】랜덤박스", + 73, + 79, + 14, + "che_event_의술", + [ + 583198, + 49296, + 33754, + 86081, + 25973 + ], + 1, + "a96c6cf1.gif?=20231022", + 63, + "che_231019_ta2u", + 93, + [ + "hall:dex1" + ] + ], + [ + "【63기】나옹", + 68, + 13, + 89, + "che_event_필살", + [ + 35849, + 25635, + 28801, + 437709, + 16848 + ], + 1, + "ad47316d.png?=20231019", + 63, + "che_231019_ta2u", + 97, + [ + "chief:5", + "hall:betrate", + "hall:experience", + "hall:occupied", + "hall:winrate" + ] + ], + [ + "【63기】북오더", + 71, + 83, + 13, + "che_event_필살", + [ + 36432, + 681870, + 18618, + 51544, + 48613 + ], + 1, + "f39217aa.gif?=20220916", + 63, + "che_231019_ta2u", + 98, + [ + "chief:8", + "hall:dex2", + "hall:dex5", + "hall:experience", + "hall:killrate", + "hall:killrate_person", + "hall:tsrate" + ] + ], + [ + "【63기】무쇠팬", + 70, + 84, + 13, + "che_event_척사", + [ + 60134, + 17725, + 490298, + 45058, + 21642 + ], + 1, + "97bbb8a2.jpg?=20231019", + 63, + "che_231019_ta2u", + 99, + [ + "hall:betrate", + "hall:dex3", + "hall:dex5", + "hall:firenum", + "hall:killrate_person", + "hall:occupied", + "hall:winrate" + ] + ], + [ + "【63기】안아줘요", + 14, + 87, + 64, + "che_event_척사", + [ + 3576, + 2060, + 1779, + 243, + 1194 + ], + 0, + "default.jpg", + 63, + "che_231019_ta2u", + 100, + [ + "hall:firenum", + "hall:tsrate" + ] + ], + [ + "【63기】진솔", + 71, + 82, + 13, + "che_event_격노", + [ + 45953, + 33391, + 218177, + 66597, + 9947 + ], + 1, + "261b4a01.jpg?=20230921", + 63, + "che_231019_ta2u", + 101, + [ + "hall:tsrate" + ] + ], + [ + "【63기】마즈피플", + 70, + 83, + 15, + "che_event_격노", + [ + 8833, + 41899, + 298508, + 53148, + 20500 + ], + 1, + "fddf0280.gif?=20231101", + 63, + "che_231019_ta2u", + 102, + [ + "hall:dex3" + ] + ], + [ + "【63기】지원", + 73, + 82, + 13, + "che_event_필살", + [ + 30712, + 44646, + 482378, + 58217, + 15906 + ], + 1, + "eb7f760e.webp?=20231019", + 63, + "che_231019_ta2u", + 104, + [ + "hall:dex3", + "hall:tsrate" + ] + ], + [ + "【63기】Sase Kim", + 67, + 87, + 13, + "che_event_필살", + [ + 29473, + 57842, + 414482, + 51841, + 21616 + ], + 1, + "61c98531.jpg?=20231017", + 63, + "che_231019_ta2u", + 105, + [ + "hall:betgold", + "hall:betwin", + "hall:betwingold", + "hall:dex3", + "hall:occupied" + ] + ], + [ + "【63기】로이", + 69, + 13, + 86, + "che_event_필살", + [ + 37016, + 16498, + 22814, + 632264, + 33051 + ], + 1, + "1561c512.jpg?=20231110", + 63, + "che_231019_ta2u", + 107, + [ + "hall:betgold", + "hall:betwin", + "hall:betwingold", + "hall:dex4", + "hall:firenum", + "hall:killcrew_person", + "hall:killnum", + "hall:killrate", + "hall:killrate_person", + "hall:winrate" + ] + ], + [ + "【63기】Love", + 70, + 13, + 84, + "che_event_집중", + [ + 15893, + 26458, + 15328, + 360877, + 17960 + ], + 0, + "default.jpg", + 63, + "che_231019_ta2u", + 108, + [ + "hall:tirate" + ] + ], + [ + "【63기】비주기", + 90, + 69, + 13, + "che_event_필살", + [ + 18552, + 22245, + 25533, + 23294, + 853257 + ], + 1, + "03b6316b.png?=20231016", + 63, + "che_231019_ta2u", + 109, + [ + "chief:6", + "hall:betgold", + "hall:betwin", + "hall:betwingold", + "hall:dex2", + "hall:dex5", + "hall:killcrew", + "hall:killcrew_person", + "hall:killnum", + "hall:occupied", + "hall:tlrate", + "hall:warnum" + ] + ], + [ + "【63기】간지밍이", + 16, + 62, + 87, + "che_event_필살", + [ + 5948, + 52959, + 9291, + 14307, + 0 + ], + 1, + "19c0150f.png?=20230615", + 63, + "che_231019_ta2u", + 110, + [ + "hall:betgold", + "hall:betwin", + "hall:betwingold", + "hall:dedication", + "hall:experience" + ] + ], + [ + "【63기】로켓맨", + 71, + 14, + 87, + "che_event_집중", + [ + 15577, + 19135, + 17299, + 663219, + 24069 + ], + 1, + "60fe3ef9.jpg?=20231023", + 63, + "che_231019_ta2u", + 111, + [ + "hall:dex4", + "hall:killcrew", + "hall:killcrew_person", + "hall:killnum", + "hall:winrate" + ] + ], + [ + "【63기】초선", + 66, + 13, + 88, + "che_event_집중", + [ + 19168, + 13645, + 4027, + 258803, + 8463 + ], + 1, + "b24730b1.jpg?=20230112", + 63, + "che_231019_ta2u", + 112, + [ + "hall:tirate" + ] + ], + [ + "【63기】くま", + 70, + 14, + 86, + "che_event_신산", + [ + 30431, + 30946, + 26059, + 760353, + 55815 + ], + 1, + "770f53.jpg?=20190718", + 63, + "che_231019_ta2u", + 113, + [ + "hall:dex4", + "hall:dex5", + "hall:firenum", + "hall:killcrew", + "hall:killcrew_person", + "hall:killnum", + "hall:killrate", + "hall:warnum" + ] + ], + [ + "【63기】시험감독곰", + 76, + 79, + 14, + "che_event_견고", + [ + 87818, + 754889, + 41828, + 86752, + 25313 + ], + 1, + "e5be393f.jpg?=20231019", + 63, + "che_231019_ta2u", + 114, + [ + "hall:betwin", + "hall:betwingold", + "hall:dex2" + ] + ], + [ + "【63기】노예", + 92, + 66, + 13, + "che_event_필살", + [ + 1008759, + 36793, + 113115, + 58580, + 27404 + ], + 0, + "default.jpg", + 63, + "che_231019_ta2u", + 116, + [ + "hall:betgold", + "hall:betwin", + "hall:betwingold", + "hall:dex1", + "hall:experience", + "hall:killcrew", + "hall:killcrew_person", + "hall:killnum", + "hall:occupied", + "hall:tlrate", + "hall:warnum" + ] + ], + [ + "【63기】통솔", + 83, + 74, + 13, + "che_event_필살", + [ + 282758, + 34084, + 449528, + 57544, + 15911 + ], + 0, + "default.jpg", + 63, + "che_231019_ta2u", + 117, + [ + "hall:dex1", + "hall:dex3", + "hall:killcrew", + "hall:killcrew_person", + "hall:killnum", + "hall:tlrate", + "hall:warnum" + ] + ], + [ + "【63기】김나영", + 68, + 84, + 13, + "che_event_견고", + [ + 296694, + 18771, + 38604, + 63959, + 11781 + ], + 1, + "d07b6eb2.jpg?=20231027", + 63, + "che_231019_ta2u", + 118, + [ + "hall:dex1" + ] + ], + [ + "【63기】독구", + 67, + 13, + 90, + "che_event_필살", + [ + 15857, + 28561, + 27845, + 361186, + 6683 + ], + 1, + "1f67d7c9.gif?=20231019", + 63, + "che_231019_ta2u", + 119, + [ + "hall:killrate_person", + "hall:winrate" + ] + ], + [ + "【63기】대교", + 89, + 62, + 14, + "che_event_돌격", + [ + 46042, + 336279, + 8863, + 53962, + 9839 + ], + 1, + "9f0e6dcc.jpg?=20220808", + 63, + "che_231019_ta2u", + 120, + [ + "hall:dex2", + "hall:tlrate" + ] + ], + [ + "【63기】송건중기마초맹기", + 70, + 83, + 13, + "che_event_위압", + [ + 243097, + 14176, + 41350, + 42699, + 8650 + ], + 0, + "default.jpg", + 63, + "che_231019_ta2u", + 126, + [ + "hall:dex1", + "hall:tsrate" + ] + ], + [ + "【63기】멜파고", + 14, + 67, + 83, + "che_event_신중", + [ + 0, + 0, + 0, + 0, + 0 + ], + 1, + "715fc358.png?=20220707", + 63, + "che_231019_ta2u", + 127, + [ + "hall:firenum" + ] + ], + [ + "【63기】앵버거먹튀범대머리", + 14, + 62, + 85, + "che_event_의술", + [ + 0, + 0, + 0, + 0, + 0 + ], + 0, + "default.jpg", + 63, + "che_231019_ta2u", + 128, + [ + "hall:tirate" + ] + ], + [ + "【63기】SARSKE", + 67, + 13, + 91, + "che_event_필살", + [ + 42695, + 31341, + 31623, + 445980, + 22020 + ], + 1, + "e6632937.jpg?=20231112", + 63, + "che_231019_ta2u", + 129, + [ + "chief:7", + "hall:killrate", + "hall:killrate_person", + "hall:tirate" + ] + ], + [ + "【63기】밤안개", + 72, + 83, + 13, + "che_event_격노", + [ + 26535, + 682257, + 9206, + 35899, + 14445 + ], + 0, + "default.jpg", + 63, + "che_231019_ta2u", + 130, + [ + "hall:betgold", + "hall:dex2", + "hall:experience", + "hall:killcrew", + "hall:tsrate", + "hall:warnum" + ] + ], + [ + "【63기】와일드플라워", + 92, + 68, + 13, + "che_event_필살", + [ + 7475, + 12329, + 966604, + 13863, + 9547 + ], + 0, + "default.jpg", + 63, + "che_231019_ta2u", + 131, + [ + "hall:dex3", + "hall:experience", + "hall:killcrew", + "hall:killcrew_person", + "hall:killnum", + "hall:killrate", + "hall:killrate_person", + "hall:tlrate", + "hall:ttrate", + "hall:warnum", + "hall:winrate" + ] + ], + [ + "【63기】슬슬쉬고싶은karl", + 87, + 64, + 14, + "che_event_징병", + [ + 57889, + 65766, + 47699, + 107795, + 317048 + ], + 0, + "default.jpg", + 63, + "che_231019_ta2u", + 132, + [ + "hall:dex5" + ] + ], + [ + "【63기】Navy마초", + 71, + 83, + 13, + "che_event_의술", + [ + 24326, + 40567, + 303655, + 58645, + 17240 + ], + 1, + "37644ed3.png?=20230831", + 63, + "che_231019_ta2u", + 133, + [ + "hall:tsrate" + ] + ], + [ + "【63기】땅땅이", + 84, + 68, + 13, + "che_event_의술", + [ + 13137, + 65986, + 397275, + 72915, + 18310 + ], + 1, + "27813a48.gif?=20231019", + 63, + "che_231019_ta2u", + 135, + [ + "hall:dex3" + ] + ], + [ + "【63기】경력있는신입", + 88, + 67, + 13, + "che_event_필살", + [ + 476323, + 8471, + 49018, + 57107, + 46827 + ], + 0, + "default.jpg", + 63, + "che_231019_ta2u", + 137, + [ + "hall:betwin", + "hall:dex1", + "hall:dex5", + "hall:tlrate" + ] + ], + [ + "【63기】예니체리", + 68, + 13, + 86, + "che_event_필살", + [ + 2890, + 4482, + 3538, + 106704, + 3371 + ], + 1, + "51b3a4c5.jpg?=20230813", + 63, + "che_231019_ta2u", + 148, + [ + "hall:ttrate" + ] + ], + [ + "【63기】척", + 74, + 80, + 13, + "che_event_필살", + [ + 37076, + 40910, + 596468, + 75432, + 31265 + ], + 1, + "7cb75480.png?=20221202", + 63, + "che_231019_ta2u", + 150, + [ + "hall:betrate", + "hall:dex3", + "hall:dex5", + "hall:killrate", + "hall:killrate_person" + ] + ], + [ + "【63기】성수전용", + 14, + 89, + 63, + "che_event_격노", + [ + 782, + 4332, + 180, + 81, + 0 + ], + 0, + "default.jpg", + 63, + "che_231019_ta2u", + 152, + [ + "hall:tsrate" + ] + ], + [ + "【63기】로비", + 13, + 72, + 82, + "che_event_신산", + [ + 0, + 0, + 0, + 0, + 0 + ], + 1, + "d38cb34.png?=20220106", + 63, + "che_231019_ta2u", + 153, + [ + "hall:firenum" + ] + ], + [ + "【63기】십수생", + 14, + 64, + 87, + "che_event_징병", + [ + 0, + 0, + 0, + 0, + 0 + ], + 0, + "default.jpg", + 63, + "che_231019_ta2u", + 155, + [ + "hall:dedication" + ] + ], + [ + "【63기】청기사", + 16, + 60, + 89, + "che_event_집중", + [ + 0, + 0, + 0, + 0, + 0 + ], + 1, + "9fdc4fd.jpg?=20181213", + 63, + "che_231019_ta2u", + 156, + [ + "hall:dedication" + ] + ], + [ + "【63기】료우기시키", + 71, + 14, + 84, + "che_event_필살", + [ + 36205, + 22945, + 41923, + 486242, + 26217 + ], + 1, + "72a190e.jpg?=20220109", + 63, + "che_231019_ta2u", + 241, + [ + "hall:dex4" + ] + ], + [ + "【63기】LISARS", + 68, + 82, + 14, + "che_event_필살", + [ + 525391, + 16819, + 45069, + 46067, + 25052 + ], + 1, + "f045adca.gif?=20231020", + 63, + "che_231019_ta2u", + 249, + [ + "chief:10", + "hall:dex1", + "hall:firenum", + "hall:winrate" + ] + ], + [ + "【63기】땃 지", + 77, + 14, + 76, + "che_event_집중", + [ + 14568, + 27139, + 20281, + 248528, + 11924 + ], + 1, + "8be933cf.jpg?=20230810", + 63, + "che_231019_ta2u", + 250, + [ + "hall:tlrate" + ] + ], + [ + "【63기】김유현", + 65, + 13, + 86, + "che_event_필살", + [ + 19519, + 27048, + 26733, + 207083, + 3445 + ], + 0, + "default.jpg", + 63, + "che_231019_ta2u", + 343, + [ + "hall:tirate" + ] + ], + [ + "【63기】세르네오", + 13, + 66, + 85, + "che_event_신산", + [ + 0, + 0, + 0, + 0, + 0 + ], + 0, + "default.jpg", + 63, + "che_231019_ta2u", + 402, + [ + "hall:firenum" + ] + ], + [ + "【63기】주다사", + 61, + 14, + 90, + "che_event_집중", + [ + 0, + 0, + 0, + 0, + 0 + ], + 0, + "default.jpg", + 63, + "che_231019_ta2u", + 408, + [ + "hall:dedication", + "hall:tirate" + ] + ], + [ + "【63기】파이어로", + 14, + 66, + 83, + "che_event_저격", + [ + 0, + 0, + 0, + 0, + 0 + ], + 1, + "4087bcc1.jpg?=20231025", + 63, + "che_231019_ta2u", + 474, + [ + "hall:betgold", + "hall:betwingold", + "hall:dedication", + "hall:tirate", + "hall:ttrate" + ] + ], + [ + "【63기】코미", + 15, + 74, + 98, + "che_event_반계", + [ + 0, + 0, + 0, + 0, + 0 + ], + 1, + "5aa2c0cb.png?=20231029", + 63, + "che_231019_ta2u", + 529, + [ + "hall:betrate", + "hall:ttrate" + ] + ], + [ + "【63기】민초조아", + 15, + 85, + 85, + "che_event_위압", + [ + 0, + 0, + 0, + 0, + 0 + ], + 1, + "45bf072c.jpg?=20231030", + 63, + "che_231019_ta2u", + 567, + [ + "hall:betrate", + "hall:firenum", + "hall:ttrate" + ] + ], + [ + "【63기】슈퍼블루문", + 85, + 15, + 77, + "che_event_신중", + [ + 2534, + 830, + 14038, + 112708, + 21222 + ], + 1, + "1a6951e4.jpg?=20231112", + 63, + "che_231019_ta2u", + 863, + [ + "hall:ttrate" + ] + ], + [ + "【64기】김계란", + 80, + 92, + 15, + "che_event_필살", + [ + 15753, + 19955, + 695976, + 41716, + 19766 + ], + 1, + "09fa15fe.png?=20231128", + 64, + "che_231130_sSDJ", + 3, + [ + "hall:betgold", + "hall:dex3", + "hall:tsrate" + ] + ], + [ + "【64기】키리코", + 76, + 15, + 98, + "che_event_신산", + [ + 12093, + 3369, + 4210, + 405252, + 9460 + ], + 1, + "bd82ed7d.jpg?=20231201", + 64, + "che_231130_sSDJ", + 12, + [ + "hall:firenum", + "hall:tirate", + "hall:ttrate" + ] + ], + [ + "【64기】로드롤러", + 102, + 70, + 15, + "che_event_공성", + [ + 23276, + 0, + 7530, + 7445, + 963214 + ], + 1, + "d82f656e.jpg?=20231130", + 64, + "che_231130_sSDJ", + 17, + [ + "hall:betrate", + "hall:betwingold", + "hall:dex5", + "hall:experience", + "hall:killcrew", + "hall:killrate", + "hall:occupied", + "hall:tlrate", + "hall:winrate" + ] + ], + [ + "【64기】밀키스", + 90, + 83, + 15, + "che_event_척사", + [ + 54021, + 437249, + 113416, + 117633, + 59833 + ], + 1, + "d774cbb7.jpg?=20231130", + 64, + "che_231130_sSDJ", + 18, + [ + "chief:6", + "hall:dex2" + ] + ], + [ + "【64기】환타", + 75, + 15, + 97, + "che_event_신산", + [ + 27492, + 21956, + 17793, + 519518, + 43400 + ], + 1, + "2689238a.jpg?=20231128", + 64, + "che_231130_sSDJ", + 20, + [ + "hall:tirate" + ] + ], + [ + "【64기】슬라임", + 80, + 67, + 14, + "che_event_필살", + [ + 334221, + 26536, + 38811, + 41380, + 8381 + ], + 1, + "2d2da7c0.jpg?=20231130", + 64, + "che_231130_sSDJ", + 21, + [ + "hall:dex1", + "hall:killcrew_person", + "hall:warnum" + ] + ], + [ + "【64기】누군가", + 20, + 73, + 94, + "che_event_환술", + [ + 0, + 5082, + 149, + 0, + 1977 + ], + 0, + "default.jpg", + 64, + "che_231130_sSDJ", + 24, + [ + "hall:betrate" + ] + ], + [ + "【64기】라콘타", + 80, + 93, + 15, + "che_event_필살", + [ + 873413, + 33379, + 49004, + 76126, + 48820 + ], + 1, + "2c56a251.png?=20231019", + 64, + "che_231130_sSDJ", + 25, + [ + "hall:betwin", + "hall:dex1", + "hall:killcrew_person", + "hall:killnum", + "hall:warnum" + ] + ], + [ + "【64기】개미호랑이", + 78, + 15, + 93, + "che_event_집중", + [ + 56201, + 29823, + 32703, + 736414, + 34977 + ], + 1, + "adca7564.jpg?=20231205", + 64, + "che_231130_sSDJ", + 26, + [ + "hall:dex4" + ] + ], + [ + "【64기】실비아", + 68, + 77, + 14, + "che_event_무쌍", + [ + 383807, + 3144, + 18548, + 40988, + 18781 + ], + 1, + "53979bb5.png?=20231216", + 64, + "che_231130_sSDJ", + 27, + [ + "hall:dex1", + "hall:firenum", + "hall:killcrew_person", + "hall:warnum" + ] + ], + [ + "【64기】로베르트", + 66, + 13, + 82, + "che_event_징병", + [ + 10866, + 9123, + 9668, + 536369, + 4577 + ], + 1, + "0a1e099c.png?=20231129", + 64, + "che_231130_sSDJ", + 28, + [ + "hall:dedication", + "hall:dex4", + "hall:killcrew", + "hall:killcrew_person", + "hall:killnum", + "hall:warnum" + ] + ], + [ + "【64기】박광덕", + 97, + 74, + 15, + "che_event_필살", + [ + 34126, + 14084, + 34010, + 39793, + 286211 + ], + 0, + "default.jpg", + 64, + "che_231130_sSDJ", + 29, + [ + "hall:dex5", + "hall:tlrate" + ] + ], + [ + "【64기】효", + 83, + 63, + 13, + "che_event_필살", + [ + 33333, + 38288, + 21136, + 52411, + 444764 + ], + 1, + "6f5aaf4e.jpg?=20231204", + 64, + "che_231130_sSDJ", + 33, + [ + "hall:dex2", + "hall:dex5", + "hall:experience", + "hall:killcrew", + "hall:killcrew_person", + "hall:killnum", + "hall:killrate_person", + "hall:occupied", + "hall:warnum", + "hall:winrate" + ] + ], + [ + "【64기】역병군주시진핑핑이", + 65, + 13, + 86, + "che_event_돌격", + [ + 37802, + 15862, + 23378, + 730790, + 39749 + ], + 1, + "08fb4c5b.png?=20231206", + 64, + "che_231130_sSDJ", + 35, + [ + "hall:dedication", + "hall:dex4", + "hall:dex5", + "hall:experience", + "hall:killcrew", + "hall:killcrew_person", + "hall:killnum", + "hall:killrate", + "hall:killrate_person", + "hall:occupied", + "hall:warnum", + "hall:winrate" + ] + ], + [ + "【64기】역병자산운용앵대리", + 66, + 13, + 80, + "che_event_집중", + [ + 7770, + 3149, + 11257, + 218804, + 22899 + ], + 1, + "fb333e04.png?=20231130", + 64, + "che_231130_sSDJ", + 46, + [ + "hall:firenum" + ] + ], + [ + "【64기】평민킬러", + 77, + 95, + 15, + "che_event_필살", + [ + 668076, + 12137, + 53078, + 133051, + 48079 + ], + 1, + "b6291bc6.jpg?=20231130", + 64, + "che_231130_sSDJ", + 52, + [ + "hall:betgold", + "hall:betrate", + "hall:betwin", + "hall:betwingold", + "hall:dex1", + "hall:killrate", + "hall:tsrate" + ] + ], + [ + "【64기】이터널리턴", + 77, + 15, + 94, + "che_event_척사", + [ + 31648, + 14512, + 28596, + 535228, + 68836 + ], + 0, + "default.jpg", + 64, + "che_231130_sSDJ", + 54, + [ + "hall:ttrate" + ] + ], + [ + "【64기】숭배자", + 80, + 68, + 13, + "che_event_기병", + [ + 5107, + 14644, + 428899, + 45229, + 25235 + ], + 1, + "ea7ef719.jpg?=20231201", + 64, + "che_231130_sSDJ", + 57, + [ + "hall:betrate", + "hall:betwingold", + "hall:dedication", + "hall:dex3", + "hall:firenum", + "hall:killcrew", + "hall:killcrew_person", + "hall:killnum", + "hall:killrate", + "hall:killrate_person", + "hall:tlrate", + "hall:warnum", + "hall:winrate" + ] + ], + [ + "【64기】Navy마초", + 79, + 15, + 93, + "che_event_집중", + [ + 31204, + 19473, + 43062, + 578773, + 90308 + ], + 1, + "37644ed3.png?=20230831", + 64, + "che_231130_sSDJ", + 58, + [ + "hall:dex5" + ] + ], + [ + "【64기】마운틴 듀", + 77, + 16, + 95, + "che_event_집중", + [ + 32755, + 12967, + 36030, + 547112, + 36087 + ], + 1, + "1de50632.jpg?=20231201", + 64, + "che_231130_sSDJ", + 62, + [ + "hall:betgold", + "hall:betwingold" + ] + ], + [ + "【64기】Mella", + 79, + 93, + 15, + "che_event_견고", + [ + 635559, + 23331, + 46896, + 101822, + 51388 + ], + 1, + "a98dfb52.jpg?=20231204", + 64, + "che_231130_sSDJ", + 70, + [ + "hall:dex1", + "hall:tsrate" + ] + ], + [ + "【64기】타불", + 89, + 82, + 15, + "che_event_위압", + [ + 27598, + 6934, + 544441, + 90125, + 22669 + ], + 0, + "default.jpg", + 64, + "che_231130_sSDJ", + 76, + [ + "hall:dex3" + ] + ], + [ + "【64기】역병의사", + 79, + 17, + 93, + "che_event_집중", + [ + 29607, + 13424, + 27384, + 706659, + 40604 + ], + 1, + "d4bfc131.jpg?=20231130", + 64, + "che_231130_sSDJ", + 78, + [ + "hall:betgold", + "hall:betwingold", + "hall:occupied" + ] + ], + [ + "【64기】코카콜라", + 90, + 80, + 15, + "che_event_의술", + [ + 18015, + 529676, + 32913, + 130166, + 69891 + ], + 1, + "f46ff3db.jpg?=20231130", + 64, + "che_231130_sSDJ", + 79, + [ + "hall:betgold", + "hall:dex2" + ] + ], + [ + "【64기】SARS", + 77, + 93, + 15, + "che_event_돌격", + [ + 39366, + 50176, + 594893, + 178869, + 73468 + ], + 1, + "b84944.jpg?=20180829", + 64, + "che_231130_sSDJ", + 85, + [ + "chief:8", + "hall:dex3", + "hall:tsrate" + ] + ], + [ + "【64기】미나토", + 89, + 15, + 82, + "che_event_척사", + [ + 25382, + 26052, + 62397, + 810604, + 71307 + ], + 1, + "89667628.jpg?=20231130", + 64, + "che_231130_sSDJ", + 90, + [ + "hall:dex4" + ] + ], + [ + "【64기】마요이", + 78, + 15, + 96, + "che_event_집중", + [ + 12774, + 26625, + 29400, + 765027, + 31527 + ], + 1, + "2b49c945.png?=20230921", + 64, + "che_231130_sSDJ", + 91, + [ + "hall:dex4", + "hall:killnum", + "hall:winrate" + ] + ], + [ + "【64기】젤렌스키", + 101, + 70, + 15, + "che_event_척사", + [ + 17654, + 10903, + 23094, + 67298, + 438237 + ], + 1, + "ef940c31.jpg?=20231130", + 64, + "che_231130_sSDJ", + 92, + [ + "hall:betwin", + "hall:dex5", + "hall:tlrate" + ] + ], + [ + "【64기】크돌프", + 85, + 61, + 13, + "che_event_필살", + [ + 27918, + 3455, + 17240, + 39075, + 220287 + ], + 1, + "4fade407.png?=20231130", + 64, + "che_231130_sSDJ", + 93, + [ + "hall:dex5", + "hall:tlrate" + ] + ], + [ + "【64기】Parrot", + 98, + 74, + 15, + "che_event_징병", + [ + 44034, + 18035, + 21292, + 86406, + 614700 + ], + 1, + "c34132a2.gif?=20231224", + 64, + "che_231130_sSDJ", + 94, + [ + "hall:dex5", + "hall:tlrate" + ] + ], + [ + "【64기】ㅊㄹㅊㄹ", + 79, + 95, + 15, + "che_event_무쌍", + [ + 47940, + 825179, + 16051, + 161626, + 71495 + ], + 1, + "63f1c106.png?=20230223", + 64, + "che_231130_sSDJ", + 95, + [ + "hall:dex2", + "hall:killcrew", + "hall:killnum", + "hall:killrate", + "hall:killrate_person", + "hall:tsrate", + "hall:ttrate", + "hall:warnum", + "hall:winrate" + ] + ], + [ + "【64기】슈퍼블루문", + 80, + 65, + 14, + "che_event_의술", + [ + 74817, + 108953, + 28350, + 37780, + 22948 + ], + 1, + "1cb49970.png?=20231224", + 64, + "che_231130_sSDJ", + 99, + [ + "hall:dex2", + "hall:tlrate", + "hall:ttrate" + ] + ], + [ + "【64기】panpenpan", + 75, + 16, + 96, + "che_event_척사", + [ + 27783, + 34916, + 18743, + 569355, + 59030 + ], + 0, + "default.jpg", + 64, + "che_231130_sSDJ", + 100, + [ + "hall:dedication", + "hall:killrate", + "hall:killrate_person" + ] + ], + [ + "【64기】POCARI", + 76, + 15, + 96, + "che_event_필살", + [ + 22948, + 16632, + 23719, + 503743, + 61486 + ], + 1, + "39eb983d.png?=20231130", + 64, + "che_231130_sSDJ", + 101, + [ + "hall:betrate" + ] + ], + [ + "【64기】깨수깡", + 101, + 71, + 15, + "che_event_징병", + [ + 51503, + 52575, + 104805, + 145188, + 546298 + ], + 0, + "default.jpg", + 64, + "che_231130_sSDJ", + 102, + [ + "hall:betwin", + "hall:dex5", + "hall:tlrate", + "hall:ttrate" + ] + ], + [ + "【64기】코코아", + 78, + 15, + 94, + "che_event_환술", + [ + 45157, + 3877, + 23128, + 545299, + 15872 + ], + 1, + "445209e2.jpg?=20231130", + 64, + "che_231130_sSDJ", + 103, + [ + "hall:betrate", + "hall:tirate" + ] + ], + [ + "【64기】간지밍이", + 67, + 13, + 79, + "che_event_필살", + [ + 18202, + 6343, + 15360, + 369302, + 24131 + ], + 1, + "19c0150f.png?=20230615", + 64, + "che_231130_sSDJ", + 104, + [ + "hall:betgold", + "hall:betwin", + "hall:betwingold", + "hall:dex4", + "hall:killcrew", + "hall:killcrew_person", + "hall:killrate_person" + ] + ], + [ + "【64기】와일드플라워", + 76, + 15, + 97, + "che_event_환술", + [ + 39232, + 27492, + 43136, + 598341, + 50933 + ], + 0, + "default.jpg", + 64, + "che_231130_sSDJ", + 105, + [ + "chief:7" + ] + ], + [ + "【64기】역병을뒤집으면병역", + 66, + 79, + 14, + "che_event_척사", + [ + 19233, + 19731, + 363968, + 18817, + 19108 + ], + 1, + "3ee5b847.jpg?=20231223", + 64, + "che_231130_sSDJ", + 106, + [ + "hall:betgold", + "hall:betwin", + "hall:betwingold", + "hall:dedication", + "hall:dex3", + "hall:experience", + "hall:occupied" + ] + ], + [ + "【64기】맥콜", + 76, + 94, + 16, + "che_event_필살", + [ + 371338, + 8694, + 26081, + 96996, + 53663 + ], + 0, + "default.jpg", + 64, + "che_231130_sSDJ", + 109, + [ + "hall:dex1", + "hall:tsrate" + ] + ], + [ + "【64기】RPG", + 90, + 16, + 80, + "che_event_반계", + [ + 82876, + 14272, + 28538, + 646755, + 33013 + ], + 1, + "10e5f66d.gif?=20231202", + 64, + "che_231130_sSDJ", + 110, + [ + "hall:dex1", + "hall:firenum" + ] + ], + [ + "【64기】북오더", + 78, + 93, + 15, + "che_event_척사", + [ + 16321, + 13821, + 479335, + 72025, + 19050 + ], + 1, + "f39217aa.gif?=20220916", + 64, + "che_231130_sSDJ", + 111, + [ + "hall:dex3", + "hall:tsrate" + ] + ], + [ + "【64기】산타크렌스", + 83, + 62, + 13, + "che_event_공성", + [ + 18803, + 4540, + 5921, + 21094, + 645181 + ], + 1, + "bd0e2a76.png?=20231130", + 64, + "che_231130_sSDJ", + 112, + [ + "hall:betgold", + "hall:betrate", + "hall:betwin", + "hall:betwingold", + "hall:dex5", + "hall:experience", + "hall:killcrew", + "hall:killrate", + "hall:occupied", + "hall:tlrate" + ] + ], + [ + "【64기】대교", + 98, + 74, + 15, + "che_event_필살", + [ + 26069, + 17738, + 661647, + 95551, + 66270 + ], + 1, + "9f0e6dcc.jpg?=20220808", + 64, + "che_231130_sSDJ", + 113, + [ + "hall:dex3", + "hall:tlrate" + ] + ], + [ + "【64기】외심장", + 78, + 16, + 94, + "che_event_환술", + [ + 28009, + 15196, + 19830, + 540123, + 13738 + ], + 1, + "36110cd.jpg?=20180826", + 64, + "che_231130_sSDJ", + 114, + [ + "hall:tirate" + ] + ], + [ + "【64기】셀레미", + 75, + 15, + 98, + "che_event_집중", + [ + 27571, + 26795, + 29471, + 800079, + 58994 + ], + 1, + "7cc3cabb.jpg?=20231125", + 64, + "che_231130_sSDJ", + 115, + [ + "chief:12", + "hall:betrate", + "hall:dedication", + "hall:dex4", + "hall:experience", + "hall:killnum", + "hall:killrate", + "hall:killrate_person", + "hall:occupied", + "hall:tirate", + "hall:winrate" + ] + ], + [ + "【64기】코난", + 92, + 17, + 75, + "che_event_집중", + [ + 50838, + 13544, + 63495, + 544707, + 77736 + ], + 1, + "05b2351f.jpg?=20231209", + 64, + "che_231130_sSDJ", + 116, + [ + "chief:9", + "hall:dedication" + ] + ], + [ + "【64기】별이다섯개이렇게", + 79, + 94, + 15, + "che_event_격노", + [ + 305307, + 9393, + 19445, + 31545, + 10039 + ], + 1, + "b7b758f8.jpg?=20231205", + 64, + "che_231130_sSDJ", + 118, + [ + "hall:dex1", + "hall:tsrate" + ] + ], + [ + "【64기】독구", + 77, + 97, + 15, + "che_event_무쌍", + [ + 890870, + 9036, + 44751, + 85056, + 49514 + ], + 1, + "3716ada7.gif?=20231207", + 64, + "che_231130_sSDJ", + 119, + [ + "hall:betgold", + "hall:betrate", + "hall:betwin", + "hall:betwingold", + "hall:dex1", + "hall:experience", + "hall:killcrew", + "hall:killrate", + "hall:killrate_person", + "hall:occupied", + "hall:tsrate", + "hall:winrate" + ] + ], + [ + "【64기】BlueArchive", + 78, + 93, + 16, + "che_event_필살", + [ + 644072, + 12444, + 31584, + 131618, + 63576 + ], + 0, + "default.jpg", + 64, + "che_231130_sSDJ", + 120, + [ + "chief:10", + "hall:betgold", + "hall:betwin", + "hall:betwingold", + "hall:dedication", + "hall:dex1", + "hall:experience" + ] + ], + [ + "【64기】예턴장", + 78, + 16, + 92, + "che_event_집중", + [ + 41549, + 23755, + 33081, + 416709, + 49185 + ], + 0, + "default.jpg", + 64, + "che_231130_sSDJ", + 123, + [ + "hall:betwin", + "hall:ttrate" + ] + ], + [ + "【64기】황혼중", + 75, + 15, + 97, + "che_event_척사", + [ + 15877, + 5720, + 20658, + 219591, + 36755 + ], + 1, + "e5161df9.jpg?=20231110", + 64, + "che_231130_sSDJ", + 124, + [ + "hall:tirate", + "hall:ttrate" + ] + ], + [ + "【64기】카라", + 13, + 65, + 77, + "che_event_신산", + [ + 0, + 0, + 0, + 0, + 0 + ], + 1, + "9495d4a2.jpg?=20231130", + 64, + "che_231130_sSDJ", + 125, + [ + "hall:firenum" + ] + ], + [ + "【64기】무지성4반복5반복", + 65, + 13, + 82, + "che_event_집중", + [ + 10722, + 6465, + 21842, + 367217, + 19487 + ], + 0, + "default.jpg", + 64, + "che_231130_sSDJ", + 129, + [ + "hall:dex4", + "hall:killcrew_person", + "hall:killrate_person", + "hall:tirate" + ] + ], + [ + "【64기】척", + 78, + 93, + 16, + "che_event_저격", + [ + 48491, + 35959, + 690932, + 104669, + 79275 + ], + 1, + "7cb75480.png?=20221202", + 64, + "che_231130_sSDJ", + 130, + [ + "hall:dex3", + "hall:killrate_person" + ] + ], + [ + "【64기】청기사", + 15, + 71, + 100, + "che_event_신중", + [ + 0, + 0, + 0, + 0, + 0 + ], + 1, + "9fdc4fd.jpg?=20181213", + 64, + "che_231130_sSDJ", + 136, + [ + "hall:firenum", + "hall:tirate" + ] + ], + [ + "【64기】레이무", + 68, + 13, + 80, + "che_event_집중", + [ + 11962, + 9871, + 7657, + 353608, + 7824 + ], + 0, + "default.jpg", + 64, + "che_231130_sSDJ", + 137, + [ + "hall:dex4", + "hall:experience", + "hall:firenum", + "hall:killcrew_person", + "hall:killnum", + "hall:ttrate", + "hall:winrate" + ] + ], + [ + "【64기】Samo", + 18, + 73, + 95, + "che_event_징병", + [ + 38043, + 36683, + 11154, + 12061, + 6900 + ], + 1, + "0b53e4d0.png?=20230502", + 64, + "che_231130_sSDJ", + 139, + [ + "hall:dedication" + ] + ], + [ + "【64기】진솔", + 15, + 72, + 99, + "che_event_집중", + [ + 0, + 0, + 0, + 0, + 0 + ], + 1, + "261b4a01.jpg?=20230921", + 64, + "che_231130_sSDJ", + 140, + [ + "hall:dedication", + "hall:tirate" + ] + ], + [ + "【64기】くま", + 78, + 16, + 92, + "che_event_집중", + [ + 49377, + 16574, + 53748, + 856992, + 68816 + ], + 1, + "770f53.jpg?=20190718", + 64, + "che_231130_sSDJ", + 142, + [ + "chief:11", + "hall:dex4", + "hall:experience", + "hall:killcrew", + "hall:killnum", + "hall:killrate", + "hall:occupied", + "hall:warnum", + "hall:winrate" + ] + ], + [ + "【64기】팍씨", + 80, + 15, + 91, + "che_event_필살", + [ + 21651, + 15427, + 18152, + 285691, + 15053 + ], + 1, + "67601b4e.jpg?=20231101", + 64, + "che_231130_sSDJ", + 226, + [ + "hall:ttrate" + ] + ], + [ + "【64기】지원", + 16, + 72, + 100, + "che_event_의술", + [ + 0, + 0, + 0, + 0, + 0 + ], + 1, + "eb7f760e.webp?=20231019", + 64, + "che_231130_sSDJ", + 229, + [ + "hall:ttrate" + ] + ], + [ + "【64기】마지막춤은나와함께", + 76, + 16, + 94, + "che_event_집중", + [ + 63729, + 12404, + 37341, + 495780, + 47777 + ], + 0, + "default.jpg", + 64, + "che_231130_sSDJ", + 233, + [ + "chief:5", + "hall:occupied" + ] + ], + [ + "【64기】경국지색소교", + 90, + 79, + 15, + "che_event_징병", + [ + 16799, + 61248, + 674726, + 118222, + 34289 + ], + 1, + "ad2669b5.jpg?=20230605", + 64, + "che_231130_sSDJ", + 235, + [ + "hall:dex2", + "hall:dex3", + "hall:warnum" + ] + ], + [ + "【64기】기술연구", + 15, + 72, + 100, + "che_event_징병", + [ + 0, + 0, + 0, + 0, + 0 + ], + 0, + "default.jpg", + 64, + "che_231130_sSDJ", + 241, + [ + "hall:tirate" + ] + ], + [ + "【64기】세르네오", + 65, + 79, + 14, + "che_event_견고", + [ + 28328, + 318264, + 9282, + 49121, + 20834 + ], + 0, + "default.jpg", + 64, + "che_231130_sSDJ", + 253, + [ + "hall:dex2", + "hall:firenum", + "hall:tsrate" + ] + ], + [ + "【64기】서림동", + 75, + 93, + 15, + "che_event_위압", + [ + 37828, + 374959, + 12536, + 92295, + 27907 + ], + 0, + "default.jpg", + 64, + "che_231130_sSDJ", + 290, + [ + "hall:dex2" + ] + ], + [ + "【64기】협동전조아", + 15, + 88, + 82, + "che_event_의술", + [ + 0, + 0, + 0, + 0, + 0 + ], + 1, + "45bf072c.jpg?=20231030", + 64, + "che_231130_sSDJ", + 353, + [ + "hall:firenum" + ] + ], + [ + "【64기】BARBAROSSA", + 89, + 15, + 77, + "che_event_반계", + [ + 31944, + 7438, + 17913, + 215165, + 22148 + ], + 0, + "default.jpg", + 64, + "che_231130_sSDJ", + 431, + [ + "hall:betrate" + ] + ], + [ + "【64기】kimset23", + 59, + 87, + 32, + "che_event_기병", + [ + 20289, + 134082, + 113756, + 47759, + 48166 + ], + 0, + "default.jpg", + 64, + "che_231130_sSDJ", + 504, + [ + "hall:dex2", + "hall:dex3" + ] + ], + [ + "【64기】다루이젠", + 84, + 75, + 16, + "che_event_견고", + [ + 22222, + 208568, + 5968, + 26320, + 0 + ], + 1, + "d3b9aeeb.jpg?=20231213", + 64, + "che_231130_sSDJ", + 652, + [ + "hall:dex2" + ] + ], + [ + "【65기】척", + 69, + 82, + 13, + "che_event_필살", + [ + 392632, + 28904, + 59072, + 60448, + 28911 + ], + 1, + "7cb75480.png?=20221202", + 65, + "che_231228_IJng", + 4, + [ + "hall:firenum" + ] + ], + [ + "【65기】똑똑꾸", + 66, + 13, + 84, + "che_event_필살", + [ + 23033, + 10937, + 5124, + 271078, + 16637 + ], + 1, + "f64acfe3.jpg?=20231228", + 65, + "che_231228_IJng", + 5, + [ + "hall:tirate" + ] + ], + [ + "【65기】SARS", + 78, + 15, + 98, + "che_event_집중", + [ + 72596, + 2905, + 10510, + 1005974, + 21339 + ], + 1, + "b84944.jpg?=20180829", + 65, + "che_231228_IJng", + 6, + [ + "hall:dex4", + "hall:firenum", + "hall:killcrew", + "hall:killcrew_person", + "hall:killnum", + "hall:killrate", + "hall:killrate_person", + "hall:tirate", + "hall:winrate" + ] + ], + [ + "【65기】카이스트", + 67, + 13, + 83, + "che_event_신산", + [ + 51928, + 28750, + 31651, + 520785, + 19202 + ], + 1, + "e7e27cd6.jpg?=20221125", + 65, + "che_231228_IJng", + 7, + [ + "hall:firenum" + ] + ], + [ + "【65기】독구", + 67, + 13, + 85, + "che_event_필살", + [ + 45109, + 33859, + 13771, + 719796, + 25600 + ], + 1, + "1b9a260f.png?=20231228", + 65, + "che_231228_IJng", + 11, + [ + "chief:7", + "hall:betrate", + "hall:dex4", + "hall:experience", + "hall:killcrew", + "hall:killcrew_person", + "hall:killnum", + "hall:killrate", + "hall:killrate_person", + "hall:occupied", + "hall:tirate", + "hall:winrate" + ] + ], + [ + "【65기】마라홀릭망해라", + 70, + 13, + 78, + "che_event_신산", + [ + 19516, + 8500, + 16834, + 348445, + 22031 + ], + 1, + "6dd9be2a.jpg?=20231228", + 65, + "che_231228_IJng", + 12, + [ + "hall:firenum" + ] + ], + [ + "【65기】♡ㅅ♡", + 68, + 13, + 81, + "che_event_필살", + [ + 92705, + 19934, + 16826, + 390623, + 15553 + ], + 1, + "84a1806d.png?=20240123", + 65, + "che_231228_IJng", + 15, + [ + "hall:betgold", + "hall:betrate", + "hall:betwin", + "hall:betwingold", + "hall:tirate" + ] + ], + [ + "【65기】치와와", + 68, + 81, + 13, + "che_event_돌격", + [ + 541067, + 25916, + 24934, + 143566, + 24722 + ], + 1, + "d0f7b36c.jpg?=20231228", + 65, + "che_231228_IJng", + 26, + [ + "hall:dex1", + "hall:occupied", + "hall:tsrate" + ] + ], + [ + "【65기】우사미", + 69, + 13, + 84, + "che_event_징병", + [ + 18498, + 18893, + 17637, + 633199, + 29335 + ], + 1, + "781f5643.jpg?=20231228", + 65, + "che_231228_IJng", + 28, + [ + "hall:betgold", + "hall:betwin", + "hall:betwingold", + "hall:dedication", + "hall:dex4", + "hall:killcrew", + "hall:killcrew_person", + "hall:killnum", + "hall:warnum" + ] + ], + [ + "【65기】만샘", + 69, + 13, + 80, + "che_event_신중", + [ + 47407, + 12018, + 6028, + 404634, + 31756 + ], + 1, + "60da5bdc.jpg?=20231228", + 65, + "che_231228_IJng", + 29, + [ + "hall:betrate", + "hall:dex5" + ] + ], + [ + "【65기】Maxamuud", + 82, + 66, + 13, + "che_event_격노", + [ + 25439, + 27283, + 391505, + 100038, + 26427 + ], + 0, + "default.jpg", + 65, + "che_231228_IJng", + 31, + [ + "hall:dex3", + "hall:tlrate" + ] + ], + [ + "【65기】ㄷㄱㄷㄱ", + 67, + 13, + 81, + "che_event_필살", + [ + 52319, + 25559, + 24990, + 491958, + 28641 + ], + 0, + "default.jpg", + 65, + "che_231228_IJng", + 36, + [ + "hall:dedication" + ] + ], + [ + "【65기】매너플레이", + 82, + 65, + 13, + "che_event_필살", + [ + 23789, + 19376, + 415283, + 103553, + 22318 + ], + 1, + "50abb324.jpg?=20231228", + 65, + "che_231228_IJng", + 37, + [ + "hall:dex3", + "hall:tlrate" + ] + ], + [ + "【65기】네이", + 82, + 15, + 95, + "che_event_집중", + [ + 50638, + 51688, + 25234, + 1062407, + 41387 + ], + 0, + "default.jpg", + 65, + "che_231228_IJng", + 46, + [ + "hall:betwin", + "hall:dex4", + "hall:killcrew", + "hall:killcrew_person", + "hall:killnum", + "hall:killrate_person", + "hall:warnum", + "hall:winrate" + ] + ], + [ + "【65기】이안", + 68, + 13, + 83, + "che_event_필살", + [ + 22776, + 14329, + 32989, + 640146, + 14541 + ], + 1, + "881d4662.jpg?=20231229", + 65, + "che_231228_IJng", + 49, + [ + "hall:dex4", + "hall:experience", + "hall:killcrew", + "hall:killcrew_person", + "hall:killnum", + "hall:killrate", + "hall:killrate_person", + "hall:occupied", + "hall:ttrate", + "hall:warnum", + "hall:winrate" + ] + ], + [ + "【65기】Hide_D", + 70, + 13, + 80, + "che_event_신중", + [ + 35231, + 29955, + 31243, + 396644, + 30732 + ], + 1, + "4569d848.png?=20230612", + 65, + "che_231228_IJng", + 52, + [ + "hall:tirate", + "hall:ttrate" + ] + ], + [ + "【65기】외심장", + 67, + 13, + 83, + "che_event_필살", + [ + 34500, + 22546, + 27985, + 641693, + 33303 + ], + 1, + "36110cd.jpg?=20180826", + 65, + "che_231228_IJng", + 58, + [ + "hall:dex4", + "hall:dex5", + "hall:experience", + "hall:occupied", + "hall:tirate", + "hall:warnum" + ] + ], + [ + "【65기】와일드플라워", + 68, + 81, + 14, + "che_event_돌격", + [ + 46928, + 35039, + 664490, + 137327, + 25831 + ], + 1, + "857597b3.jpg?=20230831", + 65, + "che_231228_IJng", + 63, + [ + "chief:10", + "hall:dex3", + "hall:occupied", + "hall:tsrate", + "hall:ttrate" + ] + ], + [ + "【65기】경국지색소교", + 93, + 81, + 15, + "che_event_저격", + [ + 29848, + 47548, + 626776, + 95899, + 29025 + ], + 1, + "ad2669b5.jpg?=20230605", + 65, + "che_231228_IJng", + 64, + [ + "hall:dex3", + "hall:tlrate" + ] + ], + [ + "【65기】로비", + 13, + 61, + 86, + "che_event_의술", + [ + 0, + 0, + 0, + 0, + 0 + ], + 1, + "3e5926b7.png?=20231228", + 65, + "che_231228_IJng", + 65, + [ + "hall:dedication", + "hall:tirate" + ] + ], + [ + "【65기】슬라임", + 87, + 60, + 13, + "che_event_공성", + [ + 13803, + 16489, + 2432, + 33614, + 647550 + ], + 1, + "2d2da7c0.jpg?=20231130", + 65, + "che_231228_IJng", + 67, + [ + "chief:6", + "hall:dex5", + "hall:experience", + "hall:killcrew", + "hall:killrate", + "hall:occupied", + "hall:tlrate", + "hall:winrate" + ] + ], + [ + "【65기】요미", + 68, + 83, + 13, + "che_event_돌격", + [ + 24363, + 41330, + 594299, + 96298, + 20672 + ], + 1, + "f52ccfa3.jpg?=20231228", + 65, + "che_231228_IJng", + 68, + [ + "hall:dex3", + "hall:tsrate", + "hall:ttrate" + ] + ], + [ + "【65기】호나", + 71, + 80, + 13, + "che_event_격노", + [ + 500830, + 22641, + 23245, + 86649, + 9372 + ], + 0, + "default.jpg", + 65, + "che_231228_IJng", + 69, + [ + "hall:dex1" + ] + ], + [ + "【65기】전기 독구", + 72, + 77, + 13, + "che_event_필살", + [ + 381733, + 16288, + 17615, + 76191, + 24719 + ], + 1, + "3716ada7.gif?=20231207", + 65, + "che_231228_IJng", + 73, + [ + "hall:betgold", + "hall:betwin", + "hall:betwingold" + ] + ], + [ + "【65기】페르난도", + 69, + 13, + 80, + "che_event_필살", + [ + 40502, + 33686, + 21420, + 502261, + 19696 + ], + 0, + "default.jpg", + 65, + "che_231228_IJng", + 74, + [ + "hall:ttrate" + ] + ], + [ + "【65기】QWER", + 70, + 13, + 82, + "che_event_필살", + [ + 38440, + 18425, + 34190, + 688868, + 27414 + ], + 1, + "d0e54657.jpg?=20240103", + 65, + "che_231228_IJng", + 75, + [ + "hall:betrate", + "hall:dex4", + "hall:killcrew", + "hall:killcrew_person", + "hall:killnum", + "hall:killrate", + "hall:killrate_person", + "hall:warnum", + "hall:winrate" + ] + ], + [ + "【65기】장원영", + 68, + 14, + 80, + "che_event_필살", + [ + 20851, + 25596, + 20614, + 504616, + 24444 + ], + 1, + "e6a64f3b.jpg?=20240116", + 65, + "che_231228_IJng", + 77, + [ + "hall:dedication", + "hall:experience" + ] + ], + [ + "【65기】링", + 66, + 84, + 13, + "che_event_돌격", + [ + 36395, + 421320, + 18043, + 65091, + 15896 + ], + 1, + "de2d063e.jpg?=20231230", + 65, + "che_231228_IJng", + 78, + [ + "hall:betgold", + "hall:betrate", + "hall:betwingold", + "hall:dex2", + "hall:tsrate" + ] + ], + [ + "【65기】라콘타", + 67, + 82, + 13, + "che_event_척사", + [ + 33896, + 21922, + 461775, + 50143, + 24529 + ], + 1, + "9523c443.webp?=20231228", + 65, + "che_231228_IJng", + 79, + [ + "hall:betwin", + "hall:dex3", + "hall:tsrate" + ] + ], + [ + "【65기】저격수", + 68, + 80, + 13, + "che_event_무쌍", + [ + 19688, + 15004, + 456587, + 33565, + 21534 + ], + 0, + "default.jpg", + 65, + "che_231228_IJng", + 81, + [ + "hall:dex3", + "hall:killrate", + "hall:killrate_person" + ] + ], + [ + "【65기】라이언", + 96, + 76, + 17, + "che_event_무쌍", + [ + 1136583, + 23510, + 33355, + 134542, + 50571 + ], + 1, + "071c777a.gif?=20231228", + 65, + "che_231228_IJng", + 83, + [ + "hall:betgold", + "hall:betrate", + "hall:betwin", + "hall:betwingold", + "hall:dex1", + "hall:killcrew", + "hall:killcrew_person", + "hall:warnum" + ] + ], + [ + "【65기】사스케", + 86, + 67, + 13, + "che_event_필살", + [ + 920633, + 43565, + 42868, + 114373, + 26406 + ], + 1, + "4420cfbf.jpg?=20231207", + 65, + "che_231228_IJng", + 84, + [ + "hall:betgold", + "hall:betwin", + "hall:betwingold", + "hall:dex1", + "hall:experience", + "hall:killcrew", + "hall:killcrew_person", + "hall:killnum", + "hall:killrate", + "hall:killrate_person", + "hall:occupied", + "hall:tlrate", + "hall:warnum", + "hall:winrate" + ] + ], + [ + "【65기】독구홍련화무십일홍", + 69, + 81, + 13, + "che_event_기병", + [ + 3556, + 19972, + 267156, + 49856, + 3907 + ], + 0, + "default.jpg", + 65, + "che_231228_IJng", + 85, + [ + "hall:dex3" + ] + ], + [ + "【65기】지력충", + 60, + 21, + 83, + "che_event_집중", + [ + 31704, + 24487, + 16661, + 516915, + 25413 + ], + 0, + "default.jpg", + 65, + "che_231228_IJng", + 86, + [ + "hall:betrate" + ] + ], + [ + "【65기】Navy마초", + 68, + 81, + 13, + "che_event_무쌍", + [ + 34769, + 312438, + 34310, + 81846, + 12253 + ], + 1, + "37644ed3.png?=20230831", + 65, + "che_231228_IJng", + 88, + [ + "hall:dex2" + ] + ], + [ + "【65기】니쉬", + 77, + 13, + 72, + "che_event_집중", + [ + 31254, + 30212, + 9286, + 325774, + 29554 + ], + 1, + "396a27ce.png?=20240116", + 65, + "che_231228_IJng", + 90, + [ + "hall:dedication", + "hall:dex5", + "hall:occupied" + ] + ], + [ + "【65기】ㅊㄹㅊㄹ", + 71, + 82, + 13, + "che_event_필살", + [ + 68089, + 608512, + 28278, + 77366, + 25193 + ], + 1, + "63f1c106.png?=20230223", + 65, + "che_231228_IJng", + 91, + [ + "chief:8", + "hall:dex2", + "hall:killnum", + "hall:killrate", + "hall:killrate_person", + "hall:winrate" + ] + ], + [ + "【65기】초아인지", + 67, + 82, + 13, + "che_event_위압", + [ + 59220, + 393830, + 18784, + 56027, + 20693 + ], + 1, + "c314b02e.jpg?=20230830", + 65, + "che_231228_IJng", + 92, + [ + "hall:dex2", + "hall:tsrate" + ] + ], + [ + "【65기】평민킬러", + 67, + 85, + 13, + "che_event_필살", + [ + 925167, + 12277, + 37203, + 97385, + 25010 + ], + 1, + "b6291bc6.jpg?=20231130", + 65, + "che_231228_IJng", + 93, + [ + "chief:12", + "hall:betgold", + "hall:betwin", + "hall:betwingold", + "hall:dedication", + "hall:dex1", + "hall:experience", + "hall:killcrew", + "hall:killcrew_person", + "hall:killnum", + "hall:killrate", + "hall:killrate_person", + "hall:tsrate", + "hall:warnum", + "hall:winrate" + ] + ], + [ + "【65기】북오더", + 68, + 82, + 14, + "che_event_필살", + [ + 37187, + 451219, + 12729, + 60226, + 15244 + ], + 1, + "f39217aa.gif?=20220916", + 65, + "che_231228_IJng", + 94, + [ + "hall:dex2", + "hall:tsrate" + ] + ], + [ + "【65기】독피자", + 67, + 13, + 83, + "che_event_환술", + [ + 27730, + 1219, + 6173, + 304677, + 16849 + ], + 1, + "06143703.gif?=20231207", + 65, + "che_231228_IJng", + 95, + [ + "hall:firenum", + "hall:tirate" + ] + ], + [ + "【65기】스텔라의베이스어택", + 82, + 70, + 13, + "che_event_필살", + [ + 175209, + 17736, + 38349, + 48136, + 539756 + ], + 1, + "7eae550f.gif?=20231226", + 65, + "che_231228_IJng", + 96, + [ + "chief:11", + "hall:betgold", + "hall:betrate", + "hall:betwingold", + "hall:dex1", + "hall:experience", + "hall:killrate", + "hall:occupied", + "hall:tlrate" + ] + ], + [ + "【65기】크렌스", + 78, + 95, + 15, + "che_event_필살", + [ + 735853, + 29317, + 57624, + 99822, + 33468 + ], + 0, + "default.jpg", + 65, + "che_231228_IJng", + 97, + [ + "hall:betwin", + "hall:dex1" + ] + ], + [ + "【65기】국04", + 69, + 78, + 13, + "che_event_저격", + [ + 212607, + 5655, + 14023, + 32447, + 10505 + ], + 1, + "546ecd10.png?=20231007", + 65, + "che_231228_IJng", + 98, + [ + "hall:betrate" + ] + ], + [ + "【65기】지원", + 67, + 80, + 13, + "che_event_필살", + [ + 441529, + 17057, + 27860, + 51702, + 13730 + ], + 1, + "eb7f760e.webp?=20231019", + 65, + "che_231228_IJng", + 99, + [ + "hall:dex1" + ] + ], + [ + "【65기】간지밍이", + 67, + 14, + 79, + "che_event_집중", + [ + 30875, + 25446, + 29077, + 449870, + 34252 + ], + 1, + "19c0150f.png?=20230615", + 65, + "che_231228_IJng", + 100, + [ + "hall:betgold", + "hall:betwin", + "hall:betwingold", + "hall:dex5" + ] + ], + [ + "【65기】ㅇㅇ", + 69, + 13, + 82, + "che_event_필살", + [ + 35254, + 8305, + 7752, + 468579, + 12826 + ], + 1, + "c311bfd1.png?=20240124", + 65, + "che_231228_IJng", + 101, + [ + "hall:firenum", + "hall:killnum", + "hall:tirate" + ] + ], + [ + "【65기】늦파이", + 66, + 82, + 13, + "che_event_위압", + [ + 315061, + 13461, + 15335, + 40323, + 11647 + ], + 1, + "67601b4e.jpg?=20231101", + 65, + "che_231228_IJng", + 102, + [ + "hall:ttrate" + ] + ], + [ + "【65기】조승상", + 81, + 70, + 13, + "che_event_돌격", + [ + 72974, + 660164, + 35977, + 185781, + 52511 + ], + 1, + "eb0a14e1.png?=20240123", + 65, + "che_231228_IJng", + 104, + [ + "hall:dex2", + "hall:dex5", + "hall:firenum", + "hall:occupied", + "hall:tlrate", + "hall:ttrate", + "hall:winrate" + ] + ], + [ + "【65기】대교", + 78, + 13, + 73, + "che_event_필살", + [ + 34010, + 5919, + 22056, + 595625, + 22153 + ], + 1, + "9f0e6dcc.jpg?=20220808", + 65, + "che_231228_IJng", + 105, + [ + "chief:5", + "hall:dedication", + "hall:dex4", + "hall:experience", + "hall:killcrew_person", + "hall:warnum" + ] + ], + [ + "【65기】초코아몬드", + 70, + 13, + 79, + "che_event_집중", + [ + 29067, + 24158, + 15518, + 341735, + 32614 + ], + 1, + "6b371ec.jpg?=20190909", + 65, + "che_231228_IJng", + 107, + [ + "hall:dedication", + "hall:dex5" + ] + ], + [ + "【65기】くま", + 68, + 13, + 82, + "che_event_필살", + [ + 57902, + 16519, + 19863, + 584274, + 38492 + ], + 1, + "770f53.jpg?=20190718", + 65, + "che_231228_IJng", + 108, + [ + "chief:9", + "hall:dedication", + "hall:dex4", + "hall:experience" + ] + ], + [ + "【65기】료우기시키", + 68, + 14, + 78, + "che_event_신산", + [ + 7204, + 6773, + 10127, + 203737, + 5494 + ], + 1, + "72a190e.jpg?=20220109", + 65, + "che_231228_IJng", + 109, + [ + "hall:ttrate" + ] + ], + [ + "【65기】장윈영", + 78, + 69, + 14, + "che_event_위압", + [ + 14371, + 193520, + 1814, + 22628, + 6345 + ], + 1, + "b954ba42.jpg?=20231229", + 65, + "che_231228_IJng", + 110, + [ + "hall:dex2" + ] + ], + [ + "【65기】소게킹", + 21, + 69, + 70, + "che_event_척사", + [ + 54140, + 120292, + 37219, + 56584, + 12133 + ], + 1, + "cbc84f52.gif?=20231228", + 65, + "che_231228_IJng", + 112, + [ + "hall:dex2", + "hall:firenum" + ] + ], + [ + "【65기】랜덤다이스", + 78, + 69, + 13, + "che_event_궁병", + [ + 55020, + 390744, + 20941, + 59447, + 17692 + ], + 1, + "ee672e21.png?=20231228", + 65, + "che_231228_IJng", + 116, + [ + "hall:dex2" + ] + ], + [ + "【65기】카라카", + 83, + 64, + 13, + "che_event_척사", + [ + 36945, + 74089, + 334811, + 127379, + 19211 + ], + 0, + "default.jpg", + 65, + "che_231228_IJng", + 119, + [ + "hall:dex3", + "hall:tlrate" + ] + ], + [ + "【65기】카라", + 13, + 73, + 73, + "che_event_신산", + [ + 0, + 0, + 0, + 0, + 0 + ], + 1, + "9495d4a2.jpg?=20231130", + 65, + "che_231228_IJng", + 192, + [ + "hall:firenum" + ] + ], + [ + "【65기】카부쿠와", + 69, + 81, + 14, + "che_event_척사", + [ + 513156, + 40476, + 18981, + 82756, + 21252 + ], + 1, + "005f948d.jpg?=20231229", + 65, + "che_231228_IJng", + 193, + [ + "hall:dex1", + "hall:killrate_person" + ] + ], + [ + "【65기】kimset23", + 66, + 77, + 13, + "che_event_무쌍", + [ + 24411, + 42160, + 153165, + 43379, + 9196 + ], + 0, + "default.jpg", + 65, + "che_231228_IJng", + 196, + [ + "hall:tsrate" + ] + ], + [ + "【65기】앵글러쩡", + 85, + 64, + 13, + "che_event_위압", + [ + 20209, + 34707, + 394910, + 74618, + 28355 + ], + 1, + "8bc2b9dd.png?=20240122", + 65, + "che_231228_IJng", + 205, + [ + "hall:betgold", + "hall:betwingold", + "hall:dex3", + "hall:tlrate" + ] + ], + [ + "【65기】키리코", + 15, + 85, + 86, + "che_event_신산", + [ + 0, + 0, + 0, + 0, + 0 + ], + 1, + "bd82ed7d.jpg?=20231201", + 65, + "che_231228_IJng", + 220, + [ + "hall:firenum" + ] + ], + [ + "【65기】Samo", + 95, + 78, + 15, + "che_event_저격", + [ + 727966, + 19678, + 31464, + 136579, + 29788 + ], + 1, + "0b53e4d0.png?=20230502", + 65, + "che_231228_IJng", + 221, + [ + "hall:tlrate" + ] + ], + [ + "【65기】서림동", + 80, + 93, + 15, + "che_event_필살", + [ + 870420, + 20320, + 49584, + 169120, + 24634 + ], + 0, + "default.jpg", + 65, + "che_231228_IJng", + 222, + [ + "hall:dex1", + "hall:tsrate" + ] + ], + [ + "【65기】미스티", + 69, + 14, + 78, + "che_event_반계", + [ + 67005, + 30386, + 56128, + 445217, + 35448 + ], + 1, + "1aadcba.png?=20180908", + 65, + "che_231228_IJng", + 226, + [ + "hall:dex5" + ] + ], + [ + "【65기】밯빠받다박탸희차맣", + 69, + 14, + 78, + "che_event_필살", + [ + 37340, + 32559, + 13526, + 437081, + 36179 + ], + 1, + "69dbd505.jpg?=20231228", + 65, + "che_231228_IJng", + 257, + [ + "hall:betrate", + "hall:dex5" + ] + ], + [ + "【65기】황혼중", + 76, + 13, + 73, + "che_event_집중", + [ + 38265, + 10349, + 13092, + 267924, + 15961 + ], + 1, + "e5161df9.jpg?=20231110", + 65, + "che_231228_IJng", + 268, + [ + "hall:ttrate" + ] + ], + [ + "【65기】협동전하고싶다", + 81, + 15, + 95, + "che_event_집중", + [ + 80256, + 9706, + 44942, + 985320, + 41654 + ], + 1, + "45bf072c.jpg?=20231030", + 65, + "che_231228_IJng", + 271, + [ + "hall:dex4", + "hall:ttrate", + "hall:warnum" + ] + ], + [ + "【65기】농사지으러옴", + 13, + 62, + 85, + "che_event_필살", + [ + 0, + 0, + 0, + 0, + 0 + ], + 0, + "default.jpg", + 65, + "che_231228_IJng", + 301, + [ + "hall:dedication", + "hall:tirate" + ] + ], + [ + "【65기】late", + 76, + 86, + 16, + "che_event_의술", + [ + 49090, + 19466, + 36694, + 51319, + 93842 + ], + 0, + "default.jpg", + 65, + "che_231228_IJng", + 607, + [ + "hall:dex5" + ] + ], + [ + "【65기】황진", + 77, + 86, + 16, + "che_event_필살", + [ + 19696, + 222035, + 14267, + 41684, + 11383 + ], + 0, + "default.jpg", + 65, + "che_231228_IJng", + 612, + [ + "hall:dex2" + ] + ], + [ + "【66기】카이스트", + 77, + 16, + 93, + "che_event_필살", + [ + 77435, + 25179, + 44050, + 609542, + 11666 + ], + 1, + "e7e27cd6.jpg?=20221125", + 66, + "che_240201_0aVv", + 3, + [ + "hall:dex4", + "hall:firenum" + ] + ], + [ + "【66기】백설공주", + 95, + 76, + 15, + "che_event_돌격", + [ + 47120, + 87798, + 658544, + 102733, + 27579 + ], + 1, + "44492ef0.png?=20240201", + 66, + "che_240201_0aVv", + 5, + [ + "hall:dex3", + "hall:killcrew_person", + "hall:tlrate", + "hall:warnum" + ] + ], + [ + "【66기】호나", + 88, + 15, + 82, + "che_event_집중", + [ + 59631, + 53082, + 24319, + 638910, + 36565 + ], + 0, + "default.jpg", + 66, + "che_240201_0aVv", + 7, + [ + "hall:betgold", + "hall:betwingold", + "hall:dex4" + ] + ], + [ + "【66기】바나낫", + 79, + 95, + 15, + "che_event_필살", + [ + 39088, + 70444, + 1181670, + 48964, + 28103 + ], + 1, + "13e4f6d1.gif?=20240125", + 66, + "che_240201_0aVv", + 8, + [ + "hall:betgold", + "hall:betwingold", + "hall:dex3", + "hall:experience", + "hall:killcrew", + "hall:killcrew_person", + "hall:killnum", + "hall:killrate", + "hall:killrate_person", + "hall:occupied", + "hall:warnum", + "hall:winrate" + ] + ], + [ + "【66기】ㅤ", + 76, + 93, + 16, + "che_event_필살", + [ + 326145, + 41884, + 65314, + 49121, + 35498 + ], + 1, + "863fb0b3.png?=20240129", + 66, + "che_240201_0aVv", + 12, + [ + "hall:betgold", + "hall:betwingold", + "hall:dedication", + "hall:tsrate" + ] + ], + [ + "【66기】kims23", + 79, + 89, + 15, + "che_event_위압", + [ + 37504, + 359712, + 25567, + 51483, + 16343 + ], + 1, + "8368fde2.png?=20240201", + 66, + "che_240201_0aVv", + 13, + [ + "hall:betrate", + "hall:dex2", + "hall:firenum" + ] + ], + [ + "【66기】모아나", + 78, + 99, + 15, + "che_event_반계", + [ + 1873604, + 20138, + 38453, + 35231, + 39229 + ], + 1, + "d54ea479.png?=20240201", + 66, + "che_240201_0aVv", + 15, + [ + "hall:dex1", + "hall:experience", + "hall:killcrew", + "hall:killcrew_person", + "hall:killnum", + "hall:killrate", + "hall:killrate_person", + "hall:occupied", + "hall:warnum", + "hall:winrate" + ] + ], + [ + "【66기】밥", + 13, + 69, + 74, + "che_event_의술", + [ + 213, + 0, + 75, + 0, + 0 + ], + 1, + "d1c7595e.jpg?=20240129", + 66, + "che_240201_0aVv", + 16, + [ + "hall:dedication", + "hall:firenum" + ] + ], + [ + "【66기】목구", + 79, + 15, + 88, + "che_event_의술", + [ + 23230, + 13971, + 13155, + 430378, + 15623 + ], + 0, + "default.jpg", + 66, + "che_240201_0aVv", + 18, + [ + "hall:ttrate" + ] + ], + [ + "【66기】babychuck", + 78, + 92, + 15, + "che_event_돌격", + [ + 55485, + 36629, + 442470, + 65192, + 22963 + ], + 1, + "7cb75480.png?=20221202", + 66, + "che_240201_0aVv", + 19, + [ + "hall:dex3" + ] + ], + [ + "【66기】루비", + 77, + 15, + 93, + "che_event_집중", + [ + 42471, + 9259, + 19807, + 548287, + 31077 + ], + 1, + "22007347.gif?=20240222", + 66, + "che_240201_0aVv", + 24, + [ + "chief:5", + "hall:betgold", + "hall:betwingold", + "hall:dex4" + ] + ], + [ + "【66기】무지한 독구", + 15, + 73, + 95, + "che_event_징병", + [ + 0, + 0, + 0, + 0, + 0 + ], + 1, + "4ffaa6e2.png?=20240201", + 66, + "che_240201_0aVv", + 28, + [ + "hall:betwin" + ] + ], + [ + "【66기】SARS", + 75, + 15, + 97, + "che_event_돌격", + [ + 31557, + 48091, + 36592, + 665111, + 75540 + ], + 1, + "b84944.jpg?=20180829", + 66, + "che_240201_0aVv", + 30, + [ + "chief:12", + "hall:dedication", + "hall:dex4", + "hall:dex5", + "hall:experience", + "hall:killrate", + "hall:killrate_person", + "hall:tirate", + "hall:winrate" + ] + ], + [ + "【66기】이차원의 도망자", + 95, + 74, + 15, + "che_event_돌격", + [ + 47387, + 351335, + 140889, + 89621, + 45571 + ], + 1, + "d7cea6ce.jpg?=20240203", + 66, + "che_240201_0aVv", + 33, + [ + "hall:betrate", + "hall:betwin", + "hall:betwingold", + "hall:dex2", + "hall:dex5", + "hall:tlrate" + ] + ], + [ + "【66기】이순신", + 100, + 70, + 15, + "che_event_공성", + [ + 28974, + 26360, + 18315, + 28868, + 1427630 + ], + 1, + "1df91fc9.jpg?=20240201", + 66, + "che_240201_0aVv", + 34, + [ + "chief:11", + "hall:dex5", + "hall:experience", + "hall:killcrew", + "hall:killrate", + "hall:occupied", + "hall:tlrate", + "hall:winrate" + ] + ], + [ + "【66기】북오더", + 78, + 93, + 15, + "che_event_돌격", + [ + 43320, + 49609, + 504613, + 73331, + 64298 + ], + 1, + "f39217aa.gif?=20220916", + 66, + "che_240201_0aVv", + 35, + [ + "chief:6", + "hall:dex3", + "hall:dex5", + "hall:winrate" + ] + ], + [ + "【66기】빈첸조", + 81, + 15, + 92, + "che_event_필살", + [ + 54340, + 31053, + 13967, + 910174, + 24617 + ], + 0, + "default.jpg", + 66, + "che_240201_0aVv", + 36, + [ + "hall:dex4", + "hall:killcrew", + "hall:killcrew_person", + "hall:killnum", + "hall:tirate", + "hall:warnum" + ] + ], + [ + "【66기】ForTheEmperor", + 75, + 96, + 15, + "che_event_견고", + [ + 493393, + 14940, + 44856, + 48552, + 31802 + ], + 0, + "default.jpg", + 66, + "che_240201_0aVv", + 39, + [ + "chief:10", + "hall:betgold", + "hall:betwin", + "hall:betwingold", + "hall:dedication", + "hall:dex1", + "hall:experience", + "hall:tsrate" + ] + ], + [ + "【66기】엘사", + 76, + 92, + 15, + "che_event_필살", + [ + 367564, + 7930, + 48559, + 42832, + 64399 + ], + 1, + "9d001775.jpg?=20240201", + 66, + "che_240201_0aVv", + 40, + [ + "hall:dex5", + "hall:occupied", + "hall:tsrate" + ] + ], + [ + "【66기】쵸단", + 75, + 95, + 15, + "che_event_격노", + [ + 64714, + 517636, + 5379, + 97798, + 24192 + ], + 1, + "d0616ff2.jpg?=20240121", + 66, + "che_240201_0aVv", + 43, + [ + "hall:dex2", + "hall:tsrate" + ] + ], + [ + "【66기】도로롱", + 79, + 15, + 90, + "che_event_반계", + [ + 81310, + 6737, + 49569, + 514194, + 47829 + ], + 1, + "f4ec4729.png?=20240201", + 66, + "che_240201_0aVv", + 50, + [ + "hall:dex5" + ] + ], + [ + "【66기】신세희", + 95, + 15, + 75, + "che_event_척사", + [ + 70928, + 36567, + 34333, + 590410, + 21137 + ], + 1, + "b58e4f77.jpg?=20231229", + 66, + "che_240201_0aVv", + 52, + [ + "hall:dex4", + "hall:tlrate", + "hall:warnum" + ] + ], + [ + "【66기】서희", + 78, + 94, + 15, + "che_event_필살", + [ + 621218, + 21320, + 34273, + 61895, + 28831 + ], + 1, + "8debf7e5.png?=20230308", + 66, + "che_240201_0aVv", + 57, + [ + "chief:8", + "hall:betrate", + "hall:dedication", + "hall:dex1", + "hall:experience", + "hall:killnum", + "hall:killrate", + "hall:killrate_person", + "hall:winrate" + ] + ], + [ + "【66기】장원영", + 75, + 15, + 96, + "che_event_필살", + [ + 24215, + 19515, + 37199, + 322883, + 70412 + ], + 1, + "799a5f0b.jpg?=20240201", + 66, + "che_240201_0aVv", + 58, + [ + "hall:dedication", + "hall:dex5", + "hall:tirate", + "hall:ttrate" + ] + ], + [ + "【66기】태평동", + 79, + 15, + 90, + "che_event_집중", + [ + 75747, + 40386, + 30161, + 573743, + 20979 + ], + 0, + "default.jpg", + 66, + "che_240201_0aVv", + 67, + [ + "hall:dex4" + ] + ], + [ + "【66기】페이트", + 17, + 73, + 94, + "che_event_의술", + [ + 0, + 0, + 0, + 0, + 0 + ], + 1, + "6045256.png?=20220317", + 66, + "che_240201_0aVv", + 71, + [ + "hall:firenum" + ] + ], + [ + "【66기】로비", + 16, + 72, + 96, + "che_event_신중", + [ + 0, + 0, + 0, + 0, + 0 + ], + 1, + "3e5926b7.png?=20231228", + 66, + "che_240201_0aVv", + 72, + [ + "hall:ttrate" + ] + ], + [ + "【66기】바낫크톤", + 65, + 14, + 80, + "che_event_신중", + [ + 9316, + 14061, + 12254, + 320268, + 19494 + ], + 1, + "86a67a9f.png?=20240206", + 66, + "che_240201_0aVv", + 75, + [ + "hall:dex4", + "hall:experience", + "hall:killrate", + "hall:killrate_person", + "hall:occupied", + "hall:tirate" + ] + ], + [ + "【66기】윈드디어", + 71, + 75, + 13, + "che_event_척사", + [ + 304384, + 6963, + 24192, + 32081, + 15068 + ], + 1, + "5a3b7cce.png?=20240202", + 66, + "che_240201_0aVv", + 76, + [ + "hall:betwin", + "hall:dex1" + ] + ], + [ + "【66기】임사영", + 77, + 94, + 15, + "che_event_척사", + [ + 92152, + 416187, + 80840, + 57095, + 29735 + ], + 1, + "ae9eb0d5.jpg?=20240108", + 66, + "che_240201_0aVv", + 77, + [ + "hall:dex2", + "hall:winrate" + ] + ], + [ + "【66기】ㄱㅈ", + 80, + 90, + 18, + "che_event_징병", + [ + 31862, + 41521, + 603325, + 57603, + 29608 + ], + 0, + "default.jpg", + 66, + "che_240201_0aVv", + 78, + [ + "hall:dex3", + "hall:killcrew_person", + "hall:killnum", + "hall:ttrate" + ] + ], + [ + "【66기】최진리", + 76, + 95, + 15, + "che_event_격노", + [ + 536081, + 15025, + 46948, + 97405, + 23524 + ], + 1, + "8f1d63a1.jpg?=20240202", + 66, + "che_240201_0aVv", + 80, + [ + "hall:dex1", + "hall:tsrate" + ] + ], + [ + "【66기】림사영", + 79, + 15, + 90, + "che_event_집중", + [ + 116344, + 1054, + 59466, + 521028, + 16984 + ], + 1, + "7188e0eb.jpg?=20240202", + 66, + "che_240201_0aVv", + 81, + [ + "hall:betrate" + ] + ], + [ + "【66기】지원", + 15, + 72, + 97, + "che_event_의술", + [ + 0, + 0, + 0, + 0, + 0 + ], + 1, + "3abfc677.webp?=20240129", + 66, + "che_240201_0aVv", + 83, + [ + "hall:dedication", + "hall:tirate", + "hall:ttrate" + ] + ], + [ + "【66기】지듣노", + 81, + 65, + 13, + "che_event_격노", + [ + 18065, + 48625, + 343023, + 38688, + 16172 + ], + 1, + "51264298.jpg?=20240202", + 66, + "che_240201_0aVv", + 85, + [ + "hall:dex2", + "hall:dex3", + "hall:killcrew", + "hall:killcrew_person", + "hall:killnum", + "hall:tlrate", + "hall:ttrate", + "hall:warnum" + ] + ], + [ + "【66기】우렉", + 77, + 93, + 15, + "che_event_저격", + [ + 394075, + 16677, + 161856, + 92673, + 13108 + ], + 0, + "default.jpg", + 66, + "che_240201_0aVv", + 87, + [ + "hall:betrate" + ] + ], + [ + "【66기】개척자", + 94, + 74, + 15, + "che_event_필살", + [ + 98128, + 734243, + 17351, + 97347, + 46297 + ], + 1, + "b79e771f.jpg?=20240221", + 66, + "che_240201_0aVv", + 88, + [ + "hall:dex2", + "hall:dex5", + "hall:killcrew", + "hall:killnum", + "hall:occupied", + "hall:tlrate" + ] + ], + [ + "【66기】둑구", + 77, + 15, + 93, + "che_event_신산", + [ + 55859, + 35682, + 15800, + 464044, + 16215 + ], + 1, + "d11bd6fe.gif?=20240126", + 66, + "che_240201_0aVv", + 89, + [ + "hall:tirate", + "hall:ttrate" + ] + ], + [ + "【66기】독피자", + 78, + 91, + 15, + "che_event_척사", + [ + 487412, + 59255, + 24936, + 92368, + 20592 + ], + 1, + "06143703.gif?=20231207", + 66, + "che_240201_0aVv", + 91, + [ + "hall:dex1" + ] + ], + [ + "【66기】빙글빙글", + 80, + 15, + 89, + "che_event_척사", + [ + 72100, + 21996, + 26175, + 364857, + 15701 + ], + 1, + "d11dd209.webp?=20240207", + 66, + "che_240201_0aVv", + 93, + [ + "hall:firenum" + ] + ], + [ + "【66기】젠이츠", + 82, + 63, + 13, + "che_event_필살", + [ + 271758, + 2378, + 13911, + 18013, + 14799 + ], + 1, + "bc45fdf5.webp?=20240201", + 66, + "che_240201_0aVv", + 94, + [ + "hall:betgold", + "hall:betrate", + "hall:betwin", + "hall:betwingold", + "hall:dex1", + "hall:tlrate" + ] + ], + [ + "【66기】다라", + 76, + 91, + 15, + "che_event_징병", + [ + 42895, + 225488, + 2996, + 44538, + 15312 + ], + 0, + "default.jpg", + 66, + "che_240201_0aVv", + 96, + [ + "hall:dex2" + ] + ], + [ + "【66기】마요이", + 65, + 13, + 81, + "che_event_집중", + [ + 34339, + 2970, + 3637, + 224608, + 12609 + ], + 1, + "2b49c945.png?=20230921", + 66, + "che_240201_0aVv", + 97, + [ + "hall:tirate" + ] + ], + [ + "【66기】스튜어트", + 79, + 15, + 92, + "che_event_환술", + [ + 89813, + 23022, + 17154, + 517397, + 28134 + ], + 1, + "009cf9f4.png?=20240129", + 66, + "che_240201_0aVv", + 98, + [ + "hall:betrate", + "hall:killrate", + "hall:occupied", + "hall:ttrate" + ] + ], + [ + "【66기】독구", + 65, + 13, + 80, + "che_event_필살", + [ + 20251, + 16151, + 10171, + 347823, + 21422 + ], + 1, + "4a94b941.png?=20240202", + 66, + "che_240201_0aVv", + 99, + [ + "hall:betwin", + "hall:dex4", + "hall:experience", + "hall:killnum", + "hall:killrate", + "hall:killrate_person", + "hall:winrate" + ] + ], + [ + "【66기】케빈", + 65, + 83, + 13, + "che_event_필살", + [ + 11941, + 586549, + 5219, + 32074, + 20787 + ], + 1, + "9326dcf1.jpg?=20240201", + 66, + "che_240201_0aVv", + 100, + [ + "hall:betgold", + "hall:betrate", + "hall:betwingold", + "hall:dedication", + "hall:dex2", + "hall:experience", + "hall:killcrew", + "hall:killcrew_person", + "hall:killnum", + "hall:killrate", + "hall:killrate_person", + "hall:occupied", + "hall:tsrate", + "hall:warnum", + "hall:winrate" + ] + ], + [ + "【66기】독이별택시", + 95, + 73, + 16, + "che_event_공성", + [ + 16870, + 18359, + 51368, + 83374, + 587412 + ], + 1, + "74924e06.jpg?=20240201", + 66, + "che_240201_0aVv", + 101, + [ + "hall:dex5", + "hall:occupied" + ] + ], + [ + "【66기】Yennefer", + 79, + 15, + 91, + "che_event_집중", + [ + 44995, + 9148, + 49169, + 546539, + 20761 + ], + 1, + "7af96ddd.jpg?=20240129", + 66, + "che_240201_0aVv", + 102, + [ + "hall:betwin", + "hall:dex4" + ] + ], + [ + "【66기】사스케", + 19, + 95, + 71, + "che_event_필살", + [ + 784, + 45375, + 4806, + 2529, + 1475 + ], + 1, + "c4272184.jpg?=20240131", + 66, + "che_240201_0aVv", + 104, + [ + "chief:9", + "hall:betgold", + "hall:betwin", + "hall:betwingold", + "hall:dedication", + "hall:firenum", + "hall:killrate_person", + "hall:tsrate" + ] + ], + [ + "【66기】진솔", + 77, + 15, + 94, + "che_event_환술", + [ + 17438, + 26634, + 24711, + 438995, + 38523 + ], + 1, + "eac1560c.png?=20240114", + 66, + "che_240201_0aVv", + 105, + [ + "hall:tirate", + "hall:ttrate" + ] + ], + [ + "【66기】스폰지바낫", + 82, + 64, + 13, + "che_event_필살", + [ + 529481, + 6913, + 12507, + 42643, + 27645 + ], + 1, + "b7e0986a.jpg?=20240201", + 66, + "che_240201_0aVv", + 106, + [ + "hall:betgold", + "hall:betwin", + "hall:dedication", + "hall:dex1", + "hall:dex5", + "hall:experience", + "hall:killcrew", + "hall:killcrew_person", + "hall:killnum", + "hall:killrate", + "hall:killrate_person", + "hall:occupied", + "hall:tlrate", + "hall:warnum", + "hall:winrate" + ] + ], + [ + "【66기】간지밍이", + 76, + 15, + 92, + "che_event_필살", + [ + 25107, + 5640, + 8378, + 345401, + 32953 + ], + 1, + "19c0150f.png?=20230615", + 66, + "che_240201_0aVv", + 108, + [ + "chief:7", + "hall:betgold", + "hall:betwin", + "hall:betwingold" + ] + ], + [ + "【66기】고여르미르", + 78, + 90, + 15, + "che_event_필살", + [ + 12700, + 8588, + 200789, + 33207, + 1489 + ], + 0, + "default.jpg", + 66, + "che_240201_0aVv", + 110, + [ + "hall:firenum" + ] + ], + [ + "【66기】뮬란", + 96, + 73, + 15, + "che_event_위압", + [ + 46335, + 57716, + 738354, + 149627, + 42269 + ], + 1, + "351badde.png?=20240201", + 66, + "che_240201_0aVv", + 111, + [ + "hall:betrate", + "hall:dex3", + "hall:killcrew", + "hall:killcrew_person", + "hall:tlrate", + "hall:warnum" + ] + ], + [ + "【66기】슬라임", + 95, + 75, + 15, + "che_event_필살", + [ + 59976, + 431182, + 9874, + 68858, + 25639 + ], + 1, + "2d2da7c0.jpg?=20231130", + 66, + "che_240201_0aVv", + 113, + [ + "hall:dex2" + ] + ], + [ + "【66기】초코송이", + 77, + 91, + 15, + "che_event_기병", + [ + 18584, + 5479, + 306272, + 55733, + 21976 + ], + 1, + "6b371ec.jpg?=20190909", + 66, + "che_240201_0aVv", + 114, + [ + "hall:dex3" + ] + ], + [ + "【66기】Navy마초", + 76, + 91, + 15, + "che_event_필살", + [ + 66595, + 465093, + 11863, + 81328, + 19421 + ], + 1, + "37644ed3.png?=20230831", + 66, + "che_240201_0aVv", + 115, + [ + "hall:dex2" + ] + ], + [ + "【66기】와일드플라워", + 97, + 74, + 15, + "che_event_무쌍", + [ + 776083, + 21154, + 54030, + 87530, + 19016 + ], + 0, + "default.jpg", + 66, + "che_240201_0aVv", + 116, + [ + "hall:dex1", + "hall:killcrew", + "hall:killcrew_person", + "hall:tlrate", + "hall:warnum" + ] + ], + [ + "【66기】나는무장", + 76, + 94, + 15, + "che_event_의술", + [ + 413864, + 10061, + 50643, + 51944, + 31433 + ], + 0, + "default.jpg", + 66, + "che_240201_0aVv", + 120, + [ + "hall:tsrate" + ] + ], + [ + "【66기】지각생", + 74, + 15, + 97, + "che_event_필살", + [ + 20430, + 17353, + 31852, + 438603, + 25525 + ], + 0, + "default.jpg", + 66, + "che_240201_0aVv", + 128, + [ + "hall:tirate" + ] + ], + [ + "【66기】경국지색소교", + 75, + 90, + 19, + "che_event_위압", + [ + 10105, + 42822, + 213239, + 59369, + 7740 + ], + 1, + "ad2669b5.jpg?=20230605", + 66, + "che_240201_0aVv", + 134, + [ + "hall:dex3", + "hall:tsrate", + "hall:ttrate" + ] + ], + [ + "【66기】라푼젤", + 81, + 88, + 15, + "che_event_필살", + [ + 474595, + 38162, + 55811, + 61159, + 27487 + ], + 1, + "283a257a.jpg?=20240202", + 66, + "che_240201_0aVv", + 191, + [ + "hall:dex1" + ] + ], + [ + "【66기】ㅊㄹㅊㄹ", + 79, + 89, + 15, + "che_event_위압", + [ + 26669, + 35874, + 516787, + 112153, + 13204 + ], + 1, + "63f1c106.png?=20230223", + 66, + "che_240201_0aVv", + 205, + [ + "hall:dex3" + ] + ], + [ + "【66기】페르난도", + 76, + 16, + 91, + "che_event_집중", + [ + 53914, + 25358, + 39234, + 536831, + 23338 + ], + 0, + "default.jpg", + 66, + "che_240201_0aVv", + 207, + [ + "hall:betrate" + ] + ], + [ + "【66기】크루오네", + 15, + 95, + 72, + "che_event_격노", + [ + 347, + 0, + 11972, + 928, + 1046 + ], + 1, + "45bf072c.jpg?=20231030", + 66, + "che_240201_0aVv", + 317, + [ + "hall:firenum", + "hall:killrate_person", + "hall:tsrate" + ] + ], + [ + "【66기】잉여_국04", + 75, + 16, + 91, + "che_event_환술", + [ + 64573, + 15503, + 21583, + 229331, + 14067 + ], + 1, + "546ecd10.png?=20231007", + 66, + "che_240201_0aVv", + 396, + [ + "hall:firenum" + ] + ], + [ + "【66기】무지장감흥", + 16, + 71, + 95, + "che_event_저격", + [ + 0, + 0, + 0, + 0, + 0 + ], + 1, + "a73ecaa1.jpg?=20230313", + 66, + "che_240201_0aVv", + 409, + [ + "hall:tirate" + ] + ], + [ + "【66기】도움전용유산싸개", + 15, + 74, + 83, + "che_event_신산", + [ + 0, + 0, + 0, + 0, + 0 + ], + 0, + "default.jpg", + 66, + "che_240201_0aVv", + 709, + [ + "hall:firenum" + ] + ], + [ + "【67기】피카리오", + 77, + 94, + 15, + "che_event_돌격", + [ + 533261, + 29321, + 75381, + 69251, + 50136 + ], + 1, + "24411f77.png?=20240229", + 67, + "che_240229_do1t", + 5, + [ + "hall:betgold", + "hall:betwingold", + "hall:dex1", + "hall:dex5", + "hall:occupied", + "hall:tsrate", + "hall:winrate" + ] + ], + [ + "【67기】바나낫", + 80, + 93, + 15, + "che_event_필살", + [ + 716826, + 17246, + 7744, + 32033, + 29373 + ], + 1, + "0f540a13.gif?=20240227", + 67, + "che_240229_do1t", + 7, + [ + "hall:dex1", + "hall:experience", + "hall:killcrew", + "hall:killcrew_person", + "hall:killnum", + "hall:killrate", + "hall:killrate_person", + "hall:occupied", + "hall:ttrate", + "hall:warnum", + "hall:winrate" + ] + ], + [ + "【67기】방통", + 15, + 74, + 95, + "che_event_신산", + [ + 0, + 0, + 0, + 0, + 0 + ], + 1, + "fc8eab23.jpg?=20240311", + 67, + "che_240229_do1t", + 8, + [ + "hall:betgold", + "hall:tirate" + ] + ], + [ + "【67기】슈퍼블루문", + 77, + 91, + 16, + "che_event_무쌍", + [ + 518409, + 24257, + 65111, + 54679, + 40344 + ], + 1, + "51af5229.jpg?=20240229", + 67, + "che_240229_do1t", + 9, + [ + "chief:6", + "hall:dex1", + "hall:occupied" + ] + ], + [ + "【67기】앵벌스", + 75, + 93, + 15, + "che_event_징병", + [ + 489502, + 16351, + 28564, + 43665, + 28212 + ], + 1, + "d787d3e7.webp?=20231021", + 67, + "che_240229_do1t", + 13, + [ + "hall:dex1", + "hall:tsrate" + ] + ], + [ + "【67기】태호", + 92, + 78, + 15, + "che_event_견고", + [ + 42909, + 411199, + 28982, + 50286, + 23588 + ], + 1, + "69494fa1.jpg?=20240228", + 67, + "che_240229_do1t", + 17, + [ + "hall:dex2", + "hall:tlrate" + ] + ], + [ + "【67기】간지밍이", + 76, + 15, + 98, + "che_event_돌격", + [ + 80134, + 32931, + 42094, + 889807, + 52360 + ], + 1, + "19c0150f.png?=20230615", + 67, + "che_240229_do1t", + 24, + [ + "chief:11", + "hall:betgold", + "hall:betwin", + "hall:betwingold", + "hall:dedication", + "hall:dex4", + "hall:dex5", + "hall:experience", + "hall:killcrew", + "hall:killcrew_person", + "hall:killnum", + "hall:killrate", + "hall:killrate_person", + "hall:warnum", + "hall:winrate" + ] + ], + [ + "【67기】최진리", + 74, + 15, + 97, + "che_event_징병", + [ + 31327, + 14504, + 16906, + 445041, + 40612 + ], + 1, + "cd91897d.jpg?=20240315", + 67, + "che_240229_do1t", + 30, + [ + "hall:betrate", + "hall:dedication", + "hall:firenum" + ] + ], + [ + "【67기】엘리자베스", + 96, + 75, + 15, + "che_event_필살", + [ + 28599, + 282687, + 61571, + 53393, + 22571 + ], + 1, + "034962af.png?=20240229", + 67, + "che_240229_do1t", + 31, + [ + "hall:dex2", + "hall:tlrate" + ] + ], + [ + "【67기】뱌뱌", + 76, + 93, + 15, + "che_event_견고", + [ + 12712, + 222775, + 13111, + 43689, + 16230 + ], + 0, + "default.jpg", + 67, + "che_240229_do1t", + 35, + [ + "hall:dex2", + "hall:tsrate" + ] + ], + [ + "【67기】서희", + 75, + 95, + 15, + "che_event_돌격", + [ + 29471, + 28113, + 465372, + 82253, + 42831 + ], + 1, + "8debf7e5.png?=20230308", + 67, + "che_240229_do1t", + 39, + [ + "chief:10", + "hall:dedication", + "hall:dex3", + "hall:tsrate" + ] + ], + [ + "【67기】미과 팬 독구", + 77, + 93, + 15, + "che_event_필살", + [ + 29982, + 14912, + 382861, + 21499, + 24588 + ], + 1, + "4ffaa6e2.png?=20240201", + 67, + "che_240229_do1t", + 40, + [ + "hall:betrate", + "hall:betwin", + "hall:dex3" + ] + ], + [ + "【67기】panpenpan", + 75, + 15, + 95, + "che_event_필살", + [ + 19404, + 14933, + 15994, + 332399, + 49233 + ], + 1, + "546051df.jpg?=20240205", + 67, + "che_240229_do1t", + 49, + [ + "hall:dex5", + "hall:winrate" + ] + ], + [ + "【67기】외심장", + 78, + 15, + 92, + "che_event_필살", + [ + 28401, + 25887, + 31222, + 292267, + 21069 + ], + 1, + "36110cd.jpg?=20180826", + 67, + "che_240229_do1t", + 51, + [ + "hall:betrate" + ] + ], + [ + "【67기】Navy마초", + 77, + 95, + 15, + "che_event_필살", + [ + 56066, + 549481, + 17051, + 50575, + 13065 + ], + 1, + "37644ed3.png?=20230831", + 67, + "che_240229_do1t", + 56, + [ + "hall:dex2", + "hall:firenum", + "hall:killcrew_person", + "hall:killnum", + "hall:killrate", + "hall:killrate_person", + "hall:occupied", + "hall:tsrate", + "hall:warnum", + "hall:winrate" + ] + ], + [ + "【67기】독튜버", + 93, + 79, + 15, + "che_event_필살", + [ + 771623, + 54338, + 25452, + 41692, + 51706 + ], + 1, + "0e44328f.webp?=20240229", + 67, + "che_240229_do1t", + 57, + [ + "chief:8", + "hall:betgold", + "hall:betwin", + "hall:betwingold", + "hall:dex1", + "hall:dex5", + "hall:experience", + "hall:firenum", + "hall:killcrew", + "hall:killcrew_person", + "hall:killnum", + "hall:occupied", + "hall:warnum" + ] + ], + [ + "【67기】베이커리", + 75, + 15, + 97, + "che_event_집중", + [ + 47640, + 19570, + 28451, + 594811, + 47581 + ], + 1, + "60eeda4c.jpg?=20240303", + 67, + "che_240229_do1t", + 58, + [ + "chief:5", + "hall:dedication", + "hall:dex4", + "hall:experience", + "hall:killcrew", + "hall:killnum", + "hall:killrate", + "hall:killrate_person", + "hall:tirate", + "hall:warnum", + "hall:winrate" + ] + ], + [ + "【67기】마오마오", + 81, + 88, + 16, + "che_event_필살", + [ + 30158, + 387420, + 5679, + 35882, + 23784 + ], + 1, + "484fce25.png?=20240304", + 67, + "che_240229_do1t", + 59, + [ + "hall:betgold", + "hall:betrate", + "hall:betwingold", + "hall:dex2" + ] + ], + [ + "【67기】로비", + 15, + 77, + 93, + "che_event_신산", + [ + 0, + 0, + 0, + 0, + 0 + ], + 1, + "3e5926b7.png?=20231228", + 67, + "che_240229_do1t", + 62, + [ + "hall:firenum" + ] + ], + [ + "【67기】사스케", + 98, + 15, + 80, + "che_event_돌격", + [ + 83625, + 45898, + 56813, + 1879843, + 55868 + ], + 1, + "c4272184.jpg?=20240131", + 67, + "che_240229_do1t", + 65, + [ + "chief:12", + "hall:betgold", + "hall:betrate", + "hall:betwin", + "hall:betwingold", + "hall:dedication", + "hall:dex4", + "hall:dex5", + "hall:experience", + "hall:firenum", + "hall:killcrew", + "hall:killcrew_person", + "hall:killnum", + "hall:killrate", + "hall:killrate_person", + "hall:occupied", + "hall:tlrate", + "hall:warnum", + "hall:winrate" + ] + ], + [ + "【67기】조승상", + 95, + 75, + 16, + "che_event_위압", + [ + 338662, + 42656, + 14934, + 40637, + 23415 + ], + 1, + "22e3e2c7.jpg?=20240229", + 67, + "che_240229_do1t", + 71, + [ + "hall:dex1", + "hall:firenum", + "hall:tlrate" + ] + ], + [ + "【67기】강서유서", + 76, + 94, + 15, + "che_event_위압", + [ + 488085, + 22568, + 17718, + 64555, + 36080 + ], + 1, + "e5915385.png?=20240229", + 67, + "che_240229_do1t", + 74, + [ + "hall:dex1", + "hall:killrate", + "hall:killrate_person", + "hall:tsrate" + ] + ], + [ + "【67기】틴더", + 80, + 87, + 15, + "che_event_위압", + [ + 112086, + 211547, + 10308, + 46198, + 32447 + ], + 1, + "568faa72.png?=20240229", + 67, + "che_240229_do1t", + 75, + [ + "hall:dex2" + ] + ], + [ + "【67기】황혼중", + 15, + 72, + 97, + "che_event_집중", + [ + 0, + 0, + 0, + 0, + 0 + ], + 1, + "e5161df9.jpg?=20231110", + 67, + "che_240229_do1t", + 78, + [ + "hall:tirate" + ] + ], + [ + "【67기】슬라임", + 93, + 74, + 16, + "che_event_위압", + [ + 86417, + 474354, + 30078, + 64702, + 39114 + ], + 1, + "2d2da7c0.jpg?=20231130", + 67, + "che_240229_do1t", + 79, + [ + "hall:dex2", + "hall:tlrate" + ] + ], + [ + "【67기】독구탕", + 76, + 16, + 91, + "che_event_필살", + [ + 24320, + 29248, + 26100, + 394430, + 40741 + ], + 1, + "41cad7ed.jpg?=20240229", + 67, + "che_240229_do1t", + 80, + [ + "hall:dedication" + ] + ], + [ + "【67기】지원", + 15, + 71, + 97, + "che_event_반계", + [ + 0, + 0, + 0, + 0, + 0 + ], + 1, + "3abfc677.webp?=20240129", + 67, + "che_240229_do1t", + 83, + [ + "hall:tirate" + ] + ], + [ + "【67기】불패", + 92, + 77, + 15, + "che_event_필살", + [ + 220135, + 4127, + 16441, + 30088, + 11226 + ], + 0, + "default.jpg", + 67, + "che_240229_do1t", + 85, + [ + "hall:tlrate" + ] + ], + [ + "【67기】해피캣", + 92, + 75, + 15, + "che_event_필살", + [ + 344208, + 32555, + 40699, + 36541, + 22174 + ], + 1, + "6676fc3c.jpg?=20240229", + 67, + "che_240229_do1t", + 88, + [ + "hall:dex1" + ] + ], + [ + "【67기】진솔", + 78, + 91, + 15, + "che_event_저격", + [ + 26994, + 281365, + 11534, + 21061, + 34301 + ], + 1, + "eac1560c.png?=20240114", + 67, + "che_240229_do1t", + 91, + [ + "hall:dex2" + ] + ], + [ + "【67기】북오더", + 77, + 15, + 90, + "che_event_신산", + [ + 0, + 0, + 0, + 11438, + 113004 + ], + 1, + "f39217aa.gif?=20220916", + 67, + "che_240229_do1t", + 92, + [ + "hall:dex5", + "hall:killrate" + ] + ], + [ + "【67기】신두리", + 94, + 74, + 15, + "che_event_필살", + [ + 93093, + 52238, + 384330, + 42080, + 41837 + ], + 0, + "default.jpg", + 67, + "che_240229_do1t", + 94, + [ + "hall:dex3", + "hall:tlrate" + ] + ], + [ + "【67기】Hide_D", + 76, + 15, + 96, + "che_event_환술", + [ + 20341, + 8371, + 10500, + 387452, + 22432 + ], + 1, + "4569d848.png?=20230612", + 67, + "che_240229_do1t", + 95, + [ + "hall:tirate", + "hall:ttrate" + ] + ], + [ + "【67기】날아라", + 78, + 92, + 15, + "che_event_견고", + [ + 1483, + 217228, + 7069, + 33970, + 9288 + ], + 0, + "default.jpg", + 67, + "che_240229_do1t", + 96, + [ + "hall:dex2" + ] + ], + [ + "【67기】독구", + 77, + 93, + 15, + "che_event_무쌍", + [ + 19183, + 22770, + 766907, + 41082, + 31868 + ], + 1, + "eba13a1c.png?=20240229", + 67, + "che_240229_do1t", + 97, + [ + "hall:betgold", + "hall:betwin", + "hall:betwingold", + "hall:dex3", + "hall:killcrew", + "hall:killcrew_person", + "hall:killnum", + "hall:killrate_person", + "hall:tsrate", + "hall:warnum" + ] + ], + [ + "【67기】파우스트", + 77, + 15, + 93, + "che_event_집중", + [ + 61363, + 21088, + 22784, + 340744, + 24434 + ], + 1, + "89cd31db.png?=20240229", + 67, + "che_240229_do1t", + 98, + [ + "hall:ttrate" + ] + ], + [ + "【67기】딸기알러지", + 77, + 94, + 15, + "che_event_필살", + [ + 86950, + 17679, + 553584, + 78714, + 41282 + ], + 0, + "default.jpg", + 67, + "che_240229_do1t", + 99, + [ + "hall:betrate", + "hall:betwingold", + "hall:dedication", + "hall:dex3", + "hall:killcrew", + "hall:killcrew_person", + "hall:killnum", + "hall:killrate_person", + "hall:winrate" + ] + ], + [ + "【67기】덕구", + 76, + 92, + 16, + "che_event_필살", + [ + 287848, + 2897, + 32480, + 14309, + 19363 + ], + 1, + "7031e789.jpg?=20240201", + 67, + "che_240229_do1t", + 100, + [ + "hall:tsrate", + "hall:ttrate" + ] + ], + [ + "【67기】카제", + 79, + 94, + 15, + "che_event_필살", + [ + 570926, + 16597, + 19980, + 79772, + 24430 + ], + 1, + "5960bb2c.webp?=20240306", + 67, + "che_240229_do1t", + 101, + [ + "hall:betgold", + "hall:betrate", + "hall:betwin", + "hall:betwingold", + "hall:dex1", + "hall:firenum", + "hall:occupied", + "hall:tsrate", + "hall:ttrate" + ] + ], + [ + "【67기】링크", + 79, + 90, + 15, + "che_event_필살", + [ + 6262, + 19780, + 419965, + 58580, + 29613 + ], + 1, + "bb39c026.jpg?=20240307", + 67, + "che_240229_do1t", + 102, + [ + "hall:dex3" + ] + ], + [ + "【67기】모래마녀", + 74, + 15, + 96, + "che_event_필살", + [ + 45768, + 17698, + 42008, + 343517, + 54689 + ], + 1, + "ba50768f.jpg?=20240229", + 67, + "che_240229_do1t", + 104, + [ + "hall:betgold", + "hall:betwin", + "hall:betwingold", + "hall:dex5", + "hall:tirate" + ] + ], + [ + "【67기】카리나", + 76, + 16, + 93, + "che_event_척사", + [ + 28647, + 14406, + 44186, + 512940, + 39622 + ], + 1, + "70256bf2.png?=20240229", + 67, + "che_240229_do1t", + 105, + [ + "chief:9", + "hall:dedication", + "hall:dex4", + "hall:warnum" + ] + ], + [ + "【67기】서림동", + 79, + 92, + 15, + "che_event_돌격", + [ + 16532, + 42377, + 480212, + 83986, + 35088 + ], + 0, + "default.jpg", + 67, + "che_240229_do1t", + 106, + [ + "hall:dex3" + ] + ], + [ + "【67기】기연만합니다", + 71, + 15, + 98, + "che_event_귀병", + [ + 0, + 0, + 0, + 18322, + 4958 + ], + 0, + "default.jpg", + 67, + "che_240229_do1t", + 107, + [ + "hall:dedication", + "hall:killrate_person", + "hall:tirate", + "hall:ttrate" + ] + ], + [ + "【67기】대교", + 91, + 15, + 78, + "che_event_필살", + [ + 64314, + 26586, + 37625, + 547221, + 21345 + ], + 1, + "9f0e6dcc.jpg?=20220808", + 67, + "che_240229_do1t", + 108, + [ + "chief:7", + "hall:dex4" + ] + ], + [ + "【67기】100000$", + 96, + 76, + 15, + "che_event_견고", + [ + 1211871, + 20386, + 36288, + 53949, + 30015 + ], + 1, + "eebb4e34.jpg?=20240229", + 67, + "che_240229_do1t", + 110, + [ + "hall:betrate", + "hall:dex1", + "hall:killcrew", + "hall:killcrew_person", + "hall:killnum", + "hall:killrate", + "hall:killrate_person", + "hall:tlrate", + "hall:warnum" + ] + ], + [ + "【67기】파이", + 78, + 15, + 89, + "che_event_척사", + [ + 28908, + 44041, + 29608, + 451009, + 40711 + ], + 0, + "default.jpg", + 67, + "che_240229_do1t", + 112, + [ + "hall:dex4" + ] + ], + [ + "【67기】육각형무지장", + 15, + 70, + 100, + "che_event_필살", + [ + 0, + 0, + 0, + 0, + 0 + ], + 1, + "fab823dd.png?=20240229", + 67, + "che_240229_do1t", + 116, + [ + "hall:betrate", + "hall:experience", + "hall:tirate" + ] + ], + [ + "【67기】무지와플", + 15, + 71, + 98, + "che_event_집중", + [ + 0, + 0, + 0, + 0, + 0 + ], + 0, + "default.jpg", + 67, + "che_240229_do1t", + 117, + [ + "hall:dedication", + "hall:experience", + "hall:tirate" + ] + ], + [ + "【67기】순욱", + 78, + 15, + 89, + "che_event_필살", + [ + 37860, + 6309, + 11991, + 287311, + 11356 + ], + 1, + "769bfc03.jpg?=20240229", + 67, + "che_240229_do1t", + 118, + [ + "hall:betgold", + "hall:betwin", + "hall:betwingold" + ] + ], + [ + "【67기】예턴이나", + 78, + 15, + 93, + "che_event_집중", + [ + 52184, + 22698, + 41830, + 613568, + 36958 + ], + 0, + "default.jpg", + 67, + "che_240229_do1t", + 119, + [ + "hall:betwin", + "hall:dex4", + "hall:experience" + ] + ], + [ + "【67기】춤추는달패이", + 86, + 84, + 15, + "che_event_공성", + [ + 6687, + 6686, + 5604, + 6065, + 814292 + ], + 1, + "fc3385d6.gif?=20240301", + 67, + "che_240229_do1t", + 120, + [ + "hall:dex5", + "hall:experience", + "hall:killcrew", + "hall:killrate", + "hall:occupied", + "hall:ttrate" + ] + ], + [ + "【67기】사렌", + 75, + 15, + 96, + "che_event_반계", + [ + 38495, + 23825, + 51959, + 585918, + 26819 + ], + 1, + "9fb04557.png?=20240229", + 67, + "che_240229_do1t", + 121, + [ + "hall:dex4", + "hall:killcrew_person", + "hall:winrate" + ] + ], + [ + "【67기】아키노", + 76, + 94, + 15, + "che_event_필살", + [ + 13347, + 40375, + 554225, + 83460, + 37500 + ], + 1, + "69421e4e.png?=20240319", + 67, + "che_240229_do1t", + 122, + [ + "hall:betwin", + "hall:dex3", + "hall:tsrate" + ] + ], + [ + "【67기】유카", + 95, + 73, + 15, + "che_event_공성", + [ + 41887, + 37268, + 33338, + 53476, + 841064 + ], + 0, + "default.jpg", + 67, + "che_240229_do1t", + 127, + [ + "hall:dex5", + "hall:experience", + "hall:firenum", + "hall:killcrew", + "hall:killrate", + "hall:occupied", + "hall:tlrate", + "hall:ttrate" + ] + ], + [ + "【67기】kims24", + 88, + 80, + 15, + "che_event_무쌍", + [ + 47425, + 513394, + 17367, + 52223, + 25639 + ], + 1, + "8368fde2.png?=20240201", + 67, + "che_240229_do1t", + 128, + [ + "hall:dex2" + ] + ], + [ + "【67기】세르네오", + 15, + 78, + 92, + "che_event_의술", + [ + 0, + 0, + 0, + 0, + 0 + ], + 0, + "default.jpg", + 67, + "che_240229_do1t", + 129, + [ + "hall:firenum", + "hall:ttrate" + ] + ], + [ + "【67기】덕", + 96, + 76, + 15, + "che_event_필살", + [ + 29050, + 11990, + 562260, + 30837, + 27648 + ], + 0, + "default.jpg", + 67, + "che_240229_do1t", + 133, + [ + "hall:dex3", + "hall:killcrew_person", + "hall:killnum", + "hall:tlrate", + "hall:warnum", + "hall:winrate" + ] + ], + [ + "【67기】마요이", + 70, + 15, + 101, + "che_event_집중", + [ + 0, + 0, + 0, + 5520, + 2648 + ], + 1, + "2b49c945.png?=20230921", + 67, + "che_240229_do1t", + 138, + [ + "hall:tirate", + "hall:ttrate" + ] + ], + [ + "【67기】니쉬", + 15, + 77, + 90, + "che_event_척사", + [ + 0, + 0, + 0, + 0, + 0 + ], + 1, + "40dc4af6.png?=20240130", + 67, + "che_240229_do1t", + 141, + [ + "hall:betrate" + ] + ], + [ + "【67기】무능장", + 15, + 83, + 86, + "che_event_필살", + [ + 0, + 0, + 0, + 0, + 0 + ], + 0, + "default.jpg", + 67, + "che_240229_do1t", + 211, + [ + "hall:firenum" + ] + ], + [ + "【67기】부활한협동전", + 80, + 90, + 15, + "che_event_격노", + [ + 20288, + 33082, + 436264, + 73614, + 21891 + ], + 1, + "45bf072c.jpg?=20231030", + 67, + "che_240229_do1t", + 213, + [ + "hall:dex3" + ] + ], + [ + "【67기】ㅊㄹㅊㄹ", + 78, + 15, + 91, + "che_event_필살", + [ + 46594, + 30099, + 54399, + 544385, + 47946 + ], + 1, + "63f1c106.png?=20230223", + 67, + "che_240229_do1t", + 227, + [ + "hall:dex4", + "hall:dex5", + "hall:occupied" + ] + ], + [ + "【67기】캬루", + 76, + 15, + 93, + "che_event_필살", + [ + 48355, + 42410, + 41551, + 470368, + 33730 + ], + 1, + "98bfa089.jpg?=20240302", + 67, + "che_240229_do1t", + 352, + [ + "hall:dex4" + ] + ], + [ + "【68기】공학토끼", + 78, + 16, + 90, + "che_event_필살", + [ + 50359, + 28761, + 33219, + 527291, + 41203 + ], + 1, + "a236c64b.jpg?=20240328", + 68, + "che_240328_MzI5", + 5, + [ + "hall:occupied" + ] + ], + [ + "【68기】포카리나메코", + 78, + 89, + 15, + "che_event_저격", + [ + 614753, + 9255, + 13411, + 71681, + 20476 + ], + 1, + "28431fbf.jpg?=20240328", + 68, + "che_240328_MzI5", + 7, + [ + "hall:dex1" + ] + ], + [ + "【68기】핑핑이나메코", + 93, + 74, + 16, + "che_event_징병", + [ + 103996, + 9796, + 28096, + 88710, + 187496 + ], + 1, + "da6b8964.jpg?=20240328", + 68, + "che_240328_MzI5", + 9, + [ + "hall:dex5", + "hall:occupied", + "hall:tlrate" + ] + ], + [ + "【68기】無名別動隊", + 66, + 13, + 79, + "che_event_환술", + [ + 15378, + 25776, + 1425, + 329029, + 24600 + ], + 1, + "45701851.gif?=20240417", + 68, + "che_240328_MzI5", + 12, + [ + "hall:betwin", + "hall:dex4", + "hall:dex5", + "hall:occupied", + "hall:tirate" + ] + ], + [ + "【68기】인민의 영웅 독구", + 18, + 71, + 93, + "che_event_환술", + [ + 0, + 0, + 0, + 0, + 0 + ], + 1, + "4ffaa6e2.png?=20240201", + 68, + "che_240328_MzI5", + 14, + [ + "hall:betwin" + ] + ], + [ + "【68기】척", + 78, + 90, + 15, + "che_event_척사", + [ + 25093, + 40518, + 626471, + 120429, + 35898 + ], + 1, + "7cb75480.png?=20221202", + 68, + "che_240328_MzI5", + 15, + [ + "hall:dex3", + "hall:killrate", + "hall:killrate_person", + "hall:tsrate" + ] + ], + [ + "【68기】압도적으로 긍정적", + 95, + 77, + 15, + "che_event_돌격", + [ + 938825, + 45630, + 75014, + 179787, + 35391 + ], + 1, + "00051cde.png?=20240328", + 68, + "che_240328_MzI5", + 16, + [ + "hall:betgold", + "hall:dex1", + "hall:experience", + "hall:killnum", + "hall:killrate", + "hall:killrate_person", + "hall:tlrate", + "hall:winrate" + ] + ], + [ + "【68기】원영토끼", + 78, + 90, + 15, + "che_event_무쌍", + [ + 570086, + 20923, + 71405, + 105167, + 30152 + ], + 1, + "c7152c79.jpg?=20240328", + 68, + "che_240328_MzI5", + 18, + [ + "hall:dex1", + "hall:ttrate" + ] + ], + [ + "【68기】크루오네시아유카류", + 82, + 91, + 15, + "che_event_필살", + [ + 792558, + 6051, + 16200, + 86835, + 17918 + ], + 1, + "15d7852e.jpg?=20240328", + 68, + "che_240328_MzI5", + 22, + [ + "hall:dex1", + "hall:killcrew", + "hall:killcrew_person", + "hall:ttrate", + "hall:warnum" + ] + ], + [ + "【68기】와일드플라워", + 93, + 77, + 16, + "che_event_돌격", + [ + 59276, + 31116, + 1126634, + 21202, + 38264 + ], + 0, + "default.jpg", + 68, + "che_240328_MzI5", + 23, + [ + "hall:dex3", + "hall:killcrew", + "hall:killcrew_person", + "hall:killnum", + "hall:killrate", + "hall:killrate_person", + "hall:warnum", + "hall:winrate" + ] + ], + [ + "【68기】마요이", + 76, + 15, + 92, + "che_event_반계", + [ + 83475, + 9750, + 10630, + 418616, + 18198 + ], + 1, + "2b49c945.png?=20230921", + 68, + "che_240328_MzI5", + 25, + [ + "hall:dedication", + "hall:tirate" + ] + ], + [ + "【68기】카이스트", + 81, + 15, + 91, + "che_event_필살", + [ + 35040, + 14886, + 25971, + 773732, + 13484 + ], + 1, + "e7e27cd6.jpg?=20221125", + 68, + "che_240328_MzI5", + 27, + [ + "hall:dex4", + "hall:firenum", + "hall:killcrew", + "hall:killcrew_person", + "hall:killnum", + "hall:occupied", + "hall:warnum" + ] + ], + [ + "【68기】덕구", + 79, + 89, + 16, + "che_event_위압", + [ + 613774, + 15265, + 46213, + 118817, + 32955 + ], + 1, + "7031e789.jpg?=20240201", + 68, + "che_240328_MzI5", + 35, + [ + "hall:dex1", + "hall:firenum", + "hall:ttrate" + ] + ], + [ + "【68기】히메카와 네네", + 77, + 15, + 93, + "che_event_신중", + [ + 23155, + 24322, + 18906, + 387754, + 17988 + ], + 1, + "0c226afa.png?=20240327", + 68, + "che_240328_MzI5", + 36, + [ + "hall:tirate" + ] + ], + [ + "【68기】최진리", + 78, + 15, + 94, + "che_event_징병", + [ + 74120, + 48638, + 27321, + 794233, + 131294 + ], + 1, + "2d3506dd.webp?=20240414", + 68, + "che_240328_MzI5", + 46, + [ + "chief:5", + "hall:betrate", + "hall:dex4", + "hall:dex5" + ] + ], + [ + "【68기】SARS", + 79, + 15, + 93, + "che_event_환술", + [ + 75387, + 27861, + 30107, + 853934, + 35277 + ], + 1, + "b84944.jpg?=20180829", + 68, + "che_240328_MzI5", + 48, + [ + "chief:12", + "hall:dedication", + "hall:dex4", + "hall:experience", + "hall:killnum", + "hall:killrate", + "hall:killrate_person", + "hall:ttrate", + "hall:winrate" + ] + ], + [ + "【68기】뭐할까나", + 79, + 95, + 15, + "che_event_필살", + [ + 1215471, + 20156, + 21948, + 76692, + 32740 + ], + 0, + "default.jpg", + 68, + "che_240328_MzI5", + 49, + [ + "hall:betrate", + "hall:dex1", + "hall:killcrew", + "hall:killcrew_person", + "hall:killnum", + "hall:killrate", + "hall:killrate_person", + "hall:occupied", + "hall:tsrate", + "hall:warnum", + "hall:winrate" + ] + ], + [ + "【68기】리안", + 77, + 15, + 92, + "che_event_필살", + [ + 55995, + 15227, + 19006, + 628390, + 35901 + ], + 0, + "default.jpg", + 68, + "che_240328_MzI5", + 54, + [ + "hall:dedication", + "hall:experience" + ] + ], + [ + "【68기】경국지색소교", + 80, + 87, + 15, + "che_event_무쌍", + [ + 55077, + 515643, + 26951, + 127413, + 21014 + ], + 1, + "ad2669b5.jpg?=20230605", + 68, + "che_240328_MzI5", + 56, + [ + "hall:dex2" + ] + ], + [ + "【68기】Navy마초", + 87, + 85, + 15, + "che_event_척사", + [ + 116546, + 665580, + 17688, + 149230, + 37106 + ], + 1, + "37644ed3.png?=20230831", + 68, + "che_240328_MzI5", + 58, + [ + "hall:dex2", + "hall:ttrate", + "hall:winrate" + ] + ], + [ + "【68기】서림동", + 79, + 89, + 15, + "che_event_기병", + [ + 15298, + 45432, + 472219, + 95984, + 17574 + ], + 0, + "default.jpg", + 68, + "che_240328_MzI5", + 59, + [ + "hall:dex3", + "hall:tsrate" + ] + ], + [ + "【68기】이드", + 94, + 73, + 15, + "che_event_필살", + [ + 550122, + 37964, + 40712, + 109486, + 22011 + ], + 1, + "fc3385d6.gif?=20240301", + 68, + "che_240328_MzI5", + 62, + [ + "hall:tlrate" + ] + ], + [ + "【68기】조예린", + 97, + 15, + 74, + "che_event_환술", + [ + 32160, + 44326, + 13855, + 553560, + 24250 + ], + 1, + "a7a31038.png?=20240328", + 68, + "che_240328_MzI5", + 69, + [ + "hall:tlrate" + ] + ], + [ + "【68기】파츄리", + 15, + 73, + 96, + "che_event_저격", + [ + 0, + 0, + 0, + 0, + 0 + ], + 0, + "default.jpg", + 68, + "che_240328_MzI5", + 74, + [ + "hall:dedication", + "hall:tirate" + ] + ], + [ + "【68기】ㅊㄹㅊㄹ", + 79, + 90, + 15, + "che_event_위압", + [ + 51411, + 501103, + 7051, + 88596, + 14764 + ], + 1, + "63f1c106.png?=20230223", + 68, + "che_240328_MzI5", + 75, + [ + "hall:dex2" + ] + ], + [ + "【68기】라라", + 79, + 89, + 15, + "che_event_격노", + [ + 70196, + 465655, + 19709, + 130252, + 30677 + ], + 1, + "89907c4a.jpg?=20240324", + 68, + "che_240328_MzI5", + 76, + [ + "hall:dex2" + ] + ], + [ + "【68기】임사영", + 80, + 15, + 92, + "che_event_필살", + [ + 49165, + 36794, + 18594, + 612062, + 12487 + ], + 1, + "0b5a2642.jpg?=20240305", + 68, + "che_240328_MzI5", + 78, + [ + "hall:ttrate" + ] + ], + [ + "【68기】라콘타", + 79, + 93, + 15, + "che_event_의술", + [ + 77123, + 1236559, + 19776, + 144996, + 35777 + ], + 0, + "default.jpg", + 68, + "che_240328_MzI5", + 84, + [ + "chief:10", + "hall:betgold", + "hall:betwin", + "hall:betwingold", + "hall:dex2", + "hall:experience", + "hall:killcrew", + "hall:killcrew_person", + "hall:killnum", + "hall:killrate", + "hall:killrate_person", + "hall:occupied", + "hall:tsrate", + "hall:warnum", + "hall:winrate" + ] + ], + [ + "【68기】응나", + 77, + 15, + 96, + "che_event_귀병", + [ + 29931, + 42974, + 35373, + 1109595, + 33903 + ], + 1, + "35be5013.png?=20240328", + 68, + "che_240328_MzI5", + 86, + [ + "hall:dex4", + "hall:experience", + "hall:killcrew", + "hall:killcrew_person", + "hall:killnum", + "hall:killrate", + "hall:killrate_person", + "hall:tirate", + "hall:warnum", + "hall:winrate" + ] + ], + [ + "【68기】황금나메코", + 79, + 88, + 15, + "che_event_무쌍", + [ + 41263, + 33545, + 477747, + 172676, + 29335 + ], + 1, + "b489d617.png?=20240328", + 68, + "che_240328_MzI5", + 89, + [ + "hall:betgold", + "hall:betwin", + "hall:betwingold", + "hall:dex3" + ] + ], + [ + "【68기】대장토끼", + 75, + 16, + 92, + "che_event_필살", + [ + 77889, + 33900, + 39092, + 765188, + 50023 + ], + 1, + "6cfc470a.jpg?=20240328", + 68, + "che_240328_MzI5", + 91, + [ + "hall:dex4", + "hall:dex5", + "hall:killrate", + "hall:killrate_person", + "hall:winrate" + ] + ], + [ + "【68기】야생토끼", + 90, + 79, + 15, + "che_event_척사", + [ + 42687, + 28705, + 661860, + 122570, + 35017 + ], + 1, + "cfd1aa8a.png?=20240328", + 68, + "che_240328_MzI5", + 94, + [ + "chief:6", + "hall:betgold", + "hall:betrate", + "hall:betwin", + "hall:betwingold", + "hall:dex3" + ] + ], + [ + "【68기】스탈린", + 92, + 78, + 16, + "che_event_위압", + [ + 1187106, + 22451, + 56283, + 138076, + 48842 + ], + 1, + "dbf33f82.jpg?=20240328", + 68, + "che_240328_MzI5", + 95, + [ + "hall:dex1", + "hall:dex5", + "hall:experience", + "hall:killcrew", + "hall:killcrew_person", + "hall:killnum", + "hall:tlrate", + "hall:warnum" + ] + ], + [ + "【68기】1일1접속", + 78, + 88, + 15, + "che_event_징병", + [ + 28899, + 36097, + 385464, + 81401, + 45535 + ], + 0, + "default.jpg", + 68, + "che_240328_MzI5", + 97, + [ + "hall:dex5" + ] + ], + [ + "【68기】kims24", + 80, + 90, + 16, + "che_event_돌격", + [ + 13378, + 12877, + 705830, + 13021, + 19854 + ], + 1, + "8368fde2.png?=20240201", + 68, + "che_240328_MzI5", + 98, + [ + "hall:dex3", + "hall:tsrate" + ] + ], + [ + "【68기】지장", + 76, + 16, + 91, + "che_event_집중", + [ + 48686, + 34636, + 84987, + 456810, + 12948 + ], + 0, + "default.jpg", + 68, + "che_240328_MzI5", + 99, + [ + "hall:betrate", + "hall:tirate" + ] + ], + [ + "【68기】탕후루", + 96, + 73, + 15, + "che_event_필살", + [ + 1038844, + 47751, + 62251, + 107945, + 44444 + ], + 1, + "2f5f2060.jpg?=20240328", + 68, + "che_240328_MzI5", + 100, + [ + "hall:betgold", + "hall:betwin", + "hall:betwingold", + "hall:dex1", + "hall:killcrew", + "hall:killcrew_person", + "hall:killnum", + "hall:killrate", + "hall:killrate_person", + "hall:tlrate" + ] + ], + [ + "【68기】진솔", + 78, + 90, + 16, + "che_event_저격", + [ + 61550, + 350608, + 17137, + 74735, + 19334 + ], + 1, + "eac1560c.png?=20240114", + 68, + "che_240328_MzI5", + 101, + [ + "hall:dex2", + "hall:tsrate" + ] + ], + [ + "【68기】셀레미나메코", + 78, + 15, + 92, + "che_event_환술", + [ + 13474, + 31095, + 20675, + 598824, + 14177 + ], + 1, + "13fb8af2.jpg?=20240328", + 68, + "che_240328_MzI5", + 103, + [ + "hall:tirate" + ] + ], + [ + "【68기】마이나메코", + 91, + 15, + 76, + "che_event_집중", + [ + 36655, + 50184, + 85996, + 459030, + 35624 + ], + 1, + "432f679b.jpg?=20240328", + 68, + "che_240328_MzI5", + 104, + [ + "hall:tlrate" + ] + ], + [ + "【68기】하나미 코토하", + 78, + 89, + 15, + "che_event_척사", + [ + 552521, + 19457, + 52816, + 94067, + 28238 + ], + 1, + "7557b51f.png?=20240329", + 68, + "che_240328_MzI5", + 105, + [ + "hall:betrate", + "hall:dex1" + ] + ], + [ + "【68기】쿄스케", + 77, + 93, + 15, + "che_event_필살", + [ + 63342, + 24083, + 644191, + 141738, + 24695 + ], + 1, + "81c9cf40.jpg?=20240331", + 68, + "che_240328_MzI5", + 106, + [ + "chief:11", + "hall:betgold", + "hall:betrate", + "hall:betwin", + "hall:betwingold", + "hall:dedication", + "hall:dex3", + "hall:experience", + "hall:tsrate" + ] + ], + [ + "【68기】김정은", + 82, + 90, + 15, + "che_event_필살", + [ + 78651, + 1293785, + 17307, + 52133, + 60298 + ], + 1, + "2a25e139.png?=20240328", + 68, + "che_240328_MzI5", + 107, + [ + "chief:8", + "hall:betgold", + "hall:betwingold", + "hall:dex2", + "hall:dex5", + "hall:experience", + "hall:killcrew", + "hall:killcrew_person", + "hall:killnum", + "hall:killrate", + "hall:killrate_person", + "hall:occupied", + "hall:warnum", + "hall:winrate" + ] + ], + [ + "【68기】ㅎㄴ", + 89, + 80, + 15, + "che_event_무쌍", + [ + 387291, + 35863, + 318925, + 54248, + 19141 + ], + 0, + "default.jpg", + 68, + "che_240328_MzI5", + 108, + [ + "hall:betrate", + "hall:warnum" + ] + ], + [ + "【68기】사스케", + 77, + 15, + 92, + "che_event_필살", + [ + 45578, + 30686, + 12761, + 517924, + 14999 + ], + 1, + "8c868c0c.jpg?=20240328", + 68, + "che_240328_MzI5", + 110, + [ + "hall:betgold", + "hall:betrate", + "hall:betwin", + "hall:betwingold", + "hall:occupied" + ] + ], + [ + "【68기】래빗홀", + 81, + 89, + 15, + "che_event_돌격", + [ + 519409, + 39068, + 65164, + 169799, + 34582 + ], + 1, + "1f21130f.gif?=20240402", + 68, + "che_240328_MzI5", + 112, + [ + "hall:tsrate" + ] + ], + [ + "【68기】Hide_D", + 77, + 15, + 93, + "che_event_신중", + [ + 22971, + 20022, + 5006, + 645179, + 26283 + ], + 1, + "4569d848.png?=20230612", + 68, + "che_240328_MzI5", + 114, + [ + "chief:9", + "hall:dedication", + "hall:dex4", + "hall:ttrate" + ] + ], + [ + "【68기】퍄퍄", + 79, + 89, + 15, + "che_event_견고", + [ + 672441, + 14972, + 51929, + 106140, + 35456 + ], + 0, + "default.jpg", + 68, + "che_240328_MzI5", + 115, + [ + "hall:dex1", + "hall:tsrate" + ] + ], + [ + "【68기】대교", + 94, + 15, + 74, + "che_event_필살", + [ + 27137, + 33044, + 38138, + 432157, + 16349 + ], + 1, + "9f0e6dcc.jpg?=20220808", + 68, + "che_240328_MzI5", + 116, + [ + "hall:tlrate" + ] + ], + [ + "【68기】전사의 모험", + 93, + 73, + 15, + "che_event_척사", + [ + 115961, + 324296, + 113936, + 93571, + 28040 + ], + 1, + "61f67d71.jpg?=20240329", + 68, + "che_240328_MzI5", + 117, + [ + "hall:betgold", + "hall:betwingold", + "hall:dex2", + "hall:tlrate" + ] + ], + [ + "【68기】모니카", + 79, + 91, + 15, + "che_event_의술", + [ + 60290, + 29597, + 835404, + 81291, + 45884 + ], + 1, + "b7b0c496.jpg?=20240328", + 68, + "che_240328_MzI5", + 118, + [ + "hall:dex3", + "hall:dex5", + "hall:killcrew", + "hall:killcrew_person", + "hall:tsrate", + "hall:warnum" + ] + ], + [ + "【68기】간지밍이", + 77, + 16, + 91, + "che_event_신산", + [ + 57391, + 12598, + 25996, + 535967, + 37861 + ], + 1, + "19c0150f.png?=20230615", + 68, + "che_240328_MzI5", + 119, + [ + "hall:betgold", + "hall:betwin", + "hall:betwingold" + ] + ], + [ + "【68기】니쉬", + 87, + 16, + 79, + "che_event_신중", + [ + 37970, + 42380, + 44763, + 436507, + 21067 + ], + 1, + "215c3ff3.png?=20240402", + 68, + "che_240328_MzI5", + 122, + [ + "hall:betrate", + "hall:betwingold" + ] + ], + [ + "【68기】슬라임", + 91, + 76, + 15, + "che_event_격노", + [ + 20962, + 45319, + 477016, + 97922, + 22086 + ], + 1, + "2d2da7c0.jpg?=20231130", + 68, + "che_240328_MzI5", + 124, + [ + "hall:dex3", + "hall:tlrate" + ] + ], + [ + "【68기】깔깔유머", + 80, + 88, + 15, + "che_event_필살", + [ + 17144, + 24092, + 494678, + 95611, + 12196 + ], + 0, + "default.jpg", + 68, + "che_240328_MzI5", + 125, + [ + "hall:dex3" + ] + ], + [ + "【68기】개미호랑이", + 78, + 15, + 93, + "che_event_징병", + [ + 58105, + 46967, + 21865, + 768900, + 23013 + ], + 0, + "default.jpg", + 68, + "che_240328_MzI5", + 126, + [ + "hall:dex4", + "hall:tirate" + ] + ], + [ + "【68기】압도적으로 부정적", + 79, + 15, + 91, + "che_event_집중", + [ + 48636, + 16808, + 33055, + 673110, + 34019 + ], + 1, + "0e7dcff6.gif?=20240417", + 68, + "che_240328_MzI5", + 130, + [ + "chief:7", + "hall:dedication", + "hall:dex4" + ] + ], + [ + "【68기】resin", + 79, + 15, + 90, + "che_event_필살", + [ + 23337, + 19098, + 18713, + 575866, + 38465 + ], + 0, + "default.jpg", + 68, + "che_240328_MzI5", + 132, + [ + "hall:dedication", + "hall:experience", + "hall:occupied" + ] + ], + [ + "【68기】불패", + 79, + 15, + 91, + "che_event_필살", + [ + 23681, + 40435, + 44154, + 615888, + 19302 + ], + 1, + "b2fd1cac.jpg?=20240401", + 68, + "che_240328_MzI5", + 136, + [ + "hall:winrate" + ] + ], + [ + "【68기】제이크", + 78, + 15, + 92, + "che_event_집중", + [ + 20267, + 20180, + 9952, + 556250, + 52512 + ], + 1, + "63937425.jpg?=20240328", + 68, + "che_240328_MzI5", + 139, + [ + "hall:dex5" + ] + ], + [ + "【68기】세르네오", + 15, + 76, + 90, + "che_event_신산", + [ + 0, + 0, + 0, + 0, + 0 + ], + 0, + "default.jpg", + 68, + "che_240328_MzI5", + 141, + [ + "hall:ttrate" + ] + ], + [ + "【68기】깔보지마라", + 78, + 16, + 91, + "che_event_필살", + [ + 33562, + 8785, + 7300, + 276097, + 17651 + ], + 0, + "default.jpg", + 68, + "che_240328_MzI5", + 143, + [ + "hall:betwin" + ] + ], + [ + "【68기】주사위나메코", + 78, + 16, + 91, + "che_event_반계", + [ + 33417, + 18236, + 20172, + 447166, + 33236 + ], + 1, + "521bb79a.jpg?=20240329", + 68, + "che_240328_MzI5", + 144, + [ + "hall:ttrate" + ] + ], + [ + "【68기】Air", + 79, + 90, + 15, + "che_event_위압", + [ + 73101, + 560697, + 25758, + 107954, + 59409 + ], + 0, + "default.jpg", + 68, + "che_240328_MzI5", + 145, + [ + "hall:dex2", + "hall:dex5", + "hall:firenum" + ] + ], + [ + "【68기】황혼중", + 15, + 72, + 98, + "che_event_집중", + [ + 0, + 0, + 0, + 0, + 0 + ], + 1, + "e5161df9.jpg?=20231110", + 68, + "che_240328_MzI5", + 197, + [ + "hall:dedication", + "hall:experience", + "hall:tirate" + ] + ], + [ + "【68기】くま", + 77, + 15, + 92, + "che_event_집중", + [ + 37546, + 30801, + 26889, + 676801, + 38582 + ], + 1, + "770f53.jpg?=20190718", + 68, + "che_240328_MzI5", + 216, + [ + "hall:dex4" + ] + ], + [ + "【68기】서희", + 76, + 15, + 92, + "che_event_필살", + [ + 44321, + 38127, + 32534, + 539920, + 40848 + ], + 1, + "8debf7e5.png?=20230308", + 68, + "che_240328_MzI5", + 221, + [ + "hall:betrate", + "hall:tirate" + ] + ], + [ + "【68기】하루5분", + 79, + 16, + 88, + "che_event_신산", + [ + 34335, + 6568, + 11854, + 364144, + 16014 + ], + 0, + "default.jpg", + 68, + "che_240328_MzI5", + 255, + [ + "hall:firenum" + ] + ], + [ + "【68기】냐옹", + 16, + 75, + 92, + "che_event_집중", + [ + 230, + 0, + 0, + 649, + 0 + ], + 0, + "default.jpg", + 68, + "che_240328_MzI5", + 312, + [ + "hall:dedication" + ] + ], + [ + "【68기】조승상", + 15, + 91, + 76, + "che_event_무쌍", + [ + 0, + 0, + 0, + 0, + 0 + ], + 1, + "6f27503f.png?=20240322", + 68, + "che_240328_MzI5", + 330, + [ + "hall:firenum", + "hall:ttrate" + ] + ], + [ + "【68기】초아인지", + 81, + 15, + 86, + "che_event_필살", + [ + 24579, + 57946, + 10466, + 568180, + 36926 + ], + 1, + "fc1050ec.png?=20240408", + 68, + "che_240328_MzI5", + 443, + [ + "hall:dex2", + "hall:occupied" + ] + ], + [ + "【69기】쀼관", + 17, + 85, + 82, + "che_event_의술", + [ + 4942, + 1760, + 9294, + 2809, + 8341 + ], + 1, + "058ad315.gif?=20240429", + 69, + "che_240425_kTje", + 7, + [ + "hall:dedication" + ] + ], + [ + "【69기】수사반장1958", + 15, + 74, + 97, + "che_event_의술", + [ + 0, + 0, + 0, + 0, + 0 + ], + 1, + "f933d65f.jpg?=20240424", + 69, + "che_240425_kTje", + 9, + [ + "hall:dedication", + "hall:tirate" + ] + ], + [ + "【69기】바나낫", + 81, + 91, + 15, + "che_event_필살", + [ + 430764, + 280946, + 290162, + 39644, + 29562 + ], + 1, + "7a75777f.gif?=20240422", + 69, + "che_240425_kTje", + 16, + [ + "hall:dex2", + "hall:firenum", + "hall:killcrew_person", + "hall:killnum", + "hall:killrate", + "hall:killrate_person", + "hall:warnum", + "hall:winrate" + ] + ], + [ + "【69기】와일드플라워", + 78, + 15, + 92, + "che_event_필살", + [ + 34606, + 54569, + 13654, + 925819, + 42935 + ], + 0, + "default.jpg", + 69, + "che_240425_kTje", + 21, + [ + "hall:dex4", + "hall:killnum", + "hall:killrate", + "hall:killrate_person", + "hall:winrate" + ] + ], + [ + "【69기】Stardust", + 78, + 89, + 15, + "che_event_필살", + [ + 54383, + 47093, + 400161, + 74833, + 22320 + ], + 0, + "default.jpg", + 69, + "che_240425_kTje", + 26, + [ + "hall:ttrate" + ] + ], + [ + "【69기】panpenpan", + 78, + 15, + 93, + "che_event_필살", + [ + 83917, + 9116, + 13268, + 566788, + 17184 + ], + 1, + "521bb79a.jpg?=20240329", + 69, + "che_240425_kTje", + 28, + [ + "hall:ttrate", + "hall:winrate" + ] + ], + [ + "【69기】로비", + 15, + 73, + 96, + "che_event_척사", + [ + 0, + 0, + 0, + 0, + 0 + ], + 1, + "3e5926b7.png?=20231228", + 69, + "che_240425_kTje", + 30, + [ + "hall:tirate" + ] + ], + [ + "【69기】텟사", + 76, + 93, + 16, + "che_event_척사", + [ + 494711, + 18082, + 25961, + 70927, + 42137 + ], + 0, + "default.jpg", + 69, + "che_240425_kTje", + 31, + [ + "chief:8", + "hall:tsrate" + ] + ], + [ + "【69기】기연봇", + 15, + 74, + 95, + "che_event_집중", + [ + 0, + 0, + 0, + 0, + 0 + ], + 1, + "61c5e215.png?=20240426", + 69, + "che_240425_kTje", + 32, + [ + "hall:dedication" + ] + ], + [ + "【69기】くま", + 78, + 16, + 90, + "che_event_집중", + [ + 27451, + 25569, + 27347, + 536566, + 25803 + ], + 1, + "770f53.jpg?=20190718", + 69, + "che_240425_kTje", + 33, + [ + "hall:occupied" + ] + ], + [ + "【69기】Navy마초", + 78, + 92, + 15, + "che_event_필살", + [ + 693181, + 11058, + 52826, + 107277, + 31134 + ], + 1, + "37644ed3.png?=20230831", + 69, + "che_240425_kTje", + 44, + [ + "hall:dex1", + "hall:tsrate" + ] + ], + [ + "【69기】무다구치 렌야", + 96, + 73, + 15, + "che_event_견고", + [ + 30404, + 585468, + 36872, + 27065, + 29206 + ], + 1, + "0e023deb.jpg?=20240425", + 69, + "che_240425_kTje", + 47, + [ + "hall:dex2", + "hall:tlrate" + ] + ], + [ + "【69기】불패", + 82, + 88, + 15, + "che_event_위압", + [ + 68685, + 540104, + 72079, + 95514, + 23913 + ], + 1, + "b2fd1cac.jpg?=20240401", + 69, + "che_240425_kTje", + 48, + [ + "hall:dex2" + ] + ], + [ + "【69기】Air", + 78, + 88, + 18, + "che_event_위압", + [ + 77721, + 374512, + 121068, + 136307, + 9210 + ], + 0, + "default.jpg", + 69, + "che_240425_kTje", + 49, + [ + "hall:betrate", + "hall:dex2" + ] + ], + [ + "【69기】임사영", + 77, + 15, + 98, + "che_event_필살", + [ + 67566, + 30307, + 26308, + 1274387, + 26248 + ], + 1, + "0b5a2642.jpg?=20240305", + 69, + "che_240425_kTje", + 51, + [ + "hall:dex4", + "hall:experience", + "hall:killcrew", + "hall:killcrew_person", + "hall:killnum", + "hall:killrate", + "hall:killrate_person", + "hall:tirate", + "hall:warnum", + "hall:winrate" + ] + ], + [ + "【69기】이세리아", + 81, + 94, + 15, + "che_event_필살", + [ + 33172, + 1076241, + 25999, + 73768, + 28573 + ], + 1, + "de1e45d5.png?=20240425", + 69, + "che_240425_kTje", + 58, + [ + "hall:betgold", + "hall:betwingold", + "hall:dex2", + "hall:experience", + "hall:killcrew", + "hall:killcrew_person", + "hall:killnum", + "hall:killrate", + "hall:killrate_person", + "hall:occupied", + "hall:tsrate", + "hall:warnum", + "hall:winrate" + ] + ], + [ + "【69기】호무새", + 76, + 92, + 16, + "che_event_필살", + [ + 46960, + 50271, + 601638, + 55681, + 8725 + ], + 1, + "1b455e86.png?=20240425", + 69, + "che_240425_kTje", + 60, + [ + "hall:dex3", + "hall:tsrate" + ] + ], + [ + "【69기】사스", + 80, + 15, + 91, + "che_event_집중", + [ + 68838, + 101547, + 41842, + 823000, + 60921 + ], + 1, + "eea28986.webp?=20240501", + 69, + "che_240425_kTje", + 67, + [ + "chief:9", + "hall:betgold", + "hall:betwin", + "hall:betwingold", + "hall:dex4", + "hall:dex5", + "hall:experience", + "hall:occupied" + ] + ], + [ + "【69기】셀레미", + 78, + 15, + 92, + "che_event_환술", + [ + 14878, + 39575, + 9823, + 460899, + 47817 + ], + 1, + "13fb8af2.jpg?=20240328", + 69, + "che_240425_kTje", + 70, + [ + "hall:occupied" + ] + ], + [ + "【69기】네이", + 80, + 15, + 92, + "che_event_필살", + [ + 41312, + 17986, + 22496, + 579510, + 23619 + ], + 0, + "default.jpg", + 69, + "che_240425_kTje", + 72, + [ + "hall:ttrate" + ] + ], + [ + "【69기】서희", + 82, + 15, + 90, + "che_event_필살", + [ + 47360, + 40045, + 50878, + 731346, + 21537 + ], + 1, + "8debf7e5.png?=20230308", + 69, + "che_240425_kTje", + 75, + [ + "hall:dex4" + ] + ], + [ + "【69기】POCARI", + 89, + 80, + 15, + "che_event_필살", + [ + 33635, + 53345, + 570879, + 99768, + 95451 + ], + 1, + "28431fbf.jpg?=20240328", + 69, + "che_240425_kTje", + 77, + [ + "hall:dex3", + "hall:dex5", + "hall:occupied" + ] + ], + [ + "【69기】김수현", + 94, + 78, + 16, + "che_event_필살", + [ + 849633, + 13157, + 19239, + 93281, + 26156 + ], + 1, + "3ce20bb4.jpg?=20240425", + 69, + "che_240425_kTje", + 78, + [ + "hall:betrate", + "hall:dex1", + "hall:killcrew_person", + "hall:tlrate", + "hall:warnum" + ] + ], + [ + "【69기】평민킬러", + 80, + 90, + 16, + "che_event_척사", + [ + 879713, + 42019, + 51388, + 78967, + 15642 + ], + 1, + "841f30aa.jpg?=20240425", + 69, + "che_240425_kTje", + 80, + [ + "hall:betgold", + "hall:betwin", + "hall:betwingold", + "hall:dex1", + "hall:killrate", + "hall:killrate_person" + ] + ], + [ + "【69기】꿀병", + 93, + 76, + 15, + "che_event_궁병", + [ + 470287, + 250273, + 109437, + 121141, + 51925 + ], + 0, + "default.jpg", + 69, + "che_240425_kTje", + 81, + [ + "hall:betrate", + "hall:occupied" + ] + ], + [ + "【69기】SARS", + 82, + 91, + 15, + "che_event_필살", + [ + 1419778, + 39300, + 77394, + 66649, + 68857 + ], + 1, + "b84944.jpg?=20180829", + 69, + "che_240425_kTje", + 85, + [ + "chief:12", + "hall:betrate", + "hall:dedication", + "hall:dex1", + "hall:dex5", + "hall:experience", + "hall:killcrew", + "hall:killcrew_person", + "hall:killnum", + "hall:warnum" + ] + ], + [ + "【69기】니쉬", + 89, + 80, + 16, + "che_event_견고", + [ + 676558, + 16541, + 26724, + 53012, + 22104 + ], + 1, + "215c3ff3.png?=20240402", + 69, + "che_240425_kTje", + 86, + [ + "hall:dex1" + ] + ], + [ + "【69기】색스", + 95, + 78, + 15, + "che_event_필살", + [ + 106675, + 10020, + 782964, + 70047, + 31757 + ], + 1, + "4a26369c.jpg?=20240425", + 69, + "che_240425_kTje", + 89, + [ + "hall:betgold", + "hall:betwin", + "hall:betwingold", + "hall:dex3", + "hall:killcrew", + "hall:killcrew_person", + "hall:killnum", + "hall:tlrate", + "hall:warnum" + ] + ], + [ + "【69기】블랙죠", + 92, + 78, + 16, + "che_event_필살", + [ + 33957, + 87204, + 647253, + 81542, + 41281 + ], + 0, + "default.jpg", + 69, + "che_240425_kTje", + 90, + [ + "hall:dex3", + "hall:firenum", + "hall:ttrate" + ] + ], + [ + "【69기】프리허그", + 77, + 15, + 95, + "che_event_필살", + [ + 46926, + 19528, + 56730, + 864955, + 29845 + ], + 1, + "6a5c250a.gif?=20240425", + 69, + "che_240425_kTje", + 91, + [ + "hall:betgold", + "hall:betrate", + "hall:betwingold", + "hall:dex4", + "hall:killrate", + "hall:killrate_person" + ] + ], + [ + "【69기】無名別動隊", + 91, + 77, + 16, + "che_event_필살", + [ + 53036, + 556840, + 43053, + 81377, + 29421 + ], + 1, + "b9858da9.png?=20240516", + 69, + "che_240425_kTje", + 92, + [ + "hall:dex2", + "hall:firenum" + ] + ], + [ + "【69기】Attila the Hun", + 93, + 78, + 15, + "che_event_돌격", + [ + 39080, + 504207, + 4294, + 64452, + 21848 + ], + 1, + "40cc109c.png?=20240425", + 69, + "che_240425_kTje", + 95, + [ + "hall:betwin", + "hall:dex2", + "hall:tlrate", + "hall:winrate" + ] + ], + [ + "【69기】방시혁", + 90, + 80, + 15, + "che_event_척사", + [ + 341654, + 35907, + 78460, + 40638, + 46224 + ], + 1, + "9be18403.png?=20240425", + 69, + "che_240425_kTje", + 96, + [ + "hall:tlrate" + ] + ], + [ + "【69기】ㅊㄹㅊㄹ", + 80, + 89, + 15, + "che_event_필살", + [ + 10514, + 91781, + 465972, + 108215, + 14002 + ], + 1, + "63f1c106.png?=20230223", + 69, + "che_240425_kTje", + 98, + [ + "hall:dex3" + ] + ], + [ + "【69기】봄꽃", + 81, + 89, + 15, + "che_event_필살", + [ + 568002, + 6898, + 54948, + 77416, + 28040 + ], + 1, + "51333a34.png?=20240425", + 69, + "che_240425_kTje", + 99, + [ + "hall:dex1" + ] + ], + [ + "【69기】TASK0400", + 79, + 15, + 88, + "che_event_집중", + [ + 63858, + 44756, + 37178, + 561944, + 59405 + ], + 1, + "1cac76d9.jpg?=20240427", + 69, + "che_240425_kTje", + 101, + [ + "hall:betrate", + "hall:dex5" + ] + ], + [ + "【69기】독구", + 79, + 15, + 94, + "che_event_필살", + [ + 34481, + 19724, + 24787, + 827237, + 36399 + ], + 1, + "d83bcfac.gif?=20240424", + 69, + "che_240425_kTje", + 102, + [ + "hall:betwin", + "hall:dex4", + "hall:firenum", + "hall:killcrew", + "hall:killcrew_person", + "hall:killnum", + "hall:tirate", + "hall:winrate" + ] + ], + [ + "【69기】개미호랑이", + 78, + 15, + 94, + "che_event_필살", + [ + 58471, + 38893, + 43723, + 732517, + 62052 + ], + 1, + "4baaf9fc.png?=20240507", + 69, + "che_240425_kTje", + 103, + [ + "chief:7", + "hall:dex4", + "hall:dex5", + "hall:tirate" + ] + ], + [ + "【69기】RAKONTA", + 83, + 88, + 15, + "che_event_견고", + [ + 988855, + 24718, + 114075, + 132927, + 65400 + ], + 1, + "578d3ce5.png?=20240428", + 69, + "che_240425_kTje", + 104, + [ + "chief:10", + "hall:betgold", + "hall:betwin", + "hall:betwingold", + "hall:dex1", + "hall:dex5", + "hall:experience", + "hall:killcrew", + "hall:killrate", + "hall:killrate_person", + "hall:warnum" + ] + ], + [ + "【69기】무장", + 80, + 96, + 15, + "che_event_필살", + [ + 14534, + 31964, + 1202376, + 80858, + 27098 + ], + 0, + "default.jpg", + 69, + "che_240425_kTje", + 105, + [ + "hall:dex3", + "hall:experience", + "hall:killcrew", + "hall:killcrew_person", + "hall:killnum", + "hall:killrate", + "hall:killrate_person", + "hall:occupied", + "hall:tsrate", + "hall:warnum", + "hall:winrate" + ] + ], + [ + "【69기】덕구", + 80, + 90, + 15, + "che_event_위압", + [ + 620815, + 15407, + 32328, + 143238, + 20711 + ], + 1, + "7031e789.jpg?=20240201", + 69, + "che_240425_kTje", + 108, + [ + "hall:dex1", + "hall:tsrate" + ] + ], + [ + "【69기】홍해인", + 16, + 80, + 88, + "che_event_반계", + [ + 0, + 0, + 0, + 0, + 0 + ], + 1, + "53aea32c.jpg?=20240425", + 69, + "che_240425_kTje", + 109, + [ + "hall:betrate", + "hall:dedication" + ] + ], + [ + "【69기】강서유서", + 15, + 81, + 87, + "che_event_징병", + [ + 0, + 0, + 0, + 0, + 0 + ], + 1, + "0439156f.png?=20240425", + 69, + "che_240425_kTje", + 110, + [ + "hall:betrate", + "hall:dedication", + "hall:firenum" + ] + ], + [ + "【69기】베이커리", + 16, + 95, + 72, + "che_event_무쌍", + [ + 0, + 0, + 0, + 0, + 0 + ], + 1, + "b9acbf2a.jpg?=20240425", + 69, + "che_240425_kTje", + 111, + [ + "hall:betgold", + "hall:betwin", + "hall:betwingold", + "hall:firenum", + "hall:tsrate" + ] + ], + [ + "【69기】태호", + 16, + 74, + 94, + "che_event_신중", + [ + 0, + 0, + 0, + 0, + 0 + ], + 1, + "9f7ba4f9.jpg?=20240425", + 69, + "che_240425_kTje", + 112, + [ + "hall:betgold", + "hall:betwin", + "hall:betwingold", + "hall:dedication", + "hall:experience" + ] + ], + [ + "【69기】카이스트", + 77, + 15, + 92, + "che_event_환술", + [ + 38117, + 46289, + 26472, + 532270, + 41877 + ], + 1, + "e7e27cd6.jpg?=20221125", + 69, + "che_240425_kTje", + 113, + [ + "hall:occupied" + ] + ], + [ + "【69기】에드워드", + 81, + 17, + 92, + "che_event_필살", + [ + 34640, + 46697, + 30435, + 1312596, + 47690 + ], + 1, + "4a395057.png?=20240427", + 69, + "che_240425_kTje", + 115, + [ + "hall:betgold", + "hall:betrate", + "hall:betwin", + "hall:betwingold", + "hall:dex4", + "hall:experience", + "hall:killcrew", + "hall:killcrew_person", + "hall:killnum", + "hall:killrate", + "hall:killrate_person", + "hall:warnum", + "hall:winrate" + ] + ], + [ + "【69기】마요이", + 78, + 15, + 92, + "che_event_집중", + [ + 27984, + 35777, + 41274, + 673542, + 41251 + ], + 1, + "2b49c945.png?=20230921", + 69, + "che_240425_kTje", + 117, + [ + "hall:dex4", + "hall:ttrate" + ] + ], + [ + "【69기】이세리 니나", + 90, + 78, + 15, + "che_event_징병", + [ + 649389, + 31072, + 66231, + 98080, + 16974 + ], + 1, + "3bfbbb49.jpg?=20240415", + 69, + "che_240425_kTje", + 118, + [ + "hall:dex1", + "hall:tlrate" + ] + ], + [ + "【69기】갈길도바쁜데", + 77, + 15, + 94, + "che_event_집중", + [ + 24523, + 42005, + 32400, + 569231, + 59123 + ], + 0, + "default.jpg", + 69, + "che_240425_kTje", + 119, + [ + "hall:betwin", + "hall:dex5", + "hall:tirate" + ] + ], + [ + "【69기】냐옹", + 76, + 92, + 17, + "che_event_무쌍", + [ + 19024, + 43871, + 320964, + 56482, + 18909 + ], + 1, + "9a6bf29a.jpg?=20231130", + 69, + "che_240425_kTje", + 121, + [ + "hall:firenum" + ] + ], + [ + "【69기】척", + 77, + 90, + 15, + "che_event_필살", + [ + 129219, + 81396, + 435812, + 124899, + 23189 + ], + 1, + "7cb75480.png?=20221202", + 69, + "che_240425_kTje", + 122, + [ + "hall:tsrate" + ] + ], + [ + "【69기】Hide_D", + 78, + 15, + 94, + "che_event_신산", + [ + 41638, + 30295, + 28884, + 449354, + 16427 + ], + 1, + "4569d848.png?=20230612", + 69, + "che_240425_kTje", + 123, + [ + "hall:tirate" + ] + ], + [ + "【69기】슬라임", + 82, + 60, + 14, + "che_event_공성", + [ + 23537, + 5962, + 29947, + 27226, + 796237 + ], + 1, + "2d2da7c0.jpg?=20231130", + 69, + "che_240425_kTje", + 124, + [ + "hall:dedication", + "hall:dex5", + "hall:experience", + "hall:killcrew", + "hall:killrate", + "hall:occupied", + "hall:tlrate", + "hall:winrate" + ] + ], + [ + "【69기】킬라그램", + 93, + 74, + 15, + "che_event_척사", + [ + 360292, + 25080, + 43686, + 49040, + 13245 + ], + 1, + "75677fe6.jpg?=20240427", + 69, + "che_240425_kTje", + 125, + [ + "hall:tlrate" + ] + ], + [ + "【69기】슈퍼블루문", + 15, + 89, + 78, + "che_event_위압", + [ + 0, + 0, + 0, + 0, + 0 + ], + 0, + "default.jpg", + 69, + "che_240425_kTje", + 128, + [ + "hall:dedication" + ] + ], + [ + "【69기】난천", + 15, + 77, + 91, + "che_event_집중", + [ + 0, + 0, + 0, + 0, + 0 + ], + 0, + "default.jpg", + 69, + "che_240425_kTje", + 129, + [ + "hall:dedication" + ] + ], + [ + "【69기】통장", + 97, + 15, + 73, + "che_event_신산", + [ + 101499, + 15748, + 33400, + 500072, + 23349 + ], + 0, + "default.jpg", + 69, + "che_240425_kTje", + 130, + [ + "hall:tlrate" + ] + ], + [ + "【69기】호두", + 80, + 92, + 15, + "che_event_격노", + [ + 87678, + 115760, + 713852, + 101235, + 58382 + ], + 1, + "fc6ca4d9.png?=20240425", + 69, + "che_240425_kTje", + 132, + [ + "hall:dex3", + "hall:dex5", + "hall:occupied" + ] + ], + [ + "【69기】무지쟝", + 76, + 15, + 93, + "che_event_환술", + [ + 14060, + 8479, + 26210, + 382516, + 25464 + ], + 0, + "default.jpg", + 69, + "che_240425_kTje", + 136, + [ + "hall:betgold" + ] + ], + [ + "【69기】최진리", + 78, + 94, + 15, + "che_event_돌격", + [ + 96320, + 60341, + 650881, + 167576, + 24532 + ], + 1, + "2d3506dd.webp?=20240414", + 69, + "che_240425_kTje", + 139, + [ + "hall:betrate", + "hall:betwingold", + "hall:dex3", + "hall:tsrate" + ] + ], + [ + "【69기】러브레터", + 15, + 73, + 97, + "che_event_의술", + [ + 0, + 0, + 0, + 0, + 0 + ], + 0, + "default.jpg", + 69, + "che_240425_kTje", + 141, + [ + "hall:tirate" + ] + ], + [ + "【69기】북오더", + 79, + 92, + 16, + "che_event_필살", + [ + 125047, + 1001618, + 27519, + 140633, + 58705 + ], + 1, + "0e7dcff6.gif?=20240417", + 69, + "che_240425_kTje", + 142, + [ + "chief:11", + "hall:dex2", + "hall:dex5", + "hall:experience", + "hall:killcrew", + "hall:killcrew_person", + "hall:killnum", + "hall:ttrate", + "hall:warnum" + ] + ], + [ + "【69기】알렉스 카젤느", + 77, + 15, + 95, + "che_event_징병", + [ + 49058, + 24097, + 20070, + 578601, + 13244 + ], + 1, + "9486aab8.png?=20240424", + 69, + "che_240425_kTje", + 144, + [ + "hall:tirate" + ] + ], + [ + "【69기】지원", + 15, + 72, + 94, + "che_event_저격", + [ + 0, + 0, + 0, + 0, + 0 + ], + 1, + "3abfc677.webp?=20240129", + 69, + "che_240425_kTje", + 204, + [ + "hall:ttrate" + ] + ], + [ + "【69기】경매장테러범", + 91, + 15, + 76, + "che_event_필살", + [ + 95043, + 63932, + 43860, + 746415, + 51169 + ], + 0, + "default.jpg", + 69, + "che_240425_kTje", + 205, + [ + "chief:5", + "hall:dex4" + ] + ], + [ + "【69기】열국지", + 90, + 78, + 15, + "che_event_위압", + [ + 533340, + 92969, + 50903, + 124251, + 27895 + ], + 1, + "59758e06.webp?=20240427", + 69, + "che_240425_kTje", + 213, + [ + "hall:dex1", + "hall:tlrate" + ] + ], + [ + "【69기】황혼중", + 15, + 72, + 96, + "che_event_척사", + [ + 0, + 0, + 0, + 0, + 0 + ], + 1, + "e5161df9.jpg?=20231110", + 69, + "che_240425_kTje", + 268, + [ + "hall:ttrate" + ] + ], + [ + "【69기】돌아온너구리", + 81, + 87, + 17, + "che_event_돌격", + [ + 46986, + 424716, + 19406, + 125423, + 6444 + ], + 0, + "default.jpg", + 69, + "che_240425_kTje", + 276, + [ + "hall:dex2" + ] + ], + [ + "【69기】리안", + 77, + 92, + 15, + "che_event_무쌍", + [ + 31041, + 54343, + 518673, + 96177, + 52032 + ], + 0, + "default.jpg", + 69, + "che_240425_kTje", + 289, + [ + "chief:6", + "hall:dex3", + "hall:tsrate", + "hall:ttrate" + ] + ], + [ + "【69기】진솔", + 79, + 87, + 15, + "che_event_견고", + [ + 49469, + 323507, + 13195, + 94410, + 8317 + ], + 1, + "eac1560c.png?=20240114", + 69, + "che_240425_kTje", + 292, + [ + "hall:dex2" + ] + ], + [ + "【69기】이재모피자", + 17, + 74, + 90, + "che_event_저격", + [ + 0, + 0, + 0, + 0, + 0 + ], + 0, + "default.jpg", + 69, + "che_240425_kTje", + 311, + [ + "hall:firenum" + ] + ], + [ + "【69기】tqtt", + 16, + 75, + 91, + "che_event_의술", + [ + 0, + 0, + 160, + 7789, + 0 + ], + 0, + "default.jpg", + 69, + "che_240425_kTje", + 318, + [ + "hall:killrate_person" + ] + ], + [ + "【69기】종방징", + 15, + 85, + 77, + "che_event_무쌍", + [ + 0, + 0, + 0, + 0, + 0 + ], + 0, + "default.jpg", + 69, + "che_240425_kTje", + 328, + [ + "hall:firenum" + ] + ], + [ + "【69기】불곰", + 15, + 74, + 92, + "che_event_의술", + [ + 0, + 0, + 0, + 0, + 0 + ], + 1, + "5cd8411.png?=20220513", + 69, + "che_240425_kTje", + 412, + [ + "hall:tirate" + ] + ], + [ + "【69기】조승상", + 91, + 74, + 15, + "che_event_징병", + [ + 45304, + 68363, + 501152, + 147749, + 33977 + ], + 1, + "6f27503f.png?=20240322", + 69, + "che_240425_kTje", + 426, + [ + "hall:dex3", + "hall:firenum" + ] + ], + [ + "【69기】유니스", + 15, + 78, + 84, + "che_event_집중", + [ + 0, + 0, + 0, + 0, + 0 + ], + 1, + "66b5c5cb.jpg?=20240507", + 69, + "che_240425_kTje", + 611, + [ + "hall:ttrate" + ] + ], + [ + "【70기】바나낫", + 79, + 95, + 15, + "che_event_필살", + [ + 26566, + 19367, + 1259770, + 48545, + 22566 + ], + 1, + "5fd921c4.gif?=20240607", + 70, + "che_240523_Nnqh", + 6, + [ + "hall:betgold", + "hall:dex3", + "hall:occupied", + "hall:winrate" + ] + ], + [ + "【70기】류화영", + 101, + 15, + 70, + "che_event_공성", + [ + 5774, + 0, + 12138, + 31444, + 814139 + ], + 1, + "45924e80.jpg?=20240612", + 70, + "che_240523_Nnqh", + 9, + [ + "hall:betgold", + "hall:betwin", + "hall:betwingold", + "hall:dex5", + "hall:experience", + "hall:killrate", + "hall:occupied", + "hall:tlrate" + ] + ], + [ + "【70기】간지밍이", + 77, + 98, + 15, + "che_event_돌격", + [ + 60682, + 74742, + 1217327, + 240520, + 56596 + ], + 1, + "05a5f403.png?=20240523", + 70, + "che_240523_Nnqh", + 10, + [ + "chief:12", + "hall:betgold", + "hall:betwin", + "hall:betwingold", + "hall:dedication", + "hall:dex3", + "hall:dex5", + "hall:experience", + "hall:killnum", + "hall:killrate", + "hall:killrate_person", + "hall:tsrate", + "hall:warnum", + "hall:winrate" + ] + ], + [ + "【70기】민트토끼", + 15, + 100, + 72, + "che_event_의술", + [ + 0, + 0, + 0, + 0, + 0 + ], + 1, + "48933cb5.jpg?=20240517", + 70, + "che_240523_Nnqh", + 12, + [ + "hall:dedication" + ] + ], + [ + "【70기】(AI)이해고", + 78, + 93, + 15, + "che_event_필살", + [ + 45987, + 57878, + 562812, + 58595, + 32701 + ], + 1, + "1481e158.jpg?=20240523", + 70, + "che_240523_Nnqh", + 13, + [ + "hall:betgold", + "hall:betwingold", + "hall:dex3", + "hall:firenum" + ] + ], + [ + "【70기】마요이", + 77, + 15, + 97, + "che_event_집중", + [ + 19836, + 29249, + 10381, + 943935, + 18186 + ], + 1, + "2b49c945.png?=20230921", + 70, + "che_240523_Nnqh", + 14, + [ + "hall:dex4", + "hall:winrate" + ] + ], + [ + "【70기】환선", + 79, + 95, + 15, + "che_event_필살", + [ + 395668, + 50435, + 378901, + 150280, + 27583 + ], + 0, + "default.jpg", + 70, + "che_240523_Nnqh", + 15, + [ + "chief:8", + "hall:betrate", + "hall:dedication" + ] + ], + [ + "【70기】다내꺼", + 15, + 99, + 71, + "che_event_신산", + [ + 0, + 0, + 0, + 0, + 0 + ], + 0, + "default.jpg", + 70, + "che_240523_Nnqh", + 18, + [ + "hall:betrate", + "hall:firenum", + "hall:ttrate" + ] + ], + [ + "【70기】잠입유저", + 79, + 96, + 15, + "che_event_필살", + [ + 1064236, + 28125, + 65550, + 85557, + 23859 + ], + 0, + "default.jpg", + 70, + "che_240523_Nnqh", + 22, + [ + "hall:betgold", + "hall:betwin", + "hall:betwingold", + "hall:dex1", + "hall:tsrate", + "hall:ttrate", + "hall:warnum" + ] + ], + [ + "【70기】babychuck", + 79, + 93, + 15, + "che_event_필살", + [ + 38288, + 48402, + 400754, + 38939, + 25817 + ], + 1, + "7cb75480.png?=20221202", + 70, + "che_240523_Nnqh", + 30, + [ + "hall:dex3", + "hall:tsrate" + ] + ], + [ + "【70기】빅토리", + 77, + 96, + 15, + "che_event_격노", + [ + 93692, + 570177, + 25140, + 72938, + 23716 + ], + 1, + "11637b61.jpg?=20240522", + 70, + "che_240523_Nnqh", + 33, + [ + "hall:firenum" + ] + ], + [ + "【70기】East Girl", + 100, + 44, + 43, + "che_event_견고", + [ + 228779, + 389648, + 290638, + 277386, + 145995 + ], + 1, + "c96d81bd.jpg?=20240523", + 70, + "che_240523_Nnqh", + 35, + [ + "hall:betrate", + "hall:betwingold", + "hall:dex5", + "hall:tlrate", + "hall:ttrate", + "hall:warnum" + ] + ], + [ + "【70기】잠입", + 15, + 73, + 98, + "che_event_의술", + [ + 3314, + 0, + 0, + 0, + 1350 + ], + 0, + "default.jpg", + 70, + "che_240523_Nnqh", + 38, + [ + "hall:tirate" + ] + ], + [ + "【70기】청서", + 93, + 79, + 15, + "che_event_필살", + [ + 702905, + 21287, + 32603, + 172856, + 14938 + ], + 1, + "29336bd7.jpg?=20240613", + 70, + "che_240523_Nnqh", + 40, + [ + "hall:dex1" + ] + ], + [ + "【70기】참새", + 98, + 77, + 15, + "che_event_필살", + [ + 17243, + 1371054, + 12860, + 20763, + 21711 + ], + 1, + "be0eebd0.png?=20240525", + 70, + "che_240523_Nnqh", + 41, + [ + "hall:betgold", + "hall:betrate", + "hall:betwingold", + "hall:dex2", + "hall:killcrew", + "hall:killcrew_person", + "hall:killnum", + "hall:killrate_person", + "hall:tlrate", + "hall:warnum", + "hall:winrate" + ] + ], + [ + "【70기】장원영", + 16, + 96, + 72, + "che_event_신산", + [ + 0, + 0, + 0, + 0, + 0 + ], + 1, + "202e852d.jpg?=20240523", + 70, + "che_240523_Nnqh", + 48, + [ + "hall:firenum" + ] + ], + [ + "【70기】로비아님", + 97, + 15, + 78, + "che_event_필살", + [ + 7590, + 8468, + 9294, + 1174259, + 13588 + ], + 1, + "d55953bd.png?=20240522", + 70, + "che_240523_Nnqh", + 51, + [ + "hall:dex4", + "hall:killcrew_person", + "hall:tlrate" + ] + ], + [ + "【70기】메로나아님아님아님", + 79, + 96, + 15, + "che_event_필살", + [ + 1225824, + 40187, + 36592, + 78971, + 32530 + ], + 1, + "76989280.jpg?=20240523", + 70, + "che_240523_Nnqh", + 52, + [ + "hall:betrate", + "hall:dex1", + "hall:killcrew", + "hall:killcrew_person", + "hall:killnum", + "hall:killrate", + "hall:killrate_person", + "hall:warnum" + ] + ], + [ + "【70기】이브", + 78, + 15, + 94, + "che_event_신중", + [ + 35005, + 9421, + 29843, + 552270, + 20069 + ], + 1, + "53cfa859.png?=20240523", + 70, + "che_240523_Nnqh", + 53, + [ + "hall:firenum" + ] + ], + [ + "【70기】외심장", + 79, + 15, + 98, + "che_event_환술", + [ + 57321, + 78510, + 48696, + 1573669, + 59958 + ], + 1, + "36110cd.jpg?=20180826", + 70, + "che_240523_Nnqh", + 54, + [ + "hall:dex4", + "hall:dex5", + "hall:experience", + "hall:killcrew", + "hall:killcrew_person", + "hall:killnum", + "hall:killrate", + "hall:killrate_person", + "hall:occupied", + "hall:tirate", + "hall:warnum", + "hall:winrate" + ] + ], + [ + "【70기】독구", + 77, + 15, + 99, + "che_event_필살", + [ + 57464, + 49604, + 26496, + 1042771, + 36834 + ], + 1, + "edbb01aa.png?=20240523", + 70, + "che_240523_Nnqh", + 60, + [ + "hall:betwin", + "hall:dex4", + "hall:experience", + "hall:killcrew_person", + "hall:killnum", + "hall:killrate", + "hall:killrate_person", + "hall:winrate" + ] + ], + [ + "【70기】Hide_D", + 77, + 15, + 95, + "che_event_의술", + [ + 87801, + 50694, + 28978, + 627943, + 36534 + ], + 1, + "4569d848.png?=20230612", + 70, + "che_240523_Nnqh", + 62, + [ + "chief:9", + "hall:dedication", + "hall:experience", + "hall:tirate" + ] + ], + [ + "【70기】ㅊㄹㅊㄹ", + 81, + 15, + 91, + "che_event_집중", + [ + 20976, + 53951, + 21070, + 417467, + 13489 + ], + 1, + "63f1c106.png?=20230223", + 70, + "che_240523_Nnqh", + 63, + [ + "hall:ttrate" + ] + ], + [ + "【70기】임사영", + 77, + 96, + 15, + "che_event_필살", + [ + 708975, + 64772, + 124285, + 48896, + 42769 + ], + 1, + "0b5a2642.jpg?=20240305", + 70, + "che_240523_Nnqh", + 64, + [ + "hall:dex1" + ] + ], + [ + "【70기】SARS", + 80, + 15, + 94, + "che_event_신산", + [ + 42139, + 32350, + 29671, + 776282, + 47074 + ], + 1, + "b84944.jpg?=20180829", + 70, + "che_240523_Nnqh", + 65, + [ + "hall:betrate", + "hall:dex4" + ] + ], + [ + "【70기】くま", + 78, + 16, + 92, + "che_event_신중", + [ + 55168, + 35927, + 15410, + 706651, + 24942 + ], + 1, + "770f53.jpg?=20190718", + 70, + "che_240523_Nnqh", + 70, + [ + "chief:11", + "hall:dedication" + ] + ], + [ + "【70기】미용실의 해피", + 67, + 81, + 13, + "che_event_격노", + [ + 505636, + 10684, + 13108, + 11700, + 8172 + ], + 1, + "88fcd811.jpg?=20240523", + 70, + "che_240523_Nnqh", + 72, + [ + "hall:betrate", + "hall:dex1" + ] + ], + [ + "【70기】템도박하자", + 84, + 90, + 15, + "che_event_필살", + [ + 1305717, + 39866, + 48062, + 63190, + 46247 + ], + 0, + "default.jpg", + 70, + "che_240523_Nnqh", + 76, + [ + "hall:dex1" + ] + ], + [ + "【70기】와일드플라워", + 76, + 15, + 97, + "che_event_집중", + [ + 43733, + 38331, + 44056, + 690226, + 41278 + ], + 0, + "default.jpg", + 70, + "che_240523_Nnqh", + 77, + [ + "chief:5", + "hall:dedication", + "hall:experience" + ] + ], + [ + "【70기】POCARI.", + 99, + 71, + 15, + "che_event_공성", + [ + 50996, + 39239, + 23974, + 36416, + 1389402 + ], + 1, + "de9117c2.png?=20240614", + 70, + "che_240523_Nnqh", + 79, + [ + "hall:dex5", + "hall:experience", + "hall:killcrew", + "hall:killrate", + "hall:occupied", + "hall:tlrate" + ] + ], + [ + "【70기】화남", + 15, + 78, + 93, + "che_event_신산", + [ + 0, + 216, + 0, + 1218, + 0 + ], + 0, + "default.jpg", + 70, + "che_240523_Nnqh", + 81, + [ + "hall:betgold" + ] + ], + [ + "【70기】저 독구는 가짜다", + 15, + 73, + 98, + "che_event_의술", + [ + 0, + 0, + 0, + 0, + 0 + ], + 1, + "5283daf7.png?=20240511", + 70, + "che_240523_Nnqh", + 84, + [ + "hall:betgold", + "hall:betwin", + "hall:tirate" + ] + ], + [ + "【70기】쟁안함", + 15, + 98, + 73, + "che_event_신산", + [ + 0, + 0, + 0, + 0, + 0 + ], + 1, + "1988703e.png?=20240604", + 70, + "che_240523_Nnqh", + 86, + [ + "hall:betwingold", + "hall:firenum" + ] + ], + [ + "【70기】미친?과학", + 96, + 79, + 15, + "che_event_필살", + [ + 48282, + 1130051, + 3496, + 92104, + 21978 + ], + 1, + "b477d173.jpg?=20240523", + 70, + "che_240523_Nnqh", + 87, + [ + "hall:dex2", + "hall:killcrew", + "hall:killcrew_person", + "hall:killnum", + "hall:killrate", + "hall:killrate_person", + "hall:tlrate", + "hall:winrate" + ] + ], + [ + "【70기】서희", + 81, + 15, + 92, + "che_event_필살", + [ + 27501, + 62968, + 34751, + 610925, + 19960 + ], + 1, + "8debf7e5.png?=20230308", + 70, + "che_240523_Nnqh", + 88, + [ + "chief:7" + ] + ], + [ + "【70기】카이스트", + 81, + 15, + 92, + "che_event_필살", + [ + 27701, + 12469, + 11587, + 579717, + 35092 + ], + 1, + "e7e27cd6.jpg?=20221125", + 70, + "che_240523_Nnqh", + 89, + [ + "hall:betrate", + "hall:occupied" + ] + ], + [ + "【70기】Navy마초", + 80, + 91, + 15, + "che_event_필살", + [ + 83676, + 583432, + 11574, + 29508, + 20331 + ], + 1, + "37644ed3.png?=20230831", + 70, + "che_240523_Nnqh", + 90, + [ + "hall:dex2", + "hall:ttrate" + ] + ], + [ + "【70기】북오더", + 96, + 44, + 44, + "che_event_공성", + [ + 34198, + 26494, + 2685, + 47783, + 479161 + ], + 1, + "0e7dcff6.gif?=20240417", + 70, + "che_240523_Nnqh", + 91, + [ + "hall:dex5", + "hall:occupied" + ] + ], + [ + "【70기】불패", + 77, + 96, + 15, + "che_event_필살", + [ + 1010466, + 32514, + 19168, + 128538, + 29713 + ], + 1, + "b2fd1cac.jpg?=20240401", + 70, + "che_240523_Nnqh", + 92, + [ + "chief:10", + "hall:betrate", + "hall:betwingold", + "hall:dedication", + "hall:dex1", + "hall:experience", + "hall:killrate", + "hall:killrate_person", + "hall:occupied", + "hall:tsrate" + ] + ], + [ + "【70기】닛몰독구", + 98, + 77, + 15, + "che_event_필살", + [ + 855338, + 10886, + 43423, + 58090, + 28353 + ], + 1, + "be3a0944.png?=20240523", + 70, + "che_240523_Nnqh", + 93, + [ + "hall:betgold", + "hall:betwin", + "hall:betwingold", + "hall:dex1", + "hall:tlrate" + ] + ], + [ + "【70기】기술기술기술", + 77, + 15, + 94, + "che_event_신산", + [ + 130181, + 17678, + 19737, + 527134, + 33659 + ], + 0, + "default.jpg", + 70, + "che_240523_Nnqh", + 94, + [ + "hall:firenum" + ] + ], + [ + "【70기】독피자", + 78, + 95, + 15, + "che_event_신산", + [ + 678399, + 96920, + 81886, + 95664, + 58329 + ], + 0, + "default.jpg", + 70, + "che_240523_Nnqh", + 95, + [ + "hall:dex5", + "hall:firenum", + "hall:tsrate", + "hall:ttrate" + ] + ], + [ + "【70기】니쉬", + 95, + 15, + 78, + "che_event_환술", + [ + 17919, + 17630, + 22082, + 745660, + 11421 + ], + 1, + "215c3ff3.png?=20240402", + 70, + "che_240523_Nnqh", + 96, + [ + "hall:dex4" + ] + ], + [ + "【70기】무극", + 75, + 97, + 15, + "che_event_격노", + [ + 676121, + 53345, + 59990, + 72102, + 42524 + ], + 0, + "default.jpg", + 70, + "che_240523_Nnqh", + 97, + [ + "hall:betwin", + "hall:occupied" + ] + ], + [ + "【70기】지원", + 77, + 97, + 15, + "che_event_필살", + [ + 39480, + 66970, + 538899, + 30001, + 20077 + ], + 1, + "3abfc677.webp?=20240129", + 70, + "che_240523_Nnqh", + 98, + [ + "hall:dex3", + "hall:tsrate" + ] + ], + [ + "【70기】카류", + 16, + 89, + 79, + "che_event_신산", + [ + 0, + 0, + 0, + 0, + 0 + ], + 0, + "default.jpg", + 70, + "che_240523_Nnqh", + 99, + [ + "hall:firenum" + ] + ], + [ + "【70기】냐옹", + 79, + 15, + 94, + "che_event_환술", + [ + 82571, + 58481, + 64675, + 1167018, + 62531 + ], + 1, + "9a6bf29a.jpg?=20231130", + 70, + "che_240523_Nnqh", + 100, + [ + "hall:dex4", + "hall:dex5", + "hall:killrate", + "hall:killrate_person" + ] + ], + [ + "【70기】직구금지", + 79, + 15, + 93, + "che_event_집중", + [ + 53304, + 84912, + 49928, + 897270, + 34413 + ], + 1, + "80ed029e.jpg?=20240523", + 70, + "che_240523_Nnqh", + 101, + [ + "hall:dex4" + ] + ], + [ + "【70기】잠밉", + 76, + 15, + 97, + "che_event_집중", + [ + 52876, + 21344, + 34970, + 662745, + 31905 + ], + 0, + "default.jpg", + 70, + "che_240523_Nnqh", + 102, + [ + "hall:ttrate" + ] + ], + [ + "【70기】Something New", + 79, + 90, + 15, + "che_event_무쌍", + [ + 15384, + 100987, + 481244, + 125154, + 21757 + ], + 0, + "default.jpg", + 70, + "che_240523_Nnqh", + 103, + [ + "hall:dex3" + ] + ], + [ + "【70기】대교", + 97, + 75, + 15, + "che_event_필살", + [ + 1373172, + 49583, + 54151, + 68517, + 61943 + ], + 1, + "9f0e6dcc.jpg?=20220808", + 70, + "che_240523_Nnqh", + 104, + [ + "chief:6", + "hall:dex1", + "hall:dex5", + "hall:experience", + "hall:killcrew", + "hall:occupied", + "hall:tlrate", + "hall:warnum" + ] + ], + [ + "【70기】마이멜로디", + 94, + 15, + 79, + "che_event_징병", + [ + 66971, + 108938, + 18545, + 1281952, + 35784 + ], + 1, + "17dd0154.jpg?=20240523", + 70, + "che_240523_Nnqh", + 106, + [ + "hall:dex4", + "hall:killcrew", + "hall:killcrew_person", + "hall:killnum", + "hall:warnum" + ] + ], + [ + "【70기】사스케", + 79, + 98, + 15, + "che_event_징병", + [ + 57625, + 1524321, + 64203, + 104845, + 30949 + ], + 1, + "b6aec2ca.jpg?=20240503", + 70, + "che_240523_Nnqh", + 107, + [ + "hall:betgold", + "hall:betwin", + "hall:betwingold", + "hall:dex2", + "hall:killcrew", + "hall:killcrew_person", + "hall:killnum", + "hall:tsrate", + "hall:warnum" + ] + ], + [ + "【70기】무지장으로 구경", + 15, + 95, + 75, + "che_event_신산", + [ + 0, + 0, + 0, + 0, + 0 + ], + 0, + "default.jpg", + 70, + "che_240523_Nnqh", + 108, + [ + "hall:firenum" + ] + ], + [ + "【70기】덕구", + 81, + 93, + 15, + "che_event_필살", + [ + 110436, + 1032154, + 9437, + 66269, + 34416 + ], + 1, + "7031e789.jpg?=20240201", + 70, + "che_240523_Nnqh", + 109, + [ + "hall:dex2", + "hall:killnum", + "hall:winrate" + ] + ], + [ + "【70기】Air", + 80, + 95, + 15, + "che_event_필살", + [ + 9537, + 20742, + 1344570, + 12921, + 7880 + ], + 0, + "default.jpg", + 70, + "che_240523_Nnqh", + 111, + [ + "hall:dex3", + "hall:killrate_person", + "hall:tsrate" + ] + ], + [ + "【70기】이드", + 79, + 97, + 15, + "che_event_징병", + [ + 46008, + 973435, + 15613, + 82998, + 18741 + ], + 1, + "fc3385d6.gif?=20240301", + 70, + "che_240523_Nnqh", + 112, + [ + "hall:dex2" + ] + ], + [ + "【70기】포기하면편해", + 77, + 15, + 97, + "che_event_의술", + [ + 20915, + 48770, + 19007, + 682940, + 18072 + ], + 0, + "default.jpg", + 70, + "che_240523_Nnqh", + 116, + [ + "hall:betwin", + "hall:tirate" + ] + ], + [ + "【70기】Boolean", + 95, + 77, + 15, + "che_event_반계", + [ + 23188, + 100205, + 856332, + 93215, + 47768 + ], + 0, + "default.jpg", + 70, + "che_240523_Nnqh", + 117, + [ + "hall:dex3" + ] + ], + [ + "【70기】하늘의제왕 참새", + 92, + 15, + 75, + "che_event_귀병", + [ + 19964, + 42549, + 3886, + 290089, + 3250 + ], + 0, + "default.jpg", + 70, + "che_240523_Nnqh", + 118, + [ + "hall:tlrate" + ] + ], + [ + "【70기】아오쿠모 린", + 93, + 80, + 16, + "che_event_필살", + [ + 8476, + 9594, + 1460482, + 7989, + 7567 + ], + 1, + "d2b58e76.gif?=20240523", + 70, + "che_240523_Nnqh", + 119, + [ + "hall:dex3", + "hall:killcrew", + "hall:killcrew_person", + "hall:killnum", + "hall:warnum", + "hall:winrate" + ] + ], + [ + "【70기】조승상", + 94, + 79, + 15, + "che_event_돌격", + [ + 88944, + 727771, + 69098, + 116357, + 72855 + ], + 1, + "6f27503f.png?=20240322", + 70, + "che_240523_Nnqh", + 120, + [ + "hall:dex2", + "hall:dex5", + "hall:tlrate" + ] + ], + [ + "【70기】경국지색소교", + 78, + 92, + 15, + "che_event_징병", + [ + 25814, + 16377, + 352362, + 65841, + 15227 + ], + 1, + "ad2669b5.jpg?=20230605", + 70, + "che_240523_Nnqh", + 123, + [ + "hall:tsrate" + ] + ], + [ + "【70기】독화살", + 80, + 94, + 15, + "che_event_필살", + [ + 44744, + 779048, + 11926, + 111570, + 20960 + ], + 1, + "ebc6b5b6.png?=20240523", + 70, + "che_240523_Nnqh", + 130, + [ + "hall:dex2" + ] + ], + [ + "【70기】시계탑에흐른피", + 13, + 60, + 87, + "che_event_의술", + [ + 0, + 0, + 0, + 0, + 0 + ], + 0, + "default.jpg", + 70, + "che_240523_Nnqh", + 136, + [ + "hall:dedication", + "hall:experience", + "hall:tirate" + ] + ], + [ + "【70기】진솔", + 76, + 15, + 95, + "che_event_필살", + [ + 28422, + 33661, + 30701, + 344295, + 12903 + ], + 1, + "eac1560c.png?=20240114", + 70, + "che_240523_Nnqh", + 147, + [ + "hall:tirate", + "hall:ttrate" + ] + ], + [ + "【70기】세르네오", + 15, + 73, + 96, + "che_event_의술", + [ + 0, + 0, + 0, + 0, + 0 + ], + 0, + "default.jpg", + 70, + "che_240523_Nnqh", + 148, + [ + "hall:betrate", + "hall:dedication", + "hall:tirate" + ] + ], + [ + "【70기】조창", + 77, + 94, + 15, + "che_event_무쌍", + [ + 702400, + 28271, + 19554, + 106113, + 32566 + ], + 0, + "default.jpg", + 70, + "che_240523_Nnqh", + 150, + [ + "hall:dex1", + "hall:ttrate" + ] + ], + [ + "【70기】최진리", + 77, + 97, + 15, + "che_event_필살", + [ + 45432, + 1236847, + 5823, + 57434, + 32088 + ], + 1, + "2d3506dd.webp?=20240414", + 70, + "che_240523_Nnqh", + 270, + [ + "hall:dex2", + "hall:killcrew", + "hall:killcrew_person", + "hall:killrate", + "hall:killrate_person", + "hall:occupied", + "hall:winrate" + ] + ], + [ + "【70기】에일로이", + 79, + 92, + 15, + "che_event_격노", + [ + 86325, + 28305, + 432668, + 58672, + 19171 + ], + 0, + "default.jpg", + 70, + "che_240523_Nnqh", + 290, + [ + "hall:betwin", + "hall:dex3" + ] + ], + [ + "【70기】선배맘에탕탕", + 80, + 15, + 93, + "che_event_필살", + [ + 64327, + 58901, + 8780, + 743456, + 18373 + ], + 0, + "default.jpg", + 70, + "che_240523_Nnqh", + 292, + [ + "hall:dex4" + ] + ], + [ + "【70기】Samo", + 16, + 72, + 96, + "che_event_저격", + [ + 5400, + 2483, + 270, + 13103, + 2430 + ], + 1, + "0b53e4d0.png?=20230502", + 70, + "che_240523_Nnqh", + 295, + [ + "hall:tirate" + ] + ], + [ + "【70기】애아빠아님", + 76, + 15, + 93, + "che_event_격노", + [ + 35420, + 12911, + 8762, + 197090, + 12350 + ], + 1, + "7b54c93b.jpg?=20230126", + 70, + "che_240523_Nnqh", + 301, + [ + "hall:tirate" + ] + ], + [ + "【70기】사하드", + 77, + 95, + 15, + "che_event_필살", + [ + 26609, + 614571, + 28533, + 63214, + 38237 + ], + 1, + "31f10b32.jpg?=20220717", + 70, + "che_240523_Nnqh", + 305, + [ + "hall:dex2", + "hall:tsrate" + ] + ], + [ + "【70기】악질대장카류", + 88, + 75, + 18, + "che_event_무쌍", + [ + 8022, + 28816, + 85053, + 10325, + 13373 + ], + 0, + "default.jpg", + 70, + "che_240523_Nnqh", + 479, + [ + "hall:ttrate" + ] + ], + [ + "【70기】돌아온너구리", + 16, + 71, + 93, + "che_event_의술", + [ + 0, + 0, + 0, + 0, + 0 + ], + 0, + "default.jpg", + 70, + "che_240523_Nnqh", + 663, + [ + "hall:dedication" + ] + ], + [ + "【71기】대마법사호바스", + 76, + 16, + 92, + "che_event_집중", + [ + 26360, + 6661, + 22852, + 385100, + 30264 + ], + 1, + "fa5fdda7.png?=20240620", + 71, + "che_240620_EurY", + 9, + [ + "hall:betgold", + "hall:betwingold", + "hall:dex4", + "hall:ttrate", + "hall:winrate" + ] + ], + [ + "【71기】로비", + 15, + 72, + 94, + "che_event_신중", + [ + 0, + 0, + 0, + 0, + 0 + ], + 1, + "eadfd9b9.png?=20240620", + 71, + "che_240620_EurY", + 12, + [ + "hall:dedication" + ] + ], + [ + "【71기】씩씩한아붕이", + 73, + 19, + 88, + "che_event_반계", + [ + 3415, + 953, + 10948, + 173135, + 14843 + ], + 1, + "42b242d1.png?=20240620", + 71, + "che_240620_EurY", + 17, + [ + "hall:ttrate" + ] + ], + [ + "【71기】북오더", + 78, + 16, + 91, + "che_event_집중", + [ + 35283, + 40406, + 26892, + 787393, + 39400 + ], + 1, + "b6edc575.gif?=20240624", + 71, + "che_240620_EurY", + 20, + [ + "hall:dex2", + "hall:dex4", + "hall:experience", + "hall:killcrew", + "hall:killcrew_person", + "hall:killnum", + "hall:killrate", + "hall:killrate_person", + "hall:warnum", + "hall:winrate" + ] + ], + [ + "【71기】시끄럽고버거나줘요", + 75, + 15, + 91, + "che_event_집중", + [ + 20899, + 4261, + 22331, + 263042, + 45840 + ], + 1, + "831c275c.jpg?=20240620", + 71, + "che_240620_EurY", + 26, + [ + "hall:dex5" + ] + ], + [ + "【71기】☆☀️徠假淚構慨?️★", + 88, + 70, + 15, + "che_event_공성", + [ + 25853, + 2365, + 2103, + 0, + 87078 + ], + 1, + "1c770707.png?=20240619", + 71, + "che_240620_EurY", + 27, + [ + "hall:dex5", + "hall:killrate", + "hall:occupied", + "hall:winrate" + ] + ], + [ + "【71기】tqtt", + 89, + 77, + 15, + "che_event_저격", + [ + 160747, + 979, + 24480, + 15150, + 15259 + ], + 0, + "default.jpg", + 71, + "che_240620_EurY", + 35, + [ + "hall:tlrate" + ] + ], + [ + "【71기】오호", + 94, + 74, + 15, + "che_event_견고", + [ + 241697, + 81113, + 209436, + 42748, + 13822 + ], + 0, + "default.jpg", + 71, + "che_240620_EurY", + 38, + [ + "hall:betrate", + "hall:dex2", + "hall:killcrew", + "hall:killcrew_person", + "hall:tlrate", + "hall:warnum" + ] + ], + [ + "【71기】앵버거추심상담사", + 73, + 16, + 90, + "che_event_집중", + [ + 5907, + 2872, + 1928, + 119298, + 1657 + ], + 1, + "800d41cd.jpg?=20240620", + 71, + "che_240620_EurY", + 44, + [ + "hall:tirate" + ] + ], + [ + "【71기】척", + 74, + 91, + 15, + "che_event_필살", + [ + 12681, + 4350, + 228975, + 45514, + 28534 + ], + 1, + "7cb75480.png?=20221202", + 71, + "che_240620_EurY", + 47, + [ + "hall:tsrate" + ] + ], + [ + "【71기】로비아", + 15, + 73, + 94, + "che_event_환술", + [ + 0, + 0, + 0, + 0, + 0 + ], + 1, + "28719e7f.png?=20240620", + 71, + "che_240620_EurY", + 50, + [ + "hall:dedication", + "hall:experience" + ] + ], + [ + "【71기】강유", + 78, + 15, + 88, + "che_event_필살", + [ + 26890, + 19626, + 27669, + 419636, + 18599 + ], + 1, + "79e150d0.jpg?=20230921", + 71, + "che_240620_EurY", + 51, + [ + "hall:dex4" + ] + ], + [ + "【71기】독신", + 15, + 73, + 92, + "che_event_신산", + [ + 0, + 0, + 0, + 0, + 0 + ], + 1, + "5283daf7.png?=20240511", + 71, + "che_240620_EurY", + 56, + [ + "hall:betrate", + "hall:betwin", + "hall:firenum" + ] + ], + [ + "【71기】임사영", + 76, + 15, + 92, + "che_event_집중", + [ + 5327, + 15561, + 13782, + 425254, + 34439 + ], + 1, + "0b5a2642.jpg?=20240305", + 71, + "che_240620_EurY", + 61, + [ + "chief:12", + "hall:dex4", + "hall:experience", + "hall:killnum", + "hall:killrate", + "hall:killrate_person", + "hall:winrate" + ] + ], + [ + "【71기】Hide_D", + 76, + 15, + 90, + "che_event_척사", + [ + 51583, + 41893, + 15695, + 358334, + 38104 + ], + 1, + "4569d848.png?=20230612", + 71, + "che_240620_EurY", + 64, + [ + "hall:dex2" + ] + ], + [ + "【71기】윌리스 캐리어", + 80, + 88, + 15, + "che_event_필살", + [ + 566163, + 2817, + 79399, + 63078, + 24412 + ], + 1, + "b2c2ba42.png?=20240620", + 71, + "che_240620_EurY", + 66, + [ + "hall:betgold", + "hall:betrate", + "hall:betwin", + "hall:betwingold", + "hall:dex1", + "hall:killcrew", + "hall:killcrew_person", + "hall:killnum", + "hall:warnum" + ] + ], + [ + "【71기】버걱스", + 75, + 15, + 94, + "che_event_신산", + [ + 39000, + 6938, + 10899, + 572830, + 35841 + ], + 1, + "7cd11f02.png?=20240620", + 71, + "che_240620_EurY", + 68, + [ + "hall:betgold", + "hall:betwin", + "hall:dex4", + "hall:killcrew", + "hall:killcrew_person", + "hall:killnum", + "hall:warnum", + "hall:winrate" + ] + ], + [ + "【71기】슬라임", + 90, + 77, + 15, + "che_event_필살", + [ + 11583, + 13056, + 321222, + 27855, + 33955 + ], + 1, + "2d2da7c0.jpg?=20231130", + 71, + "che_240620_EurY", + 71, + [ + "hall:dex3", + "hall:killrate_person" + ] + ], + [ + "【71기】니쉬", + 16, + 88, + 78, + "che_event_척사", + [ + 0, + 0, + 0, + 0, + 0 + ], + 1, + "444bfc57.png?=20240620", + 71, + "che_240620_EurY", + 74, + [ + "hall:experience" + ] + ], + [ + "【71기】사카마따끄로에", + 74, + 15, + 92, + "che_event_필살", + [ + 6367, + 58, + 14920, + 52889, + 2788 + ], + 1, + "22d99bd1.png?=20240620", + 71, + "che_240620_EurY", + 76, + [ + "hall:tirate" + ] + ], + [ + "【71기】퍄퍄", + 75, + 91, + 15, + "che_event_징병", + [ + 67648, + 8100, + 367066, + 32198, + 19246 + ], + 0, + "default.jpg", + 71, + "che_240620_EurY", + 77, + [ + "hall:dex3" + ] + ], + [ + "【71기】테테", + 76, + 90, + 15, + "che_event_무쌍", + [ + 62570, + 63645, + 487939, + 41288, + 45229 + ], + 0, + "default.jpg", + 71, + "che_240620_EurY", + 82, + [ + "hall:dex2", + "hall:dex3", + "hall:dex5", + "hall:tsrate" + ] + ], + [ + "【71기】샬럿", + 75, + 86, + 17, + "che_event_징병", + [ + 337820, + 9223, + 33147, + 28935, + 13216 + ], + 1, + "ccb81fc6.png?=20240620", + 71, + "che_240620_EurY", + 84, + [ + "hall:dex1" + ] + ], + [ + "【71기】Navy마초", + 75, + 15, + 92, + "che_event_집중", + [ + 16339, + 2659, + 1240, + 216775, + 22389 + ], + 1, + "37644ed3.png?=20230831", + 71, + "che_240620_EurY", + 85, + [ + "hall:ttrate", + "hall:winrate" + ] + ], + [ + "【71기】불패", + 76, + 15, + 91, + "che_event_의술", + [ + 28894, + 913, + 5718, + 204983, + 19631 + ], + 1, + "b2fd1cac.jpg?=20240401", + 71, + "che_240620_EurY", + 87, + [ + "hall:betrate" + ] + ], + [ + "【71기】라콘타", + 75, + 93, + 15, + "che_event_필살", + [ + 664374, + 30382, + 35546, + 51206, + 26639 + ], + 1, + "578d3ce5.png?=20240428", + 71, + "che_240620_EurY", + 89, + [ + "hall:betwin", + "hall:dex1", + "hall:killcrew", + "hall:killcrew_person", + "hall:killnum", + "hall:killrate_person", + "hall:tsrate", + "hall:warnum" + ] + ], + [ + "【71기】대교", + 96, + 71, + 15, + "che_event_필살", + [ + 473234, + 3230, + 22061, + 30923, + 43361 + ], + 1, + "9f0e6dcc.jpg?=20220808", + 71, + "che_240620_EurY", + 92, + [ + "chief:11", + "hall:dex1", + "hall:dex5", + "hall:experience", + "hall:killrate", + "hall:killrate_person", + "hall:occupied", + "hall:tlrate", + "hall:ttrate" + ] + ], + [ + "【71기】좋소고양이", + 93, + 75, + 16, + "che_event_필살", + [ + 535316, + 3212, + 22901, + 36053, + 19647 + ], + 1, + "c4a04b74.png?=20240619", + 71, + "che_240620_EurY", + 93, + [ + "hall:betgold", + "hall:betwin", + "hall:betwingold", + "hall:dex1", + "hall:killcrew", + "hall:killcrew_person", + "hall:killnum", + "hall:tlrate", + "hall:warnum" + ] + ], + [ + "【71기】비치나는솔로", + 77, + 15, + 89, + "che_event_집중", + [ + 23611, + 4608, + 55014, + 296765, + 17948 + ], + 0, + "default.jpg", + 71, + "che_240620_EurY", + 94, + [ + "hall:betgold", + "hall:betwingold" + ] + ], + [ + "【71기】지원", + 72, + 15, + 96, + "che_event_필살", + [ + 18398, + 10745, + 11118, + 542593, + 45013 + ], + 1, + "3abfc677.webp?=20240129", + 71, + "che_240620_EurY", + 95, + [ + "chief:9", + "hall:betgold", + "hall:betwin", + "hall:betwingold", + "hall:dex4", + "hall:dex5", + "hall:experience", + "hall:killcrew", + "hall:killcrew_person", + "hall:killnum", + "hall:killrate", + "hall:killrate_person", + "hall:occupied", + "hall:tirate", + "hall:winrate" + ] + ], + [ + "【71기】외심장", + 16, + 91, + 76, + "che_event_돌격", + [ + 0, + 0, + 0, + 0, + 0 + ], + 1, + "36110cd.jpg?=20180826", + 71, + "che_240620_EurY", + 96, + [ + "hall:dedication" + ] + ], + [ + "【71기】류화영", + 74, + 95, + 15, + "che_event_필살", + [ + 27675, + 39527, + 353068, + 29658, + 33932 + ], + 1, + "75b3ba30.jpg?=20240705", + 71, + "che_240620_EurY", + 97, + [ + "chief:8", + "hall:betgold", + "hall:betwin", + "hall:betwingold", + "hall:dedication", + "hall:dex2", + "hall:dex3", + "hall:experience", + "hall:killrate", + "hall:killrate_person", + "hall:occupied", + "hall:tsrate", + "hall:ttrate", + "hall:winrate" + ] + ], + [ + "【71기】춤추는달팽이", + 95, + 73, + 15, + "che_event_무쌍", + [ + 685022, + 13011, + 38667, + 69541, + 30395 + ], + 1, + "fc3385d6.gif?=20240301", + 71, + "che_240620_EurY", + 98, + [ + "hall:dex1", + "hall:killcrew", + "hall:killcrew_person", + "hall:killnum", + "hall:occupied", + "hall:tlrate", + "hall:warnum" + ] + ], + [ + "【71기】UGG", + 75, + 93, + 15, + "che_event_척사", + [ + 79200, + 16280, + 349983, + 35249, + 25293 + ], + 0, + "default.jpg", + 71, + "che_240620_EurY", + 99, + [ + "hall:betrate", + "hall:betwingold", + "hall:dex3", + "hall:tsrate" + ] + ], + [ + "【71기】와일드플라워", + 72, + 15, + 95, + "che_event_필살", + [ + 3173, + 13082, + 15243, + 395095, + 40852 + ], + 0, + "default.jpg", + 71, + "che_240620_EurY", + 102, + [ + "chief:5", + "hall:dedication", + "hall:dex4", + "hall:experience", + "hall:killrate", + "hall:killrate_person", + "hall:occupied", + "hall:tirate" + ] + ], + [ + "【71기】유리아", + 73, + 95, + 15, + "che_event_돌격", + [ + 35875, + 299788, + 5365, + 53213, + 30947 + ], + 1, + "bd92e2e4.png?=20240619", + 71, + "che_240620_EurY", + 103, + [ + "chief:6", + "hall:dedication", + "hall:dex2", + "hall:experience", + "hall:killrate_person", + "hall:tsrate", + "hall:winrate" + ] + ], + [ + "【71기】레몬뽕", + 73, + 15, + 95, + "che_event_집중", + [ + 5574, + 700, + 4454, + 160582, + 20839 + ], + 1, + "bdca266b.png?=20240620", + 71, + "che_240620_EurY", + 104, + [ + "hall:ttrate" + ] + ], + [ + "【71기】황혼중", + 15, + 72, + 96, + "che_event_신산", + [ + 0, + 0, + 0, + 0, + 0 + ], + 1, + "e5161df9.jpg?=20231110", + 71, + "che_240620_EurY", + 105, + [ + "hall:tirate" + ] + ], + [ + "【71기】쌍근", + 87, + 79, + 15, + "che_event_저격", + [ + 35813, + 44133, + 529603, + 58047, + 66973 + ], + 1, + "7a2dbace.webp?=20240620", + 71, + "che_240620_EurY", + 106, + [ + "hall:dex2", + "hall:dex3", + "hall:dex5", + "hall:killnum", + "hall:occupied", + "hall:tlrate", + "hall:warnum" + ] + ], + [ + "【71기】이걸로끝이다", + 81, + 85, + 16, + "che_event_궁병", + [ + 52331, + 194204, + 10961, + 38501, + 16336 + ], + 0, + "default.jpg", + 71, + "che_240620_EurY", + 107, + [ + "hall:betgold", + "hall:betwin", + "hall:dex2" + ] + ], + [ + "【71기】ㅊㄹㅊㄹ", + 78, + 86, + 16, + "che_event_척사", + [ + 18895, + 19351, + 461227, + 78356, + 25232 + ], + 1, + "63f1c106.png?=20230223", + 71, + "che_240620_EurY", + 108, + [ + "hall:dex3", + "hall:killcrew_person" + ] + ], + [ + "【71기】앵버거안주면머머리", + 74, + 15, + 93, + "che_event_필살", + [ + 3869, + 10106, + 16132, + 270013, + 46008 + ], + 1, + "d9f23781.png?=20240620", + 71, + "che_240620_EurY", + 109, + [ + "chief:7", + "hall:dex5", + "hall:occupied" + ] + ], + [ + "【71기】선배마음에", + 76, + 15, + 91, + "che_event_집중", + [ + 31579, + 6506, + 22430, + 209819, + 24727 + ], + 1, + "85ad2c36.png?=20240620", + 71, + "che_240620_EurY", + 110, + [ + "hall:betgold", + "hall:betrate", + "hall:betwingold", + "hall:tirate", + "hall:ttrate" + ] + ], + [ + "【71기】시끄럽고홍삼주세요", + 96, + 70, + 15, + "che_event_공성", + [ + 17297, + 5878, + 5693, + 26831, + 618866 + ], + 1, + "2aa6a7c5.jpg?=20240620", + 71, + "che_240620_EurY", + 112, + [ + "hall:betwin", + "hall:dex5", + "hall:experience", + "hall:killcrew", + "hall:killrate", + "hall:occupied", + "hall:tlrate" + ] + ], + [ + "【71기】셀레미", + 75, + 15, + 94, + "che_event_척사", + [ + 45311, + 5744, + 15073, + 311992, + 9600 + ], + 1, + "777144cc.jpg?=20240527", + 71, + "che_240620_EurY", + 113, + [ + "hall:tirate" + ] + ], + [ + "【71기】호호", + 77, + 88, + 15, + "che_event_필살", + [ + 12125, + 4746, + 381149, + 60178, + 25389 + ], + 1, + "37357e28.jpg?=20240506", + 71, + "che_240620_EurY", + 114, + [ + "hall:dex3" + ] + ], + [ + "【71기】감흥", + 16, + 73, + 92, + "che_event_의술", + [ + 0, + 0, + 0, + 0, + 0 + ], + 1, + "a73ecaa1.jpg?=20230313", + 71, + "che_240620_EurY", + 116, + [ + "hall:dedication" + ] + ], + [ + "【71기】선배맘에탕탕", + 79, + 88, + 15, + "che_event_위압", + [ + 388524, + 8246, + 26820, + 59069, + 9683 + ], + 0, + "default.jpg", + 71, + "che_240620_EurY", + 118, + [ + "hall:betrate", + "hall:dex1", + "hall:ttrate", + "hall:warnum" + ] + ], + [ + "【71기】Air", + 73, + 94, + 15, + "che_event_돌격", + [ + 9727, + 14767, + 329003, + 24923, + 22568 + ], + 0, + "default.jpg", + 71, + "che_240620_EurY", + 119, + [ + "chief:10", + "hall:dex3", + "hall:killrate", + "hall:killrate_person", + "hall:tsrate", + "hall:winrate" + ] + ], + [ + "【71기】참새", + 92, + 74, + 15, + "che_event_위압", + [ + 12406, + 219971, + 5008, + 8238, + 50165 + ], + 1, + "36711c25.jpg?=20240624", + 71, + "che_240620_EurY", + 121, + [ + "hall:dex2", + "hall:dex5", + "hall:tlrate" + ] + ], + [ + "【71기】서희", + 88, + 15, + 79, + "che_event_필살", + [ + 12480, + 23430, + 26624, + 397984, + 26573 + ], + 1, + "8debf7e5.png?=20230308", + 71, + "che_240620_EurY", + 122, + [ + "hall:dex4" + ] + ], + [ + "【71기】마요이", + 15, + 72, + 95, + "che_event_징병", + [ + 0, + 0, + 0, + 0, + 0 + ], + 1, + "2b49c945.png?=20230921", + 71, + "che_240620_EurY", + 123, + [ + "hall:dedication", + "hall:tirate" + ] + ], + [ + "【71기】로스트아크", + 75, + 15, + 92, + "che_event_필살", + [ + 29506, + 13475, + 13817, + 444234, + 28825 + ], + 1, + "33dfdd64.png?=20240620", + 71, + "che_240620_EurY", + 124, + [ + "hall:dex4", + "hall:tirate" + ] + ], + [ + "【71기】세르네오", + 15, + 72, + 93, + "che_event_신산", + [ + 0, + 0, + 0, + 0, + 0 + ], + 0, + "default.jpg", + 71, + "che_240620_EurY", + 128, + [ + "hall:dedication" + ] + ], + [ + "【71기】의술내정장", + 24, + 66, + 66, + "che_event_의술", + [ + 5677, + 1048, + 3911, + 9043, + 5736 + ], + 0, + "default.jpg", + 71, + "che_240620_EurY", + 129, + [ + "hall:betrate", + "hall:betwingold", + "hall:ttrate" + ] + ], + [ + "【71기】그러지마", + 75, + 16, + 91, + "che_event_집중", + [ + 17009, + 13706, + 18323, + 236912, + 33579 + ], + 0, + "default.jpg", + 71, + "che_240620_EurY", + 136, + [ + "hall:tirate" + ] + ], + [ + "【71기】독치킨", + 80, + 89, + 15, + "che_event_징병", + [ + 415881, + 7261, + 12218, + 21108, + 13887 + ], + 0, + "default.jpg", + 71, + "che_240620_EurY", + 141, + [ + "hall:dex1" + ] + ], + [ + "【71기】홍삼엑기스", + 75, + 90, + 15, + "che_event_의술", + [ + 18617, + 190206, + 9765, + 17586, + 17782 + ], + 0, + "default.jpg", + 71, + "che_240620_EurY", + 224, + [ + "hall:dex2", + "hall:tsrate" + ] + ], + [ + "【71기】최진리", + 74, + 93, + 15, + "che_event_징병", + [ + 153989, + 3610, + 20158, + 18738, + 10919 + ], + 1, + "2d3506dd.webp?=20240414", + 71, + "che_240620_EurY", + 227, + [ + "hall:tsrate", + "hall:ttrate" + ] + ], + [ + "【71기】사하드", + 73, + 93, + 15, + "che_event_격노", + [ + 240751, + 252, + 14625, + 30628, + 38797 + ], + 1, + "31f10b32.jpg?=20220717", + 71, + "che_240620_EurY", + 231, + [ + "hall:betrate", + "hall:tsrate" + ] + ], + [ + "【71기】쿄스케", + 74, + 91, + 15, + "che_event_척사", + [ + 369290, + 6208, + 16157, + 26927, + 20094 + ], + 1, + "81c9cf40.jpg?=20240331", + 71, + "che_240620_EurY", + 232, + [ + "hall:betgold", + "hall:betrate", + "hall:betwin", + "hall:betwingold", + "hall:dex1" + ] + ], + [ + "【71기】설지얌", + 78, + 88, + 15, + "che_event_위압", + [ + 384117, + 7262, + 27650, + 59488, + 25436 + ], + 1, + "e21bfee2.jpg?=20240621", + 71, + "che_240620_EurY", + 235, + [ + "hall:dex1" + ] + ], + [ + "【71기】코뿔소", + 94, + 72, + 15, + "che_event_공성", + [ + 17543, + 0, + 0, + 5762, + 219088 + ], + 0, + "default.jpg", + 71, + "che_240620_EurY", + 245, + [ + "hall:dex5", + "hall:killrate", + "hall:occupied", + "hall:tlrate" + ] + ], + [ + "【71기】강서유서", + 91, + 16, + 74, + "che_event_집중", + [ + 12681, + 14004, + 19874, + 336068, + 20969 + ], + 0, + "default.jpg", + 71, + "che_240620_EurY", + 246, + [ + "hall:tlrate" + ] + ], + [ + "【71기】くま", + 76, + 16, + 88, + "che_event_신산", + [ + 16880, + 5748, + 18117, + 396130, + 25639 + ], + 1, + "770f53.jpg?=20190718", + 71, + "che_240620_EurY", + 270, + [ + "hall:dex4" + ] + ], + [ + "【71기】무지장입니다.", + 16, + 87, + 75, + "che_event_돌격", + [ + 0, + 0, + 0, + 499, + 0 + ], + 1, + "e50b05b1.png?=20240624", + 71, + "che_240620_EurY", + 339, + [ + "hall:firenum" + ] + ], + [ + "【71기】진솔", + 16, + 73, + 91, + "che_event_반계", + [ + 0, + 0, + 0, + 0, + 0 + ], + 1, + "eac1560c.png?=20240114", + 71, + "che_240620_EurY", + 347, + [ + "hall:dedication" + ] + ], + [ + "【71기】김유신", + 79, + 87, + 15, + "che_event_저격", + [ + 19422, + 29370, + 464838, + 16385, + 8444 + ], + 1, + "a987e8fa.jpg?=20240628", + 71, + "che_240620_EurY", + 420, + [ + "hall:dex3", + "hall:killcrew", + "hall:killcrew_person", + "hall:killnum", + "hall:warnum" + ] + ], + [ + "【71기】개덥다", + 15, + 71, + 90, + "che_event_징병", + [ + 0, + 0, + 0, + 0, + 0 + ], + 1, + "fcac03cb.png?=20240628", + 71, + "che_240620_EurY", + 536, + [ + "hall:firenum" + ] + ], + [ + "【72기】류화영", + 72, + 13, + 85, + "che_event_필살", + [ + 23219, + 26666, + 24797, + 563794, + 372810 + ], + 1, + "97c97a12.jpg?=20240713", + 72, + "che_240711_to95", + 4, + [ + "hall:betrate", + "hall:betwingold", + "hall:dex4", + "hall:dex5", + "hall:killcrew", + "hall:killcrew_person", + "hall:killnum", + "hall:warnum" + ] + ], + [ + "【72기】척", + 70, + 83, + 14, + "che_event_척사", + [ + 542458, + 82859, + 103234, + 160437, + 62460 + ], + 1, + "7cb75480.png?=20221202", + 72, + "che_240711_to95", + 5, + [ + "hall:dex1", + "hall:dex3", + "hall:dex5", + "hall:tsrate" + ] + ], + [ + "【72기】헬스요이", + 13, + 66, + 86, + "che_event_필살", + [ + 0, + 0, + 0, + 0, + 0 + ], + 1, + "2b49c945.png?=20230921", + 72, + "che_240711_to95", + 14, + [ + "hall:tirate" + ] + ], + [ + "【72기】와일드플라워", + 69, + 14, + 81, + "che_event_집중", + [ + 55605, + 34300, + 9379, + 471468, + 50976 + ], + 0, + "default.jpg", + 72, + "che_240711_to95", + 24, + [ + "hall:dedication" + ] + ], + [ + "【72기】完顔宗弼", + 73, + 83, + 13, + "che_event_필살", + [ + 30163, + 33840, + 728225, + 99376, + 32868 + ], + 1, + "fa384037.png?=20240701", + 72, + "che_240711_to95", + 26, + [ + "hall:betgold", + "hall:betwingold", + "hall:dex3" + ] + ], + [ + "【72기】외심장", + 72, + 14, + 79, + "che_event_필살", + [ + 26106, + 50382, + 45965, + 696897, + 35960 + ], + 1, + "36110cd.jpg?=20180826", + 72, + "che_240711_to95", + 27, + [ + "hall:dex4" + ] + ], + [ + "【72기】퐁구리", + 13, + 62, + 89, + "che_event_저격", + [ + 0, + 0, + 0, + 0, + 0 + ], + 1, + "10ba8a23.jpg?=20240711", + 72, + "che_240711_to95", + 36, + [ + "hall:dedication", + "hall:experience" + ] + ], + [ + "【72기】So long!", + 85, + 69, + 13, + "che_event_무쌍", + [ + 94698, + 406556, + 5882, + 61915, + 17898 + ], + 1, + "aa2166d5.png?=20240711", + 72, + "che_240711_to95", + 40, + [ + "hall:betrate", + "hall:dex2", + "hall:tlrate" + ] + ], + [ + "【72기】황혼중", + 14, + 65, + 86, + "che_event_필살", + [ + 0, + 0, + 0, + 0, + 0 + ], + 1, + "e5161df9.jpg?=20231110", + 72, + "che_240711_to95", + 42, + [ + "hall:ttrate" + ] + ], + [ + "【72기】?", + 73, + 80, + 14, + "che_event_필살", + [ + 685645, + 20575, + 49169, + 92949, + 18188 + ], + 0, + "default.jpg", + 72, + "che_240711_to95", + 45, + [ + "hall:dex1", + "hall:firenum", + "hall:ttrate" + ] + ], + [ + "【72기】모기 물린 독구", + 14, + 65, + 85, + "che_event_의술", + [ + 0, + 0, + 0, + 0, + 0 + ], + 1, + "5283daf7.png?=20240511", + 72, + "che_240711_to95", + 47, + [ + "chief:5", + "hall:betwin", + "hall:dedication", + "hall:experience", + "hall:tirate" + ] + ], + [ + "【72기】네이", + 82, + 13, + 72, + "che_event_징병", + [ + 32215, + 18060, + 26847, + 504033, + 23154 + ], + 0, + "default.jpg", + 72, + "che_240711_to95", + 50, + [ + "hall:tlrate" + ] + ], + [ + "【72기】감흥", + 21, + 63, + 82, + "che_event_필살", + [ + 16663, + 353652, + 12329, + 53167, + 29812 + ], + 1, + "a73ecaa1.jpg?=20230313", + 72, + "che_240711_to95", + 51, + [ + "chief:11", + "hall:dex2", + "hall:tirate" + ] + ], + [ + "【72기】이드", + 89, + 62, + 13, + "che_event_견고", + [ + 515019, + 66765, + 47271, + 128844, + 29329 + ], + 1, + "fc3385d6.gif?=20240301", + 72, + "che_240711_to95", + 54, + [ + "hall:tlrate" + ] + ], + [ + "【72기】카마인", + 69, + 13, + 89, + "che_event_집중", + [ + 20104, + 18552, + 13383, + 810093, + 21205 + ], + 1, + "3c4b1292.png?=20240811", + 72, + "che_240711_to95", + 66, + [ + "hall:dex4", + "hall:killrate_person", + "hall:occupied", + "hall:ttrate", + "hall:winrate" + ] + ], + [ + "【72기】장원영", + 68, + 13, + 89, + "che_event_필살", + [ + 31282, + 52724, + 23372, + 1043653, + 43173 + ], + 1, + "0a92149e.jpg?=20240712", + 72, + "che_240711_to95", + 71, + [ + "chief:12", + "hall:betgold", + "hall:dedication", + "hall:dex4", + "hall:dex5", + "hall:experience", + "hall:killrate", + "hall:killrate_person", + "hall:occupied", + "hall:winrate" + ] + ], + [ + "【72기】유카", + 70, + 83, + 14, + "che_event_견고", + [ + 28802, + 25210, + 482986, + 85230, + 13840 + ], + 1, + "0e023deb.jpg?=20240425", + 72, + "che_240711_to95", + 76, + [ + "hall:dex3", + "hall:tsrate" + ] + ], + [ + "【72기】강유", + 72, + 13, + 83, + "che_event_필살", + [ + 49844, + 9830, + 18851, + 760476, + 14794 + ], + 1, + "79e150d0.jpg?=20230921", + 72, + "che_240711_to95", + 77, + [ + "hall:dex4", + "hall:experience", + "hall:killcrew", + "hall:killcrew_person", + "hall:killnum", + "hall:warnum" + ] + ], + [ + "【72기】ㅊㄹㅊㄹ", + 70, + 81, + 13, + "che_event_필살", + [ + 23978, + 43653, + 515812, + 91904, + 26989 + ], + 1, + "63f1c106.png?=20230223", + 72, + "che_240711_to95", + 79, + [ + "hall:dex3", + "hall:tsrate" + ] + ], + [ + "【72기】조승상", + 81, + 71, + 13, + "che_event_기병", + [ + 35295, + 63283, + 628995, + 106615, + 33208 + ], + 1, + "6f27503f.png?=20240322", + 72, + "che_240711_to95", + 81, + [ + "hall:dex3" + ] + ], + [ + "【72기】잘가요", + 73, + 82, + 14, + "che_event_징병", + [ + 85367, + 800961, + 15494, + 95022, + 13576 + ], + 0, + "default.jpg", + 72, + "che_240711_to95", + 82, + [ + "hall:betrate", + "hall:betwin", + "hall:dex2", + "hall:killcrew_person" + ] + ], + [ + "【72기】미국주식보유자", + 74, + 89, + 15, + "che_event_필살", + [ + 45625, + 1182592, + 10739, + 101128, + 41008 + ], + 1, + "ff6cdf5d.png?=20240711", + 72, + "che_240711_to95", + 85, + [ + "hall:betrate", + "hall:betwin", + "hall:betwingold", + "hall:dex2", + "hall:dex5", + "hall:killcrew", + "hall:killcrew_person", + "hall:killnum", + "hall:killrate", + "hall:killrate_person", + "hall:occupied", + "hall:warnum", + "hall:winrate" + ] + ], + [ + "【72기】사호", + 74, + 82, + 13, + "che_event_필살", + [ + 511085, + 413439, + 28614, + 135593, + 27190 + ], + 0, + "default.jpg", + 72, + "che_240711_to95", + 87, + [ + "hall:dex1", + "hall:dex2", + "hall:killcrew", + "hall:killcrew_person", + "hall:warnum" + ] + ], + [ + "【72기】Air", + 73, + 81, + 13, + "che_event_징병", + [ + 38640, + 756130, + 2450, + 107161, + 9874 + ], + 0, + "default.jpg", + 72, + "che_240711_to95", + 88, + [ + "hall:dex2", + "hall:firenum", + "hall:occupied" + ] + ], + [ + "【72기】장마철", + 71, + 80, + 13, + "che_event_무쌍", + [ + 399772, + 45900, + 47042, + 114983, + 24412 + ], + 1, + "f657a1ae.png?=20240715", + 72, + "che_240711_to95", + 89, + [ + "hall:dex1", + "hall:tsrate" + ] + ], + [ + "【72기】알트아이젠", + 69, + 84, + 13, + "che_event_필살", + [ + 51283, + 735935, + 23615, + 87383, + 62302 + ], + 0, + "default.jpg", + 72, + "che_240711_to95", + 90, + [ + "chief:10", + "hall:betwin", + "hall:dedication", + "hall:dex2" + ] + ], + [ + "【72기】대교", + 85, + 66, + 13, + "che_event_필살", + [ + 665824, + 27008, + 22205, + 107161, + 40561 + ], + 1, + "9f0e6dcc.jpg?=20220808", + 72, + "che_240711_to95", + 91, + [ + "hall:dex1", + "hall:tlrate" + ] + ], + [ + "【72기】강남순", + 69, + 82, + 13, + "che_event_필살", + [ + 463260, + 25158, + 49480, + 92584, + 23380 + ], + 1, + "21bce52c.jpg?=20240711", + 72, + "che_240711_to95", + 92, + [ + "hall:ttrate" + ] + ], + [ + "【72기】뜌땨", + 86, + 66, + 14, + "che_event_필살", + [ + 1003084, + 28863, + 39633, + 87392, + 50847 + ], + 1, + "08dd3856.png?=20240715", + 72, + "che_240711_to95", + 93, + [ + "chief:8", + "hall:betgold", + "hall:betwin", + "hall:betwingold", + "hall:dedication", + "hall:dex1", + "hall:dex5", + "hall:experience", + "hall:killcrew", + "hall:killcrew_person", + "hall:killnum", + "hall:killrate", + "hall:killrate_person", + "hall:tlrate", + "hall:warnum" + ] + ], + [ + "【72기】누렁이", + 67, + 89, + 13, + "che_event_필살", + [ + 909766, + 26148, + 72476, + 88815, + 27218 + ], + 1, + "29922ad9.gif?=20240711", + 72, + "che_240711_to95", + 94, + [ + "hall:betgold", + "hall:betwingold", + "hall:dex1", + "hall:killrate", + "hall:killrate_person", + "hall:tsrate" + ] + ], + [ + "【72기】보디가드", + 89, + 61, + 13, + "che_event_공성", + [ + 27256, + 4001, + 17125, + 7684, + 590442 + ], + 1, + "5b501aa2.jpg?=20240711", + 72, + "che_240711_to95", + 96, + [ + "hall:dex5", + "hall:experience", + "hall:killrate", + "hall:occupied", + "hall:tlrate", + "hall:winrate" + ] + ], + [ + "【72기】몽고르기니 우라칸", + 71, + 81, + 14, + "che_event_필살", + [ + 82166, + 472879, + 7801, + 58739, + 35382 + ], + 1, + "5a26a7f2.jpg?=20240711", + 72, + "che_240711_to95", + 97, + [ + "hall:dex2", + "hall:firenum" + ] + ], + [ + "【72기】루이스", + 69, + 13, + 86, + "che_event_의술", + [ + 16170, + 26170, + 33282, + 745911, + 43676 + ], + 1, + "819300a0.png?=20240714", + 72, + "che_240711_to95", + 98, + [ + "hall:betgold", + "hall:betrate", + "hall:betwingold", + "hall:dex4", + "hall:killrate", + "hall:killrate_person" + ] + ], + [ + "【72기】꼬꼬댁", + 67, + 13, + 88, + "che_event_필살", + [ + 50130, + 41922, + 20136, + 1045960, + 55458 + ], + 1, + "38d91640.jpg?=20240711", + 72, + "che_240711_to95", + 99, + [ + "chief:7", + "hall:betgold", + "hall:betwin", + "hall:betwingold", + "hall:dex4", + "hall:killnum", + "hall:killrate", + "hall:killrate_person", + "hall:occupied", + "hall:tirate", + "hall:winrate" + ] + ], + [ + "【72기】님들그거아세요?", + 69, + 13, + 82, + "che_event_집중", + [ + 41572, + 52634, + 18277, + 435933, + 24506 + ], + 0, + "default.jpg", + 72, + "che_240711_to95", + 100, + [ + "hall:tirate" + ] + ], + [ + "【72기】독피자", + 69, + 13, + 84, + "che_event_필살", + [ + 33237, + 32001, + 13675, + 621461, + 26262 + ], + 1, + "ef440bed.gif?=20240712", + 72, + "che_240711_to95", + 104, + [ + "hall:betwin", + "hall:tirate", + "hall:ttrate" + ] + ], + [ + "【72기】홍삼맛양갱", + 76, + 82, + 13, + "che_event_필살", + [ + 1105639, + 21105, + 53982, + 51038, + 23312 + ], + 1, + "577d9c34.jpg?=20240716", + 72, + "che_240711_to95", + 105, + [ + "hall:dex1", + "hall:firenum", + "hall:killcrew", + "hall:killcrew_person", + "hall:killnum", + "hall:killrate_person", + "hall:tsrate", + "hall:warnum", + "hall:winrate" + ] + ], + [ + "【72기】임사영", + 67, + 13, + 87, + "che_event_필살", + [ + 15900, + 32348, + 24584, + 509629, + 24014 + ], + 1, + "0b5a2642.jpg?=20240305", + 72, + "che_240711_to95", + 106, + [ + "hall:tirate" + ] + ], + [ + "【72기】개복치", + 67, + 13, + 89, + "che_event_필살", + [ + 42668, + 48771, + 34670, + 845307, + 20998 + ], + 1, + "1ccba920.jpg?=20240711", + 72, + "che_240711_to95", + 107, + [ + "hall:betgold", + "hall:betrate", + "hall:betwingold", + "hall:dex4", + "hall:killnum", + "hall:killrate", + "hall:killrate_person", + "hall:tirate", + "hall:winrate" + ] + ], + [ + "【72기】Mella", + 72, + 86, + 13, + "che_event_척사", + [ + 35941, + 28745, + 1521859, + 70028, + 41361 + ], + 1, + "db1a7261.png?=20240716", + 72, + "che_240711_to95", + 108, + [ + "chief:6", + "hall:betgold", + "hall:dex3", + "hall:killcrew", + "hall:killcrew_person", + "hall:killnum", + "hall:killrate", + "hall:killrate_person", + "hall:tsrate", + "hall:warnum", + "hall:winrate" + ] + ], + [ + "【72기】일레이나", + 71, + 13, + 84, + "che_event_필살", + [ + 41320, + 48371, + 20508, + 657868, + 25423 + ], + 1, + "e71be59f.png?=20240711", + 72, + "che_240711_to95", + 109, + [ + "hall:ttrate" + ] + ], + [ + "【72기】라콘타", + 84, + 13, + 70, + "che_event_환술", + [ + 73657, + 30559, + 33656, + 650152, + 20008 + ], + 1, + "578d3ce5.png?=20240428", + 72, + "che_240711_to95", + 110, + [ + "hall:betrate", + "hall:betwin", + "hall:tlrate" + ] + ], + [ + "【72기】사스케", + 80, + 14, + 73, + "che_event_필살", + [ + 50838, + 49026, + 11821, + 842724, + 49957 + ], + 1, + "1fb66bff.jpg?=20240711", + 72, + "che_240711_to95", + 111, + [ + "chief:9", + "hall:betgold", + "hall:betwin", + "hall:betwingold", + "hall:dex4", + "hall:dex5", + "hall:experience", + "hall:killcrew", + "hall:killnum", + "hall:occupied", + "hall:warnum" + ] + ], + [ + "【72기】하마", + 85, + 73, + 15, + "che_event_격노", + [ + 27843, + 62872, + 737132, + 101631, + 36629 + ], + 1, + "bfc60f51.png?=20240713", + 72, + "che_240711_to95", + 114, + [ + "hall:dex3", + "hall:occupied" + ] + ], + [ + "【72기】유니크는재야에봉인", + 80, + 71, + 13, + "che_event_돌격", + [ + 31272, + 54357, + 486202, + 147493, + 23635 + ], + 0, + "default.jpg", + 72, + "che_240711_to95", + 115, + [ + "hall:dex3" + ] + ], + [ + "【72기】애기븝미에얌", + 14, + 65, + 86, + "che_event_의술", + [ + 0, + 0, + 0, + 0, + 0 + ], + 1, + "a0d3bf19.jpg?=20240710", + 72, + "che_240711_to95", + 116, + [ + "hall:dedication" + ] + ], + [ + "【72기】간지밍이", + 17, + 68, + 79, + "che_event_신산", + [ + 0, + 0, + 0, + 0, + 0 + ], + 1, + "05a5f403.png?=20240523", + 72, + "che_240711_to95", + 117, + [ + "hall:betgold", + "hall:betwin", + "hall:betwingold" + ] + ], + [ + "【72기】금주영윤금희", + 70, + 82, + 13, + "che_event_척사", + [ + 574976, + 13302, + 34433, + 94744, + 16194 + ], + 1, + "e2386370.png?=20240714", + 72, + "che_240711_to95", + 118, + [ + "hall:dex1" + ] + ], + [ + "【72기】하비", + 13, + 65, + 88, + "che_event_의술", + [ + 0, + 0, + 0, + 0, + 0 + ], + 1, + "f986b0ba.png?=20240711", + 72, + "che_240711_to95", + 119, + [ + "hall:dedication", + "hall:tirate" + ] + ], + [ + "【72기】유산내놔슬라임", + 73, + 88, + 15, + "che_event_필살", + [ + 76703, + 856226, + 24058, + 88810, + 44593 + ], + 1, + "2d2da7c0.jpg?=20231130", + 72, + "che_240711_to95", + 120, + [ + "hall:betrate", + "hall:dex2", + "hall:dex5", + "hall:occupied", + "hall:tlrate", + "hall:winrate" + ] + ], + [ + "【72기】덕구", + 71, + 80, + 14, + "che_event_무쌍", + [ + 45864, + 428726, + 16477, + 97981, + 18563 + ], + 1, + "7031e789.jpg?=20240201", + 72, + "che_240711_to95", + 121, + [ + "hall:dex2", + "hall:firenum" + ] + ], + [ + "【72기】경국지색소교", + 72, + 82, + 13, + "che_event_돌격", + [ + 316068, + 64068, + 73934, + 108316, + 43857 + ], + 1, + "ad2669b5.jpg?=20230605", + 72, + "che_240711_to95", + 122, + [ + "hall:tsrate", + "hall:ttrate" + ] + ], + [ + "【72기】구경합니다", + 14, + 82, + 67, + "che_event_무쌍", + [ + 0, + 0, + 0, + 0, + 0 + ], + 1, + "c22bba79.jpg?=20240711", + 72, + "che_240711_to95", + 123, + [ + "hall:dedication", + "hall:experience", + "hall:ttrate" + ] + ], + [ + "【72기】카리나", + 84, + 61, + 13, + "che_event_공성", + [ + 29411, + 18683, + 37787, + 55500, + 909761 + ], + 1, + "8e9224a0.jpg?=20240711", + 72, + "che_240711_to95", + 127, + [ + "hall:dex3", + "hall:dex5", + "hall:killrate", + "hall:occupied" + ] + ], + [ + "【72기】카이스트", + 69, + 14, + 85, + "che_event_집중", + [ + 34652, + 37948, + 12481, + 714125, + 20655 + ], + 1, + "e7e27cd6.jpg?=20221125", + 72, + "che_240711_to95", + 129, + [ + "hall:winrate" + ] + ], + [ + "【72기】물음표", + 69, + 84, + 13, + "che_event_견고", + [ + 425204, + 18014, + 12340, + 89212, + 7547 + ], + 1, + "039634a0.jpg?=20240719", + 72, + "che_240711_to95", + 133, + [ + "hall:firenum", + "hall:tsrate", + "hall:ttrate" + ] + ], + [ + "【72기】본닉공개반대", + 75, + 13, + 82, + "che_event_척사", + [ + 37467, + 25947, + 17579, + 731424, + 28221 + ], + 0, + "default.jpg", + 72, + "che_240711_to95", + 141, + [ + "hall:killcrew", + "hall:killcrew_person", + "hall:warnum" + ] + ], + [ + "【72기】くま", + 73, + 14, + 81, + "che_event_신중", + [ + 38408, + 22510, + 15513, + 700458, + 16675 + ], + 1, + "770f53.jpg?=20190718", + 72, + "che_240711_to95", + 143, + [ + "hall:dex4", + "hall:experience", + "hall:killcrew", + "hall:killcrew_person", + "hall:killnum", + "hall:warnum" + ] + ], + [ + "【72기】하냥", + 72, + 81, + 13, + "che_event_필살", + [ + 498068, + 27177, + 23196, + 118618, + 18391 + ], + 1, + "8be1d2b1.jpg?=20240712", + 72, + "che_240711_to95", + 372, + [ + "hall:dex1" + ] + ], + [ + "【72기】조예린", + 88, + 13, + 64, + "che_event_신중", + [ + 36869, + 33588, + 31462, + 474866, + 23078 + ], + 1, + "a7a31038.png?=20240328", + 72, + "che_240711_to95", + 380, + [ + "hall:betrate", + "hall:tlrate" + ] + ], + [ + "【72기】Navy마초", + 85, + 64, + 14, + "che_event_필살", + [ + 54577, + 63190, + 410922, + 104420, + 17283 + ], + 1, + "37644ed3.png?=20230831", + 72, + "che_240711_to95", + 381, + [ + "hall:dex3", + "hall:tlrate" + ] + ], + [ + "【72기】국04", + 70, + 13, + 79, + "che_event_환술", + [ + 37987, + 18557, + 13367, + 384530, + 26034 + ], + 1, + "546ecd10.png?=20231007", + 72, + "che_240711_to95", + 389, + [ + "hall:betrate" + ] + ], + [ + "【72기】할아버지", + 15, + 60, + 89, + "che_event_의술", + [ + 0, + 0, + 0, + 0, + 0 + ], + 1, + "0b94851c.png?=20240712", + 72, + "che_240711_to95", + 392, + [ + "hall:tirate" + ] + ], + [ + "【72기】북오더", + 69, + 13, + 81, + "che_event_필살", + [ + 28310, + 26289, + 25491, + 538985, + 109251 + ], + 1, + "f9e4b416.gif?=20240717", + 72, + "che_240711_to95", + 394, + [ + "hall:dex5" + ] + ], + [ + "【72기】초록소", + 13, + 81, + 67, + "che_event_의술", + [ + 0, + 0, + 0, + 0, + 0 + ], + 0, + "default.jpg", + 72, + "che_240711_to95", + 402, + [ + "hall:tsrate", + "hall:ttrate" + ] + ], + [ + "【72기】서희", + 77, + 13, + 72, + "che_event_환술", + [ + 44699, + 35611, + 29093, + 399564, + 27495 + ], + 1, + "8debf7e5.png?=20230308", + 72, + "che_240711_to95", + 548, + [ + "hall:dedication", + "hall:experience" + ] + ], + [ + "【73기】미친과학", + 71, + 15, + 89, + "che_event_필살", + [ + 12474, + 10887, + 4247, + 151413, + 11099 + ], + 1, + "ad06a8c4.png?=20240812", + 73, + "che_240815_wlg6", + 4, + [ + "hall:killrate_person", + "hall:winrate" + ] + ], + [ + "【73기】로갈 돈", + 91, + 70, + 15, + "che_event_공성", + [ + 36924, + 694, + 317, + 0, + 1043400 + ], + 1, + "60e30a65.jpg?=20240814", + 73, + "che_240815_wlg6", + 6, + [ + "chief:10", + "hall:betgold", + "hall:betwingold", + "hall:dex5", + "hall:experience", + "hall:killcrew", + "hall:killnum", + "hall:killrate", + "hall:occupied", + "hall:tlrate", + "hall:winrate" + ] + ], + [ + "【73기】신도큐어그레이스", + 73, + 15, + 88, + "che_event_환술", + [ + 13788, + 1331, + 1499, + 180729, + 20323 + ], + 1, + "c3e0f92e.png?=20240815", + 73, + "che_240815_wlg6", + 7, + [ + "hall:betgold", + "hall:betrate", + "hall:betwingold", + "hall:dex4", + "hall:firenum", + "hall:tirate", + "hall:ttrate" + ] + ], + [ + "【73기】생귀니우스", + 72, + 15, + 89, + "che_event_필살", + [ + 20769, + 11099, + 7758, + 299917, + 26014 + ], + 1, + "129159ce.jpg?=20240814", + 73, + "che_240815_wlg6", + 8, + [ + "chief:7", + "hall:betwingold", + "hall:dex4", + "hall:dex5", + "hall:experience", + "hall:killcrew", + "hall:killcrew_person", + "hall:killnum", + "hall:killrate", + "hall:killrate_person", + "hall:occupied", + "hall:tirate", + "hall:warnum", + "hall:winrate" + ] + ], + [ + "【73기】신에게부름받은이", + 16, + 81, + 78, + "che_event_격노", + [ + 0, + 0, + 0, + 0, + 0 + ], + 0, + "default.jpg", + 73, + "che_240815_wlg6", + 12, + [ + "hall:dedication" + ] + ], + [ + "【73기】페러스 매너스", + 72, + 15, + 89, + "che_event_필살", + [ + 14544, + 8553, + 8825, + 208923, + 23711 + ], + 1, + "fbf8ce70.png?=20240815", + 73, + "che_240815_wlg6", + 14, + [ + "hall:dex4", + "hall:experience", + "hall:killnum", + "hall:killrate", + "hall:killrate_person", + "hall:occupied", + "hall:tirate", + "hall:winrate" + ] + ], + [ + "【73기】크렌스", + 90, + 15, + 73, + "che_event_돌격", + [ + 24325, + 29734, + 14095, + 544941, + 18463 + ], + 1, + "7031c2eb.jpg?=20240817", + 73, + "che_240815_wlg6", + 21, + [ + "chief:12", + "hall:betgold", + "hall:betrate", + "hall:betwin", + "hall:betwingold", + "hall:dedication", + "hall:dex2", + "hall:dex4", + "hall:experience", + "hall:killcrew", + "hall:killcrew_person", + "hall:killnum", + "hall:killrate", + "hall:killrate_person", + "hall:tlrate", + "hall:warnum", + "hall:winrate" + ] + ], + [ + "【73기】김정은", + 73, + 87, + 16, + "che_event_무쌍", + [ + 231618, + 2205, + 9897, + 17602, + 11193 + ], + 1, + "36fe5309.png?=20240815", + 73, + "che_240815_wlg6", + 23, + [ + "hall:dex1", + "hall:firenum", + "hall:killcrew_person", + "hall:tsrate", + "hall:warnum" + ] + ], + [ + "【73기】카토 시카리우스", + 89, + 15, + 71, + "che_event_저격", + [ + 8874, + 3210, + 8035, + 45978, + 140692 + ], + 1, + "4978fc91.jpg?=20240815", + 73, + "che_240815_wlg6", + 25, + [ + "chief:5", + "hall:dedication", + "hall:dex5", + "hall:occupied", + "hall:tlrate" + ] + ], + [ + "【73기】와일드플라워", + 73, + 16, + 86, + "che_event_저격", + [ + 9162, + 6215, + 3378, + 228469, + 19326 + ], + 0, + "default.jpg", + 73, + "che_240815_wlg6", + 28, + [ + "hall:dex4", + "hall:tirate", + "hall:ttrate" + ] + ], + [ + "【73기】코르부스 코락스", + 72, + 89, + 15, + "che_event_징병", + [ + 15983, + 211153, + 2884, + 18834, + 19362 + ], + 1, + "9280d492.png?=20240815", + 73, + "che_240815_wlg6", + 30, + [ + "chief:8", + "hall:betrate", + "hall:dedication", + "hall:dex2", + "hall:experience", + "hall:tsrate", + "hall:winrate" + ] + ], + [ + "【73기】라이온 엘 존슨", + 72, + 88, + 15, + "che_event_필살", + [ + 361952, + 2579, + 22547, + 29623, + 27918 + ], + 1, + "8d8a4be5.jpg?=20240815", + 73, + "che_240815_wlg6", + 31, + [ + "chief:6", + "hall:betgold", + "hall:betwin", + "hall:dedication", + "hall:dex1", + "hall:dex3", + "hall:dex5", + "hall:experience", + "hall:killcrew", + "hall:killnum", + "hall:killrate", + "hall:killrate_person", + "hall:tsrate", + "hall:warnum", + "hall:winrate" + ] + ], + [ + "【73기】조승상", + 85, + 72, + 16, + "che_event_견고", + [ + 15691, + 134023, + 2978, + 24934, + 15876 + ], + 1, + "6f27503f.png?=20240322", + 73, + "che_240815_wlg6", + 33, + [ + "hall:dex2" + ] + ], + [ + "【73기】이젠안녕", + 79, + 81, + 15, + "che_event_척사", + [ + 30677, + 237474, + 8130, + 48212, + 14788 + ], + 0, + "default.jpg", + 73, + "che_240815_wlg6", + 36, + [ + "hall:betrate", + "hall:betwin", + "hall:betwingold", + "hall:dex2", + "hall:warnum" + ] + ], + [ + "【73기】크피자빵", + 71, + 89, + 15, + "che_event_필살", + [ + 240273, + 3108, + 2248, + 6788, + 27433 + ], + 1, + "d54760e2.jpg?=20240815", + 73, + "che_240815_wlg6", + 37, + [ + "hall:dedication", + "hall:dex1", + "hall:dex5", + "hall:experience", + "hall:killrate", + "hall:killrate_person", + "hall:occupied", + "hall:tsrate", + "hall:winrate" + ] + ], + [ + "【73기】CHANGMO", + 89, + 71, + 15, + "che_event_격노", + [ + 29951, + 95196, + 6073, + 7222, + 4586 + ], + 1, + "eda4d4aa.webp?=20240815", + 73, + "che_240815_wlg6", + 39, + [ + "hall:dex2", + "hall:tlrate" + ] + ], + [ + "【73기】Air", + 73, + 83, + 20, + "che_event_필살", + [ + 254688, + 1030, + 1138, + 14931, + 15311 + ], + 0, + "default.jpg", + 73, + "che_240815_wlg6", + 44, + [ + "hall:dex1", + "hall:killcrew", + "hall:killcrew_person", + "hall:killrate", + "hall:killrate_person", + "hall:occupied" + ] + ], + [ + "【73기】최진리", + 90, + 70, + 15, + "che_event_공성", + [ + 30240, + 7871, + 8484, + 12072, + 64422 + ], + 1, + "2d3506dd.webp?=20240414", + 73, + "che_240815_wlg6", + 45, + [ + "hall:dex5", + "hall:tlrate", + "hall:ttrate" + ] + ], + [ + "【73기】더위 먹은 독구", + 15, + 73, + 86, + "che_event_징병", + [ + 0, + 0, + 0, + 0, + 0 + ], + 1, + "5283daf7.png?=20240511", + 73, + "che_240815_wlg6", + 46, + [ + "hall:betwin", + "hall:firenum", + "hall:tirate" + ] + ], + [ + "【73기】황혼중", + 15, + 89, + 71, + "che_event_무쌍", + [ + 0, + 0, + 0, + 0, + 0 + ], + 1, + "e5161df9.jpg?=20231110", + 73, + "che_240815_wlg6", + 47, + [ + "hall:tsrate", + "hall:ttrate" + ] + ], + [ + "【73기】북오더", + 72, + 85, + 16, + "che_event_위압", + [ + 8989, + 1307, + 103393, + 17993, + 4855 + ], + 1, + "f9e4b416.gif?=20240717", + 73, + "che_240815_wlg6", + 49, + [ + "hall:dex3", + "hall:tsrate" + ] + ], + [ + "【73기】신도8", + 77, + 15, + 83, + "che_event_의술", + [ + 11350, + 17652, + 0, + 174148, + 52776 + ], + 0, + "default.jpg", + 73, + "che_240815_wlg6", + 53, + [ + "hall:dex4", + "hall:dex5" + ] + ], + [ + "【73기】경국지색소교", + 75, + 16, + 84, + "che_event_환술", + [ + 17118, + 2504, + 3135, + 173533, + 21788 + ], + 1, + "ad2669b5.jpg?=20230605", + 73, + "che_240815_wlg6", + 54, + [ + "hall:firenum", + "hall:ttrate" + ] + ], + [ + "【73기】제키엘", + 88, + 70, + 15, + "che_event_징병", + [ + 266100, + 2109, + 23377, + 50972, + 18733 + ], + 1, + "c9c4b7c5.png?=20240824", + 73, + "che_240815_wlg6", + 55, + [ + "hall:betrate", + "hall:betwin", + "hall:dex1", + "hall:dex3", + "hall:experience", + "hall:occupied", + "hall:tlrate" + ] + ], + [ + "【73기】쒸익쒸익", + 86, + 15, + 74, + "che_event_집중", + [ + 13049, + 2590, + 2956, + 185299, + 13008 + ], + 1, + "c87b3b26.jpg?=20240814", + 73, + "che_240815_wlg6", + 58, + [ + "hall:betgold", + "hall:betrate", + "hall:betwin", + "hall:betwingold", + "hall:dex4" + ] + ], + [ + "【73기】대교", + 85, + 73, + 16, + "che_event_필살", + [ + 284997, + 11867, + 657, + 67128, + 11483 + ], + 1, + "9f0e6dcc.jpg?=20220808", + 73, + "che_240815_wlg6", + 63, + [ + "hall:dex1", + "hall:killcrew", + "hall:killcrew_person", + "hall:killnum", + "hall:tlrate", + "hall:warnum" + ] + ], + [ + "【73기】음양사", + 74, + 87, + 15, + "che_event_징병", + [ + 100332, + 24101, + 218521, + 28002, + 73880 + ], + 1, + "ef295f95.jpg?=20240816", + 73, + "che_240815_wlg6", + 65, + [ + "hall:dex3", + "hall:dex5", + "hall:killcrew", + "hall:killcrew_person", + "hall:killnum", + "hall:killrate", + "hall:killrate_person", + "hall:tsrate", + "hall:ttrate", + "hall:warnum" + ] + ], + [ + "【73기】이드", + 72, + 15, + 89, + "che_event_집중", + [ + 6527, + 5915, + 2908, + 219238, + 13768 + ], + 1, + "fc3385d6.gif?=20240301", + 73, + "che_240815_wlg6", + 66, + [ + "hall:dex4", + "hall:killcrew_person", + "hall:killnum", + "hall:winrate" + ] + ], + [ + "【73기】샐래미", + 16, + 73, + 86, + "che_event_의술", + [ + 0, + 0, + 0, + 0, + 0 + ], + 1, + "f5989c78.jpg?=20240815", + 73, + "che_240815_wlg6", + 68, + [ + "hall:tirate", + "hall:ttrate" + ] + ], + [ + "【73기】저금통", + 15, + 71, + 90, + "che_event_신중", + [ + 0, + 0, + 0, + 0, + 0 + ], + 0, + "default.jpg", + 73, + "che_240815_wlg6", + 72, + [ + "hall:dedication", + "hall:tirate" + ] + ], + [ + "【73기】우타즈미 사쿠라코", + 72, + 88, + 15, + "che_event_징병", + [ + 22687, + 14540, + 176494, + 49636, + 21416 + ], + 1, + "3dc19653.jpg?=20240816", + 73, + "che_240815_wlg6", + 74, + [ + "hall:dex3", + "hall:tsrate" + ] + ], + [ + "【73기】쿠크세이튼", + 72, + 15, + 89, + "che_event_집중", + [ + 12920, + 6773, + 4443, + 125196, + 7237 + ], + 1, + "e654c472.jpg?=20240815", + 73, + "che_240815_wlg6", + 78, + [ + "hall:tirate" + ] + ], + [ + "【73기】오레하상급융화재료", + 73, + 88, + 15, + "che_event_필살", + [ + 369, + 0, + 30858, + 3612, + 4184 + ], + 1, + "6ce72f01.jpg?=20240815", + 73, + "che_240815_wlg6", + 80, + [ + "hall:dedication", + "hall:dex3", + "hall:tsrate" + ] + ], + [ + "【73기】신도6", + 73, + 85, + 15, + "che_event_무쌍", + [ + 234113, + 6210, + 1625, + 22396, + 45530 + ], + 0, + "default.jpg", + 73, + "che_240815_wlg6", + 82, + [ + "hall:dex1", + "hall:dex5", + "hall:killrate" + ] + ], + [ + "【73기】두다다다", + 75, + 85, + 16, + "che_event_저격", + [ + 116460, + 2453, + 1168, + 16941, + 5009 + ], + 1, + "e3bb98ed.jpg?=20240818", + 73, + "che_240815_wlg6", + 83, + [ + "hall:betgold", + "hall:betrate", + "hall:betwin", + "hall:betwingold", + "hall:ttrate" + ] + ], + [ + "【73기】건방진여고생", + 76, + 15, + 84, + "che_event_징병", + [ + 6484, + 3751, + 1820, + 136575, + 15190 + ], + 1, + "1b61f078.jpg?=20240815", + 73, + "che_240815_wlg6", + 84, + [ + "hall:betgold", + "hall:betrate", + "hall:betwingold", + "hall:firenum" + ] + ], + [ + "【73기】복숭아좋아", + 72, + 15, + 88, + "che_event_필살", + [ + 16918, + 6940, + 803, + 144149, + 14761 + ], + 0, + "default.jpg", + 73, + "che_240815_wlg6", + 85, + [ + "hall:winrate" + ] + ], + [ + "【73기】니쉬", + 76, + 85, + 15, + "che_event_돌격", + [ + 205707, + 1802, + 28296, + 34707, + 12491 + ], + 1, + "92a4ae0c.png?=20240815", + 73, + "che_240815_wlg6", + 86, + [ + "hall:betgold", + "hall:betwin", + "hall:dex1", + "hall:dex3", + "hall:occupied", + "hall:ttrate" + ] + ], + [ + "【73기】ㅇㅅㅇ", + 74, + 84, + 16, + "che_event_필살", + [ + 153308, + 11666, + 8575, + 43201, + 4311 + ], + 0, + "default.jpg", + 73, + "che_240815_wlg6", + 89, + [ + "hall:ttrate" + ] + ], + [ + "【73기】이단심판관", + 73, + 88, + 15, + "che_event_필살", + [ + 10457, + 237987, + 8049, + 8603, + 14426 + ], + 1, + "b34bfdc8.png?=20240816", + 73, + "che_240815_wlg6", + 90, + [ + "hall:dex2", + "hall:killcrew", + "hall:killcrew_person", + "hall:killrate_person", + "hall:occupied", + "hall:warnum" + ] + ], + [ + "【73기】독구", + 72, + 15, + 89, + "che_event_집중", + [ + 20444, + 7363, + 4640, + 237221, + 25300 + ], + 1, + "393f17a6.png?=20240815", + 73, + "che_240815_wlg6", + 92, + [ + "chief:9", + "hall:betgold", + "hall:betrate", + "hall:betwin", + "hall:betwingold", + "hall:dedication", + "hall:dex4", + "hall:experience", + "hall:killrate", + "hall:killrate_person", + "hall:tirate" + ] + ], + [ + "【73기】웨이드 리플", + 74, + 84, + 15, + "che_event_징병", + [ + 36385, + 21686, + 249546, + 22838, + 16913 + ], + 1, + "ae9bc2c0.png?=20240820", + 73, + "che_240815_wlg6", + 94, + [ + "hall:dex3", + "hall:killcrew", + "hall:killcrew_person", + "hall:killnum", + "hall:warnum" + ] + ], + [ + "【73기】미친영어", + 85, + 74, + 15, + "che_event_저격", + [ + 352426, + 4309, + 7530, + 21703, + 15820 + ], + 1, + "d613d3d8.jpg?=20240816", + 73, + "che_240815_wlg6", + 95, + [ + "hall:dex1", + "hall:killcrew", + "hall:killcrew_person", + "hall:killnum", + "hall:warnum" + ] + ], + [ + "【73기】라콘타", + 71, + 15, + 89, + "che_event_신산", + [ + 4763, + 12587, + 1950, + 62994, + 15327 + ], + 1, + "578d3ce5.png?=20240428", + 73, + "che_240815_wlg6", + 97, + [ + "hall:firenum" + ] + ], + [ + "【73기】로부테 길리먼", + 90, + 70, + 15, + "che_event_징병", + [ + 231172, + 2402, + 15073, + 27284, + 27207 + ], + 1, + "adc6319f.png?=20240814", + 73, + "che_240815_wlg6", + 98, + [ + "chief:11", + "hall:betgold", + "hall:betwin", + "hall:betwingold", + "hall:dedication", + "hall:dex1", + "hall:dex5", + "hall:experience", + "hall:tlrate" + ] + ], + [ + "【73기】쌀숭이", + 75, + 86, + 15, + "che_event_저격", + [ + 34752, + 79661, + 1986, + 11603, + 15467 + ], + 1, + "85458946.png?=20240815", + 73, + "che_240815_wlg6", + 100, + [ + "hall:dex2" + ] + ], + [ + "【73기】Navy마초", + 84, + 73, + 16, + "che_event_의술", + [ + 186666, + 34727, + 24805, + 36399, + 12959 + ], + 1, + "37644ed3.png?=20230831", + 73, + "che_240815_wlg6", + 102, + [ + "hall:dex2", + "hall:dex3" + ] + ], + [ + "【73기】보살", + 86, + 16, + 73, + "che_event_반계", + [ + 47241, + 4708, + 9478, + 200540, + 7068 + ], + 0, + "default.jpg", + 73, + "che_240815_wlg6", + 103, + [ + "hall:betrate", + "hall:dex4", + "hall:tlrate" + ] + ], + [ + "【73기】이번기지장", + 75, + 15, + 85, + "che_event_반계", + [ + 2374, + 1793, + 345, + 154249, + 21564 + ], + 0, + "default.jpg", + 73, + "che_240815_wlg6", + 107, + [ + "hall:firenum" + ] + ], + [ + "【73기】없는사람", + 15, + 73, + 88, + "che_event_필살", + [ + 0, + 0, + 0, + 0, + 0 + ], + 0, + "default.jpg", + 73, + "che_240815_wlg6", + 112, + [ + "hall:tirate" + ] + ], + [ + "【73기】척", + 72, + 86, + 15, + "che_event_징병", + [ + 35047, + 67845, + 123763, + 48733, + 17225 + ], + 1, + "7cb75480.png?=20221202", + 73, + "che_240815_wlg6", + 115, + [ + "hall:dex2", + "hall:dex3", + "hall:tsrate" + ] + ], + [ + "【73기】스미다 아이코", + 88, + 15, + 71, + "che_event_집중", + [ + 1523, + 1435, + 8356, + 122380, + 4340 + ], + 1, + "abc1a48f.jpg?=20240815", + 73, + "che_240815_wlg6", + 119, + [ + "hall:tlrate" + ] + ], + [ + "【73기】@_@", + 75, + 83, + 15, + "che_event_의술", + [ + 195458, + 6236, + 21810, + 35888, + 11155 + ], + 0, + "default.jpg", + 73, + "che_240815_wlg6", + 219, + [ + "hall:firenum", + "hall:occupied" + ] + ], + [ + "【73기】사하드", + 73, + 85, + 15, + null, + [ + 13614, + 40625, + 4195, + 3971, + 0 + ], + 1, + "31f10b32.jpg?=20220717", + 73, + "che_240815_wlg6", + 343, + [ + "hall:dex2" + ] + ], + [ + "【74기】노트북", + 73, + 15, + 92, + "che_event_신산", + [ + 13603, + 18125, + 9373, + 294252, + 58247 + ], + 1, + "a671127b.jpg?=20240829", + 74, + "che_240829_P5dI", + 5, + [ + "chief:7", + "hall:betgold", + "hall:betwin", + "hall:betwingold", + "hall:dedication", + "hall:dex5", + "hall:experience", + "hall:killrate_person" + ] + ], + [ + "【74기】앵무새", + 93, + 73, + 15, + "che_event_필살", + [ + 38331, + 30883, + 445218, + 32728, + 35465 + ], + 1, + "36abcbb2.jpg?=20240829", + 74, + "che_240829_P5dI", + 8, + [ + "chief:12", + "hall:betgold", + "hall:betwin", + "hall:betwingold", + "hall:dedication", + "hall:dex3", + "hall:dex5", + "hall:experience", + "hall:killnum", + "hall:killrate", + "hall:killrate_person", + "hall:occupied", + "hall:tlrate", + "hall:winrate" + ] + ], + [ + "【74기】셀레미", + 73, + 17, + 89, + "che_event_집중", + [ + 11211, + 8622, + 23206, + 246705, + 14693 + ], + 1, + "a4108464.jpg?=20240829", + 74, + "che_240829_P5dI", + 11, + [ + "chief:9", + "hall:occupied" + ] + ], + [ + "【74기】신성제국 시민 독구", + 16, + 73, + 90, + "che_event_의술", + [ + 0, + 0, + 0, + 0, + 0 + ], + 1, + "5283daf7.png?=20240511", + 74, + "che_240829_P5dI", + 13, + [ + "hall:betrate", + "hall:betwin" + ] + ], + [ + "【74기】바나낫", + 92, + 71, + 15, + "che_event_의술", + [ + 33525, + 7388, + 0, + 16350, + 237202 + ], + 1, + "558910bd.gif?=20240827", + 74, + "che_240829_P5dI", + 14, + [ + "hall:betrate", + "hall:dex5", + "hall:killrate", + "hall:occupied", + "hall:tlrate", + "hall:winrate" + ] + ], + [ + "【74기】라콘타", + 76, + 15, + 88, + "che_event_의술", + [ + 6974, + 23172, + 17432, + 304228, + 31397 + ], + 1, + "578d3ce5.png?=20240428", + 74, + "che_240829_P5dI", + 17, + [ + "hall:betrate" + ] + ], + [ + "【74기】독구", + 77, + 15, + 89, + "che_event_집중", + [ + 21571, + 22902, + 26315, + 778822, + 39641 + ], + 1, + "393f17a6.png?=20240815", + 74, + "che_240829_P5dI", + 21, + [ + "hall:betgold", + "hall:betrate", + "hall:betwin", + "hall:betwingold", + "hall:dex4", + "hall:dex5", + "hall:experience", + "hall:killcrew", + "hall:killcrew_person", + "hall:killnum", + "hall:killrate", + "hall:killrate_person", + "hall:occupied", + "hall:warnum", + "hall:winrate" + ] + ], + [ + "【74기】조승상", + 86, + 77, + 15, + "che_event_무쌍", + [ + 24674, + 297405, + 7506, + 37053, + 12004 + ], + 1, + "6f27503f.png?=20240322", + 74, + "che_240829_P5dI", + 34, + [ + "hall:dex2" + ] + ], + [ + "【74기】컴퓨터", + 76, + 15, + 89, + "che_event_반계", + [ + 20564, + 544, + 6222, + 228307, + 25950 + ], + 0, + "default.jpg", + 74, + "che_240829_P5dI", + 37, + [ + "hall:occupied" + ] + ], + [ + "【74기】나나시무메이", + 76, + 15, + 89, + "che_event_필살", + [ + 17549, + 7669, + 16092, + 551295, + 33511 + ], + 1, + "2372267c.png?=20240829", + 74, + "che_240829_P5dI", + 40, + [ + "hall:dex4", + "hall:killrate_person", + "hall:ttrate" + ] + ], + [ + "【74기】Navy마초", + 89, + 74, + 16, + "che_event_격노", + [ + 418552, + 8375, + 67818, + 41319, + 33311 + ], + 1, + "37644ed3.png?=20230831", + 74, + "che_240829_P5dI", + 41, + [ + "hall:dex1", + "hall:killcrew", + "hall:tlrate", + "hall:ttrate", + "hall:warnum" + ] + ], + [ + "【74기】독파이", + 78, + 16, + 86, + "che_event_필살", + [ + 46180, + 19105, + 8739, + 421681, + 29003 + ], + 0, + "default.jpg", + 74, + "che_240829_P5dI", + 43, + [ + "hall:dex4" + ] + ], + [ + "【74기】Samo", + 74, + 15, + 91, + "che_event_신중", + [ + 26101, + 32353, + 4129, + 327328, + 25137 + ], + 0, + "default.jpg", + 74, + "che_240829_P5dI", + 44, + [ + "chief:11", + "hall:dedication", + "hall:killnum", + "hall:killrate", + "hall:killrate_person", + "hall:winrate" + ] + ], + [ + "【74기】임사영", + 89, + 75, + 16, + "che_event_무쌍", + [ + 741858, + 37773, + 55156, + 105582, + 21194 + ], + 1, + "0b5a2642.jpg?=20240305", + 74, + "che_240829_P5dI", + 49, + [ + "hall:dex1", + "hall:experience", + "hall:killcrew", + "hall:killcrew_person", + "hall:killnum", + "hall:killrate", + "hall:killrate_person", + "hall:occupied", + "hall:tlrate", + "hall:warnum" + ] + ], + [ + "【74기】멸화홍염겁화작열", + 77, + 88, + 15, + "che_event_저격", + [ + 464583, + 6529, + 36320, + 148042, + 47754 + ], + 0, + "default.jpg", + 74, + "che_240829_P5dI", + 50, + [ + "hall:dex1", + "hall:dex5", + "hall:occupied", + "hall:tsrate" + ] + ], + [ + "【74기】간지밍이", + 17, + 74, + 89, + "che_event_신산", + [ + 0, + 0, + 0, + 0, + 0 + ], + 1, + "32bc261d.png?=20240824", + 74, + "che_240829_P5dI", + 51, + [ + "hall:betrate", + "hall:tirate" + ] + ], + [ + "【74기】쉬자", + 15, + 73, + 90, + "che_event_신산", + [ + 0, + 0, + 0, + 0, + 0 + ], + 0, + "default.jpg", + 74, + "che_240829_P5dI", + 53, + [ + "hall:tirate" + ] + ], + [ + "【74기】카이스트", + 78, + 15, + 87, + "che_event_필살", + [ + 24486, + 9114, + 23597, + 442103, + 33045 + ], + 1, + "e7e27cd6.jpg?=20221125", + 74, + "che_240829_P5dI", + 54, + [ + "hall:dex4", + "hall:ttrate" + ] + ], + [ + "【74기】くま", + 78, + 15, + 88, + "che_event_신중", + [ + 10315, + 3628, + 9712, + 257237, + 21324 + ], + 1, + "770f53.jpg?=20190718", + 74, + "che_240829_P5dI", + 56, + [ + "hall:ttrate" + ] + ], + [ + "【74기】덕구", + 75, + 90, + 15, + "che_event_위압", + [ + 295201, + 4681, + 5788, + 28243, + 25436 + ], + 1, + "d317ec54.jpg?=20240829", + 74, + "che_240829_P5dI", + 62, + [ + "hall:dedication", + "hall:dex1", + "hall:experience", + "hall:killrate", + "hall:killrate_person", + "hall:tsrate" + ] + ], + [ + "【74기】사스케", + 75, + 15, + 91, + "che_event_징병", + [ + 22453, + 24018, + 18357, + 678717, + 33451 + ], + 1, + "13d6a4ed.jpg?=20240829", + 74, + "che_240829_P5dI", + 63, + [ + "hall:betgold", + "hall:betrate", + "hall:betwin", + "hall:betwingold", + "hall:dex4", + "hall:experience", + "hall:killcrew", + "hall:killcrew_person", + "hall:killnum", + "hall:occupied", + "hall:warnum", + "hall:winrate" + ] + ], + [ + "【74기】독불장군", + 75, + 88, + 15, + "che_event_위압", + [ + 396474, + 20761, + 13383, + 39614, + 20432 + ], + 0, + "default.jpg", + 74, + "che_240829_P5dI", + 73, + [ + "chief:8", + "hall:dex1", + "hall:killrate", + "hall:killrate_person", + "hall:tsrate" + ] + ], + [ + "【74기】누구인가", + 79, + 87, + 15, + "che_event_돌격", + [ + 522357, + 18511, + 46294, + 160756, + 29783 + ], + 0, + "default.jpg", + 74, + "che_240829_P5dI", + 75, + [ + "hall:dex1", + "hall:killnum", + "hall:tsrate", + "hall:winrate" + ] + ], + [ + "【74기】클로제린츠", + 76, + 88, + 15, + "che_event_징병", + [ + 25817, + 40036, + 334529, + 57616, + 17028 + ], + 0, + "default.jpg", + 74, + "che_240829_P5dI", + 77, + [ + "chief:10", + "hall:betgold", + "hall:betrate", + "hall:betwingold", + "hall:dex2", + "hall:dex3", + "hall:tsrate" + ] + ], + [ + "【74기】아브렐슈드", + 77, + 86, + 15, + "che_event_징병", + [ + 65511, + 472356, + 14673, + 113222, + 17469 + ], + 0, + "default.jpg", + 74, + "che_240829_P5dI", + 78, + [ + "hall:dex2", + "hall:tsrate" + ] + ], + [ + "【74기】이드", + 73, + 15, + 92, + "che_event_신중", + [ + 13677, + 29346, + 18267, + 256907, + 22347 + ], + 1, + "fc3385d6.gif?=20240301", + 74, + "che_240829_P5dI", + 79, + [ + "hall:dedication", + "hall:tirate" + ] + ], + [ + "【74기】Hide_D", + 75, + 15, + 89, + "che_event_신중", + [ + 22759, + 15928, + 10251, + 245856, + 12963 + ], + 1, + "4569d848.png?=20230612", + 74, + "che_240829_P5dI", + 81, + [ + "hall:tirate" + ] + ], + [ + "【74기】강유", + 79, + 15, + 88, + "che_event_집중", + [ + 17885, + 2997, + 5868, + 445902, + 27330 + ], + 1, + "79e150d0.jpg?=20230921", + 74, + "che_240829_P5dI", + 83, + [ + "hall:dex4", + "hall:killcrew", + "hall:killcrew_person", + "hall:ttrate" + ] + ], + [ + "【74기】사랑에 빠진 독구", + 78, + 15, + 86, + "che_event_집중", + [ + 38936, + 34294, + 10792, + 524692, + 46151 + ], + 1, + "de51857d.png?=20240829", + 74, + "che_240829_P5dI", + 84, + [ + "hall:betgold", + "hall:betwin", + "hall:betwingold", + "hall:dex4", + "hall:dex5", + "hall:experience" + ] + ], + [ + "【74기】윤하", + 75, + 91, + 15, + "che_event_척사", + [ + 29333, + 29468, + 459770, + 53442, + 37770 + ], + 1, + "0a8aa57d.jpg?=20240829", + 74, + "che_240829_P5dI", + 85, + [ + "hall:betgold", + "hall:betwin", + "hall:dex3", + "hall:dex5", + "hall:experience", + "hall:killcrew", + "hall:killnum", + "hall:occupied", + "hall:tsrate", + "hall:warnum", + "hall:winrate" + ] + ], + [ + "【74기】황진", + 75, + 87, + 16, + "che_event_징병", + [ + 33016, + 42960, + 360653, + 44676, + 32421 + ], + 0, + "default.jpg", + 74, + "che_240829_P5dI", + 86, + [ + "hall:dex2", + "hall:dex3", + "hall:tsrate", + "hall:warnum" + ] + ], + [ + "【74기】슈퍼독구문", + 74, + 15, + 90, + "che_event_신중", + [ + 25361, + 26000, + 12854, + 425125, + 24836 + ], + 1, + "8c62bb26.jpg?=20240829", + 74, + "che_240829_P5dI", + 87, + [ + "hall:dex4" + ] + ], + [ + "【74기】참세", + 15, + 73, + 89, + "che_event_의술", + [ + 0, + 0, + 0, + 0, + 0 + ], + 1, + "a069dd6a.jpg?=20240907", + 74, + "che_240829_P5dI", + 88, + [ + "hall:tirate" + ] + ], + [ + "【74기】와일드플라워", + 76, + 15, + 90, + "che_event_척사", + [ + 14407, + 3884, + 8354, + 378375, + 16080 + ], + 0, + "default.jpg", + 74, + "che_240829_P5dI", + 89, + [ + "hall:tirate" + ] + ], + [ + "【74기】독일", + 90, + 73, + 15, + "che_event_격노", + [ + 300351, + 97838, + 58569, + 92497, + 21836 + ], + 1, + "a93f3060.png?=20240829", + 74, + "che_240829_P5dI", + 90, + [ + "hall:betrate", + "hall:dex1", + "hall:dex2", + "hall:tlrate" + ] + ], + [ + "【74기】라우리엘", + 75, + 15, + 90, + "che_event_필살", + [ + 6502, + 56670, + 29743, + 411202, + 20848 + ], + 1, + "d2cee380.png?=20240911", + 74, + "che_240829_P5dI", + 92, + [ + "hall:dex2", + "hall:tirate", + "hall:ttrate" + ] + ], + [ + "【74기】독퇴근", + 74, + 15, + 91, + "che_event_집중", + [ + 18584, + 18719, + 12763, + 535332, + 25169 + ], + 1, + "bf1670c3.png?=20240829", + 74, + "che_240829_P5dI", + 94, + [ + "hall:betgold", + "hall:betrate", + "hall:betwin", + "hall:betwingold", + "hall:dex4", + "hall:killcrew", + "hall:killcrew_person", + "hall:killnum", + "hall:killrate", + "hall:killrate_person", + "hall:tirate", + "hall:winrate" + ] + ], + [ + "【74기】독갸루", + 90, + 71, + 16, + "che_event_필살", + [ + 22904, + 30564, + 541709, + 132190, + 34397 + ], + 1, + "a1e75917.jpg?=20240831", + 74, + "che_240829_P5dI", + 95, + [ + "hall:dex3", + "hall:killcrew", + "hall:killcrew_person", + "hall:tlrate" + ] + ], + [ + "【74기】가는세월", + 78, + 85, + 15, + "che_event_돌격", + [ + 23830, + 35227, + 285508, + 80423, + 27005 + ], + 0, + "default.jpg", + 74, + "che_240829_P5dI", + 96, + [ + "hall:betwin", + "hall:dex3" + ] + ], + [ + "【74기】독페이크", + 88, + 74, + 17, + "che_event_위압", + [ + 75989, + 31381, + 454180, + 108534, + 21354 + ], + 1, + "864c7e74.jpg?=20240906", + 74, + "che_240829_P5dI", + 97, + [ + "hall:betgold", + "hall:betwin", + "hall:betwingold", + "hall:dex3", + "hall:killcrew_person", + "hall:warnum" + ] + ], + [ + "【74기】민트독끼", + 16, + 77, + 85, + "che_event_신중", + [ + 0, + 0, + 0, + 0, + 0 + ], + 1, + "6a39feaa.jpg?=20240830", + 74, + "che_240829_P5dI", + 98, + [ + "hall:ttrate" + ] + ], + [ + "【74기】울란바토르", + 75, + 15, + 89, + "che_event_신중", + [ + 5569, + 19930, + 31759, + 259649, + 16934 + ], + 0, + "default.jpg", + 74, + "che_240829_P5dI", + 99, + [ + "hall:dedication" + ] + ], + [ + "【74기】독시노 아이", + 76, + 92, + 15, + "che_event_필살", + [ + 36816, + 49119, + 1009937, + 51674, + 29509 + ], + 1, + "52c4abad.jpg?=20240829", + 74, + "che_240829_P5dI", + 100, + [ + "hall:dex2", + "hall:dex3", + "hall:killcrew", + "hall:killcrew_person", + "hall:killnum", + "hall:killrate", + "hall:killrate_person", + "hall:tsrate", + "hall:ttrate", + "hall:warnum", + "hall:winrate" + ] + ], + [ + "【74기】서희", + 78, + 15, + 87, + "che_event_환술", + [ + 25237, + 20168, + 12456, + 520675, + 16008 + ], + 0, + "default.jpg", + 74, + "che_240829_P5dI", + 102, + [ + "hall:dex4", + "hall:killcrew", + "hall:killcrew_person", + "hall:killnum", + "hall:warnum" + ] + ], + [ + "【74기】진브", + 78, + 15, + 85, + "che_event_집중", + [ + 19609, + 17564, + 24215, + 284059, + 40144 + ], + 0, + "default.jpg", + 74, + "che_240829_P5dI", + 108, + [ + "hall:dex5" + ] + ], + [ + "【74기】상승조", + 90, + 75, + 15, + "che_event_필살", + [ + 22025, + 15426, + 368801, + 44969, + 19146 + ], + 1, + "8f235d42.png?=20240829", + 74, + "che_240829_P5dI", + 111, + [ + "hall:dex3", + "hall:tlrate" + ] + ], + [ + "【74기】뽀구미", + 93, + 71, + 15, + "che_event_징병", + [ + 49672, + 3249, + 18916, + 21139, + 423817 + ], + 1, + "9e092d19.jpg?=20240830", + 74, + "che_240829_P5dI", + 113, + [ + "chief:6", + "hall:dedication", + "hall:dex5", + "hall:experience", + "hall:killrate", + "hall:occupied", + "hall:tlrate", + "hall:winrate" + ] + ], + [ + "【74기】최진리", + 92, + 72, + 15, + "che_event_견고", + [ + 332511, + 16219, + 17370, + 91966, + 9040 + ], + 1, + "4b0cbce9.jpg?=20240825", + 74, + "che_240829_P5dI", + 117, + [ + "hall:dex1", + "hall:tlrate" + ] + ], + [ + "【74기】panpenpan", + 75, + 15, + 89, + "che_event_신산", + [ + 19214, + 2501, + 6191, + 243172, + 15839 + ], + 0, + "default.jpg", + 74, + "che_240829_P5dI", + 118, + [ + "hall:tirate", + "hall:ttrate" + ] + ], + [ + "【74기】유카", + 15, + 72, + 92, + "che_event_저격", + [ + 0, + 0, + 0, + 0, + 0 + ], + 1, + "0e023deb.jpg?=20240425", + 74, + "che_240829_P5dI", + 119, + [ + "hall:dedication" + ] + ], + [ + "【74기】지각", + 76, + 15, + 87, + "che_event_집중", + [ + 18165, + 13542, + 12842, + 285065, + 21538 + ], + 0, + "default.jpg", + 74, + "che_240829_P5dI", + 120, + [ + "chief:5", + "hall:dedication" + ] + ], + [ + "【74기】영웅전설", + 88, + 76, + 16, + "che_event_위압", + [ + 62984, + 389914, + 14145, + 42961, + 21731 + ], + 1, + "f6fbcfb2.jpg?=20240830", + 74, + "che_240829_P5dI", + 121, + [ + "hall:dex2", + "hall:experience", + "hall:tlrate" + ] + ], + [ + "【74기】Bianchi", + 75, + 89, + 15, + "che_event_징병", + [ + 36401, + 48152, + 327932, + 54871, + 37975 + ], + 0, + "default.jpg", + 74, + "che_240829_P5dI", + 122, + [ + "hall:dex2", + "hall:dex3", + "hall:dex5", + "hall:tsrate" + ] + ], + [ + "【74기】초속70ms", + 86, + 76, + 15, + "che_event_위압", + [ + 121470, + 108143, + 27228, + 34191, + 2239 + ], + 0, + "default.jpg", + 74, + "che_240829_P5dI", + 123, + [ + "hall:dex2" + ] + ], + [ + "【74기】니쉬", + 77, + 15, + 88, + "che_event_징병", + [ + 8670, + 1816, + 20324, + 320231, + 6990 + ], + 1, + "92a4ae0c.png?=20240815", + 74, + "che_240829_P5dI", + 238, + [ + "hall:betrate", + "hall:betwingold" + ] + ], + [ + "【74기】피스오브문", + 73, + 15, + 91, + "che_event_환술", + [ + 18100, + 10898, + 9569, + 220629, + 30496 + ], + 0, + "default.jpg", + 74, + "che_240829_P5dI", + 242, + [ + "hall:dedication", + "hall:tirate", + "hall:ttrate" + ] + ], + [ + "【74기】웨이드 리플", + 79, + 87, + 15, + "che_event_필살", + [ + 404280, + 27234, + 27134, + 25020, + 26342 + ], + 1, + "ae9bc2c0.png?=20240820", + 74, + "che_240829_P5dI", + 249, + [ + "hall:dex1", + "hall:killcrew_person", + "hall:warnum" + ] + ], + [ + "【74기】다크템플러", + 78, + 83, + 16, + "che_event_징병", + [ + 321537, + 17324, + 53240, + 72328, + 26232 + ], + 1, + "774e99fe.png?=20240910", + 74, + "che_240829_P5dI", + 391, + [ + "hall:betgold", + "hall:betwingold", + "hall:dex1" + ] + ], + [ + "【75기】울면 한대", + 75, + 15, + 90, + "che_event_필살", + [ + 1819, + 8415, + 25497, + 299596, + 27548 + ], + 1, + "4c295080.jpg?=20241006", + 75, + "che_240919_OUjB", + 5, + [ + "chief:7", + "hall:dedication", + "hall:experience" + ] + ], + [ + "【75기】미치르 메르헨", + 72, + 15, + 94, + "che_event_필살", + [ + 1400, + 4269, + 1065, + 57796, + 0 + ], + 1, + "2364dd10.jpg?=20240919", + 75, + "che_240919_OUjB", + 8, + [ + "hall:experience", + "hall:killrate_person", + "hall:tirate", + "hall:winrate" + ] + ], + [ + "【75기】카라", + 15, + 91, + 76, + "che_event_무쌍", + [ + 0, + 0, + 0, + 0, + 0 + ], + 1, + "367b2957.jpg?=20240917", + 75, + "che_240919_OUjB", + 16, + [ + "hall:tsrate" + ] + ], + [ + "【75기】삼호", + 87, + 81, + 15, + "che_event_필살", + [ + 248003, + 261136, + 47782, + 46434, + 35621 + ], + 0, + "default.jpg", + 75, + "che_240919_OUjB", + 25, + [ + "hall:dex2" + ] + ], + [ + "【75기】유시 야스켈라이넨", + 89, + 78, + 15, + "che_event_필살", + [ + 68685, + 461452, + 17560, + 45941, + 32405 + ], + 1, + "9e740a1f.jpg?=20240930", + 75, + "che_240919_OUjB", + 32, + [ + "chief:10", + "hall:betrate", + "hall:betwingold", + "hall:dedication", + "hall:dex2", + "hall:experience", + "hall:killrate", + "hall:ttrate" + ] + ], + [ + "【75기】내로남불", + 80, + 87, + 15, + "che_event_위압", + [ + 47354, + 286360, + 88073, + 29253, + 821 + ], + 0, + "default.jpg", + 75, + "che_240919_OUjB", + 34, + [ + "hall:betwin", + "hall:dex2" + ] + ], + [ + "【75기】Navy마초", + 91, + 74, + 15, + "che_event_필살", + [ + 105545, + 50689, + 571416, + 42379, + 14554 + ], + 1, + "37644ed3.png?=20230831", + 75, + "che_240919_OUjB", + 35, + [ + "hall:dex3", + "hall:killnum", + "hall:killrate", + "hall:killrate_person", + "hall:tlrate", + "hall:winrate" + ] + ], + [ + "【75기】스웩", + 15, + 72, + 93, + "che_event_의술", + [ + 0, + 0, + 0, + 0, + 0 + ], + 0, + "default.jpg", + 75, + "che_240919_OUjB", + 36, + [ + "hall:tirate" + ] + ], + [ + "【75기】Samo", + 90, + 76, + 15, + "che_event_척사", + [ + 128003, + 83308, + 351211, + 142342, + 18003 + ], + 0, + "default.jpg", + 75, + "che_240919_OUjB", + 38, + [ + "hall:dex3", + "hall:tlrate" + ] + ], + [ + "【75기】외심장", + 76, + 15, + 90, + "che_event_반계", + [ + 45116, + 75179, + 14018, + 493500, + 21357 + ], + 1, + "36110cd.jpg?=20180826", + 75, + "che_240919_OUjB", + 39, + [ + "hall:dex4", + "hall:occupied", + "hall:tirate" + ] + ], + [ + "【75기】신포", + 66, + 87, + 25, + "che_event_필살", + [ + 11294, + 180341, + 9944, + 37729, + 3998 + ], + 0, + "default.jpg", + 75, + "che_240919_OUjB", + 40, + [ + "hall:dex2", + "hall:tsrate" + ] + ], + [ + "【75기】임사영", + 79, + 88, + 15, + "che_event_무쌍", + [ + 100779, + 25554, + 661207, + 50956, + 28394 + ], + 1, + "0b5a2642.jpg?=20240305", + 75, + "che_240919_OUjB", + 42, + [ + "hall:dex3", + "hall:killcrew", + "hall:killcrew_person", + "hall:killnum", + "hall:killrate", + "hall:occupied", + "hall:warnum" + ] + ], + [ + "【75기】대교", + 94, + 75, + 15, + "che_event_징병", + [ + 1170546, + 22613, + 88477, + 102034, + 62277 + ], + 1, + "2ba23fb6.jpg?=20240927", + 75, + "che_240919_OUjB", + 46, + [ + "chief:11", + "hall:dedication", + "hall:dex1", + "hall:dex5", + "hall:experience", + "hall:firenum", + "hall:killcrew", + "hall:killcrew_person", + "hall:killnum", + "hall:killrate", + "hall:killrate_person", + "hall:occupied", + "hall:tlrate", + "hall:warnum", + "hall:winrate" + ] + ], + [ + "【75기】ㅇㅇ", + 76, + 15, + 90, + "che_event_집중", + [ + 46330, + 21747, + 37384, + 573778, + 53655 + ], + 1, + "a6fcaa40.jpg?=20240929", + 75, + "che_240919_OUjB", + 49, + [ + "chief:9", + "hall:dedication", + "hall:dex4", + "hall:dex5", + "hall:experience", + "hall:killrate", + "hall:killrate_person", + "hall:occupied", + "hall:ttrate", + "hall:winrate" + ] + ], + [ + "【75기】Hide_D", + 81, + 16, + 86, + "che_event_집중", + [ + 46297, + 38452, + 37777, + 570244, + 32520 + ], + 1, + "4569d848.png?=20230612", + 75, + "che_240919_OUjB", + 52, + [ + "hall:dex4" + ] + ], + [ + "【75기】카류", + 92, + 76, + 15, + "che_event_징병", + [ + 690097, + 21666, + 39669, + 56485, + 39137 + ], + 1, + "da250ebd.jpg?=20240919", + 75, + "che_240919_OUjB", + 55, + [ + "hall:betgold", + "hall:betwin", + "hall:betwingold", + "hall:dex1", + "hall:dex5", + "hall:killcrew", + "hall:killcrew_person", + "hall:warnum" + ] + ], + [ + "【75기】유산을 챙기는 자", + 81, + 88, + 15, + "che_event_필살", + [ + 80575, + 53312, + 670231, + 63843, + 31540 + ], + 1, + "3fbd66f8.jpg?=20240919", + 75, + "che_240919_OUjB", + 56, + [ + "hall:betgold", + "hall:betwin", + "hall:dex3", + "hall:killcrew", + "hall:killcrew_person", + "hall:killnum", + "hall:killrate", + "hall:killrate_person", + "hall:tsrate", + "hall:warnum", + "hall:winrate" + ] + ], + [ + "【75기】라면왕", + 93, + 76, + 15, + "che_event_신산", + [ + 26697, + 14875, + 463104, + 26793, + 19669 + ], + 1, + "3b7487b6.jpg?=20241002", + 75, + "che_240919_OUjB", + 58, + [ + "chief:6", + "hall:dex3", + "hall:experience", + "hall:firenum", + "hall:tlrate", + "hall:ttrate", + "hall:winrate" + ] + ], + [ + "【75기】이드", + 75, + 15, + 91, + "che_event_신산", + [ + 11204, + 25264, + 51432, + 414121, + 2629 + ], + 1, + "fc3385d6.gif?=20240301", + 75, + "che_240919_OUjB", + 60, + [ + "hall:betrate" + ] + ], + [ + "【75기】엔틱", + 77, + 15, + 91, + "che_event_환술", + [ + 37752, + 17168, + 12067, + 342415, + 10699 + ], + 1, + "51936f08.jpg?=20240620", + 75, + "che_240919_OUjB", + 62, + [ + "hall:dedication", + "hall:tirate" + ] + ], + [ + "【75기】── ──", + 78, + 90, + 15, + "che_event_징병", + [ + 526831, + 306647, + 157216, + 61192, + 60811 + ], + 1, + "0bdd7eb2.jpg?=20240919", + 75, + "che_240919_OUjB", + 64, + [ + "hall:betgold", + "hall:betwin", + "hall:betwingold", + "hall:dex1", + "hall:dex2", + "hall:dex5", + "hall:experience", + "hall:killcrew", + "hall:killcrew_person", + "hall:killnum", + "hall:occupied", + "hall:warnum" + ] + ], + [ + "【75기】AndreessenHorowitz", + 93, + 74, + 15, + "che_event_척사", + [ + 383859, + 75093, + 58508, + 104950, + 25013 + ], + 1, + "79e03eaa.jpg?=20241002", + 75, + "che_240919_OUjB", + 66, + [ + "hall:betgold", + "hall:dex1", + "hall:tlrate", + "hall:ttrate" + ] + ], + [ + "【75기】라콘타", + 15, + 89, + 74, + "che_event_견고", + [ + 0, + 0, + 0, + 0, + 0 + ], + 1, + "578d3ce5.png?=20240428", + 75, + "che_240919_OUjB", + 67, + [ + "hall:firenum" + ] + ], + [ + "【75기】개미호창", + 77, + 15, + 89, + "che_event_집중", + [ + 17919, + 29305, + 28540, + 517141, + 12866 + ], + 1, + "4325edb9.jpg?=20240919", + 75, + "che_240919_OUjB", + 68, + [ + "hall:dex4", + "hall:winrate" + ] + ], + [ + "【75기】(디폼)쿠루미에리카", + 79, + 88, + 15, + "che_event_견고", + [ + 495671, + 9016, + 20965, + 51848, + 17631 + ], + 1, + "2910ed72.jpg?=20241006", + 75, + "che_240919_OUjB", + 69, + [ + "hall:betgold", + "hall:betrate", + "hall:betwingold", + "hall:dex1" + ] + ], + [ + "【75기】복숭아좋아", + 76, + 15, + 89, + "che_event_의술", + [ + 28789, + 32088, + 15351, + 277609, + 22559 + ], + 0, + "default.jpg", + 75, + "che_240919_OUjB", + 71, + [ + "hall:tirate", + "hall:ttrate" + ] + ], + [ + "【75기】간지밍이", + 16, + 72, + 94, + "che_event_척사", + [ + 0, + 0, + 0, + 0, + 0 + ], + 1, + "32bc261d.png?=20240824", + 75, + "che_240919_OUjB", + 72, + [ + "hall:betgold", + "hall:betrate", + "hall:betwin", + "hall:betwingold", + "hall:firenum", + "hall:tirate" + ] + ], + [ + "【75기】강유", + 78, + 15, + 88, + "che_event_필살", + [ + 48759, + 59743, + 17846, + 531726, + 29665 + ], + 1, + "79e150d0.jpg?=20230921", + 75, + "che_240919_OUjB", + 74, + [ + "hall:dex4", + "hall:killrate_person" + ] + ], + [ + "【75기】청설모", + 15, + 76, + 88, + "che_event_신산", + [ + 0, + 0, + 0, + 0, + 0 + ], + 0, + "default.jpg", + 75, + "che_240919_OUjB", + 75, + [ + "hall:dedication", + "hall:firenum" + ] + ], + [ + "【75기】블루아카이브", + 92, + 72, + 15, + "che_event_징병", + [ + 51825, + 97588, + 387422, + 60546, + 20408 + ], + 0, + "default.jpg", + 75, + "che_240919_OUjB", + 76, + [ + "hall:dex3", + "hall:tlrate" + ] + ], + [ + "【75기】슈퍼블루문", + 78, + 15, + 87, + "che_event_집중", + [ + 35453, + 18514, + 29642, + 579739, + 30224 + ], + 1, + "177d4c0c.png?=20240918", + 75, + "che_240919_OUjB", + 78, + [ + "hall:betrate", + "hall:betwingold", + "hall:dex4", + "hall:ttrate" + ] + ], + [ + "【75기】바나낫", + 80, + 88, + 15, + "che_event_척사", + [ + 664482, + 78092, + 52753, + 38879, + 37830 + ], + 1, + "558910bd.gif?=20240827", + 75, + "che_240919_OUjB", + 79, + [ + "hall:betgold", + "hall:dex1", + "hall:dex5", + "hall:killcrew", + "hall:killrate", + "hall:killrate_person", + "hall:occupied", + "hall:ttrate", + "hall:warnum" + ] + ], + [ + "【75기】독구", + 15, + 95, + 70, + "che_event_무쌍", + [ + 0, + 1680, + 0, + 171, + 0 + ], + 1, + "393f17a6.png?=20240815", + 75, + "che_240919_OUjB", + 80, + [ + "hall:betgold", + "hall:betwin", + "hall:betwingold", + "hall:firenum", + "hall:tsrate" + ] + ], + [ + "【75기】집합", + 79, + 87, + 15, + "che_event_필살", + [ + 404058, + 21454, + 53853, + 43906, + 25606 + ], + 1, + "8d282df8.png?=20240919", + 75, + "che_240919_OUjB", + 81, + [ + "hall:dex1", + "hall:occupied" + ] + ], + [ + "【75기】ㅇㅅㅇ", + 80, + 15, + 88, + "che_event_징병", + [ + 21845, + 57427, + 31208, + 492260, + 21336 + ], + 0, + "default.jpg", + 75, + "che_240919_OUjB", + 82, + [ + "hall:dex4" + ] + ], + [ + "【75기】하냥", + 78, + 87, + 15, + "che_event_필살", + [ + 74282, + 450033, + 72447, + 91356, + 49458 + ], + 1, + "8be1d2b1.jpg?=20240712", + 75, + "che_240919_OUjB", + 83, + [ + "hall:betrate", + "hall:betwingold", + "hall:dex2", + "hall:dex5" + ] + ], + [ + "【75기】교황", + 88, + 76, + 16, + "che_event_척사", + [ + 124875, + 69022, + 459862, + 46922, + 37548 + ], + 1, + "9003e225.png?=20240922", + 75, + "che_240919_OUjB", + 84, + [ + "hall:dex3", + "hall:occupied", + "hall:tlrate" + ] + ], + [ + "【75기】마요이", + 15, + 71, + 93, + "che_event_척사", + [ + 0, + 0, + 0, + 0, + 0 + ], + 1, + "2b49c945.png?=20230921", + 75, + "che_240919_OUjB", + 85, + [ + "hall:tirate" + ] + ], + [ + "【75기】죽을게", + 77, + 88, + 15, + "che_event_견고", + [ + 361796, + 7317, + 46401, + 43591, + 12070 + ], + 1, + "ed5a5ea5.jpg?=20240920", + 75, + "che_240919_OUjB", + 86, + [ + "hall:dex1", + "hall:tsrate" + ] + ], + [ + "【75기】에델가르트", + 74, + 16, + 90, + "che_event_집중", + [ + 12790, + 32103, + 40574, + 271644, + 28949 + ], + 1, + "30c13f9a.jpg?=20241006", + 75, + "che_240919_OUjB", + 87, + [ + "chief:5", + "hall:tirate" + ] + ], + [ + "【75기】평민킬러", + 79, + 88, + 15, + "che_event_필살", + [ + 36444, + 36721, + 788855, + 86039, + 57425 + ], + 1, + "316603e1.jpg?=20240919", + 75, + "che_240919_OUjB", + 88, + [ + "hall:betgold", + "hall:betrate", + "hall:betwin", + "hall:betwingold", + "hall:dex3", + "hall:dex5", + "hall:killcrew", + "hall:killcrew_person", + "hall:killnum", + "hall:ttrate", + "hall:warnum" + ] + ], + [ + "【75기】이솔렛렛", + 77, + 15, + 89, + "che_event_저격", + [ + 30347, + 25888, + 41196, + 600353, + 29981 + ], + 1, + "2da1ca7d.png?=20240919", + 75, + "che_240919_OUjB", + 89, + [ + "hall:dex4", + "hall:killcrew_person", + "hall:killnum", + "hall:warnum", + "hall:winrate" + ] + ], + [ + "【75기】사스케", + 90, + 77, + 15, + "che_event_징병", + [ + 52519, + 876238, + 109748, + 40507, + 53922 + ], + 1, + "bbd4e6ad.jpg?=20240921", + 75, + "che_240919_OUjB", + 90, + [ + "chief:12", + "hall:betgold", + "hall:betrate", + "hall:betwin", + "hall:betwingold", + "hall:dedication", + "hall:dex2", + "hall:dex5", + "hall:experience", + "hall:killcrew", + "hall:killcrew_person", + "hall:killnum", + "hall:killrate", + "hall:killrate_person", + "hall:occupied", + "hall:warnum", + "hall:winrate" + ] + ], + [ + "【75기】불패", + 88, + 77, + 15, + "che_event_필살", + [ + 419889, + 11132, + 70450, + 54333, + 15333 + ], + 1, + "ae4a32ac.jpg?=20240919", + 75, + "che_240919_OUjB", + 91, + [ + "hall:dex1" + ] + ], + [ + "【75기】곽자의", + 89, + 77, + 16, + "che_event_척사", + [ + 63239, + 324045, + 186399, + 52625, + 24626 + ], + 0, + "default.jpg", + 75, + "che_240919_OUjB", + 92, + [ + "hall:dex2", + "hall:tlrate" + ] + ], + [ + "【75기】랜덤조아독구", + 16, + 72, + 93, + "che_event_신산", + [ + 0, + 0, + 0, + 0, + 0 + ], + 1, + "5283daf7.png?=20240511", + 75, + "che_240919_OUjB", + 94, + [ + "hall:betrate", + "hall:betwin", + "hall:dedication", + "hall:experience", + "hall:tirate" + ] + ], + [ + "【75기】키쿄우", + 76, + 92, + 15, + "che_event_척사", + [ + 54961, + 726125, + 14342, + 123095, + 30796 + ], + 1, + "3d324bbb.png?=20240919", + 75, + "che_240919_OUjB", + 95, + [ + "hall:dex2", + "hall:killcrew", + "hall:killcrew_person", + "hall:killnum", + "hall:tsrate" + ] + ], + [ + "【75기】카류3", + 90, + 73, + 15, + "che_event_필살", + [ + 1196508, + 24483, + 27884, + 21964, + 26754 + ], + 1, + "20e760b2.jpg?=20240921", + 75, + "che_240919_OUjB", + 96, + [ + "chief:8", + "hall:betwin", + "hall:dedication", + "hall:dex1", + "hall:experience", + "hall:killcrew", + "hall:killcrew_person", + "hall:killnum", + "hall:killrate", + "hall:killrate_person", + "hall:occupied", + "hall:warnum", + "hall:winrate" + ] + ], + [ + "【75기】최진리", + 74, + 91, + 15, + "che_event_위압", + [ + 10160, + 60718, + 300328, + 34613, + 11120 + ], + 1, + "4b0cbce9.jpg?=20240825", + 75, + "che_240919_OUjB", + 101, + [ + "hall:tsrate" + ] + ], + [ + "【75기】촉구", + 75, + 89, + 15, + "che_event_무쌍", + [ + 304812, + 4666, + 33732, + 45128, + 18577 + ], + 0, + "default.jpg", + 75, + "che_240919_OUjB", + 102, + [ + "hall:tsrate" + ] + ], + [ + "【75기】くま", + 74, + 15, + 89, + "che_event_집중", + [ + 11204, + 6250, + 39442, + 201501, + 13139 + ], + 1, + "770f53.jpg?=20190718", + 75, + "che_240919_OUjB", + 106, + [ + "hall:tirate" + ] + ], + [ + "【75기】냐옹", + 77, + 86, + 17, + "che_event_보병", + [ + 141987, + 7211, + 6592, + 16571, + 4600 + ], + 1, + "9a6bf29a.jpg?=20231130", + 75, + "che_240919_OUjB", + 107, + [ + "hall:killrate", + "hall:killrate_person", + "hall:tsrate" + ] + ], + [ + "【75기】셀레미", + 77, + 89, + 15, + "che_event_돌격", + [ + 58946, + 102645, + 312687, + 56432, + 38210 + ], + 1, + "99a2fac2.png?=20240919", + 75, + "che_240919_OUjB", + 109, + [ + "hall:dex2", + "hall:dex5", + "hall:tsrate" + ] + ], + [ + "【75기】POCARI", + 77, + 15, + 88, + "che_event_척사", + [ + 41095, + 49555, + 13033, + 318843, + 17159 + ], + 0, + "default.jpg", + 75, + "che_240919_OUjB", + 111, + [ + "hall:firenum" + ] + ], + [ + "【75기】니쉬", + 17, + 78, + 85, + "che_event_의술", + [ + 0, + 0, + 0, + 0, + 0 + ], + 1, + "3a86b056.png?=20240921", + 75, + "che_240919_OUjB", + 307, + [ + "hall:firenum" + ] + ], + [ + "【75기】카이스트", + 80, + 15, + 88, + "che_event_집중", + [ + 17975, + 30475, + 36038, + 514387, + 29957 + ], + 1, + "e7e27cd6.jpg?=20221125", + 75, + "che_240919_OUjB", + 309, + [ + "hall:betrate", + "hall:dex4", + "hall:ttrate" + ] + ], + [ + "【75기】유머보따리", + 88, + 79, + 15, + "che_event_격노", + [ + 19742, + 31761, + 465770, + 58331, + 10178 + ], + 0, + "default.jpg", + 75, + "che_240919_OUjB", + 312, + [ + "hall:dedication", + "hall:dex3", + "hall:ttrate" + ] + ], + [ + "【75기】프미나 지헌", + 91, + 15, + 74, + "che_event_환술", + [ + 55923, + 52646, + 15505, + 466423, + 25560 + ], + 1, + "c7d471b8.jpg?=20240920", + 75, + "che_240919_OUjB", + 316, + [ + "hall:dex4", + "hall:tlrate" + ] + ], + [ + "【75기】황혼중", + 89, + 15, + 77, + "che_event_집중", + [ + 0, + 0, + 0, + 0, + 0 + ], + 1, + "e5161df9.jpg?=20231110", + 75, + "che_240919_OUjB", + 324, + [ + "hall:tlrate" + ] + ], + [ + "【75기】메디브", + 76, + 89, + 15, + "che_event_무쌍", + [ + 7149, + 28280, + 274031, + 32041, + 40862 + ], + 1, + "def2895.jpg?=20190719", + 75, + "che_240919_OUjB", + 332, + [ + "hall:dex5" + ] + ], + [ + "【75기】서서서", + 76, + 87, + 16, + "che_event_위압", + [ + 6702, + 37601, + 417293, + 43028, + 8825 + ], + 0, + "default.jpg", + 75, + "che_240919_OUjB", + 441, + [ + "hall:dex3" + ] + ], + [ + "【76기】김만득", + 78, + 90, + 15, + "che_event_돌격", + [ + 50893, + 602355, + 113303, + 63077, + 57302 + ], + 1, + "d0cacc08.png?=20241015", + 76, + "che_241010_qMDq", + 8, + [ + "hall:betrate", + "hall:betwin", + "hall:dex2", + "hall:dex5", + "hall:occupied" + ] + ], + [ + "【76기】퍄퍄", + 67, + 13, + 80, + "che_event_척사", + [ + 19223, + 14034, + 27735, + 270018, + 25420 + ], + 0, + "default.jpg", + 76, + "che_241010_qMDq", + 18, + [ + "hall:ttrate" + ] + ], + [ + "【76기】Ten va pas", + 95, + 79, + 15, + "che_event_척사", + [ + 789912, + 65291, + 25759, + 103141, + 38902 + ], + 1, + "1f9c4529.png?=20241010", + 76, + "che_241010_qMDq", + 20, + [ + "hall:betrate", + "hall:dex1", + "hall:dex2", + "hall:killcrew", + "hall:killcrew_person", + "hall:tlrate", + "hall:ttrate", + "hall:warnum" + ] + ], + [ + "【76기】독구", + 79, + 15, + 92, + "che_event_집중", + [ + 89652, + 44520, + 33140, + 693866, + 43793 + ], + 1, + "393f17a6.png?=20240815", + 76, + "che_241010_qMDq", + 22, + [ + "hall:dex4" + ] + ], + [ + "【76기】냥냥냥", + 91, + 81, + 17, + "che_event_필살", + [ + 778906, + 69231, + 138394, + 122723, + 53434 + ], + 1, + "458caeac.gif?=20240919", + 76, + "che_241010_qMDq", + 24, + [ + "chief:12", + "hall:betgold", + "hall:dedication", + "hall:dex1", + "hall:dex2", + "hall:experience", + "hall:killcrew", + "hall:killrate", + "hall:killrate_person", + "hall:tlrate" + ] + ], + [ + "【76기】임전호시노", + 76, + 97, + 15, + "che_event_필살", + [ + 55142, + 49006, + 621113, + 126039, + 48200 + ], + 0, + "default.jpg", + 76, + "che_241010_qMDq", + 30, + [ + "chief:10", + "hall:betgold", + "hall:betrate", + "hall:betwin", + "hall:betwingold", + "hall:dex3", + "hall:tsrate" + ] + ], + [ + "【76기】강유", + 75, + 15, + 96, + "che_event_집중", + [ + 17293, + 35030, + 42862, + 696441, + 55172 + ], + 1, + "79e150d0.jpg?=20230921", + 76, + "che_241010_qMDq", + 33, + [ + "chief:7", + "hall:dedication", + "hall:dex4", + "hall:dex5", + "hall:killrate", + "hall:killrate_person" + ] + ], + [ + "【76기】민트토끼", + 68, + 80, + 13, + "che_event_척사", + [ + 153275, + 54728, + 120439, + 22207, + 18764 + ], + 1, + "e0833923.jpg?=20241011", + 76, + "che_241010_qMDq", + 35, + [ + "hall:dex2" + ] + ], + [ + "【76기】핑크맨", + 78, + 15, + 95, + "che_event_집중", + [ + 84786, + 55613, + 26117, + 882829, + 89269 + ], + 1, + "b9898f99.png?=20241025", + 76, + "che_241010_qMDq", + 37, + [ + "hall:betgold", + "hall:betrate", + "hall:betwin", + "hall:betwingold", + "hall:dex4", + "hall:dex5", + "hall:killcrew", + "hall:killrate", + "hall:killrate_person", + "hall:occupied" + ] + ], + [ + "【76기】대동강맥주", + 78, + 15, + 96, + "che_event_필살", + [ + 64331, + 21966, + 34414, + 478699, + 23436 + ], + 0, + "default.jpg", + 76, + "che_241010_qMDq", + 42, + [ + "hall:tirate", + "hall:ttrate" + ] + ], + [ + "【76기】라라란", + 67, + 82, + 13, + "che_event_위압", + [ + 304695, + 25561, + 14782, + 16214, + 14610 + ], + 0, + "default.jpg", + 76, + "che_241010_qMDq", + 45, + [ + "hall:dedication", + "hall:dex1", + "hall:experience", + "hall:tsrate" + ] + ], + [ + "【76기】외심장", + 68, + 13, + 81, + "che_event_집중", + [ + 35115, + 5309, + 22680, + 361714, + 20471 + ], + 1, + "36110cd.jpg?=20180826", + 76, + "che_241010_qMDq", + 47, + [ + "hall:dex4", + "hall:occupied", + "hall:ttrate", + "hall:warnum" + ] + ], + [ + "【76기】집행관 솔라스", + 89, + 81, + 15, + "che_event_견고", + [ + 19194, + 20165, + 534978, + 33702, + 24097 + ], + 1, + "b9e8620b.png?=20241010", + 76, + "che_241010_qMDq", + 48, + [ + "hall:tlrate" + ] + ], + [ + "【76기】설윤아", + 68, + 13, + 81, + "che_event_필살", + [ + 28019, + 18204, + 31463, + 416369, + 20770 + ], + 1, + "7c1839f7.webp?=20241010", + 76, + "che_241010_qMDq", + 50, + [ + "chief:5", + "hall:betgold", + "hall:betwin", + "hall:betwingold", + "hall:dedication", + "hall:dex4", + "hall:experience", + "hall:killnum", + "hall:killrate", + "hall:killrate_person", + "hall:occupied", + "hall:winrate" + ] + ], + [ + "【76기】간지밍이", + 18, + 92, + 79, + "che_event_필살", + [ + 0, + 39128, + 7556, + 1361, + 0 + ], + 1, + "32bc261d.png?=20240824", + 76, + "che_241010_qMDq", + 52, + [ + "hall:betgold", + "hall:betrate", + "hall:betwingold", + "hall:firenum", + "hall:killrate", + "hall:killrate_person" + ] + ], + [ + "【76기】마요이", + 15, + 73, + 98, + "che_event_신중", + [ + 0, + 0, + 0, + 0, + 0 + ], + 1, + "2b49c945.png?=20230921", + 76, + "che_241010_qMDq", + 53, + [ + "hall:tirate" + ] + ], + [ + "【76기】네이", + 82, + 92, + 15, + "che_event_필살", + [ + 56871, + 604274, + 43331, + 132907, + 38332 + ], + 0, + "default.jpg", + 76, + "che_241010_qMDq", + 59, + [ + "hall:dex2" + ] + ], + [ + "【76기】감흥", + 19, + 73, + 95, + "che_event_필살", + [ + 10163, + 98069, + 10859, + 27327, + 3993 + ], + 1, + "a73ecaa1.jpg?=20230313", + 76, + "che_241010_qMDq", + 61, + [ + "hall:dedication", + "hall:dex2" + ] + ], + [ + "【76기】4a", + 79, + 15, + 94, + "che_event_징병", + [ + 90139, + 31386, + 59705, + 690313, + 62461 + ], + 0, + "default.jpg", + 76, + "che_241010_qMDq", + 64, + [ + "hall:betgold", + "hall:betwin", + "hall:betwingold", + "hall:dex5" + ] + ], + [ + "【76기】くま", + 75, + 15, + 96, + "che_event_필살", + [ + 30575, + 4850, + 28662, + 351821, + 17291 + ], + 1, + "770f53.jpg?=20190718", + 76, + "che_241010_qMDq", + 65, + [ + "hall:tirate" + ] + ], + [ + "【76기】나츠이로마츠리", + 77, + 15, + 94, + "che_event_신중", + [ + 29336, + 9469, + 20881, + 465686, + 31170 + ], + 1, + "e023cc8f.png?=20241010", + 76, + "che_241010_qMDq", + 66, + [ + "hall:firenum" + ] + ], + [ + "【76기】평민킬러", + 82, + 64, + 13, + "che_event_필살", + [ + 294404, + 2892, + 36917, + 80863, + 29333 + ], + 1, + "b0db4ed9.jpg?=20241011", + 76, + "che_241010_qMDq", + 68, + [ + "hall:betwin", + "hall:dex1", + "hall:dex5", + "hall:occupied", + "hall:tlrate" + ] + ], + [ + "【76기】라콘타", + 13, + 80, + 65, + "che_event_견고", + [ + 0, + 0, + 0, + 0, + 0 + ], + 1, + "578d3ce5.png?=20240428", + 76, + "che_241010_qMDq", + 70, + [ + "hall:firenum", + "hall:tsrate" + ] + ], + [ + "【76기】Hide_D", + 67, + 13, + 80, + "che_event_환술", + [ + 38090, + 15058, + 35047, + 313584, + 22539 + ], + 1, + "4569d848.png?=20230612", + 76, + "che_241010_qMDq", + 74, + [ + "hall:tirate" + ] + ], + [ + "【76기】item", + 82, + 94, + 15, + "che_event_징병", + [ + 32988, + 31665, + 1016085, + 58640, + 20083 + ], + 0, + "default.jpg", + 76, + "che_241010_qMDq", + 76, + [ + "hall:betrate", + "hall:dex3", + "hall:experience", + "hall:killcrew", + "hall:killcrew_person", + "hall:killnum", + "hall:warnum", + "hall:winrate" + ] + ], + [ + "【76기】아직도 덥다", + 78, + 15, + 95, + "che_event_집중", + [ + 35676, + 36044, + 43754, + 626811, + 27107 + ], + 0, + "default.jpg", + 76, + "che_241010_qMDq", + 77, + [ + "hall:tirate" + ] + ], + [ + "【76기】불안핑", + 79, + 96, + 15, + "che_event_무쌍", + [ + 67454, + 904267, + 28944, + 60174, + 15907 + ], + 0, + "default.jpg", + 76, + "che_241010_qMDq", + 78, + [ + "hall:dex2", + "hall:killcrew_person", + "hall:tsrate", + "hall:ttrate", + "hall:winrate" + ] + ], + [ + "【76기】서희", + 79, + 16, + 95, + "che_event_필살", + [ + 36879, + 22772, + 34715, + 565237, + 84965 + ], + 0, + "default.jpg", + 76, + "che_241010_qMDq", + 79, + [ + "hall:dex5" + ] + ], + [ + "【76기】카이스트", + 79, + 16, + 98, + "che_event_견고", + [ + 17267, + 23123, + 17130, + 1522072, + 33021 + ], + 1, + "e7e27cd6.jpg?=20221125", + 76, + "che_241010_qMDq", + 85, + [ + "hall:betgold", + "hall:betrate", + "hall:betwingold", + "hall:dex4", + "hall:killcrew", + "hall:killcrew_person", + "hall:killnum", + "hall:killrate", + "hall:killrate_person", + "hall:occupied", + "hall:ttrate", + "hall:warnum", + "hall:winrate" + ] + ], + [ + "【76기】카마인", + 68, + 13, + 80, + "che_event_필살", + [ + 19636, + 7245, + 19791, + 340275, + 9275 + ], + 1, + "487ed0d5.png?=20241010", + 76, + "che_241010_qMDq", + 86, + [ + "hall:tirate" + ] + ], + [ + "【76기】우승기원독구", + 16, + 78, + 93, + "che_event_신중", + [ + 0, + 0, + 0, + 0, + 0 + ], + 1, + "5283daf7.png?=20240511", + 76, + "che_241010_qMDq", + 87, + [ + "hall:betwin", + "hall:dedication" + ] + ], + [ + "【76기】진저웨일", + 91, + 79, + 15, + "che_event_척사", + [ + 63004, + 96156, + 510932, + 102069, + 12291 + ], + 1, + "9cb0a80c.png?=20241010", + 76, + "che_241010_qMDq", + 90, + [ + "hall:dex2", + "hall:tlrate" + ] + ], + [ + "【76기】임사영", + 76, + 99, + 15, + "che_event_필살", + [ + 57022, + 29415, + 900222, + 95382, + 47352 + ], + 1, + "0b5a2642.jpg?=20240305", + 76, + "che_241010_qMDq", + 91, + [ + "chief:8", + "hall:dedication", + "hall:dex3", + "hall:experience", + "hall:killcrew", + "hall:killcrew_person", + "hall:killnum", + "hall:killrate", + "hall:killrate_person", + "hall:occupied", + "hall:tsrate", + "hall:ttrate", + "hall:winrate" + ] + ], + [ + "【76기】삼모하는 돌아이", + 79, + 15, + 93, + "che_event_징병", + [ + 78901, + 40274, + 44770, + 736489, + 59238 + ], + 0, + "default.jpg", + 76, + "che_241010_qMDq", + 93, + [ + "hall:dex4", + "hall:dex5", + "hall:warnum" + ] + ], + [ + "【76기】대교", + 99, + 76, + 15, + "che_event_필살", + [ + 1010437, + 24171, + 21990, + 45630, + 11045 + ], + 1, + "a53ab5ef.jpg?=20241010", + 76, + "che_241010_qMDq", + 95, + [ + "hall:dex1", + "hall:killcrew", + "hall:killcrew_person", + "hall:killnum", + "hall:tlrate", + "hall:warnum" + ] + ], + [ + "【76기】고양", + 71, + 15, + 84, + "che_event_필살", + [ + 24997, + 6515, + 25704, + 376809, + 28314 + ], + 1, + "96550c77.png?=20241010", + 76, + "che_241010_qMDq", + 96, + [ + "chief:9", + "hall:betgold", + "hall:betwingold", + "hall:dedication", + "hall:dex4", + "hall:dex5", + "hall:killrate" + ] + ], + [ + "【76기】셀레미", + 77, + 15, + 98, + "che_event_집중", + [ + 59763, + 12994, + 30020, + 822894, + 38990 + ], + 1, + "d4a0bd1d.jpg?=20241010", + 76, + "che_241010_qMDq", + 97, + [ + "hall:dex4", + "hall:experience", + "hall:killnum", + "hall:killrate", + "hall:killrate_person", + "hall:tirate", + "hall:winrate" + ] + ], + [ + "【76기】호구", + 95, + 77, + 16, + "che_event_필살", + [ + 43997, + 52602, + 610818, + 102095, + 33557 + ], + 1, + "8bc99985.png?=20241010", + 76, + "che_241010_qMDq", + 98, + [ + "hall:betgold", + "hall:betwin", + "hall:betwingold", + "hall:dex3", + "hall:tlrate" + ] + ], + [ + "【76기】빠스", + 79, + 92, + 16, + "che_event_돌격", + [ + 40351, + 29850, + 660522, + 116004, + 58078 + ], + 1, + "91de11ad.png?=20241011", + 76, + "che_241010_qMDq", + 99, + [ + "chief:6", + "hall:betrate", + "hall:betwingold", + "hall:dex3", + "hall:dex5", + "hall:occupied" + ] + ], + [ + "【76기】천통군주", + 68, + 83, + 13, + "che_event_징병", + [ + 632001, + 9132, + 34279, + 41862, + 21885 + ], + 1, + "623ac631.jpg?=20241003", + 76, + "che_241010_qMDq", + 100, + [ + "hall:betrate", + "hall:dex1", + "hall:experience", + "hall:killcrew", + "hall:killcrew_person", + "hall:killnum", + "hall:tsrate", + "hall:warnum" + ] + ], + [ + "【76기】갬비슨", + 70, + 78, + 13, + "che_event_위압", + [ + 47366, + 212823, + 130514, + 46970, + 13553 + ], + 0, + "default.jpg", + 76, + "che_241010_qMDq", + 101, + [ + "hall:betwin", + "hall:dex2", + "hall:killrate_person" + ] + ], + [ + "【76기】이호", + 78, + 16, + 97, + "che_event_집중", + [ + 39242, + 20152, + 26099, + 731340, + 35315 + ], + 0, + "default.jpg", + 76, + "che_241010_qMDq", + 104, + [ + "hall:dex4", + "hall:killcrew", + "hall:killcrew_person", + "hall:killnum", + "hall:winrate" + ] + ], + [ + "【76기】류화영", + 93, + 15, + 79, + "che_event_집중", + [ + 19821, + 15172, + 20173, + 493290, + 30620 + ], + 1, + "2f4c2123.jpg?=20241103", + 76, + "che_241010_qMDq", + 105, + [ + "hall:tlrate" + ] + ], + [ + "【76기】북오더", + 81, + 91, + 15, + "che_event_필살", + [ + 40964, + 53869, + 693755, + 102481, + 39989 + ], + 1, + "f9e4b416.gif?=20240717", + 76, + "che_241010_qMDq", + 106, + [ + "hall:dex3", + "hall:winrate" + ] + ], + [ + "【76기】만리향", + 14, + 66, + 78, + "che_event_필살", + [ + 2092, + 16964, + 9633, + 715, + 2386 + ], + 1, + "8cbbbb37.jpg?=20241010", + 76, + "che_241010_qMDq", + 107, + [ + "hall:betrate", + "hall:dedication" + ] + ], + [ + "【76기】Air", + 82, + 90, + 16, + "che_event_견고", + [ + 725265, + 18353, + 70775, + 113992, + 16123 + ], + 0, + "default.jpg", + 76, + "che_241010_qMDq", + 108, + [ + "hall:dex1", + "hall:warnum" + ] + ], + [ + "【76기】사스케", + 79, + 15, + 93, + "che_event_필살", + [ + 45002, + 11773, + 25041, + 636912, + 62108 + ], + 1, + "147a9551.jpg?=20241010", + 76, + "che_241010_qMDq", + 109, + [ + "chief:11", + "hall:betgold", + "hall:betwin", + "hall:betwingold", + "hall:dex5", + "hall:experience", + "hall:killrate", + "hall:occupied" + ] + ], + [ + "【76기】페이크", + 16, + 73, + 99, + "che_event_의술", + [ + 0, + 0, + 0, + 0, + 0 + ], + 0, + "default.jpg", + 76, + "che_241010_qMDq", + 110, + [ + "hall:tirate", + "hall:ttrate" + ] + ], + [ + "【76기】도적", + 15, + 98, + 73, + "che_event_신산", + [ + 233, + 150, + 187, + 2556, + 1 + ], + 0, + "default.jpg", + 76, + "che_241010_qMDq", + 111, + [ + "hall:experience", + "hall:firenum", + "hall:tsrate" + ] + ], + [ + "【76기】황혼중", + 15, + 98, + 74, + "che_event_격노", + [ + 0, + 0, + 0, + 0, + 0 + ], + 1, + "e5161df9.jpg?=20231110", + 76, + "che_241010_qMDq", + 113, + [ + "hall:tsrate" + ] + ], + [ + "【76기】Sunderland", + 78, + 93, + 15, + "che_event_무쌍", + [ + 582312, + 12087, + 27762, + 36299, + 22871 + ], + 0, + "default.jpg", + 76, + "che_241010_qMDq", + 114, + [ + "hall:dex1", + "hall:tsrate" + ] + ], + [ + "【76기】니쉬", + 13, + 83, + 63, + "che_event_위압", + [ + 0, + 0, + 0, + 0, + 0 + ], + 1, + "3a86b056.png?=20240921", + 76, + "che_241010_qMDq", + 116, + [ + "hall:firenum", + "hall:tsrate" + ] + ], + [ + "【76기】Nobel", + 91, + 79, + 17, + "che_event_징병", + [ + 453226, + 8018, + 34758, + 87536, + 24534 + ], + 1, + "ad93d6a4.webp?=20241010", + 76, + "che_241010_qMDq", + 121, + [ + "hall:dex1", + "hall:firenum", + "hall:tlrate" + ] + ], + [ + "【76기】panpenpan", + 79, + 15, + 93, + "che_event_집중", + [ + 88634, + 21005, + 39645, + 575817, + 34789 + ], + 1, + "521bb79a.jpg?=20240329", + 76, + "che_241010_qMDq", + 123, + [ + "hall:tirate" + ] + ], + [ + "【76기】토끼카류토끼", + 65, + 13, + 82, + "che_event_환술", + [ + 22158, + 5317, + 13677, + 157838, + 5987 + ], + 1, + "4370ea2a.jpg?=20241003", + 76, + "che_241010_qMDq", + 126, + [ + "hall:ttrate" + ] + ], + [ + "【76기】블랙죠", + 62, + 63, + 60, + "che_event_징병", + [ + 393931, + 21403, + 35427, + 93996, + 40620 + ], + 0, + "default.jpg", + 76, + "che_241010_qMDq", + 190, + [ + "hall:dex1" + ] + ], + [ + "【76기】최진리", + 63, + 13, + 83, + "che_event_필살", + [ + 19131, + 7580, + 20365, + 195703, + 15080 + ], + 1, + "4b0cbce9.jpg?=20240825", + 76, + "che_241010_qMDq", + 191, + [ + "hall:tirate" + ] + ], + [ + "【76기】늦었다냥", + 90, + 83, + 16, + "che_event_돌격", + [ + 90261, + 35061, + 981590, + 146897, + 40589 + ], + 1, + "aa45cb6f.jpg?=20241011", + 76, + "che_241010_qMDq", + 192, + [ + "hall:dex3", + "hall:experience", + "hall:killcrew", + "hall:killcrew_person", + "hall:killnum", + "hall:tlrate", + "hall:warnum", + "hall:winrate" + ] + ], + [ + "【76기】다육이", + 77, + 92, + 16, + "che_event_필살", + [ + 48560, + 24423, + 564651, + 78630, + 55151 + ], + 1, + "e04a24e1.jpg?=20241011", + 76, + "che_241010_qMDq", + 194, + [ + "hall:dex3" + ] + ], + [ + "【76기】와일드플라워", + 16, + 79, + 92, + "che_event_신산", + [ + 0, + 0, + 0, + 0, + 0 + ], + 0, + "default.jpg", + 76, + "che_241010_qMDq", + 205, + [ + "hall:firenum", + "hall:ttrate" + ] + ], + [ + "【76기】최강록", + 79, + 93, + 16, + "che_event_돌격", + [ + 86181, + 73338, + 855549, + 141783, + 42854 + ], + 1, + "1b30296a.png?=20241011", + 76, + "che_241010_qMDq", + 206, + [ + "hall:dex2", + "hall:dex3", + "hall:killcrew_person", + "hall:killnum", + "hall:occupied", + "hall:warnum", + "hall:winrate" + ] + ], + [ + "【76기】서림동", + 78, + 91, + 17, + "che_event_위압", + [ + 25580, + 25670, + 553047, + 47627, + 9845 + ], + 0, + "default.jpg", + 76, + "che_241010_qMDq", + 260, + [ + "hall:dex3" + ] + ], + [ + "【76기】쿠가 쥰", + 17, + 80, + 83, + "che_event_필살", + [ + 7714, + 2600, + 0, + 1350, + 0 + ], + 1, + "eec0d450.png?=20241022", + 76, + "che_241010_qMDq", + 390, + [ + "hall:killrate_person" + ] + ], + [ + "【76기】진솔", + 15, + 71, + 98, + "che_event_신산", + [ + 0, + 0, + 0, + 0, + 0 + ], + 1, + "ed6e48d5.png?=20240719", + 76, + "che_241010_qMDq", + 432, + [ + "hall:dedication" + ] + ], + [ + "【77기】바나낫", + 96, + 73, + 15, + "che_event_저격", + [ + 415241, + 63021, + 47602, + 57734, + 42854 + ], + 1, + "fe4afbc8.gif?=20241106", + 77, + "che_241107_mPRd", + 7, + [ + "hall:dex1", + "hall:dex5", + "hall:killcrew_person", + "hall:killnum", + "hall:tlrate", + "hall:warnum" + ] + ], + [ + "【77기】강유", + 78, + 16, + 88, + "che_event_집중", + [ + 11366, + 2714, + 5295, + 436869, + 26152 + ], + 1, + "79e150d0.jpg?=20230921", + 77, + "che_241107_mPRd", + 10, + [ + "hall:dex4", + "hall:ttrate" + ] + ], + [ + "【77기】진브", + 74, + 15, + 95, + "che_event_집중", + [ + 11298, + 21348, + 10235, + 655803, + 53230 + ], + 1, + "4ac37b25.png?=20241107", + 77, + "che_241107_mPRd", + 11, + [ + "chief:12", + "hall:betgold", + "hall:betwin", + "hall:dedication", + "hall:dex4", + "hall:dex5", + "hall:experience", + "hall:killcrew", + "hall:killcrew_person", + "hall:killnum", + "hall:killrate", + "hall:killrate_person", + "hall:occupied", + "hall:tirate", + "hall:warnum", + "hall:winrate" + ] + ], + [ + "【77기】임사영", + 94, + 72, + 15, + "che_event_공성", + [ + 114594, + 27234, + 39070, + 58225, + 420665 + ], + 1, + "0b5a2642.jpg?=20240305", + 77, + "che_241107_mPRd", + 12, + [ + "hall:dex5", + "hall:killcrew", + "hall:killrate", + "hall:occupied", + "hall:tlrate" + ] + ], + [ + "【77기】도널드 존 트럼프", + 75, + 15, + 92, + "che_event_환술", + [ + 12618, + 12954, + 9409, + 419302, + 29565 + ], + 1, + "f795e13c.gif?=20241106", + 77, + "che_241107_mPRd", + 17, + [ + "hall:dex4", + "hall:killrate_person", + "hall:occupied", + "hall:winrate" + ] + ], + [ + "【77기】린브", + 98, + 70, + 15, + "che_event_공성", + [ + 20293, + 0, + 7551, + 24371, + 2074681 + ], + 1, + "654f34a5.png?=20241107", + 77, + "che_241107_mPRd", + 30, + [ + "chief:11", + "hall:betgold", + "hall:betrate", + "hall:betwin", + "hall:betwingold", + "hall:dex5", + "hall:experience", + "hall:killcrew", + "hall:killrate", + "hall:occupied", + "hall:tlrate", + "hall:winrate" + ] + ], + [ + "【77기】궁녀", + 88, + 15, + 79, + "che_event_의술", + [ + 37560, + 20287, + 15868, + 294806, + 18029 + ], + 1, + "257dc069.png?=20241107", + 77, + "che_241107_mPRd", + 31, + [ + "hall:occupied", + "hall:tlrate" + ] + ], + [ + "【77기】애쉬", + 74, + 94, + 15, + "che_event_돌격", + [ + 36378, + 18593, + 488462, + 65501, + 18990 + ], + 1, + "ac5f0a3b.jpg?=20241107", + 77, + "che_241107_mPRd", + 33, + [ + "hall:dex3", + "hall:killrate_person", + "hall:tsrate" + ] + ], + [ + "【77기】카류소환수2", + 75, + 16, + 91, + "che_event_척사", + [ + 30978, + 19334, + 17036, + 310850, + 43820 + ], + 1, + "4370ea2a.jpg?=20241003", + 77, + "che_241107_mPRd", + 36, + [ + "hall:dedication", + "hall:dex5" + ] + ], + [ + "【77기】능송", + 93, + 15, + 79, + "che_event_돌격", + [ + 48368, + 66453, + 41190, + 1011292, + 22735 + ], + 0, + "default.jpg", + 77, + "che_241107_mPRd", + 39, + [ + "chief:7", + "hall:dedication", + "hall:dex2", + "hall:dex4", + "hall:experience", + "hall:killcrew", + "hall:killcrew_person", + "hall:killnum", + "hall:killrate", + "hall:killrate_person", + "hall:tlrate", + "hall:warnum", + "hall:winrate" + ] + ], + [ + "【77기】5성장군 독구", + 15, + 77, + 90, + "che_event_환술", + [ + 0, + 0, + 0, + 0, + 0 + ], + 1, + "5283daf7.png?=20240511", + 77, + "che_241107_mPRd", + 41, + [ + "hall:betwin" + ] + ], + [ + "【77기】유화영", + 15, + 87, + 78, + "che_event_척사", + [ + 0, + 0, + 0, + 0, + 0 + ], + 1, + "b32008d0.jpg?=20241122", + 77, + "che_241107_mPRd", + 51, + [ + "hall:firenum" + ] + ], + [ + "【77기】어린 세자", + 75, + 15, + 93, + "che_event_징병", + [ + 17774, + 22844, + 29401, + 402541, + 18530 + ], + 1, + "7d1f0c76.jpg?=20241123", + 77, + "che_241107_mPRd", + 53, + [ + "chief:5", + "hall:betrate", + "hall:dedication", + "hall:dex4", + "hall:experience", + "hall:tirate", + "hall:ttrate" + ] + ], + [ + "【77기】라콘타", + 77, + 88, + 15, + "che_event_필살", + [ + 387000, + 11908, + 48531, + 46333, + 11414 + ], + 1, + "d1606696.png?=20241116", + 77, + "che_241107_mPRd", + 56, + [ + "hall:dex1" + ] + ], + [ + "【77기】카류소환수1", + 73, + 15, + 94, + "che_event_필살", + [ + 19756, + 15237, + 16136, + 401413, + 28910 + ], + 1, + "225ebeb9.jpg?=20241107", + 77, + "che_241107_mPRd", + 58, + [ + "chief:9", + "hall:betgold", + "hall:betwin", + "hall:betwingold", + "hall:dedication", + "hall:experience", + "hall:killrate", + "hall:killrate_person", + "hall:tirate" + ] + ], + [ + "【77기】물패", + 75, + 15, + 90, + "che_event_척사", + [ + 7060, + 10363, + 6182, + 428580, + 36276 + ], + 1, + "4f35d3f0.jpg?=20241107", + 77, + "che_241107_mPRd", + 62, + [ + "hall:dex4", + "hall:dex5" + ] + ], + [ + "【77기】낭패", + 76, + 15, + 90, + "che_event_반계", + [ + 4756, + 10172, + 4399, + 154008, + 22284 + ], + 1, + "ffbf5d0f.jpg?=20241107", + 77, + "che_241107_mPRd", + 65, + [ + "hall:ttrate" + ] + ], + [ + "【77기】냥냥냥", + 78, + 90, + 15, + "che_event_필살", + [ + 30029, + 40553, + 421951, + 40913, + 18101 + ], + 1, + "458caeac.gif?=20240919", + 77, + "che_241107_mPRd", + 72, + [ + "hall:dex3", + "hall:killcrew_person", + "hall:killnum", + "hall:winrate" + ] + ], + [ + "【77기】키타가와 마린", + 74, + 15, + 93, + "che_event_저격", + [ + 15331, + 16657, + 8030, + 323094, + 29074 + ], + 1, + "2e378082.jpg?=20241107", + 77, + "che_241107_mPRd", + 73, + [ + "hall:dedication", + "hall:experience", + "hall:tirate" + ] + ], + [ + "【77기】싸패", + 93, + 76, + 15, + "che_event_필살", + [ + 908342, + 4151, + 19104, + 37035, + 21394 + ], + 1, + "bd1e5318.jpg?=20241107", + 77, + "che_241107_mPRd", + 76, + [ + "hall:betgold", + "hall:betwin", + "hall:betwingold", + "hall:dex1", + "hall:experience", + "hall:killcrew", + "hall:killcrew_person", + "hall:killnum", + "hall:killrate", + "hall:killrate_person", + "hall:occupied", + "hall:tlrate", + "hall:warnum", + "hall:winrate" + ] + ], + [ + "【77기】라리에트", + 17, + 74, + 87, + "che_event_저격", + [ + 0, + 0, + 0, + 0, + 0 + ], + 1, + "ad28319b.png?=20241106", + 77, + "che_241107_mPRd", + 77, + [ + "hall:dedication" + ] + ], + [ + "【77기】불패", + 74, + 95, + 15, + "che_event_필살", + [ + 607247, + 4766, + 58829, + 26592, + 29568 + ], + 1, + "175b1b62.jpg?=20241107", + 77, + "che_241107_mPRd", + 78, + [ + "hall:betgold", + "hall:betwin", + "hall:betwingold", + "hall:dex1", + "hall:dex3", + "hall:experience", + "hall:killcrew", + "hall:killcrew_person", + "hall:tsrate", + "hall:warnum" + ] + ], + [ + "【77기】카류", + 73, + 15, + 94, + "che_event_척사", + [ + 14547, + 18219, + 20185, + 285419, + 23864 + ], + 1, + "20e760b2.jpg?=20240921", + 77, + "che_241107_mPRd", + 80, + [ + "hall:dedication", + "hall:experience", + "hall:tirate" + ] + ], + [ + "【77기】깡패", + 74, + 93, + 15, + "che_event_궁병", + [ + 24047, + 330086, + 3308, + 39759, + 20588 + ], + 1, + "f5fac7ac.png?=20241107", + 77, + "che_241107_mPRd", + 82, + [ + "hall:dex2", + "hall:killrate", + "hall:killrate_person", + "hall:tsrate" + ] + ], + [ + "【77기】개미호창", + 74, + 15, + 92, + "che_event_필살", + [ + 47193, + 25666, + 13921, + 458913, + 21648 + ], + 1, + "ecc33763.jpg?=20241107", + 77, + "che_241107_mPRd", + 83, + [ + "hall:dex4", + "hall:occupied", + "hall:tirate" + ] + ], + [ + "【77기】비스마르크", + 75, + 93, + 15, + "che_event_저격", + [ + 1123, + 5152, + 188079, + 37390, + 21223 + ], + 0, + "default.jpg", + 77, + "che_241107_mPRd", + 84, + [ + "hall:dex3", + "hall:ttrate" + ] + ], + [ + "【77기】마요이", + 15, + 72, + 95, + "che_event_징병", + [ + 0, + 0, + 0, + 0, + 0 + ], + 1, + "2b49c945.png?=20230921", + 77, + "che_241107_mPRd", + 86, + [ + "hall:ttrate" + ] + ], + [ + "【77기】1557번 궁녀", + 74, + 94, + 15, + "che_event_필살", + [ + 18012, + 21478, + 680922, + 22380, + 24525 + ], + 1, + "fce6fcd1.png?=20241109", + 77, + "che_241107_mPRd", + 87, + [ + "chief:10", + "hall:betgold", + "hall:dex3", + "hall:killcrew", + "hall:killnum", + "hall:killrate", + "hall:killrate_person", + "hall:occupied", + "hall:tsrate", + "hall:winrate" + ] + ], + [ + "【77기】Sase", + 74, + 15, + 91, + "che_event_의술", + [ + 25904, + 26044, + 2065, + 312815, + 11777 + ], + 1, + "d6e56049.jpg?=20241106", + 77, + "che_241107_mPRd", + 91, + [ + "hall:betgold", + "hall:betrate", + "hall:betwin", + "hall:betwingold" + ] + ], + [ + "【77기】터보할멈", + 90, + 78, + 16, + "che_event_징병", + [ + 694052, + 41741, + 77292, + 55727, + 26378 + ], + 1, + "25987dff.webp?=20241113", + 77, + "che_241107_mPRd", + 92, + [ + "chief:6", + "hall:betgold", + "hall:betrate", + "hall:betwin", + "hall:betwingold", + "hall:dex1", + "hall:dex3", + "hall:killcrew", + "hall:killcrew_person", + "hall:killnum", + "hall:tlrate", + "hall:warnum" + ] + ], + [ + "【77기】Air", + 79, + 89, + 15, + "che_event_저격", + [ + 476140, + 9632, + 5765, + 56551, + 10127 + ], + 0, + "default.jpg", + 77, + "che_241107_mPRd", + 94, + [ + "hall:dex1", + "hall:tsrate" + ] + ], + [ + "【77기】텟사", + 77, + 91, + 15, + "che_event_필살", + [ + 23802, + 19760, + 625183, + 65135, + 31128 + ], + 0, + "default.jpg", + 77, + "che_241107_mPRd", + 97, + [ + "hall:betrate", + "hall:betwin", + "hall:betwingold", + "hall:dex3", + "hall:killcrew", + "hall:killcrew_person", + "hall:killnum", + "hall:killrate", + "hall:killrate_person", + "hall:warnum", + "hall:winrate" + ] + ], + [ + "【77기】간지밍이", + 76, + 18, + 88, + "che_event_집중", + [ + 1993, + 9862, + 10484, + 218073, + 238 + ], + 1, + "32bc261d.png?=20240824", + 77, + "che_241107_mPRd", + 98, + [ + "hall:betgold", + "hall:betwin", + "hall:betwingold", + "hall:tirate" + ] + ], + [ + "【77기】아지태", + 74, + 16, + 92, + "che_event_징병", + [ + 33504, + 10278, + 10399, + 293108, + 21516 + ], + 1, + "826c6458.jpg?=20241106", + 77, + "che_241107_mPRd", + 99, + [ + "hall:betrate", + "hall:betwingold", + "hall:winrate" + ] + ], + [ + "【77기】대교", + 93, + 15, + 75, + "che_event_필살", + [ + 40010, + 4515, + 36872, + 375255, + 23602 + ], + 1, + "a53ab5ef.jpg?=20241010", + 77, + "che_241107_mPRd", + 100, + [ + "hall:tlrate" + ] + ], + [ + "【77기】패패", + 95, + 73, + 15, + "che_event_격노", + [ + 514518, + 7708, + 18273, + 36508, + 31882 + ], + 1, + "893fddaf.webp?=20241108", + 77, + "che_241107_mPRd", + 101, + [ + "hall:dex1", + "hall:killcrew_person", + "hall:tlrate", + "hall:ttrate", + "hall:warnum" + ] + ], + [ + "【77기】시나모롤", + 77, + 16, + 90, + "che_event_필살", + [ + 10000, + 6466, + 20303, + 448644, + 36139 + ], + 1, + "d5b292ec.jpg?=20241110", + 77, + "che_241107_mPRd", + 102, + [ + "hall:dex4", + "hall:dex5" + ] + ], + [ + "【77기】기녀", + 74, + 94, + 15, + "che_event_필살", + [ + 451318, + 13570, + 18780, + 74370, + 12082 + ], + 1, + "5aadb16f.jpg?=20241107", + 77, + "che_241107_mPRd", + 103, + [ + "hall:dedication", + "hall:dex1", + "hall:tsrate" + ] + ], + [ + "【77기】플랑", + 74, + 95, + 15, + "che_event_필살", + [ + 44941, + 638638, + 9417, + 48335, + 33486 + ], + 1, + "e0f344d9.png?=20241107", + 77, + "che_241107_mPRd", + 105, + [ + "chief:8", + "hall:betgold", + "hall:dex2", + "hall:experience", + "hall:killcrew", + "hall:killcrew_person", + "hall:killnum", + "hall:killrate", + "hall:killrate_person", + "hall:occupied", + "hall:tsrate", + "hall:warnum", + "hall:winrate" + ] + ], + [ + "【77기】황진", + 76, + 16, + 91, + "che_event_필살", + [ + 21293, + 13554, + 18302, + 404314, + 34794 + ], + 0, + "default.jpg", + 77, + "che_241107_mPRd", + 106, + [ + "hall:dex4", + "hall:dex5", + "hall:occupied" + ] + ], + [ + "【77기】복숭아좋아", + 76, + 16, + 89, + "che_event_집중", + [ + 12977, + 14522, + 16801, + 354860, + 37145 + ], + 0, + "default.jpg", + 77, + "che_241107_mPRd", + 107, + [ + "hall:dex5" + ] + ], + [ + "【77기】네이", + 87, + 16, + 79, + "che_event_집중", + [ + 21776, + 5969, + 14417, + 445526, + 46961 + ], + 0, + "default.jpg", + 77, + "che_241107_mPRd", + 110, + [ + "hall:dex4", + "hall:dex5", + "hall:killnum", + "hall:warnum" + ] + ], + [ + "【77기】단풍놀이", + 76, + 90, + 15, + "che_event_필살", + [ + 35992, + 348443, + 9757, + 40987, + 31657 + ], + 0, + "default.jpg", + 77, + "che_241107_mPRd", + 111, + [ + "hall:dex2" + ] + ], + [ + "【77기】9rumee", + 76, + 15, + 91, + "che_event_신산", + [ + 25267, + 4383, + 26048, + 374586, + 20026 + ], + 0, + "default.jpg", + 77, + "che_241107_mPRd", + 117, + [ + "hall:betrate", + "hall:tirate" + ] + ], + [ + "【77기】くま", + 76, + 15, + 92, + "che_event_반계", + [ + 28817, + 4129, + 14951, + 324915, + 20227 + ], + 1, + "770f53.jpg?=20190718", + 77, + "che_241107_mPRd", + 118, + [ + "hall:ttrate" + ] + ], + [ + "【77기】최진리", + 90, + 76, + 15, + "che_event_돌격", + [ + 365272, + 21276, + 14208, + 85918, + 22645 + ], + 1, + "4b0cbce9.jpg?=20240825", + 77, + "che_241107_mPRd", + 120, + [ + "hall:dex1", + "hall:tlrate" + ] + ], + [ + "【77기】이타도리 유지", + 92, + 15, + 74, + "che_event_집중", + [ + 29679, + 18405, + 11440, + 357263, + 25217 + ], + 1, + "6e4e1b68.png?=20241010", + 77, + "che_241107_mPRd", + 226, + [ + "hall:ttrate" + ] + ], + [ + "【77기】황혼중", + 15, + 91, + 75, + "che_event_위압", + [ + 0, + 0, + 0, + 0, + 0 + ], + 1, + "e5161df9.jpg?=20231110", + 77, + "che_241107_mPRd", + 229, + [ + "hall:dedication", + "hall:tsrate" + ] + ], + [ + "【77기】Navy마초", + 76, + 88, + 15, + "che_event_위압", + [ + 12220, + 285342, + 2382, + 40149, + 4020 + ], + 1, + "37644ed3.png?=20230831", + 77, + "che_241107_mPRd", + 236, + [ + "hall:dex2" + ] + ], + [ + "【77기】Bianchi", + 77, + 91, + 15, + "che_event_징병", + [ + 317369, + 3155, + 25493, + 27827, + 3272 + ], + 0, + "default.jpg", + 77, + "che_241107_mPRd", + 237, + [ + "hall:ttrate" + ] + ], + [ + "【77기】지각생", + 77, + 87, + 16, + "che_event_위압", + [ + 349668, + 1526, + 21779, + 33606, + 11036 + ], + 0, + "default.jpg", + 77, + "che_241107_mPRd", + 238, + [ + "hall:dex1" + ] + ], + [ + "【77기】진 브", + 32, + 95, + 55, + "che_event_위압", + [ + 4362, + 3800, + 100994, + 32660, + 5179 + ], + 1, + "0b49735d.jpg?=20241108", + 77, + "che_241107_mPRd", + 252, + [ + "hall:dex3", + "hall:tsrate" + ] + ], + [ + "【77기】쥰쥰", + 76, + 88, + 15, + "che_event_견고", + [ + 23106, + 4946, + 240561, + 56902, + 19216 + ], + 1, + "eec0d450.png?=20241022", + 77, + "che_241107_mPRd", + 257, + [ + "hall:dex3" + ] + ], + [ + "【77기】으라차", + 75, + 87, + 16, + "che_event_척사", + [ + 5360, + 115157, + 260, + 17677, + 13172 + ], + 0, + "default.jpg", + 77, + "che_241107_mPRd", + 325, + [ + "hall:dex2" + ] + ], + [ + "【77기】뇽", + 76, + 87, + 15, + "che_event_위압", + [ + 9485, + 19935, + 206484, + 20785, + 22822 + ], + 0, + "default.jpg", + 77, + "che_241107_mPRd", + 326, + [ + "hall:dex3" + ] + ], + [ + "【77기】네팍", + 75, + 15, + 88, + "che_event_척사", + [ + 4607, + 4883, + 19021, + 172128, + 15757 + ], + 0, + "default.jpg", + 77, + "che_241107_mPRd", + 328, + [ + "hall:tirate" + ] + ], + [ + "【77기】메이웨더람쥐", + 74, + 16, + 88, + "che_event_귀병", + [ + 2699, + 2811, + 591, + 72801, + 6827 + ], + 1, + "ee3e5aec.png?=20230902", + 77, + "che_241107_mPRd", + 391, + [ + "hall:ttrate" + ] + ], + [ + "【77기】ㅊㄹㅊㄹ", + 75, + 87, + 15, + "che_event_견고", + [ + 15018, + 259046, + 13072, + 33347, + 25775 + ], + 1, + "63f1c106.png?=20230223", + 77, + "che_241107_mPRd", + 407, + [ + "hall:dex2", + "hall:tsrate" + ] + ], + [ + "【77기】춤과파티", + 76, + 87, + 16, + "che_event_위압", + [ + 52308, + 223890, + 5766, + 48082, + 15413 + ], + 0, + "default.jpg", + 77, + "che_241107_mPRd", + 408, + [ + "hall:dex2" + ] + ], + [ + "【77기】모찌", + 74, + 15, + 89, + "che_event_반계", + [ + 21748, + 11378, + 6100, + 163822, + 18930 + ], + 1, + "b24730b1.jpg?=20230112", + 77, + "che_241107_mPRd", + 426, + [ + "hall:tirate" + ] + ], + [ + "【77기】박치기공룡", + 77, + 85, + 15, + "che_event_견고", + [ + 9812, + 198864, + 3452, + 27596, + 15463 + ], + 1, + "0b2ff788.png?=20241111", + 77, + "che_241107_mPRd", + 427, + [ + "hall:dex2" + ] + ], + [ + "【77기】람각", + 76, + 16, + 86, + "che_event_집중", + [ + 9798, + 8265, + 6439, + 212901, + 3516 + ], + 0, + "default.jpg", + 77, + "che_241107_mPRd", + 517, + [ + "hall:betrate" + ] + ], + [ + "【77기】.", + 73, + 18, + 85, + "che_event_반계", + [ + 0, + 0, + 0, + 0, + 0 + ], + 1, + "04830b06.png?=20241115", + 77, + "che_241107_mPRd", + 520, + [ + "hall:betrate" + ] + ], + [ + "【77기】구경꾼", + 72, + 15, + 88, + "che_event_저격", + [ + 37627, + 13174, + 6659, + 175000, + 3359 + ], + 1, + "449ebd31.jpg?=20241114", + 77, + "che_241107_mPRd", + 527, + [ + "hall:betrate", + "hall:betwingold" + ] + ], + [ + "【77기】솟쟝", + 87, + 72, + 16, + "che_event_위압", + [ + 5421, + 72256, + 4634, + 4488, + 0 + ], + 0, + "default.jpg", + 77, + "che_241107_mPRd", + 590, + [ + "hall:dex2" + ] + ], + [ + "【78기】리춘희", + 77, + 15, + 91, + "che_event_신중", + [ + 41773, + 34625, + 25279, + 440463, + 32907 + ], + 1, + "212eeb23.jpg?=20241128", + 78, + "che_241128_0l1Z", + 10, + [ + "hall:tirate" + ] + ], + [ + "【78기】뉴비", + 77, + 94, + 15, + "che_event_필살", + [ + 849531, + 21573, + 63691, + 121745, + 34675 + ], + 0, + "default.jpg", + 78, + "che_241128_0l1Z", + 11, + [ + "hall:betgold", + "hall:betwin", + "hall:betwingold", + "hall:dex1", + "hall:killnum", + "hall:occupied", + "hall:tsrate" + ] + ], + [ + "【78기】독건적 약탈꾼", + 77, + 95, + 15, + "che_event_필살", + [ + 40630, + 68570, + 1197372, + 99491, + 45995 + ], + 1, + "db32f614.jpg?=20241127", + 78, + "che_241128_0l1Z", + 16, + [ + "chief:12", + "hall:betgold", + "hall:betwingold", + "hall:dedication", + "hall:dex2", + "hall:dex3", + "hall:dex5", + "hall:experience", + "hall:firenum", + "hall:killcrew", + "hall:killcrew_person", + "hall:killnum", + "hall:killrate", + "hall:killrate_person", + "hall:tsrate", + "hall:warnum", + "hall:winrate" + ] + ], + [ + "【78기】Ktaeha", + 79, + 16, + 88, + "che_event_신중", + [ + 49251, + 63016, + 55537, + 570708, + 73227 + ], + 1, + "bda498ac.jpg?=20241211", + 78, + "che_241128_0l1Z", + 17, + [ + "hall:betgold", + "hall:betrate", + "hall:betwin", + "hall:betwingold", + "hall:dex5" + ] + ], + [ + "【78기】임사영", + 79, + 91, + 15, + "che_event_필살", + [ + 791655, + 28660, + 54880, + 75971, + 39402 + ], + 1, + "0b5a2642.jpg?=20240305", + 78, + "che_241128_0l1Z", + 18, + [ + "hall:dex1" + ] + ], + [ + "【78기】김정은", + 77, + 94, + 15, + "che_event_필살", + [ + 709948, + 63535, + 78987, + 85920, + 27564 + ], + 1, + "f9a90c14.png?=20241125", + 78, + "che_241128_0l1Z", + 21, + [ + "hall:betgold", + "hall:dex1", + "hall:dex2", + "hall:firenum", + "hall:killrate", + "hall:killrate_person", + "hall:tsrate" + ] + ], + [ + "【78기】Navy마초", + 76, + 92, + 15, + "che_event_의술", + [ + 542623, + 16598, + 18594, + 78235, + 24895 + ], + 1, + "37644ed3.png?=20230831", + 78, + "che_241128_0l1Z", + 33, + [ + "hall:tsrate" + ] + ], + [ + "【78기】이스마엘", + 81, + 15, + 89, + "che_event_신산", + [ + 51250, + 60386, + 77552, + 617039, + 35525 + ], + 1, + "e4d4e971.jpg?=20241217", + 78, + "che_241128_0l1Z", + 34, + [ + "hall:dex4", + "hall:ttrate" + ] + ], + [ + "【78기】Hide_D", + 78, + 15, + 93, + "che_event_신산", + [ + 10910, + 42883, + 39209, + 477315, + 24194 + ], + 1, + "4569d848.png?=20230612", + 78, + "che_241128_0l1Z", + 40, + [ + "hall:tirate" + ] + ], + [ + "【78기】와일드플라워", + 76, + 15, + 94, + "che_event_척사", + [ + 63821, + 70542, + 27456, + 503717, + 36450 + ], + 0, + "default.jpg", + 78, + "che_241128_0l1Z", + 42, + [ + "hall:dedication", + "hall:dex2", + "hall:tirate", + "hall:ttrate" + ] + ], + [ + "【78기】아후로디", + 77, + 91, + 16, + "che_event_징병", + [ + 39142, + 48553, + 610963, + 98943, + 55464 + ], + 1, + "1f1930bb.png?=20241210", + 78, + "che_241128_0l1Z", + 43, + [ + "hall:dex3", + "hall:dex5", + "hall:occupied" + ] + ], + [ + "【78기】수장", + 80, + 91, + 15, + "che_event_무쌍", + [ + 988578, + 12891, + 23176, + 80658, + 34265 + ], + 1, + "21dd7c6d.jpg?=20241128", + 78, + "che_241128_0l1Z", + 44, + [ + "chief:6", + "hall:dex1", + "hall:killcrew", + "hall:killcrew_person", + "hall:killnum", + "hall:killrate", + "hall:killrate_person", + "hall:occupied", + "hall:warnum", + "hall:winrate" + ] + ], + [ + "【78기】춤과파티", + 78, + 90, + 15, + "che_event_위압", + [ + 7667, + 29813, + 333318, + 52922, + 29810 + ], + 0, + "default.jpg", + 78, + "che_241128_0l1Z", + 54, + [ + "hall:dex3" + ] + ], + [ + "【78기】독버지", + 79, + 91, + 15, + "che_event_필살", + [ + 39112, + 852547, + 8939, + 37418, + 33994 + ], + 1, + "fdcbb12f.png?=20240918", + 78, + "che_241128_0l1Z", + 56, + [ + "chief:11", + "hall:dex2", + "hall:experience", + "hall:firenum", + "hall:occupied", + "hall:winrate" + ] + ], + [ + "【78기】독구단 진브도둑", + 77, + 15, + 93, + "che_event_필살", + [ + 32766, + 40822, + 33777, + 636257, + 33170 + ], + 1, + "29743bee.jpg?=20241128", + 78, + "che_241128_0l1Z", + 63, + [ + "chief:7", + "hall:dedication", + "hall:dex4", + "hall:experience", + "hall:ttrate" + ] + ], + [ + "【78기】김정일", + 76, + 15, + 93, + "che_event_돌격", + [ + 34299, + 29277, + 22748, + 707349, + 41506 + ], + 1, + "6e40dcd7.png?=20241128", + 78, + "che_241128_0l1Z", + 64, + [ + "hall:betgold", + "hall:betwin", + "hall:betwingold", + "hall:dex4", + "hall:killnum", + "hall:killrate", + "hall:killrate_person", + "hall:occupied", + "hall:winrate" + ] + ], + [ + "【78기】호나", + 90, + 83, + 15, + "che_event_격노", + [ + 340745, + 47089, + 511986, + 95190, + 20407 + ], + 0, + "default.jpg", + 78, + "che_241128_0l1Z", + 70, + [ + "hall:dex3", + "hall:firenum", + "hall:killcrew", + "hall:killcrew_person", + "hall:ttrate", + "hall:warnum" + ] + ], + [ + "【78기】최진리", + 76, + 15, + 95, + "che_event_신산", + [ + 34906, + 14552, + 27571, + 368681, + 17442 + ], + 1, + "4b0cbce9.jpg?=20240825", + 78, + "che_241128_0l1Z", + 75, + [ + "hall:tirate" + ] + ], + [ + "【78기】대설", + 79, + 93, + 15, + "che_event_필살", + [ + 905933, + 20338, + 73498, + 75865, + 37471 + ], + 0, + "default.jpg", + 78, + "che_241128_0l1Z", + 77, + [ + "hall:dex1", + "hall:experience", + "hall:killcrew", + "hall:killcrew_person", + "hall:killnum", + "hall:killrate", + "hall:killrate_person", + "hall:occupied", + "hall:tsrate", + "hall:winrate" + ] + ], + [ + "【78기】화환부수기장인독구", + 16, + 72, + 96, + "che_event_반계", + [ + 0, + 0, + 0, + 2162, + 0 + ], + 1, + "5283daf7.png?=20240511", + 78, + "che_241128_0l1Z", + 80, + [ + "hall:betwin", + "hall:killrate_person", + "hall:tirate" + ] + ], + [ + "【78기】대교", + 93, + 74, + 15, + "che_event_필살", + [ + 752112, + 38627, + 53651, + 101643, + 44177 + ], + 1, + "a53ab5ef.jpg?=20241010", + 78, + "che_241128_0l1Z", + 82, + [ + "hall:dex1", + "hall:dex5", + "hall:tlrate" + ] + ], + [ + "【78기】불패", + 80, + 15, + 90, + "che_event_필살", + [ + 68830, + 9973, + 15441, + 487229, + 36974 + ], + 1, + "175b1b62.jpg?=20241107", + 78, + "che_241128_0l1Z", + 83, + [ + "hall:betrate" + ] + ], + [ + "【78기】야호로아콘", + 76, + 15, + 96, + "che_event_징병", + [ + 33025, + 36449, + 41046, + 1059555, + 54081 + ], + 1, + "e69d88ee.png?=20241214", + 78, + "che_241128_0l1Z", + 84, + [ + "hall:dex4", + "hall:dex5", + "hall:experience", + "hall:killcrew", + "hall:killcrew_person", + "hall:killnum", + "hall:killrate_person", + "hall:tirate", + "hall:warnum", + "hall:winrate" + ] + ], + [ + "【78기】영차로아콘", + 76, + 96, + 15, + "che_event_필살", + [ + 987519, + 26973, + 86451, + 71976, + 29285 + ], + 1, + "723b7459.jpg?=20241128", + 78, + "che_241128_0l1Z", + 85, + [ + "hall:dex1", + "hall:experience", + "hall:killcrew", + "hall:killcrew_person", + "hall:killnum", + "hall:killrate", + "hall:killrate_person", + "hall:occupied", + "hall:tsrate", + "hall:ttrate", + "hall:warnum", + "hall:winrate" + ] + ], + [ + "【78기】Sase", + 76, + 15, + 94, + "che_event_필살", + [ + 68829, + 59412, + 14169, + 595519, + 39748 + ], + 1, + "77c15776.jpg?=20241217", + 78, + "che_241128_0l1Z", + 86, + [ + "chief:5", + "hall:betgold", + "hall:betrate", + "hall:betwin", + "hall:betwingold", + "hall:dedication", + "hall:dex4", + "hall:tirate" + ] + ], + [ + "【78기】boogle", + 92, + 77, + 16, + "che_event_징병", + [ + 623836, + 23110, + 67129, + 95138, + 38065 + ], + 1, + "b322c67d.png?=20241128", + 78, + "che_241128_0l1Z", + 87, + [ + "hall:dex1", + "hall:tlrate" + ] + ], + [ + "【78기】카이스트", + 80, + 15, + 92, + "che_event_환술", + [ + 62528, + 23980, + 11984, + 634805, + 23701 + ], + 1, + "e7e27cd6.jpg?=20221125", + 78, + "che_241128_0l1Z", + 88, + [ + "hall:dex4" + ] + ], + [ + "【78기】토바", + 94, + 75, + 15, + "che_event_징병", + [ + 543528, + 48712, + 27989, + 87314, + 62919 + ], + 1, + "40b47df5.gif?=20241128", + 78, + "che_241128_0l1Z", + 90, + [ + "hall:dex5", + "hall:tlrate" + ] + ], + [ + "【78기】리병철", + 78, + 92, + 15, + "che_event_필살", + [ + 489839, + 20213, + 77257, + 65397, + 19000 + ], + 1, + "7532d129.png?=20241128", + 78, + "che_241128_0l1Z", + 92, + [ + "hall:firenum" + ] + ], + [ + "【78기】반입금지", + 78, + 90, + 15, + "che_event_무쌍", + [ + 653253, + 26881, + 33287, + 24632, + 16278 + ], + 0, + "default.jpg", + 78, + "che_241128_0l1Z", + 93, + [ + "hall:dex1" + ] + ], + [ + "【78기】정말로아콘", + 76, + 16, + 89, + "che_event_징병", + [ + 55245, + 13621, + 98643, + 454912, + 28053 + ], + 1, + "0341c030.png?=20241128", + 78, + "che_241128_0l1Z", + 94, + [ + "hall:dex3" + ] + ], + [ + "【78기】독구", + 77, + 15, + 93, + "che_event_필살", + [ + 72796, + 57076, + 12944, + 790998, + 59157 + ], + 1, + "512dfad6.jpg?=20241214", + 78, + "che_241128_0l1Z", + 95, + [ + "chief:9", + "hall:betwin", + "hall:dedication", + "hall:dex4", + "hall:dex5", + "hall:experience", + "hall:killrate", + "hall:occupied", + "hall:winrate" + ] + ], + [ + "【78기】덕구", + 78, + 90, + 15, + "che_event_척사", + [ + 480260, + 25681, + 8993, + 59729, + 30446 + ], + 0, + "default.jpg", + 78, + "che_241128_0l1Z", + 96, + [ + "hall:tsrate" + ] + ], + [ + "【78기】크멘의 종", + 94, + 15, + 77, + "che_event_필살", + [ + 82505, + 24862, + 29409, + 947095, + 21199 + ], + 0, + "default.jpg", + 78, + "che_241128_0l1Z", + 99, + [ + "hall:dex4", + "hall:killcrew", + "hall:killcrew_person", + "hall:killnum", + "hall:tlrate", + "hall:warnum" + ] + ], + [ + "【78기】비스마르크", + 78, + 93, + 15, + "che_event_필살", + [ + 110229, + 577879, + 6438, + 97681, + 21904 + ], + 0, + "default.jpg", + 78, + "che_241128_0l1Z", + 100, + [ + "hall:dex2", + "hall:tsrate", + "hall:ttrate" + ] + ], + [ + "【78기】원류환", + 94, + 79, + 15, + "che_event_필살", + [ + 30959, + 48096, + 765389, + 52244, + 36797 + ], + 1, + "d7afbd3b.jpg?=20241207", + 78, + "che_241128_0l1Z", + 101, + [ + "hall:betrate", + "hall:dex3", + "hall:tlrate", + "hall:winrate" + ] + ], + [ + "【78기】ranran", + 80, + 89, + 16, + "che_event_필살", + [ + 48858, + 500676, + 44590, + 80369, + 29689 + ], + 0, + "default.jpg", + 78, + "che_241128_0l1Z", + 102, + [ + "hall:dex2", + "hall:firenum" + ] + ], + [ + "【78기】최룡해", + 100, + 70, + 15, + "che_event_공성", + [ + 27596, + 18501, + 27993, + 64094, + 1618869 + ], + 1, + "15f34be6.png?=20241127", + 78, + "che_241128_0l1Z", + 103, + [ + "hall:betgold", + "hall:betrate", + "hall:betwin", + "hall:betwingold", + "hall:dex5", + "hall:experience", + "hall:killcrew", + "hall:killrate", + "hall:occupied", + "hall:tlrate" + ] + ], + [ + "【78기】김여정", + 77, + 15, + 96, + "che_event_필살", + [ + 39250, + 30331, + 25080, + 685049, + 24238 + ], + 1, + "b3e9d822.png?=20241127", + 78, + "che_241128_0l1Z", + 104, + [ + "hall:betrate", + "hall:dex4", + "hall:killrate", + "hall:killrate_person", + "hall:tirate", + "hall:winrate" + ] + ], + [ + "【78기】스야", + 76, + 15, + 93, + "che_event_척사", + [ + 44822, + 24603, + 5884, + 237618, + 14456 + ], + 1, + "6f83b265.png?=20241128", + 78, + "che_241128_0l1Z", + 105, + [ + "hall:tirate" + ] + ], + [ + "【78기】눈칫로아콘", + 76, + 15, + 91, + "che_event_집중", + [ + 59090, + 15827, + 37413, + 446769, + 49996 + ], + 1, + "667ff35d.png?=20241129", + 78, + "che_241128_0l1Z", + 106, + [ + "hall:dex5" + ] + ], + [ + "【78기】미친과학", + 92, + 78, + 15, + "che_event_격노", + [ + 639687, + 39807, + 17456, + 89285, + 19980 + ], + 1, + "b95d9132.png?=20241128", + 78, + "che_241128_0l1Z", + 107, + [ + "hall:dex1", + "hall:experience", + "hall:tlrate" + ] + ], + [ + "【78기】천리마", + 15, + 97, + 72, + "che_event_징병", + [ + 0, + 0, + 0, + 0, + 0 + ], + 1, + "b12f5155.jpg?=20241207", + 78, + "che_241128_0l1Z", + 108, + [ + "hall:tsrate" + ] + ], + [ + "【78기】습설", + 79, + 90, + 15, + "che_event_견고", + [ + 67941, + 631311, + 21271, + 81158, + 39000 + ], + 0, + "default.jpg", + 78, + "che_241128_0l1Z", + 110, + [ + "hall:betwin", + "hall:dex2", + "hall:killrate_person" + ] + ], + [ + "【78기】니나브겨드햇반뚝딱", + 80, + 16, + 88, + "che_event_필살", + [ + 60477, + 3815, + 7271, + 457262, + 22471 + ], + 1, + "ab9c3e03.png?=20241204", + 78, + "che_241128_0l1Z", + 111, + [ + "hall:ttrate" + ] + ], + [ + "【78기】굶주린 참새", + 81, + 93, + 15, + "che_event_견고", + [ + 102325, + 889027, + 14260, + 53883, + 26896 + ], + 1, + "d8f8566d.png?=20241128", + 78, + "che_241128_0l1Z", + 112, + [ + "chief:10", + "hall:dex2", + "hall:killcrew", + "hall:killcrew_person", + "hall:killnum", + "hall:ttrate", + "hall:warnum" + ] + ], + [ + "【78기】김일성", + 78, + 15, + 91, + "che_event_환술", + [ + 40871, + 24306, + 12540, + 479206, + 32852 + ], + 1, + "ad0a05f6.png?=20241126", + 78, + "che_241128_0l1Z", + 113, + [ + "hall:betgold", + "hall:betrate", + "hall:betwin", + "hall:betwingold" + ] + ], + [ + "【78기】NK", + 94, + 78, + 15, + "che_event_필살", + [ + 81944, + 831943, + 47389, + 135072, + 55740 + ], + 0, + "default.jpg", + 78, + "che_241128_0l1Z", + 114, + [ + "hall:betrate", + "hall:dex2", + "hall:dex5", + "hall:experience", + "hall:occupied", + "hall:tlrate", + "hall:warnum" + ] + ], + [ + "【78기】정성옥", + 19, + 76, + 88, + "che_event_필살", + [ + 14871, + 17004, + 18085, + 14442, + 4290 + ], + 1, + "84be83e1.png?=20241128", + 78, + "che_241128_0l1Z", + 115, + [ + "hall:betgold", + "hall:betwin", + "hall:betwingold", + "hall:dedication" + ] + ], + [ + "【78기】네이", + 91, + 81, + 16, + "che_event_징병", + [ + 43219, + 44659, + 790618, + 119306, + 37418 + ], + 0, + "default.jpg", + 78, + "che_241128_0l1Z", + 116, + [ + "hall:dex3", + "hall:killcrew_person", + "hall:tlrate", + "hall:warnum" + ] + ], + [ + "【78기】마요이", + 15, + 73, + 95, + "che_event_신중", + [ + 0, + 0, + 0, + 0, + 0 + ], + 1, + "2b49c945.png?=20230921", + 78, + "che_241128_0l1Z", + 117, + [ + "hall:tirate" + ] + ], + [ + "【78기】독구?싶다", + 77, + 15, + 92, + "che_event_의술", + [ + 90686, + 26565, + 31719, + 448962, + 32155 + ], + 1, + "3942e813.jpg?=20241214", + 78, + "che_241128_0l1Z", + 123, + [ + "hall:betrate", + "hall:betwingold", + "hall:dedication", + "hall:ttrate" + ] + ], + [ + "【78기】염인백화검", + 82, + 90, + 15, + "che_event_견고", + [ + 36598, + 31158, + 620260, + 62470, + 15513 + ], + 1, + "690ecb79.jpg?=20241202", + 78, + "che_241128_0l1Z", + 214, + [ + "hall:dex3", + "hall:ttrate" + ] + ], + [ + "【78기】인민탱크", + 92, + 80, + 15, + "che_event_척사", + [ + 56241, + 1299194, + 27014, + 45620, + 16384 + ], + 1, + "429da69d.png?=20241129", + 78, + "che_241128_0l1Z", + 225, + [ + "hall:betgold", + "hall:betrate", + "hall:betwingold", + "hall:dex2", + "hall:killcrew", + "hall:killcrew_person", + "hall:killnum", + "hall:warnum" + ] + ], + [ + "【78기】제갈여포", + 79, + 15, + 88, + "che_event_집중", + [ + 59238, + 56422, + 16633, + 573185, + 36044 + ], + 1, + "bcef0af5.jpg?=20241203", + 78, + "che_241128_0l1Z", + 231, + [ + "hall:dex4", + "hall:firenum" + ] + ], + [ + "【78기】독카류", + 76, + 90, + 15, + "che_event_위압", + [ + 525675, + 15497, + 30456, + 91958, + 36018 + ], + 1, + "79566ab5.jpg?=20241107", + 78, + "che_241128_0l1Z", + 234, + [ + "hall:firenum", + "hall:killrate", + "hall:tsrate" + ] + ], + [ + "【78기】코드명다이스키", + 96, + 74, + 15, + "che_event_필살", + [ + 111462, + 54361, + 465180, + 53524, + 18047 + ], + 1, + "d00e5575.jpg?=20241213", + 78, + "che_241128_0l1Z", + 260, + [ + "hall:dex3", + "hall:tlrate" + ] + ], + [ + "【78기】독건적 경계근무원", + 15, + 73, + 92, + "che_event_환술", + [ + 0, + 0, + 0, + 0, + 0 + ], + 1, + "0ebf2920.png?=20241130", + 78, + "che_241128_0l1Z", + 271, + [ + "hall:dedication" + ] + ], + [ + "【78기】잡았다요놈", + 78, + 88, + 15, + "che_event_척사", + [ + 530984, + 45539, + 17438, + 61752, + 40763 + ], + 1, + "28b94d56.png?=20241129", + 78, + "che_241128_0l1Z", + 273, + [ + "chief:8", + "hall:firenum" + ] + ], + [ + "【78기】조승상", + 89, + 76, + 16, + "che_event_견고", + [ + 19421, + 63412, + 400740, + 83454, + 40662 + ], + 1, + "6f27503f.png?=20240322", + 78, + "che_241128_0l1Z", + 275, + [ + "hall:dex3" + ] + ], + [ + "【78기】로력영웅", + 15, + 75, + 91, + "che_event_집중", + [ + 0, + 0, + 0, + 0, + 0 + ], + 0, + "default.jpg", + 78, + "che_241128_0l1Z", + 428, + [ + "hall:dedication" + ] + ], + [ + "【78기】밥먹달금", + 15, + 72, + 90, + "che_event_신산", + [ + 0, + 0, + 0, + 0, + 0 + ], + 0, + "default.jpg", + 78, + "che_241128_0l1Z", + 476, + [ + "hall:dedication", + "hall:firenum" + ] + ], + [ + "【79기】강자", + 79, + 96, + 15, + "che_event_필살", + [ + 63793, + 678995, + 12782, + 33695, + 56926 + ], + 1, + "6e8de885.jpg?=20241226", + 79, + "che_241226_nOZq", + 8, + [ + "hall:betrate", + "hall:dex2", + "hall:dex5", + "hall:tsrate", + "hall:winrate" + ] + ], + [ + "【79기】임사영", + 78, + 102, + 15, + "che_event_필살", + [ + 2317835, + 35686, + 65444, + 103215, + 66799 + ], + 1, + "0b5a2642.jpg?=20240305", + 79, + "che_241226_nOZq", + 9, + [ + "chief:12", + "hall:dedication", + "hall:dex1", + "hall:dex5", + "hall:experience", + "hall:killcrew", + "hall:killcrew_person", + "hall:killnum", + "hall:killrate", + "hall:killrate_person", + "hall:occupied", + "hall:tsrate", + "hall:warnum", + "hall:winrate" + ] + ], + [ + "【79기】에다", + 100, + 73, + 15, + "che_event_척사", + [ + 38174, + 73161, + 34501, + 85446, + 725746 + ], + 1, + "06457219.png?=20241225", + 79, + "che_241226_nOZq", + 10, + [ + "hall:betrate", + "hall:dex5", + "hall:tlrate" + ] + ], + [ + "【79기】Bee폭력티모", + 73, + 16, + 96, + "che_event_필살", + [ + 14991, + 15511, + 6941, + 194030, + 26253 + ], + 1, + "88704de6.jpg?=20241226", + 79, + "che_241226_nOZq", + 16, + [ + "hall:tirate" + ] + ], + [ + "【79기】종", + 82, + 16, + 91, + "che_event_필살", + [ + 33830, + 27294, + 49816, + 1001545, + 87784 + ], + 1, + "22d60298.png?=20241226", + 79, + "che_241226_nOZq", + 19, + [ + "chief:7", + "hall:dedication", + "hall:dex4", + "hall:dex5", + "hall:experience", + "hall:killcrew", + "hall:killnum", + "hall:killrate_person", + "hall:occupied", + "hall:warnum", + "hall:winrate" + ] + ], + [ + "【79기】장원영", + 102, + 70, + 15, + "che_event_공성", + [ + 4062, + 0, + 0, + 9403, + 324475 + ], + 1, + "6314d1a5.jpg?=20241226", + 79, + "che_241226_nOZq", + 22, + [ + "hall:dex5", + "hall:killrate", + "hall:tlrate" + ] + ], + [ + "【79기】카류", + 97, + 75, + 15, + "che_event_필살", + [ + 877789, + 33030, + 99916, + 117676, + 41972 + ], + 1, + "493a6d55.png?=20241227", + 79, + "che_241226_nOZq", + 26, + [ + "hall:dex1", + "hall:experience", + "hall:firenum", + "hall:occupied", + "hall:tlrate" + ] + ], + [ + "【79기】키키라라비비", + 82, + 15, + 88, + "che_event_신중", + [ + 48908, + 52625, + 90141, + 754078, + 35760 + ], + 1, + "825fe816.png?=20241226", + 79, + "che_241226_nOZq", + 28, + [ + "hall:dex4" + ] + ], + [ + "【79기】척", + 15, + 70, + 101, + "che_event_환술", + [ + 0, + 0, + 0, + 0, + 0 + ], + 1, + "7cb75480.png?=20221202", + 79, + "che_241226_nOZq", + 29, + [ + "hall:dedication", + "hall:experience", + "hall:tirate" + ] + ], + [ + "【79기】퍄퍄", + 79, + 92, + 15, + "che_event_필살", + [ + 1222010, + 18123, + 46499, + 35188, + 43653 + ], + 0, + "default.jpg", + 79, + "che_241226_nOZq", + 30, + [ + "hall:dex1", + "hall:experience", + "hall:killcrew", + "hall:killcrew_person", + "hall:killrate", + "hall:killrate_person", + "hall:occupied" + ] + ], + [ + "【79기】스쿼트", + 96, + 77, + 15, + "che_event_격노", + [ + 45040, + 62574, + 1049335, + 53377, + 66002 + ], + 1, + "fb78011e.jpg?=20241227", + 79, + "che_241226_nOZq", + 34, + [ + "hall:betgold", + "hall:betwingold", + "hall:dex3", + "hall:dex5", + "hall:tlrate" + ] + ], + [ + "【79기】김나영", + 80, + 92, + 15, + "che_event_위압", + [ + 706362, + 6786, + 79647, + 93364, + 14020 + ], + 1, + "26decc5a.jpg?=20250103", + 79, + "che_241226_nOZq", + 35, + [ + "hall:dex1" + ] + ], + [ + "【79기】강유", + 79, + 15, + 92, + "che_event_집중", + [ + 39796, + 50933, + 78473, + 630373, + 43169 + ], + 1, + "79e150d0.jpg?=20230921", + 79, + "che_241226_nOZq", + 36, + [ + "hall:dex4" + ] + ], + [ + "【79기】바나낫", + 79, + 95, + 15, + "che_event_돌격", + [ + 107456, + 21706, + 260132, + 80391, + 28414 + ], + 1, + "95478fad.gif?=20241223", + 79, + "che_241226_nOZq", + 37, + [ + "hall:betgold", + "hall:betrate", + "hall:betwingold", + "hall:tsrate" + ] + ], + [ + "【79기】Hide_D", + 74, + 15, + 98, + "che_event_필살", + [ + 9095, + 2561, + 16954, + 181157, + 10453 + ], + 1, + "4569d848.png?=20230612", + 79, + "che_241226_nOZq", + 44, + [ + "hall:tirate", + "hall:ttrate" + ] + ], + [ + "【79기】총각파티", + 82, + 91, + 15, + "che_event_필살", + [ + 34217, + 80919, + 904274, + 86425, + 75328 + ], + 0, + "default.jpg", + 79, + "che_241226_nOZq", + 49, + [ + "hall:betgold", + "hall:betwin", + "hall:betwingold", + "hall:dex3", + "hall:dex5" + ] + ], + [ + "【79기】귀농한 독구", + 15, + 77, + 95, + "che_event_환술", + [ + 0, + 0, + 0, + 0, + 0 + ], + 1, + "5283daf7.png?=20240511", + 79, + "che_241226_nOZq", + 51, + [ + "hall:betwin" + ] + ], + [ + "【79기】영", + 96, + 78, + 15, + "che_event_돌격", + [ + 34343, + 87195, + 1170110, + 78124, + 54891 + ], + 0, + "default.jpg", + 79, + "che_241226_nOZq", + 64, + [ + "chief:10", + "hall:betgold", + "hall:betrate", + "hall:betwin", + "hall:betwingold", + "hall:dex3", + "hall:killnum", + "hall:tlrate", + "hall:warnum" + ] + ], + [ + "【79기】유산흡수", + 78, + 16, + 95, + "che_event_필살", + [ + 42311, + 31565, + 45042, + 835483, + 34851 + ], + 0, + "default.jpg", + 79, + "che_241226_nOZq", + 68, + [ + "hall:dex4", + "hall:ttrate" + ] + ], + [ + "【79기】윤석열", + 75, + 15, + 94, + "che_event_신산", + [ + 8192, + 6536, + 3776, + 177661, + 7559 + ], + 1, + "3821e77c.jpg?=20241226", + 79, + "che_241226_nOZq", + 70, + [ + "hall:tirate", + "hall:ttrate" + ] + ], + [ + "【79기】호나", + 91, + 82, + 15, + "che_event_격노", + [ + 540357, + 110416, + 566795, + 79866, + 32561 + ], + 0, + "default.jpg", + 79, + "che_241226_nOZq", + 73, + [ + "chief:8", + "hall:betgold", + "hall:betrate", + "hall:betwingold", + "hall:dex1", + "hall:dex2", + "hall:dex3", + "hall:killcrew", + "hall:killcrew_person", + "hall:tlrate", + "hall:warnum" + ] + ], + [ + "【79기】셀레미파", + 92, + 80, + 15, + "che_event_격노", + [ + 28027, + 12004, + 517481, + 43187, + 28309 + ], + 1, + "bafe6193.jpg?=20241226", + 79, + "che_241226_nOZq", + 74, + [ + "hall:betrate", + "hall:dex3" + ] + ], + [ + "【79기】세종", + 76, + 93, + 15, + "che_event_저격", + [ + 35587, + 79855, + 189496, + 32515, + 32696 + ], + 1, + "4907c406.jpg?=20241225", + 79, + "che_241226_nOZq", + 79, + [ + "hall:tsrate" + ] + ], + [ + "【79기】Navy마초", + 80, + 91, + 15, + "che_event_견고", + [ + 839378, + 74438, + 116556, + 122221, + 30989 + ], + 1, + "37644ed3.png?=20230831", + 79, + "che_241226_nOZq", + 81, + [ + "hall:dex1" + ] + ], + [ + "【79기】노네임", + 74, + 96, + 15, + "che_event_징병", + [ + 256303, + 87467, + 12622, + 31424, + 23335 + ], + 1, + "7c08b5e9.jpg?=20241227", + 79, + "che_241226_nOZq", + 82, + [ + "hall:dex2" + ] + ], + [ + "【79기】스즈키상", + 74, + 15, + 96, + "che_event_환술", + [ + 9008, + 900, + 3560, + 130222, + 14672 + ], + 1, + "5d65c98b.jpg?=20241226", + 79, + "che_241226_nOZq", + 83, + [ + "hall:tirate", + "hall:ttrate" + ] + ], + [ + "【79기】새해복많이받으세요", + 79, + 93, + 16, + "che_event_저격", + [ + 48544, + 445268, + 14789, + 33957, + 24493 + ], + 0, + "default.jpg", + 79, + "che_241226_nOZq", + 84, + [ + "hall:dex2", + "hall:tsrate" + ] + ], + [ + "【79기】마요이", + 15, + 73, + 99, + "che_event_척사", + [ + 0, + 0, + 0, + 0, + 0 + ], + 1, + "2b49c945.png?=20230921", + 79, + "che_241226_nOZq", + 85, + [ + "hall:dedication", + "hall:experience", + "hall:tirate" + ] + ], + [ + "【79기】와일드플라워", + 79, + 16, + 97, + "che_event_무쌍", + [ + 22377, + 25269, + 36130, + 1569675, + 36875 + ], + 0, + "default.jpg", + 79, + "che_241226_nOZq", + 86, + [ + "chief:9", + "hall:dedication", + "hall:dex4", + "hall:experience", + "hall:killcrew", + "hall:killcrew_person", + "hall:killnum", + "hall:killrate", + "hall:killrate_person", + "hall:occupied", + "hall:warnum", + "hall:winrate" + ] + ], + [ + "【79기】독죽이", + 97, + 74, + 15, + "che_event_필살", + [ + 18969, + 351230, + 1358, + 30808, + 13444 + ], + 1, + "4c87df23.png?=20241231", + 79, + "che_241226_nOZq", + 87, + [ + "hall:betrate", + "hall:betwin", + "hall:dex2", + "hall:occupied", + "hall:tlrate", + "hall:winrate" + ] + ], + [ + "【79기】최진리", + 77, + 93, + 15, + "che_event_척사", + [ + 415248, + 3997, + 57469, + 74120, + 15620 + ], + 1, + "677580c5.jpg?=20241230", + 79, + "che_241226_nOZq", + 88, + [ + "hall:tsrate" + ] + ], + [ + "【79기】대교", + 94, + 82, + 15, + "che_event_돌격", + [ + 1815993, + 40758, + 134941, + 197112, + 93118 + ], + 1, + "a53ab5ef.jpg?=20241010", + 79, + "che_241226_nOZq", + 89, + [ + "chief:11", + "hall:dedication", + "hall:dex1", + "hall:dex5", + "hall:experience", + "hall:killcrew", + "hall:killcrew_person", + "hall:killnum", + "hall:killrate", + "hall:killrate_person", + "hall:occupied", + "hall:tlrate", + "hall:warnum", + "hall:winrate" + ] + ], + [ + "【79기】NK", + 76, + 97, + 15, + "che_event_돌격", + [ + 494214, + 27814, + 63403, + 108969, + 14764 + ], + 0, + "default.jpg", + 79, + "che_241226_nOZq", + 90, + [ + "hall:tsrate" + ] + ], + [ + "【79기】복숭아좋아", + 76, + 15, + 96, + "che_event_집중", + [ + 24596, + 5622, + 7937, + 265419, + 20579 + ], + 0, + "default.jpg", + 79, + "che_241226_nOZq", + 91, + [ + "hall:ttrate" + ] + ], + [ + "【79기】매그너스", + 94, + 77, + 15, + "che_event_격노", + [ + 35029, + 72008, + 571644, + 81430, + 29462 + ], + 1, + "b00f1906.jpg?=20250102", + 79, + "che_241226_nOZq", + 92, + [ + "hall:dex3", + "hall:tlrate" + ] + ], + [ + "【79기】panpenpan", + 76, + 15, + 93, + "che_event_필살", + [ + 11945, + 7696, + 14670, + 181080, + 18726 + ], + 0, + "default.jpg", + 79, + "che_241226_nOZq", + 93, + [ + "hall:tirate", + "hall:ttrate" + ] + ], + [ + "【79기】백화점레드썬", + 78, + 92, + 15, + "che_event_무쌍", + [ + 52547, + 459440, + 17858, + 53992, + 15652 + ], + 0, + "default.jpg", + 79, + "che_241226_nOZq", + 94, + [ + "hall:dex2" + ] + ], + [ + "【79기】비스마르크", + 80, + 95, + 15, + "che_event_견고", + [ + 36465, + 1353438, + 39081, + 26973, + 35090 + ], + 0, + "default.jpg", + 79, + "che_241226_nOZq", + 96, + [ + "hall:dex2", + "hall:experience", + "hall:killcrew", + "hall:killcrew_person", + "hall:killnum", + "hall:killrate", + "hall:killrate_person", + "hall:ttrate", + "hall:warnum" + ] + ], + [ + "【79기】로비", + 19, + 72, + 95, + "che_event_저격", + [ + 0, + 0, + 0, + 0, + 0 + ], + 1, + "71751125.png?=20240823", + 79, + "che_241226_nOZq", + 97, + [ + "hall:tirate", + "hall:ttrate" + ] + ], + [ + "【79기】카이스트", + 80, + 17, + 93, + "che_event_필살", + [ + 44266, + 49450, + 94343, + 800064, + 27336 + ], + 1, + "e7e27cd6.jpg?=20221125", + 79, + "che_241226_nOZq", + 101, + [ + "hall:dex4", + "hall:winrate" + ] + ], + [ + "【79기】간지밍이", + 19, + 78, + 91, + "che_event_신중", + [ + 0, + 0, + 0, + 0, + 0 + ], + 1, + "b3e03d5f.png?=20241207", + 79, + "che_241226_nOZq", + 102, + [ + "hall:betgold", + "hall:betwin", + "hall:betwingold" + ] + ], + [ + "【79기】소수맥", + 84, + 90, + 15, + "che_event_필살", + [ + 70206, + 828055, + 106558, + 87694, + 42239 + ], + 0, + "default.jpg", + 79, + "che_241226_nOZq", + 103, + [ + "hall:betwin", + "hall:dex2", + "hall:killnum", + "hall:occupied", + "hall:warnum" + ] + ], + [ + "【79기】이바라히메", + 79, + 92, + 16, + "che_event_견고", + [ + 511396, + 8475, + 64966, + 81113, + 35455 + ], + 1, + "3e8815e4.png?=20241226", + 79, + "che_241226_nOZq", + 104, + [ + "hall:dex1", + "hall:tsrate", + "hall:ttrate" + ] + ], + [ + "【79기】사스케", + 73, + 94, + 15, + "che_event_징병", + [ + 14149, + 5605, + 427142, + 41595, + 26178 + ], + 1, + "53aa49bd.jpg?=20241203", + 79, + "che_241226_nOZq", + 105, + [ + "hall:betgold", + "hall:betwin", + "hall:betwingold" + ] + ], + [ + "【79기】크렌스", + 77, + 94, + 15, + "che_event_돌격", + [ + 49574, + 287951, + 34088, + 41868, + 26355 + ], + 1, + "e48108cf.jpg?=20241226", + 79, + "che_241226_nOZq", + 106, + [ + "hall:dex2", + "hall:killrate", + "hall:killrate_person", + "hall:tsrate", + "hall:winrate" + ] + ], + [ + "【79기】네이", + 87, + 15, + 89, + "che_event_징병", + [ + 78671, + 32271, + 45035, + 862340, + 45742 + ], + 0, + "default.jpg", + 79, + "che_241226_nOZq", + 107, + [ + "hall:dex4", + "hall:firenum" + ] + ], + [ + "【79기】독구", + 77, + 15, + 96, + "che_event_집중", + [ + 58872, + 33592, + 22578, + 529649, + 51192 + ], + 1, + "961027d2.png?=20241226", + 79, + "che_241226_nOZq", + 108, + [ + "hall:tirate" + ] + ], + [ + "【79기】진솔", + 16, + 71, + 100, + "che_event_의술", + [ + 0, + 0, + 0, + 0, + 0 + ], + 1, + "ed6e48d5.png?=20240719", + 79, + "che_241226_nOZq", + 111, + [ + "hall:dedication", + "hall:tirate" + ] + ], + [ + "【79기】Sase", + 79, + 16, + 90, + "che_event_필살", + [ + 113167, + 29899, + 127194, + 618776, + 58518 + ], + 1, + "cb8e4672.jpg?=20241224", + 79, + "che_241226_nOZq", + 112, + [ + "hall:betgold", + "hall:betrate", + "hall:betwin", + "hall:betwingold", + "hall:dex4", + "hall:dex5", + "hall:occupied" + ] + ], + [ + "【79기】쩝쩝", + 80, + 92, + 16, + "che_event_무쌍", + [ + 969055, + 25084, + 126899, + 81801, + 29202 + ], + 0, + "default.jpg", + 79, + "che_241226_nOZq", + 113, + [ + "chief:6", + "hall:dex1", + "hall:experience", + "hall:killcrew_person", + "hall:killnum", + "hall:killrate", + "hall:killrate_person", + "hall:winrate" + ] + ], + [ + "【79기】눈구", + 15, + 94, + 76, + "che_event_필살", + [ + 0, + 0, + 0, + 0, + 0 + ], + 1, + "b12f5155.jpg?=20241207", + 79, + "che_241226_nOZq", + 115, + [ + "hall:dedication" + ] + ], + [ + "【79기】?", + 80, + 15, + 89, + "che_event_환술", + [ + 40698, + 52425, + 52064, + 1031899, + 52036 + ], + 0, + "default.jpg", + 79, + "che_241226_nOZq", + 116, + [ + "chief:5", + "hall:dex4", + "hall:killcrew", + "hall:killcrew_person", + "hall:killrate", + "hall:killrate_person" + ] + ], + [ + "【79기】오징어", + 78, + 95, + 15, + "che_event_돌격", + [ + 820374, + 27174, + 45572, + 91488, + 24593 + ], + 1, + "0157a7f3.png?=20241226", + 79, + "che_241226_nOZq", + 118, + [ + "hall:betwin", + "hall:dex1", + "hall:tsrate" + ] + ], + [ + "【79기】Air", + 82, + 93, + 15, + "che_event_징병", + [ + 19539, + 32493, + 1422773, + 27725, + 22673 + ], + 0, + "default.jpg", + 79, + "che_241226_nOZq", + 119, + [ + "hall:dex3", + "hall:killcrew", + "hall:killcrew_person", + "hall:killnum", + "hall:warnum" + ] + ], + [ + "【79기】외심장", + 79, + 16, + 93, + "che_event_집중", + [ + 48570, + 86879, + 86980, + 1118072, + 43703 + ], + 1, + "36110cd.jpg?=20180826", + 79, + "che_241226_nOZq", + 123, + [ + "hall:dex4", + "hall:killcrew", + "hall:killcrew_person", + "hall:killnum", + "hall:killrate", + "hall:killrate_person", + "hall:occupied", + "hall:warnum", + "hall:winrate" + ] + ], + [ + "【79기】이드", + 15, + 78, + 94, + "che_event_의술", + [ + 0, + 0, + 0, + 0, + 0 + ], + 1, + "ac5f0a3b.jpg?=20241107", + 79, + "che_241226_nOZq", + 126, + [ + "hall:firenum" + ] + ], + [ + "【79기】ㅊㄹㅊㄹ", + 81, + 90, + 15, + "che_event_돌격", + [ + 46835, + 48440, + 800205, + 66519, + 45865 + ], + 1, + "63f1c106.png?=20230223", + 79, + "che_241226_nOZq", + 132, + [ + "hall:dex3" + ] + ], + [ + "【79기】니쉬", + 90, + 15, + 81, + "che_event_집중", + [ + 13483, + 11598, + 46489, + 600762, + 19784 + ], + 1, + "8d8f0ebd.png?=20241226", + 79, + "che_241226_nOZq", + 135, + [ + "hall:betgold", + "hall:betwin" + ] + ], + [ + "【79기】황혼중", + 15, + 79, + 93, + "che_event_신중", + [ + 0, + 0, + 0, + 0, + 0 + ], + 1, + "e5161df9.jpg?=20231110", + 79, + "che_241226_nOZq", + 136, + [ + "hall:dedication" + ] + ], + [ + "【79기】양면 스쿠나", + 99, + 73, + 15, + "che_event_위압", + [ + 123630, + 257990, + 591731, + 88256, + 82812 + ], + 1, + "7dddaca0.jpg?=20241227", + 79, + "che_241226_nOZq", + 214, + [ + "hall:betrate", + "hall:betwingold", + "hall:dex2", + "hall:dex3", + "hall:dex5", + "hall:tlrate" + ] + ], + [ + "【79기】레드캡피자", + 74, + 16, + 96, + "che_event_신중", + [ + 10450, + 1247, + 20268, + 137187, + 11575 + ], + 1, + "06c40c7e.jpg?=20241015", + 79, + "che_241226_nOZq", + 257, + [ + "hall:ttrate" + ] + ], + [ + "【79기】도화가", + 16, + 73, + 94, + "che_event_필살", + [ + 0, + 0, + 0, + 0, + 0 + ], + 1, + "04dc945f.jpg?=20241227", + 79, + "che_241226_nOZq", + 272, + [ + "hall:firenum" + ] + ], + [ + "【79기】컴퓨터", + 78, + 90, + 17, + "che_event_기병", + [ + 15205, + 58750, + 610722, + 87150, + 24013 + ], + 0, + "default.jpg", + 79, + "che_241226_nOZq", + 289, + [ + "hall:dex3" + ] + ], + [ + "【79기】Kman", + 16, + 90, + 73, + "che_event_무쌍", + [ + 0, + 0, + 0, + 0, + 0 + ], + 1, + "1851f40c.jpg?=20250101", + 79, + "che_241226_nOZq", + 447, + [ + "hall:firenum" + ] + ], + [ + "【79기】지금퇴근합니다", + 15, + 73, + 93, + "che_event_필살", + [ + 0, + 0, + 0, + 20, + 0 + ], + 0, + "default.jpg", + 79, + "che_241226_nOZq", + 477, + [ + "hall:betgold", + "hall:betrate", + "hall:betwingold", + "hall:dedication" + ] + ], + [ + "【80기】GigaChad", + 83, + 70, + 13, + "che_event_필살", + [ + 102222, + 837000, + 41457, + 85003, + 27977 + ], + 1, + "9c3754a9.webp?=20250221", + 80, + "che_250123_1OYX", + 3, + [ + "hall:betwin", + "hall:dex1", + "hall:killcrew", + "hall:killcrew_person", + "hall:killnum", + "hall:killrate", + "hall:killrate_person", + "hall:occupied", + "hall:warnum" + ] + ], + [ + "【80기】카이스트", + 72, + 13, + 81, + "che_event_의술", + [ + 29589, + 68849, + 36832, + 466312, + 13252 + ], + 1, + "e7e27cd6.jpg?=20221125", + 80, + "che_250123_1OYX", + 4, + [ + "hall:dex4" + ] + ], + [ + "【80기】임사영", + 71, + 88, + 13, + "che_event_징병", + [ + 814140, + 71577, + 553522, + 137457, + 67792 + ], + 1, + "0b5a2642.jpg?=20240305", + 80, + "che_250123_1OYX", + 9, + [ + "hall:dex1", + "hall:dex3", + "hall:dex5", + "hall:experience", + "hall:killcrew", + "hall:killcrew_person", + "hall:killnum", + "hall:killrate", + "hall:occupied", + "hall:warnum" + ] + ], + [ + "【80기】구강재", + 70, + 85, + 14, + "che_event_필살", + [ + 23296, + 34234, + 1008916, + 64154, + 33620 + ], + 1, + "4ffa4d2a.jpg?=20250123", + 80, + "che_250123_1OYX", + 10, + [ + "chief:8", + "hall:betgold", + "hall:betrate", + "hall:betwingold", + "hall:dex3", + "hall:dex5", + "hall:experience", + "hall:killcrew", + "hall:killcrew_person", + "hall:killnum", + "hall:tsrate", + "hall:ttrate", + "hall:warnum", + "hall:winrate" + ] + ], + [ + "【80기】장원영", + 69, + 14, + 83, + "che_event_필살", + [ + 42272, + 66619, + 44769, + 667824, + 15825 + ], + 1, + "6314d1a5.jpg?=20241226", + 80, + "che_250123_1OYX", + 19, + [ + "chief:5", + "hall:betgold", + "hall:dex4", + "hall:winrate" + ] + ], + [ + "【80기】Air", + 73, + 87, + 16, + "che_event_척사", + [ + 64641, + 721077, + 17002, + 26380, + 47420 + ], + 0, + "default.jpg", + 80, + "che_250123_1OYX", + 21, + [ + "chief:10", + "hall:dex2", + "hall:killrate", + "hall:occupied" + ] + ], + [ + "【80기】바나낫", + 72, + 82, + 13, + "che_event_저격", + [ + 381089, + 199000, + 69758, + 59103, + 11540 + ], + 1, + "95478fad.gif?=20241223", + 80, + "che_250123_1OYX", + 23, + [ + "hall:dex1" + ] + ], + [ + "【80기】눈구", + 14, + 80, + 69, + "che_event_징병", + [ + 0, + 1951, + 0, + 0, + 675 + ], + 1, + "1fc09892.webp?=20250123", + 80, + "che_250123_1OYX", + 24, + [ + "hall:betrate", + "hall:dedication", + "hall:experience", + "hall:ttrate" + ] + ], + [ + "【80기】모전구", + 70, + 80, + 13, + "che_event_격노", + [ + 10804, + 20921, + 378660, + 50952, + 8551 + ], + 1, + "0e023deb.jpg?=20240425", + 80, + "che_250123_1OYX", + 31, + [ + "hall:tsrate" + ] + ], + [ + "【80기】니쉬", + 84, + 76, + 17, + "che_event_징병", + [ + 6161, + 40598, + 516872, + 35048, + 9473 + ], + 1, + "8d8f0ebd.png?=20241226", + 80, + "che_250123_1OYX", + 32, + [ + "hall:betgold", + "hall:betwin", + "hall:betwingold", + "hall:dex3" + ] + ], + [ + "【80기】데드리프트", + 72, + 13, + 81, + "che_event_집중", + [ + 19706, + 16803, + 22539, + 477185, + 17413 + ], + 1, + "72ee7a43.jpg?=20250127", + 80, + "che_250123_1OYX", + 36, + [ + "hall:tirate" + ] + ], + [ + "【80기】강유", + 71, + 13, + 84, + "che_event_필살", + [ + 32494, + 27916, + 30212, + 954156, + 30813 + ], + 1, + "79e150d0.jpg?=20230921", + 80, + "che_250123_1OYX", + 38, + [ + "hall:dex4", + "hall:killcrew", + "hall:killrate", + "hall:killrate_person" + ] + ], + [ + "【80기】척", + 68, + 13, + 85, + "che_event_집중", + [ + 28995, + 49733, + 41175, + 505006, + 41223 + ], + 1, + "7cb75480.png?=20221202", + 80, + "che_250123_1OYX", + 42, + [ + "hall:tirate" + ] + ], + [ + "【80기】외심장", + 71, + 14, + 84, + "che_event_집중", + [ + 24570, + 34338, + 19382, + 756555, + 42561 + ], + 1, + "36110cd.jpg?=20180826", + 80, + "che_250123_1OYX", + 46, + [ + "hall:dex4", + "hall:killrate_person", + "hall:occupied", + "hall:winrate" + ] + ], + [ + "【80기】ㅇㅅㅇ", + 77, + 13, + 77, + "che_event_징병", + [ + 68741, + 61441, + 35756, + 820507, + 38444 + ], + 0, + "default.jpg", + 80, + "che_250123_1OYX", + 50, + [ + "hall:dex4", + "hall:killcrew_person", + "hall:killnum", + "hall:warnum" + ] + ], + [ + "【80기】냥냥냥", + 71, + 15, + 88, + "che_event_필살", + [ + 297512, + 51367, + 28950, + 253190, + 16009 + ], + 1, + "458caeac.gif?=20240919", + 80, + "che_250123_1OYX", + 51, + [ + "hall:dex1", + "hall:ttrate" + ] + ], + [ + "【80기】새해기념복귀유저", + 69, + 13, + 85, + "che_event_환술", + [ + 19018, + 42892, + 41250, + 482651, + 30917 + ], + 0, + "default.jpg", + 80, + "che_250123_1OYX", + 57, + [ + "hall:dex5", + "hall:tirate" + ] + ], + [ + "【80기】네이미", + 66, + 13, + 84, + "che_event_신중", + [ + 36860, + 14414, + 21960, + 362348, + 38170 + ], + 0, + "default.jpg", + 80, + "che_250123_1OYX", + 61, + [ + "hall:dedication" + ] + ], + [ + "【80기】Kashmir", + 80, + 73, + 13, + "che_event_척사", + [ + 56628, + 540168, + 20161, + 64533, + 24126 + ], + 1, + "4c5c1bda.png?=20250123", + 80, + "che_250123_1OYX", + 62, + [ + "hall:dex2", + "hall:tlrate" + ] + ], + [ + "【80기】마요이", + 14, + 63, + 86, + "che_event_의술", + [ + 0, + 0, + 0, + 0, + 0 + ], + 1, + "2b49c945.png?=20230921", + 80, + "che_250123_1OYX", + 63, + [ + "hall:dedication", + "hall:experience", + "hall:tirate" + ] + ], + [ + "【80기】세뱃돈 강탈범 독구", + 13, + 64, + 87, + "che_event_의술", + [ + 0, + 0, + 0, + 0, + 0 + ], + 1, + "5283daf7.png?=20240511", + 80, + "che_250123_1OYX", + 64, + [ + "hall:betwin", + "hall:tirate", + "hall:ttrate" + ] + ], + [ + "【80기】보병", + 70, + 81, + 13, + "che_event_필살", + [ + 556500, + 6226, + 71790, + 39101, + 21842 + ], + 0, + "default.jpg", + 80, + "che_250123_1OYX", + 67, + [ + "hall:betrate", + "hall:betwin", + "hall:betwingold", + "hall:dex1", + "hall:occupied" + ] + ], + [ + "【80기】TQQQ", + 83, + 72, + 13, + "che_event_징병", + [ + 153933, + 161117, + 904235, + 87749, + 35094 + ], + 1, + "b9748e57.jpg?=20250123", + 80, + "che_250123_1OYX", + 69, + [ + "hall:betrate", + "hall:dex3", + "hall:dex5", + "hall:experience", + "hall:killcrew", + "hall:killcrew_person", + "hall:occupied", + "hall:tlrate", + "hall:warnum" + ] + ], + [ + "【80기】고죠 사토루", + 88, + 13, + 62, + "che_event_필살", + [ + 54211, + 45339, + 23145, + 387810, + 23055 + ], + 1, + "c31e1985.jpg?=20250123", + 80, + "che_250123_1OYX", + 71, + [ + "hall:betrate", + "hall:tlrate" + ] + ], + [ + "【80기】빗으맑읔으", + 65, + 82, + 13, + "che_event_필살", + [ + 42771, + 46494, + 476168, + 46942, + 16868 + ], + 0, + "default.jpg", + 80, + "che_250123_1OYX", + 72, + [ + "hall:dex3", + "hall:killrate", + "hall:killrate_person", + "hall:tsrate" + ] + ], + [ + "【80기】ARP9", + 72, + 83, + 13, + "che_event_필살", + [ + 33531, + 82788, + 860294, + 88091, + 44609 + ], + 0, + "default.jpg", + 80, + "che_250123_1OYX", + 74, + [ + "hall:betgold", + "hall:betwin", + "hall:dex3", + "hall:dex5", + "hall:killcrew", + "hall:killcrew_person", + "hall:killnum", + "hall:killrate", + "hall:killrate_person", + "hall:warnum", + "hall:winrate" + ] + ], + [ + "【80기】780", + 71, + 81, + 13, + "che_event_격노", + [ + 55445, + 491435, + 29643, + 53846, + 16704 + ], + 0, + "default.jpg", + 80, + "che_250123_1OYX", + 76, + [ + "hall:dex2" + ] + ], + [ + "【80기】와일드플라워", + 67, + 89, + 13, + "che_event_필살", + [ + 13726, + 924141, + 8685, + 14738, + 13092 + ], + 0, + "default.jpg", + 80, + "che_250123_1OYX", + 77, + [ + "hall:dex2", + "hall:experience", + "hall:killcrew", + "hall:killcrew_person", + "hall:killnum", + "hall:killrate", + "hall:killrate_person", + "hall:occupied", + "hall:tsrate", + "hall:winrate" + ] + ], + [ + "【80기】대교", + 84, + 14, + 68, + "che_event_필살", + [ + 23511, + 98283, + 58219, + 517971, + 43056 + ], + 1, + "a53ab5ef.jpg?=20241010", + 80, + "che_250123_1OYX", + 78, + [ + "hall:tlrate" + ] + ], + [ + "【80기】얼룩말", + 67, + 13, + 86, + "che_event_집중", + [ + 45758, + 23978, + 46058, + 565015, + 43132 + ], + 0, + "default.jpg", + 80, + "che_250123_1OYX", + 79, + [ + "chief:11", + "hall:betgold", + "hall:betwingold", + "hall:dedication" + ] + ], + [ + "【80기】TATUM", + 69, + 83, + 13, + "che_event_필살", + [ + 33856, + 501455, + 93265, + 56931, + 28106 + ], + 0, + "default.jpg", + 80, + "che_250123_1OYX", + 80, + [ + "hall:dex2", + "hall:winrate" + ] + ], + [ + "【80기】감흥", + 79, + 73, + 13, + "che_event_필살", + [ + 58798, + 70760, + 544512, + 128664, + 35228 + ], + 0, + "default.jpg", + 80, + "che_250123_1OYX", + 83, + [ + "hall:dex3" + ] + ], + [ + "【80기】환뚜다", + 68, + 13, + 86, + "che_event_집중", + [ + 35729, + 22716, + 13709, + 904270, + 60078 + ], + 1, + "69414a52.gif?=20250215", + 80, + "che_250123_1OYX", + 84, + [ + "chief:9", + "hall:betwin", + "hall:dex4", + "hall:experience", + "hall:occupied", + "hall:tirate", + "hall:ttrate" + ] + ], + [ + "【80기】찐앙카", + 71, + 82, + 14, + "che_event_무쌍", + [ + 21571, + 864121, + 16053, + 16714, + 12533 + ], + 1, + "165b6563.png?=20250123", + 80, + "che_250123_1OYX", + 86, + [ + "hall:dex2", + "hall:experience", + "hall:killcrew", + "hall:killcrew_person", + "hall:killnum", + "hall:killrate", + "hall:killrate_person", + "hall:warnum", + "hall:winrate" + ] + ], + [ + "【80기】불패", + 68, + 84, + 13, + "che_event_필살", + [ + 60528, + 472089, + 20618, + 143525, + 48199 + ], + 1, + "7c08b5e9.jpg?=20241227", + 80, + "che_250123_1OYX", + 87, + [ + "hall:betrate", + "hall:dex5", + "hall:tsrate" + ] + ], + [ + "【80기】버러우", + 79, + 73, + 13, + "che_event_필살", + [ + 274105, + 36696, + 463650, + 108703, + 41968 + ], + 0, + "default.jpg", + 80, + "che_250123_1OYX", + 89, + [ + "hall:betrate", + "hall:dex3", + "hall:killrate", + "hall:killrate_person", + "hall:tlrate" + ] + ], + [ + "【80기】올해의 색", + 83, + 71, + 13, + "che_event_척사", + [ + 334514, + 71393, + 469007, + 86302, + 53869 + ], + 1, + "5c04315c.jpg?=20250123", + 80, + "che_250123_1OYX", + 90, + [ + "chief:12", + "hall:betrate", + "hall:betwingold", + "hall:dedication", + "hall:dex1", + "hall:dex3", + "hall:dex5", + "hall:tlrate" + ] + ], + [ + "【80기】Sase", + 66, + 13, + 84, + "che_event_필살", + [ + 40520, + 79411, + 69410, + 508806, + 37830 + ], + 1, + "cb8e4672.jpg?=20241224", + 80, + "che_250123_1OYX", + 91, + [ + "hall:betgold", + "hall:betwin", + "hall:betwingold", + "hall:dedication" + ] + ], + [ + "【80기】퍄퍄", + 71, + 83, + 13, + "che_event_척사", + [ + 57713, + 461445, + 50345, + 44476, + 25248 + ], + 0, + "default.jpg", + 80, + "che_250123_1OYX", + 94, + [ + "hall:occupied", + "hall:tsrate" + ] + ], + [ + "【80기】독구", + 70, + 14, + 84, + "che_event_필살", + [ + 26497, + 67211, + 23611, + 614788, + 38835 + ], + 1, + "a476abba.png?=20250123", + 80, + "che_250123_1OYX", + 95, + [ + "chief:7", + "hall:dex5" + ] + ], + [ + "【80기】잘먹는서몰더", + 66, + 14, + 85, + "che_event_의술", + [ + 54807, + 15995, + 38161, + 450896, + 52893 + ], + 1, + "5852e807.jpg?=20250123", + 80, + "che_250123_1OYX", + 96, + [ + "hall:tirate", + "hall:ttrate" + ] + ], + [ + "【80기】쪼꼬미", + 69, + 87, + 13, + "che_event_격노", + [ + 535403, + 54295, + 52059, + 72964, + 19168 + ], + 1, + "d344d6aa.jpg?=20250208", + 80, + "che_250123_1OYX", + 98, + [ + "hall:dex2", + "hall:tsrate" + ] + ], + [ + "【80기】감훙", + 79, + 74, + 13, + "che_event_위압", + [ + 43841, + 418005, + 29082, + 41030, + 9633 + ], + 0, + "default.jpg", + 80, + "che_250123_1OYX", + 99, + [ + "hall:dex2" + ] + ], + [ + "【80기】NK", + 89, + 67, + 13, + "che_event_필살", + [ + 38219, + 35449, + 48859, + 54409, + 506289 + ], + 0, + "default.jpg", + 80, + "che_250123_1OYX", + 100, + [ + "hall:betgold", + "hall:betrate", + "hall:betwingold", + "hall:dex1", + "hall:tlrate" + ] + ], + [ + "【80기】ㅊㄹㅊㄹ", + 72, + 82, + 14, + "che_event_필살", + [ + 54626, + 72172, + 577622, + 60357, + 15799 + ], + 1, + "63f1c106.png?=20230223", + 80, + "che_250123_1OYX", + 101, + [ + "hall:dex3", + "hall:killnum", + "hall:warnum" + ] + ], + [ + "【80기】Hide_D", + 71, + 13, + 85, + "che_event_귀병", + [ + 15450, + 20752, + 45326, + 541930, + 7913 + ], + 1, + "4569d848.png?=20230612", + 80, + "che_250123_1OYX", + 102, + [ + "hall:dex4", + "hall:tirate", + "hall:winrate" + ] + ], + [ + "【80기】간지밍이", + 15, + 69, + 75, + "che_event_집중", + [ + 0, + 0, + 0, + 0, + 0 + ], + 1, + "b3e03d5f.png?=20241207", + 80, + "che_250123_1OYX", + 103, + [ + "hall:betgold" + ] + ], + [ + "【80기】배찌", + 81, + 72, + 14, + "che_event_징병", + [ + 675774, + 8823, + 80332, + 60425, + 21125 + ], + 1, + "89cfccf8.png?=20250123", + 80, + "che_250123_1OYX", + 104, + [ + "hall:betrate", + "hall:betwingold", + "hall:dex1" + ] + ], + [ + "【80기】사스케", + 93, + 70, + 15, + "che_event_공성", + [ + 58357, + 38403, + 59840, + 54017, + 2540171 + ], + 1, + "53aa49bd.jpg?=20241203", + 80, + "che_250123_1OYX", + 105, + [ + "chief:6", + "hall:betgold", + "hall:betwin", + "hall:betwingold", + "hall:dex5", + "hall:experience", + "hall:killcrew", + "hall:killcrew_person", + "hall:killnum", + "hall:killrate", + "hall:killrate_person", + "hall:occupied", + "hall:tlrate", + "hall:warnum", + "hall:winrate" + ] + ], + [ + "【80기】지각생", + 75, + 87, + 15, + "che_event_격노", + [ + 150028, + 907296, + 29305, + 144886, + 41673 + ], + 0, + "default.jpg", + 80, + "che_250123_1OYX", + 110, + [ + "hall:betwin", + "hall:dex2", + "hall:dex5", + "hall:killcrew", + "hall:killcrew_person", + "hall:killnum", + "hall:killrate_person", + "hall:tlrate", + "hall:warnum" + ] + ], + [ + "【80기】이드", + 68, + 81, + 14, + "che_event_필살", + [ + 25761, + 32416, + 425182, + 63530, + 38221 + ], + 1, + "ac5f0a3b.jpg?=20241107", + 80, + "che_250123_1OYX", + 111, + [ + "hall:firenum" + ] + ], + [ + "【80기】왕보윤", + 64, + 79, + 14, + "che_event_기병", + [ + 2364, + 13312, + 114307, + 16036, + 5236 + ], + 1, + "a0576c0f.png?=20250131", + 80, + "che_250123_1OYX", + 115, + [ + "hall:tsrate" + ] + ], + [ + "【80기】서희", + 70, + 14, + 83, + "che_event_필살", + [ + 31739, + 27128, + 45448, + 626637, + 14348 + ], + 0, + "default.jpg", + 80, + "che_250123_1OYX", + 116, + [ + "hall:dex4", + "hall:ttrate" + ] + ], + [ + "【80기】로비", + 13, + 60, + 89, + "che_event_의술", + [ + 0, + 0, + 0, + 0, + 0 + ], + 1, + "71751125.png?=20240823", + 80, + "che_250123_1OYX", + 117, + [ + "hall:dedication", + "hall:tirate" + ] + ], + [ + "【80기】최진리", + 71, + 81, + 13, + "che_event_필살", + [ + 39197, + 601331, + 37959, + 41234, + 17659 + ], + 1, + "677580c5.jpg?=20241230", + 80, + "che_250123_1OYX", + 118, + [ + "hall:dex2" + ] + ], + [ + "【80기】셀레미", + 16, + 63, + 79, + "che_event_필살", + [ + 9095, + 0, + 7822, + 26887, + 1006 + ], + 1, + "d7c3f55a.jpg?=20241231", + 80, + "che_250123_1OYX", + 120, + [ + "hall:dedication" + ] + ], + [ + "【80기】Navy마초", + 68, + 80, + 13, + "che_event_징병", + [ + 24979, + 251872, + 14904, + 24580, + 12735 + ], + 1, + "37644ed3.png?=20230831", + 80, + "che_250123_1OYX", + 228, + [ + "hall:tsrate", + "hall:ttrate" + ] + ], + [ + "【80기】호잉", + 68, + 14, + 85, + "che_event_귀병", + [ + 17472, + 22868, + 21636, + 584422, + 12310 + ], + 0, + "default.jpg", + 80, + "che_250123_1OYX", + 240, + [ + "hall:dex4", + "hall:winrate" + ] + ], + [ + "【80기】복숭아좋아", + 68, + 13, + 82, + "che_event_집중", + [ + 54569, + 47622, + 26450, + 558914, + 28654 + ], + 0, + "default.jpg", + 80, + "che_250123_1OYX", + 242, + [ + "hall:dex4", + "hall:tirate", + "hall:ttrate" + ] + ], + [ + "【80기】카리나", + 68, + 81, + 14, + "che_event_무쌍", + [ + 351781, + 11162, + 42780, + 46810, + 9458 + ], + 1, + "3662b999.jpg?=20250124", + 80, + "che_250123_1OYX", + 243, + [ + "hall:dex1", + "hall:tsrate" + ] + ], + [ + "【80기】명절선물카갈비", + 67, + 80, + 13, + "che_event_척사", + [ + 310418, + 13556, + 42901, + 54881, + 8609 + ], + 1, + "59d1718b.jpg?=20250124", + 80, + "che_250123_1OYX", + 244, + [ + "hall:dex1" + ] + ], + [ + "【80기】진솔", + 13, + 71, + 80, + "che_event_무쌍", + [ + 0, + 0, + 0, + 0, + 0 + ], + 1, + "ed6e48d5.png?=20240719", + 80, + "che_250123_1OYX", + 250, + [ + "hall:dedication", + "hall:ttrate" + ] + ], + [ + "【80기】떡국", + 71, + 14, + 81, + "che_event_척사", + [ + 16148, + 14694, + 20154, + 445647, + 17829 + ], + 0, + "default.jpg", + 80, + "che_250123_1OYX", + 271, + [ + "hall:betgold", + "hall:betwin", + "hall:betwingold", + "hall:firenum" + ] + ], + [ + "【80기】기술연구", + 15, + 71, + 99, + "che_event_신중", + [ + 0, + 0, + 0, + 0, + 0 + ], + 0, + "default.jpg", + 80, + "che_250123_1OYX", + 493, + [ + "hall:dedication", + "hall:experience" + ] + ], + [ + "【80기】김갑환", + 84, + 75, + 16, + "che_event_돌격", + [ + 2588, + 91280, + 9169, + 11579, + 6643 + ], + 1, + "dcff9fd.jpg?=20180823", + 80, + "che_250123_1OYX", + 719, + [ + "hall:tlrate" + ] + ], + [ + "【81기】독구", + 76, + 15, + 93, + "che_event_집중", + [ + 61374, + 10745, + 10500, + 514741, + 45775 + ], + 1, + "7a46c9cc.png?=20250306", + 81, + "che_250306_Pw44", + 6, + [ + "chief:9", + "hall:betwin", + "hall:dex5", + "hall:experience", + "hall:tirate" + ] + ], + [ + "【81기】바나낫", + 82, + 85, + 15, + "che_event_징병", + [ + 435741, + 21446, + 31292, + 70570, + 32325 + ], + 1, + "95478fad.gif?=20241223", + 81, + "che_250306_Pw44", + 21, + [ + "hall:betrate", + "hall:dex1" + ] + ], + [ + "【81기】니쉬", + 15, + 71, + 97, + "che_event_징병", + [ + 0, + 0, + 0, + 0, + 0 + ], + 1, + "acec26d1.png?=20250307", + 81, + "che_250306_Pw44", + 27, + [ + "hall:dedication", + "hall:tirate" + ] + ], + [ + "【81기】이드", + 15, + 90, + 78, + "che_event_신산", + [ + 0, + 0, + 0, + 0, + 0 + ], + 1, + "ac5f0a3b.jpg?=20241107", + 81, + "che_250306_Pw44", + 30, + [ + "hall:firenum", + "hall:ttrate" + ] + ], + [ + "【81기】강유", + 79, + 15, + 91, + "che_event_환술", + [ + 19421, + 18659, + 27179, + 716607, + 26132 + ], + 1, + "79e150d0.jpg?=20230921", + 81, + "che_250306_Pw44", + 32, + [ + "hall:dex4", + "hall:killcrew", + "hall:killcrew_person", + "hall:killnum", + "hall:warnum", + "hall:winrate" + ] + ], + [ + "【81기】와일드플라워", + 77, + 92, + 15, + "che_event_견고", + [ + 49211, + 56130, + 559299, + 61977, + 11806 + ], + 0, + "default.jpg", + 81, + "che_250306_Pw44", + 33, + [ + "hall:dex3", + "hall:tsrate", + "hall:ttrate" + ] + ], + [ + "【81기】척", + 78, + 88, + 15, + "che_event_의술", + [ + 38177, + 16176, + 409533, + 92142, + 39807 + ], + 1, + "7cb75480.png?=20221202", + 81, + "che_250306_Pw44", + 34, + [ + "hall:dex3" + ] + ], + [ + "【81기】비스마르크", + 77, + 92, + 15, + "che_event_척사", + [ + 24295, + 38796, + 421509, + 54304, + 35851 + ], + 0, + "default.jpg", + 81, + "che_250306_Pw44", + 36, + [ + "hall:dex3", + "hall:tsrate" + ] + ], + [ + "【81기】호나", + 75, + 94, + 15, + "che_event_돌격", + [ + 336586, + 74267, + 46936, + 93191, + 29894 + ], + 0, + "default.jpg", + 81, + "che_250306_Pw44", + 39, + [ + "hall:betrate", + "hall:betwingold", + "hall:tsrate", + "hall:winrate" + ] + ], + [ + "【81기】플로리다", + 76, + 15, + 90, + "che_event_신산", + [ + 33858, + 14205, + 22764, + 353964, + 37370 + ], + 0, + "default.jpg", + 81, + "che_250306_Pw44", + 40, + [ + "hall:firenum" + ] + ], + [ + "【81기】이서", + 90, + 15, + 81, + "che_event_필살", + [ + 27737, + 17353, + 31278, + 708004, + 10830 + ], + 1, + "8c8d0c81.jpg?=20250307", + 81, + "che_250306_Pw44", + 41, + [ + "hall:dex4", + "hall:killcrew", + "hall:killcrew_person", + "hall:killnum", + "hall:tlrate", + "hall:warnum", + "hall:winrate" + ] + ], + [ + "【81기】Nunsense", + 82, + 87, + 15, + "che_event_필살", + [ + 65184, + 351336, + 7256, + 71499, + 38966 + ], + 1, + "f456d3.jpg?=20200828", + 81, + "che_250306_Pw44", + 42, + [ + "hall:dex2", + "hall:ttrate" + ] + ], + [ + "【81기】팔일기", + 80, + 16, + 90, + "che_event_징병", + [ + 25968, + 18439, + 45734, + 688460, + 19279 + ], + 0, + "default.jpg", + 81, + "che_250306_Pw44", + 43, + [ + "hall:dex4", + "hall:killcrew", + "hall:killcrew_person", + "hall:warnum" + ] + ], + [ + "【81기】꽃가루 알러지 독구", + 16, + 71, + 97, + "che_event_척사", + [ + 0, + 0, + 0, + 0, + 0 + ], + 1, + "5283daf7.png?=20240511", + 81, + "che_250306_Pw44", + 46, + [ + "hall:betwin", + "hall:dedication", + "hall:tirate" + ] + ], + [ + "【81기】똑토끼", + 15, + 71, + 96, + "che_event_필살", + [ + 0, + 0, + 0, + 0, + 0 + ], + 0, + "default.jpg", + 81, + "che_250306_Pw44", + 49, + [ + "hall:dedication" + ] + ], + [ + "【81기】강서유서", + 87, + 15, + 79, + "che_event_징병", + [ + 44958, + 16596, + 27347, + 293680, + 48791 + ], + 1, + "ee334a1d.jpg?=20241130", + 81, + "che_250306_Pw44", + 51, + [ + "hall:dex5" + ] + ], + [ + "【81기】만렙토끼", + 79, + 87, + 15, + "che_event_필살", + [ + 68361, + 22440, + 315701, + 52347, + 18883 + ], + 0, + "default.jpg", + 81, + "che_250306_Pw44", + 61, + [ + "hall:dex3", + "hall:occupied" + ] + ], + [ + "【81기】대장토끼", + 75, + 93, + 16, + "che_event_척사", + [ + 527592, + 16151, + 34809, + 48490, + 15553 + ], + 1, + "8c670172.jpg?=20250306", + 81, + "che_250306_Pw44", + 65, + [ + "hall:dex1", + "hall:killrate", + "hall:killrate_person", + "hall:tsrate", + "hall:ttrate" + ] + ], + [ + "【81기】고죠 사토루", + 75, + 93, + 15, + "che_event_무쌍", + [ + 52768, + 381983, + 119725, + 40096, + 58534 + ], + 1, + "c31e1985.jpg?=20250123", + 81, + "che_250306_Pw44", + 70, + [ + "chief:8", + "hall:dex2", + "hall:dex5", + "hall:killrate", + "hall:killrate_person", + "hall:tsrate" + ] + ], + [ + "【81기】실훔", + 79, + 91, + 16, + "che_event_징병", + [ + 97249, + 628621, + 14178, + 50793, + 17526 + ], + 0, + "default.jpg", + 81, + "che_250306_Pw44", + 71, + [ + "hall:betwin", + "hall:dex2", + "hall:killcrew", + "hall:killcrew_person", + "hall:killnum", + "hall:warnum" + ] + ], + [ + "【81기】리치사기꾼진브", + 88, + 77, + 15, + "che_event_돌격", + [ + 76056, + 243978, + 902, + 65203, + 50656 + ], + 1, + "4458602d.png?=20250306", + 81, + "che_250306_Pw44", + 73, + [ + "hall:dex2", + "hall:dex5", + "hall:tlrate" + ] + ], + [ + "【81기】잠수", + 76, + 15, + 94, + "che_event_집중", + [ + 23999, + 14127, + 30540, + 573774, + 18448 + ], + 0, + "default.jpg", + 81, + "che_250306_Pw44", + 76, + [ + "hall:dex4", + "hall:tirate" + ] + ], + [ + "【81기】Sase", + 78, + 15, + 90, + "che_event_의술", + [ + 19283, + 9187, + 36869, + 690063, + 46254 + ], + 1, + "cb8e4672.jpg?=20241224", + 81, + "che_250306_Pw44", + 77, + [ + "chief:5", + "hall:betgold", + "hall:betwin", + "hall:betwingold", + "hall:dex4", + "hall:dex5", + "hall:experience", + "hall:killnum", + "hall:occupied", + "hall:winrate" + ] + ], + [ + "【81기】Hide_D", + 74, + 15, + 94, + "che_event_저격", + [ + 24786, + 22916, + 4190, + 173689, + 24204 + ], + 1, + "4569d848.png?=20230612", + 81, + "che_250306_Pw44", + 78, + [ + "hall:tirate" + ] + ], + [ + "【81기】무당벌레", + 92, + 76, + 15, + "che_event_징병", + [ + 1060860, + 20592, + 59611, + 135385, + 37485 + ], + 0, + "default.jpg", + 81, + "che_250306_Pw44", + 79, + [ + "hall:dex1", + "hall:experience", + "hall:killcrew", + "hall:killcrew_person", + "hall:killnum", + "hall:occupied", + "hall:tlrate", + "hall:warnum" + ] + ], + [ + "【81기】사스케", + 75, + 15, + 92, + "che_event_필살", + [ + 19288, + 9212, + 7131, + 367170, + 22658 + ], + 1, + "53aa49bd.jpg?=20241203", + 81, + "che_250306_Pw44", + 80, + [ + "hall:betwin", + "hall:winrate" + ] + ], + [ + "【81기】밀하우스 벤하우튼", + 91, + 76, + 16, + "che_event_저격", + [ + 562171, + 2773, + 23680, + 84623, + 12404 + ], + 0, + "default.jpg", + 81, + "che_250306_Pw44", + 83, + [ + "hall:dex1", + "hall:tlrate", + "hall:ttrate" + ] + ], + [ + "【81기】불패", + 81, + 15, + 88, + "che_event_필살", + [ + 24356, + 19350, + 34201, + 531912, + 39115 + ], + 1, + "7c08b5e9.jpg?=20241227", + 81, + "che_250306_Pw44", + 84, + [ + "hall:betgold", + "hall:betwingold", + "hall:dex4", + "hall:occupied" + ] + ], + [ + "【81기】TATUM", + 77, + 15, + 89, + "che_event_필살", + [ + 20824, + 14351, + 8277, + 422889, + 28625 + ], + 0, + "default.jpg", + 81, + "che_250306_Pw44", + 85, + [ + "hall:betrate" + ] + ], + [ + "【81기】나나치", + 93, + 75, + 16, + "che_event_필살", + [ + 591899, + 7415, + 26686, + 73697, + 14029 + ], + 1, + "868048bc.jpg?=20250305", + 81, + "che_250306_Pw44", + 86, + [ + "hall:betwin", + "hall:dex1", + "hall:tlrate", + "hall:warnum" + ] + ], + [ + "【81기】라비린", + 76, + 16, + 92, + "che_event_집중", + [ + 58133, + 12887, + 23064, + 509603, + 49441 + ], + 1, + "5356229e.png?=20250306", + 81, + "che_250306_Pw44", + 87, + [ + "hall:betgold", + "hall:betrate", + "hall:betwingold", + "hall:dex5", + "hall:killrate", + "hall:occupied" + ] + ], + [ + "【81기】평민킬러", + 76, + 94, + 15, + "che_event_필살", + [ + 798889, + 6731, + 23205, + 72887, + 24058 + ], + 1, + "546a68f4.jpg?=20250305", + 81, + "che_250306_Pw44", + 88, + [ + "chief:12", + "hall:betgold", + "hall:betrate", + "hall:betwin", + "hall:betwingold", + "hall:dedication", + "hall:dex1", + "hall:experience", + "hall:killcrew", + "hall:killcrew_person", + "hall:killnum", + "hall:killrate", + "hall:killrate_person", + "hall:occupied", + "hall:tsrate", + "hall:winrate" + ] + ], + [ + "【81기】민희진", + 87, + 16, + 78, + "che_event_필살", + [ + 54439, + 65480, + 7775, + 525929, + 25113 + ], + 1, + "d7a28ce8.jpg?=20250306", + 81, + "che_250306_Pw44", + 90, + [ + "hall:betgold", + "hall:betrate", + "hall:betwingold", + "hall:dex4", + "hall:tlrate" + ] + ], + [ + "【81기】토냥이", + 77, + 89, + 15, + "che_event_견고", + [ + 403051, + 6816, + 29141, + 60763, + 26205 + ], + 1, + "964ba5ab.png?=20250306", + 81, + "che_250306_Pw44", + 91, + [ + "hall:dex1" + ] + ], + [ + "【81기】덕구", + 78, + 88, + 16, + "che_event_위압", + [ + 71893, + 425390, + 12222, + 83723, + 10658 + ], + 0, + "default.jpg", + 81, + "che_250306_Pw44", + 93, + [ + "hall:dex2" + ] + ], + [ + "【81기】햄부기", + 76, + 93, + 15, + "che_event_무쌍", + [ + 22346, + 15159, + 492365, + 68970, + 34771 + ], + 1, + "dd0ec1dd.webp?=20250306", + 81, + "che_250306_Pw44", + 94, + [ + "hall:dex3", + "hall:tsrate", + "hall:ttrate" + ] + ], + [ + "【81기】카이스트", + 75, + 15, + 94, + "che_event_집중", + [ + 50809, + 7023, + 20760, + 445778, + 40157 + ], + 1, + "e7e27cd6.jpg?=20221125", + 81, + "che_250306_Pw44", + 95, + [ + "chief:7", + "hall:dedication", + "hall:experience", + "hall:tirate" + ] + ], + [ + "【81기】네이", + 88, + 15, + 82, + "che_event_집중", + [ + 47016, + 62576, + 22978, + 589995, + 16010 + ], + 0, + "default.jpg", + 81, + "che_250306_Pw44", + 96, + [ + "hall:dex4", + "hall:tlrate", + "hall:ttrate", + "hall:warnum" + ] + ], + [ + "【81기】진보의 다리", + 76, + 92, + 15, + "che_event_필살", + [ + 429203, + 6348, + 26761, + 68072, + 22031 + ], + 1, + "20140fd6.jpg?=20250306", + 81, + "che_250306_Pw44", + 99, + [ + "hall:dex1", + "hall:tsrate" + ] + ], + [ + "【81기】평민", + 78, + 94, + 16, + "che_event_무쌍", + [ + 1248738, + 56263, + 32712, + 43215, + 46086 + ], + 0, + "default.jpg", + 81, + "che_250306_Pw44", + 100, + [ + "hall:betgold", + "hall:betrate", + "hall:betwin", + "hall:betwingold", + "hall:dex1", + "hall:dex5", + "hall:experience", + "hall:killcrew", + "hall:killcrew_person", + "hall:killnum", + "hall:killrate", + "hall:killrate_person", + "hall:occupied", + "hall:warnum", + "hall:winrate" + ] + ], + [ + "【81기】임마", + 78, + 91, + 16, + "che_event_필살", + [ + 22964, + 601306, + 8101, + 65288, + 49464 + ], + 0, + "default.jpg", + 81, + "che_250306_Pw44", + 101, + [ + "chief:6", + "hall:dex2", + "hall:dex5", + "hall:killrate", + "hall:killrate_person", + "hall:tsrate", + "hall:winrate" + ] + ], + [ + "【81기】대교", + 95, + 71, + 16, + "che_event_의술", + [ + 313963, + 8845, + 9604, + 56829, + 24474 + ], + 1, + "a53ab5ef.jpg?=20241010", + 81, + "che_250306_Pw44", + 103, + [ + "hall:tlrate" + ] + ], + [ + "【81기】벤치프레스", + 79, + 92, + 15, + "che_event_필살", + [ + 23426, + 708886, + 21227, + 21302, + 15671 + ], + 1, + "f51b712b.jpg?=20250307", + 81, + "che_250306_Pw44", + 104, + [ + "hall:betgold", + "hall:betwingold", + "hall:dex2", + "hall:killcrew", + "hall:killcrew_person", + "hall:killnum" + ] + ], + [ + "【81기】임사영", + 78, + 91, + 16, + "che_event_위압", + [ + 119402, + 337916, + 198066, + 69773, + 33578 + ], + 1, + "0b5a2642.jpg?=20240305", + 81, + "che_250306_Pw44", + 105, + [ + "chief:10", + "hall:betrate", + "hall:dedication", + "hall:dex2", + "hall:dex3", + "hall:experience", + "hall:killrate", + "hall:killrate_person", + "hall:ttrate", + "hall:winrate" + ] + ], + [ + "【81기】SQQQ", + 94, + 75, + 15, + "che_event_필살", + [ + 57052, + 36648, + 510045, + 91020, + 22584 + ], + 1, + "86ef0874.png?=20250306", + 81, + "che_250306_Pw44", + 106, + [ + "hall:dex3", + "hall:tlrate" + ] + ], + [ + "【81기】NK", + 75, + 94, + 15, + "che_event_필살", + [ + 39331, + 21808, + 522959, + 80662, + 42573 + ], + 0, + "default.jpg", + 81, + "che_250306_Pw44", + 107, + [ + "chief:11", + "hall:dex3", + "hall:experience", + "hall:killrate", + "hall:killrate_person", + "hall:occupied" + ] + ], + [ + "【81기】황혼중", + 15, + 82, + 86, + "che_event_척사", + [ + 0, + 0, + 0, + 0, + 0 + ], + 1, + "e5161df9.jpg?=20231110", + 81, + "che_250306_Pw44", + 109, + [ + "hall:dedication" + ] + ], + [ + "【81기】간지밍이", + 16, + 73, + 88, + "che_event_징병", + [ + 0, + 0, + 0, + 0, + 0 + ], + 1, + "b3e03d5f.png?=20241207", + 81, + "che_250306_Pw44", + 111, + [ + "hall:ttrate" + ] + ], + [ + "【81기】犢皮紙", + 76, + 92, + 15, + "che_event_견고", + [ + 328448, + 5274, + 13489, + 67249, + 9414 + ], + 1, + "41ecab30.png?=20250313", + 81, + "che_250306_Pw44", + 114, + [ + "hall:tsrate" + ] + ], + [ + "【81기】춤과파티", + 75, + 15, + 96, + "che_event_신중", + [ + 35917, + 24309, + 20271, + 956481, + 22394 + ], + 0, + "default.jpg", + 81, + "che_250306_Pw44", + 119, + [ + "hall:betgold", + "hall:betwin", + "hall:betwingold", + "hall:dex4", + "hall:killcrew", + "hall:killcrew_person", + "hall:killnum", + "hall:killrate", + "hall:killrate_person", + "hall:tirate", + "hall:warnum", + "hall:winrate" + ] + ], + [ + "【81기】아무개", + 15, + 72, + 97, + "che_event_필살", + [ + 0, + 0, + 0, + 0, + 0 + ], + 0, + "default.jpg", + 81, + "che_250306_Pw44", + 120, + [ + "hall:dedication", + "hall:experience" + ] + ], + [ + "【81기】최진리", + 89, + 78, + 15, + "che_event_위압", + [ + 627525, + 20528, + 35898, + 105960, + 20467 + ], + 1, + "677580c5.jpg?=20241230", + 81, + "che_250306_Pw44", + 121, + [ + "hall:dex1", + "hall:killrate_person", + "hall:tlrate" + ] + ], + [ + "【81기】솔의눈", + 15, + 93, + 73, + "che_event_의술", + [ + 0, + 0, + 0, + 0, + 0 + ], + 1, + "9deba9c0.jpg?=20250306", + 81, + "che_250306_Pw44", + 198, + [ + "hall:betgold" + ] + ], + [ + "【81기】마요이", + 15, + 73, + 94, + "che_event_환술", + [ + 0, + 0, + 0, + 0, + 0 + ], + 1, + "2b49c945.png?=20230921", + 81, + "che_250306_Pw44", + 204, + [ + "hall:dedication", + "hall:tirate" + ] + ], + [ + "【81기】진솔", + 15, + 71, + 96, + "che_event_의술", + [ + 0, + 0, + 0, + 0, + 0 + ], + 1, + "ed6e48d5.png?=20240719", + 81, + "che_250306_Pw44", + 208, + [ + "hall:dedication", + "hall:tirate" + ] + ], + [ + "【81기】올해의 새", + 79, + 15, + 100, + "che_event_징병", + [ + 49356, + 33436, + 22336, + 1541919, + 31119 + ], + 1, + "9a1d6ac7.jpg?=20250318", + 81, + "che_250306_Pw44", + 215, + [ + "hall:betgold", + "hall:betrate", + "hall:betwin", + "hall:betwingold", + "hall:dex4", + "hall:experience", + "hall:killcrew", + "hall:killcrew_person", + "hall:killnum", + "hall:occupied", + "hall:tirate", + "hall:ttrate", + "hall:warnum" + ] + ], + [ + "【81기】유카", + 78, + 88, + 15, + "che_event_격노", + [ + 35634, + 32671, + 480647, + 41221, + 42158 + ], + 0, + "default.jpg", + 81, + "che_250306_Pw44", + 219, + [ + "hall:dex3" + ] + ], + [ + "【81기】아즈마 레이", + 77, + 89, + 17, + "che_event_견고", + [ + 21583, + 21621, + 258567, + 35775, + 13587 + ], + 1, + "044cfc1b.png?=20250312", + 81, + "che_250306_Pw44", + 260, + [ + "hall:dex3" + ] + ], + [ + "【81기】키키라라비비", + 76, + 15, + 91, + "che_event_필살", + [ + 39300, + 6233, + 23079, + 444648, + 68372 + ], + 1, + "7d3befed.png?=20250307", + 81, + "che_250306_Pw44", + 266, + [ + "hall:dex5" + ] + ], + [ + "【81기】환수사", + 77, + 89, + 16, + "che_event_견고", + [ + 52346, + 448320, + 11622, + 92835, + 36533 + ], + 1, + "0bc802fe.png?=20250308", + 81, + "che_250306_Pw44", + 299, + [ + "hall:betrate", + "hall:dex2", + "hall:occupied" + ] + ], + [ + "【81기】하우젤", + 78, + 89, + 15, + "che_event_필살", + [ + 137376, + 393829, + 25577, + 56505, + 58850 + ], + 1, + "dcff9fd.jpg?=20180823", + 81, + "che_250306_Pw44", + 338, + [ + "hall:dex2", + "hall:dex5", + "hall:killrate", + "hall:killrate_person" + ] + ], + [ + "【82기】임사영", + 81, + 15, + 95, + "che_event_필살", + [ + 52735, + 44916, + 35391, + 858256, + 39414 + ], + 1, + "0b5a2642.jpg?=20240305", + 82, + "che_250403_0XkN", + 5, + [ + "hall:dedication", + "hall:dex4", + "hall:experience" + ] + ], + [ + "【82기】척", + 67, + 78, + 14, + "che_event_돌격", + [ + 37292, + 28211, + 353143, + 77605, + 15177 + ], + 1, + "7cb75480.png?=20221202", + 82, + "che_250403_0XkN", + 20, + [ + "hall:dex3" + ] + ], + [ + "【82기】카멘", + 66, + 83, + 13, + "che_event_필살", + [ + 40223, + 414124, + 403144, + 36044, + 30533 + ], + 1, + "6e36e67b.jpg?=20250328", + 82, + "che_250403_0XkN", + 23, + [ + "hall:dex2", + "hall:dex3", + "hall:dex5", + "hall:experience", + "hall:killcrew", + "hall:killcrew_person", + "hall:killnum", + "hall:killrate", + "hall:killrate_person", + "hall:occupied", + "hall:tsrate", + "hall:warnum", + "hall:winrate" + ] + ], + [ + "【82기】냥냥냥", + 98, + 76, + 16, + "che_event_격노", + [ + 80241, + 31218, + 875320, + 172904, + 41403 + ], + 1, + "458caeac.gif?=20240919", + 82, + "che_250403_0XkN", + 26, + [ + "hall:betrate", + "hall:betwingold", + "hall:dex3", + "hall:tlrate" + ] + ], + [ + "【82기】Hide_D", + 78, + 15, + 96, + "che_event_반계", + [ + 90898, + 26700, + 37405, + 789392, + 36653 + ], + 1, + "4569d848.png?=20230612", + 82, + "che_250403_0XkN", + 28, + [ + "hall:dedication", + "hall:dex4" + ] + ], + [ + "【82기】이노마타 타이키", + 77, + 15, + 96, + "che_event_징병", + [ + 90541, + 27755, + 55869, + 695341, + 32788 + ], + 1, + "f0fb0fd6.png?=20250327", + 82, + "che_250403_0XkN", + 29, + [ + "hall:betrate", + "hall:tirate" + ] + ], + [ + "【82기】호나", + 79, + 93, + 17, + "che_event_위압", + [ + 82450, + 294425, + 572658, + 80018, + 36507 + ], + 0, + "default.jpg", + 82, + "che_250403_0XkN", + 41, + [ + "hall:dex2", + "hall:dex3", + "hall:tsrate" + ] + ], + [ + "【82기】대교", + 79, + 14, + 68, + "che_event_필살", + [ + 33455, + 12197, + 33496, + 490217, + 15545 + ], + 1, + "a53ab5ef.jpg?=20241010", + 82, + "che_250403_0XkN", + 42, + [ + "hall:dex4", + "hall:experience", + "hall:tlrate" + ] + ], + [ + "【82기】청주꽃돌이관흥", + 80, + 15, + 95, + "che_event_필살", + [ + 33540, + 27816, + 35598, + 1142339, + 27468 + ], + 1, + "2425f9df.png?=20250402", + 82, + "che_250403_0XkN", + 51, + [ + "chief:7", + "hall:dex4", + "hall:killnum", + "hall:killrate", + "hall:killrate_person", + "hall:warnum", + "hall:winrate" + ] + ], + [ + "【82기】욕망군단장비아키스", + 89, + 15, + 86, + "che_event_징병", + [ + 181802, + 75957, + 53878, + 1391331, + 35690 + ], + 1, + "a966680a.jpg?=20250403", + 82, + "che_250403_0XkN", + 55, + [ + "hall:dex4", + "hall:experience", + "hall:killcrew", + "hall:killcrew_person", + "hall:killnum", + "hall:warnum" + ] + ], + [ + "【82기】가능", + 98, + 79, + 15, + "che_event_필살", + [ + 1329915, + 14019, + 29867, + 137649, + 31241 + ], + 1, + "8766f81d.jpg?=20250403", + 82, + "che_250403_0XkN", + 59, + [ + "chief:6", + "hall:betwin", + "hall:dex1", + "hall:experience", + "hall:killcrew", + "hall:killcrew_person", + "hall:killnum", + "hall:killrate", + "hall:killrate_person", + "hall:occupied", + "hall:tlrate", + "hall:ttrate", + "hall:warnum", + "hall:winrate" + ] + ], + [ + "【82기】독구", + 80, + 71, + 13, + "che_event_징병", + [ + 835480, + 15149, + 21465, + 68101, + 12647 + ], + 1, + "d3f6b930.png?=20250428", + 82, + "che_250403_0XkN", + 60, + [ + "chief:8", + "hall:betgold", + "hall:betrate", + "hall:betwin", + "hall:betwingold", + "hall:dex1", + "hall:experience", + "hall:killcrew", + "hall:killcrew_person", + "hall:killnum", + "hall:tlrate", + "hall:warnum" + ] + ], + [ + "【82기】진웅", + 80, + 97, + 15, + "che_event_격노", + [ + 1284354, + 45556, + 30584, + 36851, + 44220 + ], + 1, + "63fe9175.png?=20250404", + 82, + "che_250403_0XkN", + 61, + [ + "chief:11", + "hall:betgold", + "hall:betwin", + "hall:betwingold", + "hall:dex1", + "hall:killcrew", + "hall:killcrew_person", + "hall:killnum", + "hall:occupied", + "hall:tsrate", + "hall:warnum", + "hall:winrate" + ] + ], + [ + "【82기】딸기", + 79, + 15, + 93, + "che_event_신중", + [ + 74070, + 28071, + 80003, + 565693, + 39477 + ], + 1, + "f8c96512.png?=20250403", + 82, + "che_250403_0XkN", + 64, + [ + "hall:ttrate" + ] + ], + [ + "【82기】구루", + 83, + 91, + 15, + "che_event_필살", + [ + 760870, + 30908, + 57325, + 88909, + 35829 + ], + 0, + "default.jpg", + 82, + "che_250403_0XkN", + 67, + [ + "hall:betwin", + "hall:dex1" + ] + ], + [ + "【82기】이드", + 67, + 80, + 13, + "che_event_돌격", + [ + 47130, + 120178, + 167881, + 49221, + 16517 + ], + 1, + "ac5f0a3b.jpg?=20241107", + 82, + "che_250403_0XkN", + 69, + [ + "hall:dex2", + "hall:dex3", + "hall:tsrate" + ] + ], + [ + "【82기】퍄퍄", + 79, + 15, + 94, + "che_event_신중", + [ + 50135, + 48407, + 60889, + 597960, + 39561 + ], + 0, + "default.jpg", + 82, + "che_250403_0XkN", + 71, + [ + "hall:tirate" + ] + ], + [ + "【82기】연미복관흥", + 20, + 71, + 94, + "che_event_의술", + [ + 0, + 0, + 0, + 0, + 0 + ], + 1, + "9bc030c2.png?=20250403", + 82, + "che_250403_0XkN", + 72, + [ + "hall:dedication", + "hall:tirate" + ] + ], + [ + "【82기】Air", + 82, + 92, + 15, + "che_event_위압", + [ + 114121, + 770673, + 32839, + 73053, + 42437 + ], + 0, + "default.jpg", + 82, + "che_250403_0XkN", + 73, + [ + "hall:betrate", + "hall:dex2" + ] + ], + [ + "【82기】간지밍이", + 15, + 77, + 65, + "che_event_필살", + [ + 2007, + 838, + 2481, + 0, + 126 + ], + 1, + "b3e03d5f.png?=20241207", + 82, + "che_250403_0XkN", + 76, + [ + "hall:betwin", + "hall:firenum" + ] + ], + [ + "【82기】(지브리)이해고", + 80, + 93, + 16, + "che_event_돌격", + [ + 888586, + 31362, + 33943, + 115773, + 70191 + ], + 1, + "3629c4aa.png?=20250403", + 82, + "che_250403_0XkN", + 80, + [ + "hall:betgold", + "hall:dex1", + "hall:dex5", + "hall:occupied" + ] + ], + [ + "【82기】개미호창", + 95, + 77, + 15, + "che_event_공성", + [ + 108950, + 37060, + 148433, + 77234, + 369706 + ], + 1, + "ad4f0314.jpg?=20250403", + 82, + "che_250403_0XkN", + 83, + [ + "hall:dex5", + "hall:occupied", + "hall:tlrate" + ] + ], + [ + "【82기】쿠크세이튼", + 66, + 82, + 13, + "che_event_필살", + [ + 622211, + 17900, + 32257, + 52902, + 19447 + ], + 1, + "5a77392d.png?=20250403", + 82, + "che_250403_0XkN", + 84, + [ + "hall:betgold", + "hall:betwin", + "hall:betwingold", + "hall:dex1", + "hall:experience", + "hall:killcrew", + "hall:killrate", + "hall:killrate_person", + "hall:occupied", + "hall:tsrate", + "hall:ttrate", + "hall:winrate" + ] + ], + [ + "【82기】발리나크", + 78, + 93, + 16, + "che_event_징병", + [ + 861979, + 20320, + 52887, + 88904, + 35073 + ], + 1, + "cbfc7ae4.jpg?=20250403", + 82, + "che_250403_0XkN", + 85, + [ + "hall:dex1" + ] + ], + [ + "【82기】카이스트", + 80, + 15, + 97, + "che_event_견고", + [ + 69087, + 42263, + 18910, + 1117158, + 16745 + ], + 1, + "e7e27cd6.jpg?=20221125", + 82, + "che_250403_0XkN", + 86, + [ + "hall:dex4", + "hall:killcrew_person", + "hall:killnum", + "hall:killrate", + "hall:killrate_person", + "hall:ttrate", + "hall:warnum" + ] + ], + [ + "【82기】서희", + 78, + 16, + 94, + "che_event_척사", + [ + 56699, + 37178, + 26882, + 797574, + 22174 + ], + 0, + "default.jpg", + 82, + "che_250403_0XkN", + 88, + [ + "hall:dex4" + ] + ], + [ + "【82기】킬리네사", + 67, + 13, + 82, + "che_event_집중", + [ + 40195, + 15663, + 14890, + 399485, + 27338 + ], + 1, + "81036b10.png?=20250403", + 82, + "che_250403_0XkN", + 89, + [ + "hall:betrate", + "hall:dedication", + "hall:dex5", + "hall:occupied", + "hall:tirate" + ] + ], + [ + "【82기】Sase", + 70, + 86, + 13, + "che_event_징병", + [ + 432266, + 366771, + 549857, + 49905, + 27357 + ], + 1, + "cb8e4672.jpg?=20241224", + 82, + "che_250403_0XkN", + 90, + [ + "hall:betgold", + "hall:betwin", + "hall:betwingold", + "hall:dex1", + "hall:dex2", + "hall:dex3", + "hall:dex5", + "hall:experience", + "hall:killcrew", + "hall:killcrew_person", + "hall:killnum", + "hall:occupied", + "hall:warnum", + "hall:winrate" + ] + ], + [ + "【82기】KISJ", + 78, + 96, + 15, + "che_event_필살", + [ + 733942, + 11680, + 72940, + 108427, + 24343 + ], + 0, + "default.jpg", + 82, + "che_250403_0XkN", + 91, + [ + "hall:tsrate", + "hall:ttrate" + ] + ], + [ + "【82기】덕구", + 77, + 92, + 16, + "che_event_격노", + [ + 581417, + 6484, + 34823, + 109565, + 27174 + ], + 0, + "default.jpg", + 82, + "che_250403_0XkN", + 92, + [ + "hall:tsrate" + ] + ], + [ + "【82기】둠스데이", + 70, + 78, + 13, + "che_event_척사", + [ + 321896, + 24728, + 22216, + 46777, + 5767 + ], + 1, + "62e7d3c9.png?=20250423", + 82, + "che_250403_0XkN", + 93, + [ + "hall:ttrate" + ] + ], + [ + "【82기】불여시헌터관흥", + 89, + 15, + 85, + "che_event_집중", + [ + 49468, + 37334, + 37346, + 1218732, + 31691 + ], + 1, + "fe5af1e1.png?=20250403", + 82, + "che_250403_0XkN", + 94, + [ + "chief:9", + "hall:dex4", + "hall:killcrew", + "hall:killcrew_person", + "hall:killrate", + "hall:killrate_person", + "hall:tlrate", + "hall:warnum" + ] + ], + [ + "【82기】여심폭격기관흥", + 65, + 84, + 13, + "che_event_필살", + [ + 874102, + 12753, + 4354, + 19501, + 17728 + ], + 1, + "8c443498.jpg?=20250402", + 82, + "che_250403_0XkN", + 97, + [ + "chief:12", + "hall:betgold", + "hall:betrate", + "hall:betwingold", + "hall:dedication", + "hall:dex1", + "hall:experience", + "hall:killcrew", + "hall:killcrew_person", + "hall:killnum", + "hall:killrate", + "hall:killrate_person", + "hall:occupied", + "hall:tsrate", + "hall:warnum", + "hall:winrate" + ] + ], + [ + "【82기】사스케", + 101, + 70, + 15, + "che_event_공성", + [ + 38471, + 11965, + 37236, + 84271, + 2037850 + ], + 1, + "53aa49bd.jpg?=20241203", + 82, + "che_250403_0XkN", + 98, + [ + "chief:10", + "hall:betgold", + "hall:betwin", + "hall:betwingold", + "hall:dex5", + "hall:experience", + "hall:killcrew", + "hall:killrate", + "hall:killrate_person", + "hall:occupied", + "hall:tlrate" + ] + ], + [ + "【82기】백수", + 68, + 79, + 14, + "che_event_무쌍", + [ + 367356, + 8059, + 24120, + 25793, + 9336 + ], + 0, + "default.jpg", + 82, + "che_250403_0XkN", + 99, + [ + "hall:ttrate" + ] + ], + [ + "【82기】진솔", + 78, + 95, + 15, + "che_event_격노", + [ + 35434, + 35925, + 664281, + 56299, + 26982 + ], + 1, + "ed6e48d5.png?=20240719", + 82, + "che_250403_0XkN", + 101, + [ + "hall:dex3", + "hall:winrate" + ] + ], + [ + "【82기】페로몬뉴클리어관흥", + 68, + 14, + 80, + "che_event_집중", + [ + 28265, + 7500, + 13547, + 503889, + 21794 + ], + 1, + "8258b1b8.jpg?=20250403", + 82, + "che_250403_0XkN", + 102, + [ + "chief:5", + "hall:dedication", + "hall:dex4", + "hall:killrate", + "hall:killrate_person", + "hall:winrate" + ] + ], + [ + "【82기】주하야", + 90, + 82, + 15, + "che_event_징병", + [ + 476123, + 3034, + 23284, + 46961, + 3476 + ], + 0, + "default.jpg", + 82, + "che_250403_0XkN", + 103, + [ + "hall:tlrate" + ] + ], + [ + "【82기】Every Moment", + 92, + 79, + 15, + "che_event_무쌍", + [ + 128308, + 653221, + 36770, + 104497, + 36794 + ], + 1, + "368dc914.png?=20250404", + 82, + "che_250403_0XkN", + 104, + [ + "hall:dex2", + "hall:tlrate" + ] + ], + [ + "【82기】NK", + 67, + 82, + 13, + "che_event_징병", + [ + 53051, + 513423, + 17455, + 80311, + 13407 + ], + 0, + "default.jpg", + 82, + "che_250403_0XkN", + 105, + [ + "hall:betgold", + "hall:betrate", + "hall:betwingold", + "hall:dex2", + "hall:killcrew_person", + "hall:tsrate" + ] + ], + [ + "【82기】도라에몽", + 91, + 15, + 80, + "che_event_필살", + [ + 70289, + 34523, + 39729, + 761853, + 22166 + ], + 1, + "a2bd8035.gif?=20250419", + 82, + "che_250403_0XkN", + 106, + [ + "hall:betgold", + "hall:betrate", + "hall:betwingold" + ] + ], + [ + "【82기】ㅠ.ㅠ", + 88, + 15, + 85, + "che_event_징병", + [ + 59442, + 39346, + 51493, + 826552, + 31819 + ], + 0, + "default.jpg", + 82, + "che_250403_0XkN", + 107, + [ + "hall:dex4", + "hall:firenum" + ] + ], + [ + "【82기】로비", + 15, + 73, + 99, + "che_event_저격", + [ + 0, + 0, + 0, + 0, + 0 + ], + 1, + "71751125.png?=20240823", + 82, + "che_250403_0XkN", + 108, + [ + "hall:dedication", + "hall:tirate" + ] + ], + [ + "【82기】메로나", + 66, + 13, + 82, + "che_event_집중", + [ + 32380, + 18871, + 19692, + 387663, + 25237 + ], + 1, + "ab597a59.png?=20250410", + 82, + "che_250403_0XkN", + 109, + [ + "hall:tirate", + "hall:ttrate" + ] + ], + [ + "【82기】니쉬", + 15, + 72, + 98, + "che_event_의술", + [ + 0, + 0, + 0, + 0, + 0 + ], + 1, + "acec26d1.png?=20250307", + 82, + "che_250403_0XkN", + 113, + [ + "hall:tirate" + ] + ], + [ + "【82기】로아 그만둔 독구", + 15, + 73, + 99, + "che_event_필살", + [ + 0, + 0, + 0, + 0, + 0 + ], + 1, + "5283daf7.png?=20240511", + 82, + "che_250403_0XkN", + 115, + [ + "hall:betwin", + "hall:dedication", + "hall:tirate" + ] + ], + [ + "【82기】최진리", + 97, + 76, + 15, + "che_event_필살", + [ + 777136, + 18197, + 112522, + 93957, + 21284 + ], + 1, + "677580c5.jpg?=20241230", + 82, + "che_250403_0XkN", + 116, + [ + "hall:dex1", + "hall:tlrate" + ] + ], + [ + "【82기】병리학적자세", + 80, + 15, + 90, + "che_event_신중", + [ + 37964, + 22075, + 61541, + 466783, + 9635 + ], + 1, + "3679089.jpg?=20180629", + 82, + "che_250403_0XkN", + 121, + [ + "hall:betrate", + "hall:betwin" + ] + ], + [ + "【82기】황혼중", + 15, + 83, + 90, + "che_event_징병", + [ + 0, + 0, + 0, + 0, + 0 + ], + 1, + "e5161df9.jpg?=20231110", + 82, + "che_250403_0XkN", + 125, + [ + "hall:dedication" + ] + ], + [ + "【82기】밀리터리 프레스", + 82, + 93, + 16, + "che_event_필살", + [ + 38415, + 48281, + 1189177, + 85772, + 66919 + ], + 1, + "4c3599f8.jpg?=20250404", + 82, + "che_250403_0XkN", + 216, + [ + "hall:betgold", + "hall:betrate", + "hall:betwingold", + "hall:dex3", + "hall:dex5", + "hall:killnum", + "hall:killrate", + "hall:killrate_person", + "hall:winrate" + ] + ], + [ + "【82기】기술셔틀", + 15, + 71, + 101, + "che_event_신산", + [ + 0, + 0, + 0, + 0, + 0 + ], + 0, + "default.jpg", + 82, + "che_250403_0XkN", + 217, + [ + "hall:firenum", + "hall:tirate" + ] + ], + [ + "【82기】마요이", + 16, + 73, + 98, + "che_event_징병", + [ + 0, + 0, + 0, + 0, + 0 + ], + 1, + "2b49c945.png?=20230921", + 82, + "che_250403_0XkN", + 224, + [ + "hall:tirate", + "hall:ttrate" + ] + ], + [ + "【82기】와일드플라워", + 78, + 91, + 16, + "che_event_돌격", + [ + 94766, + 436660, + 43052, + 164789, + 17964 + ], + 0, + "default.jpg", + 82, + "che_250403_0XkN", + 228, + [ + "hall:dex2" + ] + ], + [ + "【82기】비스마르크", + 79, + 95, + 15, + "che_event_필살", + [ + 80443, + 654857, + 29093, + 89616, + 54636 + ], + 0, + "default.jpg", + 82, + "che_250403_0XkN", + 230, + [ + "hall:dex2", + "hall:dex5", + "hall:tsrate" + ] + ], + [ + "【82기】雪原", + 81, + 93, + 15, + "che_event_격노", + [ + 12709, + 21858, + 725053, + 41496, + 50673 + ], + 0, + "default.jpg", + 82, + "che_250403_0XkN", + 235, + [ + "hall:dex3", + "hall:dex5", + "hall:ttrate" + ] + ], + [ + "【82기】어둠의대검", + 78, + 15, + 92, + "che_event_필살", + [ + 64117, + 20513, + 37497, + 606133, + 48542 + ], + 1, + "58b83f5f.png?=20250408", + 82, + "che_250403_0XkN", + 303, + [ + "hall:dex5" + ] + ], + [ + "【82기】Navy마초", + 77, + 92, + 15, + "che_event_무쌍", + [ + 38659, + 309360, + 9971, + 70850, + 13121 + ], + 1, + "37644ed3.png?=20230831", + 82, + "che_250403_0XkN", + 313, + [ + "hall:dex2" + ] + ], + [ + "【82기】충북미남관흥", + 17, + 73, + 96, + "che_event_필살", + [ + 0, + 0, + 0, + 0, + 0 + ], + 0, + "default.jpg", + 82, + "che_250403_0XkN", + 315, + [ + "hall:firenum" + ] + ], + [ + "【82기】관흥동생관색", + 16, + 72, + 97, + "che_event_저격", + [ + 0, + 0, + 0, + 0, + 0 + ], + 0, + "default.jpg", + 82, + "che_250403_0XkN", + 363, + [ + "hall:dedication" + ] + ], + [ + "【82기】여심도둑가능", + 78, + 89, + 15, + "che_event_필살", + [ + 26114, + 48097, + 500633, + 100049, + 19276 + ], + 1, + "a55a390e.png?=20250411", + 82, + "che_250403_0XkN", + 501, + [ + "hall:dex3" + ] + ], + [ + "【83기】아미새", + 80, + 16, + 89, + "che_event_집중", + [ + 57161, + 36399, + 38641, + 804048, + 43663 + ], + 1, + "16cfc47b.jpg?=20250501", + 83, + "che_250501_tClO", + 6, + [ + "hall:betgold", + "hall:betwingold", + "hall:dex4", + "hall:firenum" + ] + ], + [ + "【83기】어그로천번끄는독구", + 15, + 72, + 97, + "che_event_징병", + [ + 0, + 0, + 0, + 0, + 0 + ], + 1, + "5283daf7.png?=20240511", + 83, + "che_250501_tClO", + 14, + [ + "hall:betgold", + "hall:betwin", + "hall:betwingold", + "hall:dedication", + "hall:tirate" + ] + ], + [ + "【83기】Mr. Boo", + 83, + 15, + 92, + "che_event_척사", + [ + 47660, + 7946, + 64857, + 1168257, + 21840 + ], + 1, + "93f65efe.gif?=20250501", + 83, + "che_250501_tClO", + 16, + [ + "hall:dex4", + "hall:experience", + "hall:killcrew", + "hall:killcrew_person", + "hall:killnum", + "hall:killrate", + "hall:killrate_person", + "hall:occupied", + "hall:warnum", + "hall:winrate" + ] + ], + [ + "【83기】Skt", + 78, + 92, + 15, + "che_event_격노", + [ + 788123, + 17868, + 62293, + 32290, + 19815 + ], + 0, + "default.jpg", + 83, + "che_250501_tClO", + 17, + [ + "hall:dex1", + "hall:tsrate" + ] + ], + [ + "【83기】바나낫", + 78, + 15, + 93, + "che_event_필살", + [ + 101902, + 44800, + 82871, + 890266, + 42351 + ], + 1, + "dab9237e.gif?=20250428", + 83, + "che_250501_tClO", + 18, + [ + "chief:9", + "hall:dex4", + "hall:firenum", + "hall:ttrate" + ] + ], + [ + "【83기】임사영", + 93, + 77, + 15, + "che_event_필살", + [ + 248173, + 480143, + 137084, + 77623, + 36248 + ], + 1, + "0b5a2642.jpg?=20240305", + 83, + "che_250501_tClO", + 19, + [ + "hall:dex2", + "hall:dex3", + "hall:tlrate" + ] + ], + [ + "【83기】와일드플라워", + 76, + 16, + 92, + "che_event_집중", + [ + 25219, + 34255, + 29840, + 595028, + 30758 + ], + 0, + "default.jpg", + 83, + "che_250501_tClO", + 30, + [ + "hall:tirate" + ] + ], + [ + "【83기】퍄퍄", + 78, + 93, + 15, + "che_event_필살", + [ + 551061, + 13238, + 34655, + 93334, + 20727 + ], + 0, + "default.jpg", + 83, + "che_250501_tClO", + 36, + [ + "chief:11", + "hall:dedication", + "hall:dex1", + "hall:tsrate" + ] + ], + [ + "【83기】하와와", + 81, + 15, + 92, + "che_event_필살", + [ + 49527, + 34417, + 60690, + 856409, + 49310 + ], + 1, + "7cfb6523.png?=20250522", + 83, + "che_250501_tClO", + 37, + [ + "hall:betrate", + "hall:dex4", + "hall:dex5" + ] + ], + [ + "【83기】Hide_D", + 79, + 15, + 93, + "che_event_저격", + [ + 67024, + 25055, + 84784, + 613822, + 39909 + ], + 1, + "4569d848.png?=20230612", + 83, + "che_250501_tClO", + 38, + [ + "hall:tirate" + ] + ], + [ + "【83기】비스", + 80, + 93, + 15, + "che_event_돌격", + [ + 85256, + 64341, + 979049, + 90044, + 41685 + ], + 0, + "default.jpg", + 83, + "che_250501_tClO", + 39, + [ + "hall:dex3", + "hall:tsrate" + ] + ], + [ + "【83기】네시", + 81, + 87, + 15, + "che_event_저격", + [ + 643417, + 20367, + 38604, + 72680, + 24580 + ], + 1, + "63f1c106.png?=20230223", + 83, + "che_250501_tClO", + 43, + [ + "hall:dex1" + ] + ], + [ + "【83기】트랄랄레로트랄랄라", + 79, + 15, + 91, + "che_event_신중", + [ + 58328, + 36557, + 35328, + 829373, + 45858 + ], + 1, + "46aa5701.png?=20250501", + 83, + "che_250501_tClO", + 58, + [ + "hall:dex4", + "hall:killrate_person" + ] + ], + [ + "【83기】봄봄비니구지니", + 91, + 78, + 15, + "che_event_필살", + [ + 452239, + 34090, + 90291, + 93679, + 29404 + ], + 1, + "12bb2204.png?=20250501", + 83, + "che_250501_tClO", + 60, + [ + "hall:occupied", + "hall:tlrate" + ] + ], + [ + "【83기】평민킬러", + 79, + 94, + 15, + "che_event_필살", + [ + 68475, + 1036843, + 58541, + 78968, + 50230 + ], + 1, + "ff53d7eb.jpg?=20250503", + 83, + "che_250501_tClO", + 63, + [ + "chief:10", + "hall:betgold", + "hall:betrate", + "hall:betwin", + "hall:betwingold", + "hall:dedication", + "hall:dex2", + "hall:dex5", + "hall:experience", + "hall:killcrew", + "hall:killcrew_person", + "hall:killnum", + "hall:killrate", + "hall:killrate_person", + "hall:occupied", + "hall:warnum", + "hall:winrate" + ] + ], + [ + "【83기】마요이", + 15, + 76, + 90, + "che_event_척사", + [ + 0, + 0, + 0, + 0, + 0 + ], + 1, + "2b49c945.png?=20230921", + 83, + "che_250501_tClO", + 65, + [ + "hall:tirate" + ] + ], + [ + "【83기】진솔", + 77, + 92, + 15, + "che_event_저격", + [ + 19286, + 45056, + 723001, + 116586, + 53611 + ], + 1, + "61ab7ca2.jpg?=20250515", + 83, + "che_250501_tClO", + 66, + [ + "hall:dex3", + "hall:dex5", + "hall:killrate", + "hall:killrate_person" + ] + ], + [ + "【83기】???", + 81, + 88, + 16, + "che_event_격노", + [ + 622861, + 89262, + 23678, + 109371, + 26511 + ], + 0, + "default.jpg", + 83, + "che_250501_tClO", + 67, + [ + "hall:dex1", + "hall:dex2" + ] + ], + [ + "【83기】로비", + 17, + 72, + 96, + "che_event_의술", + [ + 0, + 0, + 0, + 0, + 0 + ], + 1, + "71751125.png?=20240823", + 83, + "che_250501_tClO", + 68, + [ + "hall:tirate" + ] + ], + [ + "【83기】진브", + 77, + 16, + 90, + "che_event_신산", + [ + 21334, + 11177, + 32134, + 429882, + 26496 + ], + 0, + "default.jpg", + 83, + "che_250501_tClO", + 69, + [ + "hall:firenum" + ] + ], + [ + "【83기】비프로스트", + 76, + 95, + 15, + "che_event_돌격", + [ + 29237, + 484841, + 30438, + 108173, + 49497 + ], + 0, + "default.jpg", + 83, + "che_250501_tClO", + 70, + [ + "hall:betwin", + "hall:dedication", + "hall:dex2", + "hall:dex5", + "hall:tsrate" + ] + ], + [ + "【83기】시드 카게노", + 94, + 75, + 16, + "che_event_필살", + [ + 138352, + 70695, + 701681, + 102776, + 38536 + ], + 1, + "27fe98e2.webp?=20250508", + 83, + "che_250501_tClO", + 71, + [ + "hall:betwin", + "hall:dex3", + "hall:tlrate" + ] + ], + [ + "【83기】지장", + 82, + 15, + 89, + "che_event_반계", + [ + 98802, + 33835, + 38140, + 638112, + 34092 + ], + 0, + "default.jpg", + 83, + "che_250501_tClO", + 73, + [ + "hall:ttrate" + ] + ], + [ + "【83기】카이스트", + 79, + 15, + 90, + "che_event_의술", + [ + 45476, + 31594, + 67477, + 587083, + 38506 + ], + 1, + "e7e27cd6.jpg?=20221125", + 83, + "che_250501_tClO", + 74, + [ + "hall:betrate", + "hall:ttrate" + ] + ], + [ + "【83기】사이드레터럴레이즈", + 76, + 16, + 93, + "che_event_집중", + [ + 35261, + 26648, + 29189, + 465267, + 43345 + ], + 1, + "e4f546cd.jpg?=20250522", + 83, + "che_250501_tClO", + 76, + [ + "chief:7", + "hall:betgold", + "hall:betrate", + "hall:betwin", + "hall:betwingold", + "hall:dedication" + ] + ], + [ + "【83기】감흥", + 75, + 97, + 16, + "che_event_돌격", + [ + 963431, + 10572, + 23084, + 35244, + 16967 + ], + 1, + "df1ea5a1.jpg?=20250501", + 83, + "che_250501_tClO", + 77, + [ + "chief:8", + "hall:betgold", + "hall:betwin", + "hall:betwingold", + "hall:dedication", + "hall:dex1", + "hall:experience", + "hall:killcrew_person", + "hall:occupied", + "hall:tsrate", + "hall:warnum" + ] + ], + [ + "【83기】Lemon", + 82, + 87, + 15, + "che_event_공성", + [ + 32786, + 4468, + 61338, + 41242, + 1098228 + ], + 1, + "5186ff77.png?=20250518", + 83, + "che_250501_tClO", + 79, + [ + "chief:12", + "hall:betgold", + "hall:betrate", + "hall:betwin", + "hall:betwingold", + "hall:dedication", + "hall:dex5", + "hall:experience", + "hall:killcrew", + "hall:killrate", + "hall:occupied", + "hall:winrate" + ] + ], + [ + "【83기】Time", + 89, + 82, + 15, + "che_event_필살", + [ + 31635, + 45067, + 612314, + 97366, + 39495 + ], + 0, + "default.jpg", + 83, + "che_250501_tClO", + 80, + [ + "hall:dex3", + "hall:ttrate" + ] + ], + [ + "【83기】이드", + 76, + 15, + 92, + "che_event_신산", + [ + 45644, + 18587, + 23914, + 263165, + 22927 + ], + 1, + "ac5f0a3b.jpg?=20241107", + 83, + "che_250501_tClO", + 81, + [ + "hall:dedication" + ] + ], + [ + "【83기】리나크", + 78, + 97, + 15, + "che_event_필살", + [ + 20216, + 1297525, + 9752, + 26901, + 20667 + ], + 1, + "620ea5cb.png?=20250501", + 83, + "che_250501_tClO", + 82, + [ + "hall:betrate", + "hall:dex2", + "hall:killcrew", + "hall:killcrew_person", + "hall:killnum", + "hall:killrate", + "hall:killrate_person", + "hall:tsrate", + "hall:ttrate", + "hall:warnum", + "hall:winrate" + ] + ], + [ + "【83기】브르르브르르파타핌", + 78, + 15, + 94, + "che_event_필살", + [ + 68272, + 22185, + 26363, + 1005782, + 46946 + ], + 1, + "ff7f3cbe.jpg?=20250501", + 83, + "che_250501_tClO", + 83, + [ + "hall:betwin", + "hall:dex4", + "hall:experience", + "hall:killcrew", + "hall:killcrew_person", + "hall:killnum", + "hall:killrate", + "hall:killrate_person", + "hall:occupied", + "hall:winrate" + ] + ], + [ + "【83기】Air", + 83, + 91, + 15, + "che_event_필살", + [ + 14186, + 1270013, + 21998, + 14919, + 18412 + ], + 0, + "default.jpg", + 83, + "che_250501_tClO", + 84, + [ + "chief:6", + "hall:betrate", + "hall:betwingold", + "hall:dex2", + "hall:killcrew", + "hall:killcrew_person", + "hall:killnum", + "hall:tsrate", + "hall:ttrate", + "hall:warnum" + ] + ], + [ + "【83기】사스케", + 78, + 15, + 93, + "che_event_징병", + [ + 42451, + 36266, + 23560, + 851879, + 36681 + ], + 1, + "53aa49bd.jpg?=20241203", + 83, + "che_250501_tClO", + 85, + [ + "hall:betwin", + "hall:dex4", + "hall:experience", + "hall:killcrew_person" + ] + ], + [ + "【83기】섀도우", + 79, + 15, + 95, + "che_event_징병", + [ + 91079, + 39108, + 61486, + 1126927, + 45259 + ], + 1, + "0e8e1739.jpg?=20250516", + 83, + "che_250501_tClO", + 86, + [ + "chief:5", + "hall:dex4", + "hall:experience", + "hall:killcrew", + "hall:killcrew_person", + "hall:killnum", + "hall:warnum" + ] + ], + [ + "【83기】진브소환수", + 89, + 15, + 79, + "che_event_의술", + [ + 38637, + 17445, + 43122, + 627990, + 28631 + ], + 1, + "7310fbd1.jpg?=20250520", + 83, + "che_250501_tClO", + 87, + [ + "hall:tlrate" + ] + ], + [ + "【83기】나 독구 아니다", + 93, + 81, + 15, + "che_event_필살", + [ + 1181246, + 20655, + 37842, + 132895, + 22404 + ], + 1, + "0f742d3b.png?=20250501", + 83, + "che_250501_tClO", + 88, + [ + "hall:dex1", + "hall:experience", + "hall:killcrew", + "hall:killcrew_person", + "hall:killnum", + "hall:killrate", + "hall:killrate_person", + "hall:tlrate", + "hall:warnum", + "hall:winrate" + ] + ], + [ + "【83기】냥냥냥", + 94, + 74, + 15, + "che_event_공성", + [ + 73301, + 77580, + 66771, + 69184, + 548576 + ], + 1, + "458caeac.gif?=20240919", + 83, + "che_250501_tClO", + 89, + [ + "hall:dex2", + "hall:dex5", + "hall:occupied", + "hall:tlrate" + ] + ], + [ + "【83기】불패", + 80, + 91, + 15, + "che_event_돌격", + [ + 1342011, + 88776, + 86924, + 104004, + 85631 + ], + 1, + "283bc08c.jpg?=20250522", + 83, + "che_250501_tClO", + 90, + [ + "hall:betgold", + "hall:dex1", + "hall:dex2", + "hall:dex5", + "hall:experience", + "hall:firenum", + "hall:killcrew", + "hall:killnum", + "hall:killrate", + "hall:killrate_person", + "hall:occupied", + "hall:warnum", + "hall:winrate" + ] + ], + [ + "【83기】키키라라비비", + 77, + 15, + 93, + "che_event_신중", + [ + 47050, + 34751, + 28592, + 607042, + 16661 + ], + 1, + "7d3befed.png?=20250307", + 83, + "che_250501_tClO", + 91, + [ + "hall:tirate" + ] + ], + [ + "【83기】대교", + 94, + 74, + 17, + "che_event_필살", + [ + 665942, + 40254, + 27943, + 150024, + 11405 + ], + 1, + "a53ab5ef.jpg?=20241010", + 83, + "che_250501_tClO", + 92, + [ + "hall:dex1", + "hall:tlrate" + ] + ], + [ + "【83기】강유", + 79, + 15, + 93, + "che_event_집중", + [ + 21154, + 25539, + 12577, + 745918, + 23498 + ], + 1, + "79e150d0.jpg?=20230921", + 83, + "che_250501_tClO", + 93, + [ + "hall:dex4", + "hall:killnum", + "hall:ttrate", + "hall:winrate" + ] + ], + [ + "【83기】황혼중", + 15, + 90, + 78, + "che_event_척사", + [ + 0, + 0, + 0, + 0, + 0 + ], + 1, + "e5161df9.jpg?=20231110", + 83, + "che_250501_tClO", + 94, + [ + "hall:ttrate" + ] + ], + [ + "【83기】독도", + 96, + 81, + 15, + "che_event_징병", + [ + 240999, + 125967, + 1784427, + 156734, + 50597 + ], + 1, + "298214f8.jpg?=20250505", + 83, + "che_250501_tClO", + 95, + [ + "hall:betgold", + "hall:betwin", + "hall:betwingold", + "hall:dex2", + "hall:dex3", + "hall:dex5", + "hall:experience", + "hall:killcrew", + "hall:killcrew_person", + "hall:killnum", + "hall:killrate", + "hall:killrate_person", + "hall:tlrate", + "hall:warnum", + "hall:winrate" + ] + ], + [ + "【83기】퉁퉁퉁 사후르", + 66, + 78, + 13, + "che_event_징병", + [ + 181080, + 14919, + 185981, + 73825, + 22439 + ], + 1, + "ca4c57f8.png?=20250507", + 83, + "che_250501_tClO", + 96, + [ + "hall:betgold", + "hall:betrate", + "hall:betwingold", + "hall:dedication", + "hall:dex3", + "hall:firenum", + "hall:killrate", + "hall:killrate_person", + "hall:occupied", + "hall:tsrate", + "hall:winrate" + ] + ], + [ + "【83기】토가메", + 78, + 92, + 15, + "che_event_척사", + [ + 465229, + 6931, + 50750, + 72179, + 14186 + ], + 1, + "5acd5f56.webp?=20250510", + 83, + "che_250501_tClO", + 98, + [ + "hall:dex1", + "hall:tsrate" + ] + ], + [ + "【83기】척", + 78, + 93, + 15, + "che_event_필살", + [ + 135968, + 37523, + 521120, + 135410, + 12903 + ], + 1, + "7cb75480.png?=20221202", + 83, + "che_250501_tClO", + 100, + [ + "hall:dex3", + "hall:tsrate" + ] + ], + [ + "【83기】시아", + 16, + 74, + 92, + "che_event_의술", + [ + 0, + 0, + 0, + 0, + 0 + ], + 1, + "f675cc36.jpg?=20250501", + 83, + "che_250501_tClO", + 103, + [ + "hall:tirate" + ] + ], + [ + "【83기】최진리", + 75, + 15, + 96, + "che_event_필살", + [ + 42692, + 12191, + 28730, + 434265, + 31219 + ], + 1, + "677580c5.jpg?=20241230", + 83, + "che_250501_tClO", + 105, + [ + "hall:betrate", + "hall:dedication", + "hall:tirate" + ] + ], + [ + "【83기】아니다", + 82, + 86, + 15, + "che_event_돌격", + [ + 23996, + 20454, + 560728, + 60002, + 29625 + ], + 0, + "default.jpg", + 83, + "che_250501_tClO", + 107, + [ + "hall:dex3" + ] + ], + [ + "【83기】서희", + 82, + 15, + 88, + "che_event_척사", + [ + 72083, + 16601, + 104578, + 777787, + 47702 + ], + 0, + "default.jpg", + 83, + "che_250501_tClO", + 109, + [ + "hall:dex4", + "hall:dex5", + "hall:occupied", + "hall:warnum" + ] + ], + [ + "【83기】코코낸내", + 78, + 15, + 92, + "che_event_징병", + [ + 66669, + 49304, + 20308, + 605794, + 63669 + ], + 1, + "9069c7d5.png?=20250513", + 83, + "che_250501_tClO", + 111, + [ + "hall:dex5" + ] + ], + [ + "【83기】무", + 77, + 15, + 94, + "che_event_환술", + [ + 33815, + 41926, + 6018, + 646423, + 22672 + ], + 0, + "default.jpg", + 83, + "che_250501_tClO", + 113, + [ + "hall:tirate", + "hall:ttrate" + ] + ], + [ + "【83기】ㅁㅁㅁ", + 84, + 15, + 86, + "che_event_집중", + [ + 68343, + 44817, + 15250, + 563751, + 18289 + ], + 0, + "default.jpg", + 83, + "che_250501_tClO", + 182, + [ + "hall:ttrate" + ] + ], + [ + "【83기】지각", + 91, + 15, + 77, + "che_event_집중", + [ + 47674, + 27004, + 75565, + 546896, + 37939 + ], + 1, + "d5a762e7.jpg?=20250523", + 83, + "che_250501_tClO", + 188, + [ + "hall:betgold", + "hall:betrate", + "hall:betwingold", + "hall:tlrate" + ] + ], + [ + "【83기】Audi", + 93, + 74, + 15, + "che_event_징병", + [ + 34388, + 72402, + 350299, + 91063, + 14310 + ], + 0, + "default.jpg", + 83, + "che_250501_tClO", + 355, + [ + "hall:dex2", + "hall:dex3", + "hall:tlrate" + ] + ], + [ + "【83기】보네카 암발라부", + 77, + 91, + 15, + "che_event_필살", + [ + 467498, + 1777, + 25384, + 76720, + 6752 + ], + 0, + "default.jpg", + 83, + "che_250501_tClO", + 364, + [ + "hall:dex1" + ] + ], + [ + "【83기】하냥", + 15, + 73, + 89, + "che_event_징병", + [ + 0, + 0, + 0, + 0, + 0 + ], + 1, + "8be1d2b1.jpg?=20240712", + 83, + "che_250501_tClO", + 457, + [ + "hall:tirate" + ] + ], + [ + "【84기】진솔", + 79, + 15, + 92, + "che_event_저격", + [ + 50726, + 36175, + 22723, + 558776, + 28184 + ], + 1, + "61ab7ca2.jpg?=20250515", + 84, + "che_250529_kaZH", + 8, + [ + "hall:dex4" + ] + ], + [ + "【84기】JOHN CENA", + 77, + 93, + 15, + "che_event_필살", + [ + 620780, + 22116, + 23334, + 86590, + 52886 + ], + 1, + "f7efef6c.gif?=20250523", + 84, + "che_250529_kaZH", + 10, + [ + "chief:8", + "hall:betgold", + "hall:dedication", + "hall:dex1", + "hall:killrate", + "hall:killrate_person", + "hall:occupied", + "hall:tsrate", + "hall:winrate" + ] + ], + [ + "【84기】씩씩한아붕이", + 67, + 13, + 78, + "che_event_필살", + [ + 19648, + 861, + 5680, + 174412, + 16150 + ], + 1, + "e352b303.jpg?=20250501", + 84, + "che_250529_kaZH", + 23, + [ + "hall:tirate" + ] + ], + [ + "【84기】임사영", + 77, + 15, + 93, + "che_event_필살", + [ + 12830, + 57716, + 26858, + 605688, + 34863 + ], + 1, + "0b5a2642.jpg?=20240305", + 84, + "che_250529_kaZH", + 24, + [ + "hall:dedication", + "hall:dex4", + "hall:experience" + ] + ], + [ + "【84기】Bianchi", + 90, + 78, + 15, + "che_event_돌격", + [ + 433999, + 20162, + 39573, + 39062, + 57437 + ], + 0, + "default.jpg", + 84, + "che_250529_kaZH", + 26, + [ + "hall:tlrate" + ] + ], + [ + "【84기】피그말리온", + 78, + 93, + 15, + "che_event_척사", + [ + 115179, + 231225, + 54830, + 59747, + 61769 + ], + 0, + "default.jpg", + 84, + "che_250529_kaZH", + 31, + [ + "hall:betwin", + "hall:dex2" + ] + ], + [ + "【84기】ㅎㄴ", + 80, + 91, + 15, + "che_event_필살", + [ + 595350, + 22019, + 43529, + 94666, + 55913 + ], + 0, + "default.jpg", + 84, + "che_250529_kaZH", + 32, + [ + "hall:dex1", + "hall:tsrate" + ] + ], + [ + "【84기】시진핑핑이", + 82, + 89, + 15, + "che_event_무쌍", + [ + 720263, + 61096, + 38675, + 108214, + 93378 + ], + 0, + "default.jpg", + 84, + "che_250529_kaZH", + 33, + [ + "hall:dex1", + "hall:dex5", + "hall:occupied" + ] + ], + [ + "【84기】강유", + 79, + 15, + 89, + "che_event_집중", + [ + 37405, + 49842, + 25686, + 400609, + 68341 + ], + 1, + "79e150d0.jpg?=20230921", + 84, + "che_250529_kaZH", + 39, + [ + "hall:occupied" + ] + ], + [ + "【84기】독구현여친", + 66, + 13, + 78, + "che_event_신중", + [ + 11874, + 33060, + 9906, + 202347, + 38448 + ], + 1, + "2c1d934d.png?=20250529", + 84, + "che_250529_kaZH", + 40, + [ + "hall:betwingold", + "hall:dex2", + "hall:firenum", + "hall:tirate" + ] + ], + [ + "【84기】마르크", + 66, + 81, + 13, + "che_event_돌격", + [ + 16784, + 16420, + 322498, + 33397, + 19316 + ], + 0, + "default.jpg", + 84, + "che_250529_kaZH", + 43, + [ + "hall:dex3", + "hall:tsrate", + "hall:ttrate", + "hall:winrate" + ] + ], + [ + "【84기】Sase", + 82, + 15, + 91, + "che_event_의술", + [ + 79478, + 24180, + 64894, + 1182647, + 49405 + ], + 1, + "94d87df1.jpg?=20250529", + 84, + "che_250529_kaZH", + 47, + [ + "hall:betgold", + "hall:betrate", + "hall:betwin", + "hall:betwingold", + "hall:dex4", + "hall:killcrew", + "hall:killcrew_person", + "hall:killnum", + "hall:warnum", + "hall:winrate" + ] + ], + [ + "【84기】쯔모", + 13, + 61, + 84, + "che_event_환술", + [ + 0, + 0, + 0, + 135, + 208 + ], + 0, + "default.jpg", + 84, + "che_250529_kaZH", + 48, + [ + "hall:tirate" + ] + ], + [ + "【84기】초이스", + 76, + 15, + 91, + "che_event_반계", + [ + 479, + 36894, + 7628, + 179679, + 57913 + ], + 0, + "default.jpg", + 84, + "che_250529_kaZH", + 52, + [ + "hall:firenum" + ] + ], + [ + "【84기】지파이", + 78, + 66, + 13, + "che_event_돌격", + [ + 14509, + 16592, + 395790, + 39707, + 12406 + ], + 0, + "default.jpg", + 84, + "che_250529_kaZH", + 64, + [ + "hall:dex3", + "hall:tlrate" + ] + ], + [ + "【84기】마츄", + 79, + 15, + 92, + "che_event_징병", + [ + 15648, + 60405, + 34265, + 585776, + 83022 + ], + 1, + "ae3e8047.png?=20250529", + 84, + "che_250529_kaZH", + 67, + [ + "hall:betrate", + "hall:dex4", + "hall:dex5", + "hall:experience" + ] + ], + [ + "【84기】삼모 대통령 독구", + 16, + 71, + 97, + "che_event_집중", + [ + 0, + 0, + 0, + 0, + 0 + ], + 1, + "5283daf7.png?=20240511", + 84, + "che_250529_kaZH", + 69, + [ + "hall:betwin", + "hall:dedication" + ] + ], + [ + "【84기】독구미래여친", + 95, + 72, + 17, + "che_event_공성", + [ + 26629, + 14359, + 1675, + 29486, + 615018 + ], + 0, + "default.jpg", + 84, + "che_250529_kaZH", + 71, + [ + "hall:betgold", + "hall:betwingold", + "hall:dex5", + "hall:experience", + "hall:killrate", + "hall:occupied" + ] + ], + [ + "【84기】냥냥냥", + 81, + 15, + 88, + "che_event_의술", + [ + 34314, + 45680, + 32065, + 513326, + 66560 + ], + 1, + "458caeac.gif?=20240919", + 84, + "che_250529_kaZH", + 75, + [ + "hall:occupied" + ] + ], + [ + "【84기】김현지", + 79, + 16, + 88, + "che_event_필살", + [ + 48157, + 4826, + 33771, + 510969, + 22968 + ], + 0, + "default.jpg", + 84, + "che_250529_kaZH", + 79, + [ + "hall:tirate" + ] + ], + [ + "【84기】이재명", + 112, + 70, + 15, + "che_event_징병", + [ + 162844, + 49244, + 121452, + 203784, + 2990401 + ], + 1, + "101c7390.png?=20250529", + 84, + "che_250529_kaZH", + 81, + [ + "hall:betgold", + "hall:betwin", + "hall:betwingold", + "hall:dex5", + "hall:experience", + "hall:firenum", + "hall:killcrew", + "hall:killcrew_person", + "hall:killnum", + "hall:killrate", + "hall:killrate_person", + "hall:occupied", + "hall:tlrate", + "hall:ttrate", + "hall:warnum", + "hall:winrate" + ] + ], + [ + "【84기】와일드플라워", + 80, + 16, + 87, + "che_event_신산", + [ + 54952, + 36266, + 39220, + 543897, + 34306 + ], + 0, + "default.jpg", + 84, + "che_250529_kaZH", + 82, + [ + "hall:ttrate" + ] + ], + [ + "【84기】대교", + 80, + 65, + 13, + "che_event_필살", + [ + 12022, + 10212, + 13471, + 14394, + 290463 + ], + 1, + "a53ab5ef.jpg?=20241010", + 84, + "che_250529_kaZH", + 83, + [ + "hall:betrate", + "hall:dex5", + "hall:occupied" + ] + ], + [ + "【84기】김남준", + 65, + 13, + 79, + "che_event_징병", + [ + 46808, + 17311, + 53080, + 391360, + 10844 + ], + 1, + "ef3e9d1b.png?=20250530", + 84, + "che_250529_kaZH", + 84, + [ + "hall:dex4", + "hall:tirate" + ] + ], + [ + "【84기】잠식수", + 68, + 78, + 13, + "che_event_격노", + [ + 231004, + 27237, + 18456, + 31473, + 16036 + ], + 0, + "default.jpg", + 84, + "che_250529_kaZH", + 85, + [ + "hall:tsrate", + "hall:ttrate" + ] + ], + [ + "【84기】독구", + 77, + 96, + 15, + "che_event_필살", + [ + 504380, + 398622, + 30375, + 70267, + 81852 + ], + 1, + "0d0a802e.png?=20250529", + 84, + "che_250529_kaZH", + 87, + [ + "chief:12", + "hall:betwin", + "hall:dedication", + "hall:dex1", + "hall:dex2", + "hall:experience", + "hall:killrate", + "hall:killrate_person", + "hall:tsrate", + "hall:winrate" + ] + ], + [ + "【84기】김문수", + 93, + 77, + 16, + "che_event_필살", + [ + 1100335, + 16912, + 58126, + 131960, + 27955 + ], + 1, + "79fd2d9e.webp?=20250620", + 84, + "che_250529_kaZH", + 88, + [ + "hall:betwin", + "hall:dex1", + "hall:killcrew", + "hall:killcrew_person", + "hall:killnum", + "hall:killrate", + "hall:killrate_person", + "hall:tlrate", + "hall:warnum" + ] + ], + [ + "【84기】독버지", + 78, + 15, + 93, + "che_event_환술", + [ + 11541, + 30389, + 38820, + 538659, + 46679 + ], + 1, + "fdcbb12f.png?=20240918", + 84, + "che_250529_kaZH", + 89, + [ + "chief:11", + "hall:dedication" + ] + ], + [ + "【84기】더", + 80, + 92, + 15, + "che_event_저격", + [ + 669149, + 22214, + 28289, + 51055, + 47469 + ], + 0, + "default.jpg", + 84, + "che_250529_kaZH", + 90, + [ + "hall:dex1", + "hall:tsrate" + ] + ], + [ + "【84기】NK", + 82, + 65, + 13, + "che_event_무쌍", + [ + 57984, + 573222, + 17925, + 83682, + 23449 + ], + 0, + "default.jpg", + 84, + "che_250529_kaZH", + 91, + [ + "hall:dex2", + "hall:killcrew", + "hall:killcrew_person", + "hall:killnum", + "hall:killrate", + "hall:killrate_person", + "hall:tlrate", + "hall:warnum", + "hall:winrate" + ] + ], + [ + "【84기】마자용", + 81, + 94, + 15, + "che_event_반계", + [ + 38907, + 32418, + 1205477, + 29605, + 42713 + ], + 1, + "0fc5e453.jpg?=20250529", + 84, + "che_250529_kaZH", + 92, + [ + "hall:betrate", + "hall:betwingold", + "hall:dex3", + "hall:killcrew", + "hall:killcrew_person", + "hall:killnum", + "hall:killrate", + "hall:killrate_person", + "hall:tsrate", + "hall:ttrate", + "hall:warnum" + ] + ], + [ + "【84기】네이", + 90, + 16, + 81, + "che_event_필살", + [ + 26898, + 24496, + 21768, + 668315, + 28684 + ], + 0, + "default.jpg", + 84, + "che_250529_kaZH", + 93, + [ + "chief:7", + "hall:dex4", + "hall:tlrate" + ] + ], + [ + "【84기】독구대통령님", + 79, + 16, + 94, + "che_event_징병", + [ + 77942, + 63078, + 42709, + 1134706, + 79286 + ], + 1, + "2e370c5b.png?=20250529", + 84, + "che_250529_kaZH", + 94, + [ + "hall:betrate", + "hall:dex2", + "hall:dex4", + "hall:experience", + "hall:killcrew", + "hall:killcrew_person", + "hall:killnum", + "hall:warnum" + ] + ], + [ + "【84기】아야", + 91, + 78, + 15, + "che_event_필살", + [ + 6052, + 22975, + 577540, + 68015, + 113810 + ], + 1, + "95169261.png?=20250529", + 84, + "che_250529_kaZH", + 95, + [ + "hall:dex3", + "hall:dex5", + "hall:tlrate" + ] + ], + [ + "【84기】평민킬러", + 66, + 80, + 13, + "che_event_필살", + [ + 350719, + 30698, + 15271, + 39354, + 16778 + ], + 1, + "ff53d7eb.jpg?=20250503", + 84, + "che_250529_kaZH", + 96, + [ + "hall:betwin", + "hall:dex1", + "hall:dex2", + "hall:killrate", + "hall:killrate_person", + "hall:tsrate" + ] + ], + [ + "【84기】잠맘보", + 79, + 15, + 91, + "che_event_환술", + [ + 6291, + 8424, + 31223, + 642591, + 57132 + ], + 1, + "1b8ef0c1.png?=20250604", + 84, + "che_250529_kaZH", + 97, + [ + "hall:betrate", + "hall:betwingold", + "hall:dex4" + ] + ], + [ + "【84기】애쉬", + 80, + 15, + 91, + "che_event_징병", + [ + 44580, + 27515, + 20894, + 705355, + 28356 + ], + 1, + "ac5f0a3b.jpg?=20241107", + 84, + "che_250529_kaZH", + 98, + [ + "hall:dex4" + ] + ], + [ + "【84기】JP", + 78, + 15, + 91, + "che_event_징병", + [ + 44117, + 38330, + 49383, + 521692, + 41920 + ], + 0, + "default.jpg", + 84, + "che_250529_kaZH", + 100, + [ + "hall:betgold", + "hall:dedication" + ] + ], + [ + "【84기】독구전여친", + 76, + 15, + 94, + "che_event_집중", + [ + 30220, + 28014, + 12472, + 451402, + 57067 + ], + 1, + "c0db270a.png?=20250528", + 84, + "che_250529_kaZH", + 101, + [ + "hall:betrate", + "hall:tirate" + ] + ], + [ + "【84기】케이네", + 101, + 70, + 15, + "che_event_공성", + [ + 26433, + 4409, + 0, + 3388, + 1047573 + ], + 1, + "2967d1e4.png?=20250616", + 84, + "che_250529_kaZH", + 103, + [ + "chief:10", + "hall:betgold", + "hall:betrate", + "hall:betwin", + "hall:betwingold", + "hall:dex5", + "hall:experience", + "hall:killcrew", + "hall:killrate", + "hall:occupied", + "hall:tlrate", + "hall:winrate" + ] + ], + [ + "【84기】서림동", + 84, + 87, + 15, + "che_event_필살", + [ + 55138, + 63193, + 980964, + 122912, + 58842 + ], + 0, + "default.jpg", + 84, + "che_250529_kaZH", + 104, + [ + "hall:betgold", + "hall:betwin", + "hall:betwingold", + "hall:dex2", + "hall:dex3", + "hall:killnum", + "hall:warnum" + ] + ], + [ + "【84기】불패", + 77, + 15, + 94, + "che_event_척사", + [ + 37738, + 72416, + 15142, + 426797, + 40068 + ], + 1, + "283bc08c.jpg?=20250522", + 84, + "che_250529_kaZH", + 105, + [ + "chief:5", + "hall:dedication", + "hall:dex2", + "hall:tirate" + ] + ], + [ + "【84기】로비", + 13, + 61, + 83, + "che_event_신산", + [ + 0, + 0, + 0, + 0, + 0 + ], + 1, + "71751125.png?=20240823", + 84, + "che_250529_kaZH", + 108, + [ + "hall:dedication", + "hall:experience", + "hall:tirate" + ] + ], + [ + "【84기】독자이크", + 93, + 76, + 15, + "che_event_필살", + [ + 71511, + 31231, + 648794, + 111178, + 43060 + ], + 1, + "8f6a8138.png?=20250618", + 84, + "che_250529_kaZH", + 109, + [ + "hall:betrate", + "hall:dex3" + ] + ], + [ + "【84기】덕구", + 69, + 77, + 13, + "che_event_척사", + [ + 276597, + 2989, + 17820, + 44252, + 41347 + ], + 1, + "bce319ad.jpg?=20250611", + 84, + "che_250529_kaZH", + 110, + [ + "hall:dex1", + "hall:dex5", + "hall:ttrate" + ] + ], + [ + "【84기】추미애", + 81, + 68, + 13, + "che_event_징병", + [ + 51738, + 926766, + 73070, + 48577, + 27453 + ], + 1, + "8063f4f8.png?=20250529", + 84, + "che_250529_kaZH", + 112, + [ + "hall:betgold", + "hall:betwin", + "hall:dex2", + "hall:experience", + "hall:killcrew", + "hall:killcrew_person", + "hall:killnum", + "hall:killrate_person", + "hall:occupied", + "hall:tlrate", + "hall:warnum", + "hall:winrate" + ] + ], + [ + "【84기】Hide_D", + 81, + 15, + 94, + "che_event_신중", + [ + 71724, + 18270, + 58123, + 848545, + 16673 + ], + 1, + "4569d848.png?=20230612", + 84, + "che_250529_kaZH", + 115, + [ + "hall:dex4", + "hall:killcrew", + "hall:killcrew_person", + "hall:killnum", + "hall:killrate_person", + "hall:tirate", + "hall:ttrate", + "hall:warnum", + "hall:winrate" + ] + ], + [ + "【84기】황혼중", + 15, + 91, + 79, + "che_event_척사", + [ + 0, + 0, + 0, + 0, + 0 + ], + 1, + "e5161df9.jpg?=20231110", + 84, + "che_250529_kaZH", + 116, + [ + "hall:ttrate" + ] + ], + [ + "【84기】셀레미", + 95, + 15, + 72, + "che_event_징병", + [ + 42129, + 86008, + 87483, + 234704, + 748482 + ], + 1, + "522cef80.jpg?=20250523", + 84, + "che_250529_kaZH", + 118, + [ + "chief:9", + "hall:dex2", + "hall:dex5", + "hall:experience" + ] + ], + [ + "【84기】최진리", + 79, + 93, + 16, + "che_event_필살", + [ + 54487, + 42980, + 969262, + 101567, + 51289 + ], + 1, + "677580c5.jpg?=20241230", + 84, + "che_250529_kaZH", + 119, + [ + "hall:dex3", + "hall:killcrew", + "hall:killcrew_person", + "hall:killnum", + "hall:killrate", + "hall:killrate_person", + "hall:tsrate", + "hall:winrate" + ] + ], + [ + "【84기】트럼프", + 77, + 65, + 14, + "che_event_징병", + [ + 27713, + 10236, + 281304, + 44702, + 20842 + ], + 1, + "b5c0fe11.jpg?=20250606", + 84, + "che_250529_kaZH", + 120, + [ + "hall:dex3", + "hall:tlrate" + ] + ], + [ + "【84기】척", + 79, + 89, + 15, + "che_event_격노", + [ + 30120, + 36741, + 435485, + 81692, + 20000 + ], + 1, + "7cb75480.png?=20221202", + 84, + "che_250529_kaZH", + 121, + [ + "hall:dex3" + ] + ], + [ + "【84기】기호 3번 마요이", + 16, + 74, + 96, + "che_event_저격", + [ + 0, + 0, + 0, + 0, + 0 + ], + 1, + "2b49c945.png?=20230921", + 84, + "che_250529_kaZH", + 122, + [ + "hall:dedication", + "hall:tirate" + ] + ], + [ + "【84기】성수용", + 15, + 96, + 73, + "che_event_저격", + [ + 0, + 0, + 0, + 0, + 0 + ], + 0, + "default.jpg", + 84, + "che_250529_kaZH", + 126, + [ + "hall:dedication", + "hall:tsrate" + ] + ], + [ + "【84기】ㅊㄹㅊㄹ", + 83, + 89, + 15, + "che_event_무쌍", + [ + 923493, + 25148, + 68125, + 116033, + 29505 + ], + 1, + "63f1c106.png?=20230223", + 84, + "che_250529_kaZH", + 215, + [ + "hall:dex1", + "hall:ttrate" + ] + ], + [ + "【84기】지?각", + 91, + 77, + 16, + "che_event_필살", + [ + 42400, + 40598, + 39539, + 86754, + 693454 + ], + 1, + "78c8f750.jpg?=20250616", + 84, + "che_250529_kaZH", + 219, + [ + "chief:6", + "hall:betgold", + "hall:betwingold", + "hall:dex5", + "hall:ttrate" + ] + ], + [ + "【84기】키키라라비비", + 79, + 15, + 89, + "che_event_환술", + [ + 25685, + 51586, + 8601, + 375574, + 52245 + ], + 1, + "7d3befed.png?=20250307", + 84, + "che_250529_kaZH", + 223, + [ + "hall:firenum" + ] + ], + [ + "【84기】조모모모", + 78, + 90, + 17, + "che_event_돌격", + [ + 29035, + 35811, + 363116, + 77546, + 75667 + ], + 1, + "b01ffce3.jpg?=20250601", + 84, + "che_250529_kaZH", + 353, + [ + "hall:betgold", + "hall:betrate", + "hall:betwingold", + "hall:occupied" + ] + ], + [ + "【84기】도지삽니다", + 92, + 76, + 15, + "che_event_징병", + [ + 859787, + 15483, + 89207, + 67609, + 25232 + ], + 1, + "90e24c46.jpg?=20250601", + 84, + "che_250529_kaZH", + 373, + [ + "hall:dex1", + "hall:killcrew_person", + "hall:warnum" + ] + ], + [ + "【84기】나나야시키", + 77, + 89, + 15, + "che_event_위압", + [ + 18322, + 31533, + 512411, + 139883, + 25449 + ], + 1, + "62e410b1.gif?=20250605", + 84, + "che_250529_kaZH", + 432, + [ + "hall:dex3" + ] + ], + [ + "【85기】척", + 86, + 113, + 20, + "che_event_격노", + [ + 29105, + 25847, + 802296, + 26915, + 37394 + ], + 1, + "7cb75480.png?=20221202", + 85, + "che_250626_vjy4", + 3, + [ + "hall:dex3", + "hall:killrate_person", + "hall:tsrate", + "hall:winrate" + ] + ], + [ + "【85기】Slack", + 116, + 85, + 20, + "che_event_돌격", + [ + 42834, + 35464, + 25685, + 60039, + 669831 + ], + 1, + "7dd3564d.png?=20250626", + 85, + "che_250626_vjy4", + 7, + [ + "hall:betwin", + "hall:dex5" + ] + ], + [ + "【85기】강유", + 87, + 20, + 112, + "che_event_척사", + [ + 10144, + 13882, + 30733, + 1042430, + 42640 + ], + 1, + "79e150d0.jpg?=20230921", + 85, + "che_250626_vjy4", + 11, + [ + "hall:dex4", + "hall:experience", + "hall:killrate", + "hall:killrate_person", + "hall:occupied", + "hall:winrate" + ] + ], + [ + "【85기】와일드플라워", + 85, + 20, + 113, + "che_event_신중", + [ + 8017, + 12552, + 7323, + 715844, + 35271 + ], + 0, + "default.jpg", + 85, + "che_250626_vjy4", + 13, + [ + "hall:dex4", + "hall:killrate", + "hall:killrate_person", + "hall:tirate", + "hall:winrate" + ] + ], + [ + "【85기】Hide_D", + 84, + 20, + 116, + "che_event_필살", + [ + 12897, + 35158, + 19995, + 967206, + 56238 + ], + 1, + "4569d848.png?=20230612", + 85, + "che_250626_vjy4", + 15, + [ + "hall:dex4", + "hall:tirate", + "hall:ttrate" + ] + ], + [ + "【85기】숨바꼭질 고수 독구", + 20, + 84, + 111, + "che_event_저격", + [ + 0, + 0, + 0, + 0, + 0 + ], + 1, + "5283daf7.png?=20240511", + 85, + "che_250626_vjy4", + 18, + [ + "hall:betwin", + "hall:dedication" + ] + ], + [ + "【85기】임사영", + 127, + 81, + 20, + "che_event_징병", + [ + 39336, + 69848, + 62781, + 105340, + 2553222 + ], + 1, + "0b5a2642.jpg?=20240305", + 85, + "che_250626_vjy4", + 19, + [ + "chief:10", + "hall:dex2", + "hall:dex3", + "hall:dex5", + "hall:experience", + "hall:killcrew", + "hall:killcrew_person", + "hall:killnum", + "hall:killrate", + "hall:occupied", + "hall:tlrate", + "hall:ttrate", + "hall:warnum" + ] + ], + [ + "【85기】리다이린", + 86, + 110, + 21, + "che_event_격노", + [ + 488672, + 7209, + 12181, + 9845, + 23356 + ], + 1, + "f7e7b9e3.png?=20250626", + 85, + "che_250626_vjy4", + 20, + [ + "hall:dex1", + "hall:killrate", + "hall:killrate_person", + "hall:tsrate" + ] + ], + [ + "【85기】외심장", + 86, + 20, + 113, + "che_event_필살", + [ + 8457, + 16011, + 23346, + 787217, + 65967 + ], + 1, + "36110cd.jpg?=20180826", + 85, + "che_250626_vjy4", + 21, + [ + "hall:dex4" + ] + ], + [ + "【85기】황혼중", + 20, + 107, + 89, + "che_event_위압", + [ + 0, + 0, + 0, + 0, + 0 + ], + 1, + "e5161df9.jpg?=20231110", + 85, + "che_250626_vjy4", + 22, + [ + "hall:dedication", + "hall:tsrate" + ] + ], + [ + "【85기】메이스", + 85, + 21, + 111, + "che_event_환술", + [ + 8563, + 12699, + 3571, + 421360, + 12072 + ], + 0, + "default.jpg", + 85, + "che_250626_vjy4", + 34, + [ + "hall:tirate" + ] + ], + [ + "【85기】대교", + 112, + 91, + 20, + "che_event_돌격", + [ + 1723735, + 11698, + 26109, + 45918, + 42618 + ], + 1, + "a53ab5ef.jpg?=20241010", + 85, + "che_250626_vjy4", + 35, + [ + "hall:dex1", + "hall:killcrew", + "hall:killcrew_person", + "hall:killnum", + "hall:killrate", + "hall:killrate_person", + "hall:occupied", + "hall:tlrate", + "hall:warnum", + "hall:winrate" + ] + ], + [ + "【85기】기술자", + 88, + 20, + 114, + "che_event_돌격", + [ + 21799, + 16012, + 11991, + 1149581, + 49411 + ], + 0, + "default.jpg", + 85, + "che_250626_vjy4", + 40, + [ + "chief:9", + "hall:dedication", + "hall:dex4", + "hall:experience", + "hall:killcrew", + "hall:killcrew_person", + "hall:killnum", + "hall:killrate", + "hall:killrate_person", + "hall:warnum", + "hall:winrate" + ] + ], + [ + "【85기】로비", + 20, + 83, + 112, + "che_event_반계", + [ + 0, + 0, + 0, + 0, + 0 + ], + 1, + "71751125.png?=20240823", + 85, + "che_250626_vjy4", + 43, + [ + "hall:tirate" + ] + ], + [ + "【85기】크루엘라", + 124, + 20, + 84, + "che_event_징병", + [ + 47649, + 54968, + 45780, + 110009, + 2380731 + ], + 1, + "651dcd51.jpg?=20250709", + 85, + "che_250626_vjy4", + 44, + [ + "chief:12", + "hall:betgold", + "hall:betrate", + "hall:betwin", + "hall:betwingold", + "hall:dedication", + "hall:dex2", + "hall:dex5", + "hall:experience", + "hall:killcrew", + "hall:killcrew_person", + "hall:killnum", + "hall:occupied", + "hall:tlrate", + "hall:ttrate", + "hall:warnum" + ] + ], + [ + "【85기】대충하는사람", + 117, + 83, + 21, + "che_event_위압", + [ + 56402, + 37066, + 22158, + 79418, + 1522566 + ], + 0, + "default.jpg", + 85, + "che_250626_vjy4", + 45, + [ + "chief:6", + "hall:dex1", + "hall:dex2", + "hall:dex5", + "hall:experience", + "hall:killcrew", + "hall:killcrew_person", + "hall:killnum", + "hall:occupied", + "hall:warnum" + ] + ], + [ + "【85기】나미리", + 106, + 20, + 92, + "che_event_필살", + [ + 14793, + 14996, + 12828, + 730392, + 43066 + ], + 0, + "default.jpg", + 85, + "che_250626_vjy4", + 46, + [ + "hall:dex4", + "hall:tlrate" + ] + ], + [ + "【85기】시요밍", + 109, + 89, + 21, + "che_event_필살", + [ + 920105, + 8426, + 26529, + 57872, + 32571 + ], + 1, + "9cdcc478.png?=20250628", + 85, + "che_250626_vjy4", + 47, + [ + "hall:dex1", + "hall:ttrate" + ] + ], + [ + "【85기】사스케", + 115, + 21, + 83, + "che_event_필살", + [ + 24351, + 16818, + 25812, + 48055, + 787909 + ], + 1, + "177be5d8.jpg?=20250604", + 85, + "che_250626_vjy4", + 51, + [ + "hall:betgold", + "hall:betwin", + "hall:dex5", + "hall:tlrate" + ] + ], + [ + "【85기】도로롱", + 85, + 21, + 113, + "che_event_집중", + [ + 6787, + 13824, + 8983, + 415418, + 14007 + ], + 1, + "ffda626b.gif?=20250626", + 85, + "che_250626_vjy4", + 53, + [ + "hall:tirate" + ] + ], + [ + "【85기】퍄퍄", + 120, + 20, + 83, + "che_event_징병", + [ + 32180, + 31897, + 46483, + 78365, + 2016940 + ], + 0, + "default.jpg", + 85, + "che_250626_vjy4", + 57, + [ + "chief:11", + "hall:dedication", + "hall:dex5", + "hall:experience", + "hall:killcrew", + "hall:killcrew_person", + "hall:killnum", + "hall:killrate", + "hall:occupied", + "hall:warnum" + ] + ], + [ + "【85기】덕구", + 88, + 109, + 21, + "che_event_궁병", + [ + 6616, + 407321, + 2324, + 10355, + 16326 + ], + 1, + "bce319ad.jpg?=20250611", + 85, + "che_250626_vjy4", + 59, + [ + "hall:dex2" + ] + ], + [ + "【85기】나나야 시키", + 107, + 90, + 20, + "che_event_필살", + [ + 3582, + 36875, + 582355, + 23155, + 38183 + ], + 1, + "62e410b1.gif?=20250605", + 85, + "che_250626_vjy4", + 61, + [ + "hall:betgold", + "hall:betwingold", + "hall:dex3", + "hall:tlrate" + ] + ], + [ + "【85기】메로나아님", + 83, + 20, + 118, + "che_event_환술", + [ + 9845, + 18832, + 6136, + 743122, + 35919 + ], + 1, + "4a4cff1a.png?=20250626", + 85, + "che_250626_vjy4", + 62, + [ + "hall:betwingold", + "hall:dex4", + "hall:tirate", + "hall:winrate" + ] + ], + [ + "【85기】아리스가와 히마리", + 84, + 21, + 120, + "che_event_집중", + [ + 24007, + 52661, + 20096, + 1620981, + 59572 + ], + 1, + "f2806739.png?=20250626", + 85, + "che_250626_vjy4", + 63, + [ + "hall:betgold", + "hall:betrate", + "hall:betwin", + "hall:betwingold", + "hall:dedication", + "hall:dex2", + "hall:dex4", + "hall:experience", + "hall:killcrew", + "hall:killcrew_person", + "hall:killnum", + "hall:killrate_person", + "hall:occupied", + "hall:tirate", + "hall:ttrate", + "hall:warnum", + "hall:winrate" + ] + ], + [ + "【85기】NK", + 114, + 87, + 20, + "che_event_돌격", + [ + 24717, + 43746, + 46587, + 58571, + 801939 + ], + 0, + "default.jpg", + 85, + "che_250626_vjy4", + 64, + [ + "hall:betgold", + "hall:dex2", + "hall:dex5", + "hall:tlrate" + ] + ], + [ + "【85기】독구", + 115, + 84, + 20, + "che_event_위압", + [ + 52256, + 6017, + 3635, + 60100, + 664734 + ], + 1, + "0d0a802e.png?=20250529", + 85, + "che_250626_vjy4", + 65, + [ + "hall:dex1", + "hall:dex5" + ] + ], + [ + "【85기】사세니아", + 21, + 83, + 115, + "che_event_반계", + [ + 0, + 0, + 0, + 0, + 0 + ], + 1, + "e44b0ee5.jpg?=20250627", + 85, + "che_250626_vjy4", + 66, + [ + "hall:dedication", + "hall:experience", + "hall:tirate" + ] + ], + [ + "【85기】아이씨유", + 86, + 21, + 109, + "che_event_척사", + [ + 3440, + 8983, + 11015, + 435989, + 29349 + ], + 0, + "default.jpg", + 85, + "che_250626_vjy4", + 67, + [ + "hall:tirate" + ] + ], + [ + "【85기】차병으로 놀아야지", + 118, + 81, + 21, + "che_event_견고", + [ + 19627, + 55517, + 35311, + 89128, + 961465 + ], + 0, + "default.jpg", + 85, + "che_250626_vjy4", + 69, + [ + "hall:dex2", + "hall:dex5", + "hall:warnum" + ] + ], + [ + "【85기】데이워커", + 88, + 108, + 21, + "che_event_돌격", + [ + 67792, + 6481, + 428394, + 30011, + 34961 + ], + 0, + "default.jpg", + 85, + "che_250626_vjy4", + 70, + [ + "hall:betrate", + "hall:betwin", + "hall:dex1", + "hall:dex3", + "hall:tsrate" + ] + ], + [ + "【85기】Sasenia", + 83, + 20, + 114, + "che_event_징병", + [ + 6545, + 11930, + 12027, + 645710, + 53989 + ], + 1, + "07ee79c6.gif?=20250626", + 85, + "che_250626_vjy4", + 71, + [ + "hall:betgold", + "hall:betrate", + "hall:betwin", + "hall:betwingold", + "hall:dedication", + "hall:dex4" + ] + ], + [ + "【85기】으앙", + 83, + 114, + 21, + "che_event_필살", + [ + 4482, + 19799, + 774449, + 23304, + 34799 + ], + 0, + "default.jpg", + 85, + "che_250626_vjy4", + 72, + [ + "hall:dedication", + "hall:dex3", + "hall:killrate", + "hall:killrate_person" + ] + ], + [ + "【85기】평민킬러", + 86, + 112, + 20, + "che_event_징병", + [ + 1082127, + 10526, + 22404, + 40720, + 39996 + ], + 1, + "ff53d7eb.jpg?=20250503", + 85, + "che_250626_vjy4", + 73, + [ + "hall:betgold", + "hall:betrate", + "hall:betwin", + "hall:betwingold", + "hall:dex1", + "hall:killrate", + "hall:killrate_person", + "hall:occupied", + "hall:tsrate" + ] + ], + [ + "【85기】카이스트", + 84, + 20, + 114, + "che_event_징병", + [ + 12382, + 18790, + 9883, + 460359, + 23527 + ], + 1, + "e7e27cd6.jpg?=20221125", + 85, + "che_250626_vjy4", + 74, + [ + "hall:winrate" + ] + ], + [ + "【85기】쓱싹", + 88, + 113, + 20, + "che_event_징병", + [ + 24841, + 1535043, + 74279, + 30715, + 46643 + ], + 0, + "default.jpg", + 85, + "che_250626_vjy4", + 75, + [ + "chief:8", + "hall:betgold", + "hall:betrate", + "hall:betwingold", + "hall:dex2", + "hall:dex3", + "hall:experience", + "hall:killcrew", + "hall:killcrew_person", + "hall:killnum", + "hall:occupied", + "hall:tsrate", + "hall:ttrate", + "hall:warnum" + ] + ], + [ + "【85기】순록", + 83, + 21, + 111, + "che_event_집중", + [ + 4731, + 20135, + 8665, + 362773, + 14502 + ], + 0, + "default.jpg", + 85, + "che_250626_vjy4", + 76, + [ + "hall:betrate", + "hall:betwingold" + ] + ], + [ + "【85기】카프타인 e. 카류", + 108, + 91, + 20, + "che_event_필살", + [ + 1669296, + 8796, + 15488, + 39803, + 62701 + ], + 1, + "d43aa972.png?=20250626", + 85, + "che_250626_vjy4", + 77, + [ + "chief:5", + "hall:betgold", + "hall:betrate", + "hall:betwin", + "hall:betwingold", + "hall:dex1", + "hall:experience", + "hall:killcrew", + "hall:killcrew_person", + "hall:killnum", + "hall:killrate", + "hall:killrate_person", + "hall:occupied", + "hall:tlrate", + "hall:winrate" + ] + ], + [ + "【85기】독티아스", + 86, + 20, + 113, + "che_event_필살", + [ + 5975, + 27209, + 11573, + 960335, + 63124 + ], + 1, + "251f61a6.jpg?=20250627", + 85, + "che_250626_vjy4", + 78, + [ + "chief:7", + "hall:dedication", + "hall:dex4" + ] + ], + [ + "【85기】살", + 88, + 20, + 112, + "che_event_징병", + [ + 17616, + 17649, + 16271, + 636254, + 74947 + ], + 0, + "default.jpg", + 85, + "che_250626_vjy4", + 79, + [ + "hall:betgold", + "hall:betrate", + "hall:betwin", + "hall:betwingold", + "hall:ttrate" + ] + ], + [ + "【85기】진솔", + 88, + 109, + 20, + "che_event_저격", + [ + 4395, + 5051, + 84416, + 20142, + 100722 + ], + 1, + "61ab7ca2.jpg?=20250515", + 85, + "che_250626_vjy4", + 96, + [ + "hall:dex3", + "hall:tsrate", + "hall:ttrate" + ] + ], + [ + "【85기】네이미", + 88, + 110, + 20, + "che_event_격노", + [ + 291177, + 10990, + 11428, + 17198, + 5712 + ], + 0, + "default.jpg", + 85, + "che_250626_vjy4", + 98, + [ + "hall:dex1", + "hall:tsrate", + "hall:ttrate" + ] + ], + [ + "【85기】네시", + 108, + 20, + 91, + "che_event_신산", + [ + 24696, + 10135, + 14379, + 529383, + 24014 + ], + 1, + "b76ffd17.png?=20250530", + 85, + "che_250626_vjy4", + 100, + [ + "hall:tlrate", + "hall:winrate" + ] + ], + [ + "【85기】타치바나히나노", + 87, + 20, + 109, + "che_event_환술", + [ + 4298, + 3463, + 5041, + 326325, + 25837 + ], + 1, + "c033385a.jpg?=20250626", + 85, + "che_250626_vjy4", + 229, + [ + "hall:tirate" + ] + ], + [ + "【85기】불패", + 110, + 92, + 20, + "che_event_돌격", + [ + 29307, + 26518, + 62042, + 76450, + 1305469 + ], + 1, + "283bc08c.jpg?=20250522", + 85, + "che_250626_vjy4", + 231, + [ + "hall:dex3", + "hall:dex5", + "hall:killcrew", + "hall:killcrew_person", + "hall:killnum", + "hall:tlrate", + "hall:tsrate", + "hall:warnum" + ] + ], + [ + "【85기】이흐히히", + 87, + 108, + 21, + "che_event_척사", + [ + 687449, + 39210, + 46757, + 36817, + 46878 + ], + 0, + "default.jpg", + 85, + "che_250626_vjy4", + 273, + [ + "hall:dex1", + "hall:dex2", + "hall:ttrate" + ] + ], + [ + "【85기】ㅊㄹㅊㄹ", + 87, + 108, + 20, + "che_event_무쌍", + [ + 0, + 716, + 93917, + 7584, + 11231 + ], + 1, + "63f1c106.png?=20230223", + 85, + "che_250626_vjy4", + 297, + [ + "hall:dex3" + ] + ], + [ + "【85기】최진리", + 85, + 110, + 21, + "che_event_필살", + [ + 1938, + 30823, + 472187, + 8703, + 35999 + ], + 1, + "677580c5.jpg?=20241230", + 85, + "che_250626_vjy4", + 298, + [ + "hall:dex3", + "hall:tsrate" + ] + ], + [ + "【85기】왈왈왈크르릉", + 85, + 107, + 21, + "che_event_무쌍", + [ + 2684, + 413493, + 9519, + 24250, + 31028 + ], + 0, + "default.jpg", + 85, + "che_250626_vjy4", + 373, + [ + "hall:betrate", + "hall:dex2" + ] + ], + [ + "【86기】Hide_D", + 76, + 15, + 94, + "che_event_척사", + [ + 34989, + 23734, + 37700, + 323501, + 6068 + ], + 1, + "4569d848.png?=20230612", + 86, + "che_250717_L5yr", + 5, + [ + "hall:tirate", + "hall:ttrate" + ] + ], + [ + "【86기】불패", + 77, + 94, + 15, + "che_event_필살", + [ + 723161, + 8307, + 50085, + 56412, + 52627 + ], + 1, + "283bc08c.jpg?=20250522", + 86, + "che_250717_L5yr", + 6, + [ + "chief:12", + "hall:betgold", + "hall:betwin", + "hall:betwingold", + "hall:dedication", + "hall:dex1", + "hall:dex5", + "hall:experience", + "hall:killcrew", + "hall:killnum", + "hall:killrate", + "hall:killrate_person", + "hall:occupied", + "hall:winrate" + ] + ], + [ + "【86기】바나낫", + 78, + 92, + 15, + "che_event_필살", + [ + 592335, + 90449, + 19515, + 39081, + 43752 + ], + 1, + "176f9107.gif?=20250717", + 86, + "che_250717_L5yr", + 9, + [ + "hall:betrate", + "hall:dex1", + "hall:dex2", + "hall:experience", + "hall:killcrew", + "hall:killnum", + "hall:killrate", + "hall:killrate_person", + "hall:occupied", + "hall:winrate" + ] + ], + [ + "【86기】도로롱", + 93, + 75, + 15, + "che_event_필살", + [ + 442719, + 9634, + 18961, + 69635, + 13971 + ], + 1, + "ffda626b.gif?=20250626", + 86, + "che_250717_L5yr", + 10, + [ + "hall:dex1", + "hall:tlrate", + "hall:ttrate" + ] + ], + [ + "【86기】비스마르크", + 75, + 92, + 15, + "che_event_척사", + [ + 408769, + 12174, + 19409, + 49076, + 13940 + ], + 0, + "default.jpg", + 86, + "che_250717_L5yr", + 12, + [ + "hall:tsrate" + ] + ], + [ + "【86기】까치", + 76, + 93, + 15, + "che_event_무쌍", + [ + 384403, + 6959, + 18384, + 51295, + 21482 + ], + 0, + "default.jpg", + 86, + "che_250717_L5yr", + 21, + [ + "hall:ttrate" + ] + ], + [ + "【86기】퍄퍄", + 77, + 15, + 93, + "che_event_의술", + [ + 13136, + 16925, + 13921, + 378078, + 38872 + ], + 0, + "default.jpg", + 86, + "che_250717_L5yr", + 22, + [ + "hall:dedication", + "hall:tirate" + ] + ], + [ + "【86기】전소미", + 79, + 15, + 89, + "che_event_신중", + [ + 49782, + 41674, + 27616, + 505349, + 28450 + ], + 1, + "d886752d.jpg?=20250717", + 86, + "che_250717_L5yr", + 23, + [ + "hall:dex2", + "hall:dex4" + ] + ], + [ + "【86기】외심장", + 79, + 16, + 92, + "che_event_징병", + [ + 32688, + 21175, + 22803, + 453904, + 13928 + ], + 1, + "36110cd.jpg?=20180826", + 86, + "che_250717_L5yr", + 24, + [ + "hall:tirate", + "hall:warnum" + ] + ], + [ + "【86기】호나", + 92, + 81, + 15, + "che_event_필살", + [ + 578957, + 6179, + 12454, + 75499, + 25096 + ], + 0, + "default.jpg", + 86, + "che_250717_L5yr", + 25, + [ + "hall:dex1", + "hall:killcrew_person", + "hall:killnum", + "hall:tlrate", + "hall:ttrate", + "hall:warnum" + ] + ], + [ + "【86기】셋쇼마루", + 76, + 15, + 99, + "che_event_반계", + [ + 43201, + 12308, + 10890, + 990477, + 15078 + ], + 1, + "5c39c7fc.jpg?=20250716", + 86, + "che_250717_L5yr", + 27, + [ + "hall:betgold", + "hall:betwingold", + "hall:dex4", + "hall:killcrew", + "hall:killcrew_person", + "hall:killnum", + "hall:killrate", + "hall:killrate_person", + "hall:tirate", + "hall:warnum", + "hall:winrate" + ] + ], + [ + "【86기】황혼중", + 75, + 15, + 94, + "che_event_척사", + [ + 14000, + 24725, + 7410, + 272009, + 33427 + ], + 1, + "e5161df9.jpg?=20231110", + 86, + "che_250717_L5yr", + 31, + [ + "hall:occupied", + "hall:tirate" + ] + ], + [ + "【86기】white hand", + 78, + 94, + 16, + "che_event_저격", + [ + 15852, + 81663, + 580323, + 70570, + 25244 + ], + 0, + "default.jpg", + 86, + "che_250717_L5yr", + 33, + [ + "hall:betwin", + "hall:dex2", + "hall:dex3", + "hall:killcrew", + "hall:killcrew_person", + "hall:killnum", + "hall:tsrate", + "hall:warnum" + ] + ], + [ + "【86기】유산조아", + 77, + 15, + 91, + "che_event_환술", + [ + 12695, + 14607, + 35837, + 380326, + 28787 + ], + 0, + "default.jpg", + 86, + "che_250717_L5yr", + 35, + [ + "hall:tirate" + ] + ], + [ + "【86기】덕구", + 76, + 93, + 15, + "che_event_징병", + [ + 88612, + 259851, + 861, + 24858, + 44034 + ], + 1, + "bce319ad.jpg?=20250611", + 86, + "che_250717_L5yr", + 41, + [ + "hall:dex2", + "hall:dex5", + "hall:tsrate" + ] + ], + [ + "【86기】아마테라스", + 80, + 15, + 92, + "che_event_징병", + [ + 50301, + 29119, + 52148, + 664722, + 34058 + ], + 1, + "639476d7.jpg?=20250717", + 86, + "che_250717_L5yr", + 49, + [ + "hall:betgold", + "hall:dex4", + "hall:killcrew", + "hall:killcrew_person", + "hall:killnum", + "hall:warnum", + "hall:winrate" + ] + ], + [ + "【86기】Sase", + 76, + 94, + 15, + "che_event_필살", + [ + 28719, + 4916, + 436655, + 75913, + 52189 + ], + 1, + "9e1689ae.jpg?=20250716", + 86, + "che_250717_L5yr", + 51, + [ + "chief:10", + "hall:betgold", + "hall:betrate", + "hall:betwin", + "hall:betwingold", + "hall:dedication", + "hall:dex3", + "hall:dex5", + "hall:tsrate", + "hall:ttrate" + ] + ], + [ + "【86기】먹튀예술가", + 76, + 93, + 16, + "che_event_필살", + [ + 160881, + 25291, + 441296, + 49259, + 43892 + ], + 0, + "default.jpg", + 86, + "che_250717_L5yr", + 53, + [ + "hall:betgold", + "hall:betrate", + "hall:betwin", + "hall:betwingold", + "hall:dex3", + "hall:dex5", + "hall:killrate", + "hall:killrate_person", + "hall:occupied" + ] + ], + [ + "【86기】뉴진스님", + 76, + 15, + 92, + "che_event_집중", + [ + 22917, + 10540, + 2186, + 406355, + 25540 + ], + 1, + "b1264aeb.jpg?=20250722", + 86, + "che_250717_L5yr", + 59, + [ + "hall:winrate" + ] + ], + [ + "【86기】임사영", + 75, + 96, + 15, + "che_event_저격", + [ + 427818, + 35532, + 80266, + 63762, + 35457 + ], + 1, + "0b5a2642.jpg?=20240305", + 86, + "che_250717_L5yr", + 60, + [ + "hall:dedication", + "hall:dex1", + "hall:dex3", + "hall:experience", + "hall:tsrate", + "hall:ttrate" + ] + ], + [ + "【86기】Air", + 80, + 91, + 15, + "che_event_의술", + [ + 33714, + 414577, + 6787, + 30105, + 27661 + ], + 0, + "default.jpg", + 86, + "che_250717_L5yr", + 65, + [ + "hall:dex2", + "hall:tsrate" + ] + ], + [ + "【86기】로비", + 15, + 73, + 98, + "che_event_척사", + [ + 0, + 0, + 0, + 0, + 0 + ], + 1, + "71751125.png?=20240823", + 86, + "che_250717_L5yr", + 66, + [ + "hall:dedication", + "hall:experience" + ] + ], + [ + "【86기】장마철입수장인독구", + 16, + 73, + 96, + "che_event_저격", + [ + 0, + 0, + 0, + 0, + 0 + ], + 1, + "5283daf7.png?=20240511", + 86, + "che_250717_L5yr", + 67, + [ + "hall:betwin", + "hall:tirate" + ] + ], + [ + "【86기】테토견 독구", + 79, + 91, + 15, + "che_event_필살", + [ + 131768, + 203172, + 175482, + 79041, + 41410 + ], + 1, + "fd85278a.png?=20250717", + 86, + "che_250717_L5yr", + 69, + [ + "chief:8", + "hall:dex2", + "hall:dex3" + ] + ], + [ + "【86기】NK", + 76, + 95, + 15, + "che_event_척사", + [ + 677472, + 21128, + 51596, + 49171, + 39028 + ], + 0, + "default.jpg", + 86, + "che_250717_L5yr", + 71, + [ + "hall:betgold", + "hall:betrate", + "hall:betwingold", + "hall:dex1", + "hall:experience", + "hall:killcrew", + "hall:killrate", + "hall:killrate_person", + "hall:occupied", + "hall:tsrate" + ] + ], + [ + "【86기】대교", + 94, + 74, + 15, + "che_event_필살", + [ + 498976, + 12238, + 26901, + 38928, + 55851 + ], + 1, + "a53ab5ef.jpg?=20241010", + 86, + "che_250717_L5yr", + 72, + [ + "hall:dex1", + "hall:dex5", + "hall:experience", + "hall:occupied", + "hall:tlrate" + ] + ], + [ + "【86기】이누야샤", + 76, + 99, + 15, + "che_event_필살", + [ + 46038, + 20842, + 1157594, + 61437, + 43160 + ], + 1, + "29050ccb.jpg?=20250724", + 86, + "che_250717_L5yr", + 73, + [ + "hall:dex3", + "hall:experience", + "hall:killcrew", + "hall:killcrew_person", + "hall:killnum", + "hall:killrate", + "hall:killrate_person", + "hall:tsrate", + "hall:warnum", + "hall:winrate" + ] + ], + [ + "【86기】불법스님", + 94, + 75, + 16, + "che_event_필살", + [ + 571113, + 8695, + 84957, + 46746, + 26278 + ], + 1, + "007592e9.png?=20250717", + 86, + "che_250717_L5yr", + 74, + [ + "hall:betgold", + "hall:betrate", + "hall:betwin", + "hall:betwingold", + "hall:dex1", + "hall:dex3", + "hall:tlrate" + ] + ], + [ + "【86기】카이스트", + 77, + 16, + 93, + "che_event_환술", + [ + 32382, + 28806, + 7320, + 370799, + 34233 + ], + 1, + "e7e27cd6.jpg?=20221125", + 86, + "che_250717_L5yr", + 75, + [ + "hall:occupied" + ] + ], + [ + "【86기】키라호시 시엘", + 76, + 15, + 92, + "che_event_환술", + [ + 27555, + 14094, + 33948, + 432730, + 59342 + ], + 1, + "76b33c02.png?=20250717", + 86, + "che_250717_L5yr", + 76, + [ + "chief:5", + "hall:betgold", + "hall:betrate", + "hall:betwin", + "hall:betwingold", + "hall:dedication", + "hall:dex5", + "hall:occupied" + ] + ], + [ + "【86기】와일드플라워", + 76, + 15, + 93, + "che_event_집중", + [ + 17377, + 51122, + 18269, + 456321, + 55931 + ], + 0, + "default.jpg", + 86, + "che_250717_L5yr", + 77, + [ + "hall:dedication", + "hall:dex2", + "hall:dex4", + "hall:dex5", + "hall:experience" + ] + ], + [ + "【86기】혜민스님", + 74, + 15, + 96, + "che_event_징병", + [ + 35283, + 35961, + 12339, + 662398, + 58915 + ], + 1, + "b7febbaa.png?=20250716", + 86, + "che_250717_L5yr", + 80, + [ + "chief:9", + "hall:betgold", + "hall:betwin", + "hall:betwingold", + "hall:dex4", + "hall:dex5", + "hall:experience", + "hall:killcrew", + "hall:killcrew_person", + "hall:killnum", + "hall:killrate", + "hall:occupied", + "hall:tirate", + "hall:warnum", + "hall:winrate" + ] + ], + [ + "【86기】강유", + 79, + 15, + 94, + "che_event_집중", + [ + 42386, + 15360, + 26503, + 607308, + 22338 + ], + 1, + "79e150d0.jpg?=20230921", + 86, + "che_250717_L5yr", + 81, + [ + "hall:dex4", + "hall:experience", + "hall:killcrew", + "hall:killcrew_person", + "hall:warnum" + ] + ], + [ + "【86기】풀소유", + 79, + 15, + 89, + "che_event_필살", + [ + 29618, + 17411, + 15183, + 410239, + 34494 + ], + 0, + "default.jpg", + 86, + "che_250717_L5yr", + 82, + [ + "chief:7" + ] + ], + [ + "【86기】토심이", + 75, + 15, + 95, + "che_event_필살", + [ + 21021, + 22032, + 26465, + 600572, + 60646 + ], + 1, + "8dce6df3.png?=20250718", + 86, + "che_250717_L5yr", + 83, + [ + "chief:11", + "hall:betgold", + "hall:betrate", + "hall:betwingold", + "hall:dedication", + "hall:dex4", + "hall:dex5", + "hall:killrate", + "hall:killrate_person", + "hall:winrate" + ] + ], + [ + "【86기】네이", + 88, + 15, + 82, + "che_event_척사", + [ + 74995, + 40413, + 60494, + 639498, + 17540 + ], + 0, + "default.jpg", + 86, + "che_250717_L5yr", + 84, + [ + "hall:dex2", + "hall:dex3", + "hall:dex4", + "hall:killcrew_person", + "hall:tlrate" + ] + ], + [ + "【86기】람", + 78, + 95, + 15, + "che_event_무쌍", + [ + 1180789, + 25794, + 40120, + 71318, + 32722 + ], + 1, + "1f0dedea.png?=20250804", + 86, + "che_250717_L5yr", + 85, + [ + "hall:betwin", + "hall:dex1", + "hall:killcrew", + "hall:killcrew_person", + "hall:killnum", + "hall:killrate", + "hall:killrate_person", + "hall:occupied", + "hall:tsrate", + "hall:warnum", + "hall:winrate" + ] + ], + [ + "【86기】오란씨", + 76, + 15, + 94, + "che_event_집중", + [ + 41776, + 22937, + 22420, + 402485, + 38009 + ], + 0, + "default.jpg", + 86, + "che_250717_L5yr", + 86, + [ + "hall:betrate", + "hall:tirate" + ] + ], + [ + "【86기】제갈여포", + 90, + 16, + 78, + "che_event_필살", + [ + 40397, + 28915, + 9425, + 479179, + 7851 + ], + 1, + "edf4ed84.jpg?=20250604", + 86, + "che_250717_L5yr", + 89, + [ + "hall:betrate", + "hall:betwingold", + "hall:dex4", + "hall:tlrate", + "hall:ttrate" + ] + ], + [ + "【86기】La Dernière Leçon", + 89, + 80, + 16, + "che_event_필살", + [ + 70266, + 378854, + 4970, + 77408, + 27213 + ], + 1, + "6fb83606.jpg?=20250730", + 86, + "che_250717_L5yr", + 90, + [ + "hall:betwin", + "hall:dex2", + "hall:tlrate", + "hall:ttrate" + ] + ], + [ + "【86기】쿠로미", + 90, + 15, + 79, + "che_event_징병", + [ + 36074, + 17858, + 39281, + 533093, + 27178 + ], + 1, + "bb61c612.jpg?=20250717", + 86, + "che_250717_L5yr", + 91, + [ + "hall:dex4", + "hall:tlrate" + ] + ], + [ + "【86기】최진리", + 77, + 95, + 15, + "che_event_격노", + [ + 21746, + 18075, + 656818, + 48102, + 37838 + ], + 1, + "677580c5.jpg?=20241230", + 86, + "che_250717_L5yr", + 94, + [ + "hall:dex3", + "hall:killcrew_person", + "hall:killnum", + "hall:killrate", + "hall:killrate_person", + "hall:warnum", + "hall:winrate" + ] + ], + [ + "【86기】척", + 76, + 91, + 15, + "che_event_징병", + [ + 502472, + 25725, + 27133, + 80150, + 25609 + ], + 1, + "7cb75480.png?=20221202", + 86, + "che_250717_L5yr", + 97, + [ + "hall:dex1" + ] + ], + [ + "【86기】칼라브리아", + 78, + 90, + 16, + "che_event_저격", + [ + 19617, + 231552, + 6293, + 18012, + 20695 + ], + 0, + "default.jpg", + 86, + "che_250717_L5yr", + 221, + [ + "hall:dex2" + ] + ], + [ + "【86기】타치바나히나노", + 78, + 90, + 15, + "che_event_필살", + [ + 417429, + 13785, + 37882, + 113826, + 14085 + ], + 1, + "c033385a.jpg?=20250626", + 86, + "che_250717_L5yr", + 227, + [ + "hall:tsrate", + "hall:ttrate" + ] + ], + [ + "【86기】미스티", + 77, + 15, + 93, + "che_event_의술", + [ + 14136, + 13255, + 8586, + 253171, + 27445 + ], + 1, + "1aadcba.png?=20180908", + 86, + "che_250717_L5yr", + 243, + [ + "hall:ttrate" + ] + ], + [ + "【86기】햄수타", + 87, + 81, + 15, + "che_event_돌격", + [ + 27839, + 34045, + 379460, + 90081, + 49893 + ], + 1, + "56621c85.png?=20250719", + 86, + "che_250717_L5yr", + 318, + [ + "chief:6", + "hall:dex3", + "hall:dex5", + "hall:tlrate" + ] + ], + [ + "【86기】국04", + 85, + 15, + 80, + "che_event_환술", + [ + 12587, + 5643, + 14395, + 141325, + 18358 + ], + 1, + "546ecd10.png?=20231007", + 86, + "che_250717_L5yr", + 340, + [ + "hall:tlrate" + ] + ], + [ + "【86기】마요이", + 15, + 71, + 95, + "che_event_신산", + [ + 0, + 0, + 0, + 0, + 0 + ], + 1, + "2b49c945.png?=20230921", + 86, + "che_250717_L5yr", + 399, + [ + "hall:dedication" + ] + ], + [ + "【86기】민트토끼", + 16, + 82, + 84, + "che_event_신산", + [ + 0, + 0, + 0, + 0, + 0 + ], + 1, + "abee91f3.jpg?=20250721", + 86, + "che_250717_L5yr", + 444, + [ + "hall:dedication", + "hall:firenum" + ] + ], + [ + "【86기】진우", + 16, + 73, + 93, + "che_event_의술", + [ + 0, + 0, + 0, + 0, + 0 + ], + 1, + "c01f9078.png?=20250722", + 86, + "che_250717_L5yr", + 461, + [ + "hall:tirate" + ] + ], + [ + "【86기】감흥", + 15, + 75, + 88, + "che_event_척사", + [ + 2100, + 23240, + 2100, + 3780, + 0 + ], + 0, + "default.jpg", + 86, + "che_250717_L5yr", + 567, + [ + "hall:betrate", + "hall:killrate_person" + ] + ], + [ + "【87기】척", + 76, + 90, + 15, + "che_event_척사", + [ + 25481, + 11491, + 267868, + 37605, + 33013 + ], + 1, + "7cb75480.png?=20221202", + 87, + "che_250814_wvNP", + 8, + [ + "hall:dedication", + "hall:dex3", + "hall:killrate_person" + ] + ], + [ + "【87기】프렝탕", + 74, + 15, + 91, + "che_event_신산", + [ + 32284, + 12823, + 8023, + 228986, + 29493 + ], + 1, + "59be29d4.jpg?=20250812", + 87, + "che_250814_wvNP", + 10, + [ + "hall:ttrate" + ] + ], + [ + "【87기】One", + 76, + 90, + 15, + "che_event_무쌍", + [ + 486199, + 9758, + 31982, + 27171, + 21962 + ], + 0, + "default.jpg", + 87, + "che_250814_wvNP", + 14, + [ + "hall:dex1", + "hall:tsrate" + ] + ], + [ + "【87기】신장수", + 87, + 79, + 15, + "che_event_징병", + [ + 778534, + 6465, + 31032, + 32572, + 38193 + ], + 0, + "default.jpg", + 87, + "che_250814_wvNP", + 18, + [ + "hall:betrate", + "hall:betwin", + "hall:dex1", + "hall:dex5", + "hall:experience", + "hall:killcrew", + "hall:killcrew_person", + "hall:killnum", + "hall:occupied", + "hall:warnum" + ] + ], + [ + "【87기】해질녘", + 77, + 89, + 16, + "che_event_징병", + [ + 442490, + 14607, + 16173, + 40572, + 33899 + ], + 0, + "default.jpg", + 87, + "che_250814_wvNP", + 23, + [ + "hall:betwin" + ] + ], + [ + "【87기】미친과학", + 88, + 80, + 15, + "che_event_보병", + [ + 767435, + 6687, + 38352, + 44195, + 37785 + ], + 1, + "c0c99280.png?=20250814", + 87, + "che_250814_wvNP", + 25, + [ + "hall:dex1", + "hall:dex5", + "hall:experience", + "hall:killcrew", + "hall:killcrew_person", + "hall:killnum", + "hall:killrate", + "hall:killrate_person", + "hall:occupied", + "hall:warnum", + "hall:winrate" + ] + ], + [ + "【87기】대교", + 89, + 76, + 16, + "che_event_저격", + [ + 620005, + 3819, + 31679, + 73833, + 35817 + ], + 1, + "a53ab5ef.jpg?=20241010", + 87, + "che_250814_wvNP", + 26, + [ + "hall:dex1", + "hall:tlrate", + "hall:warnum" + ] + ], + [ + "【87기】외심장", + 77, + 15, + 90, + "che_event_신산", + [ + 47700, + 11203, + 15392, + 425263, + 26762 + ], + 1, + "36110cd.jpg?=20180826", + 87, + "che_250814_wvNP", + 32, + [ + "hall:dex4", + "hall:occupied" + ] + ], + [ + "【87기】바나낫", + 75, + 92, + 15, + "che_event_징병", + [ + 458276, + 36086, + 73645, + 64480, + 21304 + ], + 1, + "176f9107.gif?=20250717", + 87, + "che_250814_wvNP", + 36, + [ + "hall:dex1", + "hall:dex2", + "hall:firenum", + "hall:tsrate" + ] + ], + [ + "【87기】네이", + 90, + 15, + 76, + "che_event_징병", + [ + 36685, + 28084, + 40637, + 486356, + 49559 + ], + 0, + "default.jpg", + 87, + "che_250814_wvNP", + 43, + [ + "hall:dex4", + "hall:dex5", + "hall:tlrate" + ] + ], + [ + "【87기】로비", + 15, + 72, + 93, + "che_event_척사", + [ + 0, + 0, + 0, + 0, + 0 + ], + 1, + "71751125.png?=20240823", + 87, + "che_250814_wvNP", + 45, + [ + "hall:dedication" + ] + ], + [ + "【87기】황혼중", + 73, + 15, + 93, + "che_event_신산", + [ + 29086, + 6436, + 19589, + 239015, + 13464 + ], + 1, + "e5161df9.jpg?=20231110", + 87, + "che_250814_wvNP", + 46, + [ + "hall:dedication", + "hall:tirate", + "hall:ttrate" + ] + ], + [ + "【87기】갈비탕", + 75, + 87, + 17, + "che_event_위압", + [ + 14596, + 124902, + 128, + 29405, + 4344 + ], + 1, + "5013705e.jpg?=20250814", + 87, + "che_250814_wvNP", + 48, + [ + "hall:dex2" + ] + ], + [ + "【87기】와일드플라워", + 74, + 15, + 90, + "che_event_집중", + [ + 17909, + 5278, + 10070, + 191954, + 22478 + ], + 0, + "default.jpg", + 87, + "che_250814_wvNP", + 49, + [ + "hall:ttrate" + ] + ], + [ + "【87기】크랙", + 94, + 77, + 15, + "che_event_징병", + [ + 135762, + 47148, + 1195148, + 58990, + 35111 + ], + 1, + "df57fc9c.jpg?=20250830", + 87, + "che_250814_wvNP", + 51, + [ + "chief:6", + "hall:dex2", + "hall:dex3", + "hall:experience", + "hall:killcrew", + "hall:killcrew_person", + "hall:killnum", + "hall:killrate", + "hall:killrate_person", + "hall:tlrate", + "hall:warnum", + "hall:winrate" + ] + ], + [ + "【87기】독구탕", + 76, + 15, + 92, + "che_event_집중", + [ + 17746, + 25019, + 6566, + 351924, + 22584 + ], + 1, + "8281ed34.jpg?=20250813", + 87, + "che_250814_wvNP", + 57, + [ + "hall:tirate" + ] + ], + [ + "【87기】참새탕", + 75, + 90, + 15, + "che_event_무쌍", + [ + 61791, + 233984, + 21793, + 32992, + 10722 + ], + 1, + "e08dcf2a.jpg?=20250814", + 87, + "che_250814_wvNP", + 61, + [ + "hall:betrate", + "hall:betwin", + "hall:betwingold", + "hall:dex2", + "hall:tsrate" + ] + ], + [ + "【87기】바낫탕", + 94, + 72, + 15, + "che_event_공성", + [ + 51843, + 3474, + 329, + 21914, + 1174675 + ], + 1, + "6af544e0.jpg?=20250814", + 87, + "che_250814_wvNP", + 63, + [ + "chief:10", + "hall:betgold", + "hall:betrate", + "hall:betwingold", + "hall:dex5", + "hall:experience", + "hall:killcrew", + "hall:killrate", + "hall:occupied", + "hall:tlrate", + "hall:winrate" + ] + ], + [ + "【87기】호나", + 88, + 78, + 16, + "che_event_견고", + [ + 22064, + 19329, + 547271, + 42961, + 31186 + ], + 0, + "default.jpg", + 87, + "che_250814_wvNP", + 65, + [ + "hall:dex3" + ] + ], + [ + "【87기】덕구", + 78, + 88, + 15, + "che_event_무쌍", + [ + 468432, + 13799, + 39134, + 36915, + 16132 + ], + 1, + "bce319ad.jpg?=20250611", + 87, + "che_250814_wvNP", + 68, + [ + "hall:dex1", + "hall:firenum" + ] + ], + [ + "【87기】Air", + 76, + 89, + 15, + "che_event_징병", + [ + 82977, + 459451, + 8744, + 42537, + 37576 + ], + 0, + "default.jpg", + 87, + "che_250814_wvNP", + 71, + [ + "hall:dex2" + ] + ], + [ + "【87기】NK", + 92, + 75, + 15, + "che_event_징병", + [ + 740404, + 19273, + 43968, + 70833, + 36430 + ], + 0, + "default.jpg", + 87, + "che_250814_wvNP", + 72, + [ + "hall:betgold", + "hall:dex1", + "hall:killcrew", + "hall:killcrew_person", + "hall:killnum", + "hall:occupied", + "hall:tlrate", + "hall:warnum" + ] + ], + [ + "【87기】병리학적자세", + 73, + 15, + 94, + "che_event_집중", + [ + 27664, + 8673, + 12169, + 316848, + 32776 + ], + 1, + "3679089.jpg?=20180629", + 87, + "che_250814_wvNP", + 73, + [ + "chief:5", + "hall:betgold", + "hall:betwin", + "hall:betwingold", + "hall:dedication", + "hall:experience", + "hall:killrate", + "hall:killrate_person", + "hall:tirate", + "hall:ttrate" + ] + ], + [ + "【87기】크루", + 76, + 15, + 92, + "che_event_신산", + [ + 35213, + 3614, + 18928, + 432122, + 28090 + ], + 1, + "347d0a54.png?=20250817", + 87, + "che_250814_wvNP", + 74, + [ + "hall:dex4", + "hall:tirate" + ] + ], + [ + "【87기】간지밍이", + 15, + 74, + 88, + "che_event_저격", + [ + 0, + 0, + 0, + 0, + 0 + ], + 1, + "2565fc24.png?=20250705", + 87, + "che_250814_wvNP", + 75, + [ + "hall:firenum" + ] + ], + [ + "【87기】청서탕", + 89, + 74, + 15, + "che_event_무쌍", + [ + 37695, + 234725, + 8930, + 31453, + 33981 + ], + 0, + "default.jpg", + 87, + "che_250814_wvNP", + 76, + [ + "hall:dex2" + ] + ], + [ + "【87기】라콘탕", + 71, + 83, + 15, + "che_event_견고", + [ + 37282, + 212, + 302, + 5944, + 0 + ], + 1, + "e5a29d52.png?=20250814", + 87, + "che_250814_wvNP", + 77, + [ + "hall:betwingold" + ] + ], + [ + "【87기】솔로탕", + 91, + 77, + 15, + "che_event_필살", + [ + 900414, + 10041, + 55401, + 54497, + 33944 + ], + 1, + "13490054.jpg?=20250813", + 87, + "che_250814_wvNP", + 78, + [ + "hall:betgold", + "hall:betrate", + "hall:betwin", + "hall:betwingold", + "hall:dex1", + "hall:experience", + "hall:killcrew", + "hall:killcrew_person", + "hall:killnum", + "hall:killrate", + "hall:killrate_person", + "hall:occupied", + "hall:tlrate", + "hall:warnum", + "hall:winrate" + ] + ], + [ + "【87기】비스마르크", + 78, + 93, + 15, + "che_event_징병", + [ + 818569, + 8257, + 18609, + 34253, + 20202 + ], + 0, + "default.jpg", + 87, + "che_250814_wvNP", + 79, + [ + "hall:dex1", + "hall:killcrew", + "hall:killcrew_person", + "hall:killnum", + "hall:tsrate", + "hall:warnum" + ] + ], + [ + "【87기】코젠탕", + 78, + 87, + 16, + "che_event_격노", + [ + 66267, + 28743, + 504452, + 47636, + 38613 + ], + 1, + "1fdeaf37.jpg?=20250813", + 87, + "che_250814_wvNP", + 80, + [ + "hall:dex3", + "hall:dex5", + "hall:killnum", + "hall:tsrate", + "hall:warnum" + ] + ], + [ + "【87기】Kalsarikännit", + 79, + 90, + 15, + "che_event_필살", + [ + 79644, + 661381, + 15163, + 43660, + 42295 + ], + 1, + "7c0144e7.jpg?=20250818", + 87, + "che_250814_wvNP", + 81, + [ + "hall:betgold", + "hall:betwin", + "hall:dex2", + "hall:dex5", + "hall:killcrew", + "hall:killcrew_person", + "hall:killnum", + "hall:killrate", + "hall:killrate_person", + "hall:warnum", + "hall:winrate" + ] + ], + [ + "【87기】맛탕", + 86, + 15, + 80, + "che_event_필살", + [ + 52344, + 12626, + 9210, + 375200, + 23679 + ], + 1, + "8cddde40.jpg?=20250814", + 87, + "che_250814_wvNP", + 82, + [ + "hall:dex4" + ] + ], + [ + "【87기】비의", + 75, + 15, + 91, + "che_event_환술", + [ + 47974, + 16407, + 6019, + 417884, + 20351 + ], + 1, + "8beccfc3.jpg?=20250814", + 87, + "che_250814_wvNP", + 83, + [ + "chief:11", + "hall:betgold", + "hall:betrate", + "hall:betwin", + "hall:betwingold", + "hall:dedication", + "hall:dex4", + "hall:experience", + "hall:killrate", + "hall:killrate_person", + "hall:occupied", + "hall:tirate", + "hall:winrate" + ] + ], + [ + "【87기】강유", + 90, + 15, + 79, + "che_event_돌격", + [ + 70200, + 19306, + 19984, + 728405, + 41327 + ], + 1, + "79e150d0.jpg?=20230921", + 87, + "che_250814_wvNP", + 85, + [ + "chief:12", + "hall:dedication", + "hall:dex4", + "hall:dex5", + "hall:experience", + "hall:killcrew", + "hall:killcrew_person", + "hall:killnum", + "hall:killrate", + "hall:killrate_person", + "hall:occupied", + "hall:tlrate", + "hall:winrate" + ] + ], + [ + "【87기】개가홍보하는삼계탕", + 79, + 88, + 15, + "che_event_필살", + [ + 506694, + 4067, + 32135, + 76310, + 44493 + ], + 1, + "7e279701.png?=20250814", + 87, + "che_250814_wvNP", + 86, + [ + "hall:betgold", + "hall:betrate", + "hall:betwingold", + "hall:dex1", + "hall:dex5" + ] + ], + [ + "【87기】쌍심장", + 76, + 90, + 15, + "che_event_격노", + [ + 68599, + 16104, + 711773, + 50405, + 31908 + ], + 1, + "fd606087.jpg?=20250814", + 87, + "che_250814_wvNP", + 87, + [ + "hall:dex3", + "hall:killcrew", + "hall:killcrew_person", + "hall:killnum", + "hall:killrate", + "hall:killrate_person", + "hall:occupied", + "hall:tsrate", + "hall:warnum", + "hall:winrate" + ] + ], + [ + "【87기】호표기병A", + 89, + 77, + 15, + "che_event_위압", + [ + 14651, + 21817, + 230562, + 58915, + 10476 + ], + 1, + "535fef3f.png?=20250814", + 87, + "che_250814_wvNP", + 88, + [ + "hall:dex3", + "hall:tlrate" + ] + ], + [ + "【87기】싱하", + 77, + 89, + 15, + "che_event_징병", + [ + 31577, + 30757, + 307758, + 46890, + 16310 + ], + 1, + "671494ea.jpg?=20250814", + 87, + "che_250814_wvNP", + 89, + [ + "hall:dex2", + "hall:dex3", + "hall:tsrate" + ] + ], + [ + "【87기】식물탕", + 73, + 15, + 94, + "che_event_필살", + [ + 40004, + 11462, + 10888, + 403778, + 37697 + ], + 1, + "b2df1679.png?=20250814", + 87, + "che_250814_wvNP", + 90, + [ + "chief:9", + "hall:betrate", + "hall:dex4", + "hall:experience", + "hall:killrate", + "hall:killrate_person", + "hall:tirate", + "hall:winrate" + ] + ], + [ + "【87기】슥게탕", + 74, + 18, + 88, + "che_event_필살", + [ + 15089, + 26514, + 9529, + 233925, + 18831 + ], + 1, + "af240a10.jpg?=20250814", + 87, + "che_250814_wvNP", + 91, + [ + "chief:7" + ] + ], + [ + "【87기】카이스트", + 79, + 15, + 89, + "che_event_필살", + [ + 41496, + 12251, + 19101, + 460079, + 11198 + ], + 1, + "e7e27cd6.jpg?=20221125", + 87, + "che_250814_wvNP", + 92, + [ + "hall:betgold", + "hall:betrate", + "hall:betwin", + "hall:betwingold", + "hall:dex4", + "hall:killcrew_person" + ] + ], + [ + "【87기】뇌진탕", + 95, + 71, + 15, + "che_event_의술", + [ + 48488, + 27738, + 18308, + 72383, + 398695 + ], + 1, + "c8b19f90.png?=20250814", + 87, + "che_250814_wvNP", + 94, + [ + "chief:8", + "hall:betgold", + "hall:betrate", + "hall:betwin", + "hall:betwingold", + "hall:dex5", + "hall:tlrate" + ] + ], + [ + "【87기】총명탕", + 73, + 15, + 94, + "che_event_환술", + [ + 23650, + 5914, + 6245, + 347496, + 36321 + ], + 0, + "default.jpg", + 87, + "che_250814_wvNP", + 95, + [ + "hall:dedication", + "hall:experience", + "hall:tirate", + "hall:ttrate", + "hall:winrate" + ] + ], + [ + "【87기】퍄퍄", + 75, + 89, + 15, + "che_event_위압", + [ + 326975, + 7013, + 15261, + 29742, + 27578 + ], + 0, + "default.jpg", + 87, + "che_250814_wvNP", + 96, + [ + "hall:occupied", + "hall:tsrate", + "hall:ttrate" + ] + ], + [ + "【87기】해피니스!", + 74, + 15, + 92, + "che_event_귀병", + [ + 32514, + 10047, + 12380, + 256175, + 2531 + ], + 1, + "caabc0c7.jpg?=20250814", + 87, + "che_250814_wvNP", + 97, + [ + "hall:tirate" + ] + ], + [ + "【87기】Hide_D", + 75, + 15, + 93, + "che_event_징병", + [ + 39274, + 8866, + 8414, + 243595, + 17086 + ], + 1, + "4569d848.png?=20230612", + 87, + "che_250814_wvNP", + 103, + [ + "hall:dedication", + "hall:tirate", + "hall:ttrate" + ] + ], + [ + "【87기】송탄강", + 75, + 16, + 89, + "che_event_저격", + [ + 35960, + 21315, + 16346, + 225125, + 18424 + ], + 0, + "default.jpg", + 87, + "che_250814_wvNP", + 104, + [ + "hall:betgold", + "hall:betrate", + "hall:betwin", + "hall:betwingold" + ] + ], + [ + "【87기】호우주의보", + 86, + 16, + 75, + "che_event_필살", + [ + 56983, + 7588, + 24437, + 363549, + 26021 + ], + 0, + "default.jpg", + 87, + "che_250814_wvNP", + 106, + [ + "hall:dex4", + "hall:ttrate" + ] + ], + [ + "【87기】타치바나히나노", + 77, + 89, + 15, + "che_event_저격", + [ + 17422, + 18234, + 274045, + 36631, + 17991 + ], + 1, + "c033385a.jpg?=20250626", + 87, + "che_250814_wvNP", + 108, + [ + "hall:dex3" + ] + ], + [ + "【87기】민트토끼", + 15, + 73, + 93, + "che_event_징병", + [ + 0, + 0, + 0, + 0, + 0 + ], + 1, + "abee91f3.jpg?=20250721", + 87, + "che_250814_wvNP", + 178, + [ + "hall:dedication", + "hall:tirate", + "hall:ttrate" + ] + ], + [ + "【87기】ㅊㄹㅊㄹ", + 77, + 86, + 15, + "che_event_위압", + [ + 4652, + 57019, + 299373, + 19694, + 14245 + ], + 1, + "63f1c106.png?=20230223", + 87, + "che_250814_wvNP", + 183, + [ + "hall:dex2", + "hall:dex3", + "hall:ttrate" + ] + ], + [ + "【87기】주기자", + 91, + 15, + 74, + "che_event_필살", + [ + 30738, + 24369, + 27901, + 496557, + 40311 + ], + 1, + "ac77a77d.jpg?=20250814", + 87, + "che_250814_wvNP", + 266, + [ + "hall:dex4", + "hall:dex5", + "hall:tlrate" + ] + ], + [ + "【87기】TATUM", + 75, + 90, + 15, + "che_event_징병", + [ + 147726, + 56179, + 6545, + 15789, + 0 + ], + 0, + "default.jpg", + 87, + "che_250814_wvNP", + 267, + [ + "hall:dex2", + "hall:tsrate" + ] + ], + [ + "【87기】꽁꽁 고양이", + 16, + 72, + 90, + "che_event_집중", + [ + 0, + 0, + 0, + 0, + 0 + ], + 1, + "e4c0f0a2.jpg?=20250815", + 87, + "che_250814_wvNP", + 268, + [ + "hall:dedication" + ] + ], + [ + "【87기】미친개", + 79, + 85, + 15, + "che_event_무쌍", + [ + 9828, + 22947, + 302164, + 18669, + 3351 + ], + 1, + "e16aa4c8.jpg?=20250811", + 87, + "che_250814_wvNP", + 369, + [ + "hall:dex3", + "hall:tsrate" + ] + ], + [ + "【88기】카마도 탄지로", + 78, + 85, + 15, + "che_event_필살", + [ + 44341, + 375210, + 3933, + 28952, + 18338 + ], + 1, + "66c356bb.jpg?=20250904", + 88, + "che_250904_M4Q0", + 6, + [ + "hall:dex2" + ] + ], + [ + "【88기】척", + 75, + 89, + 15, + "che_event_필살", + [ + 35287, + 32990, + 236226, + 34014, + 36297 + ], + 1, + "7cb75480.png?=20221202", + 88, + "che_250904_M4Q0", + 9, + [ + "hall:dex3", + "hall:tsrate" + ] + ], + [ + "【88기】도로롱", + 95, + 72, + 15, + "che_event_격노", + [ + 361347, + 24821, + 108788, + 56889, + 34196 + ], + 1, + "9ff5e3ec.gif?=20250904", + 88, + "che_250904_M4Q0", + 10, + [ + "chief:6", + "hall:betgold", + "hall:betrate", + "hall:betwingold", + "hall:dedication", + "hall:dex1", + "hall:dex3", + "hall:occupied", + "hall:tlrate" + ] + ], + [ + "【88기】토미오카 기유", + 91, + 76, + 15, + "che_event_징병", + [ + 88796, + 73420, + 1087686, + 95549, + 51932 + ], + 1, + "b01149db.jpg?=20250904", + 88, + "che_250904_M4Q0", + 11, + [ + "hall:betgold", + "hall:betrate", + "hall:betwin", + "hall:betwingold", + "hall:dex2", + "hall:dex3", + "hall:dex5", + "hall:experience", + "hall:killcrew", + "hall:killcrew_person", + "hall:killnum", + "hall:occupied", + "hall:warnum" + ] + ], + [ + "【88기】우즈이 텐겐", + 15, + 73, + 92, + "che_event_필살", + [ + 0, + 0, + 0, + 127, + 0 + ], + 1, + "10838b72.jpg?=20250904", + 88, + "che_250904_M4Q0", + 20, + [ + "hall:dedication", + "hall:tirate" + ] + ], + [ + "【88기】사마량", + 74, + 15, + 94, + "che_event_환술", + [ + 9393, + 9577, + 5076, + 288635, + 12954 + ], + 1, + "736b3aec.png?=20250904", + 88, + "che_250904_M4Q0", + 23, + [ + "hall:tirate" + ] + ], + [ + "【88기】콜드브루", + 78, + 15, + 89, + "che_event_필살", + [ + 33664, + 25109, + 25103, + 444767, + 38564 + ], + 1, + "90a67b96.jpg?=20250906", + 88, + "che_250904_M4Q0", + 25, + [ + "hall:betgold", + "hall:betrate", + "hall:betwingold", + "hall:dex4", + "hall:occupied" + ] + ], + [ + "【88기】코쵸우 시노부", + 77, + 15, + 88, + "che_event_필살", + [ + 23745, + 20371, + 10000, + 386150, + 48648 + ], + 1, + "fdf912b5.jpg?=20250904", + 88, + "che_250904_M4Q0", + 28, + [ + "hall:dex4", + "hall:dex5", + "hall:experience" + ] + ], + [ + "【88기】서림동결혼반지도둑", + 74, + 15, + 92, + "che_event_저격", + [ + 1680, + 1949, + 1524, + 90599, + 5417 + ], + 0, + "default.jpg", + 88, + "che_250904_M4Q0", + 30, + [ + "hall:tirate" + ] + ], + [ + "【88기】히메지마 쿄메이", + 74, + 93, + 15, + "che_event_필살", + [ + 346916, + 10141, + 52422, + 39270, + 23140 + ], + 0, + "default.jpg", + 88, + "che_250904_M4Q0", + 34, + [ + "hall:dex1", + "hall:tsrate" + ] + ], + [ + "【88기】제갈량", + 78, + 15, + 91, + "che_event_징병", + [ + 45711, + 20964, + 17241, + 479726, + 23485 + ], + 1, + "8f10f4e0.jpg?=20250904", + 88, + "che_250904_M4Q0", + 37, + [ + "hall:dex4", + "hall:experience", + "hall:killcrew_person", + "hall:warnum" + ] + ], + [ + "【88기】포클", + 76, + 89, + 15, + "che_event_돌격", + [ + 42675, + 23808, + 292944, + 47160, + 33927 + ], + 0, + "default.jpg", + 88, + "che_250904_M4Q0", + 40, + [ + "hall:dex3" + ] + ], + [ + "【88기】Hide_D", + 76, + 15, + 90, + "che_event_환술", + [ + 32795, + 22157, + 5686, + 300649, + 14991 + ], + 1, + "4569d848.png?=20230612", + 88, + "che_250904_M4Q0", + 41, + [ + "hall:ttrate" + ] + ], + [ + "【88기】병리학적자세", + 73, + 15, + 95, + "che_event_필살", + [ + 20172, + 6226, + 1476, + 198785, + 20366 + ], + 1, + "3679089.jpg?=20180629", + 88, + "che_250904_M4Q0", + 43, + [ + "hall:betgold", + "hall:betrate", + "hall:betwin", + "hall:betwingold", + "hall:tirate" + ] + ], + [ + "【88기】메로론", + 76, + 15, + 92, + "che_event_신중", + [ + 41091, + 37142, + 12840, + 608055, + 55785 + ], + 1, + "5c23d811.png?=20250904", + 88, + "che_250904_M4Q0", + 48, + [ + "chief:7", + "hall:betgold", + "hall:betrate", + "hall:betwingold", + "hall:dex2", + "hall:dex4", + "hall:dex5", + "hall:killcrew", + "hall:killcrew_person", + "hall:ttrate", + "hall:warnum" + ] + ], + [ + "【88기】제5열", + 76, + 90, + 15, + "che_event_격노", + [ + 350905, + 13353, + 103695, + 60011, + 42789 + ], + 0, + "default.jpg", + 88, + "che_250904_M4Q0", + 50, + [ + "hall:betgold", + "hall:betrate", + "hall:betwin", + "hall:betwingold", + "hall:dex1", + "hall:dex3" + ] + ], + [ + "【88기】바나낫", + 76, + 93, + 15, + "che_event_돌격", + [ + 1059027, + 14627, + 49063, + 48394, + 50298 + ], + 1, + "0cb9b306.gif?=20250913", + 88, + "che_250904_M4Q0", + 53, + [ + "hall:dex1", + "hall:dex5", + "hall:experience", + "hall:killcrew", + "hall:killcrew_person", + "hall:killnum", + "hall:killrate", + "hall:killrate_person", + "hall:tsrate", + "hall:warnum", + "hall:winrate" + ] + ], + [ + "【88기】대교", + 92, + 73, + 16, + "che_event_돌격", + [ + 200278, + 9389, + 3554, + 30682, + 10468 + ], + 1, + "a53ab5ef.jpg?=20241010", + 88, + "che_250904_M4Q0", + 56, + [ + "hall:tlrate" + ] + ], + [ + "【88기】머쉬베놈", + 96, + 72, + 15, + "che_event_견고", + [ + 18919, + 25837, + 339020, + 16429, + 28239 + ], + 1, + "7a0ae932.jpg?=20250904", + 88, + "che_250904_M4Q0", + 71, + [ + "hall:dex3", + "hall:experience", + "hall:killrate_person", + "hall:occupied", + "hall:tlrate", + "hall:winrate" + ] + ], + [ + "【88기】잠입", + 76, + 89, + 15, + "che_event_위압", + [ + 34144, + 22436, + 396689, + 38781, + 22770 + ], + 1, + "caed5c11.jpg?=20250904", + 88, + "che_250904_M4Q0", + 72, + [ + "hall:dex3" + ] + ], + [ + "【88기】너구리", + 76, + 15, + 93, + "che_event_필살", + [ + 43978, + 32293, + 20008, + 524857, + 45661 + ], + 1, + "f2434b35.jpg?=20250904", + 88, + "che_250904_M4Q0", + 73, + [ + "hall:dex4", + "hall:killcrew", + "hall:killnum", + "hall:tirate", + "hall:ttrate", + "hall:warnum", + "hall:winrate" + ] + ], + [ + "【88기】코쿠시보", + 77, + 15, + 89, + "che_event_척사", + [ + 43352, + 25255, + 19167, + 540201, + 35897 + ], + 1, + "c5c25f20.png?=20250905", + 88, + "che_250904_M4Q0", + 74, + [ + "hall:dex4", + "hall:killcrew_person" + ] + ], + [ + "【88기】栗花落 カナヲ", + 74, + 15, + 93, + "che_event_필살", + [ + 13489, + 2882, + 17635, + 298600, + 115371 + ], + 1, + "b3c4d516.jpg?=20250904", + 88, + "che_250904_M4Q0", + 75, + [ + "chief:9", + "hall:dedication", + "hall:dex5", + "hall:experience", + "hall:killrate", + "hall:occupied" + ] + ], + [ + "【88기】잘생빔맞은루미", + 16, + 88, + 77, + "che_event_돌격", + [ + 0, + 0, + 0, + 0, + 0 + ], + 1, + "8e4c38c6.jpg?=20250904", + 88, + "che_250904_M4Q0", + 76, + [ + "hall:dedication" + ] + ], + [ + "【88기】황혼중", + 90, + 15, + 76, + "che_event_반계", + [ + 21963, + 16713, + 35970, + 220533, + 24414 + ], + 1, + "e5161df9.jpg?=20231110", + 88, + "che_250904_M4Q0", + 77, + [ + "hall:tlrate" + ] + ], + [ + "【88기】TATUM", + 91, + 15, + 74, + "che_event_저격", + [ + 47180, + 893, + 8085, + 13611, + 125745 + ], + 0, + "default.jpg", + 88, + "che_250904_M4Q0", + 78, + [ + "hall:dex5", + "hall:tlrate" + ] + ], + [ + "【88기】마이트 가이", + 93, + 73, + 16, + "che_event_저격", + [ + 627235, + 17329, + 37893, + 48556, + 60900 + ], + 1, + "59e57cfe.webp?=20250921", + 88, + "che_250904_M4Q0", + 79, + [ + "hall:betrate", + "hall:betwin", + "hall:dex1", + "hall:dex5", + "hall:experience", + "hall:killcrew", + "hall:killnum", + "hall:killrate", + "hall:killrate_person", + "hall:tlrate", + "hall:winrate" + ] + ], + [ + "【88기】앵벌스", + 76, + 93, + 15, + "che_event_돌격", + [ + 527440, + 29574, + 53302, + 50957, + 46095 + ], + 1, + "5163b496.png?=20250919", + 88, + "che_250904_M4Q0", + 80, + [ + "chief:12", + "hall:betgold", + "hall:betwin", + "hall:dedication", + "hall:dex1", + "hall:experience", + "hall:killnum", + "hall:killrate", + "hall:killrate_person", + "hall:tsrate", + "hall:ttrate", + "hall:winrate" + ] + ], + [ + "【88기】카이스트", + 76, + 15, + 88, + "che_event_필살", + [ + 25937, + 48447, + 28387, + 261324, + 57254 + ], + 1, + "e7e27cd6.jpg?=20221125", + 88, + "che_250904_M4Q0", + 81, + [ + "hall:betrate", + "hall:betwingold", + "hall:dedication", + "hall:dex2", + "hall:dex5" + ] + ], + [ + "【88기】크냥", + 92, + 77, + 15, + "che_event_돌격", + [ + 1052677, + 35085, + 35642, + 170762, + 42264 + ], + 0, + "default.jpg", + 88, + "che_250904_M4Q0", + 84, + [ + "chief:10", + "hall:dex1", + "hall:experience", + "hall:killcrew", + "hall:killcrew_person", + "hall:killnum", + "hall:killrate", + "hall:killrate_person", + "hall:occupied", + "hall:tlrate", + "hall:warnum", + "hall:winrate" + ] + ], + [ + "【88기】평민킬러", + 77, + 93, + 15, + "che_event_필살", + [ + 35194, + 44414, + 684781, + 46361, + 41606 + ], + 1, + "796310d0.jpg?=20250905", + 88, + "che_250904_M4Q0", + 85, + [ + "hall:betgold", + "hall:betwin", + "hall:betwingold", + "hall:dex2", + "hall:dex3", + "hall:killcrew", + "hall:killcrew_person", + "hall:killnum", + "hall:killrate", + "hall:killrate_person", + "hall:occupied", + "hall:tsrate", + "hall:warnum", + "hall:winrate" + ] + ], + [ + "【88기】장수", + 76, + 93, + 15, + "che_event_필살", + [ + 818177, + 12239, + 35081, + 35100, + 43768 + ], + 0, + "default.jpg", + 88, + "che_250904_M4Q0", + 87, + [ + "hall:betrate", + "hall:dex1", + "hall:killcrew", + "hall:killcrew_person", + "hall:killnum", + "hall:killrate", + "hall:killrate_person", + "hall:occupied", + "hall:tsrate", + "hall:warnum", + "hall:winrate" + ] + ], + [ + "【88기】지나가던 선비", + 77, + 89, + 15, + "che_event_필살", + [ + 66420, + 285214, + 6755, + 19896, + 27843 + ], + 1, + "88381c99.jpg?=20250904", + 88, + "che_250904_M4Q0", + 88, + [ + "hall:dex2" + ] + ], + [ + "【88기】덥다", + 91, + 77, + 15, + "che_event_필살", + [ + 622083, + 17909, + 112973, + 52488, + 41689 + ], + 0, + "default.jpg", + 88, + "che_250904_M4Q0", + 89, + [ + "chief:8", + "hall:dex1", + "hall:dex3", + "hall:killcrew", + "hall:killcrew_person", + "hall:killnum", + "hall:occupied", + "hall:tlrate", + "hall:warnum" + ] + ], + [ + "【88기】우부야시키 카가야", + 76, + 91, + 15, + "che_event_필살", + [ + 57416, + 515957, + 22323, + 41319, + 48868 + ], + 1, + "d1f0a8f5.jpg?=20250904", + 88, + "che_250904_M4Q0", + 91, + [ + "hall:betwin", + "hall:dex2", + "hall:dex5", + "hall:tsrate" + ] + ], + [ + "【88기】하시바라 이노스케", + 86, + 15, + 81, + "che_event_집중", + [ + 29054, + 35209, + 35610, + 280804, + 49532 + ], + 1, + "2c554198.jpg?=20250904", + 88, + "che_250904_M4Q0", + 93, + [ + "hall:dex5", + "hall:tlrate" + ] + ], + [ + "【88기】침묵의 마녀", + 75, + 15, + 94, + "che_event_집중", + [ + 30703, + 19612, + 35089, + 643784, + 46932 + ], + 1, + "3af39b35.png?=20250904", + 88, + "che_250904_M4Q0", + 94, + [ + "hall:dex4", + "hall:experience", + "hall:killcrew", + "hall:killcrew_person", + "hall:killnum", + "hall:killrate", + "hall:killrate_person", + "hall:occupied", + "hall:tirate", + "hall:warnum", + "hall:winrate" + ] + ], + [ + "【88기】맘보", + 76, + 91, + 15, + "che_event_무쌍", + [ + 341793, + 20097, + 23145, + 30620, + 36326 + ], + 1, + "e8f2075a.png?=20250919", + 88, + "che_250904_M4Q0", + 96, + [ + "chief:11", + "hall:dedication", + "hall:killrate", + "hall:killrate_person", + "hall:tsrate", + "hall:winrate" + ] + ], + [ + "【88기】Air", + 79, + 89, + 15, + "che_event_저격", + [ + 20507, + 226744, + 5171, + 21768, + 10136 + ], + 0, + "default.jpg", + 88, + "che_250904_M4Q0", + 98, + [ + "hall:dex2", + "hall:ttrate" + ] + ], + [ + "【88기】블러드메이지", + 77, + 15, + 91, + "che_event_필살", + [ + 29898, + 30854, + 35435, + 456535, + 36185 + ], + 0, + "default.jpg", + 88, + "che_250904_M4Q0", + 99, + [ + "hall:dex4" + ] + ], + [ + "【88기】츠유리 카나오", + 76, + 89, + 16, + "che_event_척사", + [ + 510323, + 13581, + 30733, + 48401, + 42437 + ], + 1, + "1b5ef40b.jpg?=20250904", + 88, + "che_250904_M4Q0", + 100, + [ + "hall:dex1", + "hall:tsrate" + ] + ], + [ + "【88기】카마도 네즈코", + 76, + 16, + 90, + "che_event_징병", + [ + 7803, + 19708, + 34322, + 368096, + 35428 + ], + 1, + "4007383f.jpg?=20250904", + 88, + "che_250904_M4Q0", + 101, + [ + "hall:dex4" + ] + ], + [ + "【88기】지각", + 74, + 15, + 93, + "che_event_저격", + [ + 43505, + 18176, + 1180, + 294288, + 28462 + ], + 0, + "default.jpg", + 88, + "che_250904_M4Q0", + 104, + [ + "hall:tirate", + "hall:ttrate" + ] + ], + [ + "【88기】알레르기성비염독구", + 16, + 73, + 91, + "che_event_집중", + [ + 0, + 0, + 0, + 0, + 0 + ], + 1, + "5283daf7.png?=20240511", + 88, + "che_250904_M4Q0", + 106, + [ + "hall:betwin" + ] + ], + [ + "【88기】미스티", + 74, + 15, + 90, + "che_event_귀병", + [ + 4062, + 12788, + 14897, + 115465, + 13443 + ], + 1, + "1aadcba.png?=20180908", + 88, + "che_250904_M4Q0", + 109, + [ + "hall:tirate" + ] + ], + [ + "【88기】마요이", + 16, + 73, + 91, + "che_event_집중", + [ + 0, + 0, + 0, + 0, + 0 + ], + 1, + "2b49c945.png?=20230921", + 88, + "che_250904_M4Q0", + 111, + [ + "hall:dedication" + ] + ], + [ + "【88기】ㅊㄹㅊㄹ", + 81, + 88, + 15, + "che_event_견고", + [ + 21516, + 268294, + 10635, + 24909, + 8324 + ], + 1, + "63f1c106.png?=20230223", + 88, + "che_250904_M4Q0", + 215, + [ + "hall:betgold", + "hall:betrate", + "hall:betwin", + "hall:betwingold", + "hall:dex2", + "hall:ttrate" + ] + ], + [ + "【88기】오펜하이머", + 75, + 16, + 89, + "che_event_환술", + [ + 41693, + 6688, + 8381, + 328268, + 42286 + ], + 1, + "06ac609d.jpg?=20250904", + 88, + "che_250904_M4Q0", + 217, + [ + "chief:5", + "hall:dex4", + "hall:ttrate" + ] + ], + [ + "【88기】메종독구네", + 15, + 72, + 93, + "che_event_의술", + [ + 0, + 0, + 0, + 0, + 0 + ], + 1, + "02dc3a91.gif?=20231019", + 88, + "che_250904_M4Q0", + 225, + [ + "hall:dedication", + "hall:tirate" + ] + ], + [ + "【88기】서림동", + 76, + 89, + 15, + "che_event_위압", + [ + 12623, + 8611, + 346041, + 9017, + 8836 + ], + 0, + "default.jpg", + 88, + "che_250904_M4Q0", + 227, + [ + "hall:dex3", + "hall:killrate", + "hall:killrate_person" + ] + ], + [ + "【88기】레이즐", + 76, + 86, + 16, + "che_event_필살", + [ + 9511, + 114312, + 554, + 9533, + 9018 + ], + 0, + "default.jpg", + 88, + "che_250904_M4Q0", + 248, + [ + "hall:dex2", + "hall:tsrate" + ] + ], + [ + "【88기】최진리", + 78, + 15, + 89, + "che_event_집중", + [ + 10733, + 5879, + 13834, + 220199, + 23569 + ], + 1, + "677580c5.jpg?=20241230", + 88, + "che_250904_M4Q0", + 251, + [ + "hall:ttrate" + ] + ], + [ + "【88기】맛있는거", + 61, + 56, + 64, + "che_event_집중", + [ + 12527, + 13118, + 27605, + 205528, + 31411 + ], + 0, + "default.jpg", + 88, + "che_250904_M4Q0", + 273, + [ + "hall:ttrate" + ] + ], + [ + "【88기】춤과파티", + 86, + 71, + 23, + "che_event_척사", + [ + 332982, + 23580, + 8869, + 57254, + 23213 + ], + 0, + "default.jpg", + 88, + "che_250904_M4Q0", + 285, + [ + "hall:betgold", + "hall:betwin", + "hall:betwingold", + "hall:tlrate" + ] + ], + [ + "【88기】VITAMIN", + 16, + 73, + 88, + "che_event_신중", + [ + 0, + 0, + 0, + 0, + 0 + ], + 0, + "default.jpg", + 88, + "che_250904_M4Q0", + 403, + [ + "hall:dedication" + ] + ], + [ + "【88기】가을이즈커밍", + 71, + 15, + 92, + "che_event_신산", + [ + 0, + 0, + 0, + 0, + 0 + ], + 0, + "default.jpg", + 88, + "che_250904_M4Q0", + 453, + [ + "hall:tirate" + ] + ], + [ + "【89기】NK", + 84, + 66, + 13, + "che_event_필살", + [ + 10294, + 25025, + 595549, + 46072, + 22096 + ], + 0, + "default.jpg", + 89, + "che_250925_be9o", + 3, + [ + "hall:betgold", + "hall:betwingold", + "hall:dex3", + "hall:killcrew_person", + "hall:tlrate" + ] + ], + [ + "【89기】Hide_D", + 80, + 15, + 93, + "che_event_척사", + [ + 28172, + 82768, + 37485, + 473212, + 44300 + ], + 1, + "4569d848.png?=20230612", + 89, + "che_250925_be9o", + 4, + [ + "hall:tirate" + ] + ], + [ + "【89기】척", + 77, + 96, + 15, + "che_event_의술", + [ + 21332, + 33490, + 435905, + 49484, + 20805 + ], + 1, + "7cb75480.png?=20221202", + 89, + "che_250925_be9o", + 7, + [ + "hall:dex3", + "hall:tsrate" + ] + ], + [ + "【89기】이드", + 15, + 72, + 100, + "che_event_저격", + [ + 0, + 0, + 0, + 0, + 0 + ], + 1, + "ac5f0a3b.jpg?=20241107", + 89, + "che_250925_be9o", + 19, + [ + "hall:dedication", + "hall:firenum", + "hall:tirate" + ] + ], + [ + "【89기】톨루이칸", + 78, + 15, + 97, + "che_event_필살", + [ + 65915, + 116144, + 165634, + 1826735, + 56767 + ], + 1, + "c5231318.jpg?=20251009", + 89, + "che_250925_be9o", + 24, + [ + "chief:7", + "hall:dex4", + "hall:killcrew", + "hall:killcrew_person", + "hall:killnum", + "hall:killrate", + "hall:killrate_person", + "hall:occupied", + "hall:tirate", + "hall:ttrate", + "hall:warnum", + "hall:winrate" + ] + ], + [ + "【89기】지뢰계멘헤라", + 69, + 78, + 13, + "che_event_필살", + [ + 15090, + 62995, + 1265, + 11287, + 4550 + ], + 1, + "b2804fb8.jpg?=20250925", + 89, + "che_250925_be9o", + 34, + [ + "hall:dedication" + ] + ], + [ + "【89기】임사영", + 67, + 84, + 13, + "che_event_필살", + [ + 56259, + 567255, + 11743, + 43353, + 15851 + ], + 1, + "f0c94d4f.jpg?=20250915", + 89, + "che_250925_be9o", + 41, + [ + "hall:dex2", + "hall:killcrew", + "hall:killcrew_person", + "hall:killnum", + "hall:killrate", + "hall:killrate_person", + "hall:tsrate", + "hall:winrate" + ] + ], + [ + "【89기】호나", + 83, + 15, + 90, + "che_event_필살", + [ + 62505, + 148099, + 154920, + 1057889, + 67840 + ], + 0, + "default.jpg", + 89, + "che_250925_be9o", + 42, + [ + "hall:dex2", + "hall:dex4", + "hall:firenum" + ] + ], + [ + "【89기】몽케칸", + 81, + 15, + 89, + "che_event_필살", + [ + 44499, + 125583, + 113815, + 992911, + 70220 + ], + 1, + "1f1bad60.jpg?=20250925", + 89, + "che_250925_be9o", + 44, + [ + "hall:dex4", + "hall:occupied" + ] + ], + [ + "【89기】병리학적자세", + 67, + 13, + 80, + "che_event_필살", + [ + 23265, + 33311, + 49222, + 549685, + 38486 + ], + 1, + "3679089.jpg?=20180629", + 89, + "che_250925_be9o", + 45, + [ + "chief:9", + "hall:betgold", + "hall:betwin", + "hall:betwingold", + "hall:dex4", + "hall:dex5", + "hall:killrate", + "hall:killrate_person", + "hall:tirate", + "hall:ttrate" + ] + ], + [ + "【89기】미스 몽골", + 15, + 63, + 82, + "che_event_의술", + [ + 0, + 0, + 0, + 0, + 0 + ], + 0, + "default.jpg", + 89, + "che_250925_be9o", + 46, + [ + "hall:dedication" + ] + ], + [ + "【89기】간지밍이", + 16, + 85, + 85, + "che_event_신산", + [ + 0, + 0, + 0, + 0, + 0 + ], + 1, + "2565fc24.png?=20250705", + 89, + "che_250925_be9o", + 47, + [ + "hall:dedication" + ] + ], + [ + "【89기】황혼중", + 76, + 13, + 72, + "che_event_환술", + [ + 15010, + 2487, + 2166, + 97164, + 6836 + ], + 1, + "e5161df9.jpg?=20231110", + 89, + "che_250925_be9o", + 48, + [ + "hall:dedication", + "hall:tlrate" + ] + ], + [ + "【89기】올리버 칸", + 82, + 91, + 15, + "che_event_필살", + [ + 1463275, + 83470, + 162051, + 135735, + 104264 + ], + 1, + "57248a50.png?=20250925", + 89, + "che_250925_be9o", + 53, + [ + "hall:dex1", + "hall:dex5", + "hall:experience", + "hall:killcrew", + "hall:killnum", + "hall:killrate", + "hall:killrate_person", + "hall:occupied", + "hall:tsrate", + "hall:warnum", + "hall:winrate" + ] + ], + [ + "【89기】김정은", + 66, + 83, + 13, + "che_event_징병", + [ + 761834, + 156735, + 180992, + 75429, + 62182 + ], + 1, + "543848ac.png?=20250922", + 89, + "che_250925_be9o", + 54, + [ + "chief:12", + "hall:dex1", + "hall:dex2", + "hall:dex3", + "hall:dex5", + "hall:experience", + "hall:killcrew", + "hall:killcrew_person", + "hall:killnum", + "hall:killrate", + "hall:killrate_person", + "hall:occupied", + "hall:tsrate", + "hall:warnum", + "hall:winrate" + ] + ], + [ + "【89기】사스케", + 89, + 60, + 13, + "che_event_징병", + [ + 60239, + 95019, + 119173, + 130406, + 810108 + ], + 1, + "377a21fc.jpg?=20250910", + 89, + "che_250925_be9o", + 61, + [ + "hall:betgold", + "hall:betrate", + "hall:betwin", + "hall:betwingold", + "hall:dex1", + "hall:dex2", + "hall:dex3", + "hall:dex5", + "hall:experience", + "hall:occupied", + "hall:tlrate", + "hall:warnum" + ] + ], + [ + "【89기】강유", + 93, + 15, + 80, + "che_event_환술", + [ + 53276, + 66773, + 35134, + 837083, + 34134 + ], + 1, + "79e150d0.jpg?=20230921", + 89, + "che_250925_be9o", + 64, + [ + "hall:occupied" + ] + ], + [ + "【89기】마요이", + 15, + 76, + 97, + "che_event_의술", + [ + 0, + 0, + 0, + 0, + 0 + ], + 1, + "2b49c945.png?=20230921", + 89, + "che_250925_be9o", + 67, + [ + "hall:dedication", + "hall:tirate" + ] + ], + [ + "【89기】가자에버그레이스", + 82, + 15, + 92, + "che_event_돌격", + [ + 137688, + 101379, + 106112, + 1252649, + 102746 + ], + 1, + "1814ac21.jpg?=20250925", + 89, + "che_250925_be9o", + 68, + [ + "hall:dex1", + "hall:dex4", + "hall:dex5", + "hall:experience", + "hall:killnum", + "hall:winrate" + ] + ], + [ + "【89기】동수칸", + 71, + 91, + 13, + "che_event_무쌍", + [ + 40798, + 1566544, + 43916, + 41311, + 6958 + ], + 1, + "7d6511f5.png?=20250925", + 89, + "che_250925_be9o", + 70, + [ + "hall:betgold", + "hall:betrate", + "hall:betwingold", + "hall:dex2", + "hall:experience", + "hall:killcrew", + "hall:killcrew_person", + "hall:killnum", + "hall:killrate", + "hall:killrate_person", + "hall:tsrate", + "hall:ttrate", + "hall:warnum", + "hall:winrate" + ] + ], + [ + "【89기】인디애나올아메리칸", + 79, + 94, + 15, + "che_event_견고", + [ + 1347268, + 52586, + 55170, + 49808, + 59095 + ], + 1, + "af389ca9.png?=20250925", + 89, + "che_250925_be9o", + 72, + [ + "hall:dex1", + "hall:killcrew", + "hall:killcrew_person", + "hall:killrate", + "hall:killrate_person", + "hall:occupied", + "hall:tsrate" + ] + ], + [ + "【89기】외심장", + 82, + 16, + 91, + "che_event_집중", + [ + 25770, + 119601, + 98568, + 1041335, + 60003 + ], + 1, + "36110cd.jpg?=20180826", + 89, + "che_250925_be9o", + 76, + [ + "hall:dex4", + "hall:ttrate" + ] + ], + [ + "【89기】No way back", + 92, + 79, + 15, + "che_event_필살", + [ + 33997, + 130142, + 919910, + 122769, + 51968 + ], + 1, + "4981f386.png?=20250925", + 89, + "che_250925_be9o", + 77, + [ + "hall:dex2", + "hall:dex3" + ] + ], + [ + "【89기】리노 잭슨", + 78, + 93, + 16, + "che_event_징병", + [ + 44577, + 78603, + 2088623, + 71439, + 80739 + ], + 1, + "f659b165.png?=20250925", + 89, + "che_250925_be9o", + 79, + [ + "chief:11", + "hall:betgold", + "hall:betrate", + "hall:betwingold", + "hall:dex3", + "hall:dex5", + "hall:experience", + "hall:killcrew", + "hall:killcrew_person", + "hall:killnum", + "hall:killrate", + "hall:killrate_person", + "hall:warnum", + "hall:winrate" + ] + ], + [ + "【89기】불패", + 95, + 80, + 15, + "che_event_필살", + [ + 479793, + 18025, + 53431, + 42090, + 18536 + ], + 1, + "88bb8fe0.jpg?=20250911", + 89, + "che_250925_be9o", + 80, + [ + "hall:dex1", + "hall:tlrate", + "hall:ttrate" + ] + ], + [ + "【89기】덕구", + 80, + 93, + 15, + "che_event_위압", + [ + 350701, + 10468, + 7888, + 33918, + 11374 + ], + 0, + "default.jpg", + 89, + "che_250925_be9o", + 81, + [ + "hall:dex1", + "hall:tsrate" + ] + ], + [ + "【89기】bystander", + 78, + 96, + 15, + "che_event_필살", + [ + 40541, + 582727, + 27672, + 70672, + 19891 + ], + 0, + "default.jpg", + 89, + "che_250925_be9o", + 83, + [ + "hall:betwin", + "hall:dex2", + "hall:tsrate" + ] + ], + [ + "【89기】예수게이", + 82, + 15, + 91, + "che_event_필살", + [ + 76578, + 97091, + 109050, + 967557, + 106162 + ], + 1, + "87945db8.jpg?=20250925", + 89, + "che_250925_be9o", + 84, + [ + "hall:dex4", + "hall:dex5" + ] + ], + [ + "【89기】셀레미", + 77, + 15, + 97, + "che_event_필살", + [ + 14296, + 8147, + 6000, + 304297, + 18268 + ], + 1, + "d7b6d83d.jpg?=20250925", + 89, + "che_250925_be9o", + 85, + [ + "hall:killrate_person", + "hall:tirate", + "hall:winrate" + ] + ], + [ + "【89기】알리시아", + 80, + 15, + 93, + "che_event_집중", + [ + 56827, + 45817, + 70788, + 1137038, + 41004 + ], + 0, + "default.jpg", + 89, + "che_250925_be9o", + 86, + [ + "hall:dex4", + "hall:tirate" + ] + ], + [ + "【89기】모히칸", + 82, + 65, + 14, + "che_event_필살", + [ + 15870, + 352068, + 10851, + 39440, + 15816 + ], + 1, + "5aab1dac.jpg?=20250925", + 89, + "che_250925_be9o", + 87, + [ + "hall:betgold", + "hall:betwin", + "hall:betwingold", + "hall:dex2", + "hall:occupied", + "hall:ttrate", + "hall:winrate" + ] + ], + [ + "【89기】네이", + 92, + 15, + 82, + "che_event_의술", + [ + 13076, + 45032, + 14261, + 429945, + 16735 + ], + 0, + "default.jpg", + 89, + "che_250925_be9o", + 89, + [ + "hall:tlrate" + ] + ], + [ + "【89기】?", + 76, + 15, + 99, + "che_event_돌격", + [ + 34980, + 14240, + 18146, + 485482, + 20486 + ], + 1, + "d12c4734.png?=20250928", + 89, + "che_250925_be9o", + 90, + [ + "hall:tirate" + ] + ], + [ + "【89기】다영", + 78, + 70, + 13, + "che_event_징병", + [ + 14823, + 7380, + 181754, + 17115, + 13219 + ], + 1, + "0cda33ad.jpg?=20250925", + 89, + "che_250925_be9o", + 91, + [ + "hall:dedication", + "hall:dex3", + "hall:tlrate" + ] + ], + [ + "【89기】Sase", + 82, + 66, + 14, + "che_event_징병", + [ + 57136, + 65069, + 686162, + 70242, + 32741 + ], + 1, + "6d261e89.jpg?=20250926", + 89, + "che_250925_be9o", + 93, + [ + "hall:betgold", + "hall:betrate", + "hall:betwin", + "hall:betwingold", + "hall:dex1", + "hall:dex3", + "hall:experience", + "hall:killcrew", + "hall:killcrew_person", + "hall:tlrate", + "hall:warnum" + ] + ], + [ + "【89기】징기스칸", + 68, + 81, + 13, + "che_event_돌격", + [ + 791389, + 21733, + 28811, + 36735, + 30218 + ], + 1, + "55c37484.png?=20250925", + 89, + "che_250925_be9o", + 94, + [ + "hall:betgold", + "hall:betrate", + "hall:betwin", + "hall:betwingold", + "hall:dex1", + "hall:killnum", + "hall:killrate", + "hall:tsrate", + "hall:ttrate", + "hall:warnum" + ] + ], + [ + "【89기】삼모노잼", + 74, + 15, + 96, + "che_event_징병", + [ + 17990, + 9967, + 11785, + 247255, + 28406 + ], + 0, + "default.jpg", + 89, + "che_250925_be9o", + 95, + [ + "hall:tirate" + ] + ], + [ + "【89기】제갈여포", + 77, + 15, + 95, + "che_event_필살", + [ + 7108, + 8758, + 26857, + 269600, + 17268 + ], + 0, + "default.jpg", + 89, + "che_250925_be9o", + 97, + [ + "hall:tirate" + ] + ], + [ + "【89기】령리한너구리", + 83, + 92, + 15, + "che_event_필살", + [ + 39392, + 1818295, + 55886, + 57314, + 54163 + ], + 1, + "31dff9dc.png?=20250925", + 89, + "che_250925_be9o", + 98, + [ + "chief:8", + "hall:betgold", + "hall:betwin", + "hall:betwingold", + "hall:dex2", + "hall:killcrew", + "hall:killcrew_person", + "hall:killnum", + "hall:killrate", + "hall:killrate_person", + "hall:ttrate", + "hall:warnum", + "hall:winrate" + ] + ], + [ + "【89기】모모냥", + 71, + 75, + 13, + "che_event_격노", + [ + 55766, + 52390, + 340523, + 61392, + 34048 + ], + 1, + "6b2b55c5.png?=20250926", + 89, + "che_250925_be9o", + 99, + [ + "hall:dex3", + "hall:occupied", + "hall:ttrate" + ] + ], + [ + "【89기】미스티", + 79, + 15, + 93, + "che_event_집중", + [ + 55550, + 76046, + 62360, + 1017268, + 50621 + ], + 1, + "1aadcba.png?=20180908", + 89, + "che_250925_be9o", + 100, + [ + "hall:dex4" + ] + ], + [ + "【89기】에버나이트", + 96, + 78, + 16, + "che_event_척사", + [ + 48707, + 1516480, + 52499, + 84261, + 66259 + ], + 1, + "bf8a5942.jpg?=20250926", + 89, + "che_250925_be9o", + 101, + [ + "chief:10", + "hall:betrate", + "hall:dex2", + "hall:experience", + "hall:tlrate" + ] + ], + [ + "【89기】아폴로", + 80, + 93, + 16, + "che_event_의술", + [ + 346452, + 8218, + 4153, + 33479, + 14464 + ], + 0, + "default.jpg", + 89, + "che_250925_be9o", + 103, + [ + "hall:dex1" + ] + ], + [ + "【89기】최진리", + 95, + 75, + 16, + "che_event_필살", + [ + 66679, + 103861, + 1004624, + 115901, + 116300 + ], + 1, + "c2356432.png?=20250929", + 89, + "che_250925_be9o", + 105, + [ + "hall:betrate", + "hall:dex3", + "hall:dex5", + "hall:tlrate" + ] + ], + [ + "【89기】와일드플라워", + 81, + 15, + 93, + "che_event_집중", + [ + 21392, + 36658, + 15905, + 557919, + 12422 + ], + 0, + "default.jpg", + 89, + "che_250925_be9o", + 109, + [ + "hall:ttrate" + ] + ], + [ + "【89기】넹면", + 79, + 17, + 91, + "che_event_징병", + [ + 86054, + 74192, + 49699, + 1622853, + 79025 + ], + 1, + "405c50cc.webp?=20250929", + 89, + "che_250925_be9o", + 176, + [ + "chief:5", + "hall:betgold", + "hall:betrate", + "hall:betwin", + "hall:betwingold", + "hall:dex4", + "hall:dex5", + "hall:experience", + "hall:killcrew", + "hall:killcrew_person", + "hall:killnum", + "hall:warnum" + ] + ], + [ + "【89기】로비", + 15, + 72, + 99, + "che_event_환술", + [ + 0, + 0, + 0, + 0, + 0 + ], + 1, + "71751125.png?=20240823", + 89, + "che_250925_be9o", + 180, + [ + "hall:dedication", + "hall:experience" + ] + ], + [ + "【89기】주하여친몽골여신", + 17, + 70, + 98, + "che_event_의술", + [ + 0, + 0, + 0, + 0, + 0 + ], + 0, + "default.jpg", + 89, + "che_250925_be9o", + 186, + [ + "hall:dedication" + ] + ], + [ + "【89기】ㅊㄹㅊㄹ", + 76, + 95, + 15, + "che_event_위압", + [ + 13166, + 3121, + 117218, + 6411, + 6833 + ], + 1, + "63f1c106.png?=20230223", + 89, + "che_250925_be9o", + 188, + [ + "hall:betrate", + "hall:betwin", + "hall:tsrate" + ] + ], + [ + "【89기】풍성한 한가위 독구", + 16, + 75, + 96, + "che_event_의술", + [ + 0, + 0, + 0, + 0, + 0 + ], + 1, + "5283daf7.png?=20240511", + 89, + "che_250925_be9o", + 256, + [ + "hall:betwin", + "hall:dedication" + ] + ], + [ + "【89기】카이스트", + 81, + 15, + 92, + "che_event_의술", + [ + 23586, + 13680, + 25012, + 404309, + 1384 + ], + 1, + "e7e27cd6.jpg?=20221125", + 89, + "che_250925_be9o", + 270, + [ + "hall:betrate" + ] + ], + [ + "【89기】돌아온너구리", + 95, + 76, + 16, + "che_event_견고", + [ + 49760, + 55888, + 58671, + 80379, + 1132656 + ], + 1, + "ed33d97a.png?=20251012", + 89, + "che_250925_be9o", + 341, + [ + "chief:6", + "hall:dex5", + "hall:occupied", + "hall:tlrate" + ] + ], + [ + "【90기】슈슈슈슈퍼잼민", + 82, + 93, + 15, + "che_event_돌격", + [ + 1269794, + 20006, + 34707, + 122232, + 54392 + ], + 1, + "7a1d7be1.png?=20251030", + 90, + "che_251030_07JH", + 5, + [ + "hall:betgold", + "hall:betrate", + "hall:betwingold", + "hall:dex1", + "hall:dex5", + "hall:killcrew", + "hall:killnum", + "hall:killrate", + "hall:occupied", + "hall:tsrate", + "hall:warnum", + "hall:winrate" + ] + ], + [ + "【90기】평민킬러", + 79, + 94, + 15, + "che_event_필살", + [ + 1440557, + 28855, + 51396, + 128475, + 50451 + ], + 1, + "4a3cdec0.jpg?=20251030", + 90, + "che_251030_07JH", + 6, + [ + "chief:12", + "hall:betgold", + "hall:betrate", + "hall:betwin", + "hall:betwingold", + "hall:dedication", + "hall:dex1", + "hall:dex5", + "hall:experience", + "hall:killcrew", + "hall:killcrew_person", + "hall:killnum", + "hall:killrate", + "hall:killrate_person", + "hall:occupied", + "hall:tsrate", + "hall:warnum", + "hall:winrate" + ] + ], + [ + "【90기】마제", + 88, + 15, + 83, + "che_event_귀병", + [ + 23606, + 21088, + 7236, + 475706, + 16113 + ], + 0, + "default.jpg", + 90, + "che_251030_07JH", + 8, + [ + "hall:betgold", + "hall:betwin", + "hall:betwingold", + "hall:tlrate", + "hall:winrate" + ] + ], + [ + "【90기】사스케", + 78, + 16, + 94, + "che_event_징병", + [ + 87451, + 49833, + 38337, + 1184080, + 54945 + ], + 1, + "377a21fc.jpg?=20250910", + 90, + "che_251030_07JH", + 11, + [ + "hall:betwin", + "hall:dex4", + "hall:dex5", + "hall:killcrew", + "hall:killcrew_person", + "hall:killnum", + "hall:warnum" + ] + ], + [ + "【90기】Hide_D", + 77, + 15, + 94, + "che_event_척사", + [ + 60929, + 26967, + 2635, + 570802, + 54286 + ], + 1, + "4569d848.png?=20230612", + 90, + "che_251030_07JH", + 13, + [ + "hall:dedication", + "hall:dex5" + ] + ], + [ + "【90기】민트토끼", + 15, + 82, + 88, + "che_event_의술", + [ + 0, + 0, + 0, + 0, + 0 + ], + 1, + "1077b86a.jpg?=20251030", + 90, + "che_251030_07JH", + 15, + [ + "hall:dedication" + ] + ], + [ + "【90기】테호", + 92, + 79, + 15, + "che_event_저격", + [ + 71124, + 689730, + 18444, + 127313, + 27753 + ], + 1, + "3cef5bbe.png?=20251030", + 90, + "che_251030_07JH", + 16, + [ + "hall:dex2", + "hall:tlrate" + ] + ], + [ + "【90기】덕구", + 81, + 89, + 15, + "che_event_무쌍", + [ + 848419, + 30544, + 59182, + 100827, + 26795 + ], + 0, + "default.jpg", + 90, + "che_251030_07JH", + 19, + [ + "hall:dex1", + "hall:dex3" + ] + ], + [ + "【90기】밤", + 80, + 15, + 92, + "che_event_필살", + [ + 49748, + 38472, + 44398, + 834195, + 65841 + ], + 1, + "3a69ab5f.png?=20251111", + 90, + "che_251030_07JH", + 26, + [ + "hall:betgold", + "hall:dex5", + "hall:experience", + "hall:killrate", + "hall:occupied", + "hall:ttrate", + "hall:winrate" + ] + ], + [ + "【90기】병리학적자세", + 77, + 15, + 94, + "che_event_집중", + [ + 50582, + 44876, + 32002, + 668537, + 18589 + ], + 1, + "3679089.jpg?=20180629", + 90, + "che_251030_07JH", + 29, + [ + "hall:betgold", + "hall:betrate", + "hall:betwin", + "hall:betwingold", + "hall:tirate" + ] + ], + [ + "【90기】Carpenter", + 81, + 90, + 15, + "che_event_돌격", + [ + 550582, + 15628, + 66900, + 103807, + 14645 + ], + 0, + "default.jpg", + 90, + "che_251030_07JH", + 30, + [ + "hall:dex1", + "hall:dex3", + "hall:tsrate" + ] + ], + [ + "【90기】마요이", + 15, + 74, + 95, + "che_event_신산", + [ + 0, + 0, + 0, + 0, + 0 + ], + 1, + "2b49c945.png?=20230921", + 90, + "che_251030_07JH", + 32, + [ + "hall:tirate" + ] + ], + [ + "【90기】냥냥냥", + 77, + 91, + 16, + "che_event_필살", + [ + 67970, + 55629, + 748467, + 151362, + 60139 + ], + 1, + "6b2b55c5.png?=20250926", + 90, + "che_251030_07JH", + 35, + [ + "chief:8", + "hall:dedication", + "hall:dex2", + "hall:dex3", + "hall:dex5", + "hall:killrate", + "hall:killrate_person", + "hall:tsrate" + ] + ], + [ + "【90기】와일드플라워", + 77, + 16, + 91, + "che_event_집중", + [ + 34145, + 31805, + 36298, + 967478, + 40488 + ], + 0, + "default.jpg", + 90, + "che_251030_07JH", + 41, + [ + "chief:11", + "hall:dedication", + "hall:dex4", + "hall:experience", + "hall:killrate", + "hall:killrate_person" + ] + ], + [ + "【90기】바나낫", + 80, + 91, + 16, + "che_event_징병", + [ + 955130, + 71481, + 191357, + 146411, + 26817 + ], + 1, + "073c8444.gif?=20251025", + 90, + "che_251030_07JH", + 45, + [ + "hall:dex1", + "hall:dex2", + "hall:dex3", + "hall:killcrew_person", + "hall:tsrate", + "hall:warnum" + ] + ], + [ + "【90기】임사영", + 80, + 16, + 90, + "che_event_필살", + [ + 40274, + 27392, + 71560, + 744546, + 30854 + ], + 1, + "f0c94d4f.jpg?=20250915", + 90, + "che_251030_07JH", + 46, + [ + "hall:dex3", + "hall:ttrate" + ] + ], + [ + "【90기】미스티", + 77, + 17, + 92, + "che_event_환술", + [ + 34784, + 9800, + 11413, + 477801, + 49839 + ], + 1, + "1aadcba.png?=20180908", + 90, + "che_251030_07JH", + 47, + [ + "hall:firenum" + ] + ], + [ + "【90기】서희", + 79, + 16, + 92, + "che_event_징병", + [ + 56169, + 62223, + 20682, + 1173273, + 45455 + ], + 0, + "default.jpg", + 90, + "che_251030_07JH", + 53, + [ + "hall:dex2", + "hall:dex4", + "hall:killcrew", + "hall:killcrew_person", + "hall:killnum", + "hall:warnum" + ] + ], + [ + "【90기】호나", + 79, + 93, + 15, + "che_event_돌격", + [ + 225616, + 63045, + 963976, + 205872, + 66315 + ], + 0, + "default.jpg", + 90, + "che_251030_07JH", + 54, + [ + "chief:10", + "hall:dedication", + "hall:dex2", + "hall:dex3", + "hall:dex5", + "hall:experience", + "hall:killnum", + "hall:killrate", + "hall:killrate_person", + "hall:tsrate", + "hall:winrate" + ] + ], + [ + "【90기】카이스트", + 77, + 15, + 95, + "che_event_집중", + [ + 46094, + 53082, + 24301, + 980767, + 71069 + ], + 1, + "e7e27cd6.jpg?=20221125", + 90, + "che_251030_07JH", + 58, + [ + "chief:9", + "hall:betgold", + "hall:betrate", + "hall:betwin", + "hall:betwingold", + "hall:dedication", + "hall:dex4", + "hall:dex5", + "hall:experience", + "hall:killrate", + "hall:killrate_person", + "hall:occupied", + "hall:tirate" + ] + ], + [ + "【90기】독구", + 78, + 15, + 94, + "che_event_신중", + [ + 38937, + 25486, + 47924, + 1052317, + 23797 + ], + 1, + "c26cbded.png?=20251029", + 90, + "che_251030_07JH", + 59, + [ + "hall:betgold", + "hall:betrate", + "hall:betwin", + "hall:betwingold", + "hall:dex4", + "hall:experience", + "hall:killnum", + "hall:killrate", + "hall:killrate_person", + "hall:occupied", + "hall:winrate" + ] + ], + [ + "【90기】강유", + 91, + 16, + 82, + "che_event_집중", + [ + 72634, + 12751, + 15796, + 1248982, + 29868 + ], + 1, + "79e150d0.jpg?=20230921", + 90, + "che_251030_07JH", + 60, + [ + "hall:betrate", + "hall:dex4", + "hall:killcrew", + "hall:killcrew_person", + "hall:killnum", + "hall:tlrate", + "hall:ttrate", + "hall:warnum", + "hall:winrate" + ] + ], + [ + "【90기】해원", + 90, + 16, + 85, + "che_event_징병", + [ + 77127, + 57044, + 33910, + 1646320, + 25168 + ], + 1, + "1a55c2c1.jpg?=20251030", + 90, + "che_251030_07JH", + 61, + [ + "chief:5", + "hall:dex2", + "hall:dex4", + "hall:experience", + "hall:killcrew", + "hall:killcrew_person", + "hall:killnum", + "hall:warnum" + ] + ], + [ + "【90기】NK", + 93, + 77, + 15, + "che_event_척사", + [ + 896507, + 13631, + 29004, + 202433, + 54257 + ], + 0, + "default.jpg", + 90, + "che_251030_07JH", + 62, + [ + "chief:6", + "hall:dex1", + "hall:dex5", + "hall:experience", + "hall:occupied", + "hall:tlrate" + ] + ], + [ + "【90기】Redbull", + 96, + 74, + 16, + "che_event_돌격", + [ + 64778, + 77734, + 59869, + 70511, + 715924 + ], + 0, + "default.jpg", + 90, + "che_251030_07JH", + 63, + [ + "hall:betrate", + "hall:dex2", + "hall:dex3", + "hall:dex5", + "hall:experience", + "hall:occupied", + "hall:tlrate" + ] + ], + [ + "【90기】제갈량", + 79, + 15, + 93, + "che_event_척사", + [ + 11376, + 20922, + 30641, + 860418, + 33069 + ], + 1, + "7f572ab8.jpg?=20251030", + 90, + "che_251030_07JH", + 64, + [ + "chief:7", + "hall:dedication", + "hall:dex4", + "hall:killrate_person" + ] + ], + [ + "【90기】Sase", + 78, + 17, + 91, + "che_event_환술", + [ + 24240, + 43710, + 36427, + 781563, + 18982 + ], + 1, + "6d261e89.jpg?=20250926", + 90, + "che_251030_07JH", + 65, + [ + "hall:betgold", + "hall:betrate", + "hall:betwin", + "hall:betwingold" + ] + ], + [ + "【90기】영포티", + 95, + 76, + 15, + "che_event_필살", + [ + 1038702, + 14236, + 18962, + 74453, + 35418 + ], + 1, + "1f615248.webp?=20251029", + 90, + "che_251030_07JH", + 66, + [ + "hall:betgold", + "hall:betrate", + "hall:betwin", + "hall:betwingold", + "hall:dex1", + "hall:occupied", + "hall:tlrate" + ] + ], + [ + "【90기】ㅇㅅㅇ", + 82, + 16, + 93, + "che_event_징병", + [ + 18391, + 44703, + 14036, + 1084864, + 16154 + ], + 0, + "default.jpg", + 90, + "che_251030_07JH", + 67, + [ + "hall:dex4", + "hall:killcrew", + "hall:killcrew_person", + "hall:killnum", + "hall:ttrate", + "hall:warnum" + ] + ], + [ + "【90기】불패", + 80, + 92, + 15, + "che_event_필살", + [ + 170755, + 1121337, + 14178, + 100607, + 32792 + ], + 1, + "88bb8fe0.jpg?=20250911", + 90, + "che_251030_07JH", + 68, + [ + "hall:betgold", + "hall:betwingold", + "hall:dex2", + "hall:killcrew", + "hall:killcrew_person", + "hall:killnum", + "hall:killrate", + "hall:killrate_person", + "hall:tsrate", + "hall:winrate" + ] + ], + [ + "【90기】혼마 메이코", + 89, + 81, + 15, + "che_event_위압", + [ + 701900, + 17532, + 14473, + 65349, + 29893 + ], + 1, + "2f7f806a.webp?=20251108", + 90, + "che_251030_07JH", + 69, + [ + "hall:dex1", + "hall:tlrate", + "hall:ttrate" + ] + ], + [ + "【90기】원해", + 94, + 79, + 15, + "che_event_척사", + [ + 824238, + 40569, + 252972, + 127496, + 46049 + ], + 1, + "fd55ff5f.jpg?=20251030", + 90, + "che_251030_07JH", + 70, + [ + "hall:betrate", + "hall:betwingold", + "hall:dex1", + "hall:dex3", + "hall:killcrew", + "hall:killcrew_person", + "hall:occupied", + "hall:tlrate", + "hall:warnum" + ] + ], + [ + "【90기】크리스 범스테드", + 82, + 89, + 15, + "che_event_척사", + [ + 48744, + 53963, + 680603, + 72326, + 17239 + ], + 1, + "16fd65e4.jpg?=20251030", + 90, + "che_251030_07JH", + 71, + [ + "hall:dex2", + "hall:dex3", + "hall:tsrate", + "hall:ttrate" + ] + ], + [ + "【90기】제갈여포", + 92, + 81, + 15, + "che_event_징병", + [ + 1039048, + 22030, + 25839, + 141448, + 12146 + ], + 1, + "e21b5ca3.jpg?=20251031", + 90, + "che_251030_07JH", + 74, + [ + "hall:dex1", + "hall:experience", + "hall:killcrew", + "hall:killcrew_person", + "hall:tlrate", + "hall:warnum" + ] + ], + [ + "【90기】셀레미", + 81, + 15, + 93, + "che_event_집중", + [ + 71164, + 49490, + 20870, + 1005926, + 34095 + ], + 1, + "d7b6d83d.jpg?=20250925", + 90, + "che_251030_07JH", + 77, + [ + "hall:dex4", + "hall:killrate_person", + "hall:tirate" + ] + ], + [ + "【90기】로비", + 15, + 73, + 97, + "che_event_신산", + [ + 0, + 0, + 0, + 0, + 0 + ], + 1, + "71751125.png?=20240823", + 90, + "che_251030_07JH", + 151, + [ + "hall:dedication", + "hall:tirate", + "hall:ttrate" + ] + ], + [ + "【90기】대교", + 89, + 16, + 82, + "che_event_환술", + [ + 84418, + 13875, + 50908, + 804334, + 13026 + ], + 1, + "a53ab5ef.jpg?=20241010", + 90, + "che_251030_07JH", + 160, + [ + "hall:tlrate" + ] + ], + [ + "【90기】조승상", + 80, + 93, + 15, + "che_event_척사", + [ + 26369, + 46579, + 789041, + 115103, + 26373 + ], + 1, + "6f27503f.png?=20240322", + 90, + "che_251030_07JH", + 164, + [ + "hall:dex3", + "hall:tsrate", + "hall:ttrate" + ] + ], + [ + "【90기】돌아온너구리", + 15, + 71, + 98, + "che_event_환술", + [ + 0, + 0, + 0, + 0, + 0 + ], + 1, + "ed33d97a.png?=20251012", + 90, + "che_251030_07JH", + 167, + [ + "hall:tirate" + ] + ], + [ + "【90기】네시", + 79, + 16, + 93, + "che_event_집중", + [ + 64600, + 24300, + 19663, + 581640, + 22810 + ], + 1, + "63f1c106.png?=20230223", + 90, + "che_251030_07JH", + 170, + [ + "hall:betwin", + "hall:tirate", + "hall:ttrate" + ] + ], + [ + "【90기】연구생", + 15, + 75, + 94, + "che_event_집중", + [ + 0, + 0, + 0, + 0, + 0 + ], + 0, + "default.jpg", + 90, + "che_251030_07JH", + 177, + [ + "hall:firenum", + "hall:tirate" + ] + ], + [ + "【90기】최진리", + 77, + 16, + 93, + "che_event_집중", + [ + 25876, + 7044, + 9805, + 691047, + 41251 + ], + 1, + "c2356432.png?=20250929", + 90, + "che_251030_07JH", + 220, + [ + "hall:killrate", + "hall:killrate_person", + "hall:occupied", + "hall:winrate" + ] + ], + [ + "【90기】황혼중", + 78, + 15, + 93, + "che_event_반계", + [ + 9616, + 9990, + 31904, + 496776, + 6365 + ], + 1, + "e5161df9.jpg?=20231110", + 90, + "che_251030_07JH", + 223, + [ + "hall:tirate", + "hall:ttrate" + ] + ], + [ + "【90기】퍄퍄", + 79, + 15, + 92, + "che_event_필살", + [ + 9983, + 10079, + 15460, + 444641, + 9767 + ], + 0, + "default.jpg", + 90, + "che_251030_07JH", + 259, + [ + "hall:tirate", + "hall:winrate" + ] + ], + [ + "【90기】송탄강", + 16, + 88, + 80, + "che_event_견고", + [ + 0, + 0, + 0, + 0, + 0 + ], + 1, + "55516eae.png?=20251102", + 90, + "che_251030_07JH", + 282, + [ + "hall:betwin", + "hall:tsrate" + ] + ], + [ + "【90기】감흥", + 20, + 73, + 87, + "che_event_필살", + [ + 23671, + 318768, + 5507, + 28400, + 9087 + ], + 0, + "default.jpg", + 90, + "che_251030_07JH", + 439, + [ + "hall:dex2" + ] + ], + [ + "【90기】무량공수", + 16, + 71, + 91, + "che_event_신산", + [ + 0, + 0, + 0, + 0, + 0 + ], + 0, + "default.jpg", + 90, + "che_251030_07JH", + 501, + [ + "hall:dedication" + ] + ], + [ + "【91기】정승필", + 77, + 92, + 16, + "che_event_필살", + [ + 43046, + 136512, + 705521, + 74280, + 191063 + ], + 1, + "3f10419c.jpg?=20251128", + 91, + "che_251127_zjtD", + 16, + [ + "chief:12", + "hall:betgold", + "hall:betrate", + "hall:betwin", + "hall:betwingold", + "hall:dedication", + "hall:dex2", + "hall:dex3", + "hall:dex5", + "hall:experience", + "hall:killcrew", + "hall:killcrew_person", + "hall:killnum", + "hall:killrate", + "hall:killrate_person", + "hall:occupied", + "hall:warnum", + "hall:winrate" + ] + ], + [ + "【91기】[속보] 정승필,", + 87, + 80, + 15, + "che_event_필살", + [ + 52793, + 657335, + 18418, + 103642, + 62695 + ], + 1, + "9a6cdd2d.jpg?=20251127", + 91, + "che_251127_zjtD", + 18, + [ + "chief:8", + "hall:dex2", + "hall:dex5", + "hall:killrate", + "hall:killrate_person", + "hall:tlrate", + "hall:winrate" + ] + ], + [ + "【91기】어눌한 시루이 씨", + 17, + 72, + 95, + "che_event_반계", + [ + 0, + 0, + 0, + 0, + 0 + ], + 1, + "f4dfbe9e.jpg?=20251127", + 91, + "che_251127_zjtD", + 21, + [ + "hall:dedication", + "hall:experience", + "hall:tirate" + ] + ], + [ + "【91기】호나", + 78, + 89, + 16, + "che_event_견고", + [ + 40954, + 21997, + 683320, + 115823, + 53454 + ], + 0, + "default.jpg", + 91, + "che_251127_zjtD", + 28, + [ + "hall:dedication", + "hall:dex3", + "hall:killrate", + "hall:killrate_person", + "hall:ttrate" + ] + ], + [ + "【91기】강유", + 89, + 15, + 80, + "che_event_필살", + [ + 42988, + 12984, + 23801, + 499224, + 37315 + ], + 1, + "79e150d0.jpg?=20230921", + 91, + "che_251127_zjtD", + 31, + [ + "hall:dex4", + "hall:tlrate", + "hall:ttrate" + ] + ], + [ + "【91기】카이스트", + 77, + 16, + 91, + "che_event_징병", + [ + 41420, + 4960, + 15016, + 466103, + 52960 + ], + 1, + "e7e27cd6.jpg?=20221125", + 91, + "che_251127_zjtD", + 36, + [ + "hall:betgold", + "hall:betrate", + "hall:betwin", + "hall:betwingold" + ] + ], + [ + "【91기】쉬멜승필", + 95, + 73, + 15, + "che_event_척사", + [ + 8680, + 8405, + 353941, + 29440, + 28022 + ], + 1, + "610a5ece.jpg?=20251127", + 91, + "che_251127_zjtD", + 38, + [ + "chief:6", + "hall:dex3", + "hall:tlrate" + ] + ], + [ + "【91기】바나낫", + 78, + 92, + 15, + "che_event_필살", + [ + 606131, + 30408, + 55397, + 31592, + 30440 + ], + 1, + "073c8444.gif?=20251025", + 91, + "che_251127_zjtD", + 41, + [ + "hall:dex1", + "hall:dex2", + "hall:killnum", + "hall:killrate", + "hall:killrate_person", + "hall:tsrate", + "hall:ttrate", + "hall:winrate" + ] + ], + [ + "【91기】사스케", + 98, + 70, + 16, + "che_event_징병", + [ + 37000, + 26736, + 33711, + 81187, + 934627 + ], + 1, + "377a21fc.jpg?=20250910", + 91, + "che_251127_zjtD", + 44, + [ + "hall:betgold", + "hall:betrate", + "hall:betwin", + "hall:dex5", + "hall:killcrew", + "hall:killcrew_person", + "hall:killnum", + "hall:occupied", + "hall:tlrate", + "hall:warnum" + ] + ], + [ + "【91기】제갈여포", + 80, + 15, + 93, + "che_event_의술", + [ + 16342, + 13090, + 33237, + 783030, + 14726 + ], + 1, + "e21b5ca3.jpg?=20251031", + 91, + "che_251127_zjtD", + 45, + [ + "hall:dex4", + "hall:killcrew", + "hall:killcrew_person", + "hall:killnum", + "hall:tirate", + "hall:warnum" + ] + ], + [ + "【91기】생각없음", + 76, + 16, + 92, + "che_event_신중", + [ + 22935, + 13295, + 8701, + 335517, + 25805 + ], + 0, + "default.jpg", + 91, + "che_251127_zjtD", + 47, + [ + "hall:firenum", + "hall:tirate", + "hall:ttrate" + ] + ], + [ + "【91기】승필호4차발사성공", + 78, + 16, + 89, + "che_event_집중", + [ + 39260, + 6967, + 55700, + 405864, + 51761 + ], + 1, + "7758d458.png?=20251127", + 91, + "che_251127_zjtD", + 49, + [ + "chief:5", + "hall:dedication", + "hall:dex3" + ] + ], + [ + "【91기】Malaren", + 76, + 94, + 15, + "che_event_징병", + [ + 273612, + 332772, + 171809, + 39097, + 9924 + ], + 0, + "default.jpg", + 91, + "che_251127_zjtD", + 50, + [ + "hall:dex1", + "hall:dex2", + "hall:dex3", + "hall:killcrew", + "hall:killcrew_person", + "hall:killnum", + "hall:tsrate", + "hall:warnum" + ] + ], + [ + "【91기】마제", + 77, + 15, + 92, + "che_event_신산", + [ + 2213, + 3137, + 8539, + 295391, + 8138 + ], + 0, + "default.jpg", + 91, + "che_251127_zjtD", + 51, + [ + "hall:betrate", + "hall:tirate" + ] + ], + [ + "【91기】시엘", + 79, + 88, + 15, + "che_event_척사", + [ + 382481, + 99977, + 58179, + 74153, + 21876 + ], + 0, + "default.jpg", + 91, + "che_251127_zjtD", + 56, + [ + "hall:dex1", + "hall:dex2", + "hall:dex3", + "hall:tlrate" + ] + ], + [ + "【91기】병리학적자세", + 80, + 15, + 89, + "che_event_척사", + [ + 49222, + 28362, + 42275, + 812307, + 76957 + ], + 1, + "3679089.jpg?=20180629", + 91, + "che_251127_zjtD", + 59, + [ + "hall:betgold", + "hall:betwin", + "hall:betwingold", + "hall:dex2", + "hall:dex4", + "hall:dex5", + "hall:killcrew", + "hall:killcrew_person", + "hall:killrate", + "hall:killrate_person", + "hall:occupied", + "hall:warnum" + ] + ], + [ + "【91기】커뮤중독자", + 93, + 75, + 16, + "che_event_필살", + [ + 740938, + 5674, + 30478, + 47081, + 43471 + ], + 1, + "eb3caea9.png?=20251127", + 91, + "che_251127_zjtD", + 60, + [ + "hall:betgold", + "hall:betrate", + "hall:betwin", + "hall:betwingold", + "hall:dex1", + "hall:experience", + "hall:killnum", + "hall:killrate", + "hall:killrate_person", + "hall:occupied", + "hall:tlrate", + "hall:winrate" + ] + ], + [ + "【91기】승테이크", + 78, + 15, + 90, + "che_event_환술", + [ + 58428, + 9268, + 40105, + 562622, + 33654 + ], + 1, + "003402de.jpg?=20251127", + 91, + "che_251127_zjtD", + 61, + [ + "chief:7", + "hall:dex4" + ] + ], + [ + "【91기】나다", + 89, + 78, + 15, + "che_event_필살", + [ + 428156, + 3146, + 37574, + 45849, + 28166 + ], + 1, + "8f519725.png?=20251127", + 91, + "che_251127_zjtD", + 63, + [ + "hall:dex1", + "hall:tlrate" + ] + ], + [ + "【91기】네이", + 76, + 16, + 91, + "che_event_필살", + [ + 24341, + 24378, + 36323, + 481890, + 77685 + ], + 0, + "default.jpg", + 91, + "che_251127_zjtD", + 64, + [ + "hall:dex4", + "hall:dex5", + "hall:firenum", + "hall:occupied" + ] + ], + [ + "【91기】정승피리리리?", + 76, + 93, + 15, + "che_event_돌격", + [ + 866791, + 20056, + 36224, + 107911, + 50850 + ], + 1, + "df67603f.jpg?=20251127", + 91, + "che_251127_zjtD", + 66, + [ + "chief:10", + "hall:dedication", + "hall:dex1", + "hall:experience", + "hall:killcrew", + "hall:killcrew_person", + "hall:tsrate", + "hall:warnum" + ] + ], + [ + "【91기】조승상", + 81, + 90, + 16, + "che_event_저격", + [ + 5664, + 1978, + 691958, + 70894, + 6977 + ], + 1, + "f74ef7a0.jpg?=20251209", + 91, + "che_251127_zjtD", + 68, + [ + "hall:dex3", + "hall:killcrew_person", + "hall:killnum", + "hall:tsrate", + "hall:ttrate", + "hall:warnum", + "hall:winrate" + ] + ], + [ + "【91기】명예로운 승필경", + 75, + 15, + 100, + "che_event_돌격", + [ + 62730, + 44183, + 44300, + 1587673, + 64004 + ], + 1, + "a8470d95.jpg?=20251127", + 91, + "che_251127_zjtD", + 69, + [ + "chief:11", + "hall:betgold", + "hall:betrate", + "hall:betwin", + "hall:betwingold", + "hall:dedication", + "hall:dex2", + "hall:dex4", + "hall:dex5", + "hall:experience", + "hall:killcrew", + "hall:killcrew_person", + "hall:killnum", + "hall:killrate", + "hall:killrate_person", + "hall:occupied", + "hall:tirate", + "hall:warnum", + "hall:winrate" + ] + ], + [ + "【91기】NK", + 77, + 15, + 94, + "che_event_필살", + [ + 62097, + 17571, + 47365, + 793153, + 43239 + ], + 0, + "default.jpg", + 91, + "che_251127_zjtD", + 70, + [ + "hall:dex4", + "hall:experience", + "hall:killcrew", + "hall:killcrew_person", + "hall:killnum", + "hall:tirate", + "hall:ttrate", + "hall:warnum", + "hall:winrate" + ] + ], + [ + "【91기】배도변", + 78, + 15, + 90, + "che_event_필살", + [ + 69196, + 13355, + 32587, + 606351, + 58643 + ], + 1, + "31683464.png?=20251127", + 91, + "che_251127_zjtD", + 71, + [ + "hall:dedication", + "hall:dex4", + "hall:dex5", + "hall:experience" + ] + ], + [ + "【91기】승누피", + 75, + 15, + 95, + "che_event_필살", + [ + 66498, + 13871, + 14495, + 799836, + 66222 + ], + 1, + "5e8d16a9.jpg?=20251127", + 91, + "che_251127_zjtD", + 72, + [ + "chief:9", + "hall:betgold", + "hall:betrate", + "hall:betwin", + "hall:betwingold", + "hall:dedication", + "hall:dex4", + "hall:dex5", + "hall:experience", + "hall:killcrew", + "hall:killrate", + "hall:killrate_person", + "hall:occupied", + "hall:winrate" + ] + ], + [ + "【91기】냥냥냥", + 79, + 87, + 16, + "che_event_위압", + [ + 30942, + 4971, + 600798, + 101064, + 46715 + ], + 1, + "6b2b55c5.png?=20250926", + 91, + "che_251127_zjtD", + 74, + [ + "hall:dex3", + "hall:occupied" + ] + ], + [ + "【91기】대교", + 89, + 15, + 81, + "che_event_반계", + [ + 18178, + 8559, + 28215, + 488332, + 22864 + ], + 1, + "a53ab5ef.jpg?=20241010", + 91, + "che_251127_zjtD", + 76, + [ + "hall:dex4", + "hall:experience", + "hall:tlrate" + ] + ], + [ + "【91기】평민킬러", + 76, + 93, + 15, + "che_event_필살", + [ + 514438, + 1353, + 25940, + 72187, + 32840 + ], + 1, + "4a3cdec0.jpg?=20251030", + 91, + "che_251127_zjtD", + 77, + [ + "hall:betgold", + "hall:betwin", + "hall:betwingold", + "hall:dex1", + "hall:occupied", + "hall:tsrate", + "hall:winrate" + ] + ], + [ + "【91기】1210로아시작ㄱ", + 75, + 95, + 15, + "che_event_척사", + [ + 772239, + 10377, + 49788, + 78478, + 39335 + ], + 1, + "8cd01cd8.png?=20251201", + 91, + "che_251127_zjtD", + 78, + [ + "hall:dex1", + "hall:experience", + "hall:killnum", + "hall:killrate", + "hall:killrate_person", + "hall:occupied", + "hall:tsrate", + "hall:winrate" + ] + ], + [ + "【91기】인클라인덤벨프레스", + 78, + 90, + 15, + "che_event_징병", + [ + 60662, + 48187, + 967217, + 57642, + 73738 + ], + 1, + "9329b69c.jpg?=20251127", + 91, + "che_251127_zjtD", + 80, + [ + "hall:betgold", + "hall:betrate", + "hall:betwin", + "hall:betwingold", + "hall:dex2", + "hall:dex3", + "hall:dex5", + "hall:killcrew", + "hall:killcrew_person", + "hall:warnum" + ] + ], + [ + "【91기】와일드플라워", + 77, + 15, + 91, + "che_event_저격", + [ + 9560, + 4652, + 27518, + 436174, + 20498 + ], + 0, + "default.jpg", + 91, + "che_251127_zjtD", + 87, + [ + "hall:killrate", + "hall:killrate_person" + ] + ], + [ + "【91기】카류", + 78, + 16, + 89, + "che_event_집중", + [ + 18066, + 9941, + 12314, + 386611, + 15139 + ], + 0, + "default.jpg", + 91, + "che_251127_zjtD", + 88, + [ + "hall:tirate" + ] + ], + [ + "【91기】레드캡투어", + 77, + 91, + 15, + "che_event_필살", + [ + 427127, + 15912, + 18807, + 44590, + 34083 + ], + 1, + "e8f2075a.png?=20250919", + 91, + "che_251127_zjtD", + 92, + [ + "hall:dedication", + "hall:dex1", + "hall:tsrate" + ] + ], + [ + "【91기】냥냥", + 87, + 16, + 77, + "che_event_집중", + [ + 53567, + 5976, + 36324, + 429828, + 46415 + ], + 1, + "36f2d8b9.jpg?=20251128", + 91, + "che_251127_zjtD", + 173, + [ + "hall:tlrate" + ] + ], + [ + "【91기】ㅊㄹㅊㄹ", + 82, + 87, + 16, + "che_event_견고", + [ + 18877, + 27883, + 695897, + 51482, + 38468 + ], + 1, + "63f1c106.png?=20230223", + 91, + "che_251127_zjtD", + 174, + [ + "hall:dex2", + "hall:dex3", + "hall:tlrate", + "hall:ttrate" + ] + ], + [ + "【91기】최진리", + 75, + 92, + 16, + "che_event_견고", + [ + 311450, + 5061, + 40471, + 31473, + 15776 + ], + 1, + "c2356432.png?=20250929", + 91, + "che_251127_zjtD", + 175, + [ + "hall:dex1", + "hall:tsrate" + ] + ], + [ + "【91기】돌아온너구리", + 15, + 73, + 94, + "che_event_척사", + [ + 0, + 0, + 0, + 0, + 0 + ], + 1, + "ed33d97a.png?=20251012", + 91, + "che_251127_zjtD", + 176, + [ + "hall:dedication", + "hall:tirate" + ] + ], + [ + "【91기】NOV", + 74, + 90, + 15, + "che_event_격노", + [ + 96846, + 12693, + 10292, + 28981, + 62896 + ], + 0, + "default.jpg", + 91, + "che_251127_zjtD", + 187, + [ + "hall:dex5", + "hall:tsrate", + "hall:ttrate" + ] + ], + [ + "【91기】로비", + 16, + 72, + 94, + "che_event_신산", + [ + 0, + 0, + 0, + 0, + 0 + ], + 1, + "71751125.png?=20240823", + 91, + "che_251127_zjtD", + 190, + [ + "hall:firenum", + "hall:tirate" + ] + ], + [ + "【91기】서림동결혼식땅따", + 16, + 88, + 76, + "che_event_필살", + [ + 0, + 0, + 0, + 0, + 0 + ], + 1, + "af10377c.jpg?=20251030", + 91, + "che_251127_zjtD", + 191, + [ + "hall:firenum", + "hall:ttrate" + ] + ], + [ + "【91기】송탄강", + 17, + 86, + 77, + "che_event_견고", + [ + 0, + 0, + 0, + 0, + 0 + ], + 1, + "55516eae.png?=20251102", + 91, + "che_251127_zjtD", + 192, + [ + "hall:betgold", + "hall:betrate", + "hall:betwin", + "hall:betwingold" + ] + ], + [ + "【91기】Aion", + 78, + 89, + 15, + "che_event_징병", + [ + 61717, + 330104, + 30217, + 45111, + 27055 + ], + 1, + "8ef3ffcf.jpg?=20251128", + 91, + "che_251127_zjtD", + 232, + [ + "hall:dex2", + "hall:tsrate", + "hall:ttrate" + ] + ], + [ + "【91기】미스티", + 73, + 15, + 91, + "che_event_환술", + [ + 2214, + 4485, + 3139, + 196095, + 16638 + ], + 1, + "1aadcba.png?=20180908", + 91, + "che_251127_zjtD", + 419, + [ + "hall:tirate" + ] + ], + [ + "【91기】아가공주", + 77, + 15, + 87, + "che_event_필살", + [ + 15231, + 3825, + 14640, + 432641, + 42879 + ], + 1, + "d45031fa.jpg?=20251202", + 91, + "che_251127_zjtD", + 436, + [ + "hall:betrate", + "hall:betwingold" + ] + ], + [ + "【92기】강유", + 91, + 16, + 80, + "che_event_집중", + [ + 36331, + 4293, + 22309, + 710865, + 16965 + ], + 1, + "79e150d0.jpg?=20230921", + 92, + "che_251225_rSL8", + 5, + [ + "hall:killcrew_person", + "hall:tlrate" + ] + ], + [ + "【92기】랑", + 72, + 73, + 13, + "che_event_척사", + [ + 533789, + 5214, + 16157, + 95368, + 27187 + ], + 1, + "54db8000.jpg?=20251225", + 92, + "che_251225_rSL8", + 8, + [ + "hall:betrate", + "hall:betwin", + "hall:dex1" + ] + ], + [ + "【92기】Hide_D", + 78, + 15, + 90, + "che_event_환술", + [ + 31442, + 28674, + 35769, + 409365, + 20079 + ], + 1, + "4569d848.png?=20230612", + 92, + "che_251225_rSL8", + 9, + [ + "hall:tirate", + "hall:ttrate" + ] + ], + [ + "【92기】마제", + 75, + 15, + 95, + "che_event_반계", + [ + 10789, + 2613, + 18846, + 387962, + 22669 + ], + 0, + "default.jpg", + 92, + "che_251225_rSL8", + 10, + [ + "hall:tirate" + ] + ], + [ + "【92기】민트토끼", + 15, + 80, + 87, + "che_event_의술", + [ + 0, + 0, + 0, + 0, + 0 + ], + 1, + "2171ee32.jpg?=20251208", + 92, + "che_251225_rSL8", + 13, + [ + "hall:firenum" + ] + ], + [ + "【92기】병리학적자세", + 80, + 15, + 95, + "che_event_척사", + [ + 64580, + 16466, + 19253, + 1134218, + 28562 + ], + 1, + "3679089.jpg?=20180629", + 92, + "che_251225_rSL8", + 14, + [ + "hall:betgold", + "hall:betwin", + "hall:betwingold", + "hall:dex4", + "hall:killcrew", + "hall:killcrew_person", + "hall:killnum", + "hall:killrate_person", + "hall:tirate", + "hall:warnum" + ] + ], + [ + "【92기】캐럴 부르는 독구", + 15, + 71, + 96, + "che_event_의술", + [ + 0, + 0, + 0, + 0, + 0 + ], + 1, + "5283daf7.png?=20240511", + 92, + "che_251225_rSL8", + 16, + [ + "hall:betrate", + "hall:dedication", + "hall:tirate" + ] + ], + [ + "【92기】외심장", + 80, + 15, + 92, + "che_event_집중", + [ + 18980, + 7913, + 16364, + 450721, + 20682 + ], + 1, + "36110cd.jpg?=20180826", + 92, + "che_251225_rSL8", + 17, + [ + "hall:firenum", + "hall:winrate" + ] + ], + [ + "【92기】전두광", + 81, + 91, + 15, + "che_event_징병", + [ + 997884, + 17361, + 70985, + 121435, + 64767 + ], + 1, + "9c1ffb9f.png?=20251225", + 92, + "che_251225_rSL8", + 20, + [ + "hall:betgold", + "hall:betrate", + "hall:betwingold", + "hall:dex1", + "hall:dex3", + "hall:experience", + "hall:killcrew", + "hall:killcrew_person", + "hall:killnum", + "hall:tsrate", + "hall:warnum" + ] + ], + [ + "【92기】6292", + 15, + 71, + 96, + "che_event_저격", + [ + 0, + 0, + 0, + 0, + 0 + ], + 0, + "default.jpg", + 92, + "che_251225_rSL8", + 22, + [ + "hall:dedication", + "hall:tirate" + ] + ], + [ + "【92기】NK", + 95, + 75, + 15, + "che_event_필살", + [ + 880284, + 48883, + 71495, + 183058, + 44336 + ], + 0, + "default.jpg", + 92, + "che_251225_rSL8", + 24, + [ + "hall:dex1", + "hall:dex2", + "hall:dex3", + "hall:tlrate", + "hall:warnum" + ] + ], + [ + "【92기】평민킬러", + 66, + 84, + 13, + "che_event_필살", + [ + 775261, + 4136, + 15782, + 29291, + 15760 + ], + 1, + "4a3cdec0.jpg?=20251030", + 92, + "che_251225_rSL8", + 25, + [ + "hall:betgold", + "hall:betwin", + "hall:betwingold", + "hall:dex1", + "hall:experience", + "hall:killcrew", + "hall:killcrew_person", + "hall:killnum", + "hall:killrate", + "hall:killrate_person", + "hall:occupied", + "hall:tsrate", + "hall:warnum", + "hall:winrate" + ] + ], + [ + "【92기】임사영", + 78, + 92, + 15, + "che_event_의술", + [ + 719442, + 23744, + 58563, + 81606, + 68200 + ], + 1, + "918d304e.jpg?=20251209", + 92, + "che_251225_rSL8", + 28, + [ + "hall:occupied", + "hall:tsrate", + "hall:ttrate" + ] + ], + [ + "【92기】타치바나히나노", + 78, + 16, + 89, + "che_event_환술", + [ + 48132, + 6836, + 14810, + 532885, + 70300 + ], + 1, + "c033385a.jpg?=20250626", + 92, + "che_251225_rSL8", + 30, + [ + "hall:dex5" + ] + ], + [ + "【92기】바나낫", + 80, + 90, + 15, + "che_event_징병", + [ + 96380, + 340910, + 531391, + 107430, + 80118 + ], + 1, + "073c8444.gif?=20251025", + 92, + "che_251225_rSL8", + 32, + [ + "hall:dex2", + "hall:dex3", + "hall:dex5" + ] + ], + [ + "【92기】...", + 80, + 89, + 15, + "che_event_위압", + [ + 24191, + 20184, + 736170, + 71154, + 20939 + ], + 0, + "default.jpg", + 92, + "che_251225_rSL8", + 33, + [ + "hall:dex3", + "hall:killrate", + "hall:killrate_person", + "hall:tsrate", + "hall:ttrate" + ] + ], + [ + "【92기】92년생 숏컷빅맘", + 91, + 76, + 16, + "che_event_필살", + [ + 928051, + 37784, + 54603, + 125352, + 47275 + ], + 1, + "8a1cf65e.png?=20260112", + 92, + "che_251225_rSL8", + 34, + [ + "hall:dex1", + "hall:dex2", + "hall:killcrew", + "hall:killnum", + "hall:killrate", + "hall:killrate_person", + "hall:tlrate", + "hall:warnum", + "hall:winrate" + ] + ], + [ + "【92기】퍄퍄", + 79, + 90, + 15, + "che_event_척사", + [ + 90664, + 21884, + 578796, + 63630, + 48702 + ], + 0, + "default.jpg", + 92, + "che_251225_rSL8", + 35, + [ + "hall:dex3", + "hall:tsrate" + ] + ], + [ + "【92기】슬라임", + 85, + 60, + 13, + "che_event_공성", + [ + 84438, + 1417, + 4346, + 37914, + 442982 + ], + 1, + "32482755.jpg?=20251229", + 92, + "che_251225_rSL8", + 37, + [ + "hall:betwingold", + "hall:dedication", + "hall:dex5", + "hall:experience", + "hall:killcrew", + "hall:killrate", + "hall:occupied", + "hall:tlrate" + ] + ], + [ + "【92기】불패", + 77, + 93, + 15, + "che_event_위압", + [ + 930806, + 4610, + 53877, + 99384, + 53571 + ], + 1, + "f08fdbc4.jpg?=20251208", + 92, + "che_251225_rSL8", + 38, + [ + "chief:8", + "hall:dex1", + "hall:experience", + "hall:killnum", + "hall:occupied", + "hall:tsrate", + "hall:warnum" + ] + ], + [ + "【92기】로비", + 15, + 72, + 96, + "che_event_의술", + [ + 0, + 0, + 0, + 0, + 0 + ], + 1, + "71751125.png?=20240823", + 92, + "che_251225_rSL8", + 39, + [ + "hall:dedication", + "hall:experience" + ] + ], + [ + "【92기】단결독", + 92, + 76, + 15, + "che_event_필살", + [ + 1062148, + 14353, + 53284, + 157585, + 62593 + ], + 1, + "0e6a0d50.png?=20251224", + 92, + "che_251225_rSL8", + 40, + [ + "hall:betwin", + "hall:betwingold", + "hall:dex1", + "hall:killcrew", + "hall:killcrew_person", + "hall:killnum", + "hall:killrate", + "hall:killrate_person", + "hall:occupied", + "hall:tlrate", + "hall:winrate" + ] + ], + [ + "【92기】독구", + 78, + 15, + 92, + "che_event_집중", + [ + 83303, + 23931, + 33320, + 837643, + 65746 + ], + 1, + "0ee99cd7.jpg?=20260110", + 92, + "che_251225_rSL8", + 41, + [ + "chief:11", + "hall:betrate", + "hall:dedication", + "hall:dex4", + "hall:experience", + "hall:killrate", + "hall:occupied", + "hall:winrate" + ] + ], + [ + "【92기】루돌프", + 79, + 93, + 15, + "che_event_격노", + [ + 198498, + 23137, + 687621, + 117447, + 40455 + ], + 1, + "7b3177da.jpg?=20260110", + 92, + "che_251225_rSL8", + 42, + [ + "hall:betgold", + "hall:betrate", + "hall:betwingold", + "hall:dex3", + "hall:killnum", + "hall:tsrate", + "hall:ttrate", + "hall:winrate" + ] + ], + [ + "【92기】UMP9", + 65, + 13, + 77, + "che_event_환술", + [ + 31468, + 5400, + 18410, + 329407, + 21416 + ], + 1, + "676a8b92.png?=20260102", + 92, + "che_251225_rSL8", + 43, + [ + "hall:tirate" + ] + ], + [ + "【92기】카이스트", + 77, + 16, + 93, + "che_event_필살", + [ + 67324, + 25429, + 24182, + 699029, + 32816 + ], + 1, + "e7e27cd6.jpg?=20221125", + 92, + "che_251225_rSL8", + 44, + [ + "hall:betgold", + "hall:betrate", + "hall:betwin", + "hall:betwingold", + "hall:winrate" + ] + ], + [ + "【92기】네이", + 88, + 15, + 82, + "che_event_필살", + [ + 57641, + 13183, + 37995, + 793288, + 23269 + ], + 0, + "default.jpg", + 92, + "che_251225_rSL8", + 45, + [ + "hall:betrate", + "hall:dex4" + ] + ], + [ + "【92기】수장", + 76, + 94, + 15, + "che_event_필살", + [ + 989048, + 16947, + 42706, + 112117, + 76484 + ], + 1, + "d5a062b8.jpg?=20251225", + 92, + "che_251225_rSL8", + 46, + [ + "chief:12", + "hall:dedication", + "hall:dex1", + "hall:dex5", + "hall:experience", + "hall:killcrew", + "hall:killrate", + "hall:killrate_person", + "hall:occupied", + "hall:tsrate" + ] + ], + [ + "【92기】Sase", + 78, + 15, + 92, + "che_event_필살", + [ + 36343, + 7929, + 22139, + 795787, + 79042 + ], + 1, + "a6b9efd6.jpg?=20260112", + 92, + "che_251225_rSL8", + 48, + [ + "hall:betgold", + "hall:betrate", + "hall:betwin", + "hall:betwingold", + "hall:dex4", + "hall:dex5", + "hall:killrate", + "hall:killrate_person" + ] + ], + [ + "【92기】제갈여포", + 78, + 90, + 16, + "che_event_필살", + [ + 762993, + 12555, + 32460, + 143929, + 39133 + ], + 1, + "e21b5ca3.jpg?=20251031", + 92, + "che_251225_rSL8", + 49, + [ + "hall:betgold", + "hall:tsrate" + ] + ], + [ + "【92기】사스케", + 94, + 13, + 60, + "che_event_징병", + [ + 76586, + 44017, + 101335, + 103905, + 1439405 + ], + 1, + "377a21fc.jpg?=20250910", + 92, + "che_251225_rSL8", + 50, + [ + "hall:betgold", + "hall:betwin", + "hall:betwingold", + "hall:dex2", + "hall:dex3", + "hall:dex5", + "hall:experience", + "hall:firenum", + "hall:killcrew", + "hall:killcrew_person", + "hall:killnum", + "hall:killrate", + "hall:killrate_person", + "hall:occupied", + "hall:tlrate", + "hall:warnum", + "hall:winrate" + ] + ], + [ + "【92기】노르딕햄스트링컬", + 81, + 15, + 89, + "che_event_저격", + [ + 64503, + 29854, + 47233, + 654937, + 26553 + ], + 1, + "6c1fec6e.jpg?=20251226", + 92, + "che_251225_rSL8", + 51, + [ + "hall:betgold", + "hall:betwingold" + ] + ], + [ + "【92기】세울타코", + 77, + 15, + 95, + "che_event_집중", + [ + 66895, + 4835, + 26082, + 975446, + 41846 + ], + 0, + "default.jpg", + 92, + "che_251225_rSL8", + 52, + [ + "chief:7", + "hall:dex4", + "hall:experience", + "hall:killcrew", + "hall:killcrew_person", + "hall:killnum", + "hall:killrate", + "hall:killrate_person", + "hall:occupied", + "hall:tirate", + "hall:winrate" + ] + ], + [ + "【92기】수행", + 77, + 87, + 20, + "che_event_격노", + [ + 13757, + 1556, + 64269, + 27490, + 6444 + ], + 0, + "default.jpg", + 92, + "che_251225_rSL8", + 53, + [ + "hall:dex3", + "hall:ttrate" + ] + ], + [ + "【92기】간지밍이", + 79, + 15, + 91, + "che_event_필살", + [ + 29063, + 27330, + 49158, + 766606, + 34792 + ], + 1, + "2565fc24.png?=20250705", + 92, + "che_251225_rSL8", + 54, + [ + "hall:betwin", + "hall:dex4", + "hall:killnum", + "hall:killrate_person", + "hall:winrate" + ] + ], + [ + "【92기】쌀숭이", + 80, + 15, + 91, + "che_event_환술", + [ + 56883, + 11547, + 38102, + 777244, + 16662 + ], + 1, + "a57b3afe.png?=20251227", + 92, + "che_251225_rSL8", + 56, + [ + "hall:dex4" + ] + ], + [ + "【92기】메종독구네", + 15, + 71, + 94, + "che_event_의술", + [ + 0, + 0, + 0, + 0, + 0 + ], + 1, + "02dc3a91.gif?=20231019", + 92, + "che_251225_rSL8", + 61, + [ + "hall:dedication", + "hall:tirate" + ] + ], + [ + "【92기】92년생 김지영", + 76, + 15, + 93, + "che_event_환술", + [ + 134031, + 13385, + 17620, + 477695, + 43505 + ], + 0, + "default.jpg", + 92, + "che_251225_rSL8", + 62, + [ + "hall:tirate" + ] + ], + [ + "【92기】셀레미", + 83, + 15, + 87, + "che_event_반계", + [ + 83901, + 15777, + 29023, + 708801, + 84672 + ], + 1, + "f71ab1e2.jpg?=20260105", + 92, + "che_251225_rSL8", + 71, + [ + "hall:dex5", + "hall:ttrate" + ] + ], + [ + "【92기】대교", + 91, + 15, + 77, + "che_event_집중", + [ + 114881, + 86017, + 52487, + 1071187, + 45680 + ], + 1, + "a53ab5ef.jpg?=20241010", + 92, + "che_251225_rSL8", + 72, + [ + "hall:dex2", + "hall:dex4", + "hall:killcrew", + "hall:killcrew_person", + "hall:tlrate", + "hall:warnum" + ] + ], + [ + "【92기】Jeju", + 93, + 78, + 15, + "che_event_격노", + [ + 867613, + 31939, + 34150, + 98502, + 68636 + ], + 0, + "default.jpg", + 92, + "che_251225_rSL8", + 73, + [ + "hall:betrate", + "hall:dex1", + "hall:dex2", + "hall:killcrew_person", + "hall:occupied", + "hall:tlrate", + "hall:warnum" + ] + ], + [ + "【92기】92년생 앵지영", + 94, + 73, + 15, + "che_event_저격", + [ + 87744, + 180635, + 592625, + 116298, + 69505 + ], + 1, + "eac3900e.jpg?=20260107", + 92, + "che_251225_rSL8", + 74, + [ + "hall:dex2", + "hall:dex3", + "hall:dex5", + "hall:tlrate" + ] + ], + [ + "【92기】최진리", + 79, + 15, + 90, + "che_event_징병", + [ + 57730, + 19497, + 17537, + 784324, + 79690 + ], + 1, + "c2356432.png?=20250929", + 92, + "che_251225_rSL8", + 76, + [ + "chief:9", + "hall:betrate", + "hall:dex4", + "hall:dex5" + ] + ], + [ + "【92기】마요이", + 16, + 73, + 96, + "che_event_신중", + [ + 0, + 0, + 0, + 0, + 0 + ], + 1, + "2b49c945.png?=20230921", + 92, + "che_251225_rSL8", + 77, + [ + "hall:dedication", + "hall:tirate", + "hall:ttrate" + ] + ], + [ + "【92기】세종의종신파딱", + 77, + 16, + 90, + "che_event_징병", + [ + 113747, + 39500, + 68010, + 1045823, + 31015 + ], + 0, + "default.jpg", + 92, + "che_251225_rSL8", + 79, + [ + "hall:dex2", + "hall:dex3", + "hall:dex4", + "hall:killcrew_person", + "hall:ttrate", + "hall:warnum" + ] + ], + [ + "【92기】ㅊㄹㅊㄹ", + 80, + 89, + 15, + "che_event_의술", + [ + 108924, + 634682, + 15284, + 89944, + 60751 + ], + 1, + "63f1c106.png?=20230223", + 92, + "che_251225_rSL8", + 168, + [ + "chief:6", + "hall:betwin", + "hall:dex2", + "hall:tsrate" + ] + ], + [ + "【92기】나야, 청솔모", + 91, + 76, + 15, + "che_event_징병", + [ + 309318, + 6067, + 32149, + 73692, + 59228 + ], + 1, + "c0d11deb.jpg?=20260114", + 92, + "che_251225_rSL8", + 187, + [ + "hall:tlrate", + "hall:ttrate" + ] + ], + [ + "【92기】황혼중", + 15, + 85, + 84, + "che_event_필살", + [ + 0, + 0, + 0, + 0, + 0 + ], + 1, + "e5161df9.jpg?=20231110", + 92, + "che_251225_rSL8", + 190, + [ + "hall:ttrate" + ] + ], + [ + "【92기】로즈", + 15, + 75, + 91, + "che_event_필살", + [ + 0, + 0, + 0, + 0, + 0 + ], + 1, + "4e69b2de.png?=20251226", + 92, + "che_251225_rSL8", + 229, + [ + "hall:dedication" + ] + ], + [ + "【92기】도화가", + 79, + 16, + 87, + "che_event_징병", + [ + 92667, + 7401, + 31844, + 619961, + 78221 + ], + 1, + "af10377c.jpg?=20251030", + 92, + "che_251225_rSL8", + 240, + [ + "chief:5", + "hall:dex5" + ] + ], + [ + "【92기】이밤의끝을잡고", + 90, + 75, + 15, + "che_event_견고", + [ + 512135, + 49530, + 41676, + 117001, + 38443 + ], + 0, + "default.jpg", + 92, + "che_251225_rSL8", + 279, + [ + "hall:dex2" + ] + ], + [ + "【92기】배가고픈개", + 79, + 89, + 16, + "che_event_징병", + [ + 795547, + 8766, + 45473, + 108843, + 67583 + ], + 1, + "42f05383.jpg?=20260110", + 92, + "che_251225_rSL8", + 293, + [ + "chief:10", + "hall:dex1", + "hall:experience" + ] + ], + [ + "【92기】송탄강", + 16, + 85, + 80, + "che_event_위압", + [ + 0, + 0, + 0, + 0, + 0 + ], + 1, + "55516eae.png?=20251102", + 92, + "che_251225_rSL8", + 298, + [ + "hall:betgold", + "hall:betwin" + ] + ], + [ + "【92기】재야", + 16, + 75, + 90, + "che_event_신중", + [ + 0, + 0, + 2600, + 12322, + 2340 + ], + 0, + "default.jpg", + 92, + "che_251225_rSL8", + 430, + [ + "hall:dedication" + ] + ], + [ + "【93기】카이스트", + 76, + 15, + 85, + "che_event_집중", + [ + 14080, + 17699, + 8444, + 229192, + 11120 + ], + 1, + "e7e27cd6.jpg?=20221125", + 93, + "che_260122_rB5D", + 3, + [ + "hall:dex2", + "hall:dex4" + ] + ], + [ + "【93기】냥냥의오른팔", + 73, + 15, + 88, + "che_event_징병", + [ + 464, + 168, + 1849, + 88178, + 17325 + ], + 1, + "8fe5c762.png?=20260124", + 93, + "che_260122_rB5D", + 6, + [ + "chief:5", + "hall:betgold", + "hall:betrate", + "hall:betwingold", + "hall:dedication", + "hall:tirate" + ] + ], + [ + "【93기】냥냥", + 74, + 15, + 87, + "che_event_집중", + [ + 13541, + 2856, + 10568, + 174738, + 36361 + ], + 1, + "f2f7443f.png?=20260201", + 93, + "che_260122_rB5D", + 8, + [ + "chief:12", + "hall:betrate", + "hall:betwingold", + "hall:dedication", + "hall:dex4", + "hall:dex5", + "hall:experience", + "hall:occupied", + "hall:tirate" + ] + ], + [ + "【93기】병리학적자세", + 72, + 15, + 91, + "che_event_신중", + [ + 6114, + 1470, + 2334, + 146357, + 21322 + ], + 0, + "default.jpg", + 93, + "che_260122_rB5D", + 9, + [ + "chief:9", + "hall:betgold", + "hall:betrate", + "hall:betwin", + "hall:betwingold", + "hall:dedication", + "hall:experience", + "hall:occupied", + "hall:tirate" + ] + ], + [ + "【93기】그런스핔이필요하다", + 15, + 73, + 88, + "che_event_척사", + [ + 0, + 0, + 0, + 0, + 0 + ], + 1, + "c091fade.jpg?=20260120", + 93, + "che_260122_rB5D", + 15, + [ + "hall:tirate" + ] + ], + [ + "【93기】긁혔냥", + 92, + 70, + 15, + "che_event_공성", + [ + 31647, + 0, + 4095, + 5463, + 444332 + ], + 1, + "35103a54.png?=20260122", + 93, + "che_260122_rB5D", + 17, + [ + "chief:10", + "hall:betwin", + "hall:dedication", + "hall:dex5", + "hall:experience", + "hall:killcrew", + "hall:killrate", + "hall:occupied", + "hall:tlrate", + "hall:winrate" + ] + ], + [ + "【93기】미스티", + 73, + 16, + 88, + "che_event_집중", + [ + 1677, + 153, + 441, + 47190, + 2626 + ], + 1, + "1aadcba.png?=20180908", + 93, + "che_260122_rB5D", + 18, + [ + "hall:winrate" + ] + ], + [ + "【93기】임사영", + 89, + 72, + 15, + "che_event_필살", + [ + 234959, + 351, + 8219, + 16499, + 22777 + ], + 1, + "918d304e.jpg?=20251209", + 93, + "che_260122_rB5D", + 20, + [ + "hall:dex1", + "hall:experience", + "hall:killrate", + "hall:killrate_person", + "hall:occupied", + "hall:tlrate", + "hall:winrate" + ] + ], + [ + "【93기】바나낫", + 92, + 71, + 15, + "che_event_필살", + [ + 50382, + 16749, + 18319, + 40042, + 389484 + ], + 1, + "073c8444.gif?=20251025", + 93, + "che_260122_rB5D", + 21, + [ + "hall:dex5", + "hall:killcrew", + "hall:killcrew_person", + "hall:killnum", + "hall:tlrate", + "hall:ttrate", + "hall:warnum" + ] + ], + [ + "【93기】강유", + 87, + 15, + 73, + "che_event_반계", + [ + 5155, + 17353, + 1680, + 181620, + 13305 + ], + 1, + "79e150d0.jpg?=20230921", + 93, + "che_260122_rB5D", + 23, + [ + "hall:dex2", + "hall:dex4", + "hall:occupied" + ] + ], + [ + "【93기】Hide_D", + 73, + 15, + 89, + "che_event_저격", + [ + 2413, + 989, + 1622, + 94321, + 9576 + ], + 1, + "4569d848.png?=20230612", + 93, + "che_260122_rB5D", + 26, + [ + "hall:tirate", + "hall:ttrate" + ] + ], + [ + "【93기】리퍼", + 84, + 73, + 16, + "che_event_징병", + [ + 266326, + 14138, + 27031, + 47148, + 36651 + ], + 1, + "a24fd9d6.jpg?=20260122", + 93, + "che_260122_rB5D", + 30, + [ + "hall:dex1", + "hall:dex5", + "hall:warnum" + ] + ], + [ + "【93기】끼에에에엑!!!", + 84, + 15, + 75, + "che_event_필살", + [ + 27822, + 9392, + 16446, + 252902, + 11187 + ], + 1, + "7279dc2d.jpg?=20260122", + 93, + "che_260122_rB5D", + 31, + [ + "hall:dex4" + ] + ], + [ + "【93기】코트디부아르", + 17, + 71, + 87, + "che_event_징병", + [ + 0, + 0, + 0, + 0, + 0 + ], + 1, + "b2866d2c.png?=20260122", + 93, + "che_260122_rB5D", + 32, + [ + "hall:ttrate" + ] + ], + [ + "【93기】륜", + 75, + 87, + 16, + "che_event_기병", + [ + 2741, + 5385, + 141987, + 7042, + 11362 + ], + 1, + "1ff5947f.png?=20260131", + 93, + "che_260122_rB5D", + 35, + [ + "hall:betgold", + "hall:betrate", + "hall:betwin", + "hall:betwingold", + "hall:dex3" + ] + ], + [ + "【93기】퍄퍄", + 73, + 89, + 15, + "che_event_필살", + [ + 4107, + 6994, + 126494, + 16710, + 8920 + ], + 0, + "default.jpg", + 93, + "che_260122_rB5D", + 36, + [ + "hall:dex3", + "hall:tsrate" + ] + ], + [ + "【93기】ZETA", + 74, + 85, + 17, + "che_event_필살", + [ + 224898, + 3182, + 6394, + 22450, + 21042 + ], + 0, + "default.jpg", + 93, + "che_260122_rB5D", + 37, + [ + "hall:dex1" + ] + ], + [ + "【93기】아라야", + 76, + 85, + 15, + "che_event_견고", + [ + 266872, + 7145, + 22808, + 27472, + 23060 + ], + 0, + "default.jpg", + 93, + "che_260122_rB5D", + 38, + [ + "hall:dex1", + "hall:killnum", + "hall:tlrate", + "hall:ttrate", + "hall:warnum" + ] + ], + [ + "【93기】냥뇽녕냥", + 76, + 87, + 15, + "che_event_필살", + [ + 18613, + 120341, + 185118, + 7735, + 25040 + ], + 1, + "67043db1.jpg?=20260120", + 93, + "che_260122_rB5D", + 39, + [ + "chief:8", + "hall:betgold", + "hall:betwin", + "hall:dedication", + "hall:dex2", + "hall:dex3", + "hall:dex5", + "hall:experience", + "hall:killcrew", + "hall:killcrew_person", + "hall:killnum", + "hall:killrate", + "hall:killrate_person", + "hall:occupied", + "hall:warnum", + "hall:winrate" + ] + ], + [ + "【93기】그숙련에잠이오냥", + 72, + 91, + 15, + "che_event_필살", + [ + 181577, + 2364, + 5587, + 21050, + 17894 + ], + 1, + "39b9f3b3.png?=20260122", + 93, + "che_260122_rB5D", + 42, + [ + "chief:6", + "hall:betgold", + "hall:betrate", + "hall:betwin", + "hall:betwingold", + "hall:dedication", + "hall:dex1", + "hall:killrate", + "hall:killrate_person", + "hall:tsrate", + "hall:winrate" + ] + ], + [ + "【93기】동냥", + 74, + 15, + 88, + "che_event_집중", + [ + 1023, + 3191, + 4049, + 129519, + 28178 + ], + 1, + "decfbf9e.png?=20260121", + 93, + "che_260122_rB5D", + 46, + [ + "chief:7", + "hall:dedication", + "hall:dex5", + "hall:experience", + "hall:occupied", + "hall:tirate", + "hall:ttrate" + ] + ], + [ + "【93기】빠른94", + 74, + 89, + 15, + "che_event_필살", + [ + 20423, + 121549, + 268, + 12606, + 14304 + ], + 0, + "default.jpg", + 93, + "che_260122_rB5D", + 54, + [ + "hall:betgold", + "hall:betwingold", + "hall:dex2", + "hall:tsrate" + ] + ], + [ + "【93기】제갈여포", + 74, + 16, + 87, + "che_event_반계", + [ + 9299, + 18496, + 21633, + 261516, + 7075 + ], + 1, + "e21b5ca3.jpg?=20251031", + 93, + "che_260122_rB5D", + 55, + [ + "hall:dex2", + "hall:dex4", + "hall:killcrew", + "hall:killcrew_person", + "hall:killnum", + "hall:tirate", + "hall:warnum" + ] + ], + [ + "【93기】ㅊㄹㅊㄹ", + 75, + 87, + 16, + "che_event_견고", + [ + 3517, + 10713, + 160070, + 5655, + 11612 + ], + 1, + "63f1c106.png?=20230223", + 93, + "che_260122_rB5D", + 56, + [ + "hall:dex3", + "hall:tlrate", + "hall:tsrate" + ] + ], + [ + "【93기】주하", + 83, + 73, + 17, + "che_event_필살", + [ + 33583, + 0, + 0, + 569, + 7935 + ], + 0, + "default.jpg", + 93, + "che_260122_rB5D", + 58, + [ + "hall:occupied", + "hall:tlrate", + "hall:ttrate" + ] + ], + [ + "【93기】송탄강", + 85, + 16, + 74, + "che_event_귀병", + [ + 11594, + 16941, + 5569, + 114372, + 7902 + ], + 1, + "55516eae.png?=20251102", + 93, + "che_260122_rB5D", + 59, + [ + "hall:betgold", + "hall:betwin", + "hall:dex2" + ] + ], + [ + "【93기】조승상", + 73, + 90, + 15, + "che_event_필살", + [ + 7826, + 22382, + 335109, + 36649, + 26111 + ], + 1, + "676a8b92.png?=20260102", + 93, + "che_260122_rB5D", + 60, + [ + "hall:dex2", + "hall:dex3", + "hall:dex5", + "hall:killcrew", + "hall:killcrew_person", + "hall:killnum", + "hall:killrate", + "hall:killrate_person", + "hall:tsrate", + "hall:warnum", + "hall:winrate" + ] + ], + [ + "【93기】서희", + 87, + 15, + 74, + "che_event_반계", + [ + 5377, + 3562, + 10587, + 230956, + 7212 + ], + 0, + "default.jpg", + 93, + "che_260122_rB5D", + 61, + [ + "hall:dex4" + ] + ], + [ + "【93기】세르카", + 74, + 15, + 89, + "che_event_환술", + [ + 8435, + 24585, + 11903, + 428273, + 37449 + ], + 1, + "a2dd94b2.png?=20260122", + 93, + "che_260122_rB5D", + 62, + [ + "hall:dex2", + "hall:dex4", + "hall:dex5", + "hall:experience", + "hall:killcrew", + "hall:killcrew_person", + "hall:killnum", + "hall:killrate", + "hall:killrate_person", + "hall:occupied", + "hall:tirate", + "hall:ttrate", + "hall:warnum", + "hall:winrate" + ] + ], + [ + "【93기】NK", + 90, + 73, + 15, + "che_event_돌격", + [ + 599399, + 15618, + 21393, + 114712, + 21544 + ], + 0, + "default.jpg", + 93, + "che_260122_rB5D", + 63, + [ + "hall:betrate", + "hall:dex1", + "hall:experience", + "hall:killcrew", + "hall:killcrew_person", + "hall:killnum", + "hall:killrate_person", + "hall:tlrate", + "hall:ttrate", + "hall:warnum", + "hall:winrate" + ] + ], + [ + "【93기】Sase", + 74, + 15, + 89, + "che_event_필살", + [ + 5093, + 8950, + 8550, + 215249, + 17152 + ], + 1, + "21f1f418.jpg?=20260120", + 93, + "che_260122_rB5D", + 64, + [ + "hall:betgold", + "hall:betrate", + "hall:betwin", + "hall:betwingold", + "hall:dex4", + "hall:tirate" + ] + ], + [ + "【93기】삼모쉬었음", + 76, + 15, + 84, + "che_event_집중", + [ + 2954, + 13679, + 8438, + 224936, + 19073 + ], + 0, + "default.jpg", + 93, + "che_260122_rB5D", + 65, + [ + "hall:dex4" + ] + ], + [ + "【93기】스핔이", + 87, + 73, + 16, + "che_event_격노", + [ + 324848, + 7247, + 9103, + 41460, + 6627 + ], + 1, + "3889b4e4.gif?=20260124", + 93, + "che_260122_rB5D", + 66, + [ + "hall:betgold", + "hall:betrate", + "hall:betwin", + "hall:betwingold", + "hall:dex1", + "hall:killcrew", + "hall:killcrew_person", + "hall:killnum", + "hall:tlrate", + "hall:warnum" + ] + ], + [ + "【93기】불패", + 73, + 89, + 15, + "che_event_저격", + [ + 212549, + 4759, + 65296, + 28931, + 21618 + ], + 1, + "f08fdbc4.jpg?=20251208", + 93, + "che_260122_rB5D", + 67, + [ + "hall:dex1", + "hall:dex3", + "hall:killcrew", + "hall:killcrew_person", + "hall:killrate", + "hall:killrate_person", + "hall:tsrate", + "hall:ttrate" + ] + ], + [ + "【93기】나는해고", + 73, + 87, + 15, + "che_event_위압", + [ + 69602, + 711, + 100389, + 8090, + 24353 + ], + 1, + "d2db0281.png?=20260126", + 93, + "che_260122_rB5D", + 69, + [ + "hall:betrate", + "hall:betwingold", + "hall:dex1", + "hall:dex3", + "hall:tsrate" + ] + ], + [ + "【93기】8ase", + 74, + 16, + 85, + "che_event_저격", + [ + 13888, + 10263, + 2549, + 147970, + 11748 + ], + 1, + "31436678.jpg?=20260126", + 93, + "che_260122_rB5D", + 70, + [ + "hall:tirate", + "hall:ttrate" + ] + ], + [ + "【93기】단또", + 91, + 72, + 15, + "che_event_징병", + [ + 27470, + 190855, + 29744, + 20690, + 11447 + ], + 1, + "8675dd3f.jpg?=20260122", + 93, + "che_260122_rB5D", + 71, + [ + "hall:betwin", + "hall:dedication", + "hall:dex2", + "hall:dex3", + "hall:experience", + "hall:killcrew_person", + "hall:killnum", + "hall:killrate_person", + "hall:tlrate", + "hall:winrate" + ] + ], + [ + "【93기】뭐하냥", + 92, + 15, + 70, + "che_event_필살", + [ + 8818, + 8543, + 12738, + 33585, + 152545 + ], + 1, + "68363fe2.png?=20260122", + 93, + "che_260122_rB5D", + 73, + [ + "chief:11", + "hall:betgold", + "hall:betrate", + "hall:betwin", + "hall:betwingold", + "hall:dex5", + "hall:experience", + "hall:killrate", + "hall:occupied", + "hall:tlrate" + ] + ], + [ + "【93기】최진리", + 73, + 15, + 88, + "che_event_필살", + [ + 22229, + 12049, + 3275, + 402624, + 34013 + ], + 1, + "c2356432.png?=20250929", + 93, + "che_260122_rB5D", + 74, + [ + "hall:dex4", + "hall:dex5", + "hall:killcrew", + "hall:killcrew_person", + "hall:killnum", + "hall:killrate", + "hall:killrate_person", + "hall:warnum" + ] + ], + [ + "【93기】쉬었음참새", + 72, + 89, + 15, + "che_event_궁병", + [ + 5442, + 218301, + 3371, + 20159, + 5374 + ], + 0, + "default.jpg", + 93, + "che_260122_rB5D", + 79, + [ + "hall:dex2", + "hall:killrate", + "hall:killrate_person", + "hall:tsrate", + "hall:winrate" + ] + ], + [ + "【93기】호나", + 73, + 88, + 15, + "che_event_견고", + [ + 177576, + 3089, + 28716, + 12629, + 13552 + ], + 0, + "default.jpg", + 93, + "che_260122_rB5D", + 81, + [ + "hall:dex1", + "hall:dex3", + "hall:tsrate" + ] + ], + [ + "【93기】로비", + 15, + 73, + 87, + "che_event_신중", + [ + 0, + 0, + 0, + 0, + 0 + ], + 1, + "71751125.png?=20240823", + 93, + "che_260122_rB5D", + 232, + [ + "hall:dedication" + ] + ], + [ + "【93기】팍팍해요", + 75, + 85, + 15, + "che_event_격노", + [ + 1590, + 3919, + 81846, + 6631, + 2403 + ], + 0, + "default.jpg", + 93, + "che_260122_rB5D", + 252, + [ + "hall:dex3", + "hall:tsrate" + ] + ], + [ + "【93기】재야", + 16, + 73, + 86, + "che_event_집중", + [ + 0, + 0, + 0, + 0, + 0 + ], + 0, + "default.jpg", + 93, + "che_260122_rB5D", + 304, + [ + "hall:dedication" + ] + ], + [ + "【94기】임사영", + 95, + 73, + 15, + "che_event_척사", + [ + 583490, + 23721, + 31743, + 104074, + 51102 + ], + 1, + "918d304e.jpg?=20251209", + 94, + "che_260205_IEBq", + 12, + [ + "hall:dex1", + "hall:dex5", + "hall:killrate", + "hall:tlrate" + ] + ], + [ + "【94기】싱하", + 75, + 15, + 98, + "che_event_징병", + [ + 40336, + 17689, + 25156, + 1277807, + 79737 + ], + 1, + "194b07e4.jpg?=20260205", + 94, + "che_260205_IEBq", + 18, + [ + "chief:12", + "hall:betgold", + "hall:betrate", + "hall:betwingold", + "hall:dedication", + "hall:dex4", + "hall:dex5", + "hall:experience", + "hall:killcrew", + "hall:killcrew_person", + "hall:killnum", + "hall:killrate", + "hall:killrate_person", + "hall:occupied", + "hall:warnum", + "hall:winrate" + ] + ], + [ + "【94기】Hide_D", + 75, + 15, + 91, + "che_event_신중", + [ + 2301, + 5746, + 1187, + 125501, + 7159 + ], + 1, + "4569d848.png?=20230612", + 94, + "che_260205_IEBq", + 22, + [ + "hall:tirate" + ] + ], + [ + "【94기】병리학적자세", + 77, + 15, + 94, + "che_event_신산", + [ + 49676, + 18239, + 36394, + 658412, + 51829 + ], + 1, + "3679089.jpg?=20180629", + 94, + "che_260205_IEBq", + 24, + [ + "chief:7", + "hall:betgold", + "hall:betwin", + "hall:betwingold", + "hall:dedication", + "hall:dex4", + "hall:dex5", + "hall:killrate", + "hall:occupied" + ] + ], + [ + "【94기】010120", + 81, + 89, + 15, + "che_event_격노", + [ + 768555, + 10489, + 31308, + 46540, + 17080 + ], + 0, + "default.jpg", + 94, + "che_260205_IEBq", + 27, + [ + "hall:dex1", + "hall:killcrew", + "hall:killcrew_person", + "hall:killnum", + "hall:occupied", + "hall:warnum" + ] + ], + [ + "【94기】외심장", + 80, + 15, + 92, + "che_event_필살", + [ + 23095, + 18565, + 25297, + 673991, + 31790 + ], + 1, + "36110cd.jpg?=20180826", + 94, + "che_260205_IEBq", + 29, + [ + "hall:dex4", + "hall:killcrew", + "hall:killcrew_person" + ] + ], + [ + "【94기】꿀잠자는참새", + 77, + 15, + 95, + "che_event_필살", + [ + 24238, + 5570, + 64660, + 589831, + 23295 + ], + 0, + "default.jpg", + 94, + "che_260205_IEBq", + 32, + [ + "hall:dex4", + "hall:tirate", + "hall:ttrate" + ] + ], + [ + "【94기】최진리", + 76, + 15, + 97, + "che_event_필살", + [ + 36350, + 8336, + 46527, + 707886, + 54074 + ], + 1, + "c2356432.png?=20250929", + 94, + "che_260205_IEBq", + 35, + [ + "hall:dex4", + "hall:dex5", + "hall:killnum", + "hall:killrate", + "hall:killrate_person", + "hall:occupied", + "hall:tirate", + "hall:warnum", + "hall:winrate" + ] + ], + [ + "【94기】셀레미", + 75, + 16, + 93, + "che_event_신중", + [ + 37507, + 68728, + 35310, + 403353, + 26658 + ], + 1, + "91c55fbe.jpg?=20260205", + 94, + "che_260205_IEBq", + 36, + [ + "hall:dex2", + "hall:tirate" + ] + ], + [ + "【94기】카이스트", + 77, + 17, + 92, + "che_event_집중", + [ + 13143, + 9774, + 17116, + 308420, + 21164 + ], + 1, + "e7e27cd6.jpg?=20221125", + 94, + "che_260205_IEBq", + 43, + [ + "hall:betrate" + ] + ], + [ + "【94기】코바야시 미쿠루", + 77, + 94, + 15, + "che_event_위압", + [ + 747908, + 7799, + 45759, + 89991, + 36818 + ], + 1, + "a82c7922.png?=20260205", + 94, + "che_260205_IEBq", + 45, + [ + "chief:10", + "hall:dedication", + "hall:dex1", + "hall:experience", + "hall:killrate", + "hall:killrate_person", + "hall:occupied", + "hall:tsrate" + ] + ], + [ + "【94기】Sase Kim", + 75, + 15, + 97, + "che_event_필살", + [ + 39336, + 26174, + 27615, + 685667, + 46514 + ], + 1, + "0372425e.jpg?=20260213", + 94, + "che_260205_IEBq", + 46, + [ + "hall:betgold", + "hall:betrate", + "hall:betwin", + "hall:betwingold", + "hall:dex4", + "hall:dex5", + "hall:experience", + "hall:killcrew", + "hall:occupied" + ] + ], + [ + "【94기】냥냥", + 78, + 91, + 15, + "che_event_격노", + [ + 245618, + 13769, + 145717, + 53408, + 25552 + ], + 1, + "1807ae74.png?=20260213", + 94, + "che_260205_IEBq", + 47, + [ + "hall:dex1", + "hall:dex3", + "hall:tsrate" + ] + ], + [ + "【94기】울트라리스크", + 94, + 85, + 15, + "che_event_징병", + [ + 60968, + 79883, + 1706191, + 109430, + 22666 + ], + 1, + "9ff4b2bb.jpg?=20260205", + 94, + "che_260205_IEBq", + 52, + [ + "hall:betgold", + "hall:betwingold", + "hall:dex2", + "hall:dex3", + "hall:experience", + "hall:killcrew", + "hall:killcrew_person", + "hall:killnum", + "hall:killrate", + "hall:killrate_person", + "hall:occupied", + "hall:tlrate", + "hall:warnum", + "hall:winrate" + ] + ], + [ + "【94기】와일드플라워", + 79, + 15, + 93, + "che_event_필살", + [ + 14332, + 28403, + 21943, + 449012, + 25608 + ], + 0, + "default.jpg", + 94, + "che_260205_IEBq", + 53, + [ + "hall:ttrate" + ] + ], + [ + "【94기】m장", + 77, + 96, + 15, + "che_event_필살", + [ + 55682, + 50916, + 871320, + 99818, + 33267 + ], + 0, + "default.jpg", + 94, + "che_260205_IEBq", + 57, + [ + "chief:6", + "hall:betgold", + "hall:betwin", + "hall:betwingold", + "hall:dex3", + "hall:killcrew", + "hall:killcrew_person", + "hall:killnum", + "hall:killrate", + "hall:killrate_person", + "hall:tsrate", + "hall:warnum", + "hall:winrate" + ] + ], + [ + "【94기】NK", + 97, + 74, + 15, + "che_event_돌격", + [ + 66826, + 24481, + 69464, + 82234, + 743071 + ], + 1, + "b1dd7d45.jpg?=20260205", + 94, + "che_260205_IEBq", + 61, + [ + "hall:betrate", + "hall:betwingold", + "hall:dex5", + "hall:experience", + "hall:occupied", + "hall:tlrate" + ] + ], + [ + "【94기】바나낫", + 76, + 93, + 15, + "che_event_무쌍", + [ + 423438, + 18930, + 186912, + 89121, + 42886 + ], + 1, + "073c8444.gif?=20251025", + 94, + "che_260205_IEBq", + 63, + [ + "chief:8", + "hall:dex1", + "hall:dex3", + "hall:tsrate" + ] + ], + [ + "【94기】PIKU이상형월드컵", + 76, + 15, + 94, + "che_event_반계", + [ + 40016, + 14599, + 47218, + 376290, + 36075 + ], + 1, + "38cd61fa.jpg?=20260203", + 94, + "che_260205_IEBq", + 64, + [ + "hall:ttrate" + ] + ], + [ + "【94기】로즈워드차를로스성", + 96, + 75, + 15, + "che_event_징병", + [ + 656953, + 10301, + 35405, + 49542, + 20745 + ], + 1, + "53597dab.webp?=20260211", + 94, + "che_260205_IEBq", + 66, + [ + "hall:betgold", + "hall:betrate", + "hall:betwin", + "hall:betwingold", + "hall:dex1", + "hall:firenum", + "hall:killcrew_person", + "hall:tlrate" + ] + ], + [ + "【94기】뒤집개", + 79, + 93, + 15, + "che_event_돌격", + [ + 214737, + 160640, + 683223, + 196801, + 33058 + ], + 1, + "3fcbc7a6.jpg?=20260205", + 94, + "che_260205_IEBq", + 68, + [ + "hall:betwin", + "hall:dex2", + "hall:dex3", + "hall:killcrew", + "hall:killcrew_person", + "hall:killnum", + "hall:killrate", + "hall:killrate_person", + "hall:ttrate", + "hall:warnum", + "hall:winrate" + ] + ], + [ + "【94기】갈비도둑", + 15, + 101, + 70, + "che_event_신산", + [ + 0, + 0, + 0, + 0, + 0 + ], + 0, + "default.jpg", + 94, + "che_260205_IEBq", + 70, + [ + "hall:betgold", + "hall:betwin", + "hall:firenum", + "hall:tsrate" + ] + ], + [ + "【94기】에드워드", + 75, + 98, + 15, + "che_event_필살", + [ + 1162729, + 80827, + 47597, + 73933, + 37902 + ], + 1, + "6e8cd94f.jpg?=20260205", + 94, + "che_260205_IEBq", + 73, + [ + "chief:11", + "hall:betgold", + "hall:betrate", + "hall:betwin", + "hall:betwingold", + "hall:dedication", + "hall:dex1", + "hall:dex2", + "hall:experience", + "hall:firenum", + "hall:killcrew", + "hall:killcrew_person", + "hall:killnum", + "hall:killrate", + "hall:killrate_person", + "hall:occupied", + "hall:tsrate", + "hall:warnum", + "hall:winrate" + ] + ], + [ + "【94기】퍄퍄", + 79, + 92, + 15, + "che_event_징병", + [ + 705103, + 15992, + 58852, + 126464, + 49542 + ], + 0, + "default.jpg", + 94, + "che_260205_IEBq", + 74, + [ + "hall:dex1", + "hall:dex5", + "hall:warnum" + ] + ], + [ + "【94기】감흥", + 76, + 15, + 94, + "che_event_집중", + [ + 38524, + 7349, + 34683, + 740489, + 32966 + ], + 1, + "2a79fbad.jpg?=20260131", + 94, + "che_260205_IEBq", + 75, + [ + "chief:5", + "hall:betgold", + "hall:betwin", + "hall:betwingold", + "hall:dex4", + "hall:killrate", + "hall:killrate_person", + "hall:occupied", + "hall:winrate" + ] + ], + [ + "【94기】호나", + 79, + 93, + 15, + "che_event_격노", + [ + 53605, + 136818, + 517248, + 66016, + 43307 + ], + 0, + "default.jpg", + 94, + "che_260205_IEBq", + 76, + [ + "hall:dex2", + "hall:dex3", + "hall:dex5", + "hall:tsrate", + "hall:ttrate" + ] + ], + [ + "【94기】감다뒤", + 20, + 73, + 92, + "che_event_필살", + [ + 2846, + 140087, + 4675, + 14799, + 19522 + ], + 1, + "632b81fe.png?=20260205", + 94, + "che_260205_IEBq", + 77, + [ + "hall:dex2" + ] + ], + [ + "【94기】독하", + 76, + 15, + 95, + "che_event_필살", + [ + 35438, + 10438, + 51478, + 601421, + 55753 + ], + 1, + "75bb5ce4.png?=20260227", + 94, + "che_260205_IEBq", + 78, + [ + "chief:9", + "hall:dedication", + "hall:dex4", + "hall:dex5", + "hall:firenum", + "hall:killrate_person", + "hall:tirate" + ] + ], + [ + "【94기】증바람", + 76, + 15, + 96, + "che_event_필살", + [ + 19129, + 10487, + 12451, + 454758, + 21072 + ], + 0, + "default.jpg", + 94, + "che_260205_IEBq", + 79, + [ + "hall:betrate", + "hall:killrate_person", + "hall:tirate", + "hall:winrate" + ] + ], + [ + "【94기】불패", + 76, + 97, + 15, + "che_event_징병", + [ + 93651, + 790110, + 107668, + 115033, + 23504 + ], + 1, + "f08fdbc4.jpg?=20251208", + 94, + "che_260205_IEBq", + 80, + [ + "hall:dex2", + "hall:experience", + "hall:killcrew", + "hall:killcrew_person", + "hall:killnum", + "hall:tsrate", + "hall:ttrate", + "hall:warnum", + "hall:winrate" + ] + ], + [ + "【94기】대교", + 88, + 15, + 85, + "che_event_필살", + [ + 23475, + 30762, + 16903, + 596494, + 36789 + ], + 1, + "a53ab5ef.jpg?=20241010", + 94, + "che_260205_IEBq", + 81, + [ + "hall:dex4", + "hall:experience", + "hall:killnum", + "hall:winrate" + ] + ], + [ + "【94기】농부", + 76, + 15, + 94, + "che_event_귀병", + [ + 27174, + 9378, + 22394, + 269654, + 22970 + ], + 0, + "default.jpg", + 94, + "che_260205_IEBq", + 82, + [ + "hall:betrate", + "hall:betwingold", + "hall:tirate", + "hall:ttrate" + ] + ], + [ + "【94기】조승상", + 76, + 92, + 15, + "che_event_돌격", + [ + 68071, + 41001, + 646274, + 99370, + 55401 + ], + 1, + "676a8b92.png?=20260102", + 94, + "che_260205_IEBq", + 83, + [ + "hall:dex3", + "hall:dex5" + ] + ], + [ + "【94기】ㅇㅅㅇ", + 88, + 83, + 15, + "che_event_필살", + [ + 300681, + 123819, + 320455, + 52867, + 28809 + ], + 0, + "default.jpg", + 94, + "che_260205_IEBq", + 84, + [ + "hall:dex1", + "hall:dex2", + "hall:dex3", + "hall:tlrate", + "hall:ttrate" + ] + ], + [ + "【94기】주기자", + 77, + 16, + 95, + "che_event_징병", + [ + 44986, + 9291, + 72498, + 743278, + 35958 + ], + 1, + "6fd30971.png?=20260205", + 94, + "che_260205_IEBq", + 85, + [ + "hall:dedication", + "hall:dex4", + "hall:experience", + "hall:killcrew", + "hall:killcrew_person", + "hall:killnum", + "hall:warnum" + ] + ], + [ + "【94기】갈비집막내아들", + 15, + 95, + 73, + "che_event_척사", + [ + 0, + 0, + 0, + 0, + 0 + ], + 0, + "default.jpg", + 94, + "che_260205_IEBq", + 86, + [ + "hall:firenum", + "hall:tsrate", + "hall:ttrate" + ] + ], + [ + "【94기】송탄강", + 16, + 76, + 93, + "che_event_척사", + [ + 0, + 0, + 0, + 0, + 0 + ], + 1, + "55516eae.png?=20251102", + 94, + "che_260205_IEBq", + 94, + [ + "hall:betgold", + "hall:betwin" + ] + ], + [ + "【94기】설맞이 독구", + 15, + 73, + 96, + "che_event_반계", + [ + 0, + 0, + 0, + 0, + 0 + ], + 1, + "5283daf7.png?=20240511", + 94, + "che_260205_IEBq", + 96, + [ + "hall:dedication", + "hall:tirate" + ] + ], + [ + "【94기】척", + 16, + 72, + 97, + "che_event_저격", + [ + 0, + 0, + 0, + 0, + 0 + ], + 1, + "7cb75480.png?=20221202", + 94, + "che_260205_IEBq", + 100, + [ + "hall:ttrate" + ] + ], + [ + "【94기】조운", + 15, + 73, + 96, + "che_event_필살", + [ + 0, + 0, + 0, + 0, + 0 + ], + 0, + "default.jpg", + 94, + "che_260205_IEBq", + 102, + [ + "hall:dedication", + "hall:experience", + "hall:tirate" + ] + ], + [ + "【94기】앵벌스", + 90, + 76, + 15, + "che_event_무쌍", + [ + 48268, + 208312, + 22255, + 44456, + 17574 + ], + 0, + "default.jpg", + 94, + "che_260205_IEBq", + 107, + [ + "hall:dex2", + "hall:tlrate" + ] + ], + [ + "【94기】ㅊㄹㅊㄹ", + 79, + 90, + 16, + "che_event_필살", + [ + 59630, + 28403, + 435283, + 54910, + 26622 + ], + 1, + "63f1c106.png?=20230223", + 94, + "che_260205_IEBq", + 212, + [ + "hall:betwin", + "hall:dex3", + "hall:tsrate" + ] + ], + [ + "【94기】타마모크로스", + 90, + 79, + 15, + "che_event_척사", + [ + 97949, + 21322, + 142696, + 9397, + 17936 + ], + 1, + "8b76af8b.png?=20260206", + 94, + "che_260205_IEBq", + 229, + [ + "hall:tlrate" + ] + ], + [ + "【94기】마요이", + 16, + 75, + 92, + "che_event_저격", + [ + 0, + 0, + 0, + 0, + 0 + ], + 1, + "2b49c945.png?=20230921", + 94, + "che_260205_IEBq", + 264, + [ + "hall:dedication" + ] + ], + [ + "【94기】기술연구하장", + 15, + 75, + 91, + "che_event_의술", + [ + 0, + 0, + 0, + 0, + 0 + ], + 0, + "default.jpg", + 94, + "che_260205_IEBq", + 368, + [ + "hall:firenum" + ] + ], + [ + "【94기】리니지", + 89, + 77, + 18, + "che_event_무쌍", + [ + 456214, + 55289, + 42216, + 40119, + 26274 + ], + 1, + "cf57616c.png?=20260208", + 94, + "che_260205_IEBq", + 403, + [ + "hall:dex1", + "hall:dex2", + "hall:firenum", + "hall:tlrate" + ] + ], + [ + "【94기】미도리야 이즈쿠", + 94, + 15, + 73, + "che_event_의술", + [ + 16250, + 9967, + 3714, + 199960, + 6315 + ], + 1, + "6ff2f836.jpg?=20260210", + 94, + "che_260205_IEBq", + 448, + [ + "hall:tlrate" + ] + ], + [ + "【94기】74", + 15, + 72, + 94, + "che_event_신산", + [ + 0, + 0, + 0, + 0, + 0 + ], + 0, + "default.jpg", + 94, + "che_260205_IEBq", + 497, + [ + "hall:betrate", + "hall:dedication", + "hall:tirate" + ] + ], + [ + "【94기】Navy마초", + 87, + 74, + 17, + "che_event_필살", + [ + 41116, + 27669, + 270151, + 58434, + 38166 + ], + 1, + "37644ed3.png?=20230831", + 94, + "che_260205_IEBq", + 508, + [ + "hall:betrate", + "hall:dex3", + "hall:tlrate" + ] + ], + [ + "【95기】카이스트", + 81, + 15, + 96, + "che_event_징병", + [ + 73987, + 26839, + 57176, + 1010659, + 46942 + ], + 1, + "e7e27cd6.jpg?=20221125", + 95, + "che_260305_iIyj", + 3, + [ + "hall:dex4" + ] + ], + [ + "【95기】마지텐 시아", + 80, + 91, + 17, + "che_event_저격", + [ + 125477, + 793196, + 33669, + 101230, + 33699 + ], + 1, + "44b6e96e.jpg?=20260305", + 95, + "che_260305_iIyj", + 9, + [ + "hall:dex2", + "hall:tsrate" + ] + ], + [ + "【95기】바쿠", + 84, + 100, + 15, + "che_event_무쌍", + [ + 136632, + 118841, + 3112032, + 186973, + 171114 + ], + 1, + "e9d33498.png?=20260305", + 95, + "che_260305_iIyj", + 11, + [ + "chief:10", + "hall:betgold", + "hall:betwingold", + "hall:dex2", + "hall:dex3", + "hall:dex5", + "hall:experience", + "hall:killcrew", + "hall:killcrew_person", + "hall:killnum", + "hall:killrate", + "hall:killrate_person", + "hall:occupied", + "hall:tsrate", + "hall:warnum", + "hall:winrate" + ] + ], + [ + "【95기】100M", + 94, + 15, + 81, + "che_event_집중", + [ + 134695, + 21158, + 42232, + 972603, + 114579 + ], + 0, + "default.jpg", + 95, + "che_260305_iIyj", + 12, + [ + "hall:dex4" + ] + ], + [ + "【95기】와일드플라워", + 79, + 15, + 93, + "che_event_신중", + [ + 78447, + 20645, + 31586, + 882368, + 75320 + ], + 0, + "default.jpg", + 95, + "che_260305_iIyj", + 15, + [ + "hall:tirate" + ] + ], + [ + "【95기】안함", + 92, + 86, + 15, + "che_event_의술", + [ + 2163150, + 40067, + 54572, + 115861, + 83642 + ], + 0, + "default.jpg", + 95, + "che_260305_iIyj", + 17, + [ + "chief:8", + "hall:betgold", + "hall:betwingold", + "hall:dedication", + "hall:dex1", + "hall:experience", + "hall:killcrew", + "hall:killcrew_person", + "hall:killnum", + "hall:tlrate", + "hall:warnum" + ] + ], + [ + "【95기】마제", + 67, + 13, + 79, + "che_event_귀병", + [ + 21538, + 6404, + 13236, + 224658, + 14263 + ], + 0, + "default.jpg", + 95, + "che_260305_iIyj", + 18, + [ + "hall:tirate", + "hall:ttrate" + ] + ], + [ + "【95기】바나낫", + 106, + 77, + 15, + "che_event_필살", + [ + 105667, + 103338, + 119859, + 160664, + 2858806 + ], + 1, + "073c8444.gif?=20251025", + 95, + "che_260305_iIyj", + 19, + [ + "hall:dex2", + "hall:dex5", + "hall:killcrew", + "hall:killcrew_person", + "hall:killnum", + "hall:tlrate", + "hall:ttrate", + "hall:warnum" + ] + ], + [ + "【95기】불패", + 80, + 15, + 96, + "che_event_필살", + [ + 94109, + 42924, + 47155, + 1115588, + 110176 + ], + 1, + "f08fdbc4.jpg?=20251208", + 95, + "che_260305_iIyj", + 20, + [ + "hall:dex4", + "hall:experience" + ] + ], + [ + "【95기】Hide_D", + 81, + 15, + 94, + "che_event_환술", + [ + 101528, + 29630, + 19672, + 701499, + 78506 + ], + 1, + "4569d848.png?=20230612", + 95, + "che_260305_iIyj", + 23, + [ + "hall:tirate" + ] + ], + [ + "【95기】리신", + 70, + 82, + 13, + "che_event_필살", + [ + 91229, + 14819, + 722952, + 82104, + 55944 + ], + 1, + "6283afef.png?=20260309", + 95, + "che_260305_iIyj", + 24, + [ + "chief:6", + "hall:betgold", + "hall:betrate", + "hall:betwin", + "hall:betwingold", + "hall:dedication", + "hall:dex3", + "hall:killrate", + "hall:killrate_person", + "hall:occupied", + "hall:tsrate", + "hall:winrate" + ] + ], + [ + "【95기】임사영", + 95, + 69, + 13, + "che_event_징병", + [ + 169651, + 73501, + 76698, + 128961, + 1710594 + ], + 1, + "918d304e.jpg?=20251209", + 95, + "che_260305_iIyj", + 25, + [ + "hall:betrate", + "hall:dex2", + "hall:dex3", + "hall:dex5", + "hall:experience", + "hall:killcrew", + "hall:killcrew_person", + "hall:killnum", + "hall:occupied", + "hall:tlrate", + "hall:ttrate", + "hall:warnum", + "hall:winrate" + ] + ], + [ + "【95기】조승상", + 80, + 94, + 16, + "che_event_징병", + [ + 1568147, + 15490, + 34273, + 185863, + 42256 + ], + 1, + "f553c160.jpg?=20260327", + 95, + "che_260305_iIyj", + 27, + [ + "hall:dex1" + ] + ], + [ + "【95기】야곤", + 87, + 90, + 15, + "che_event_무쌍", + [ + 1542806, + 14801, + 174285, + 114921, + 53331 + ], + 1, + "8b70d1b5.jpg?=20260301", + 95, + "che_260305_iIyj", + 33, + [ + "hall:dex1", + "hall:dex3", + "hall:killrate", + "hall:killrate_person", + "hall:tsrate", + "hall:ttrate" + ] + ], + [ + "【95기】강유", + 77, + 13, + 75, + "che_event_필살", + [ + 64534, + 12903, + 21998, + 745257, + 33324 + ], + 1, + "79e150d0.jpg?=20230921", + 95, + "che_260305_iIyj", + 34, + [ + "hall:dedication", + "hall:dex4", + "hall:experience", + "hall:killcrew", + "hall:killnum", + "hall:killrate", + "hall:killrate_person", + "hall:winrate" + ] + ], + [ + "【95기】프로랜임러", + 94, + 76, + 16, + "che_event_징병", + [ + 730768, + 15788, + 66347, + 126939, + 225598 + ], + 0, + "default.jpg", + 95, + "che_260305_iIyj", + 36, + [ + "hall:dex1", + "hall:dex5" + ] + ], + [ + "【95기】신입생 독구", + 17, + 74, + 96, + "che_event_의술", + [ + 0, + 0, + 0, + 0, + 0 + ], + 1, + "5283daf7.png?=20240511", + 95, + "che_260305_iIyj", + 39, + [ + "hall:betrate", + "hall:ttrate" + ] + ], + [ + "【95기】Ari", + 90, + 82, + 15, + "che_event_척사", + [ + 22131, + 27806, + 907495, + 46143, + 62670 + ], + 0, + "default.jpg", + 95, + "che_260305_iIyj", + 41, + [ + "hall:dex3", + "hall:occupied", + "hall:tlrate" + ] + ], + [ + "【95기】Navy마초", + 89, + 79, + 17, + "che_event_의술", + [ + 620192, + 15740, + 33782, + 110069, + 72245 + ], + 1, + "37644ed3.png?=20230831", + 95, + "che_260305_iIyj", + 43, + [ + "hall:dex1", + "hall:ttrate" + ] + ], + [ + "【95기】퍄퍄", + 79, + 95, + 15, + "che_event_척사", + [ + 36758, + 29396, + 1069128, + 132622, + 82105 + ], + 1, + "1364113e.png?=20250621", + 95, + "che_260305_iIyj", + 44, + [ + "hall:dex3", + "hall:killrate", + "hall:killrate_person", + "hall:tsrate", + "hall:winrate" + ] + ], + [ + "【95기】감흥", + 67, + 14, + 80, + "che_event_신중", + [ + 64124, + 14126, + 20587, + 597479, + 43650 + ], + 1, + "2a79fbad.jpg?=20260131", + 95, + "che_260305_iIyj", + 45, + [ + "chief:12", + "hall:betrate", + "hall:dedication", + "hall:dex4" + ] + ], + [ + "【95기】어벙", + 89, + 83, + 15, + "che_event_견고", + [ + 266989, + 264524, + 545230, + 135435, + 60752 + ], + 0, + "default.jpg", + 95, + "che_260305_iIyj", + 46, + [ + "hall:dex2", + "hall:dex3" + ] + ], + [ + "【95기】송탄강", + 89, + 15, + 82, + "che_event_신산", + [ + 75303, + 20076, + 21095, + 577087, + 35142 + ], + 1, + "55516eae.png?=20251102", + 95, + "che_260305_iIyj", + 47, + [ + "hall:betwin", + "hall:tlrate" + ] + ], + [ + "【95기】자아이드베르", + 67, + 14, + 82, + "che_event_징병", + [ + 34432, + 20005, + 28424, + 859119, + 43110 + ], + 1, + "0e4c2727.jpg?=20260305", + 95, + "che_260305_iIyj", + 48, + [ + "hall:betgold", + "hall:betwingold", + "hall:dedication", + "hall:dex4", + "hall:killcrew_person", + "hall:ttrate", + "hall:warnum" + ] + ], + [ + "【95기】프리렌", + 80, + 15, + 99, + "che_event_집중", + [ + 54277, + 17668, + 59280, + 1163103, + 54684 + ], + 1, + "79ca0370.gif?=20260320", + 95, + "che_260305_iIyj", + 49, + [ + "hall:betgold", + "hall:betwin", + "hall:betwingold", + "hall:dex4", + "hall:firenum", + "hall:occupied", + "hall:ttrate", + "hall:winrate" + ] + ], + [ + "【95기】뗑까", + 82, + 16, + 93, + "che_event_환술", + [ + 129381, + 31959, + 41695, + 1347805, + 149539 + ], + 1, + "134c3172.png?=20260320", + 95, + "che_260305_iIyj", + 50, + [ + "chief:7", + "hall:betrate", + "hall:betwin", + "hall:dex4", + "hall:dex5", + "hall:experience" + ] + ], + [ + "【95기】단종", + 67, + 84, + 13, + "che_event_필살", + [ + 21261, + 25506, + 686525, + 55695, + 44313 + ], + 1, + "13660541.png?=20260305", + 95, + "che_260305_iIyj", + 51, + [ + "hall:betgold", + "hall:betwin", + "hall:betwingold", + "hall:dex3", + "hall:tsrate" + ] + ], + [ + "【95기】장원영", + 80, + 15, + 91, + "che_event_필살", + [ + 82578, + 51416, + 47618, + 917595, + 77150 + ], + 1, + "837ecd58.jpg?=20260313", + 95, + "che_260305_iIyj", + 52, + [ + "hall:occupied" + ] + ], + [ + "【95기】새참", + 68, + 82, + 13, + "che_event_필살", + [ + 40146, + 733677, + 9357, + 17605, + 54116 + ], + 0, + "default.jpg", + 95, + "che_260305_iIyj", + 53, + [ + "hall:dedication", + "hall:dex2", + "hall:killrate", + "hall:killrate_person", + "hall:tsrate", + "hall:winrate" + ] + ], + [ + "【95기】병리학적자세", + 67, + 13, + 82, + "che_event_귀병", + [ + 41961, + 13176, + 18664, + 445635, + 29690 + ], + 1, + "3679089.jpg?=20180629", + 95, + "che_260305_iIyj", + 54, + [ + "hall:betgold", + "hall:betwin", + "hall:betwingold", + "hall:tirate", + "hall:ttrate" + ] + ], + [ + "【95기】ㅊㄹㅊㄹ", + 81, + 93, + 16, + "che_event_필살", + [ + 65934, + 1189158, + 45493, + 122323, + 62366 + ], + 1, + "63f1c106.png?=20230223", + 95, + "che_260305_iIyj", + 55, + [ + "hall:dex2", + "hall:killrate_person", + "hall:tsrate" + ] + ], + [ + "【95기】대교", + 96, + 78, + 15, + "che_event_필살", + [ + 995892, + 9108, + 50686, + 113883, + 43881 + ], + 1, + "a53ab5ef.jpg?=20241010", + 95, + "che_260305_iIyj", + 56, + [ + "hall:dex1", + "hall:tlrate" + ] + ], + [ + "【95기】시크릿 커리큘럼", + 72, + 78, + 13, + "che_event_견고", + [ + 506006, + 10343, + 11151, + 33709, + 17486 + ], + 0, + "default.jpg", + 95, + "che_260305_iIyj", + 57, + [ + "hall:dex1", + "hall:killrate", + "hall:ttrate" + ] + ], + [ + "【95기】ㅇㅅㅇ", + 82, + 15, + 92, + "che_event_집중", + [ + 55545, + 21195, + 31151, + 881876, + 46926 + ], + 0, + "default.jpg", + 95, + "che_260305_iIyj", + 58, + [ + "hall:tirate" + ] + ], + [ + "【95기】사스케", + 108, + 70, + 15, + "che_event_징병", + [ + 126605, + 40572, + 151931, + 135664, + 1608750 + ], + 1, + "1870de1b.jpg?=20260130", + 95, + "che_260305_iIyj", + 60, + [ + "hall:betgold", + "hall:betwin", + "hall:dex5", + "hall:killcrew", + "hall:killcrew_person", + "hall:killnum", + "hall:occupied", + "hall:tlrate", + "hall:warnum" + ] + ], + [ + "【95기】피곤스곤스", + 80, + 15, + 97, + "che_event_필살", + [ + 124534, + 68883, + 75981, + 1443779, + 127289 + ], + 1, + "0d676c99.png?=20260305", + 95, + "che_260305_iIyj", + 61, + [ + "chief:5", + "hall:betgold", + "hall:betrate", + "hall:betwin", + "hall:betwingold", + "hall:dex4", + "hall:dex5", + "hall:experience", + "hall:winrate" + ] + ], + [ + "【95기】올해의 색", + 110, + 80, + 15, + "che_event_징병", + [ + 355790, + 152192, + 122130, + 192949, + 3582591 + ], + 1, + "408cfe75.jpg?=20260305", + 95, + "che_260305_iIyj", + 62, + [ + "hall:betgold", + "hall:betrate", + "hall:betwin", + "hall:betwingold", + "hall:dex1", + "hall:dex2", + "hall:dex5", + "hall:experience", + "hall:killcrew", + "hall:killcrew_person", + "hall:killnum", + "hall:killrate", + "hall:killrate_person", + "hall:occupied", + "hall:tlrate", + "hall:warnum", + "hall:winrate" + ] + ], + [ + "【95기】사마단", + 69, + 14, + 79, + "che_event_필살", + [ + 46259, + 21847, + 18981, + 479069, + 70906 + ], + 0, + "default.jpg", + 95, + "che_260305_iIyj", + 71, + [ + "chief:9", + "hall:dex5", + "hall:tirate" + ] + ], + [ + "【95기】냥냥", + 91, + 80, + 16, + "che_event_돌격", + [ + 70724, + 25545, + 612319, + 86423, + 110930 + ], + 1, + "90370eaa.png?=20260308", + 95, + "che_260305_iIyj", + 73, + [ + "hall:dex3", + "hall:tlrate" + ] + ], + [ + "【95기】NK", + 15, + 81, + 90, + "che_event_필살", + [ + 0, + 0, + 0, + 0, + 0 + ], + 1, + "b1dd7d45.jpg?=20260205", + 95, + "che_260305_iIyj", + 74, + [ + "hall:dedication" + ] + ], + [ + "【95기】마요이", + 15, + 72, + 99, + "che_event_집중", + [ + 0, + 0, + 0, + 0, + 0 + ], + 1, + "2b49c945.png?=20230921", + 95, + "che_260305_iIyj", + 75, + [ + "hall:dedication", + "hall:tirate" + ] + ], + [ + "【95기】주하", + 87, + 80, + 15, + "che_event_필살", + [ + 211083, + 471919, + 23621, + 106099, + 47764 + ], + 0, + "default.jpg", + 95, + "che_260305_iIyj", + 78, + [ + "hall:dex2" + ] + ], + [ + "【95기】이순신", + 83, + 97, + 15, + "che_event_견고", + [ + 2158291, + 17878, + 142183, + 99701, + 23286 + ], + 0, + "default.jpg", + 95, + "che_260305_iIyj", + 159, + [ + "hall:betrate", + "hall:betwingold", + "hall:dex1", + "hall:killcrew", + "hall:killcrew_person", + "hall:killnum", + "hall:tsrate", + "hall:warnum" + ] + ], + [ + "【95기】외심장", + 83, + 15, + 96, + "che_event_집중", + [ + 97830, + 40545, + 56075, + 1579246, + 20052 + ], + 1, + "36110cd.jpg?=20180826", + 95, + "che_260305_iIyj", + 191, + [ + "hall:dex4", + "hall:killcrew", + "hall:killcrew_person", + "hall:killnum", + "hall:killrate", + "hall:killrate_person", + "hall:occupied", + "hall:warnum", + "hall:winrate" + ] + ], + [ + "【95기】호르무즈", + 80, + 91, + 15, + "che_event_척사", + [ + 12523, + 32291, + 613346, + 112011, + 32454 + ], + 0, + "default.jpg", + 95, + "che_260305_iIyj", + 202, + [ + "hall:dex3", + "hall:tsrate" + ] + ], + [ + "【95기】독구", + 108, + 72, + 15, + "che_event_징병", + [ + 132309, + 91701, + 107565, + 188687, + 3377780 + ], + 1, + "75bb5ce4.png?=20260227", + 95, + "che_260305_iIyj", + 203, + [ + "chief:11", + "hall:betrate", + "hall:dex2", + "hall:dex5", + "hall:experience", + "hall:killcrew", + "hall:killcrew_person", + "hall:killnum", + "hall:killrate", + "hall:killrate_person", + "hall:occupied", + "hall:tlrate", + "hall:warnum" + ] + ], + [ + "【95기】최진리", + 92, + 78, + 15, + "che_event_격노", + [ + 495957, + 10542, + 18713, + 49898, + 82990 + ], + 1, + "c2356432.png?=20250929", + 95, + "che_260305_iIyj", + 261, + [ + "hall:dex1" + ] + ], + [ + "【95기】셀레미", + 16, + 74, + 96, + "che_event_필살", + [ + 0, + 0, + 0, + 0, + 0 + ], + 1, + "91c55fbe.jpg?=20260205", + 95, + "che_260305_iIyj", + 268, + [ + "hall:betrate", + "hall:dedication" + ] + ], + [ + "【95기】펫", + 16, + 76, + 95, + "che_event_척사", + [ + 0, + 0, + 0, + 0, + 0 + ], + 1, + "5cedbb3.jpg?=20190817", + 95, + "che_260305_iIyj", + 287, + [ + "hall:dedication", + "hall:experience", + "hall:tirate" + ] + ], + [ + "【95기】가시춘", + 15, + 76, + 92, + "che_event_신중", + [ + 0, + 0, + 0, + 0, + 0 + ], + 1, + "0b5811c7.jpg?=20260308", + 95, + "che_260305_iIyj", + 490, + [ + "hall:tirate" + ] + ], + [ + "【95기】야한거보면짖는개", + 77, + 16, + 90, + "che_event_신산", + [ + 79538, + 34628, + 40780, + 552140, + 77439 + ], + 0, + "default.jpg", + 95, + "che_260305_iIyj", + 689, + [ + "hall:betwin", + "hall:tirate" + ] + ], + [ + "【96기】김야곤", + 93, + 82, + 16, + "che_event_필살", + [ + 56390, + 62522, + 1433950, + 115221, + 145400 + ], + 1, + "8b70d1b5.jpg?=20260301", + 96, + "che_260402_97Fh", + 6, + [ + "chief:10", + "hall:betrate", + "hall:betwingold", + "hall:dex2", + "hall:dex3", + "hall:dex5", + "hall:experience", + "hall:killcrew", + "hall:killcrew_person", + "hall:killnum", + "hall:tlrate", + "hall:warnum" + ] + ], + [ + "【96기】몽골맨", + 80, + 94, + 15, + "che_event_필살", + [ + 34827, + 53714, + 883524, + 140724, + 75433 + ], + 1, + "c2b2f527.png?=20260402", + 96, + "che_260402_97Fh", + 12, + [ + "hall:dex2", + "hall:dex3" + ] + ], + [ + "【96기】슬라임123", + 83, + 66, + 13, + "che_event_필살", + [ + 63773, + 679531, + 26975, + 94662, + 99439 + ], + 0, + "default.jpg", + 96, + "che_260402_97Fh", + 14, + [ + "hall:dex1", + "hall:dex2", + "hall:dex5", + "hall:killcrew", + "hall:killcrew_person", + "hall:killnum", + "hall:tlrate", + "hall:warnum" + ] + ], + [ + "【96기】아메리칸", + 71, + 80, + 14, + "che_event_무쌍", + [ + 35212, + 14765, + 669926, + 78748, + 22519 + ], + 1, + "958ecbe2.png?=20260402", + 96, + "che_260402_97Fh", + 15, + [ + "hall:dex3", + "hall:killcrew_person", + "hall:killnum", + "hall:killrate", + "hall:killrate_person", + "hall:winrate" + ] + ], + [ + "【96기】갑옷", + 84, + 66, + 14, + "che_event_징병", + [ + 1121807, + 15056, + 40187, + 40950, + 62997 + ], + 1, + "30018b92.png?=20260420", + 96, + "che_260402_97Fh", + 21, + [ + "chief:11", + "hall:betgold", + "hall:betwin", + "hall:betwingold", + "hall:dex1", + "hall:experience", + "hall:killcrew", + "hall:killcrew_person", + "hall:killnum", + "hall:killrate", + "hall:killrate_person", + "hall:occupied", + "hall:tlrate", + "hall:ttrate", + "hall:warnum" + ] + ], + [ + "【96기】와일드플라워", + 66, + 13, + 82, + "che_event_집중", + [ + 23397, + 18776, + 13046, + 398843, + 27145 + ], + 0, + "default.jpg", + 96, + "che_260402_97Fh", + 26, + [ + "hall:dex4", + "hall:tirate", + "hall:winrate" + ] + ], + [ + "【96기】바나낫", + 66, + 83, + 14, + "che_event_필살", + [ + 445009, + 24071, + 57233, + 20423, + 25522 + ], + 1, + "073c8444.gif?=20251025", + 96, + "che_260402_97Fh", + 28, + [ + "hall:dedication", + "hall:dex1", + "hall:killrate", + "hall:killrate_person", + "hall:occupied", + "hall:tsrate" + ] + ], + [ + "【96기】바티칸", + 69, + 13, + 79, + "che_event_의술", + [ + 39267, + 13884, + 42372, + 458832, + 67184 + ], + 1, + "9fcfa670.jpg?=20260402", + 96, + "che_260402_97Fh", + 41, + [ + "hall:betrate", + "hall:dex5" + ] + ], + [ + "【96기】예턴장", + 72, + 82, + 13, + "che_event_징병", + [ + 26997, + 17820, + 1147864, + 107970, + 44874 + ], + 0, + "default.jpg", + 96, + "che_260402_97Fh", + 46, + [ + "chief:12", + "hall:betgold", + "hall:betwin", + "hall:betwingold", + "hall:dedication", + "hall:dex3", + "hall:experience", + "hall:killcrew", + "hall:killcrew_person", + "hall:killnum", + "hall:killrate", + "hall:killrate_person", + "hall:occupied", + "hall:warnum" + ] + ], + [ + "【96기】살로메", + 66, + 83, + 13, + "che_event_필살", + [ + 17239, + 354803, + 9288, + 23753, + 24294 + ], + 1, + "6ae45121.jpg?=20260404", + 96, + "che_260402_97Fh", + 48, + [ + "hall:dedication", + "hall:dex2", + "hall:killrate", + "hall:killrate_person", + "hall:tsrate", + "hall:winrate" + ] + ], + [ + "【96기】ㅊㄹㅊㄹ", + 68, + 13, + 82, + "che_event_척사", + [ + 24415, + 27204, + 28787, + 466824, + 49044 + ], + 1, + "63f1c106.png?=20230223", + 96, + "che_260402_97Fh", + 50, + [ + "hall:betwin", + "hall:dex4", + "hall:tirate" + ] + ], + [ + "【96기】스테퍼레트로", + 70, + 77, + 13, + "che_event_격노", + [ + 411469, + 13097, + 46394, + 73046, + 23911 + ], + 0, + "default.jpg", + 96, + "che_260402_97Fh", + 51, + [ + "hall:dex1", + "hall:firenum" + ] + ], + [ + "【96기】참새30마리먹은독구", + 15, + 73, + 99, + "che_event_의술", + [ + 0, + 0, + 0, + 0, + 0 + ], + 1, + "5283daf7.png?=20240511", + 96, + "che_260402_97Fh", + 52, + [ + "hall:betrate", + "hall:betwin" + ] + ], + [ + "【96기】KarRiu", + 83, + 62, + 13, + "che_event_공성", + [ + 16178, + 0, + 1714, + 0, + 286889 + ], + 1, + "1d89eebb.png?=20260402", + 96, + "che_260402_97Fh", + 53, + [ + "hall:dex5", + "hall:experience", + "hall:killrate", + "hall:occupied", + "hall:tlrate", + "hall:winrate" + ] + ], + [ + "【96기】카이스트", + 81, + 15, + 94, + "che_event_필살", + [ + 112423, + 37838, + 55742, + 1163479, + 90657 + ], + 1, + "e7e27cd6.jpg?=20221125", + 96, + "che_260402_97Fh", + 54, + [ + "hall:dex1", + "hall:dex4", + "hall:dex5", + "hall:killnum", + "hall:warnum", + "hall:winrate" + ] + ], + [ + "【96기】임사영", + 81, + 69, + 13, + "che_event_필살", + [ + 146393, + 167489, + 392511, + 127776, + 23959 + ], + 1, + "918d304e.jpg?=20251209", + 96, + "che_260402_97Fh", + 55, + [ + "hall:dex1", + "hall:dex2", + "hall:dex3" + ] + ], + [ + "【96기】NK", + 82, + 70, + 13, + "che_event_징병", + [ + 38297, + 1061161, + 46677, + 101288, + 51158 + ], + 1, + "b1dd7d45.jpg?=20260205", + 96, + "che_260402_97Fh", + 56, + [ + "chief:8", + "hall:betgold", + "hall:betrate", + "hall:betwingold", + "hall:dex2", + "hall:dex5", + "hall:experience", + "hall:killcrew", + "hall:killcrew_person", + "hall:killnum", + "hall:killrate_person", + "hall:tlrate", + "hall:ttrate", + "hall:warnum", + "hall:winrate" + ] + ], + [ + "【96기】개인전업투자자", + 84, + 65, + 13, + "che_event_필살", + [ + 502007, + 2498, + 54571, + 50388, + 23328 + ], + 1, + "9acf8689.webp?=20260429", + 96, + "che_260402_97Fh", + 57, + [ + "hall:betgold", + "hall:betwin", + "hall:betwingold", + "hall:dex1", + "hall:firenum", + "hall:tlrate" + ] + ], + [ + "【96기】96네코", + 71, + 13, + 78, + "che_event_집중", + [ + 42593, + 4204, + 33235, + 446163, + 34017 + ], + 1, + "511e4192.jpg?=20260405", + 96, + "che_260402_97Fh", + 58, + [ + "hall:dex4" + ] + ], + [ + "【96기】ChatGPT", + 78, + 71, + 13, + "che_event_필살", + [ + 34797, + 52832, + 589321, + 76996, + 45463 + ], + 0, + "default.jpg", + 96, + "che_260402_97Fh", + 59, + [ + "hall:betwin", + "hall:dex2", + "hall:dex3" + ] + ], + [ + "【96기】빈칸", + 82, + 14, + 71, + "che_event_징병", + [ + 26412, + 35029, + 45950, + 947729, + 39885 + ], + 1, + "14a1f684.jpg?=20260402", + 96, + "che_260402_97Fh", + 60, + [ + "chief:5", + "hall:betgold", + "hall:dex2", + "hall:dex4", + "hall:experience", + "hall:killcrew", + "hall:killcrew_person", + "hall:killnum", + "hall:occupied", + "hall:tlrate", + "hall:ttrate", + "hall:warnum" + ] + ], + [ + "【96기】Sase Kim", + 85, + 65, + 13, + "che_event_신산", + [ + 47796, + 14097, + 30576, + 38965, + 1049008 + ], + 1, + "c99d8514.jpg?=20260403", + 96, + "che_260402_97Fh", + 61, + [ + "chief:6", + "hall:betgold", + "hall:betrate", + "hall:betwin", + "hall:betwingold", + "hall:dex5", + "hall:experience", + "hall:firenum", + "hall:killcrew", + "hall:killrate", + "hall:occupied", + "hall:tlrate" + ] + ], + [ + "【96기】비브람파이브핑거스", + 69, + 78, + 13, + "che_event_위압", + [ + 29877, + 473992, + 15088, + 31595, + 28113 + ], + 1, + "7816cecf.jpg?=20260403", + 96, + "che_260402_97Fh", + 63, + [ + "hall:betgold", + "hall:betwingold", + "hall:dex2", + "hall:tsrate" + ] + ], + [ + "【96기】V", + 65, + 14, + 82, + "che_event_척사", + [ + 12551, + 10881, + 15093, + 242722, + 4592 + ], + 0, + "default.jpg", + 96, + "che_260402_97Fh", + 64, + [ + "hall:tirate" + ] + ], + [ + "【96기】몽마 탄 주하", + 67, + 83, + 13, + "che_event_견고", + [ + 36850, + 27512, + 416902, + 61906, + 23638 + ], + 0, + "default.jpg", + 96, + "che_260402_97Fh", + 66, + [ + "hall:dex3", + "hall:tsrate" + ] + ], + [ + "【96기】미스티", + 73, + 13, + 74, + "che_event_반계", + [ + 16065, + 11509, + 17792, + 179725, + 24679 + ], + 1, + "1aadcba.png?=20180908", + 96, + "che_260402_97Fh", + 67, + [ + "hall:dedication" + ] + ], + [ + "【96기】병리학적자세", + 66, + 13, + 85, + "che_event_척사", + [ + 10027, + 10279, + 23495, + 467509, + 28174 + ], + 1, + "3679089.jpg?=20180629", + 96, + "che_260402_97Fh", + 68, + [ + "hall:betgold", + "hall:betwin", + "hall:betwingold", + "hall:dedication", + "hall:dex4", + "hall:tirate", + "hall:winrate" + ] + ], + [ + "【96기】불패", + 69, + 81, + 14, + "che_event_징병", + [ + 704642, + 17240, + 54987, + 88805, + 22099 + ], + 1, + "f08fdbc4.jpg?=20251208", + 96, + "che_260402_97Fh", + 69, + [ + "hall:betrate", + "hall:dex1", + "hall:killcrew", + "hall:killcrew_person", + "hall:warnum" + ] + ], + [ + "【96기】대교", + 82, + 66, + 13, + "che_event_필살", + [ + 655417, + 10764, + 31037, + 57343, + 34961 + ], + 1, + "a53ab5ef.jpg?=20241010", + 96, + "che_260402_97Fh", + 70, + [ + "hall:dex1", + "hall:experience", + "hall:killcrew", + "hall:killcrew_person", + "hall:killnum", + "hall:killrate", + "hall:killrate_person", + "hall:occupied", + "hall:tlrate", + "hall:warnum" + ] + ], + [ + "【96기】오예", + 66, + 13, + 83, + "che_event_필살", + [ + 17219, + 3523, + 12577, + 229686, + 10263 + ], + 0, + "default.jpg", + 96, + "che_260402_97Fh", + 72, + [ + "hall:dedication", + "hall:ttrate" + ] + ], + [ + "【96기】감흥", + 69, + 13, + 87, + "che_event_징병", + [ + 35660, + 14906, + 38790, + 1219523, + 48977 + ], + 1, + "2a79fbad.jpg?=20260131", + 96, + "che_260402_97Fh", + 73, + [ + "chief:9", + "hall:betgold", + "hall:betrate", + "hall:betwin", + "hall:betwingold", + "hall:dedication", + "hall:dex4", + "hall:experience", + "hall:killcrew", + "hall:killcrew_person", + "hall:killnum", + "hall:killrate", + "hall:killrate_person", + "hall:occupied", + "hall:tirate", + "hall:ttrate", + "hall:warnum", + "hall:winrate" + ] + ], + [ + "【96기】조승상", + 70, + 78, + 13, + "che_event_견고", + [ + 26703, + 36163, + 88152, + 51797, + 362069 + ], + 1, + "95aad908.png?=20260429", + 96, + "che_260402_97Fh", + 74, + [ + "hall:dex5", + "hall:tsrate", + "hall:ttrate" + ] + ], + [ + "【96기】외심장", + 68, + 13, + 81, + "che_event_신산", + [ + 14716, + 10621, + 20403, + 325902, + 12999 + ], + 1, + "36110cd.jpg?=20180826", + 96, + "che_260402_97Fh", + 75, + [ + "hall:tirate", + "hall:ttrate" + ] + ], + [ + "【96기】해원", + 67, + 13, + 83, + "che_event_필살", + [ + 37635, + 14701, + 24987, + 734933, + 70078 + ], + 1, + "8d4baa19.jpg?=20260402", + 96, + "che_260402_97Fh", + 76, + [ + "chief:7", + "hall:betrate", + "hall:betwin", + "hall:dex4", + "hall:dex5", + "hall:experience", + "hall:firenum", + "hall:killrate", + "hall:killrate_person", + "hall:occupied", + "hall:tirate", + "hall:winrate" + ] + ], + [ + "【96기】늦은건가", + 66, + 13, + 82, + "che_event_필살", + [ + 22990, + 28863, + 20197, + 299227, + 12954 + ], + 0, + "default.jpg", + 96, + "che_260402_97Fh", + 79, + [ + "hall:dex2", + "hall:tirate" + ] + ], + [ + "【96기】채운 카툰", + 68, + 80, + 13, + "che_event_징병", + [ + 32982, + 15101, + 523922, + 60614, + 43731 + ], + 1, + "1297f1d3.jpg?=20260404", + 96, + "che_260402_97Fh", + 80, + [ + "hall:dex3", + "hall:tsrate" + ] + ], + [ + "【96기】제갈여포", + 76, + 13, + 75, + "che_event_환술", + [ + 18082, + 27162, + 22333, + 425514, + 20013 + ], + 0, + "default.jpg", + 96, + "che_260402_97Fh", + 84, + [ + "hall:betrate", + "hall:dex4" + ] + ], + [ + "【96기】셀레미", + 66, + 13, + 83, + "che_event_집중", + [ + 9011, + 4687, + 2245, + 144113, + 12021 + ], + 1, + "91c55fbe.jpg?=20260205", + 96, + "che_260402_97Fh", + 86, + [ + "hall:dedication", + "hall:tirate" + ] + ], + [ + "【96기】빠나나나", + 66, + 13, + 82, + "che_event_징병", + [ + 15250, + 4367, + 12929, + 235419, + 19119 + ], + 1, + "bcc02a79.png?=20260402", + 96, + "che_260402_97Fh", + 87, + [ + "hall:dedication", + "hall:tirate" + ] + ], + [ + "【96기】지각이다~!", + 80, + 13, + 69, + "che_event_징병", + [ + 57945, + 28633, + 26903, + 509995, + 41900 + ], + 0, + "default.jpg", + 96, + "che_260402_97Fh", + 89, + [ + "hall:dex4", + "hall:tlrate", + "hall:ttrate" + ] + ], + [ + "【96기】사스케", + 75, + 13, + 72, + "che_event_징병", + [ + 61252, + 49880, + 76189, + 172238, + 570319 + ], + 1, + "1870de1b.jpg?=20260130", + 96, + "che_260402_97Fh", + 90, + [ + "hall:dedication", + "hall:dex5", + "hall:occupied" + ] + ], + [ + "【96기】Navy마초", + 79, + 91, + 15, + "che_event_필살", + [ + 626994, + 34361, + 49942, + 64978, + 37635 + ], + 1, + "37644ed3.png?=20230831", + 96, + "che_260402_97Fh", + 91, + [ + "hall:dex1", + "hall:tsrate" + ] + ], + [ + "【96기】페그오", + 68, + 82, + 14, + "che_event_징병", + [ + 22242, + 23190, + 520683, + 63420, + 23573 + ], + 0, + "default.jpg", + 96, + "che_260402_97Fh", + 172, + [ + "hall:dex3", + "hall:tsrate", + "hall:ttrate" + ] + ], + [ + "【96기】알테오젠", + 69, + 82, + 13, + "che_event_위압", + [ + 22995, + 12423, + 447578, + 42570, + 28831 + ], + 0, + "default.jpg", + 96, + "che_260402_97Fh", + 230, + [ + "hall:betgold", + "hall:betrate", + "hall:betwingold", + "hall:dex3", + "hall:killrate_person", + "hall:tsrate", + "hall:ttrate", + "hall:winrate" + ] + ], + [ + "【96기】탐구생활", + 15, + 94, + 76, + "che_event_필살", + [ + 0, + 0, + 0, + 0, + 0 + ], + 0, + "default.jpg", + 96, + "che_260402_97Fh", + 388, + [ + "hall:firenum", + "hall:tsrate" + ] + ], + [ + "【97기】감흥", + 75, + 16, + 87, + "che_event_집중", + [ + 57706, + 23331, + 13619, + 417133, + 50828 + ], + 1, + "2a79fbad.jpg?=20260131", + 97, + "che_260507_tb0I", + 9, + [ + "hall:dex4", + "hall:dex5" + ] + ], + [ + "【97기】유르", + 81, + 89, + 15, + "che_event_저격", + [ + 65344, + 592242, + 52200, + 39759, + 35776 + ], + 1, + "d2b5f0c4.png?=20260517", + 97, + "che_260507_tb0I", + 11, + [ + "hall:betgold", + "hall:betrate", + "hall:betwin", + "hall:betwingold", + "hall:dex2" + ] + ], + [ + "【97기】병리학적자세", + 76, + 15, + 93, + "che_event_필살", + [ + 57668, + 89488, + 9691, + 777071, + 57877 + ], + 1, + "3679089.jpg?=20180629", + 97, + "che_260507_tb0I", + 16, + [ + "chief:7", + "hall:betgold", + "hall:betwin", + "hall:betwingold", + "hall:dex2", + "hall:dex4", + "hall:dex5", + "hall:experience", + "hall:killrate", + "hall:killrate_person", + "hall:tirate", + "hall:winrate" + ] + ], + [ + "【97기】임사영", + 77, + 15, + 89, + "che_event_필살", + [ + 21121, + 60472, + 37131, + 426607, + 26652 + ], + 1, + "918d304e.jpg?=20251209", + 97, + "che_260507_tb0I", + 20, + [ + "hall:dex4" + ] + ], + [ + "【97기】강유", + 88, + 15, + 77, + "che_event_필살", + [ + 68116, + 40105, + 13402, + 391468, + 50829 + ], + 1, + "79e150d0.jpg?=20230921", + 97, + "che_260507_tb0I", + 23, + [ + "hall:dedication", + "hall:dex5" + ] + ], + [ + "【97기】여름비", + 76, + 93, + 15, + "che_event_필살", + [ + 70370, + 604384, + 7078, + 36573, + 28617 + ], + 0, + "default.jpg", + 97, + "che_260507_tb0I", + 27, + [ + "hall:dex2", + "hall:tsrate" + ] + ], + [ + "【97기】갑옷", + 99, + 70, + 15, + "che_event_돌격", + [ + 62812, + 70295, + 24053, + 102201, + 1154692 + ], + 1, + "3decdc32.png?=20260513", + 97, + "che_260507_tb0I", + 34, + [ + "chief:11", + "hall:betgold", + "hall:betrate", + "hall:betwin", + "hall:betwingold", + "hall:dedication", + "hall:dex5", + "hall:experience", + "hall:killcrew", + "hall:killrate", + "hall:occupied", + "hall:tlrate" + ] + ], + [ + "【97기】라인하르트", + 92, + 74, + 15, + "che_event_징병", + [ + 459405, + 98879, + 66038, + 85773, + 18515 + ], + 1, + "b97c0fb3.jpg?=20260507", + 97, + "che_260507_tb0I", + 39, + [ + "hall:dex1", + "hall:dex2", + "hall:dex3", + "hall:tlrate" + ] + ], + [ + "【97기】카이스트", + 76, + 15, + 90, + "che_event_집중", + [ + 37577, + 45256, + 37034, + 493848, + 29775 + ], + 1, + "e7e27cd6.jpg?=20221125", + 97, + "che_260507_tb0I", + 40, + [ + "hall:dex4" + ] + ], + [ + "【97기】슈퍼마리오", + 95, + 73, + 15, + "che_event_필살", + [ + 53904, + 27019, + 463288, + 56629, + 17800 + ], + 1, + "16e6d3fe.png?=20260508", + 97, + "che_260507_tb0I", + 42, + [ + "hall:dex3", + "hall:tlrate" + ] + ], + [ + "【97기】효자 독구", + 16, + 74, + 93, + "che_event_척사", + [ + 0, + 0, + 0, + 0, + 0 + ], + 1, + "5283daf7.png?=20240511", + 97, + "che_260507_tb0I", + 43, + [ + "hall:dedication", + "hall:tirate", + "hall:ttrate" + ] + ], + [ + "【97기】북오더", + 78, + 15, + 88, + "che_event_신산", + [ + 25070, + 46315, + 21447, + 512458, + 41761 + ], + 1, + "f9e4b416.gif?=20240717", + 97, + "che_260507_tb0I", + 44, + [ + "hall:betrate", + "hall:betwin", + "hall:dex4" + ] + ], + [ + "【97기】로젤리나", + 76, + 15, + 91, + "che_event_필살", + [ + 44542, + 61710, + 14093, + 498990, + 31879 + ], + 1, + "5ffe2929.png?=20260508", + 97, + "che_260507_tb0I", + 46, + [ + "chief:5", + "hall:dedication", + "hall:dex4", + "hall:tirate" + ] + ], + [ + "【97기】외심장", + 78, + 15, + 89, + "che_event_필살", + [ + 62299, + 70397, + 16248, + 473836, + 25970 + ], + 1, + "36110cd.jpg?=20180826", + 97, + "che_260507_tb0I", + 47, + [ + "hall:dex4", + "hall:tirate" + ] + ], + [ + "【97기】이세리 니나", + 78, + 89, + 15, + "che_event_척사", + [ + 13169, + 79550, + 475758, + 72255, + 53072 + ], + 1, + "fab3ef47.jpg?=20260519", + 97, + "che_260507_tb0I", + 52, + [ + "chief:10", + "hall:dedication", + "hall:dex3", + "hall:dex5", + "hall:tsrate", + "hall:ttrate" + ] + ], + [ + "【97기】펭구 코스프레 주하", + 92, + 73, + 15, + "che_event_위압", + [ + 343436, + 19150, + 12441, + 45647, + 20589 + ], + 1, + "23eec5d0.webp?=20260507", + 97, + "che_260507_tb0I", + 53, + [ + "hall:tlrate", + "hall:ttrate" + ] + ], + [ + "【97기】대교", + 94, + 72, + 15, + "che_event_필살", + [ + 543061, + 29834, + 36236, + 68426, + 43820 + ], + 1, + "a53ab5ef.jpg?=20241010", + 97, + "che_260507_tb0I", + 55, + [ + "chief:8", + "hall:dex1", + "hall:tlrate" + ] + ], + [ + "【97기】독우가", + 96, + 72, + 15, + "che_event_돌격", + [ + 49435, + 72834, + 54496, + 115298, + 793599 + ], + 1, + "3ee14b83.png?=20260526", + 97, + "che_260507_tb0I", + 56, + [ + "chief:6", + "hall:betwin", + "hall:dex5", + "hall:experience", + "hall:killnum", + "hall:killrate", + "hall:killrate_person", + "hall:occupied", + "hall:tlrate", + "hall:winrate" + ] + ], + [ + "【97기】미스터서울", + 79, + 15, + 91, + "che_event_필살", + [ + 48788, + 7506, + 15196, + 791263, + 16077 + ], + 1, + "8b41777e.jpg?=20260508", + 97, + "che_260507_tb0I", + 57, + [ + "hall:betgold", + "hall:betrate", + "hall:betwin", + "hall:betwingold", + "hall:dex4", + "hall:killcrew", + "hall:killcrew_person", + "hall:killnum", + "hall:killrate", + "hall:killrate_person", + "hall:tirate", + "hall:ttrate", + "hall:warnum", + "hall:winrate" + ] + ], + [ + "【97기】독규", + 93, + 75, + 15, + "che_event_돌격", + [ + 657576, + 37860, + 458417, + 124939, + 80356 + ], + 1, + "702cbac1.png?=20260508", + 97, + "che_260507_tb0I", + 58, + [ + "hall:betgold", + "hall:betwin", + "hall:betwingold", + "hall:dex1", + "hall:dex3", + "hall:dex5", + "hall:experience", + "hall:killcrew", + "hall:killnum", + "hall:killrate", + "hall:occupied", + "hall:tlrate", + "hall:warnum", + "hall:winrate" + ] + ], + [ + "【97기】커피한잔", + 90, + 83, + 15, + "che_event_징병", + [ + 1374557, + 13797, + 44117, + 69118, + 20370 + ], + 1, + "75f63c20.jpg?=20260519", + 97, + "che_260507_tb0I", + 59, + [ + "hall:betrate", + "hall:betwingold", + "hall:dex1", + "hall:experience", + "hall:killcrew", + "hall:killcrew_person", + "hall:killnum", + "hall:tlrate", + "hall:warnum" + ] + ], + [ + "【97기】불패", + 77, + 93, + 15, + "che_event_필살", + [ + 1010906, + 48286, + 32734, + 78537, + 42227 + ], + 1, + "d9780168.jpg?=20260507", + 97, + "che_260507_tb0I", + 60, + [ + "hall:betgold", + "hall:betwingold", + "hall:dex1", + "hall:experience", + "hall:killcrew", + "hall:killcrew_person", + "hall:killnum", + "hall:killrate", + "hall:killrate_person", + "hall:occupied", + "hall:tsrate", + "hall:warnum", + "hall:winrate" + ] + ], + [ + "【97기】정체를 숨긴자", + 73, + 93, + 16, + "che_event_징병", + [ + 774921, + 114549, + 198650, + 47865, + 46611 + ], + 1, + "1d5f1e5e.jpg?=20260521", + 97, + "che_260507_tb0I", + 61, + [ + "chief:12", + "hall:betgold", + "hall:betrate", + "hall:betwin", + "hall:betwingold", + "hall:dedication", + "hall:dex1", + "hall:dex2", + "hall:dex3", + "hall:dex5", + "hall:experience", + "hall:killcrew", + "hall:killcrew_person", + "hall:killnum", + "hall:killrate", + "hall:killrate_person", + "hall:occupied", + "hall:warnum", + "hall:winrate" + ] + ], + [ + "【97기】m유기", + 75, + 15, + 93, + "che_event_징병", + [ + 29156, + 65407, + 22427, + 415829, + 42003 + ], + 1, + "886b8c24.jpg?=20260507", + 97, + "che_260507_tb0I", + 62, + [ + "hall:dedication", + "hall:tirate" + ] + ], + [ + "【97기】어천독", + 78, + 90, + 15, + "che_event_무쌍", + [ + 456898, + 5206, + 34365, + 26005, + 20302 + ], + 0, + "default.jpg", + 97, + "che_260507_tb0I", + 63, + [ + "hall:dex1", + "hall:tsrate" + ] + ], + [ + "【97기】뚂뀨", + 68, + 73, + 13, + "che_event_견고", + [ + 264297, + 21626, + 23078, + 35126, + 21799 + ], + 1, + "18a448ba.png?=20260507", + 97, + "che_260507_tb0I", + 64, + [ + "hall:betrate", + "hall:dex1" + ] + ], + [ + "【97기】실접장", + 76, + 95, + 15, + "che_event_무쌍", + [ + 62051, + 957879, + 31441, + 78927, + 48113 + ], + 1, + "8331a216.jpg?=20260507", + 97, + "che_260507_tb0I", + 65, + [ + "hall:betgold", + "hall:betwin", + "hall:dex2", + "hall:dex5", + "hall:experience", + "hall:killcrew", + "hall:killcrew_person", + "hall:killnum", + "hall:killrate", + "hall:killrate_person", + "hall:occupied", + "hall:tsrate", + "hall:warnum", + "hall:winrate" + ] + ], + [ + "【97기】ㅊㄹㅊㄹ", + 78, + 92, + 15, + "che_event_견고", + [ + 51741, + 40127, + 828394, + 67430, + 26554 + ], + 1, + "63f1c106.png?=20230223", + 97, + "che_260507_tb0I", + 66, + [ + "hall:betwin", + "hall:dex3", + "hall:killcrew", + "hall:killcrew_person", + "hall:killrate_person", + "hall:tsrate", + "hall:ttrate", + "hall:warnum" + ] + ], + [ + "【97기】척", + 76, + 92, + 15, + "che_event_돌격", + [ + 516037, + 35616, + 86990, + 67122, + 43102 + ], + 1, + "7cb75480.png?=20221202", + 97, + "che_260507_tb0I", + 67, + [ + "hall:dex1", + "hall:dex3", + "hall:occupied", + "hall:tsrate" + ] + ], + [ + "【97기】챱구", + 78, + 92, + 15, + "che_event_견고", + [ + 40889, + 33591, + 1162369, + 49987, + 28017 + ], + 1, + "4111c4ad.jpg?=20260516", + 97, + "che_260507_tb0I", + 68, + [ + "hall:dex3", + "hall:experience", + "hall:killcrew", + "hall:killcrew_person", + "hall:killnum", + "hall:killrate", + "hall:killrate_person", + "hall:tsrate", + "hall:warnum", + "hall:winrate" + ] + ], + [ + "【97기】NK", + 100, + 71, + 15, + "che_event_필살", + [ + 54145, + 81211, + 63572, + 142703, + 1394833 + ], + 1, + "b1dd7d45.jpg?=20260205", + 97, + "che_260507_tb0I", + 69, + [ + "hall:dex5", + "hall:experience", + "hall:killcrew", + "hall:killcrew_person", + "hall:killnum", + "hall:killrate", + "hall:occupied", + "hall:tlrate", + "hall:warnum" + ] + ], + [ + "【97기】호나", + 77, + 89, + 15, + "che_event_징병", + [ + 76757, + 87525, + 692443, + 105885, + 31920 + ], + 0, + "default.jpg", + 97, + "che_260507_tb0I", + 70, + [ + "hall:dex3", + "hall:killcrew_person", + "hall:tsrate", + "hall:ttrate", + "hall:warnum" + ] + ], + [ + "【97기】키레네", + 80, + 88, + 15, + "che_event_척사", + [ + 69995, + 625000, + 3808, + 81698, + 38489 + ], + 1, + "6f74035f.png?=20260515", + 97, + "che_260507_tb0I", + 71, + [ + "hall:dex2", + "hall:occupied", + "hall:tsrate", + "hall:winrate" + ] + ], + [ + "【97기】허달려과장", + 78, + 15, + 89, + "che_event_신산", + [ + 37489, + 20276, + 24556, + 405353, + 40009 + ], + 1, + "ad0adb6d.png?=20260507", + 97, + "che_260507_tb0I", + 76, + [ + "hall:betgold", + "hall:betrate", + "hall:betwingold", + "hall:tirate" + ] + ], + [ + "【97기】장원영", + 75, + 15, + 89, + "che_event_필살", + [ + 50506, + 38884, + 6645, + 227431, + 8115 + ], + 1, + "837ecd58.jpg?=20260313", + 97, + "che_260507_tb0I", + 89, + [ + "hall:dedication", + "hall:ttrate" + ] + ], + [ + "【97기】또지각이다!", + 87, + 15, + 79, + "che_event_징병", + [ + 68142, + 61379, + 50751, + 588899, + 43921 + ], + 0, + "default.jpg", + 97, + "che_260507_tb0I", + 90, + [ + "hall:dex4" + ] + ], + [ + "【97기】아르망디", + 77, + 90, + 16, + "che_event_척사", + [ + 16217, + 32069, + 580175, + 62144, + 44980 + ], + 0, + "default.jpg", + 97, + "che_260507_tb0I", + 210, + [ + "hall:betrate", + "hall:dex3", + "hall:killrate_person", + "hall:occupied" + ] + ], + [ + "【97기】김야곤", + 90, + 80, + 15, + "che_event_저격", + [ + 36687, + 739761, + 43915, + 50136, + 17894 + ], + 1, + "8b70d1b5.jpg?=20260301", + 97, + "che_260507_tb0I", + 218, + [ + "hall:betgold", + "hall:betrate", + "hall:betwingold", + "hall:dex2", + "hall:killcrew_person", + "hall:killnum", + "hall:killrate_person", + "hall:tlrate", + "hall:winrate" + ] + ], + [ + "【97기】사스케", + 76, + 15, + 89, + "che_event_필살", + [ + 38401, + 54913, + 34866, + 453048, + 42896 + ], + 1, + "1870de1b.jpg?=20260130", + 97, + "che_260507_tb0I", + 219, + [ + "chief:9", + "hall:dedication", + "hall:dex4" + ] + ], + [ + "【97기】1557", + 78, + 86, + 17, + "che_event_척사", + [ + 60065, + 436004, + 14883, + 31195, + 16784 + ], + 1, + "e122674d.png?=20260508", + 97, + "che_260507_tb0I", + 220, + [ + "hall:dex2", + "hall:ttrate" + ] + ], + [ + "【97기】로비", + 15, + 73, + 93, + "che_event_척사", + [ + 0, + 0, + 0, + 0, + 0 + ], + 1, + "71751125.png?=20240823", + 97, + "che_260507_tb0I", + 258, + [ + "hall:tirate", + "hall:ttrate" + ] + ], + [ + "【97기】Navy마초", + 77, + 16, + 87, + "che_event_신산", + [ + 31087, + 36962, + 45332, + 344482, + 18382 + ], + 1, + "37644ed3.png?=20230831", + 97, + "che_260507_tb0I", + 263, + [ + "hall:tirate" + ] + ], + [ + "【97기】불장", + 77, + 86, + 15, + "che_event_징병", + [ + 62978, + 207865, + 21387, + 21181, + 5183 + ], + 0, + "default.jpg", + 97, + "che_260507_tb0I", + 271, + [ + "hall:dex2" + ] + ], + [ + "【97기】우유", + 77, + 87, + 17, + "che_event_돌격", + [ + 519619, + 27666, + 53603, + 76191, + 30298 + ], + 0, + "default.jpg", + 97, + "che_260507_tb0I", + 307, + [ + "hall:dex1", + "hall:ttrate" + ] + ], + [ + "【97기】지각셀레미", + 76, + 15, + 90, + "che_event_집중", + [ + 22381, + 13804, + 9615, + 277887, + 0 + ], + 1, + "91c55fbe.jpg?=20260205", + 97, + "che_260507_tb0I", + 318, + [ + "hall:tirate" + ] + ], + [ + "【97기】바테카", + 15, + 73, + 92, + "che_event_집중", + [ + 0, + 0, + 0, + 0, + 0 + ], + 0, + "default.jpg", + 97, + "che_260507_tb0I", + 392, + [ + "hall:dedication" + ] + ], + [ + "【98기】흑인", + 91, + 83, + 15, + "che_event_저격", + [ + 572727, + 316758, + 291210, + 161537, + 41821 + ], + 1, + "9cf91e24.png?=20260528", + 98, + "che_260528_bH1D", + 12, + [ + "hall:betgold", + "hall:betwin", + "hall:betwingold", + "hall:dex1", + "hall:dex2", + "hall:winrate" + ] + ], + [ + "【98기】쌍화차", + 78, + 68, + 13, + "che_event_견고", + [ + 433802, + 21480, + 55819, + 65585, + 12680 + ], + 1, + "9435849f.jpg?=20260528", + 98, + "che_260528_bH1D", + 18, + [ + "hall:betrate", + "hall:dex1" + ] + ], + [ + "【98기】모리아 루루카", + 80, + 92, + 15, + "che_event_저격", + [ + 83320, + 1062462, + 71218, + 166892, + 73688 + ], + 1, + "a81e2a4c.png?=20260528", + 98, + "che_260528_bH1D", + 19, + [ + "hall:dex2", + "hall:dex5", + "hall:killrate_person" + ] + ], + [ + "【98기】삼모야호", + 67, + 13, + 83, + "che_event_필살", + [ + 35879, + 17316, + 41361, + 690414, + 47068 + ], + 0, + "default.jpg", + 98, + "che_260528_bH1D", + 21, + [ + "chief:7", + "hall:betgold", + "hall:betwin", + "hall:betwingold", + "hall:dex4", + "hall:dex5", + "hall:killnum", + "hall:killrate", + "hall:killrate_person", + "hall:tirate", + "hall:ttrate", + "hall:winrate" + ] + ], + [ + "【98기】MC배짱", + 70, + 81, + 14, + "che_event_필살", + [ + 67513, + 32073, + 674156, + 77686, + 41922 + ], + 1, + "74c2a27b.jpg?=20260617", + 98, + "che_260528_bH1D", + 23, + [ + "hall:dex1", + "hall:dex3", + "hall:dex5", + "hall:killcrew", + "hall:killcrew_person", + "hall:killnum", + "hall:occupied", + "hall:tsrate", + "hall:ttrate", + "hall:warnum", + "hall:winrate" + ] + ], + [ + "【98기】Hide_D", + 67, + 13, + 81, + "che_event_저격", + [ + 34207, + 22656, + 22531, + 271143, + 23831 + ], + 1, + "4569d848.png?=20230612", + 98, + "che_260528_bH1D", + 28, + [ + "hall:dedication", + "hall:tirate", + "hall:ttrate" + ] + ], + [ + "【98기】감흥", + 24, + 77, + 87, + "che_event_저격", + [ + 34587, + 466755, + 25482, + 72512, + 32231 + ], + 1, + "2a79fbad.jpg?=20260131", + 98, + "che_260528_bH1D", + 32, + [ + "hall:dex2" + ] + ], + [ + "【98기】호나", + 80, + 92, + 15, + "che_event_돌격", + [ + 443488, + 54218, + 442507, + 152335, + 43695 + ], + 0, + "default.jpg", + 98, + "che_260528_bH1D", + 33, + [ + "hall:dex1", + "hall:tsrate" + ] + ], + [ + "【98기】별 수호자 주하", + 81, + 68, + 13, + "che_event_위압", + [ + 37195, + 538097, + 35790, + 42780, + 23364 + ], + 1, + "f6d0886e.jpg?=20260528", + 98, + "che_260528_bH1D", + 36, + [ + "hall:dex2", + "hall:tlrate" + ] + ], + [ + "【98기】외심장", + 81, + 15, + 92, + "che_event_의술", + [ + 78141, + 19248, + 91240, + 761617, + 73539 + ], + 1, + "36110cd.jpg?=20180826", + 98, + "che_260528_bH1D", + 42, + [ + "hall:dex5" + ] + ], + [ + "【98기】랜임장", + 67, + 83, + 13, + "che_event_필살", + [ + 54796, + 723112, + 67656, + 56826, + 20940 + ], + 0, + "default.jpg", + 98, + "che_260528_bH1D", + 49, + [ + "chief:10", + "hall:betwin", + "hall:dex2", + "hall:killcrew", + "hall:killcrew_person", + "hall:killnum", + "hall:killrate", + "hall:killrate_person", + "hall:tsrate", + "hall:warnum", + "hall:winrate" + ] + ], + [ + "【98기】냥냥냥", + 85, + 64, + 13, + "che_event_척사", + [ + 460587, + 64949, + 27259, + 47849, + 29817 + ], + 1, + "d1615704.png?=20260530", + 98, + "che_260528_bH1D", + 51, + [ + "hall:dex1", + "hall:dex2", + "hall:tlrate" + ] + ], + [ + "【98기】네이", + 103, + 70, + 15, + "che_event_무쌍", + [ + 94835, + 65432, + 81037, + 142957, + 1408396 + ], + 0, + "default.jpg", + 98, + "che_260528_bH1D", + 55, + [ + "hall:dex5", + "hall:experience", + "hall:killcrew", + "hall:killrate", + "hall:killrate_person", + "hall:occupied", + "hall:tlrate", + "hall:warnum" + ] + ], + [ + "【98기】대교", + 83, + 64, + 14, + "che_event_필살", + [ + 27652, + 37591, + 526666, + 57687, + 30025 + ], + 1, + "a53ab5ef.jpg?=20241010", + 98, + "che_260528_bH1D", + 56, + [ + "hall:dex3", + "hall:tlrate" + ] + ], + [ + "【98기】냥떠러지", + 80, + 15, + 96, + "che_event_징병", + [ + 33775, + 31164, + 48139, + 799929, + 20312 + ], + 1, + "2deacf0d.png?=20260528", + 98, + "che_260528_bH1D", + 63, + [ + "hall:dex4", + "hall:tirate" + ] + ], + [ + "【98기】비열님", + 82, + 65, + 14, + "che_event_의술", + [ + 41210, + 429990, + 50724, + 60065, + 23947 + ], + 1, + "fc09997e.webp?=20260527", + 98, + "che_260528_bH1D", + 64, + [ + "hall:betgold", + "hall:betrate", + "hall:betwin", + "hall:betwingold", + "hall:dex2", + "hall:occupied", + "hall:tlrate" + ] + ], + [ + "【98기】태블릿", + 69, + 13, + 84, + "che_event_징병", + [ + 30103, + 26663, + 25414, + 684135, + 23044 + ], + 1, + "6273c578.jpg?=20260528", + 98, + "che_260528_bH1D", + 67, + [ + "hall:betgold", + "hall:betrate", + "hall:betwin", + "hall:betwingold", + "hall:dedication", + "hall:dex4", + "hall:experience", + "hall:killcrew", + "hall:killcrew_person", + "hall:killnum", + "hall:occupied", + "hall:warnum" + ] + ], + [ + "【98기】블라디레나 밀리제", + 70, + 78, + 14, + "che_event_무쌍", + [ + 11530, + 40166, + 386986, + 51301, + 10951 + ], + 1, + "3ff5b554.png?=20260622", + 98, + "che_260528_bH1D", + 68, + [ + "hall:dex3", + "hall:ttrate" + ] + ], + [ + "【98기】라이덴 슈가", + 68, + 83, + 13, + "che_event_필살", + [ + 66427, + 50213, + 318264, + 45193, + 18914 + ], + 1, + "186bcf9b.jpg?=20260623", + 98, + "che_260528_bH1D", + 69, + [ + "hall:betgold", + "hall:betrate", + "hall:betwin", + "hall:betwingold", + "hall:dedication", + "hall:dex2", + "hall:dex3", + "hall:experience", + "hall:firenum", + "hall:tsrate" + ] + ], + [ + "【98기】불여시", + 67, + 13, + 82, + "che_event_집중", + [ + 20508, + 22077, + 33071, + 420053, + 28635 + ], + 0, + "default.jpg", + 98, + "che_260528_bH1D", + 70, + [ + "hall:dedication", + "hall:tirate" + ] + ], + [ + "【98기】독구", + 67, + 13, + 84, + "che_event_필살", + [ + 41169, + 27587, + 78553, + 829822, + 34518 + ], + 1, + "97fd9350.png?=20260528", + 98, + "che_260528_bH1D", + 71, + [ + "chief:12", + "hall:dedication", + "hall:dex4", + "hall:experience", + "hall:killcrew", + "hall:killcrew_person", + "hall:killnum", + "hall:killrate", + "hall:killrate_person", + "hall:occupied", + "hall:tirate", + "hall:warnum", + "hall:winrate" + ] + ], + [ + "【98기】크냥", + 66, + 13, + 82, + "che_event_의술", + [ + 43038, + 29605, + 40224, + 417171, + 21249 + ], + 0, + "default.jpg", + 98, + "che_260528_bH1D", + 72, + [ + "hall:dedication", + "hall:dex4", + "hall:tirate", + "hall:ttrate" + ] + ], + [ + "【98기】뤼엔", + 98, + 78, + 15, + "che_event_무쌍", + [ + 54691, + 37414, + 1543495, + 49339, + 30517 + ], + 1, + "b04cbe44.png?=20260601", + 98, + "che_260528_bH1D", + 73, + [ + "hall:dex3", + "hall:firenum", + "hall:killcrew", + "hall:killcrew_person", + "hall:occupied", + "hall:tlrate", + "hall:warnum" + ] + ], + [ + "【98기】카이스트", + 79, + 16, + 95, + "che_event_집중", + [ + 34834, + 96518, + 43247, + 1064288, + 29447 + ], + 1, + "e7e27cd6.jpg?=20221125", + 98, + "che_260528_bH1D", + 74, + [ + "hall:dex4", + "hall:killrate", + "hall:killrate_person" + ] + ], + [ + "【98기】독나미", + 68, + 13, + 82, + "che_event_신중", + [ + 33156, + 13499, + 59686, + 645876, + 34366 + ], + 1, + "e2846a3c.png?=20260528", + 98, + "che_260528_bH1D", + 75, + [ + "chief:9", + "hall:betrate", + "hall:dex4", + "hall:killcrew_person", + "hall:killnum", + "hall:occupied", + "hall:tirate", + "hall:winrate" + ] + ], + [ + "【98기】척", + 79, + 98, + 15, + "che_event_징병", + [ + 99279, + 46922, + 972223, + 69724, + 33410 + ], + 1, + "7cb75480.png?=20221202", + 98, + "che_260528_bH1D", + 76, + [ + "hall:dex3", + "hall:tsrate" + ] + ], + [ + "【98기】플로로", + 82, + 92, + 15, + "che_event_징병", + [ + 1156783, + 7703, + 196665, + 135383, + 45702 + ], + 0, + "default.jpg", + 98, + "che_260528_bH1D", + 77, + [ + "hall:dex1", + "hall:experience", + "hall:occupied" + ] + ], + [ + "【98기】임사영", + 67, + 13, + 81, + "che_event_집중", + [ + 14991, + 13456, + 66227, + 419064, + 31046 + ], + 1, + "918d304e.jpg?=20251209", + 98, + "che_260528_bH1D", + 79, + [ + "hall:tirate", + "hall:ttrate" + ] + ], + [ + "【98기】냥냥 아님", + 82, + 95, + 15, + "che_event_견고", + [ + 900200, + 29723, + 610417, + 81050, + 39916 + ], + 1, + "1b4c9b05.png?=20260528", + 98, + "che_260528_bH1D", + 80, + [ + "hall:betrate", + "hall:dex1", + "hall:experience", + "hall:killcrew", + "hall:killcrew_person", + "hall:killnum", + "hall:killrate", + "hall:killrate_person", + "hall:warnum" + ] + ], + [ + "【98기】앵벌스 친구 독구", + 100, + 72, + 15, + "che_event_공성", + [ + 31151, + 0, + 15746, + 4883, + 595718 + ], + 1, + "ffdb3d79.png?=20260622", + 98, + "che_260528_bH1D", + 81, + [ + "chief:6", + "hall:dex5", + "hall:killrate", + "hall:occupied", + "hall:tlrate", + "hall:winrate" + ] + ], + [ + "【98기】북오더", + 71, + 82, + 13, + "che_event_필살", + [ + 28142, + 25236, + 905036, + 38333, + 12854 + ], + 1, + "f9e4b416.gif?=20240717", + 98, + "che_260528_bH1D", + 82, + [ + "hall:betgold", + "hall:betrate", + "hall:betwin", + "hall:betwingold", + "hall:dex3", + "hall:experience", + "hall:killcrew", + "hall:killcrew_person", + "hall:killnum", + "hall:killrate", + "hall:killrate_person", + "hall:tsrate", + "hall:ttrate", + "hall:warnum", + "hall:winrate" + ] + ], + [ + "【98기】에이메스", + 94, + 78, + 15, + "che_event_견고", + [ + 115338, + 39221, + 625926, + 138214, + 19299 + ], + 1, + "e2ed861a.png?=20260528", + 98, + "che_260528_bH1D", + 84, + [ + "hall:dex3", + "hall:tlrate" + ] + ], + [ + "【98기】불패", + 66, + 85, + 13, + "che_event_징병", + [ + 1000260, + 22874, + 77666, + 159131, + 38693 + ], + 1, + "d9780168.jpg?=20260507", + 98, + "che_260528_bH1D", + 85, + [ + "chief:8", + "hall:betgold", + "hall:betrate", + "hall:betwingold", + "hall:dex1", + "hall:dex5", + "hall:experience", + "hall:killcrew", + "hall:killcrew_person", + "hall:killnum", + "hall:tsrate", + "hall:ttrate", + "hall:warnum" + ] + ], + [ + "【98기】해부학적자세", + 80, + 93, + 15, + "che_event_징병", + [ + 226149, + 380921, + 433030, + 131797, + 60056 + ], + 1, + "50015fed.jpg?=20260528", + 98, + "che_260528_bH1D", + 86, + [ + "hall:betgold", + "hall:betwin", + "hall:betwingold", + "hall:dex1", + "hall:dex2", + "hall:dex5" + ] + ], + [ + "【98기】ㅊㄹㅊㄹ", + 80, + 94, + 15, + "che_event_척사", + [ + 81391, + 73586, + 733969, + 94531, + 16957 + ], + 1, + "63f1c106.png?=20230223", + 98, + "che_260528_bH1D", + 87, + [ + "hall:betgold", + "hall:betrate", + "hall:betwin", + "hall:betwingold", + "hall:dex3", + "hall:tsrate" + ] + ], + [ + "【98기】장원영", + 80, + 15, + 95, + "che_event_집중", + [ + 49875, + 42039, + 48355, + 1083376, + 80747 + ], + 1, + "837ecd58.jpg?=20260313", + 98, + "che_260528_bH1D", + 88, + [ + "hall:dex4", + "hall:dex5", + "hall:experience", + "hall:ttrate" + ] + ], + [ + "【98기】독거노인", + 88, + 60, + 13, + "che_event_징병", + [ + 51165, + 32651, + 95581, + 142909, + 598939 + ], + 1, + "ef3c84a6.png?=20260528", + 98, + "che_260528_bH1D", + 89, + [ + "chief:11", + "hall:betgold", + "hall:betwin", + "hall:betwingold", + "hall:dedication", + "hall:dex5", + "hall:occupied", + "hall:tlrate", + "hall:ttrate" + ] + ], + [ + "【98기】Navy마초", + 68, + 78, + 14, + "che_event_징병", + [ + 56188, + 372983, + 19836, + 57601, + 34657 + ], + 1, + "37644ed3.png?=20230831", + 98, + "che_260528_bH1D", + 91, + [ + "hall:dex2", + "hall:tsrate" + ] + ], + [ + "【98기】TIME", + 80, + 94, + 17, + "che_event_격노", + [ + 713718, + 23202, + 31261, + 69206, + 17402 + ], + 0, + "default.jpg", + 98, + "che_260528_bH1D", + 100, + [ + "hall:dex1", + "hall:tsrate" + ] + ], + [ + "【98기】강유", + 90, + 16, + 82, + "che_event_의술", + [ + 65322, + 14841, + 85703, + 755175, + 26325 + ], + 1, + "79e150d0.jpg?=20230921", + 98, + "che_260528_bH1D", + 103, + [ + "hall:tlrate" + ] + ], + [ + "【98기】로비", + 13, + 63, + 85, + "che_event_반계", + [ + 0, + 0, + 0, + 0, + 0 + ], + 1, + "71751125.png?=20240823", + 98, + "che_260528_bH1D", + 174, + [ + "hall:dedication", + "hall:experience", + "hall:tirate" + ] + ], + [ + "【98기】마카다미아", + 82, + 91, + 16, + "che_event_필살", + [ + 32491, + 87221, + 1185503, + 155644, + 48380 + ], + 0, + "default.jpg", + 98, + "che_260528_bH1D", + 190, + [ + "hall:betrate", + "hall:dex3", + "hall:killrate", + "hall:killrate_person", + "hall:winrate" + ] + ], + [ + "【98기】미스티", + 81, + 16, + 96, + "che_event_집중", + [ + 32052, + 31717, + 35052, + 1449396, + 20130 + ], + 1, + "1aadcba.png?=20180908", + 98, + "che_260528_bH1D", + 197, + [ + "hall:dex4", + "hall:killcrew", + "hall:killcrew_person", + "hall:killnum", + "hall:killrate", + "hall:killrate_person", + "hall:warnum", + "hall:winrate" + ] + ], + [ + "【98기】또각셀레미", + 81, + 16, + 92, + "che_event_필살", + [ + 52512, + 17331, + 66481, + 882227, + 55622 + ], + 1, + "91c55fbe.jpg?=20260205", + 98, + "che_260528_bH1D", + 206, + [ + "chief:5", + "hall:dex4" + ] + ], + [ + "【98기】한 살 덜 먹은 독구", + 15, + 77, + 97, + "che_event_의술", + [ + 0, + 0, + 0, + 0, + 0 + ], + 1, + "5283daf7.png?=20240511", + 98, + "che_260528_bH1D", + 292, + [ + "hall:dedication" + ] + ], + [ + "【98기】소세지야채볶음", + 15, + 73, + 97, + "che_event_신중", + [ + 0, + 0, + 0, + 0, + 0 + ], + 0, + "default.jpg", + 98, + "che_260528_bH1D", + 315, + [ + "hall:dedication", + "hall:tirate" + ] + ], + [ + "【99기】이", + 80, + 92, + 16, + "che_event_무쌍", + [ + 884005, + 48361, + 30834, + 92418, + 50234 + ], + 1, + "f7998c26.jpg?=20260703", + 99, + "che_260702_i0Ri", + 6, + [ + "hall:betrate", + "hall:dex1", + "hall:killcrew_person", + "hall:tsrate", + "hall:warnum" + ] + ], + [ + "【99기】Navy마초", + 81, + 89, + 16, + "che_event_필살", + [ + 758043, + 59865, + 29462, + 104255, + 73452 + ], + 1, + "37644ed3.png?=20230831", + 99, + "che_260702_i0Ri", + 9, + [ + "hall:dex1", + "hall:dex2", + "hall:dex5", + "hall:occupied", + "hall:ttrate" + ] + ], + [ + "【99기】유여", + 88, + 16, + 82, + "che_event_신산", + [ + 115340, + 33767, + 45925, + 589699, + 32469 + ], + 0, + "default.jpg", + 99, + "che_260702_i0Ri", + 10, + [ + "hall:tlrate" + ] + ], + [ + "【99기】김야곤", + 91, + 80, + 16, + "che_event_무쌍", + [ + 222937, + 56644, + 1293540, + 71800, + 60504 + ], + 1, + "3a1f3f25.jpg?=20260702", + 99, + "che_260702_i0Ri", + 12, + [ + "hall:betgold", + "hall:betwin", + "hall:betwingold", + "hall:dex3", + "hall:experience", + "hall:killcrew", + "hall:killcrew_person", + "hall:killnum", + "hall:killrate", + "hall:killrate_person", + "hall:occupied", + "hall:warnum", + "hall:winrate" + ] + ], + [ + "【99기】와일드플라워", + 77, + 15, + 92, + "che_event_집중", + [ + 38896, + 7567, + 38222, + 453673, + 63244 + ], + 0, + "default.jpg", + 99, + "che_260702_i0Ri", + 16, + [ + "chief:9", + "hall:firenum" + ] + ], + [ + "【99기】무지장", + 13, + 60, + 87, + "che_event_척사", + [ + 0, + 0, + 0, + 0, + 0 + ], + 0, + "default.jpg", + 99, + "che_260702_i0Ri", + 17, + [ + "hall:betrate", + "hall:betwin", + "hall:betwingold", + "hall:dedication", + "hall:experience", + "hall:tirate", + "hall:ttrate" + ] + ], + [ + "【99기】바나낫", + 78, + 96, + 15, + "che_event_징병", + [ + 179178, + 57946, + 785577, + 65696, + 42720 + ], + 1, + "073c8444.gif?=20251025", + 99, + "che_260702_i0Ri", + 21, + [ + "hall:betgold", + "hall:betrate", + "hall:betwingold", + "hall:dex3", + "hall:killcrew", + "hall:killcrew_person", + "hall:tsrate" + ] + ], + [ + "【99기】외심장", + 76, + 97, + 15, + "che_event_필살", + [ + 983587, + 134599, + 177069, + 78413, + 54167 + ], + 1, + "36110cd.jpg?=20180826", + 99, + "che_260702_i0Ri", + 24, + [ + "chief:12", + "hall:dedication", + "hall:dex1", + "hall:dex2", + "hall:dex3", + "hall:experience", + "hall:killcrew", + "hall:killcrew_person", + "hall:killnum", + "hall:killrate", + "hall:killrate_person", + "hall:occupied", + "hall:warnum", + "hall:winrate" + ] + ], + [ + "【99기】대교", + 96, + 76, + 15, + "che_event_견고", + [ + 822516, + 9604, + 34597, + 104599, + 40101 + ], + 1, + "a53ab5ef.jpg?=20241010", + 99, + "che_260702_i0Ri", + 31, + [ + "chief:6", + "hall:dedication", + "hall:dex1", + "hall:tlrate" + ] + ], + [ + "【99기】야치요", + 79, + 15, + 94, + "che_event_집중", + [ + 60282, + 57093, + 29309, + 1032777, + 64881 + ], + 1, + "c0da6ec8.jpg?=20260702", + 99, + "che_260702_i0Ri", + 32, + [ + "hall:dex4", + "hall:dex5", + "hall:killcrew", + "hall:killcrew_person", + "hall:killnum", + "hall:killrate", + "hall:killrate_person", + "hall:occupied", + "hall:tirate", + "hall:warnum", + "hall:winrate" + ] + ], + [ + "【99기】커리", + 94, + 76, + 15, + "che_event_징병", + [ + 709781, + 5048, + 21584, + 113922, + 24189 + ], + 1, + "4b9e8b43.jpg?=20260703", + 99, + "che_260702_i0Ri", + 34, + [ + "hall:dex1", + "hall:tlrate" + ] + ], + [ + "【99기】99대장", + 81, + 89, + 16, + "che_event_무쌍", + [ + 1058649, + 6991, + 70582, + 118434, + 78200 + ], + 1, + "31756edd.png?=20260701", + 99, + "che_260702_i0Ri", + 38, + [ + "hall:dex1", + "hall:dex5", + "hall:experience", + "hall:killcrew", + "hall:killcrew_person", + "hall:killnum", + "hall:occupied", + "hall:ttrate" + ] + ], + [ + "【99기】골든부츠 독구", + 15, + 73, + 97, + "che_event_징병", + [ + 0, + 0, + 0, + 0, + 0 + ], + 1, + "5283daf7.png?=20240511", + 99, + "che_260702_i0Ri", + 39, + [ + "hall:tirate" + ] + ], + [ + "【99기】궁도부", + 92, + 79, + 15, + "che_event_척사", + [ + 74233, + 678055, + 11850, + 58407, + 41706 + ], + 1, + "48e54643.png?=20260703", + 99, + "che_260702_i0Ri", + 43, + [ + "hall:dex2", + "hall:tlrate" + ] + ], + [ + "【99기】냥냥", + 78, + 15, + 89, + "che_event_집중", + [ + 44173, + 37260, + 65242, + 633281, + 47005 + ], + 1, + "e66333b8.png?=20260620", + 99, + "che_260702_i0Ri", + 48, + [ + "hall:tirate" + ] + ], + [ + "【99기】임사영", + 81, + 91, + 15, + "che_event_격노", + [ + 691881, + 9675, + 47998, + 139959, + 15778 + ], + 1, + "918d304e.jpg?=20251209", + 99, + "che_260702_i0Ri", + 50, + [ + "hall:dex1", + "hall:tsrate" + ] + ], + [ + "【99기】NK", + 81, + 90, + 16, + "che_event_필살", + [ + 724917, + 10243, + 22131, + 104070, + 36984 + ], + 1, + "b1dd7d45.jpg?=20260205", + 99, + "che_260702_i0Ri", + 52, + [ + "hall:dex1", + "hall:ttrate" + ] + ], + [ + "【99기】칠무해원", + 82, + 91, + 15, + "che_event_필살", + [ + 105228, + 688432, + 23124, + 84541, + 19841 + ], + 0, + "default.jpg", + 99, + "che_260702_i0Ri", + 54, + [ + "hall:betrate", + "hall:dex2", + "hall:tsrate", + "hall:winrate" + ] + ], + [ + "【99기】수장", + 79, + 92, + 15, + "che_event_척사", + [ + 61227, + 13917, + 619892, + 101076, + 30524 + ], + 1, + "be74646a.jpg?=20260702", + 99, + "che_260702_i0Ri", + 55, + [ + "hall:dex3", + "hall:killrate", + "hall:killrate_person" + ] + ], + [ + "【99기】ㅁ.ㅁ", + 90, + 15, + 79, + "che_event_징병", + [ + 114087, + 74294, + 69113, + 743964, + 100703 + ], + 0, + "default.jpg", + 99, + "che_260702_i0Ri", + 56, + [ + "hall:betwin", + "hall:dex2", + "hall:dex4", + "hall:dex5", + "hall:ttrate" + ] + ], + [ + "【99기】나랑사귀자해원", + 79, + 16, + 93, + "che_event_필살", + [ + 97836, + 22632, + 33153, + 1156682, + 41510 + ], + 1, + "5424a3e3.jpg?=20260702", + 99, + "che_260702_i0Ri", + 58, + [ + "hall:betrate", + "hall:dex4", + "hall:experience", + "hall:killcrew", + "hall:killcrew_person", + "hall:killnum", + "hall:killrate", + "hall:killrate_person", + "hall:ttrate", + "hall:warnum", + "hall:winrate" + ] + ], + [ + "【99기】카이스트", + 79, + 15, + 93, + "che_event_척사", + [ + 43715, + 8061, + 31598, + 507194, + 58424 + ], + 1, + "e7e27cd6.jpg?=20221125", + 99, + "che_260702_i0Ri", + 59, + [ + "hall:dedication", + "hall:tirate" + ] + ], + [ + "【99기】불패", + 76, + 15, + 95, + "che_event_집중", + [ + 48792, + 26632, + 60859, + 800141, + 60080 + ], + 1, + "d9780168.jpg?=20260507", + 99, + "che_260702_i0Ri", + 60, + [ + "chief:5", + "hall:dedication", + "hall:dex4", + "hall:experience", + "hall:killrate", + "hall:killrate_person", + "hall:tirate" + ] + ], + [ + "【99기】구구가가", + 98, + 73, + 15, + "che_event_필살", + [ + 85245, + 22589, + 12038, + 74325, + 588170 + ], + 1, + "a18fc03f.webp?=20260724", + 99, + "che_260702_i0Ri", + 61, + [ + "hall:betgold", + "hall:betwin", + "hall:betwingold", + "hall:dex5", + "hall:tlrate" + ] + ], + [ + "【99기】셀레미", + 78, + 16, + 94, + "che_event_신중", + [ + 64766, + 20712, + 13208, + 810093, + 47518 + ], + 1, + "91c55fbe.jpg?=20260205", + 99, + "che_260702_i0Ri", + 62, + [ + "hall:dex4", + "hall:killnum", + "hall:occupied", + "hall:tirate", + "hall:winrate" + ] + ], + [ + "【99기】갑옷", + 86, + 60, + 13, + "che_event_공성", + [ + 16835, + 9232, + 14940, + 15034, + 622474 + ], + 1, + "d611c6fb.png?=20260624", + 99, + "che_260702_i0Ri", + 63, + [ + "hall:betgold", + "hall:betwin", + "hall:betwingold", + "hall:dex5", + "hall:experience", + "hall:killcrew", + "hall:killrate", + "hall:occupied", + "hall:tlrate" + ] + ], + [ + "【99기】사스케", + 77, + 16, + 93, + "che_event_환술", + [ + 61435, + 9910, + 14414, + 655230, + 37361 + ], + 1, + "1870de1b.jpg?=20260130", + 99, + "che_260702_i0Ri", + 64, + [ + "hall:dex4", + "hall:tirate" + ] + ], + [ + "【99기】비", + 79, + 15, + 91, + "che_event_집중", + [ + 40927, + 16898, + 32896, + 663468, + 57826 + ], + 1, + "530b20f6.jpg?=20260723", + 99, + "che_260702_i0Ri", + 65, + [ + "chief:7", + "hall:betgold", + "hall:betwin", + "hall:dedication", + "hall:dex4" + ] + ], + [ + "【99기】북오더", + 77, + 94, + 15, + "che_event_필살", + [ + 106432, + 602231, + 40068, + 136094, + 109609 + ], + 1, + "f9e4b416.gif?=20240717", + 99, + "che_260702_i0Ri", + 66, + [ + "chief:10", + "hall:betgold", + "hall:betwingold", + "hall:dex2", + "hall:dex5", + "hall:tsrate" + ] + ], + [ + "【99기】구구", + 78, + 16, + 99, + "che_event_징병", + [ + 55994, + 106010, + 54322, + 1782728, + 80846 + ], + 1, + "d8e06557.jpg?=20260702", + 99, + "che_260702_i0Ri", + 67, + [ + "hall:betgold", + "hall:betwin", + "hall:betwingold", + "hall:dex2", + "hall:dex4", + "hall:dex5", + "hall:experience", + "hall:killcrew", + "hall:killcrew_person", + "hall:killnum", + "hall:occupied", + "hall:tirate", + "hall:warnum", + "hall:winrate" + ] + ], + [ + "【99기】ㅊㄹㅊㄹ", + 78, + 94, + 15, + "che_event_척사", + [ + 663334, + 8336, + 47882, + 86124, + 54646 + ], + 1, + "63f1c106.png?=20230223", + 99, + "che_260702_i0Ri", + 68, + [ + "hall:betgold", + "hall:betrate", + "hall:betwin", + "hall:betwingold", + "hall:tsrate" + ] + ], + [ + "【99기】왜심장", + 79, + 92, + 15, + "che_event_필살", + [ + 55472, + 85058, + 822804, + 88135, + 76031 + ], + 1, + "436000da.png?=20260702", + 99, + "che_260702_i0Ri", + 69, + [ + "chief:11", + "hall:betgold", + "hall:betrate", + "hall:betwin", + "hall:betwingold", + "hall:dedication", + "hall:dex2", + "hall:dex3", + "hall:dex5", + "hall:firenum", + "hall:killrate", + "hall:killrate_person", + "hall:winrate" + ] + ], + [ + "【99기】뀨", + 16, + 96, + 17, + "che_event_척사", + [ + 0, + 0, + 0, + 0, + 0 + ], + 1, + "9afe1e7c.jpg?=20260703", + 99, + "che_260702_i0Ri", + 70, + [ + "hall:tsrate" + ] + ], + [ + "【99기】독구", + 15, + 100, + 70, + "che_event_신산", + [ + 0, + 0, + 0, + 0, + 0 + ], + 1, + "97fd9350.png?=20260528", + 99, + "che_260702_i0Ri", + 71, + [ + "hall:betrate", + "hall:firenum", + "hall:tsrate" + ] + ], + [ + "【99기】킬라플로르", + 78, + 92, + 15, + "che_event_견고", + [ + 478436, + 25101, + 17136, + 82102, + 37630 + ], + 0, + "default.jpg", + 99, + "che_260702_i0Ri", + 72, + [ + "hall:tsrate" + ] + ], + [ + "【99기】병리학적자세", + 79, + 15, + 96, + "che_event_필살", + [ + 76093, + 26601, + 63173, + 1162535, + 39373 + ], + 1, + "3679089.jpg?=20180629", + 99, + "che_260702_i0Ri", + 73, + [ + "hall:betgold", + "hall:betwin", + "hall:betwingold", + "hall:dex4", + "hall:experience", + "hall:killcrew", + "hall:killcrew_person", + "hall:killnum", + "hall:killrate", + "hall:killrate_person", + "hall:occupied", + "hall:ttrate", + "hall:warnum", + "hall:winrate" + ] + ], + [ + "【99기】해원나라여행", + 91, + 76, + 16, + "che_event_징병", + [ + 637267, + 73560, + 66129, + 82297, + 21416 + ], + 1, + "3d4ed095.png?=20260703", + 99, + "che_260702_i0Ri", + 74, + [ + "hall:dex2", + "hall:tlrate", + "hall:warnum" + ] + ], + [ + "【99기】지에엥", + 81, + 88, + 15, + "che_event_필살", + [ + 70535, + 421641, + 11583, + 42145, + 14396 + ], + 1, + "cde6f3f3.png?=20260702", + 99, + "che_260702_i0Ri", + 75, + [ + "hall:dex2" + ] + ], + [ + "【99기】제갈여포", + 80, + 16, + 93, + "che_event_척사", + [ + 77429, + 45644, + 28347, + 1364170, + 56585 + ], + 1, + "e37901c4.jpg?=20260712", + 99, + "che_260702_i0Ri", + 80, + [ + "hall:betrate", + "hall:dex4", + "hall:experience", + "hall:killcrew", + "hall:killcrew_person", + "hall:killnum", + "hall:killrate", + "hall:killrate_person", + "hall:occupied", + "hall:warnum", + "hall:winrate" + ] + ], + [ + "【99기】단단(丹丹)", + 83, + 87, + 15, + "che_event_저격", + [ + 17349, + 6934, + 554247, + 55415, + 25705 + ], + 1, + "38705d90.jpg?=20260707", + 99, + "che_260702_i0Ri", + 81, + [ + "hall:dedication", + "hall:dex3" + ] + ], + [ + "【99기】모훈사출출", + 94, + 78, + 15, + "che_event_무쌍", + [ + 957074, + 12274, + 77850, + 93202, + 53759 + ], + 0, + "default.jpg", + 99, + "che_260702_i0Ri", + 83, + [ + "hall:dex1", + "hall:dex3", + "hall:killnum", + "hall:killrate_person", + "hall:tlrate", + "hall:ttrate" + ] + ], + [ + "【99기】강유", + 90, + 15, + 80, + "che_event_척사", + [ + 32487, + 8583, + 23895, + 584241, + 21621 + ], + 1, + "79e150d0.jpg?=20230921", + 99, + "che_260702_i0Ri", + 84, + [ + "hall:tlrate" + ] + ], + [ + "【99기】나나야 시키", + 78, + 92, + 15, + "che_event_의술", + [ + 77100, + 23090, + 661081, + 88030, + 64294 + ], + 1, + "62e410b1.gif?=20250605", + 99, + "che_260702_i0Ri", + 208, + [ + "chief:8", + "hall:betrate", + "hall:dedication", + "hall:dex3", + "hall:dex5", + "hall:firenum" + ] + ], + [ + "【99기】스텝체인", + 81, + 88, + 16, + "che_event_견고", + [ + 739178, + 11475, + 58929, + 105120, + 43175 + ], + 0, + "default.jpg", + 99, + "che_260702_i0Ri", + 212, + [ + "hall:dex1", + "hall:ttrate" + ] + ], + [ + "【99기】Star", + 77, + 92, + 15, + "che_event_무쌍", + [ + 599103, + 4245, + 25111, + 66420, + 24032 + ], + 0, + "default.jpg", + 99, + "che_260702_i0Ri", + 215, + [ + "hall:tsrate" + ] + ], + [ + "【99기】최진리", + 78, + 15, + 91, + "che_event_필살", + [ + 15046, + 21156, + 36500, + 393557, + 31382 + ], + 1, + "c2356432.png?=20250929", + 99, + "che_260702_i0Ri", + 244, + [ + "hall:tirate" + ] + ], + [ + "【99기】척", + 79, + 89, + 15, + "che_event_견고", + [ + 72832, + 54943, + 763337, + 101526, + 59694 + ], + 1, + "7cb75480.png?=20221202", + 99, + "che_260702_i0Ri", + 257, + [ + "hall:dex3" + ] + ], + [ + "【99기】서희", + 94, + 15, + 76, + "che_event_환술", + [ + 54686, + 31666, + 47644, + 536433, + 31332 + ], + 0, + "default.jpg", + 99, + "che_260702_i0Ri", + 262, + [ + "hall:tlrate" + ] + ], + [ + "【99기】뭐야", + 80, + 90, + 15, + "che_event_징병", + [ + 518426, + 42481, + 270765, + 134884, + 30462 + ], + 0, + "default.jpg", + 99, + "che_260702_i0Ri", + 340, + [ + "hall:dex3", + "hall:warnum" + ] + ], + [ + "【99기】야유해원", + 17, + 76, + 90, + "che_event_신산", + [ + 0, + 0, + 0, + 0, + 0 + ], + 1, + "f92a57fd.jpg?=20260706", + 99, + "che_260702_i0Ri", + 398, + [ + "hall:ttrate" + ] + ], + [ + "【99기】푸른양귀비", + 17, + 73, + 89, + "che_event_징병", + [ + 3547, + 7060, + 1980, + 52049, + 18068 + ], + 0, + "default.jpg", + 99, + "che_260702_i0Ri", + 524, + [ + "hall:dedication" + ] + ] + ] +} diff --git a/hwe/sammo/GeneralPool/SPoolUnderU100.php b/hwe/sammo/GeneralPool/SPoolUnderU100.php index c616ee72..5e06c48a 100644 --- a/hwe/sammo/GeneralPool/SPoolUnderU100.php +++ b/hwe/sammo/GeneralPool/SPoolUnderU100.php @@ -38,9 +38,7 @@ class SPoolUnderU100 extends AbsFromUserPool public static function initPool(\MeekroDB $db) { - // 현재 ref 저장소에 보존된 공식 클래식 명장 자료는 1~29기 자료다. - // 풀 형식과 event100Unique는 이후 30~99기 자료를 같은 형태로 합칠 수 있다. - $jsonData = Json::decode(file_get_contents(__DIR__ . '/Pool/UnderS30.json')); + $jsonData = Json::decode(file_get_contents(__DIR__ . '/Pool/UnderS100.json')); $columns = $jsonData['columns']; $sqlValues = []; foreach ($jsonData['data'] as $idx => $rawItem) { diff --git a/src/build_centennial_allstar_pool.php b/src/build_centennial_allstar_pool.php new file mode 100644 index 00000000..4895fde9 --- /dev/null +++ b/src/build_centennial_allstar_pool.php @@ -0,0 +1,240 @@ + 'che_event_귀병', + 41 => 'che_event_신산', + 42 => 'che_event_환술', + 43 => 'che_event_집중', + 44 => 'che_event_신중', + 45 => 'che_event_반계', + 50 => 'che_event_보병', + 51 => 'che_event_궁병', + 52 => 'che_event_기병', + 53 => 'che_event_공성', + 60 => 'che_event_돌격', + 61 => 'che_event_무쌍', + 62 => 'che_event_견고', + 63 => 'che_event_위압', + 70 => 'che_event_저격', + 71 => 'che_event_필살', + 72 => 'che_event_징병', + 73 => 'che_event_의술', + 74 => 'che_event_격노', + 75 => 'che_event_척사', +]; + +function fail(string $message): never +{ + fwrite(STDERR, "error: {$message}\n"); + exit(1); +} + +function firstInt(array $data, array $keys): int +{ + foreach ($keys as $key) { + if (array_key_exists($key, $data) && is_numeric($data[$key])) { + return (int) $data[$key]; + } + } + fail('missing numeric field: ' . implode(' or ', $keys)); +} + +function normalizeEventSpecial(mixed $rawSpecial): ?string +{ + if (is_numeric($rawSpecial)) { + return LEGACY_SPECIAL_WAR_MAP[(int) $rawSpecial] ?? null; + } + if ( + !is_string($rawSpecial) + || $rawSpecial === '' + || $rawSpecial === '0' + || strcasecmp($rawSpecial, 'none') === 0 + ) { + return null; + } + if (str_starts_with($rawSpecial, 'che_event_')) { + return $rawSpecial; + } + if (str_starts_with($rawSpecial, 'che_')) { + return 'che_event_' . substr($rawSpecial, strlen('che_')); + } + fail("unknown historical war special: {$rawSpecial}"); +} + +function decodeSourceRow(string $line, int $lineNo): array +{ + $fields = explode("\t", rtrim($line, "\r\n"), 6); + if (count($fields) !== 6) { + fail("line {$lineNo}: expected 6 tab-separated fields, got " . count($fields)); + } + + [$phase, $serverId, $generalNo, $name, $rawData, $rawReasons] = $fields; + $data = json_decode($rawData, true, 512, JSON_THROW_ON_ERROR); + if (!is_array($data)) { + fail("line {$lineNo}: general data is not an object"); + } + + $phaseNo = (int) $phase; + $sourceGeneralNo = (int) $generalNo; + if ($phaseNo < 1 || $phaseNo > 99 || $sourceGeneralNo <= 2) { + fail("line {$lineNo}: invalid phase/general number"); + } + + $sourceName = trim($name); + if ($sourceName === '') { + fail("line {$lineNo}: empty general name"); + } + $generalName = sprintf('【%d기】%s', $phaseNo, $sourceName); + if (mb_strlen($generalName) > 32) { + fail("line {$lineNo}: generated name exceeds 32 characters: {$generalName}"); + } + + $dex = [ + firstInt($data, ['dex1', 'dex0']), + firstInt($data, ['dex2', 'dex10']), + firstInt($data, ['dex3', 'dex20']), + firstInt($data, ['dex4', 'dex30']), + firstInt($data, ['dex5', 'dex40']), + ]; + foreach ($dex as $value) { + if ($value < 0) { + fail("line {$lineNo}: negative dex value"); + } + } + + $reasons = $rawReasons === '' ? [] : explode(',', $rawReasons); + sort($reasons, SORT_STRING); + + return [ + $generalName, + firstInt($data, ['leadership', 'leader']), + firstInt($data, ['strength', 'power']), + firstInt($data, ['intel']), + normalizeEventSpecial($data['special2'] ?? null), + $dex, + firstInt($data, ['imgsvr']), + is_string($data['picture'] ?? null) && $data['picture'] !== '' + ? $data['picture'] + : 'default.jpg', + $phaseNo, + $serverId, + $sourceGeneralNo, + $reasons, + ]; +} + +if ($argc !== 2) { + fail('usage: php build_centennial_allstar_pool.php OUTPUT.json'); +} + +$outputPath = $argv[1]; +$rows = []; +$seenSources = []; +$nameIndexes = []; +$phaseCounts = []; +$reasonCounts = []; +$lineNo = 0; + +while (($line = fgets(STDIN)) !== false) { + $lineNo++; + if (trim($line) === '') { + continue; + } + try { + $row = decodeSourceRow($line, $lineNo); + } catch (JsonException $e) { + fail("line {$lineNo}: invalid JSON: {$e->getMessage()}"); + } + + $sourceKey = "{$row[8]}:{$row[10]}"; + if (isset($seenSources[$sourceKey])) { + fail("line {$lineNo}: duplicate source general {$sourceKey}"); + } + $seenSources[$sourceKey] = true; + $nameIndexes[$row[0]][] = count($rows); + $phaseCounts[$row[8]] = ($phaseCounts[$row[8]] ?? 0) + 1; + foreach ($row[11] as $reason) { + $reasonGroup = str_starts_with($reason, 'chief:') ? 'chief' : 'hall'; + $reasonCounts[$reasonGroup] = ($reasonCounts[$reasonGroup] ?? 0) + 1; + } + $rows[] = $row; +} + +if ($rows === []) { + fail('no input rows'); +} +foreach ($nameIndexes as $generalName => $indexes) { + if (count($indexes) === 1) { + continue; + } + foreach ($indexes as $index) { + $rows[$index][0] .= "#{$rows[$index][10]}"; + if (mb_strlen($rows[$index][0]) > 32) { + fail("disambiguated name exceeds 32 characters: {$rows[$index][0]}"); + } + } +} +ksort($phaseCounts, SORT_NUMERIC); +if (array_keys($phaseCounts) !== range(1, 99)) { + fail('input does not cover every phase from 1 through 99'); +} + +$payload = [ + 'columns' => OUTPUT_COLUMNS, + 'data' => $rows, +]; +$encoded = json_encode( + $payload, + JSON_PRETTY_PRINT | JSON_UNESCAPED_UNICODE | JSON_UNESCAPED_SLASHES | JSON_THROW_ON_ERROR +) . "\n"; + +$outputDir = dirname($outputPath); +if (!is_dir($outputDir)) { + fail("output directory does not exist: {$outputDir}"); +} +$tempPath = tempnam($outputDir, basename($outputPath) . '.tmp.'); +if ($tempPath === false) { + fail("could not create temporary output in {$outputDir}"); +} +if (file_put_contents($tempPath, $encoded) === false || !rename($tempPath, $outputPath)) { + @unlink($tempPath); + fail("could not write output: {$outputPath}"); +} + +fwrite( + STDERR, + sprintf( + "wrote %d candidates across phases %d-%d (%d hall reasons, %d chief reasons)\n", + count($rows), + min(array_keys($phaseCounts)), + max(array_keys($phaseCounts)), + $reasonCounts['hall'] ?? 0, + $reasonCounts['chief'] ?? 0, + ) +); diff --git a/src/centennial_allstar_candidates.sql b/src/centennial_allstar_candidates.sql new file mode 100644 index 00000000..4f195de9 --- /dev/null +++ b/src/centennial_allstar_candidates.sql @@ -0,0 +1,130 @@ +WITH +phases AS ( + SELECT + e.no AS phase_no, + e.server_id, + g.winner_nation, + e.l12name, + e.l12pic, + e.l11name, + e.l11pic, + e.l10name, + e.l10pic, + e.l9name, + e.l9pic, + e.l8name, + e.l8pic, + e.l7name, + e.l7pic, + e.l6name, + e.l6pic, + e.l5name, + e.l5pic + FROM emperior e + LEFT JOIN ng_games g ON g.server_id = e.server_id + WHERE e.no BETWEEN 1 AND 99 +), +hall_eligible AS ( + SELECT + p.phase_no, + h.server_id, + h.general_no, + h.type, + h.value, + h.id + FROM phases p + JOIN hall h ON h.server_id = p.server_id + JOIN ng_old_generals og + ON og.server_id = h.server_id + AND og.general_no = h.general_no + WHERE h.general_no > 2 + AND CAST(COALESCE(JSON_VALUE(og.data, '$.npc'), 0) AS SIGNED) = 0 +), +hall_ranked AS ( + SELECT + phase_no, + server_id, + general_no, + type, + ROW_NUMBER() OVER ( + PARTITION BY server_id, type + ORDER BY value DESC, id ASC + ) AS hall_rank + FROM hall_eligible +), +selection_reasons AS ( + SELECT + phase_no, + server_id, + general_no, + CONCAT('hall:', type) AS reason + FROM hall_ranked + WHERE hall_rank <= 10 +), +chief_slots AS ( + SELECT phase_no, server_id, winner_nation, 12 AS officer_level, l12name AS name, l12pic AS picture FROM phases + UNION ALL + SELECT phase_no, server_id, winner_nation, 11, l11name, l11pic FROM phases + UNION ALL + SELECT phase_no, server_id, winner_nation, 10, l10name, l10pic FROM phases + UNION ALL + SELECT phase_no, server_id, winner_nation, 9, l9name, l9pic FROM phases + UNION ALL + SELECT phase_no, server_id, winner_nation, 8, l8name, l8pic FROM phases + UNION ALL + SELECT phase_no, server_id, winner_nation, 7, l7name, l7pic FROM phases + UNION ALL + SELECT phase_no, server_id, winner_nation, 6, l6name, l6pic FROM phases + UNION ALL + SELECT phase_no, server_id, winner_nation, 5, l5name, l5pic FROM phases +), +chief_reasons AS ( + SELECT + c.phase_no, + c.server_id, + og.general_no, + CONCAT('chief:', c.officer_level) AS reason + FROM chief_slots c + JOIN ng_old_generals og + ON og.server_id = c.server_id + AND og.name = c.name + AND SUBSTRING_INDEX( + COALESCE(JSON_VALUE(og.data, '$.picture'), ''), + '?=', + 1 + ) = SUBSTRING_INDEX(COALESCE(c.picture, ''), '?=', 1) + AND ( + CAST(COALESCE(JSON_VALUE(og.data, '$.officer_level'), -1) AS SIGNED) = c.officer_level + OR ( + JSON_VALUE(og.data, '$.officer_level') IS NULL + AND ( + c.winner_nation IS NULL + OR CAST(JSON_VALUE(og.data, '$.nation') AS SIGNED) = c.winner_nation + ) + ) + ) + WHERE og.general_no > 2 +), +all_reasons AS ( + SELECT phase_no, server_id, general_no, reason FROM selection_reasons + UNION ALL + SELECT phase_no, server_id, general_no, reason FROM chief_reasons +) +SELECT + r.phase_no, + r.server_id, + r.general_no, + og.name, + og.data, + GROUP_CONCAT(DISTINCT r.reason ORDER BY r.reason SEPARATOR ',') AS reasons +FROM all_reasons r +JOIN ng_old_generals og + ON og.server_id = r.server_id + AND og.general_no = r.general_no +GROUP BY + r.phase_no, + r.server_id, + r.general_no, + og.name, + og.data +ORDER BY r.phase_no, r.general_no; diff --git a/tests/CentennialAllStarPoolTest.php b/tests/CentennialAllStarPoolTest.php new file mode 100644 index 00000000..9fa5af7a --- /dev/null +++ b/tests/CentennialAllStarPoolTest.php @@ -0,0 +1,87 @@ + Date: Tue, 28 Jul 2026 00:43:46 +0000 Subject: [PATCH 03/15] feat: exclude prior event seasons from all-star pool --- hwe/sammo/GeneralPool/Pool/UnderS100.json | 26933 +------------------- src/build_centennial_allstar_pool.php | 20 +- src/centennial_allstar_candidates.sql | 1 + tests/CentennialAllStarPoolTest.php | 28 +- 4 files changed, 65 insertions(+), 26917 deletions(-) diff --git a/hwe/sammo/GeneralPool/Pool/UnderS100.json b/hwe/sammo/GeneralPool/Pool/UnderS100.json index 5d0eb421..53c40558 100644 --- a/hwe/sammo/GeneralPool/Pool/UnderS100.json +++ b/hwe/sammo/GeneralPool/Pool/UnderS100.json @@ -1,4 +1,25 @@ { + "excludedEventPhases": [ + 5, + 10, + 15, + 20, + 25, + 30, + 35, + 40, + 45, + 50, + 55, + 60, + 65, + 70, + 75, + 80, + 85, + 90, + 95 + ], "columns": [ "generalName", "leadership", @@ -7356,1893 +7377,6 @@ "hall:firenum" ] ], - [ - "【5기】제노에이지", - 64, - 9, - 77, - "che_event_척사", - [ - 36402, - 20985, - 55806, - 466946, - 23361 - ], - 1, - "af4fec8.png?=20180818", - 5, - "che_181025_XPaP", - 3, - [ - "hall:dex4", - "hall:winrate" - ] - ], - [ - "【5기】박일아", - 66, - 74, - 9, - "che_event_위압", - [ - 45084, - 46785, - 538337, - 76826, - 21607 - ], - 1, - "461add7.gif?=20181022", - 5, - "che_181025_XPaP", - 4, - [ - "hall:betwin", - "hall:betwingold", - "hall:dex3", - "hall:killrate" - ] - ], - [ - "【5기】레이널드", - 66, - 75, - 9, - "che_event_징병", - [ - 470721, - 39021, - 110384, - 139118, - 20949 - ], - 1, - "39784e5.jpg?=20181119", - 5, - "che_181025_XPaP", - 5, - [ - "chief:6", - "hall:dex1", - "hall:experience", - "hall:killcrew", - "hall:warnum" - ] - ], - [ - "【5기】아유", - 63, - 9, - 76, - "che_event_징병", - [ - 71632, - 13272, - 57668, - 353287, - 20061 - ], - 1, - "13333bf.jpg?=20181025", - 5, - "che_181025_XPaP", - 6, - [ - "hall:dedication" - ] - ], - [ - "【5기】김나영", - 64, - 78, - 9, - "che_event_무쌍", - [ - 39651, - 56408, - 664139, - 105312, - 49958 - ], - 1, - "2e8d570.jpg?=20180823", - 5, - "che_181025_XPaP", - 9, - [ - "chief:10", - "hall:betwin", - "hall:betwingold", - "hall:dex3", - "hall:dex5", - "hall:experience", - "hall:killcrew", - "hall:killnum", - "hall:killrate", - "hall:tprate", - "hall:warnum", - "hall:winrate" - ] - ], - [ - "【5기】연화", - 11, - 59, - 81, - "che_event_신산", - [ - 0, - 0, - 0, - 0, - 0 - ], - 1, - "77edaa0.gif?=20181122", - 5, - "che_181025_XPaP", - 11, - [ - "hall:firenum", - "hall:tirate" - ] - ], - [ - "【5기】사로나이트광산노예", - 64, - 9, - 75, - "che_event_신중", - [ - 51428, - 22312, - 83340, - 409816, - 16341 - ], - 1, - "3b864b.jpg?=20181029", - 5, - "che_181025_XPaP", - 12, - [ - "hall:dedication", - "hall:experience", - "hall:killnum", - "hall:winrate" - ] - ], - [ - "【5기】랜덤의지배자", - 64, - 9, - 76, - "che_event_반계", - [ - 58094, - 33217, - 108516, - 495066, - 40260 - ], - 1, - "2816ad.jpg?=20181118", - 5, - "che_181025_XPaP", - 13, - [ - "chief:12", - "hall:dedication", - "hall:dex4", - "hall:dex5", - "hall:experience", - "hall:killnum", - "hall:winrate" - ] - ], - [ - "【5기】야옹", - 65, - 9, - 74, - "che_event_집중", - [ - 40373, - 21972, - 60115, - 476301, - 21049 - ], - 1, - "a2e5934.png?=20181005", - 5, - "che_181025_XPaP", - 16, - [ - "hall:dex4", - "hall:killrate", - "hall:winrate" - ] - ], - [ - "【5기】스켈레톤", - 78, - 65, - 9, - "che_event_위압", - [ - 25874, - 54281, - 781840, - 142038, - 26036 - ], - 1, - "50454b0.png?=20181119", - 5, - "che_181025_XPaP", - 17, - [ - "hall:dex3", - "hall:killcrew", - "hall:killnum", - "hall:killrate", - "hall:tlrate", - "hall:warnum", - "hall:winrate" - ] - ], - [ - "【5기】로키", - 65, - 9, - 75, - "che_event_징병", - [ - 80615, - 12769, - 74443, - 314896, - 17839 - ], - 1, - "d95dd1d.jpg?=20181025", - 5, - "che_181025_XPaP", - 18, - [ - "hall:tirate" - ] - ], - [ - "【5기】스타킹", - 72, - 67, - 9, - "che_event_돌격", - [ - 30286, - 21658, - 498047, - 103640, - 30440 - ], - 1, - "a7d4ef2.png?=20180920", - 5, - "che_181025_XPaP", - 19, - [ - "hall:dex3", - "hall:dex5", - "hall:killnum", - "hall:killrate", - "hall:winrate" - ] - ], - [ - "【5기】블루좀주세요", - 64, - 9, - 77, - "che_event_의술", - [ - 25799, - 43944, - 76290, - 485586, - 21028 - ], - 1, - "bb7b3c6.jpg?=20181105", - 5, - "che_181025_XPaP", - 23, - [ - "hall:betgold", - "hall:dex4" - ] - ], - [ - "【5기】뫄뫄", - 63, - 77, - 9, - "che_event_징병", - [ - 168985, - 33880, - 273144, - 91062, - 23927 - ], - 1, - "9f034b.jpg?=20181030", - 5, - "che_181025_XPaP", - 24, - [ - "hall:tprate" - ] - ], - [ - "【5기】whan", - 65, - 76, - 9, - "che_event_격노", - [ - 266868, - 25411, - 53288, - 112882, - 29615 - ], - 1, - "68aacd2.jpg?=20180929", - 5, - "che_181025_XPaP", - 25, - [ - "hall:dex5", - "hall:firenum" - ] - ], - [ - "【5기】객체지향", - 75, - 66, - 9, - "che_event_무쌍", - [ - 527294, - 24804, - 96714, - 119528, - 32968 - ], - 1, - "bc26a2c.png?=20181121", - 5, - "che_181025_XPaP", - 26, - [ - "chief:8", - "hall:dex1", - "hall:experience", - "hall:killcrew", - "hall:killnum", - "hall:killrate", - "hall:warnum" - ] - ], - [ - "【5기】여행중인규일", - 71, - 9, - 71, - "che_event_저격", - [ - 17754, - 38769, - 38741, - 326399, - 14612 - ], - 0, - "default.jpg", - 5, - "che_181025_XPaP", - 27, - [ - "hall:ttrate" - ] - ], - [ - "【5기】토르", - 70, - 70, - 9, - "che_event_위압", - [ - 13891, - 78002, - 475486, - 166609, - 20564 - ], - 1, - "5dc81c4.jpg?=20181025", - 5, - "che_181025_XPaP", - 28, - [ - "hall:dex3", - "hall:killcrew", - "hall:warnum" - ] - ], - [ - "【5기】사무엘", - 13, - 59, - 78, - "che_event_집중", - [ - 6, - 0, - 0, - 0, - 0 - ], - 1, - "c78beb.gif?=20181119", - 5, - "che_181025_XPaP", - 29, - [ - "hall:betgold", - "hall:betwin", - "hall:betwingold", - "hall:dedication" - ] - ], - [ - "【5기】어린이", - 69, - 67, - 9, - "che_event_보병", - [ - 198235, - 5722, - 47605, - 87111, - 4298 - ], - 0, - "default.jpg", - 5, - "che_181025_XPaP", - 30, - [ - "hall:betwin", - "hall:betwingold", - "hall:ttrate" - ] - ], - [ - "【5기】브베", - 63, - 76, - 9, - "che_event_격노", - [ - 27816, - 57873, - 358679, - 154777, - 13518 - ], - 1, - "6ad3375.gif?=20181111", - 5, - "che_181025_XPaP", - 31, - [ - "hall:tprate" - ] - ], - [ - "【5기】제갈여포", - 63, - 9, - 78, - "che_event_반계", - [ - 58703, - 44761, - 29432, - 322250, - 12465 - ], - 1, - "e8e8adc.jpg?=20180419", - 5, - "che_181025_XPaP", - 33, - [ - "hall:tirate" - ] - ], - [ - "【5기】외심장", - 64, - 9, - 76, - "che_event_반계", - [ - 36551, - 32920, - 59862, - 345185, - 26241 - ], - 1, - "36110cd.jpg?=20180826", - 5, - "che_181025_XPaP", - 34, - [ - "hall:ttrate" - ] - ], - [ - "【5기】슬라임", - 64, - 76, - 9, - "che_event_척사", - [ - 22637, - 46018, - 221505, - 75650, - 15658 - ], - 1, - "f061c0e.jpg?=20181105", - 5, - "che_181025_XPaP", - 35, - [ - "hall:betgold", - "hall:firenum", - "hall:tprate" - ] - ], - [ - "【5기】준비만전", - 9, - 68, - 71, - "che_event_척사", - [ - 0, - 0, - 0, - 5, - 0 - ], - 1, - "2baa51d.png?=20181026", - 5, - "che_181025_XPaP", - 36, - [ - "hall:betgold", - "hall:firenum", - "hall:tirate" - ] - ], - [ - "【5기】지용갓", - 65, - 9, - 74, - "che_event_반계", - [ - 29833, - 35963, - 48671, - 328830, - 15074 - ], - 1, - "1f3a6e6.png?=20180926", - 5, - "che_181025_XPaP", - 40, - [ - "hall:ttrate" - ] - ], - [ - "【5기】세미", - 79, - 62, - 9, - "che_event_무쌍", - [ - 153468, - 302113, - 65001, - 123718, - 27836 - ], - 1, - "32b7fdd.jpg?=20181115", - 5, - "che_181025_XPaP", - 41, - [ - "hall:betgold", - "hall:betrate", - "hall:betwin", - "hall:betwingold", - "hall:dex2", - "hall:dex5", - "hall:tlrate" - ] - ], - [ - "【5기】지렁이", - 12, - 61, - 77, - "che_event_귀병", - [ - 0, - 0, - 421, - 0, - 710 - ], - 0, - "default.jpg", - 5, - "che_181025_XPaP", - 42, - [ - "hall:tirate" - ] - ], - [ - "【5기】별", - 66, - 9, - 75, - "che_event_격노", - [ - 69645, - 31109, - 101201, - 510270, - 21789 - ], - 1, - "1dd6263.jpg?=20181025", - 5, - "che_181025_XPaP", - 44, - [ - "hall:betgold", - "hall:betrate", - "hall:betwin", - "hall:betwingold", - "hall:dex4" - ] - ], - [ - "【5기】국밥공주", - 73, - 65, - 9, - "che_event_돌격", - [ - 407270, - 65686, - 113947, - 98671, - 20582 - ], - 1, - "e4be574.gif?=20181030", - 5, - "che_181025_XPaP", - 45, - [ - "hall:betgold", - "hall:dex1", - "hall:tlrate" - ] - ], - [ - "【5기】n아텐 누", - 63, - 9, - 78, - "che_event_신중", - [ - 27648, - 40231, - 66665, - 446428, - 21807 - ], - 1, - "862bd8e.gif?=20181028", - 5, - "che_181025_XPaP", - 47, - [ - "hall:dedication", - "hall:dex4" - ] - ], - [ - "【5기】5분장멍펫", - 69, - 72, - 9, - "che_event_징병", - [ - 96251, - 287301, - 113313, - 111606, - 12310 - ], - 1, - "e3085b8.jpg?=20181025", - 5, - "che_181025_XPaP", - 48, - [ - "hall:dex2", - "hall:experience", - "hall:ttrate" - ] - ], - [ - "【5기】스노우화이트", - 66, - 9, - 75, - "che_event_징병", - [ - 82923, - 27480, - 131878, - 513649, - 26700 - ], - 1, - "ef55d2c.jpg?=20181115", - 5, - "che_181025_XPaP", - 51, - [ - "hall:dex4", - "hall:warnum" - ] - ], - [ - "【5기】호도르", - 63, - 9, - 77, - "che_event_의술", - [ - 51745, - 10578, - 71204, - 367610, - 25425 - ], - 1, - "4a206a1.jpg?=20181122", - 5, - "che_181025_XPaP", - 53, - [ - "hall:dex5" - ] - ], - [ - "【5기】두나", - 65, - 9, - 75, - "che_event_필살", - [ - 23003, - 30467, - 47824, - 373566, - 15048 - ], - 1, - "bf0c572.png?=20181114", - 5, - "che_181025_XPaP", - 55, - [ - "hall:dex4" - ] - ], - [ - "【5기】메브", - 82, - 9, - 9, - "che_event_위압", - [ - 2431, - 3211, - 7090, - 7353, - 168984 - ], - 1, - "eece100.jpg?=20181117", - 5, - "che_181025_XPaP", - 57, - [ - "hall:dex5", - "hall:killrate", - "hall:tlrate" - ] - ], - [ - "【5기】북오더", - 63, - 74, - 10, - "che_event_징병", - [ - 169217, - 25652, - 100926, - 70500, - 5765 - ], - 1, - "c0276e1.gif?=20180917", - 5, - "che_181025_XPaP", - 58, - [ - "hall:tprate" - ] - ], - [ - "【5기】리나 인버스", - 61, - 9, - 76, - "che_event_신중", - [ - 14351, - 18919, - 19595, - 193212, - 6067 - ], - 1, - "edea22f.jpg?=20181109", - 5, - "che_181025_XPaP", - 59, - [ - "hall:tirate" - ] - ], - [ - "【5기】사토미나미", - 64, - 76, - 9, - "che_event_격노", - [ - 120294, - 394511, - 53112, - 109495, - 14523 - ], - 1, - "dc6174a.jpg?=20181111", - 5, - "che_181025_XPaP", - 63, - [ - "hall:dex2" - ] - ], - [ - "【5기】삼남매아빠", - 77, - 66, - 9, - "che_event_징병", - [ - 43427, - 62336, - 649154, - 162123, - 17930 - ], - 0, - "default.jpg", - 5, - "che_181025_XPaP", - 64, - [ - "hall:dex3", - "hall:killcrew", - "hall:killnum", - "hall:tlrate", - "hall:warnum" - ] - ], - [ - "【5기】거베라", - 65, - 73, - 9, - "che_event_척사", - [ - 93382, - 580590, - 71425, - 118121, - 24082 - ], - 1, - "e826340.jpg?=20181115", - 5, - "che_181025_XPaP", - 67, - [ - "hall:dex2", - "hall:killcrew", - "hall:killnum", - "hall:killrate", - "hall:warnum", - "hall:winrate" - ] - ], - [ - "【5기】상냥한요승상", - 69, - 9, - 71, - "che_event_신중", - [ - 53942, - 34447, - 52894, - 481462, - 18575 - ], - 1, - "76bf7f6.jpg?=20181007", - 5, - "che_181025_XPaP", - 68, - [ - "hall:dex4", - "hall:ttrate" - ] - ], - [ - "【5기】WA2000", - 60, - 76, - 9, - "che_event_위압", - [ - 46281, - 103947, - 4803, - 41325, - 9234 - ], - 1, - "786a5da.png?=20181026", - 5, - "che_181025_XPaP", - 71, - [ - "hall:tprate" - ] - ], - [ - "【5기】로얄밀크티", - 78, - 62, - 9, - "che_event_저격", - [ - 52935, - 559654, - 62533, - 94207, - 47166 - ], - 1, - "5b28b38.png?=20181115", - 5, - "che_181025_XPaP", - 73, - [ - "chief:11", - "hall:betwin", - "hall:betwingold", - "hall:dedication", - "hall:dex2", - "hall:dex5", - "hall:experience", - "hall:killcrew", - "hall:killnum", - "hall:killrate", - "hall:tlrate", - "hall:ttrate", - "hall:winrate" - ] - ], - [ - "【5기】FFFFFF", - 79, - 62, - 9, - "che_event_돌격", - [ - 335531, - 50054, - 111408, - 128229, - 17623 - ], - 1, - "e0b1d99.jpg?=20181028", - 5, - "che_181025_XPaP", - 74, - [ - "hall:dex1", - "hall:tlrate" - ] - ], - [ - "【5기】쿠요", - 67, - 74, - 9, - "che_event_저격", - [ - 19103, - 47276, - 401889, - 99063, - 13258 - ], - 0, - "default.jpg", - 5, - "che_181025_XPaP", - 77, - [ - "hall:ttrate" - ] - ], - [ - "【5기】수장", - 71, - 69, - 9, - "che_event_징병", - [ - 393819, - 14573, - 99500, - 192367, - 10696 - ], - 1, - "d74c9d2.png?=20181115", - 5, - "che_181025_XPaP", - 79, - [ - "hall:betgold", - "hall:dex1", - "hall:warnum" - ] - ], - [ - "【5기】료우기시키", - 65, - 76, - 9, - "che_event_견고", - [ - 288785, - 13549, - 163241, - 132159, - 6912 - ], - 1, - "72a549f.png?=20181025", - 5, - "che_181025_XPaP", - 81, - [ - "hall:tprate" - ] - ], - [ - "【5기】살수묵랑", - 67, - 73, - 9, - "che_event_저격", - [ - 33956, - 358487, - 35804, - 136415, - 9525 - ], - 1, - "a9298fc.png?=20180628", - 5, - "che_181025_XPaP", - 82, - [ - "hall:dex2" - ] - ], - [ - "【5기】줄리엣", - 63, - 77, - 9, - "che_event_필살", - [ - 24721, - 174426, - 26410, - 63979, - 7668 - ], - 1, - "175639b.png?=20181025", - 5, - "che_181025_XPaP", - 83, - [ - "hall:dex2", - "hall:tprate" - ] - ], - [ - "【5기】드류", - 62, - 77, - 9, - "che_event_징병", - [ - 18350, - 133925, - 14123, - 82371, - 6921 - ], - 1, - "507327d.png?=20181001", - 5, - "che_181025_XPaP", - 84, - [ - "hall:dex2", - "hall:tprate" - ] - ], - [ - "【5기】뭐지", - 62, - 9, - 78, - "che_event_환술", - [ - 62280, - 8354, - 46707, - 334569, - 22150 - ], - 0, - "default.jpg", - 5, - "che_181025_XPaP", - 85, - [ - "hall:ttrate" - ] - ], - [ - "【5기】카이스트", - 63, - 9, - 76, - "che_event_신중", - [ - 55518, - 15320, - 85546, - 468666, - 30792 - ], - 1, - "9361ef8.jpg?=20180907", - 5, - "che_181025_XPaP", - 86, - [ - "chief:7", - "hall:dedication", - "hall:dex4", - "hall:experience", - "hall:killcrew", - "hall:killrate" - ] - ], - [ - "【5기】くま", - 63, - 9, - 76, - "che_event_척사", - [ - 36871, - 14634, - 77483, - 336560, - 26839 - ], - 1, - "73d75c2.jpg?=20180923", - 5, - "che_181025_XPaP", - 89, - [ - "chief:5" - ] - ], - [ - "【5기】민트 초코 칩", - 66, - 9, - 72, - "che_event_저격", - [ - 43273, - 10727, - 56284, - 260973, - 274258 - ], - 1, - "50a2a41.jpg?=20180929", - 5, - "che_181025_XPaP", - 91, - [ - "chief:9", - "hall:dex5", - "hall:experience" - ] - ], - [ - "【5기】랜임살인마", - 76, - 63, - 9, - "che_event_궁병", - [ - 62454, - 70517, - 441757, - 105519, - 9895 - ], - 0, - "default.jpg", - 5, - "che_181025_XPaP", - 92, - [ - "hall:dex3", - "hall:tlrate" - ] - ], - [ - "【5기】아미노", - 66, - 72, - 9, - "che_event_견고", - [ - 81769, - 261462, - 29042, - 83248, - 15730 - ], - 1, - "597abe5.png?=20181111", - 5, - "che_181025_XPaP", - 94, - [ - "hall:dex2" - ] - ], - [ - "【5기】아이린", - 64, - 75, - 9, - "che_event_견고", - [ - 26936, - 54688, - 348801, - 69258, - 13273 - ], - 1, - "8dac73c.jpg?=20180922", - 5, - "che_181025_XPaP", - 96, - [ - "hall:tprate" - ] - ], - [ - "【5기】나님짱짱맨", - 62, - 9, - 77, - "che_event_환술", - [ - 10217, - 16335, - 33484, - 245139, - 10266 - ], - 0, - "default.jpg", - 5, - "che_181025_XPaP", - 97, - [ - "hall:tirate" - ] - ], - [ - "【5기】엉엉", - 65, - 75, - 9, - "che_event_척사", - [ - 420738, - 25425, - 55150, - 134625, - 17382 - ], - 1, - "e6d276a.jpg?=20181115", - 5, - "che_181025_XPaP", - 101, - [ - "hall:dex1", - "hall:firenum" - ] - ], - [ - "【5기】이블린", - 63, - 9, - 77, - "che_event_신중", - [ - 41156, - 35238, - 49522, - 310521, - 12249 - ], - 0, - "default.jpg", - 5, - "che_181025_XPaP", - 103, - [ - "hall:ttrate" - ] - ], - [ - "【5기】김민주", - 72, - 65, - 9, - "che_event_척사", - [ - 319408, - 14538, - 73075, - 90368, - 16276 - ], - 1, - "77f63a8.png?=20181115", - 5, - "che_181025_XPaP", - 105, - [ - "hall:dex1" - ] - ], - [ - "【5기】견문왕리즈나", - 48, - 49, - 49, - "che_event_귀병", - [ - 0, - 0, - 0, - 0, - 0 - ], - 1, - "8a79079.png?=20181025", - 5, - "che_181025_XPaP", - 106, - [ - "hall:firenum" - ] - ], - [ - "【5기】영원한랜임", - 60, - 9, - 79, - "che_event_격노", - [ - 36277, - 32636, - 9351, - 190876, - 7650 - ], - 0, - "default.jpg", - 5, - "che_181025_XPaP", - 107, - [ - "hall:tirate" - ] - ], - [ - "【5기】사스케", - 76, - 62, - 9, - "che_event_무쌍", - [ - 175522, - 8297, - 37318, - 90551, - 6779 - ], - 1, - "4c58102.jpg?=20180927", - 5, - "che_181025_XPaP", - 108, - [ - "hall:betgold", - "hall:tlrate" - ] - ], - [ - "【5기】리플", - 65, - 74, - 9, - "che_event_견고", - [ - 389791, - 12682, - 131145, - 125222, - 19270 - ], - 1, - "cb8bb48.jpg?=20181026", - 5, - "che_181025_XPaP", - 110, - [ - "hall:dex1", - "hall:warnum" - ] - ], - [ - "【5기】새장속의 이상향", - 10, - 62, - 75, - "che_event_징병", - [ - 0, - 0, - 0, - 0, - 0 - ], - 1, - "83e3447.png?=20181025", - 5, - "che_181025_XPaP", - 111, - [ - "hall:firenum" - ] - ], - [ - "【5기】공주", - 73, - 65, - 9, - "che_event_징병", - [ - 89159, - 330430, - 37518, - 95746, - 12310 - ], - 1, - "d5bbf17.jpg?=20181122", - 5, - "che_181025_XPaP", - 115, - [ - "hall:dex2", - "hall:tlrate" - ] - ], - [ - "【5기】앵서벌서", - 76, - 66, - 9, - "che_event_징병", - [ - 368363, - 77168, - 94439, - 172024, - 10765 - ], - 1, - "4a0ff8e.gif?=20181117", - 5, - "che_181025_XPaP", - 119, - [ - "hall:dex1" - ] - ], - [ - "【5기】난동", - 15, - 56, - 79, - "che_event_척사", - [ - 0, - 0, - 0, - 0, - 0 - ], - 0, - "default.jpg", - 5, - "che_181025_XPaP", - 120, - [ - "hall:dedication" - ] - ], - [ - "【5기】마다라키 프랑", - 9, - 61, - 77, - "che_event_신산", - [ - 0, - 0, - 0, - 0, - 0 - ], - 1, - "9cbedce.jpg?=20181024", - 5, - "che_181025_XPaP", - 130, - [ - "hall:firenum" - ] - ], - [ - "【5기】쒸프트키까안빠쪄요", - 75, - 65, - 9, - "che_event_돌격", - [ - 27314, - 54053, - 502008, - 102585, - 34047 - ], - 1, - "df1edd9.jpg?=20181112", - 5, - "che_181025_XPaP", - 131, - [ - "hall:dex3", - "hall:dex5" - ] - ], - [ - "【5기】쭀", - 62, - 9, - 76, - "che_event_척사", - [ - 48317, - 31939, - 28204, - 293075, - 15064 - ], - 0, - "default.jpg", - 5, - "che_181025_XPaP", - 143, - [ - "hall:dedication" - ] - ], - [ - "【5기】소열제유비", - 67, - 73, - 9, - "che_event_척사", - [ - 25089, - 42398, - 408605, - 108503, - 15546 - ], - 1, - "a3b1bbb.png?=20180927", - 5, - "che_181025_XPaP", - 162, - [ - "hall:dex3" - ] - ], - [ - "【5기】기술만딴거시킴하야", - 62, - 9, - 77, - "che_event_징병", - [ - 35186, - 31487, - 40931, - 229698, - 385 - ], - 0, - "default.jpg", - 5, - "che_181025_XPaP", - 169, - [ - "hall:firenum" - ] - ], - [ - "【5기】무지장", - 65, - 74, - 9, - "che_event_격노", - [ - 47632, - 25974, - 488333, - 103368, - 16886 - ], - 1, - "6c2bf3f.jpg?=20181122", - 5, - "che_181025_XPaP", - 181, - [ - "hall:betgold", - "hall:betrate", - "hall:betwin", - "hall:betwingold", - "hall:dedication", - "hall:dex3", - "hall:experience", - "hall:killcrew", - "hall:killnum", - "hall:winrate" - ] - ], - [ - "【5기】라이트유저", - 62, - 9, - 77, - "che_event_척사", - [ - 40748, - 18147, - 63785, - 240724, - 8400 - ], - 1, - "f546e30.jpg?=20181028", - 5, - "che_181025_XPaP", - 200, - [ - "hall:tirate" - ] - ], - [ - "【5기】나레이터킬러", - 76, - 85, - 10, - "che_event_무쌍", - [ - 472558, - 101666, - 138447, - 207689, - 14561 - ], - 0, - "default.jpg", - 5, - "che_181025_XPaP", - 331, - [ - "hall:dex1" - ] - ], - [ - "【5기】조커", - 11, - 84, - 75, - "che_event_척사", - [ - 0, - 0, - 0, - 0, - 0 - ], - 0, - "default.jpg", - 5, - "che_181025_XPaP", - 347, - [ - "hall:firenum" - ] - ], - [ - "【5기】천괴금", - 11, - 71, - 86, - "che_event_신중", - [ - 0, - 0, - 0, - 0, - 0 - ], - 1, - "f10e3d9.png?=20180702", - 5, - "che_181025_XPaP", - 394, - [ - "hall:tirate" - ] - ], [ "【6기】카이스트", 71, @@ -16767,1600 +14901,6 @@ "chief:8" ] ], - [ - "【10기】Hide_D", - 88, - 9, - 56, - "che_event_저격", - [ - 0, - 1516, - 8616, - 0, - 1486882 - ], - 1, - "ee5accd.jpg?=20190411", - 10, - "che_190509_88Ug", - 5, - [ - "hall:dex2", - "hall:dex3" - ] - ], - [ - "【10기】카라멜", - 88, - 9, - 9, - "che_event_저격", - [ - 0, - 0, - 0, - 0, - 318633 - ], - 1, - "9739f48.png?=20190510", - 10, - "che_190509_88Ug", - 7, - [ - "hall:dedication", - "hall:tlrate" - ] - ], - [ - "【10기】추레라", - 84, - 58, - 9, - "che_event_저격", - [ - 0, - 2797, - 1948, - 0, - 1199554 - ], - 1, - "5011028.jpg?=20190515", - 10, - "che_190509_88Ug", - 8, - [ - "hall:dex2", - "hall:dex3", - "hall:dex5", - "hall:experience", - "hall:killcrew", - "hall:warnum" - ] - ], - [ - "【10기】이드", - 87, - 57, - 9, - "che_event_저격", - [ - 0, - 0, - 0, - 0, - 1373926 - ], - 1, - "94635d.jpg?=20190412", - 10, - "che_190509_88Ug", - 12, - [ - "hall:dex5", - "hall:experience", - "hall:killcrew", - "hall:killnum", - "hall:killrate", - "hall:warnum", - "hall:winrate" - ] - ], - [ - "【10기】비스마르크", - 81, - 9, - 61, - "che_event_저격", - [ - 0, - 0, - 0, - 0, - 1451378 - ], - 0, - "default.jpg", - 10, - "che_190509_88Ug", - 13, - [ - "hall:betgold", - "hall:dex5", - "hall:killcrew", - "hall:killnum", - "hall:killrate", - "hall:warnum" - ] - ], - [ - "【10기】교통경찰", - 83, - 57, - 9, - "che_event_저격", - [ - 0, - 0, - 0, - 0, - 248443 - ], - 1, - "579af6f.jpg?=20190510", - 10, - "che_190509_88Ug", - 14, - [ - "hall:dedication" - ] - ], - [ - "【10기】아유", - 87, - 56, - 9, - "che_event_저격", - [ - 0, - 0, - 0, - 0, - 1201097 - ], - 1, - "ba186bf.gif?=20181220", - 10, - "che_190509_88Ug", - 16, - [ - "chief:8", - "hall:experience", - "hall:killrate" - ] - ], - [ - "【10기】신호등", - 81, - 56, - 9, - "che_event_저격", - [ - 0, - 0, - 4756, - 0, - 408973 - ], - 1, - "2959525.gif?=20190511", - 10, - "che_190509_88Ug", - 18, - [ - "hall:dex3" - ] - ], - [ - "【10기】과학 5호", - 86, - 10, - 57, - "che_event_저격", - [ - 0, - 0, - 0, - 0, - 1695198 - ], - 0, - "default.jpg", - 10, - "che_190509_88Ug", - 19, - [ - "hall:betgold", - "hall:betrate", - "hall:betwin", - "hall:betwingold", - "hall:dex5", - "hall:experience", - "hall:firenum", - "hall:killcrew", - "hall:killnum", - "hall:ttrate", - "hall:warnum", - "hall:winrate" - ] - ], - [ - "【10기】Defender", - 86, - 57, - 9, - "che_event_저격", - [ - 0, - 0, - 389, - 0, - 1035933 - ], - 1, - "622da6b.jpg?=20190511", - 10, - "che_190509_88Ug", - 20, - [ - "chief:10", - "hall:winrate" - ] - ], - [ - "【10기】김여사", - 83, - 58, - 9, - "che_event_저격", - [ - 0, - 2022, - 1890, - 0, - 542604 - ], - 1, - "bab8446.jpg?=20190607", - 10, - "che_190509_88Ug", - 22, - [ - "hall:dedication", - "hall:dex2", - "hall:experience" - ] - ], - [ - "【10기】양대가리", - 82, - 60, - 9, - "che_event_저격", - [ - 0, - 0, - 0, - 0, - 832628 - ], - 1, - "3f6d349.png?=20190611", - 10, - "che_190509_88Ug", - 23, - [ - "chief:12", - "hall:killrate" - ] - ], - [ - "【10기】런닝머신", - 83, - 55, - 14, - "che_event_저격", - [ - 0, - 0, - 0, - 0, - 1373421 - ], - 1, - "92484bf.gif?=20190530", - 10, - "che_190509_88Ug", - 24, - [ - "hall:dex5", - "hall:killcrew", - "hall:killnum", - "hall:warnum" - ] - ], - [ - "【10기】이쓰미", - 68, - 9, - 73, - "che_event_저격", - [ - 0, - 0, - 0, - 0, - 618683 - ], - 1, - "fd6a0fd.jpg?=20181212", - 10, - "che_190509_88Ug", - 25, - [ - "chief:9", - "hall:tirate" - ] - ], - [ - "【10기】음주단속", - 86, - 57, - 9, - "che_event_저격", - [ - 0, - 1828, - 0, - 0, - 770309 - ], - 1, - "71e9cfe.jpg?=20190510", - 10, - "che_190509_88Ug", - 26, - [ - "hall:dex2" - ] - ], - [ - "【10기】rwitch", - 82, - 9, - 57, - "che_event_저격", - [ - 0, - 4341, - 0, - 0, - 672844 - ], - 1, - "4d82adb.jpg?=20190325", - 10, - "che_190509_88Ug", - 28, - [ - "hall:dex2" - ] - ], - [ - "【10기】SSS급페라르기니", - 83, - 10, - 59, - "che_event_저격", - [ - 0, - 3867, - 10944, - 2294, - 1211752 - ], - 0, - "default.jpg", - 10, - "che_190509_88Ug", - 29, - [ - "hall:dex2", - "hall:dex3", - "hall:dex4", - "hall:dex5", - "hall:killcrew", - "hall:killnum", - "hall:warnum" - ] - ], - [ - "【10기】과속방지턱", - 92, - 56, - 9, - "che_event_저격", - [ - 0, - 0, - 0, - 0, - 1390908 - ], - 1, - "d092f20.jpg?=20190511", - 10, - "che_190509_88Ug", - 30, - [ - "hall:dex5", - "hall:experience", - "hall:killcrew", - "hall:killnum", - "hall:killrate", - "hall:tlrate", - "hall:warnum", - "hall:winrate" - ] - ], - [ - "【10기】소열제유비", - 73, - 68, - 9, - "che_event_저격", - [ - 0, - 0, - 0, - 0, - 489102 - ], - 1, - "a3b1bbb.png?=20180927", - 10, - "che_190509_88Ug", - 32, - [ - "hall:tprate" - ] - ], - [ - "【10기】ㅅㅎㅁㄱ", - 9, - 57, - 85, - "che_event_저격", - [ - 0, - 0, - 0, - 0, - 0 - ], - 1, - "a19edc0.gif?=20190411", - 10, - "che_190509_88Ug", - 34, - [ - "hall:betgold", - "hall:betrate", - "hall:betwin", - "hall:betwingold", - "hall:tirate" - ] - ], - [ - "【10기】개미호랑이", - 88, - 9, - 56, - "che_event_저격", - [ - 0, - 0, - 0, - 0, - 1624312 - ], - 1, - "ba5b648.jpg?=20190610", - 10, - "che_190509_88Ug", - 36, - [ - "hall:dex5", - "hall:killcrew", - "hall:killnum", - "hall:killrate", - "hall:warnum", - "hall:winrate" - ] - ], - [ - "【10기】갓트라브", - 81, - 57, - 9, - "che_event_저격", - [ - 0, - 0, - 0, - 0, - 216548 - ], - 0, - "default.jpg", - 10, - "che_190509_88Ug", - 37, - [ - "hall:dedication" - ] - ], - [ - "【10기】붕붕", - 87, - 31, - 33, - "che_event_저격", - [ - 0, - 0, - 0, - 0, - 1040956 - ], - 1, - "3958021.jpg?=20190509", - 10, - "che_190509_88Ug", - 38, - [ - "hall:betgold", - "hall:tlrate" - ] - ], - [ - "【10기】북오더", - 85, - 58, - 9, - "che_event_저격", - [ - 0, - 0, - 0, - 0, - 1496612 - ], - 1, - "4939af6.gif?=20190609", - 10, - "che_190509_88Ug", - 40, - [ - "chief:11", - "hall:dex5", - "hall:killrate", - "hall:warnum" - ] - ], - [ - "【10기】병리학적자세", - 64, - 9, - 78, - "che_event_저격", - [ - 0, - 0, - 0, - 41371, - 630303 - ], - 1, - "3679089.jpg?=20180629", - 10, - "che_190509_88Ug", - 42, - [ - "hall:dex4", - "hall:firenum", - "hall:tirate" - ] - ], - [ - "【10기】카오스피닉스", - 82, - 34, - 33, - "che_event_저격", - [ - 0, - 1231, - 2677, - 2398, - 507552 - ], - 1, - "2af0641.jpg?=20180706", - 10, - "che_190509_88Ug", - 43, - [ - "hall:dex3", - "hall:dex4" - ] - ], - [ - "【10기】스즈나", - 85, - 57, - 9, - "che_event_저격", - [ - 0, - 0, - 0, - 0, - 889347 - ], - 1, - "1945e60.jpg?=20190513", - 10, - "che_190509_88Ug", - 44, - [ - "hall:firenum", - "hall:winrate" - ] - ], - [ - "【10기】수장", - 82, - 59, - 9, - "che_event_저격", - [ - 0, - 0, - 4352, - 369, - 566867 - ], - 1, - "5dca65b.jpg?=20190510", - 10, - "che_190509_88Ug", - 48, - [ - "hall:dedication", - "hall:dex3", - "hall:dex4", - "hall:winrate" - ] - ], - [ - "【10기】끼이이이이익", - 82, - 57, - 9, - "che_event_저격", - [ - 0, - 0, - 0, - 0, - 573957 - ], - 0, - "default.jpg", - 10, - "che_190509_88Ug", - 49, - [ - "hall:experience", - "hall:ttrate" - ] - ], - [ - "【10기】무면허음주졸음운전", - 84, - 57, - 9, - "che_event_저격", - [ - 0, - 4964, - 0, - 3633, - 918989 - ], - 1, - "b31ef66.png?=20190509", - 10, - "che_190509_88Ug", - 50, - [ - "hall:betgold", - "hall:dex2", - "hall:dex4" - ] - ], - [ - "【10기】조승상", - 75, - 61, - 9, - "che_event_저격", - [ - 0, - 0, - 0, - 1978, - 242428 - ], - 1, - "9842c07.jpg?=20190420", - 10, - "che_190509_88Ug", - 52, - [ - "hall:dex4" - ] - ], - [ - "【10기】코코로", - 81, - 9, - 59, - "che_event_저격", - [ - 0, - 0, - 0, - 0, - 649435 - ], - 1, - "cd05b08.jpg?=20190405", - 10, - "che_190509_88Ug", - 54, - [ - "hall:dedication", - "hall:experience" - ] - ], - [ - "【10기】v무광v", - 85, - 56, - 9, - "che_event_저격", - [ - 0, - 0, - 0, - 0, - 690965 - ], - 1, - "181fefa.jpg?=20190414", - 10, - "che_190509_88Ug", - 55, - [ - "hall:firenum" - ] - ], - [ - "【10기】이시리스", - 85, - 55, - 9, - "che_event_저격", - [ - 0, - 0, - 0, - 0, - 773039 - ], - 0, - "default.jpg", - 10, - "che_190509_88Ug", - 56, - [ - "hall:dedication", - "hall:tlrate" - ] - ], - [ - "【10기】시그마", - 81, - 9, - 57, - "che_event_저격", - [ - 0, - 0, - 0, - 0, - 384254 - ], - 1, - "6a2c77.png?=20190509", - 10, - "che_190509_88Ug", - 57, - [ - "hall:ttrate" - ] - ], - [ - "【10기】모니카", - 87, - 9, - 56, - "che_event_저격", - [ - 0, - 0, - 0, - 0, - 1527225 - ], - 1, - "2bc52ba.jpg?=20190509", - 10, - "che_190509_88Ug", - 59, - [ - "hall:dex5", - "hall:experience", - "hall:killcrew", - "hall:killnum", - "hall:killrate", - "hall:warnum", - "hall:winrate" - ] - ], - [ - "【10기】연두는말안드뤄", - 82, - 60, - 9, - "che_event_저격", - [ - 0, - 48125, - 0, - 0, - 859020 - ], - 1, - "892fca8.jpg?=20190509", - 10, - "che_190509_88Ug", - 63, - [ - "hall:dex2", - "hall:experience", - "hall:killnum", - "hall:killrate", - "hall:winrate" - ] - ], - [ - "【10기】줄리엣", - 83, - 57, - 9, - "che_event_저격", - [ - 0, - 0, - 10522, - 0, - 521782 - ], - 1, - "175639b.png?=20181025", - 10, - "che_190509_88Ug", - 69, - [ - "hall:dex3", - "hall:tlrate" - ] - ], - [ - "【10기】두나", - 52, - 14, - 87, - "che_event_저격", - [ - 0, - 0, - 0, - 0, - 5870 - ], - 1, - "bf0c572.png?=20181114", - 10, - "che_190509_88Ug", - 76, - [ - "hall:dedication", - "hall:tirate" - ] - ], - [ - "【10기】아이린", - 68, - 72, - 9, - "che_event_저격", - [ - 0, - 0, - 139266, - 0, - 298447 - ], - 1, - "8dac73c.jpg?=20180922", - 10, - "che_190509_88Ug", - 78, - [ - "hall:betgold", - "hall:betrate", - "hall:betwin", - "hall:betwingold", - "hall:dex3", - "hall:tprate" - ] - ], - [ - "【10기】주현", - 9, - 63, - 82, - "che_event_저격", - [ - 0, - 0, - 0, - 0, - 2643 - ], - 1, - "3f0c559.png?=20190509", - 10, - "che_190509_88Ug", - 79, - [ - "hall:firenum", - "hall:tirate", - "hall:ttrate" - ] - ], - [ - "【10기】다유", - 78, - 57, - 9, - "che_event_저격", - [ - 0, - 0, - 0, - 0, - 382659 - ], - 1, - "f489a2a.jpg?=20181226", - 10, - "che_190509_88Ug", - 82, - [ - "hall:firenum" - ] - ], - [ - "【10기】ㅅ", - 9, - 83, - 55, - "che_event_저격", - [ - 0, - 0, - 0, - 0, - 0 - ], - 0, - "default.jpg", - 10, - "che_190509_88Ug", - 84, - [ - "hall:firenum", - "hall:tprate" - ] - ], - [ - "【10기】드류", - 81, - 35, - 33, - "che_event_저격", - [ - 0, - 0, - 0, - 0, - 724774 - ], - 1, - "507327d.png?=20181001", - 10, - "che_190509_88Ug", - 86, - [ - "hall:tlrate" - ] - ], - [ - "【10기】오빠차뽑았다", - 81, - 56, - 9, - "che_event_저격", - [ - 0, - 4052, - 6894, - 0, - 808342 - ], - 0, - "default.jpg", - 10, - "che_190509_88Ug", - 87, - [ - "hall:dex2" - ] - ], - [ - "【10기】녹차병", - 58, - 47, - 47, - "che_event_저격", - [ - 0, - 0, - 0, - 0, - 224041 - ], - 1, - "38960cb.jpg?=20190511", - 10, - "che_190509_88Ug", - 93, - [ - "hall:betgold" - ] - ], - [ - "【10기】SARS", - 83, - 59, - 9, - "che_event_저격", - [ - 0, - 328, - 3234, - 0, - 755372 - ], - 1, - "b84944.jpg?=20180829", - 10, - "che_190509_88Ug", - 94, - [ - "hall:dex3" - ] - ], - [ - "【10기】따라큐", - 84, - 58, - 9, - "che_event_저격", - [ - 0, - 0, - 0, - 0, - 950865 - ], - 1, - "d879a26.png?=20190427", - 10, - "che_190509_88Ug", - 98, - [ - "hall:firenum", - "hall:killcrew", - "hall:killnum", - "hall:killrate", - "hall:tlrate", - "hall:winrate" - ] - ], - [ - "【10기】할머니가타고있어요", - 79, - 9, - 60, - "che_event_저격", - [ - 0, - 0, - 0, - 0, - 451820 - ], - 1, - "d44d197.jpg?=20190511", - 10, - "che_190509_88Ug", - 99, - [ - "hall:betgold", - "hall:betwin", - "hall:betwingold", - "hall:firenum" - ] - ], - [ - "【10기】내정", - 9, - 71, - 67, - "che_event_저격", - [ - 0, - 0, - 0, - 0, - 0 - ], - 0, - "default.jpg", - 10, - "che_190509_88Ug", - 102, - [ - "hall:tprate" - ] - ], - [ - "【10기】외심장", - 84, - 55, - 9, - "che_event_저격", - [ - 0, - 0, - 0, - 0, - 232710 - ], - 1, - "36110cd.jpg?=20180826", - 10, - "che_190509_88Ug", - 115, - [ - "hall:dedication", - "hall:tlrate" - ] - ], - [ - "【10기】장수", - 82, - 58, - 9, - "che_event_저격", - [ - 0, - 2186, - 993, - 0, - 613617 - ], - 1, - "f8c3037.png?=20190510", - 10, - "che_190509_88Ug", - 120, - [ - "hall:dex2" - ] - ], - [ - "【10기】쿠요", - 70, - 65, - 9, - "che_event_저격", - [ - 0, - 0, - 4792, - 0, - 176027 - ], - 1, - "140a6b7.jpg?=20190425", - 10, - "che_190509_88Ug", - 123, - [ - "hall:dex3", - "hall:tprate" - ] - ], - [ - "【10기】청기사", - 9, - 56, - 86, - "che_event_저격", - [ - 0, - 0, - 0, - 0, - 0 - ], - 1, - "9fdc4fd.jpg?=20181213", - 10, - "che_190509_88Ug", - 124, - [ - "hall:dedication", - "hall:tirate" - ] - ], - [ - "【10기】미스티", - 85, - 57, - 9, - "che_event_저격", - [ - 0, - 0, - 0, - 0, - 362123 - ], - 1, - "1aadcba.png?=20180908", - 10, - "che_190509_88Ug", - 132, - [ - "hall:tlrate" - ] - ], - [ - "【10기】료우기빵셔틀", - 65, - 9, - 74, - "che_event_저격", - [ - 0, - 0, - 0, - 0, - 439478 - ], - 0, - "default.jpg", - 10, - "che_190509_88Ug", - 151, - [ - "hall:tirate" - ] - ], - [ - "【10기】파이", - 80, - 61, - 9, - "che_event_저격", - [ - 0, - 0, - 0, - 0, - 651088 - ], - 1, - "da3bc86.jpg?=20190318", - 10, - "che_190509_88Ug", - 168, - [ - "chief:7", - "hall:tlrate" - ] - ], - [ - "【10기】페이트", - 10, - 73, - 60, - "che_event_저격", - [ - 0, - 0, - 0, - 0, - 0 - ], - 1, - "bf40507.jpg?=20190411", - 10, - "che_190509_88Ug", - 253, - [ - "hall:tprate" - ] - ], - [ - "【10기】호갱", - 60, - 9, - 73, - "che_event_저격", - [ - 0, - 0, - 0, - 0, - 16989 - ], - 0, - "default.jpg", - 10, - "che_190509_88Ug", - 309, - [ - "hall:tirate" - ] - ], - [ - "【10기】H2O", - 70, - 69, - 10, - "che_event_저격", - [ - 34, - 0, - 0, - 0, - 269246 - ], - 0, - "default.jpg", - 10, - "che_190509_88Ug", - 318, - [ - "hall:dex1", - "hall:tprate", - "hall:ttrate" - ] - ], - [ - "【10기】광삼이", - 71, - 9, - 69, - "che_event_저격", - [ - 0, - 0, - 0, - 0, - 0 - ], - 1, - "69fc07c.jpg?=20180926", - 10, - "che_190509_88Ug", - 325, - [ - "hall:ttrate" - ] - ], - [ - "【10기】트수", - 76, - 83, - 10, - "che_event_저격", - [ - 0, - 0, - 0, - 0, - 792011 - ], - 1, - "483e099.png?=20190608", - 10, - "che_190509_88Ug", - 396, - [ - "chief:5", - "hall:betgold", - "hall:betrate", - "hall:betwin", - "hall:betwingold", - "hall:tprate", - "hall:ttrate" - ] - ], - [ - "【10기】뾰루퉁", - 66, - 66, - 9, - "che_event_저격", - [ - 0, - 0, - 0, - 0, - 283777 - ], - 1, - "8565afb.jpg?=20190516", - 10, - "che_190509_88Ug", - 406, - [ - "hall:tprate" - ] - ], - [ - "【10기】물타오르네", - 86, - 10, - 70, - "che_event_저격", - [ - 0, - 0, - 0, - 0, - 677948 - ], - 0, - "default.jpg", - 10, - "che_190509_88Ug", - 418, - [ - "hall:ttrate" - ] - ], - [ - "【10기】민트토끼", - 10, - 79, - 78, - "che_event_저격", - [ - 0, - 0, - 0, - 0, - 0 - ], - 1, - "8e57858.gif?=20181217", - 10, - "che_190509_88Ug", - 481, - [ - "hall:tirate", - "hall:tprate", - "hall:ttrate" - ] - ], - [ - "【10기】무당벌레", - 89, - 10, - 67, - "che_event_저격", - [ - 0, - 0, - 0, - 0, - 638842 - ], - 0, - "default.jpg", - 10, - "che_190509_88Ug", - 495, - [ - "chief:6", - "hall:ttrate" - ] - ], - [ - "【10기】무쇠다리사람", - 69, - 10, - 78, - "che_event_저격", - [ - 0, - 0, - 0, - 0, - 319561 - ], - 1, - "1b4b6f7.jpg?=20190608", - 10, - "che_190509_88Ug", - 698, - [ - "hall:tirate" - ] - ], [ "【11기】카이스트", 71, @@ -24227,1023 +20767,6 @@ "hall:firenum" ] ], - [ - "【15기】혜낭", - 90, - 70, - 10, - "che_event_격노", - [ - 39320, - 65587, - 554941, - 56519, - 25250 - ], - 1, - "20f2421.gif?=20191007", - 15, - "che_190926_XuE2", - 7, - [ - "hall:dex2", - "hall:dex3", - "hall:killcrew", - "hall:killnum", - "hall:tlrate", - "hall:warnum", - "hall:winrate" - ] - ], - [ - "【15기】륜", - 70, - 10, - 90, - "che_event_징병", - [ - 19534, - 19688, - 7029, - 201790, - 2672 - ], - 1, - "6561977.jpg?=20190904", - 15, - "che_190926_XuE2", - 10, - [ - "hall:dedication", - "hall:tirate", - "hall:ttrate" - ] - ], - [ - "【15기】사스케", - 71, - 87, - 10, - "che_event_저격", - [ - 563427, - 18874, - 76929, - 97725, - 32075 - ], - 1, - "986348a.jpg?=20190815", - 15, - "che_190926_XuE2", - 15, - [ - "chief:8", - "hall:betgold", - "hall:betwin", - "hall:betwingold", - "hall:dex1", - "hall:dex5", - "hall:experience", - "hall:firenum", - "hall:killcrew", - "hall:killnum", - "hall:killrate", - "hall:tprate", - "hall:warnum", - "hall:winrate" - ] - ], - [ - "【15기】엔야스", - 71, - 10, - 86, - "che_event_징병", - [ - 35183, - 25203, - 22806, - 346819, - 23894 - ], - 0, - "default.jpg", - 15, - "che_190926_XuE2", - 17, - [ - "hall:dedication", - "hall:dex4" - ] - ], - [ - "【15기】청기사", - 11, - 67, - 92, - "che_event_귀병", - [ - 0, - 0, - 0, - 0, - 0 - ], - 1, - "9fdc4fd.jpg?=20181213", - 15, - "che_190926_XuE2", - 19, - [ - "hall:dedication", - "hall:experience", - "hall:tirate", - "hall:ttrate" - ] - ], - [ - "【15기】아들", - 72, - 90, - 10, - "che_event_징병", - [ - 53211, - 71629, - 1058140, - 50643, - 40919 - ], - 1, - "97d501f.jpg?=20190926", - 15, - "che_190926_XuE2", - 20, - [ - "chief:12", - "hall:dedication", - "hall:dex1", - "hall:dex2", - "hall:dex3", - "hall:dex5", - "hall:experience", - "hall:killcrew", - "hall:killnum", - "hall:killrate", - "hall:tprate", - "hall:ttrate", - "hall:warnum", - "hall:winrate" - ] - ], - [ - "【15기】료우기시키", - 86, - 73, - 10, - "che_event_저격", - [ - 91683, - 131511, - 44904, - 53821, - 10432 - ], - 1, - "559083f.jpg?=20190905", - 15, - "che_190926_XuE2", - 22, - [ - "hall:dex1", - "hall:dex2", - "hall:tlrate" - ] - ], - [ - "【15기】덕장", - 72, - 10, - 87, - "che_event_집중", - [ - 60279, - 37048, - 48083, - 478787, - 29076 - ], - 0, - "default.jpg", - 15, - "che_190926_XuE2", - 23, - [ - "hall:dex1", - "hall:dex4", - "hall:killcrew", - "hall:killnum", - "hall:warnum" - ] - ], - [ - "【15기】모기", - 79, - 11, - 78, - "che_event_집중", - [ - 13922, - 26086, - 44434, - 247837, - 14501 - ], - 1, - "e5ab704.jpg?=20190926", - 15, - "che_190926_XuE2", - 24, - [ - "hall:tlrate" - ] - ], - [ - "【15기】카이스트", - 72, - 11, - 84, - "che_event_척사", - [ - 20818, - 13317, - 17376, - 304792, - 21070 - ], - 1, - "9361ef8.jpg?=20180907", - 15, - "che_190926_XuE2", - 25, - [ - "hall:ttrate" - ] - ], - [ - "【15기】아유", - 68, - 11, - 89, - "che_event_신산", - [ - 20127, - 12574, - 41074, - 157816, - 7139 - ], - 1, - "ba186bf.gif?=20181220", - 15, - "che_190926_XuE2", - 26, - [ - "hall:tirate", - "hall:ttrate" - ] - ], - [ - "【15기】김나영", - 73, - 85, - 10, - "che_event_저격", - [ - 315693, - 11806, - 41408, - 69215, - 16465 - ], - 1, - "c90a3d4.jpg?=20190905", - 15, - "che_190926_XuE2", - 27, - [ - "hall:dex1", - "hall:tprate" - ] - ], - [ - "【15기】미야노", - 75, - 84, - 10, - "che_event_돌격", - [ - 39199, - 433325, - 32155, - 53052, - 19503 - ], - 1, - "ab9cd7d.gif?=20190926", - 15, - "che_190926_XuE2", - 30, - [ - "hall:dex2", - "hall:killnum", - "hall:killrate", - "hall:tprate", - "hall:winrate" - ] - ], - [ - "【15기】제노에이지", - 70, - 10, - 88, - "che_event_척사", - [ - 30833, - 35100, - 26918, - 322818, - 26489 - ], - 1, - "ddd1fd7.jpg?=20190320", - 15, - "che_190926_XuE2", - 32, - [ - "hall:dex4", - "hall:tirate" - ] - ], - [ - "【15기】스즈나", - 71, - 88, - 10, - "che_event_저격", - [ - 857144, - 15171, - 35963, - 32322, - 33807 - ], - 1, - "d89ad53.png?=20190925", - 15, - "che_190926_XuE2", - 34, - [ - "chief:11", - "hall:dedication", - "hall:dex1", - "hall:dex5", - "hall:experience", - "hall:killcrew", - "hall:killnum", - "hall:killrate", - "hall:tprate", - "hall:warnum", - "hall:winrate" - ] - ], - [ - "【15기】휴식이드", - 71, - 10, - 88, - "che_event_필살", - [ - 19986, - 33521, - 41345, - 246607, - 8612 - ], - 1, - "1503444.jpg?=20190926", - 15, - "che_190926_XuE2", - 35, - [ - "hall:tirate" - ] - ], - [ - "【15기】마왕", - 72, - 87, - 11, - "che_event_무쌍", - [ - 65490, - 48577, - 497774, - 94481, - 39755 - ], - 1, - "eaa25e5.png?=20190910", - 15, - "che_190926_XuE2", - 36, - [ - "hall:dex1", - "hall:dex2", - "hall:dex3", - "hall:dex5", - "hall:experience", - "hall:killcrew", - "hall:killnum", - "hall:killrate", - "hall:tprate", - "hall:warnum" - ] - ], - [ - "【15기】실접못하는평킬", - 70, - 83, - 10, - "che_event_필살", - [ - 353508, - 3047, - 35475, - 54777, - 31918 - ], - 1, - "fb23a32.jpg?=20190904", - 15, - "che_190926_XuE2", - 37, - [ - "hall:dex1", - "hall:dex5", - "hall:killrate" - ] - ], - [ - "【15기】말살하라!", - 70, - 11, - 88, - "che_event_필살", - [ - 11960, - 20293, - 38107, - 204967, - 9763 - ], - 1, - "7c8c92c.png?=20190926", - 15, - "che_190926_XuE2", - 38, - [ - "hall:firenum" - ] - ], - [ - "【15기】로리", - 86, - 74, - 10, - "che_event_저격", - [ - 27690, - 35965, - 378072, - 91087, - 7640 - ], - 1, - "50794a6.jpg?=20190923", - 15, - "che_190926_XuE2", - 39, - [ - "hall:betgold", - "hall:dex3", - "hall:tlrate", - "hall:ttrate", - "hall:winrate" - ] - ], - [ - "【15기】진짜뉴비", - 79, - 11, - 76, - "che_event_반계", - [ - 20088, - 25510, - 5186, - 97690, - 2411 - ], - 0, - "default.jpg", - 15, - "che_190926_XuE2", - 40, - [ - "hall:tlrate" - ] - ], - [ - "【15기】킹구없이는못살아", - 81, - 75, - 10, - "che_event_격노", - [ - 446417, - 16719, - 30705, - 36664, - 18893 - ], - 1, - "fb3c625.gif?=20190428", - 15, - "che_190926_XuE2", - 41, - [ - "hall:dex1", - "hall:tlrate", - "hall:warnum" - ] - ], - [ - "【15기】정채연", - 70, - 84, - 10, - "che_event_징병", - [ - 13973, - 19417, - 182561, - 89692, - 2873 - ], - 1, - "9705097.jpg?=20191001", - 15, - "che_190926_XuE2", - 42, - [ - "hall:dex3" - ] - ], - [ - "【15기】유지장", - 84, - 10, - 74, - "che_event_필살", - [ - 14624, - 9108, - 20946, - 310070, - 11803 - ], - 0, - "default.jpg", - 15, - "che_190926_XuE2", - 43, - [ - "hall:dex4", - "hall:tlrate" - ] - ], - [ - "【15기】ㄹㅇ카오스피닉스", - 70, - 10, - 86, - "che_event_신산", - [ - 36799, - 11400, - 47821, - 376753, - 31452 - ], - 1, - "7f80b2f.jpg?=20190715", - 15, - "che_190926_XuE2", - 46, - [ - "hall:dex4", - "hall:killrate", - "hall:winrate" - ] - ], - [ - "【15기】병리학적자세", - 70, - 10, - 88, - "che_event_징병", - [ - 42981, - 24141, - 22065, - 487563, - 49719 - ], - 1, - "3679089.jpg?=20180629", - 15, - "che_190926_XuE2", - 47, - [ - "hall:dedication", - "hall:dex4", - "hall:dex5", - "hall:experience", - "hall:killcrew", - "hall:killnum", - "hall:killrate", - "hall:warnum" - ] - ], - [ - "【15기】개미호랑이", - 69, - 10, - 88, - "che_event_징병", - [ - 45439, - 38894, - 26057, - 483691, - 40161 - ], - 1, - "fccc37e.jpg?=20190718", - 15, - "che_190926_XuE2", - 49, - [ - "chief:7", - "hall:dedication", - "hall:dex4", - "hall:dex5", - "hall:experience", - "hall:killcrew", - "hall:killrate", - "hall:tirate" - ] - ], - [ - "【15기】외심장", - 73, - 85, - 10, - "che_event_무쌍", - [ - 18163, - 41883, - 335313, - 111011, - 40531 - ], - 1, - "36110cd.jpg?=20180826", - 15, - "che_190926_XuE2", - 50, - [ - "hall:dex3", - "hall:dex5", - "hall:tprate", - "hall:ttrate" - ] - ], - [ - "【15기】메디브", - 83, - 75, - 10, - "che_event_저격", - [ - 37969, - 64460, - 532907, - 107707, - 32703 - ], - 1, - "def2895.jpg?=20190719", - 15, - "che_190926_XuE2", - 55, - [ - "chief:6", - "hall:dedication", - "hall:dex2", - "hall:dex3", - "hall:dex5", - "hall:killcrew", - "hall:killnum", - "hall:killrate", - "hall:tlrate", - "hall:warnum", - "hall:winrate" - ] - ], - [ - "【15기】지금은전쟁중", - 83, - 73, - 12, - "che_event_필살", - [ - 10411, - 41449, - 302872, - 62141, - 32191 - ], - 0, - "default.jpg", - 15, - "che_190926_XuE2", - 56, - [ - "hall:dex3", - "hall:dex5", - "hall:tlrate", - "hall:ttrate" - ] - ], - [ - "【15기】오리온자리", - 85, - 74, - 10, - "che_event_필살", - [ - 18166, - 246895, - 30523, - 58132, - 7454 - ], - 1, - "71c0d1f.jpg?=20190718", - 15, - "che_190926_XuE2", - 57, - [ - "hall:dex2", - "hall:tlrate" - ] - ], - [ - "【15기】보스곰", - 68, - 10, - 88, - "che_event_척사", - [ - 18291, - 20014, - 20890, - 466974, - 19230 - ], - 1, - "773556e.gif?=20190822", - 15, - "che_190926_XuE2", - 58, - [ - "chief:9", - "hall:betgold", - "hall:dedication", - "hall:dex4", - "hall:experience", - "hall:tirate" - ] - ], - [ - "【15기】그저늅늅", - 68, - 10, - 91, - "che_event_집중", - [ - 28798, - 17683, - 39254, - 258926, - 11547 - ], - 1, - "5cedbb3.jpg?=20190817", - 15, - "che_190926_XuE2", - 62, - [ - "hall:tirate", - "hall:winrate" - ] - ], - [ - "【15기】SARS", - 72, - 88, - 10, - "che_event_필살", - [ - 21664, - 41907, - 455807, - 83835, - 16117 - ], - 1, - "b84944.jpg?=20180829", - 15, - "che_190926_XuE2", - 65, - [ - "hall:dex2", - "hall:dex3", - "hall:experience", - "hall:firenum", - "hall:killnum", - "hall:tprate", - "hall:winrate" - ] - ], - [ - "【15기】유산슬", - 70, - 10, - 87, - "che_event_척사", - [ - 46162, - 19807, - 63717, - 381651, - 16287 - ], - 1, - "ea9648d.png?=20190922", - 15, - "che_190926_XuE2", - 68, - [ - "chief:5", - "hall:dex4", - "hall:experience", - "hall:firenum", - "hall:tirate" - ] - ], - [ - "【15기】PA15", - 76, - 82, - 11, - "che_event_필살", - [ - 20647, - 62275, - 485064, - 88074, - 31181 - ], - 1, - "415b256.png?=20190927", - 15, - "che_190926_XuE2", - 69, - [ - "chief:10", - "hall:dedication", - "hall:dex2", - "hall:dex3", - "hall:killcrew", - "hall:tprate", - "hall:ttrate", - "hall:warnum" - ] - ], - [ - "【15기】연우", - 71, - 10, - 86, - "che_event_징병", - [ - 26533, - 26975, - 93587, - 344490, - 24977 - ], - 0, - "default.jpg", - 15, - "che_190926_XuE2", - 89, - [ - "hall:dex4" - ] - ], - [ - "【15기】천괴금", - 11, - 86, - 72, - "che_event_보병", - [ - 0, - 0, - 0, - 0, - 0 - ], - 1, - "2b239af.png?=20190824", - 15, - "che_190926_XuE2", - 114, - [ - "hall:tprate" - ] - ], - [ - "【15기】조말론", - 72, - 10, - 85, - "che_event_집중", - [ - 13503, - 6726, - 52720, - 211475, - 3670 - ], - 1, - "e12bfb7.jpg?=20191001", - 15, - "che_190926_XuE2", - 116, - [ - "hall:tirate", - "hall:ttrate" - ] - ], - [ - "【15기】Navy마초", - 80, - 73, - 10, - "che_event_무쌍", - [ - 59999, - 322796, - 25521, - 85651, - 14200 - ], - 0, - "default.jpg", - 15, - "che_190926_XuE2", - 306, - [ - "hall:dex1", - "hall:dex2" - ] - ], [ "【16기】크람푸스", 69, @@ -28773,898 +24296,6 @@ "hall:tirate" ] ], - [ - "【20기】Hide_D", - 84, - 11, - 79, - "che_event_환술", - [ - 105917, - 55852, - 68709, - 1133732, - 69051 - ], - 1, - "9f0a2a8.png?=20200106", - 20, - "che_200130_ds2m", - 3, - [ - "chief:12", - "hall:dedication", - "hall:dex1", - "hall:dex3", - "hall:dex4", - "hall:dex5", - "hall:experience", - "hall:killcrew", - "hall:killnum", - "hall:killrate", - "hall:tlrate", - "hall:ttrate", - "hall:warnum", - "hall:winrate" - ] - ], - [ - "【20기】시부야 린", - 89, - 73, - 10, - "che_event_견고", - [ - 662468, - 34698, - 103205, - 155208, - 20254 - ], - 1, - "4c2d759.jpg?=20200130", - 20, - "che_200130_ds2m", - 7, - [ - "hall:dex1", - "hall:dex3", - "hall:tlrate" - ] - ], - [ - "【20기】급식왕스쿨뱅킹", - 72, - 10, - 89, - "che_event_환술", - [ - 37907, - 9906, - 9511, - 244230, - 0 - ], - 1, - "6337f32.jpg?=20200130", - 20, - "che_200130_ds2m", - 9, - [ - "hall:dedication", - "hall:tirate" - ] - ], - [ - "【20기】카오스피닉스", - 76, - 10, - 86, - "che_event_반계", - [ - 70496, - 92823, - 46881, - 670985, - 21305 - ], - 1, - "7f80b2f.jpg?=20190715", - 20, - "che_200130_ds2m", - 10, - [ - "hall:dex2" - ] - ], - [ - "【20기】카이스트", - 74, - 10, - 90, - "che_event_신산", - [ - 91890, - 65253, - 43139, - 1103338, - 46718 - ], - 1, - "9361ef8.jpg?=20180907", - 20, - "che_200130_ds2m", - 12, - [ - "chief:9", - "hall:dedication", - "hall:dex1", - "hall:dex4", - "hall:experience", - "hall:firenum", - "hall:killcrew", - "hall:killnum", - "hall:killrate", - "hall:tirate", - "hall:ttrate", - "hall:warnum", - "hall:winrate" - ] - ], - [ - "【20기】랜갈덤근", - 75, - 10, - 90, - "che_event_집중", - [ - 49776, - 47364, - 62258, - 1567830, - 62682 - ], - 0, - "default.jpg", - 20, - "che_200130_ds2m", - 14, - [ - "hall:dex3", - "hall:dex4", - "hall:dex5", - "hall:experience", - "hall:killcrew", - "hall:killnum", - "hall:tirate", - "hall:ttrate", - "hall:warnum" - ] - ], - [ - "【20기】꼬리구이", - 78, - 10, - 89, - "che_event_집중", - [ - 92707, - 65943, - 72371, - 1497580, - 45820 - ], - 1, - "8429eeb.jpg?=20200129", - 20, - "che_200130_ds2m", - 16, - [ - "hall:dex1", - "hall:dex3", - "hall:dex4", - "hall:experience", - "hall:killcrew", - "hall:killnum", - "hall:killrate", - "hall:tirate", - "hall:ttrate", - "hall:warnum", - "hall:winrate" - ] - ], - [ - "【20기】딱 고정도", - 76, - 88, - 10, - "che_event_견고", - [ - 34333, - 85930, - 841701, - 209968, - 29277 - ], - 1, - "ebd1bce.jpg?=20200130", - 20, - "che_200130_ds2m", - 21, - [ - "hall:dex2", - "hall:dex3", - "hall:killnum", - "hall:tprate", - "hall:warnum" - ] - ], - [ - "【20기】삼모몰라요", - 75, - 10, - 88, - "che_event_신중", - [ - 81146, - 70702, - 58908, - 917107, - 33321 - ], - 0, - "default.jpg", - 20, - "che_200130_ds2m", - 22, - [ - "hall:dex2", - "hall:dex4", - "hall:killnum", - "hall:winrate" - ] - ], - [ - "【20기】임사영", - 75, - 10, - 87, - "che_event_환술", - [ - 32395, - 28399, - 35947, - 372813, - 16176 - ], - 1, - "7f9473e.gif?=20200211", - 20, - "che_200130_ds2m", - 23, - [ - "hall:winrate" - ] - ], - [ - "【20기】아이즈원내놔", - 91, - 73, - 11, - "che_event_돌격", - [ - 73856, - 132246, - 1605504, - 382781, - 29452 - ], - 1, - "99cd27f.gif?=20190606", - 20, - "che_200130_ds2m", - 24, - [ - "chief:8", - "hall:dex2", - "hall:dex3", - "hall:experience", - "hall:firenum", - "hall:killcrew", - "hall:killnum", - "hall:killrate", - "hall:tlrate", - "hall:ttrate", - "hall:warnum", - "hall:winrate" - ] - ], - [ - "【20기】강지", - 93, - 73, - 10, - "che_event_견고", - [ - 44477, - 49136, - 1025530, - 49369, - 60884 - ], - 1, - "3a967d1.jpg?=20200129", - 20, - "che_200130_ds2m", - 26, - [ - "hall:dex3", - "hall:dex5", - "hall:experience", - "hall:killcrew", - "hall:killrate", - "hall:tlrate", - "hall:tprate", - "hall:warnum" - ] - ], - [ - "【20기】등화", - 95, - 66, - 11, - "che_event_공성", - [ - 6320, - 2735, - 10597, - 47686, - 1468280 - ], - 1, - "f11922a.png?=20200218", - 20, - "che_200130_ds2m", - 27, - [ - "chief:11", - "hall:betgold", - "hall:betrate", - "hall:betwin", - "hall:betwingold", - "hall:dedication", - "hall:dex5", - "hall:experience", - "hall:killcrew", - "hall:killrate", - "hall:tlrate", - "hall:winrate" - ] - ], - [ - "【20기】Crow", - 84, - 10, - 79, - "che_event_집중", - [ - 126408, - 60376, - 55452, - 852899, - 49764 - ], - 1, - "44d980a.png?=20200130", - 20, - "che_200130_ds2m", - 28, - [ - "hall:dex1", - "hall:dex4", - "hall:dex5" - ] - ], - [ - "【20기】병리학적자세", - 76, - 10, - 88, - "che_event_귀병", - [ - 79534, - 68624, - 59571, - 1156513, - 49205 - ], - 1, - "3679089.jpg?=20180629", - 20, - "che_200130_ds2m", - 29, - [ - "chief:5", - "hall:dedication", - "hall:dex3", - "hall:dex4", - "hall:dex5", - "hall:experience", - "hall:killcrew", - "hall:killnum", - "hall:killrate", - "hall:ttrate", - "hall:warnum" - ] - ], - [ - "【20기】이초홍", - 80, - 83, - 10, - "che_event_견고", - [ - 117853, - 925037, - 44641, - 215616, - 25081 - ], - 1, - "670e1e3.jpg?=20200130", - 20, - "che_200130_ds2m", - 30, - [ - "hall:dex1", - "hall:dex2", - "hall:killcrew", - "hall:killnum", - "hall:tprate", - "hall:warnum" - ] - ], - [ - "【20기】레다", - 85, - 10, - 77, - "che_event_의술", - [ - 93401, - 45647, - 31469, - 631498, - 50236 - ], - 1, - "cf762d0.jpg?=20200130", - 20, - "che_200130_ds2m", - 31, - [ - "chief:7", - "hall:dedication", - "hall:dex1", - "hall:dex5", - "hall:tlrate" - ] - ], - [ - "【20기】슬라임", - 85, - 11, - 76, - "che_event_신산", - [ - 42817, - 45770, - 28685, - 298605, - 6343 - ], - 0, - "default.jpg", - 20, - "che_200130_ds2m", - 32, - [ - "hall:tlrate", - "hall:ttrate" - ] - ], - [ - "【20기】박일아", - 76, - 11, - 88, - "che_event_환술", - [ - 72117, - 80050, - 99539, - 1576763, - 70108 - ], - 1, - "8608979.gif?=20191024", - 20, - "che_200130_ds2m", - 33, - [ - "hall:dex2", - "hall:dex3", - "hall:dex4", - "hall:dex5", - "hall:experience", - "hall:killcrew", - "hall:killnum", - "hall:killrate", - "hall:warnum", - "hall:winrate" - ] - ], - [ - "【20기】료우기시키", - 90, - 75, - 10, - "che_event_척사", - [ - 74465, - 507148, - 24784, - 184921, - 21846 - ], - 1, - "559083f.jpg?=20190905", - 20, - "che_200130_ds2m", - 34, - [ - "chief:6", - "hall:dedication", - "hall:dex2", - "hall:experience", - "hall:tlrate", - "hall:tprate", - "hall:ttrate" - ] - ], - [ - "【20기】평민킬러", - 73, - 10, - 89, - "che_event_집중", - [ - 63098, - 43476, - 29417, - 844603, - 47081 - ], - 1, - "fb23a32.jpg?=20190904", - 20, - "che_200130_ds2m", - 36, - [ - "hall:dex4", - "hall:dex5", - "hall:killrate", - "hall:tirate", - "hall:winrate" - ] - ], - [ - "【20기】랜덤박스", - 84, - 80, - 10, - "che_event_견고", - [ - 669433, - 26630, - 39784, - 28854, - 23232 - ], - 1, - "b00a07b.gif?=20200130", - 20, - "che_200130_ds2m", - 37, - [ - "hall:dex1", - "hall:firenum", - "hall:tprate" - ] - ], - [ - "【20기】ㅁㄴㅇ", - 71, - 11, - 90, - "che_event_환술", - [ - 28425, - 49919, - 43282, - 379771, - 27489 - ], - 1, - "99e4505.jpg?=20200110", - 20, - "che_200130_ds2m", - 38, - [ - "hall:tirate" - ] - ], - [ - "【20기】치카", - 88, - 75, - 11, - "che_event_견고", - [ - 59691, - 412283, - 20674, - 113450, - 10538 - ], - 1, - "890b253.jpg?=20191024", - 20, - "che_200130_ds2m", - 39, - [ - "hall:dedication", - "hall:dex2", - "hall:tlrate", - "hall:ttrate" - ] - ], - [ - "【20기】윤세리", - 73, - 10, - 87, - "che_event_신중", - [ - 63220, - 65027, - 50981, - 570634, - 40325 - ], - 1, - "7753703.png?=20200131", - 20, - "che_200130_ds2m", - 40, - [ - "hall:tirate" - ] - ], - [ - "【20기】아유", - 76, - 10, - 87, - "che_event_집중", - [ - 61104, - 57942, - 56480, - 828942, - 26841 - ], - 1, - "ba186bf.gif?=20181220", - 20, - "che_200130_ds2m", - 41, - [ - "hall:dex4", - "hall:tirate", - "hall:ttrate" - ] - ], - [ - "【20기】ㅇㄷ", - 75, - 88, - 10, - "che_event_견고", - [ - 38610, - 110956, - 783518, - 158714, - 35048 - ], - 0, - "default.jpg", - 20, - "che_200130_ds2m", - 42, - [ - "hall:dex2", - "hall:dex3", - "hall:firenum", - "hall:killrate", - "hall:tprate", - "hall:winrate" - ] - ], - [ - "【20기】개미호랑이", - 90, - 10, - 68, - "che_event_징병", - [ - 24005, - 37186, - 41993, - 87944, - 134797 - ], - 1, - "6ee69e8.jpg?=20191227", - 20, - "che_200130_ds2m", - 43, - [ - "hall:dex5", - "hall:tlrate" - ] - ], - [ - "【20기】나데코", - 74, - 89, - 10, - "che_event_견고", - [ - 516777, - 18931, - 45398, - 135108, - 14663 - ], - 1, - "9705097.jpg?=20191001", - 20, - "che_200130_ds2m", - 45, - [ - "hall:dex1", - "hall:tprate" - ] - ], - [ - "【20기】펭수", - 10, - 70, - 92, - "che_event_척사", - [ - 0, - 0, - 0, - 0, - 0 - ], - 1, - "b1807bf.png?=20191221", - 20, - "che_200130_ds2m", - 59, - [ - "hall:dedication", - "hall:tirate", - "hall:tprate" - ] - ], - [ - "【20기】보라돌이", - 10, - 71, - 89, - "che_event_귀병", - [ - 0, - 0, - 0, - 0, - 0 - ], - 0, - "default.jpg", - 20, - "che_200130_ds2m", - 65, - [ - "hall:tirate", - "hall:tprate" - ] - ], - [ - "【20기】くま", - 79, - 82, - 10, - "che_event_견고", - [ - 134416, - 872336, - 31536, - 176686, - 39790 - ], - 1, - "770f53.jpg?=20190718", - 20, - "che_200130_ds2m", - 78, - [ - "chief:10", - "hall:dedication", - "hall:dex1", - "hall:dex2", - "hall:tprate" - ] - ], - [ - "【20기】죽은 사람", - 10, - 69, - 86, - "che_event_신산", - [ - 0, - 0, - 0, - 0, - 0 - ], - 0, - "default.jpg", - 20, - "che_200130_ds2m", - 286, - [ - "hall:firenum" - ] - ], - [ - "【20기】asdf", - 10, - 10, - 85, - "che_event_신산", - [ - 0, - 0, - 0, - 0, - 0 - ], - 0, - "default.jpg", - 20, - "che_200130_ds2m", - 423, - [ - "hall:firenum" - ] - ], [ "【21기】평민킬러", 77, @@ -34045,1265 +28676,6 @@ "hall:dex3" ] ], - [ - "【25기】Hide_D", - 64, - 10, - 82, - "che_event_환술", - [ - 78921, - 28116, - 98282, - 962494, - 25927 - ], - 1, - "9f0a2a8.png?=20200106", - 25, - "che_200604_NuxN", - 6, - [ - "hall:dedication", - "hall:dex4", - "hall:dex5", - "hall:experience", - "hall:killrate", - "hall:killrate_person", - "hall:occupied" - ] - ], - [ - "【25기】미르칼라", - 68, - 10, - 79, - "che_event_환술", - [ - 46006, - 28020, - 67235, - 987828, - 9470 - ], - 1, - "959346e.jpg?=20200604", - 25, - "che_200604_NuxN", - 8, - [ - "hall:dex4", - "hall:killnum", - "hall:occupied" - ] - ], - [ - "【25기】엘사", - 64, - 80, - 10, - "che_event_위압", - [ - 622649, - 45018, - 48247, - 102993, - 23342 - ], - 1, - "ee26023.jpg?=20200402", - 25, - "che_200604_NuxN", - 10, - [ - "chief:6", - "hall:dex1", - "hall:dex5", - "hall:killrate", - "hall:occupied", - "hall:tsrate" - ] - ], - [ - "【25기】김 신", - 65, - 10, - 79, - "che_event_집중", - [ - 104056, - 39683, - 38908, - 578257, - 12852 - ], - 1, - "9fd757a.gif?=20200602", - 25, - "che_200604_NuxN", - 11, - [ - "chief:5", - "hall:ttrate" - ] - ], - [ - "【25기】펭수", - 66, - 10, - 76, - "che_event_척사", - [ - 38254, - 31013, - 31044, - 584532, - 20208 - ], - 1, - "51540ea.jpg?=20200425", - 25, - "che_200604_NuxN", - 12, - [ - "hall:tirate", - "hall:ttrate" - ] - ], - [ - "【25기】김나영", - 68, - 77, - 10, - "che_event_돌격", - [ - 35094, - 69704, - 739190, - 96183, - 14499 - ], - 1, - "c90a3d4.jpg?=20190905", - 25, - "che_200604_NuxN", - 13, - [ - "hall:dex3", - "hall:killcrew", - "hall:killnum", - "hall:tsrate", - "hall:ttrate", - "hall:warnum" - ] - ], - [ - "【25기】브라움", - 70, - 79, - 10, - "che_event_의술", - [ - 1148187, - 46919, - 102756, - 197653, - 11925 - ], - 1, - "fe1f2b2.jpg?=20200604", - 25, - "che_200604_NuxN", - 16, - [ - "hall:dex1", - "hall:dex2", - "hall:dex3", - "hall:killcrew", - "hall:killcrew_person", - "hall:killnum", - "hall:killrate", - "hall:killrate_person", - "hall:tsrate", - "hall:warnum", - "hall:winrate" - ] - ], - [ - "【25기】독구", - 82, - 60, - 10, - "che_event_돌격", - [ - 10509, - 17612, - 10320, - 28656, - 733732 - ], - 1, - "a7388f.png?=20200424", - 25, - "che_200604_NuxN", - 17, - [ - "hall:dex5", - "hall:tlrate" - ] - ], - [ - "【25기】병리학적자세", - 63, - 10, - 79, - "che_event_필살", - [ - 60017, - 40019, - 45362, - 462049, - 14087 - ], - 1, - "3679089.jpg?=20180629", - 25, - "che_200604_NuxN", - 19, - [ - "hall:dex5", - "hall:tirate", - "hall:ttrate" - ] - ], - [ - "【25기】smile", - 66, - 10, - 79, - "che_event_집중", - [ - 56287, - 39419, - 47404, - 604863, - 11707 - ], - 0, - "default.jpg", - 25, - "che_200604_NuxN", - 20, - [ - "hall:tirate" - ] - ], - [ - "【25기】로리", - 63, - 10, - 80, - "che_event_집중", - [ - 62009, - 26896, - 55684, - 558677, - 13369 - ], - 1, - "50794a6.jpg?=20190923", - 25, - "che_200604_NuxN", - 22, - [ - "hall:dedication", - "hall:experience", - "hall:occupied" - ] - ], - [ - "【25기】외심장", - 67, - 10, - 80, - "che_event_신산", - [ - 73815, - 54819, - 49480, - 874449, - 16360 - ], - 1, - "36110cd.jpg?=20180826", - 25, - "che_200604_NuxN", - 24, - [ - "hall:betgold", - "hall:dex4", - "hall:dex5", - "hall:killcrew", - "hall:killcrew_person", - "hall:killnum", - "hall:killrate", - "hall:killrate_person", - "hall:tirate", - "hall:warnum", - "hall:winrate" - ] - ], - [ - "【25기】땅땅이", - 77, - 66, - 10, - "che_event_격노", - [ - 720463, - 28468, - 66597, - 190037, - 30796 - ], - 1, - "99cd27f.gif?=20190606", - 25, - "che_200604_NuxN", - 25, - [ - "hall:dex1", - "hall:dex5", - "hall:occupied", - "hall:tlrate", - "hall:tsrate" - ] - ], - [ - "【25기】너튜브", - 66, - 74, - 10, - "che_event_위압", - [ - 52091, - 403138, - 51218, - 98799, - 11904 - ], - 1, - "758baa7.png?=20200604", - 25, - "che_200604_NuxN", - 27, - [ - "hall:betgold", - "hall:dex2", - "hall:tsrate" - ] - ], - [ - "【25기】아자젤", - 65, - 10, - 79, - "che_event_환술", - [ - 36772, - 50933, - 35054, - 732544, - 5960 - ], - 1, - "fef67ff.jpg?=20200604", - 25, - "che_200604_NuxN", - 28, - [ - "hall:dex2", - "hall:dex4" - ] - ], - [ - "【25기】카이스트", - 66, - 10, - 82, - "che_event_집중", - [ - 87729, - 60765, - 52202, - 992377, - 25594 - ], - 1, - "9361ef8.jpg?=20180907", - 25, - "che_200604_NuxN", - 29, - [ - "hall:dex2", - "hall:dex4", - "hall:dex5", - "hall:experience", - "hall:firenum", - "hall:killcrew", - "hall:killcrew_person", - "hall:killnum", - "hall:killrate", - "hall:killrate_person", - "hall:warnum", - "hall:winrate" - ] - ], - [ - "【25기】킹구", - 75, - 10, - 69, - "che_event_신산", - [ - 66481, - 24853, - 38550, - 894017, - 12077 - ], - 1, - "fb3c625.gif?=20190428", - 25, - "che_200604_NuxN", - 30, - [ - "hall:dex4", - "hall:killnum", - "hall:winrate" - ] - ], - [ - "【25기】평민킬러", - 82, - 64, - 10, - "che_event_징병", - [ - 71985, - 87732, - 907056, - 207533, - 22096 - ], - 1, - "fb23a32.jpg?=20190904", - 25, - "che_200604_NuxN", - 32, - [ - "chief:12", - "hall:dedication", - "hall:dex3", - "hall:experience", - "hall:tlrate" - ] - ], - [ - "【25기】ㅇ", - 66, - 79, - 10, - "che_event_저격", - [ - 39814, - 59167, - 549078, - 83500, - 21298 - ], - 0, - "default.jpg", - 25, - "che_200604_NuxN", - 35, - [ - "chief:8", - "hall:dex3", - "hall:killrate", - "hall:occupied", - "hall:tsrate" - ] - ], - [ - "【25기】치킨조아", - 78, - 65, - 10, - "che_event_돌격", - [ - 633941, - 33282, - 117676, - 139227, - 8707 - ], - 1, - "798476b.jpg?=20200604", - 25, - "che_200604_NuxN", - 36, - [ - "hall:dex1", - "hall:dex3", - "hall:killcrew", - "hall:killcrew_person", - "hall:occupied", - "hall:tlrate", - "hall:tsrate", - "hall:warnum" - ] - ], - [ - "【25기】개미호람머스", - 69, - 74, - 10, - "che_event_궁병", - [ - 84791, - 458427, - 27411, - 140321, - 9241 - ], - 1, - "9e0429e.jpg?=20200313", - 25, - "che_200604_NuxN", - 37, - [ - "hall:dex1", - "hall:dex2", - "hall:tsrate", - "hall:ttrate" - ] - ], - [ - "【25기】멸망을 노래하는 자", - 80, - 64, - 10, - "che_event_돌격", - [ - 614171, - 40420, - 68970, - 136172, - 14291 - ], - 1, - "179a0e6.jpg?=20200606", - 25, - "che_200604_NuxN", - 38, - [ - "chief:11", - "hall:dex1" - ] - ], - [ - "【25기】소피", - 10, - 60, - 81, - "che_event_신산", - [ - 0, - 945, - 0, - 7326, - 0 - ], - 1, - "3ec93fb.jpg?=20200604", - 25, - "che_200604_NuxN", - 39, - [ - "hall:dedication", - "hall:firenum", - "hall:tirate" - ] - ], - [ - "【25기】임사영", - 65, - 10, - 79, - "che_event_신중", - [ - 40061, - 45278, - 27016, - 456215, - 19157 - ], - 1, - "7f9473e.gif?=20200211", - 25, - "che_200604_NuxN", - 40, - [ - "hall:killrate", - "hall:killrate_person", - "hall:tirate", - "hall:ttrate", - "hall:winrate" - ] - ], - [ - "【25기】강미정", - 82, - 59, - 10, - "che_event_징병", - [ - 1833, - 5798, - 17483, - 4995, - 109147 - ], - 1, - "4794a22.jpg?=20200630", - 25, - "che_200604_NuxN", - 41, - [ - "hall:dex5", - "hall:killrate", - "hall:tlrate" - ] - ], - [ - "【25기】료우기시키", - 80, - 63, - 10, - "che_event_보병", - [ - 833050, - 35969, - 111901, - 202125, - 11973 - ], - 1, - "559083f.jpg?=20190905", - 25, - "che_200604_NuxN", - 42, - [ - "hall:dex1", - "hall:dex3", - "hall:killcrew", - "hall:killcrew_person", - "hall:tlrate", - "hall:warnum" - ] - ], - [ - "【25기】레오루", - 75, - 68, - 10, - "che_event_돌격", - [ - 54464, - 91712, - 333212, - 113693, - 21329 - ], - 1, - "ed5f2c2.jpg?=20200604", - 25, - "che_200604_NuxN", - 44, - [ - "chief:10", - "hall:dex2", - "hall:occupied", - "hall:tlrate" - ] - ], - [ - "【25기】푸린", - 65, - 10, - 80, - "che_event_집중", - [ - 56792, - 32471, - 84344, - 817450, - 11776 - ], - 1, - "d3c25f2.jpg?=20200604", - 25, - "che_200604_NuxN", - 45, - [ - "hall:dex4" - ] - ], - [ - "【25기】한국전력공사", - 60, - 10, - 82, - "che_event_신산", - [ - 34672, - 25221, - 14248, - 424199, - 21471 - ], - 1, - "48ea511.jpg?=20200607", - 25, - "che_200604_NuxN", - 46, - [ - "hall:dedication", - "hall:dex5", - "hall:experience", - "hall:killrate", - "hall:killrate_person", - "hall:occupied", - "hall:winrate" - ] - ], - [ - "【25기】쿠로", - 80, - 62, - 10, - "che_event_척사", - [ - 109136, - 754022, - 27120, - 118731, - 8779 - ], - 1, - "55dc7c0.gif?=20200604", - 25, - "che_200604_NuxN", - 48, - [ - "hall:betgold", - "hall:dex2", - "hall:killcrew_person", - "hall:warnum" - ] - ], - [ - "【25기】광순이", - 63, - 10, - 81, - "che_event_환술", - [ - 63771, - 27976, - 27041, - 399189, - 27199 - ], - 1, - "9babce2.jpg?=20200616", - 25, - "che_200604_NuxN", - 50, - [ - "hall:dedication", - "hall:dex5" - ] - ], - [ - "【25기】갈근", - 69, - 76, - 10, - "che_event_격노", - [ - 82489, - 768170, - 41695, - 154426, - 14217 - ], - 0, - "default.jpg", - 25, - "che_200604_NuxN", - 51, - [ - "hall:dex2", - "hall:tsrate" - ] - ], - [ - "【25기】낙지꿈", - 63, - 10, - 80, - "che_event_집중", - [ - 69901, - 30004, - 15248, - 428603, - 22347 - ], - 0, - "default.jpg", - 25, - "che_200604_NuxN", - 53, - [ - "hall:dedication" - ] - ], - [ - "【25기】캬루", - 10, - 59, - 82, - "che_event_신산", - [ - 0, - 0, - 0, - 0, - 0 - ], - 1, - "ac9b130.jpg?=20200603", - 25, - "che_200604_NuxN", - 55, - [ - "hall:firenum" - ] - ], - [ - "【25기】고블린슬레이어", - 79, - 64, - 10, - "che_event_보병", - [ - 1072097, - 44889, - 110607, - 199452, - 11936 - ], - 1, - "2943712.png?=20200604", - 25, - "che_200604_NuxN", - 56, - [ - "hall:dex1", - "hall:dex3", - "hall:killcrew", - "hall:killcrew_person", - "hall:killnum", - "hall:killrate", - "hall:killrate_person", - "hall:occupied", - "hall:tlrate", - "hall:warnum" - ] - ], - [ - "【25기】뜨뜨뜨뜨", - 70, - 10, - 74, - "che_event_집중", - [ - 41344, - 34023, - 34073, - 650064, - 12677 - ], - 1, - "a1ad420.jpg?=20200425", - 25, - "che_200604_NuxN", - 59, - [ - "hall:dex4", - "hall:experience" - ] - ], - [ - "【25기】로비", - 14, - 58, - 80, - "che_event_환술", - [ - 0, - 0, - 0, - 0, - 0 - ], - 1, - "708a981.png?=20200402", - 25, - "che_200604_NuxN", - 60, - [ - "chief:7", - "hall:dedication", - "hall:experience", - "hall:tirate" - ] - ], - [ - "【25기】헹지", - 64, - 10, - 84, - "che_event_신산", - [ - 117500, - 62426, - 46691, - 949200, - 25920 - ], - 1, - "ff77e01.jpg?=20200704", - 25, - "che_200604_NuxN", - 62, - [ - "chief:9", - "hall:dex2", - "hall:experience", - "hall:firenum", - "hall:killcrew", - "hall:killnum", - "hall:killrate_person", - "hall:tirate", - "hall:ttrate", - "hall:winrate" - ] - ], - [ - "【25기】건방진노예", - 66, - 10, - 78, - "che_event_신중", - [ - 71873, - 46075, - 31281, - 645604, - 28140 - ], - 0, - "default.jpg", - 25, - "che_200604_NuxN", - 84, - [ - "hall:dex2", - "hall:dex4", - "hall:killcrew_person", - "hall:killnum", - "hall:tirate", - "hall:winrate" - ] - ], - [ - "【25기】ㅊㅋㅊㅋㅋ", - 14, - 73, - 63, - "che_event_징병", - [ - 0, - 0, - 12796, - 2877, - 0 - ], - 0, - "default.jpg", - 25, - "che_200604_NuxN", - 120, - [ - "hall:firenum" - ] - ], - [ - "【25기】아벤느채연", - 67, - 75, - 10, - "che_event_무쌍", - [ - 33562, - 23970, - 813284, - 102045, - 15434 - ], - 1, - "7e512d4.jpg?=20200605", - 25, - "che_200604_NuxN", - 168, - [ - "hall:dex3", - "hall:killcrew", - "hall:killcrew_person", - "hall:killnum", - "hall:killrate_person", - "hall:tsrate", - "hall:warnum" - ] - ], - [ - "【25기】치카", - 74, - 10, - 67, - "che_event_집중", - [ - 68769, - 37400, - 55441, - 480780, - 5910 - ], - 1, - "890b253.jpg?=20191024", - 25, - "che_200604_NuxN", - 222, - [ - "hall:tlrate" - ] - ], - [ - "【25기】모기", - 67, - 10, - 77, - "che_event_집중", - [ - 80108, - 51064, - 91634, - 699115, - 12937 - ], - 0, - "default.jpg", - 25, - "che_200604_NuxN", - 225, - [ - "hall:dex1", - "hall:dex4", - "hall:ttrate" - ] - ], - [ - "【25기】민트토끼", - 10, - 58, - 82, - "che_event_신산", - [ - 0, - 0, - 0, - 0, - 0 - ], - 1, - "e484fd4.gif?=20200424", - 25, - "che_200604_NuxN", - 256, - [ - "hall:dedication", - "hall:experience", - "hall:firenum", - "hall:tirate" - ] - ], - [ - "【25기】마니와 시라사기", - 14, - 59, - 75, - "che_event_신산", - [ - 0, - 0, - 0, - 0, - 0 - ], - 1, - "b31ef66.png?=20190509", - 25, - "che_200604_NuxN", - 296, - [ - "hall:firenum" - ] - ], - [ - "【25기】륜", - 63, - 10, - 80, - "che_event_환술", - [ - 71120, - 34275, - 32861, - 476732, - 20942 - ], - 1, - "25c0eb.jpg?=20200607", - 25, - "che_200604_NuxN", - 304, - [ - "hall:dedication", - "hall:experience", - "hall:killrate_person", - "hall:ttrate", - "hall:winrate" - ] - ], - [ - "【25기】만샘", - 10, - 67, - 96, - "che_event_필살", - [ - 0, - 0, - 0, - 0, - 0 - ], - 1, - "4a206a1.jpg?=20181122", - 25, - "che_200604_NuxN", - 386, - [ - "hall:firenum" - ] - ], - [ - "【25기】백구이야기", - 86, - 77, - 10, - "che_event_척사", - [ - 1020358, - 47414, - 149009, - 179378, - 14621 - ], - 1, - "f82ea71.jpg?=20200611", - 25, - "che_200604_NuxN", - 422, - [ - "hall:dex1", - "hall:dex3", - "hall:killcrew", - "hall:killcrew_person", - "hall:tlrate", - "hall:ttrate", - "hall:warnum" - ] - ], - [ - "【25기】레벤", - 75, - 11, - 83, - "che_event_집중", - [ - 54256, - 19340, - 27550, - 546810, - 3674 - ], - 0, - "default.jpg", - 25, - "che_200604_NuxN", - 475, - [ - "hall:winrate" - ] - ], - [ - "【25기】김갑환", - 71, - 80, - 10, - "che_event_징병", - [ - 43859, - 46941, - 440670, - 132634, - 8075 - ], - 1, - "dcff9fd.jpg?=20180823", - 25, - "che_200604_NuxN", - 869, - [ - "hall:dex3" - ] - ], [ "【26기】Hide_D", 74, @@ -39808,905 +33180,6 @@ "hall:dex2" ] ], - [ - "【30기】⑦이드", - 69, - 79, - 9, - "che_event_환술", - [ - 96782, - 903159, - 65095, - 225631, - 22495 - ], - 1, - "5e36874.jpg?=20190126", - 30, - "che_201231_zpIW", - 7, - [ - "hall:dex1", - "hall:dex2", - "hall:occupied", - "hall:tirate", - "hall:ttrate", - "hall:winrate" - ] - ], - [ - "【30기】⑱Hide_D", - 87, - 10, - 88, - "che_event_저격", - [ - 74991, - 139082, - 209362, - 1820173, - 145056 - ], - 1, - "ee5accd.jpg?=20190411", - 30, - "che_201231_zpIW", - 9, - [ - "hall:dedication", - "hall:dex3", - "hall:dex4", - "hall:dex5", - "hall:experience", - "hall:killcrew", - "hall:killcrew_person", - "hall:tirate", - "hall:tlrate", - "hall:warnum" - ] - ], - [ - "【30기】㉗김나영", - 79, - 100, - 16, - "che_event_견고", - [ - 69042, - 70525, - 959824, - 71987, - 69759 - ], - 1, - "c90a3d4.jpg?=20190905", - 30, - "che_201231_zpIW", - 10, - [ - "chief:6", - "hall:dedication", - "hall:dex3", - "hall:killcrew", - "hall:killrate", - "hall:killrate_person", - "hall:tsrate", - "hall:ttrate", - "hall:warnum" - ] - ], - [ - "【30기】②도리도리반도리도리", - 91, - 89, - 10, - "che_event_견고", - [ - 43295, - 182952, - 2368257, - 344449, - 109689 - ], - 1, - "79cffda.png?=20180805", - 30, - "che_201231_zpIW", - 14, - [ - "hall:dex2", - "hall:dex3", - "hall:dex5", - "hall:experience", - "hall:killcrew", - "hall:killcrew_person", - "hall:killnum", - "hall:killrate", - "hall:killrate_person", - "hall:occupied", - "hall:tlrate", - "hall:tsrate", - "hall:warnum", - "hall:winrate" - ] - ], - [ - "【30기】㉓박일아", - 80, - 11, - 98, - "che_event_집중", - [ - 78867, - 114692, - 144924, - 2012183, - 84156 - ], - 1, - "8608979.gif?=20191024", - 30, - "che_201231_zpIW", - 16, - [ - "hall:dex4", - "hall:dex5", - "hall:killrate", - "hall:killrate_person", - "hall:occupied", - "hall:winrate" - ] - ], - [ - "【30기】②아저씨쨩", - 84, - 10, - 95, - "che_event_환술", - [ - 70253, - 261581, - 177594, - 2070229, - 99090 - ], - 1, - "dff1ae6.jpg?=20180729", - 30, - "che_201231_zpIW", - 17, - [ - "chief:9", - "hall:dedication", - "hall:dex2", - "hall:dex4", - "hall:dex5", - "hall:experience", - "hall:killcrew", - "hall:killcrew_person", - "hall:killnum", - "hall:killrate", - "hall:killrate_person", - "hall:occupied", - "hall:tirate", - "hall:tlrate", - "hall:ttrate", - "hall:warnum", - "hall:winrate" - ] - ], - [ - "【30기】⑫꼬리♡", - 73, - 10, - 90, - "che_event_견고", - [ - 24478, - 27771, - 20496, - 454170, - 34509 - ], - 1, - "844a93b.gif?=20190717", - 30, - "che_201231_zpIW", - 21, - [ - "hall:tsrate" - ] - ], - [ - "【30기】⑦한서진", - 82, - 87, - 9, - "che_event_위압", - [ - 99048, - 227225, - 2520764, - 532521, - 99172 - ], - 1, - "53f1ebd.jpg?=20190221", - 30, - "che_201231_zpIW", - 29, - [ - "hall:dex1", - "hall:dex2", - "hall:dex3", - "hall:dex5", - "hall:occupied", - "hall:tsrate", - "hall:warnum" - ] - ], - [ - "【30기】㉖수장", - 84, - 81, - 15, - "che_event_저격", - [ - 275020, - 9883, - 12463, - 43924, - 26502 - ], - 1, - "190d7ff.jpg?=20200312", - 30, - "che_201231_zpIW", - 31, - [ - "hall:dex1", - "hall:tlrate" - ] - ], - [ - "【30기】⑦이쓰미", - 75, - 9, - 80, - "che_event_징병", - [ - 121862, - 180870, - 148181, - 974504, - 24220 - ], - 1, - "fd6a0fd.jpg?=20181212", - 30, - "che_201231_zpIW", - 40, - [ - "hall:dex1", - "hall:dex2", - "hall:tirate" - ] - ], - [ - "【30기】㉓강지", - 101, - 80, - 10, - "che_event_무쌍", - [ - 67449, - 135593, - 2081166, - 269672, - 96729 - ], - 1, - "3a967d1.jpg?=20200129", - 30, - "che_201231_zpIW", - 41, - [ - "chief:8", - "hall:dedication", - "hall:dex3", - "hall:dex5", - "hall:experience", - "hall:killcrew", - "hall:killcrew_person", - "hall:killnum", - "hall:killrate", - "hall:killrate_person", - "hall:tsrate", - "hall:ttrate", - "hall:warnum", - "hall:winrate" - ] - ], - [ - "【30기】⑦이수임", - 71, - 9, - 89, - "che_event_신산", - [ - 120764, - 95125, - 158981, - 1172145, - 75638 - ], - 1, - "555823.jpg?=20190223", - 30, - "che_201231_zpIW", - 43, - [ - "hall:dex1", - "hall:firenum", - "hall:occupied", - "hall:tirate" - ] - ], - [ - "【30기】㉓랜갈덤근", - 80, - 10, - 100, - "che_event_신산", - [ - 79393, - 107246, - 139699, - 2388577, - 104027 - ], - 0, - "./default.jpg", - 30, - "che_201231_zpIW", - 44, - [ - "hall:betgold", - "hall:dedication", - "hall:dex4", - "hall:dex5", - "hall:experience", - "hall:killcrew", - "hall:killcrew_person", - "hall:killnum", - "hall:killrate", - "hall:killrate_person", - "hall:occupied", - "hall:tirate", - "hall:ttrate", - "hall:warnum", - "hall:winrate" - ] - ], - [ - "【30기】⑳Hide_D", - 78, - 10, - 92, - "che_event_신산", - [ - 51683, - 53193, - 64955, - 1407540, - 58158 - ], - 1, - "9f0a2a8.png?=20200106", - 30, - "che_201231_zpIW", - 55, - [ - "hall:dex4", - "hall:experience", - "hall:killcrew", - "hall:killcrew_person", - "hall:killnum", - "hall:tirate", - "hall:warnum" - ] - ], - [ - "【30기】⑧프로야구매니저", - 77, - 96, - 10, - "che_event_돌격", - [ - 732778, - 496411, - 103546, - 200447, - 80490 - ], - 1, - "2f51d31.jpg?=20190318", - 30, - "che_201231_zpIW", - 58, - [ - "hall:dex1", - "hall:dex2", - "hall:tsrate" - ] - ], - [ - "【30기】②Hide_D", - 79, - 10, - 91, - "che_event_집중", - [ - 58534, - 159520, - 140687, - 884041, - 42549 - ], - 1, - "21d378f.jpg?=20180630", - 30, - "che_201231_zpIW", - 59, - [ - "chief:7", - "hall:dedication", - "hall:dex2", - "hall:experience", - "hall:killrate" - ] - ], - [ - "【30기】②농다리", - 82, - 99, - 10, - "che_event_견고", - [ - 46608, - 1982697, - 162469, - 291309, - 108222 - ], - 1, - "eb2cf45.jpg?=20180805", - 30, - "che_201231_zpIW", - 60, - [ - "hall:dex2", - "hall:dex5", - "hall:firenum", - "hall:killcrew_person", - "hall:killnum", - "hall:killrate", - "hall:killrate_person", - "hall:tsrate", - "hall:ttrate" - ] - ], - [ - "【30기】㉓카이스트", - 79, - 10, - 98, - "che_event_반계", - [ - 118260, - 103772, - 160426, - 1577408, - 61662 - ], - 1, - "9361ef8.jpg?=20180907", - 30, - "che_201231_zpIW", - 62, - [ - "hall:dedication", - "hall:dex1", - "hall:dex4", - "hall:ttrate" - ] - ], - [ - "【30기】②명가의 수호자", - 80, - 12, - 93, - "che_event_집중", - [ - 66204, - 133920, - 261091, - 1702542, - 75377 - ], - 0, - "default.jpg", - 30, - "che_201231_zpIW", - 65, - [ - "hall:betgold", - "hall:betwin", - "hall:betwingold", - "hall:dex3", - "hall:dex4", - "hall:killcrew", - "hall:killcrew_person", - "hall:killnum", - "hall:killrate_person", - "hall:occupied", - "hall:tirate", - "hall:tlrate", - "hall:warnum", - "hall:winrate" - ] - ], - [ - "【30기】⑦김주영", - 79, - 9, - 76, - "che_event_척사", - [ - 99369, - 78503, - 151453, - 1211945, - 36168 - ], - 1, - "ecadeaf.png?=20190221", - 30, - "che_201231_zpIW", - 68, - [ - "hall:dex1", - "hall:tlrate" - ] - ], - [ - "【30기】㉓삼모몰라요", - 77, - 10, - 100, - "che_event_신산", - [ - 91147, - 82146, - 91833, - 1264114, - 49375 - ], - 0, - "./default.jpg", - 30, - "che_201231_zpIW", - 69, - [ - "hall:dex4", - "hall:experience", - "hall:killrate", - "hall:killrate_person", - "hall:winrate" - ] - ], - [ - "【30기】②모하지맨", - 81, - 92, - 10, - "che_event_돌격", - [ - 27372, - 1615515, - 133890, - 360936, - 68511 - ], - 0, - "./default.jpg", - 30, - "che_201231_zpIW", - 72, - [ - "hall:dex2", - "hall:killnum", - "hall:tlrate", - "hall:tsrate", - "hall:winrate" - ] - ], - [ - "【30기】⑦노루야캐요", - 75, - 9, - 87, - "che_event_반계", - [ - 96605, - 124703, - 203633, - 1015923, - 44988 - ], - 1, - "8212a8.jpg?=20190207", - 30, - "che_201231_zpIW", - 177, - [ - "hall:dedication", - "hall:dex3" - ] - ], - [ - "【30기】㉓독구", - 82, - 11, - 94, - "che_event_신산", - [ - 48939, - 44920, - 49274, - 1622000, - 53164 - ], - 1, - "ac701b0.jpg?=20180625", - 30, - "che_201231_zpIW", - 178, - [ - "chief:5", - "hall:dedication", - "hall:dex4", - "hall:experience", - "hall:killcrew", - "hall:killnum", - "hall:killrate", - "hall:killrate_person", - "hall:occupied", - "hall:tirate", - "hall:tlrate", - "hall:ttrate" - ] - ], - [ - "【30기】⑮아들", - 79, - 97, - 10, - "che_event_견고", - [ - 80039, - 150540, - 1695954, - 212758, - 65555 - ], - 1, - "97d501f.jpg?=20190926", - 30, - "che_201231_zpIW", - 180, - [ - "chief:10", - "hall:dedication", - "hall:dex3", - "hall:experience", - "hall:killcrew", - "hall:killcrew_person", - "hall:killnum", - "hall:tsrate", - "hall:warnum", - "hall:winrate" - ] - ], - [ - "【30기】②삼남매아빠", - 94, - 79, - 10, - "che_event_무쌍", - [ - 1487755, - 123974, - 196132, - 264386, - 78048 - ], - 0, - "default.jpg", - 30, - "che_201231_zpIW", - 207, - [ - "hall:dex1", - "hall:firenum", - "hall:tlrate", - "hall:ttrate" - ] - ], - [ - "【30기】⑦필터링", - 73, - 9, - 84, - "che_event_집중", - [ - 65405, - 116799, - 224266, - 1434646, - 59107 - ], - 0, - "default.jpg", - 30, - "che_201231_zpIW", - 246, - [ - "hall:dex3", - "hall:dex4", - "hall:killcrew_person", - "hall:tirate" - ] - ], - [ - "【30기】㉓등화", - 108, - 66, - 11, - "che_event_돌격", - [ - 6320, - 2735, - 15549, - 111940, - 1564119 - ], - 1, - "f11922a.png?=20200218", - 30, - "che_201231_zpIW", - 296, - [ - "hall:dex5", - "hall:occupied", - "hall:ttrate" - ] - ], - [ - "【30기】⑩과학 5호", - 96, - 10, - 57, - "che_event_필살", - [ - 1571, - 1623, - 4072, - 41281, - 1697858 - ], - 0, - "./default.jpg", - 30, - "che_201231_zpIW", - 374, - [ - "hall:dex5", - "hall:tlrate" - ] - ], - [ - "【30기】⑨수장", - 81, - 88, - 10, - "che_event_저격", - [ - 56543, - 143272, - 1015423, - 241296, - 48049 - ], - 1, - "897dde2.png?=20190411", - 30, - "che_201231_zpIW", - 404, - [ - "chief:12", - "hall:dex3", - "hall:firenum", - "hall:tsrate" - ] - ], - [ - "【30기】⑦갓드오브갓크", - 69, - 9, - 82, - "che_event_신중", - [ - 104300, - 81444, - 63010, - 944086, - 28267 - ], - 0, - "default.jpg", - 30, - "che_201231_zpIW", - 439, - [ - "hall:dex1" - ] - ], - [ - "【30기】③졸린마녀", - 74, - 83, - 11, - "che_event_반계", - [ - 94739, - 647413, - 84113, - 97749, - 29074 - ], - 1, - "ef47121.jpg?=20180825", - 30, - "che_201231_zpIW", - 462, - [ - "hall:dex2" - ] - ], - [ - "【30기】⑩Hide_D", - 90, - 9, - 56, - "che_event_저격", - [ - 5517, - 11665, - 20996, - 18351, - 1594952 - ], - 1, - "ee5accd.jpg?=20190411", - 30, - "che_201231_zpIW", - 545, - [ - "chief:11" - ] - ], [ "【31기】네이미", 90, @@ -44097,1217 +36570,6 @@ "hall:dex2" ] ], - [ - "【35기】타코다치", - 87, - 78, - 16, - "che_event_궁병", - [ - 49772, - 356856, - 23035, - 50415, - 20515 - ], - 1, - "a42b8f6.jpg?=20210916", - 35, - "che_210916_SfW7", - 4, - [ - "hall:dex2", - "hall:killrate_person" - ] - ], - [ - "【35기】돌아온너구리", - 94, - 76, - 15, - "che_event_견고", - [ - 951083, - 17418, - 34926, - 28248, - 21483 - ], - 1, - "79dbce5.jpg?=20210918", - 35, - "che_210916_SfW7", - 8, - [ - "chief:11", - "hall:betgold", - "hall:betrate", - "hall:betwin", - "hall:betwingold", - "hall:dex1", - "hall:killcrew", - "hall:killcrew_person", - "hall:killnum", - "hall:warnum", - "hall:winrate" - ] - ], - [ - "【35기】메지로 맥퀸", - 94, - 75, - 15, - "che_event_돌격", - [ - 22973, - 99279, - 602209, - 121913, - 12922 - ], - 1, - "a03e34.jpg?=20210916", - 35, - "che_210916_SfW7", - 9, - [ - "hall:dex3", - "hall:tlrate" - ] - ], - [ - "【35기】임사영", - 76, - 15, - 97, - "che_event_집중", - [ - 126130, - 119334, - 126735, - 1097320, - 29296 - ], - 1, - "10e5f72.jpg?=20210430", - 35, - "che_210916_SfW7", - 10, - [ - "hall:dex1", - "hall:dex4", - "hall:experience", - "hall:killcrew", - "hall:killcrew_person", - "hall:killnum", - "hall:killrate", - "hall:killrate_person", - "hall:tirate", - "hall:warnum", - "hall:winrate" - ] - ], - [ - "【35기】사스케", - 76, - 94, - 15, - "che_event_견고", - [ - 25272, - 95535, - 1050031, - 57782, - 63488 - ], - 1, - "986348a.jpg?=20190815", - 35, - "che_210916_SfW7", - 11, - [ - "chief:12", - "hall:betgold", - "hall:betrate", - "hall:betwin", - "hall:betwingold", - "hall:dedication", - "hall:dex3", - "hall:dex5", - "hall:experience", - "hall:firenum", - "hall:killcrew", - "hall:killnum", - "hall:killrate", - "hall:killrate_person", - "hall:occupied", - "hall:tsrate", - "hall:warnum", - "hall:winrate" - ] - ], - [ - "【35기】Hide_D", - 78, - 16, - 91, - "che_event_집중", - [ - 48830, - 90889, - 94770, - 620197, - 19262 - ], - 1, - "9f0a2a8.png?=20200106", - 35, - "che_210916_SfW7", - 12, - [ - "hall:dex4", - "hall:killcrew_person", - "hall:tirate" - ] - ], - [ - "【35기】반계", - 15, - 94, - 75, - "che_event_신산", - [ - 0, - 0, - 0, - 0, - 0 - ], - 0, - "default.jpg", - 35, - "che_210916_SfW7", - 14, - [ - "hall:dedication", - "hall:experience", - "hall:firenum", - "hall:tsrate" - ] - ], - [ - "【35기】퍄퍄", - 93, - 76, - 15, - "che_event_견고", - [ - 956867, - 53835, - 94042, - 150828, - 33857 - ], - 0, - "default.jpg", - 35, - "che_210916_SfW7", - 16, - [ - "hall:betwin", - "hall:betwingold", - "hall:dex1", - "hall:dex5", - "hall:experience", - "hall:firenum", - "hall:killcrew", - "hall:killcrew_person", - "hall:killrate", - "hall:killrate_person", - "hall:occupied", - "hall:tlrate", - "hall:ttrate", - "hall:warnum" - ] - ], - [ - "【35기】이드", - 76, - 93, - 15, - "che_event_무쌍", - [ - 97184, - 489678, - 22729, - 101833, - 26118 - ], - 1, - "5898830.jpg?=20210831", - 35, - "che_210916_SfW7", - 18, - [ - "hall:dex2", - "hall:tsrate" - ] - ], - [ - "【35기】수장", - 88, - 79, - 16, - "che_event_견고", - [ - 734366, - 28652, - 138204, - 129814, - 31727 - ], - 1, - "b725306.jpg?=20210325", - 35, - "che_210916_SfW7", - 19, - [ - "hall:dex1", - "hall:ttrate" - ] - ], - [ - "【35기】트위치", - 75, - 93, - 15, - "che_event_돌격", - [ - 47113, - 395814, - 144430, - 56095, - 22912 - ], - 1, - "8fd9b35.png?=20210916", - 35, - "che_210916_SfW7", - 20, - [ - "hall:betwin", - "hall:dex2", - "hall:dex3", - "hall:killrate", - "hall:killrate_person", - "hall:tsrate", - "hall:winrate" - ] - ], - [ - "【35기】갈근", - 77, - 15, - 94, - "che_event_반계", - [ - 63078, - 116644, - 58350, - 591788, - 14066 - ], - 0, - "default.jpg", - 35, - "che_210916_SfW7", - 21, - [ - "hall:dex4", - "hall:tirate" - ] - ], - [ - "【35기】아크라시아", - 100, - 43, - 42, - "che_event_공성", - [ - 3880, - 0, - 0, - 12434, - 430173 - ], - 1, - "7d93805.jpg?=20210916", - 35, - "che_210916_SfW7", - 23, - [ - "hall:betwin", - "hall:betwingold", - "hall:dex5", - "hall:experience", - "hall:firenum", - "hall:killrate", - "hall:occupied", - "hall:tlrate", - "hall:ttrate", - "hall:winrate" - ] - ], - [ - "【35기】천괴금", - 15, - 70, - 100, - "che_event_의술", - [ - 0, - 0, - 0, - 0, - 0 - ], - 1, - "2b239af.png?=20190824", - 35, - "che_210916_SfW7", - 24, - [ - "hall:betwin", - "hall:betwingold", - "hall:tirate" - ] - ], - [ - "【35기】방비방비", - 15, - 86, - 79, - "che_event_신산", - [ - 0, - 0, - 0, - 0, - 0 - ], - 0, - "default.jpg", - 35, - "che_210916_SfW7", - 27, - [ - "hall:experience", - "hall:firenum" - ] - ], - [ - "【35기】중집", - 15, - 93, - 75, - "che_event_신산", - [ - 0, - 0, - 0, - 0, - 0 - ], - 0, - "default.jpg", - 35, - "che_210916_SfW7", - 28, - [ - "hall:firenum", - "hall:tsrate" - ] - ], - [ - "【35기】로리", - 76, - 15, - 93, - "che_event_신산", - [ - 86428, - 68387, - 120004, - 555435, - 19939 - ], - 1, - "50794a6.jpg?=20190923", - 35, - "che_210916_SfW7", - 29, - [ - "hall:dex4", - "hall:tirate" - ] - ], - [ - "【35기】시뉴카린", - 77, - 15, - 92, - "che_event_집중", - [ - 106217, - 49397, - 69460, - 553667, - 32937 - ], - 1, - "a7a3fdf.gif?=20210917", - 35, - "che_210916_SfW7", - 31, - [ - "chief:7", - "hall:betgold", - "hall:dex4", - "hall:tirate" - ] - ], - [ - "【35기】따슬링어", - 90, - 79, - 15, - "che_event_위압", - [ - 270743, - 271321, - 151396, - 112140, - 27872 - ], - 0, - "default.jpg", - 35, - "che_210916_SfW7", - 32, - [ - "hall:betgold", - "hall:dex1", - "hall:dex3" - ] - ], - [ - "【35기】평민킬러", - 95, - 74, - 15, - "che_event_견고", - [ - 107699, - 797067, - 101775, - 163015, - 39124 - ], - 1, - "fb23a32.jpg?=20190904", - 35, - "che_210916_SfW7", - 33, - [ - "hall:dex2", - "hall:dex5", - "hall:killcrew", - "hall:killcrew_person", - "hall:tlrate", - "hall:warnum" - ] - ], - [ - "【35기】외심장", - 82, - 15, - 89, - "che_event_환술", - [ - 73786, - 88105, - 122172, - 612532, - 8299 - ], - 1, - "36110cd.jpg?=20180826", - 35, - "che_210916_SfW7", - 34, - [ - "hall:dex4", - "hall:winrate" - ] - ], - [ - "【35기】유카", - 91, - 79, - 15, - "che_event_돌격", - [ - 636793, - 43623, - 92314, - 73289, - 43592 - ], - 0, - "default.jpg", - 35, - "che_210916_SfW7", - 35, - [ - "chief:10", - "hall:betgold", - "hall:betrate", - "hall:betwingold", - "hall:dedication", - "hall:dex1", - "hall:dex5", - "hall:firenum", - "hall:killnum", - "hall:killrate", - "hall:tlrate", - "hall:ttrate", - "hall:winrate" - ] - ], - [ - "【35기】실패왕대악질", - 94, - 76, - 15, - "che_event_반계", - [ - 78860, - 79194, - 853372, - 118713, - 25112 - ], - 1, - "fcf7003.gif?=20210916", - 35, - "che_210916_SfW7", - 36, - [ - "hall:betgold", - "hall:betrate", - "hall:betwin", - "hall:betwingold", - "hall:dex3", - "hall:experience", - "hall:killcrew", - "hall:killcrew_person", - "hall:killnum", - "hall:killrate", - "hall:killrate_person", - "hall:warnum" - ] - ], - [ - "【35기】음화화핫", - 93, - 77, - 15, - "che_event_궁병", - [ - 64342, - 1112859, - 30441, - 89550, - 44762 - ], - 1, - "a12cb00.jpg?=20210925", - 35, - "che_210916_SfW7", - 37, - [ - "chief:6", - "hall:betgold", - "hall:betrate", - "hall:betwin", - "hall:betwingold", - "hall:dex2", - "hall:dex5", - "hall:experience", - "hall:killcrew", - "hall:killcrew_person", - "hall:killnum", - "hall:killrate", - "hall:killrate_person", - "hall:occupied", - "hall:tlrate", - "hall:warnum" - ] - ], - [ - "【35기】제갈여포", - 89, - 78, - 15, - "che_event_견고", - [ - 582892, - 280066, - 111335, - 154627, - 32515 - ], - 1, - "e8e8adc.jpg?=20180419", - 35, - "che_210916_SfW7", - 38, - [ - "hall:dex1", - "hall:killcrew", - "hall:killcrew_person", - "hall:killnum", - "hall:warnum" - ] - ], - [ - "【35기】호갱", - 79, - 15, - 90, - "che_event_의술", - [ - 25128, - 27867, - 59752, - 321412, - 11348 - ], - 0, - "default.jpg", - 35, - "che_210916_SfW7", - 39, - [ - "hall:dedication", - "hall:dex4" - ] - ], - [ - "【35기】통천교주", - 79, - 15, - 90, - "che_event_집중", - [ - 100309, - 106430, - 47762, - 562463, - 30050 - ], - 1, - "715dec5.jpg?=20210921", - 35, - "che_210916_SfW7", - 40, - [ - "chief:5", - "hall:betwin", - "hall:dex4", - "hall:killnum", - "hall:winrate" - ] - ], - [ - "【35기】똑똑똑똑똑똑똑똑똑", - 76, - 95, - 15, - "che_event_견고", - [ - 854836, - 44585, - 98308, - 186395, - 27104 - ], - 1, - "d1d2ae.gif?=20210921", - 35, - "che_210916_SfW7", - 41, - [ - "hall:betgold", - "hall:betrate", - "hall:betwin", - "hall:betwingold", - "hall:dex1", - "hall:killcrew", - "hall:killcrew_person", - "hall:killnum", - "hall:killrate_person", - "hall:occupied", - "hall:tsrate", - "hall:warnum" - ] - ], - [ - "【35기】Kronii", - 98, - 71, - 15, - "che_event_견고", - [ - 57845, - 363626, - 19346, - 56645, - 19974 - ], - 1, - "364c0f0.gif?=20210922", - 35, - "che_210916_SfW7", - 42, - [ - "hall:dex2", - "hall:firenum", - "hall:occupied", - "hall:tlrate", - "hall:ttrate" - ] - ], - [ - "【35기】로비", - 15, - 71, - 96, - "che_event_의술", - [ - 0, - 0, - 0, - 0, - 0 - ], - 1, - "708a981.png?=20200402", - 35, - "che_210916_SfW7", - 43, - [ - "chief:9", - "hall:betgold", - "hall:dedication", - "hall:experience", - "hall:tirate" - ] - ], - [ - "【35기】귀달", - 77, - 93, - 15, - "che_event_견고", - [ - 120803, - 569580, - 76343, - 83602, - 19488 - ], - 0, - "default.jpg", - 35, - "che_210916_SfW7", - 45, - [ - "hall:dex2", - "hall:firenum", - "hall:tsrate" - ] - ], - [ - "【35기】Karl", - 91, - 75, - 16, - "che_event_견고", - [ - 80343, - 128575, - 678645, - 175848, - 49687 - ], - 0, - "default.jpg", - 35, - "che_210916_SfW7", - 46, - [ - "hall:betgold", - "hall:betrate", - "hall:betwingold", - "hall:dex3", - "hall:dex5", - "hall:occupied" - ] - ], - [ - "【35기】rwitch", - 76, - 15, - 93, - "che_event_징병", - [ - 100980, - 53398, - 41480, - 341251, - 12175 - ], - 1, - "54e527.png?=20201024", - 35, - "che_210916_SfW7", - 47, - [ - "hall:dex4", - "hall:tirate", - "hall:ttrate" - ] - ], - [ - "【35기】조민", - 94, - 77, - 15, - "che_event_무쌍", - [ - 142494, - 862647, - 50349, - 175019, - 22951 - ], - 1, - "e843171.png?=20210922", - 35, - "che_210916_SfW7", - 48, - [ - "hall:dex1", - "hall:dex2", - "hall:killcrew", - "hall:killcrew_person", - "hall:killnum", - "hall:tlrate", - "hall:ttrate", - "hall:warnum" - ] - ], - [ - "【35기】버그좀써보자", - 80, - 88, - 15, - "che_event_견고", - [ - 58340, - 515594, - 41576, - 65872, - 32125 - ], - 0, - "default.jpg", - 35, - "che_210916_SfW7", - 49, - [ - "hall:dedication", - "hall:dex2" - ] - ], - [ - "【35기】봄꽃", - 84, - 16, - 83, - "che_event_귀병", - [ - 23972, - 67494, - 42019, - 361950, - 31095 - ], - 0, - "default.jpg", - 35, - "che_210916_SfW7", - 50, - [ - "hall:dedication", - "hall:dex4" - ] - ], - [ - "【35기】ARES군주", - 78, - 90, - 16, - "che_event_견고", - [ - 108209, - 122585, - 581013, - 148874, - 34671 - ], - 1, - "106f82e.jpg?=20210212", - 35, - "che_210916_SfW7", - 51, - [ - "hall:dex3", - "hall:dex5", - "hall:tsrate" - ] - ], - [ - "【35기】김나영", - 76, - 93, - 15, - "che_event_필살", - [ - 41788, - 131744, - 695133, - 95344, - 37092 - ], - 1, - "f6ea996.jpg?=20210930", - 35, - "che_210916_SfW7", - 53, - [ - "hall:dex3", - "hall:dex5", - "hall:firenum", - "hall:occupied", - "hall:tsrate", - "hall:ttrate" - ] - ], - [ - "【35기】ㅇㄷ", - 92, - 74, - 16, - "che_event_견고", - [ - 448165, - 21537, - 53835, - 129552, - 8653 - ], - 0, - "default.jpg", - 35, - "che_210916_SfW7", - 55, - [ - "hall:dex1", - "hall:tlrate" - ] - ], - [ - "【35기】김갑환", - 73, - 15, - 96, - "che_event_집중", - [ - 54601, - 36161, - 29585, - 251271, - 27395 - ], - 1, - "dcff9fd.jpg?=20180823", - 35, - "che_210916_SfW7", - 58, - [ - "hall:dedication", - "hall:tirate", - "hall:ttrate" - ] - ], - [ - "【35기】누렁", - 79, - 90, - 15, - "che_event_위압", - [ - 22327, - 62994, - 443107, - 29276, - 29562 - ], - 1, - "4bbfa36.jpg?=20190411", - 35, - "che_210916_SfW7", - 59, - [ - "hall:dedication", - "hall:dex3", - "hall:killrate", - "hall:killrate_person", - "hall:winrate" - ] - ], - [ - "【35기】리플5년차", - 89, - 78, - 15, - "che_event_궁병", - [ - 39038, - 515839, - 25627, - 55478, - 16723 - ], - 1, - "cd4cd29.jpg?=20210917", - 35, - "che_210916_SfW7", - 93, - [ - "hall:dex2", - "hall:killrate_person", - "hall:occupied" - ] - ], - [ - "【35기】나데코", - 90, - 76, - 15, - "che_event_돌격", - [ - 38922, - 60402, - 419258, - 82328, - 12658 - ], - 0, - "default.jpg", - 35, - "che_210916_SfW7", - 162, - [ - "hall:dex3", - "hall:tlrate", - "hall:ttrate" - ] - ], - [ - "【35기】페이트", - 86, - 78, - 15, - "che_event_공성", - [ - 3961, - 0, - 483, - 6554, - 609319 - ], - 1, - "39cbafe.jpg?=20210910", - 35, - "che_210916_SfW7", - 254, - [ - "chief:8", - "hall:dex5", - "hall:experience", - "hall:killrate", - "hall:occupied", - "hall:winrate" - ] - ], - [ - "【35기】ㅅ1뉴카린", - 71, - 15, - 92, - "che_event_징병", - [ - 0, - 0, - 0, - 0, - 0 - ], - 1, - "ebefbb6.jpg?=20210929", - 35, - "che_210916_SfW7", - 267, - [ - "hall:tirate" - ] - ], - [ - "【35기】어르신", - 74, - 90, - 15, - "che_event_견고", - [ - 54595, - 346565, - 37961, - 41429, - 20145 - ], - 0, - "default.jpg", - 35, - "che_210916_SfW7", - 274, - [ - "hall:dedication", - "hall:tsrate" - ] - ], [ "【36기】코코로네네", 77, @@ -50869,1346 +42131,6 @@ "hall:firenum" ] ], - [ - "【40기】ⓝ장로", - 90, - 87, - 90, - "che_event_위압", - [ - 10652, - 6609, - 12422, - 293343, - 18812 - ], - 0, - "1319.jpg", - 40, - "che_220127_IYPv", - 16, - [ - "chief:12" - ] - ], - [ - "【40기】내정용인형", - 77, - 92, - 15, - "che_event_필살", - [ - 8918, - 16180, - 493968, - 35214, - 19400 - ], - 1, - "47cefa0.jpg?=20220120", - 40, - "che_220127_IYPv", - 27, - [ - "hall:betrate", - "hall:dex3", - "hall:experience", - "hall:killcrew", - "hall:killcrew_person", - "hall:killnum", - "hall:occupied", - "hall:tsrate", - "hall:warnum", - "hall:winrate" - ] - ], - [ - "【40기】도?루", - 76, - 91, - 15, - "che_event_저격", - [ - 12858, - 28134, - 377247, - 41567, - 16445 - ], - 1, - "9eef576.gif?=20220127", - 40, - "che_220127_IYPv", - 28, - [ - "hall:betgold", - "hall:betrate", - "hall:betwingold", - "hall:dex3", - "hall:experience", - "hall:killrate", - "hall:killrate_person", - "hall:occupied" - ] - ], - [ - "【40기】라니", - 76, - 91, - 15, - "che_event_견고", - [ - 39850, - 4746, - 424590, - 49585, - 14264 - ], - 1, - "c93b2d2.jpg?=20220127", - 40, - "che_220127_IYPv", - 30, - [ - "hall:dex3", - "hall:firenum", - "hall:tsrate" - ] - ], - [ - "【40기】Shining Light", - 87, - 79, - 16, - "che_event_돌격", - [ - 400358, - 31037, - 31597, - 37826, - 19062 - ], - 1, - "906931a.jpg?=20220128", - 40, - "che_220127_IYPv", - 33, - [ - "hall:dex1", - "hall:tlrate" - ] - ], - [ - "【40기】Montis", - 76, - 16, - 89, - "che_event_반계", - [ - 22002, - 27695, - 10253, - 221080, - 20851 - ], - 0, - "default.jpg", - 40, - "che_220127_IYPv", - 35, - [ - "hall:tirate", - "hall:ttrate" - ] - ], - [ - "【40기】카이스트", - 75, - 16, - 91, - "che_event_집중", - [ - 18761, - 37792, - 71850, - 413004, - 21492 - ], - 1, - "9361ef8.jpg?=20180907", - 40, - "che_220127_IYPv", - 37, - [ - "hall:betgold", - "hall:betwin", - "hall:betwingold", - "hall:dex4", - "hall:tirate" - ] - ], - [ - "【40기】금붕어", - 75, - 15, - 92, - "che_event_반계", - [ - 9986, - 6905, - 21975, - 238979, - 30844 - ], - 0, - "default.jpg", - 40, - "che_220127_IYPv", - 40, - [ - "hall:dex5", - "hall:occupied", - "hall:tirate" - ] - ], - [ - "【40기】귀달", - 78, - 88, - 15, - "che_event_무쌍", - [ - 65855, - 398880, - 10842, - 52034, - 21468 - ], - 0, - "default.jpg", - 40, - "che_220127_IYPv", - 41, - [ - "hall:betgold", - "hall:betrate", - "hall:betwin", - "hall:betwingold", - "hall:dex1", - "hall:dex2", - "hall:warnum" - ] - ], - [ - "【40기】SARS", - 79, - 91, - 15, - "che_event_견고", - [ - 51118, - 29496, - 525073, - 30606, - 28799 - ], - 1, - "b84944.jpg?=20180829", - 40, - "che_220127_IYPv", - 45, - [ - "chief:10", - "hall:betgold", - "hall:betwin", - "hall:betwingold", - "hall:dedication", - "hall:dex3", - "hall:dex5", - "hall:experience", - "hall:killcrew", - "hall:killcrew_person", - "hall:killnum", - "hall:killrate", - "hall:killrate_person", - "hall:occupied", - "hall:tlrate", - "hall:tsrate", - "hall:warnum", - "hall:winrate" - ] - ], - [ - "【40기】아트라", - 15, - 97, - 70, - "che_event_신산", - [ - 0, - 0, - 0, - 0, - 0 - ], - 0, - "default.jpg", - 40, - "che_220127_IYPv", - 47, - [ - "chief:5", - "hall:dedication", - "hall:experience", - "hall:firenum", - "hall:tsrate" - ] - ], - [ - "【40기】이드", - 74, - 93, - 15, - "che_event_돌격", - [ - 5569, - 8087, - 287706, - 50562, - 25486 - ], - 1, - "5898830.jpg?=20210831", - 40, - "che_220127_IYPv", - 50, - [ - "hall:dedication", - "hall:firenum", - "hall:ttrate" - ] - ], - [ - "【40기】밀접접촉자", - 76, - 91, - 16, - "che_event_무쌍", - [ - 40054, - 355186, - 13856, - 48773, - 15539 - ], - 0, - "default.jpg", - 40, - "che_220127_IYPv", - 51, - [ - "hall:betrate", - "hall:betwingold", - "hall:dex2" - ] - ], - [ - "【40기】갈근", - 90, - 76, - 16, - "che_event_무쌍", - [ - 11977, - 54087, - 496901, - 28212, - 17091 - ], - 0, - "default.jpg", - 40, - "che_220127_IYPv", - 56, - [ - "hall:betgold", - "hall:betwin", - "hall:dex3", - "hall:killcrew", - "hall:killcrew_person", - "hall:killnum", - "hall:killrate", - "hall:killrate_person", - "hall:tlrate", - "hall:warnum", - "hall:winrate" - ] - ], - [ - "【40기】dokodomo", - 76, - 91, - 15, - "che_event_의술", - [ - 40011, - 259700, - 16564, - 14084, - 22064 - ], - 1, - "65faa27.jpg?=20220128", - 40, - "che_220127_IYPv", - 57, - [ - "hall:dex2" - ] - ], - [ - "【40기】사스케", - 78, - 89, - 15, - "che_event_견고", - [ - 45554, - 490878, - 14827, - 61717, - 29916 - ], - 1, - "31e1a0c.jpg?=20220109", - 40, - "che_220127_IYPv", - 59, - [ - "chief:11", - "hall:betgold", - "hall:betwin", - "hall:betwingold", - "hall:dedication", - "hall:dex2", - "hall:dex5", - "hall:experience", - "hall:firenum", - "hall:killcrew", - "hall:killnum", - "hall:killrate", - "hall:occupied" - ] - ], - [ - "【40기】킹구", - 77, - 15, - 89, - "che_event_신중", - [ - 41251, - 51399, - 47851, - 338710, - 11552 - ], - 1, - "35f1b7d.png?=20220106", - 40, - "che_220127_IYPv", - 62, - [ - "hall:tirate" - ] - ], - [ - "【40기】UBiSoft", - 88, - 75, - 16, - "che_event_무쌍", - [ - 30396, - 27850, - 263594, - 27982, - 10406 - ], - 1, - "87ae8da.png?=20220128", - 40, - "che_220127_IYPv", - 63, - [ - "hall:tlrate" - ] - ], - [ - "【40기】도화가", - 76, - 15, - 91, - "che_event_신중", - [ - 18561, - 43184, - 14229, - 349760, - 14534 - ], - 0, - "default.jpg", - 40, - "che_220127_IYPv", - 64, - [ - "hall:dex4", - "hall:tirate" - ] - ], - [ - "【40기】천괴금", - 15, - 97, - 70, - "che_event_신산", - [ - 0, - 0, - 0, - 0, - 0 - ], - 1, - "51d357b.png?=20211228", - 40, - "che_220127_IYPv", - 67, - [ - "hall:dedication", - "hall:experience", - "hall:firenum", - "hall:tsrate" - ] - ], - [ - "【40기】박일아", - 76, - 15, - 91, - "che_event_집중", - [ - 34329, - 21150, - 11355, - 400643, - 18911 - ], - 1, - "8608979.gif?=20191024", - 40, - "che_220127_IYPv", - 68, - [ - "hall:dedication", - "hall:dex4", - "hall:killnum", - "hall:killrate", - "hall:killrate_person", - "hall:occupied", - "hall:tirate", - "hall:ttrate", - "hall:winrate" - ] - ], - [ - "【40기】엘윈", - 76, - 87, - 15, - "che_event_기병", - [ - 6405, - 20259, - 205689, - 36397, - 10659 - ], - 0, - "default.jpg", - 40, - "che_220127_IYPv", - 69, - [ - "hall:tsrate" - ] - ], - [ - "【40기】Hide_D", - 78, - 15, - 90, - "che_event_집중", - [ - 4374, - 21536, - 9076, - 389218, - 24554 - ], - 1, - "9f0a2a8.png?=20200106", - 40, - "che_220127_IYPv", - 70, - [ - "hall:dex4", - "hall:winrate" - ] - ], - [ - "【40기】독구", - 74, - 15, - 94, - "che_event_집중", - [ - 24358, - 67611, - 25828, - 396041, - 20624 - ], - 1, - "7c6844b.png?=20220125", - 40, - "che_220127_IYPv", - 71, - [ - "hall:betgold", - "hall:betrate", - "hall:betwin", - "hall:betwingold", - "hall:dex4", - "hall:experience", - "hall:tirate", - "hall:winrate" - ] - ], - [ - "【40기】네시", - 76, - 15, - 91, - "che_event_집중", - [ - 25998, - 19192, - 6316, - 544907, - 43069 - ], - 0, - "default.jpg", - 40, - "che_220127_IYPv", - 72, - [ - "chief:9", - "hall:betrate", - "hall:betwin", - "hall:dedication", - "hall:dex4", - "hall:dex5", - "hall:experience", - "hall:killcrew", - "hall:killcrew_person", - "hall:killnum", - "hall:killrate", - "hall:killrate_person", - "hall:occupied", - "hall:warnum", - "hall:winrate" - ] - ], - [ - "【40기】앵벌스", - 76, - 17, - 88, - "che_event_집중", - [ - 15177, - 22385, - 27951, - 374801, - 30393 - ], - 1, - "77ae39d.jpg?=20220129", - 40, - "che_220127_IYPv", - 73, - [ - "hall:dex4", - "hall:dex5", - "hall:killrate", - "hall:killrate_person", - "hall:occupied" - ] - ], - [ - "【40기】하츄핑", - 75, - 92, - 15, - "che_event_무쌍", - [ - 375407, - 14420, - 15343, - 47793, - 25514 - ], - 1, - "a2aee2.jpg?=20220127", - 40, - "che_220127_IYPv", - 74, - [ - "hall:betrate", - "hall:dex1", - "hall:tsrate" - ] - ], - [ - "【40기】333", - 78, - 89, - 15, - "che_event_위압", - [ - 24269, - 13944, - 368084, - 22382, - 21207 - ], - 0, - "default.jpg", - 40, - "che_220127_IYPv", - 75, - [ - "hall:dex3" - ] - ], - [ - "【40기】퍄퍄", - 79, - 88, - 15, - "che_event_무쌍", - [ - 7558, - 13270, - 452947, - 46298, - 23256 - ], - 0, - "default.jpg", - 40, - "che_220127_IYPv", - 77, - [ - "hall:dex3", - "hall:killcrew_person", - "hall:killnum", - "hall:occupied", - "hall:tlrate" - ] - ], - [ - "【40기】독시탈", - 76, - 16, - 87, - "che_event_신중", - [ - 10717, - 17182, - 20662, - 348267, - 28101 - ], - 1, - "11a36d4.jpg?=20220109", - 40, - "che_220127_IYPv", - 80, - [ - "hall:dex5" - ] - ], - [ - "【40기】평민킬러", - 75, - 93, - 15, - "che_event_격노", - [ - 616730, - 29223, - 37315, - 40453, - 51158 - ], - 1, - "fb23a32.jpg?=20190904", - 40, - "che_220127_IYPv", - 81, - [ - "chief:8", - "hall:dedication", - "hall:dex1", - "hall:dex5", - "hall:experience", - "hall:killcrew", - "hall:killnum", - "hall:killrate", - "hall:killrate_person", - "hall:occupied", - "hall:tsrate", - "hall:warnum", - "hall:winrate" - ] - ], - [ - "【40기】겨울", - 91, - 75, - 15, - "che_event_징병", - [ - 12949, - 45132, - 459448, - 30000, - 13140 - ], - 1, - "5c609d.jpg?=20220129", - 40, - "che_220127_IYPv", - 84, - [ - "hall:betgold", - "hall:betwin", - "hall:betwingold", - "hall:dex3", - "hall:killcrew", - "hall:killcrew_person", - "hall:tlrate", - "hall:warnum" - ] - ], - [ - "【40기】후로세수", - 75, - 15, - 93, - "che_event_집중", - [ - 14653, - 8856, - 12325, - 267770, - 17371 - ], - 0, - "default.jpg", - 40, - "che_220127_IYPv", - 85, - [ - "hall:tirate" - ] - ], - [ - "【40기】여긴어딘가", - 17, - 77, - 86, - "che_event_징병", - [ - 0, - 0, - 0, - 0, - 0 - ], - 0, - "default.jpg", - 40, - "che_220127_IYPv", - 87, - [ - "hall:ttrate" - ] - ], - [ - "【40기】임사영", - 75, - 93, - 15, - "che_event_무쌍", - [ - 222769, - 220557, - 74843, - 36176, - 27239 - ], - 1, - "10e5f72.jpg?=20210430", - 40, - "che_220127_IYPv", - 88, - [ - "hall:dex1", - "hall:dex2", - "hall:dex5", - "hall:killrate", - "hall:tsrate" - ] - ], - [ - "【40기】^ㅠ^", - 77, - 93, - 15, - "che_event_저격", - [ - 17851, - 599184, - 20191, - 60479, - 25392 - ], - 1, - "3441892.jpg?=20220127", - 40, - "che_220127_IYPv", - 89, - [ - "hall:betgold", - "hall:betwin", - "hall:betwingold", - "hall:dex2", - "hall:killcrew", - "hall:killcrew_person", - "hall:killnum", - "hall:tsrate", - "hall:ttrate", - "hall:warnum" - ] - ], - [ - "【40기】천재마법사", - 88, - 15, - 79, - "che_event_필살", - [ - 17271, - 36544, - 19537, - 482714, - 30040 - ], - 1, - "141e365.jpg?=20220127", - 40, - "che_220127_IYPv", - 90, - [ - "hall:dex4", - "hall:dex5", - "hall:killcrew", - "hall:killcrew_person", - "hall:tlrate", - "hall:warnum" - ] - ], - [ - "【40기】아이린", - 76, - 91, - 15, - "che_event_징병", - [ - 217927, - 158845, - 46352, - 43551, - 13625 - ], - 1, - "8dac73c.jpg?=20180922", - 40, - "che_220127_IYPv", - 92, - [ - "hall:betrate", - "hall:dex1", - "hall:dex2", - "hall:firenum" - ] - ], - [ - "【40기】ARES군주", - 78, - 88, - 16, - "che_event_필살", - [ - 58684, - 201153, - 184708, - 31198, - 9912 - ], - 1, - "106f82e.jpg?=20210212", - 40, - "che_220127_IYPv", - 94, - [ - "hall:dex1", - "hall:dex2", - "hall:killcrew_person", - "hall:killrate_person", - "hall:ttrate", - "hall:winrate" - ] - ], - [ - "【40기】INTP", - 18, - 90, - 74, - "che_event_의술", - [ - 13387, - 34222, - 94557, - 17871, - 8510 - ], - 0, - "default.jpg", - 40, - "che_220127_IYPv", - 95, - [ - "hall:betrate", - "hall:firenum", - "hall:killrate", - "hall:killrate_person" - ] - ], - [ - "【40기】외심장", - 74, - 15, - 93, - "che_event_집중", - [ - 19610, - 33015, - 16847, - 424504, - 31743 - ], - 1, - "36110cd.jpg?=20180826", - 40, - "che_220127_IYPv", - 96, - [ - "chief:7", - "hall:dedication", - "hall:dex4", - "hall:dex5", - "hall:experience", - "hall:tirate", - "hall:winrate" - ] - ], - [ - "【40기】나데코", - 77, - 15, - 86, - "che_event_신중", - [ - 32981, - 33956, - 58542, - 279306, - 21910 - ], - 0, - "default.jpg", - 40, - "che_220127_IYPv", - 97, - [ - "hall:firenum" - ] - ], - [ - "【40기】크렌", - 79, - 88, - 15, - "che_event_척사", - [ - 180371, - 336293, - 19660, - 53283, - 23233 - ], - 0, - "default.jpg", - 40, - "che_220127_IYPv", - 101, - [ - "hall:dex1", - "hall:dex2", - "hall:killcrew", - "hall:killcrew_person", - "hall:killnum", - "hall:ttrate", - "hall:warnum" - ] - ], - [ - "【40기】2", - 77, - 87, - 15, - "che_event_견고", - [ - 19778, - 43593, - 428928, - 34848, - 8888 - ], - 0, - "default.jpg", - 40, - "che_220127_IYPv", - 105, - [ - "hall:dex3", - "hall:killrate_person", - "hall:tlrate" - ] - ], - [ - "【40기】호갱", - 75, - 16, - 89, - "che_event_저격", - [ - 9468, - 25289, - 44874, - 248807, - 14042 - ], - 0, - "default.jpg", - 40, - "che_220127_IYPv", - 254, - [ - "hall:tirate" - ] - ], - [ - "【40기】수장", - 78, - 90, - 15, - "che_event_견고", - [ - 228627, - 81280, - 32983, - 27902, - 9084 - ], - 1, - "5c1a589.jpg?=20220106", - 40, - "che_220127_IYPv", - 259, - [ - "chief:6", - "hall:dedication", - "hall:dex1", - "hall:ttrate" - ] - ], - [ - "【40기】봄꽃", - 88, - 15, - 78, - "che_event_신산", - [ - 22780, - 32237, - 11589, - 350280, - 20774 - ], - 1, - "1390e40.jpg?=20211015", - 40, - "che_220127_IYPv", - 261, - [ - "hall:dex4", - "hall:tlrate", - "hall:ttrate" - ] - ], - [ - "【40기】방상", - 85, - 76, - 16, - "che_event_필살", - [ - 175216, - 7875, - 19406, - 38306, - 8267 - ], - 0, - "default.jpg", - 40, - "che_220127_IYPv", - 267, - [ - "hall:dex1", - "hall:tlrate" - ] - ], - [ - "【40기】귀여운홍차", - 77, - 88, - 15, - "che_event_저격", - [ - 32269, - 42912, - 320878, - 34042, - 11287 - ], - 0, - "default.jpg", - 40, - "che_220127_IYPv", - 273, - [ - "hall:dex3" - ] - ], - [ - "【40기】퉤", - 15, - 79, - 84, - "che_event_반계", - [ - 0, - 0, - 0, - 0, - 0 - ], - 1, - "51c5fda.png?=20220131", - 40, - "che_220127_IYPv", - 401, - [ - "hall:betgold", - "hall:betwin", - "hall:betwingold", - "hall:firenum", - "hall:ttrate" - ] - ], - [ - "【40기】누군가", - 78, - 86, - 15, - "che_event_위압", - [ - 29355, - 264552, - 12602, - 29478, - 6097 - ], - 0, - "default.jpg", - 40, - "che_220127_IYPv", - 432, - [ - "hall:betrate", - "hall:dex2" - ] - ], - [ - "【40기】흑우", - 15, - 73, - 87, - "che_event_필살", - [ - 1500, - 0, - 0, - 786, - 0 - ], - 1, - "50b617f.jpg?=20220206", - 40, - "che_220127_IYPv", - 568, - [ - "hall:firenum" - ] - ], [ "【41기】박일아", 75, @@ -58766,1661 +48688,6 @@ "hall:firenum" ] ], - [ - "【45기】소울리스좌", - 78, - 15, - 95, - "che_event_집중", - [ - 92344, - 24670, - 56169, - 523932, - 27133 - ], - 1, - "ed298c9c.jpg?=20220620", - 45, - "che_220609_RAze", - 5, - [ - "hall:betgold", - "hall:betwingold", - "hall:tirate" - ] - ], - [ - "【45기】독틀링건", - 96, - 75, - 15, - "che_event_필살", - [ - 52584, - 24660, - 35804, - 44885, - 647541 - ], - 1, - "34cdc4ff.png?=20220609", - 45, - "che_220609_RAze", - 9, - [ - "hall:dex5", - "hall:firenum", - "hall:tlrate" - ] - ], - [ - "【45기】마법대통령휴2롱", - 78, - 91, - 16, - "che_event_필살", - [ - 554949, - 18189, - 53933, - 53996, - 15192 - ], - 1, - "33396692.jpg?=20220526", - 45, - "che_220609_RAze", - 10, - [ - "hall:tsrate" - ] - ], - [ - "【45기】?바나나?", - 79, - 95, - 15, - "che_event_필살", - [ - 19932, - 12661, - 494714, - 38054, - 3476 - ], - 1, - "fb47413d.gif?=20220608", - 45, - "che_220609_RAze", - 16, - [ - "hall:betgold", - "hall:betrate", - "hall:betwin", - "hall:betwingold", - "hall:dex3", - "hall:tsrate", - "hall:ttrate" - ] - ], - [ - "【45기】한끗에5억을태워?", - 78, - 95, - 15, - "che_event_필살", - [ - 45313, - 54236, - 622744, - 59445, - 17020 - ], - 1, - "95534aea.jpg?=20220617", - 45, - "che_220609_RAze", - 17, - [ - "hall:betwin", - "hall:dex3", - "hall:killrate_person", - "hall:tsrate" - ] - ], - [ - "【45기】퍄퍄", - 81, - 89, - 16, - "che_event_위압", - [ - 684191, - 21190, - 10669, - 43652, - 21426 - ], - 0, - "default.jpg", - 45, - "che_220609_RAze", - 21, - [ - "hall:dex1", - "hall:firenum", - "hall:killrate", - "hall:killrate_person" - ] - ], - [ - "【45기】그믐달", - 79, - 94, - 15, - "che_event_척사", - [ - 832642, - 26369, - 38705, - 53227, - 42680 - ], - 0, - "default.jpg", - 45, - "che_220609_RAze", - 23, - [ - "hall:betwin", - "hall:dex1", - "hall:dex5", - "hall:killcrew", - "hall:killcrew_person", - "hall:killnum", - "hall:killrate", - "hall:killrate_person", - "hall:occupied", - "hall:warnum", - "hall:winrate" - ] - ], - [ - "【45기】갈근", - 92, - 80, - 16, - "che_event_필살", - [ - 800807, - 24884, - 21665, - 73790, - 18334 - ], - 1, - "d1918d8b.png?=20220612", - 45, - "che_220609_RAze", - 24, - [ - "hall:betrate", - "hall:dex1", - "hall:killcrew_person", - "hall:killnum", - "hall:killrate_person" - ] - ], - [ - "【45기】셀레ㅁ1", - 77, - 15, - 96, - "che_event_집중", - [ - 45356, - 42885, - 10053, - 881454, - 24125 - ], - 1, - "ff3c82.jpg?=20220420", - 45, - "che_220609_RAze", - 25, - [ - "hall:betgold", - "hall:dex4", - "hall:killcrew", - "hall:killcrew_person", - "hall:killnum", - "hall:killrate", - "hall:killrate_person", - "hall:tirate", - "hall:warnum", - "hall:winrate" - ] - ], - [ - "【45기】리모스", - 101, - 70, - 15, - "che_event_공성", - [ - 25033, - 3910, - 22563, - 18041, - 223473 - ], - 1, - "e94c338c.jpg?=20220609", - 45, - "che_220609_RAze", - 29, - [ - "hall:dex5", - "hall:occupied", - "hall:tlrate", - "hall:ttrate" - ] - ], - [ - "【45기】과학5호기", - 79, - 94, - 15, - "che_event_위압", - [ - 54286, - 598682, - 61767, - 51131, - 25290 - ], - 1, - "4773bc14.png?=20220610", - 45, - "che_220609_RAze", - 36, - [ - "hall:betwin", - "hall:dex2" - ] - ], - [ - "【45기】네시", - 81, - 90, - 15, - "che_event_견고", - [ - 33213, - 525001, - 25006, - 56752, - 24763 - ], - 0, - "default.jpg", - 45, - "che_220609_RAze", - 39, - [ - "hall:dex2", - "hall:ttrate" - ] - ], - [ - "【45기】독구", - 78, - 15, - 94, - "che_event_집중", - [ - 80250, - 65921, - 19575, - 801671, - 26030 - ], - 1, - "3d7c9c7f.png?=20220603", - 45, - "che_220609_RAze", - 40, - [ - "hall:betgold", - "hall:betrate", - "hall:betwin", - "hall:betwingold", - "hall:dex4", - "hall:killcrew", - "hall:killcrew_person", - "hall:killrate", - "hall:killrate_person", - "hall:ttrate" - ] - ], - [ - "【45기】Windows 10", - 100, - 70, - 15, - "che_event_공성", - [ - 31905, - 14317, - 26376, - 40952, - 1317920 - ], - 1, - "deaeed4d.png?=20220609", - 45, - "che_220609_RAze", - 41, - [ - "chief:6", - "hall:betrate", - "hall:betwin", - "hall:betwingold", - "hall:dex5", - "hall:experience", - "hall:killcrew", - "hall:killrate", - "hall:occupied", - "hall:tlrate" - ] - ], - [ - "【45기】쇼이치", - 74, - 97, - 15, - "che_event_필살", - [ - 509313, - 16983, - 83764, - 28074, - 29635 - ], - 1, - "944e81ae.png?=20220621", - 45, - "che_220609_RAze", - 42, - [ - "chief:8", - "hall:dedication", - "hall:firenum", - "hall:killrate", - "hall:tsrate", - "hall:ttrate" - ] - ], - [ - "【45기】루나 2.0", - 92, - 15, - 80, - "che_event_돌격", - [ - 62403, - 12468, - 29032, - 117065, - 416563 - ], - 1, - "58d520d0.png?=20220609", - 45, - "che_220609_RAze", - 45, - [ - "hall:dex5" - ] - ], - [ - "【45기】장원0", - 74, - 15, - 97, - "che_event_환술", - [ - 51086, - 26318, - 40488, - 576703, - 64156 - ], - 1, - "1c769a6.jpg?=20220516", - 45, - "che_220609_RAze", - 46, - [ - "chief:12", - "hall:dedication", - "hall:dex4", - "hall:dex5", - "hall:experience", - "hall:occupied" - ] - ], - [ - "【45기】킹구", - 94, - 75, - 15, - "che_event_궁병", - [ - 11469, - 12839, - 530798, - 23071, - 8601 - ], - 1, - "35f1b7d.png?=20220106", - 45, - "che_220609_RAze", - 47, - [ - "chief:11", - "hall:dedication", - "hall:dex3", - "hall:tlrate" - ] - ], - [ - "【45기】술마시면깽판침", - 80, - 92, - 15, - "che_event_견고", - [ - 610573, - 24757, - 36358, - 52461, - 34842 - ], - 1, - "3f817389.png?=20220609", - 45, - "che_220609_RAze", - 53, - [ - "hall:betrate", - "hall:dex1" - ] - ], - [ - "【45기】료우기시키", - 91, - 77, - 15, - "che_event_척사", - [ - 142352, - 533517, - 72314, - 70950, - 22156 - ], - 1, - "72a190e.jpg?=20220109", - 45, - "che_220609_RAze", - 59, - [ - "hall:dex2" - ] - ], - [ - "【45기】엄마의시크릿레시피", - 78, - 17, - 92, - "che_event_필살", - [ - 44171, - 51092, - 8141, - 557589, - 19923 - ], - 0, - "default.jpg", - 45, - "che_220609_RAze", - 60, - [ - "hall:dex4", - "hall:firenum" - ] - ], - [ - "【45기】콘", - 81, - 15, - 90, - "che_event_신중", - [ - 84901, - 73238, - 37596, - 554786, - 22832 - ], - 1, - "7ca38d3.jpg?=20220324", - 45, - "che_220609_RAze", - 61, - [ - "hall:dex4" - ] - ], - [ - "【45기】르세라핌", - 89, - 79, - 15, - "che_event_위압", - [ - 66814, - 62891, - 592113, - 79431, - 18374 - ], - 1, - "8e3b361.png?=20220414", - 45, - "che_220609_RAze", - 63, - [ - "hall:dex3", - "hall:tlrate" - ] - ], - [ - "【45기】그는 신이야", - 85, - 87, - 15, - "che_event_필살", - [ - 502207, - 51401, - 46239, - 30286, - 9646 - ], - 1, - "e63388a3.png?=20220617", - 45, - "che_220609_RAze", - 64, - [ - "hall:firenum" - ] - ], - [ - "【45기】K3기관총", - 75, - 15, - 96, - "che_event_필살", - [ - 43245, - 45690, - 17873, - 544141, - 57700 - ], - 1, - "785cfc1c.jpg?=20220609", - 45, - "che_220609_RAze", - 65, - [ - "hall:dex4", - "hall:dex5", - "hall:experience", - "hall:occupied", - "hall:tirate" - ] - ], - [ - "【45기】똑딱똑딱", - 94, - 75, - 15, - "che_event_격노", - [ - 158045, - 175774, - 511875, - 62840, - 27934 - ], - 1, - "5205afe3.webp?=20220609", - 45, - "che_220609_RAze", - 69, - [ - "hall:betrate", - "hall:dex3", - "hall:occupied", - "hall:warnum" - ] - ], - [ - "【45기】펭삼이", - 16, - 73, - 92, - "che_event_신산", - [ - 0, - 0, - 0, - 0, - 0 - ], - 1, - "8151605.jpg?=20191024", - 45, - "che_220609_RAze", - 70, - [ - "hall:firenum" - ] - ], - [ - "【45기】사무라이", - 79, - 95, - 15, - "che_event_위압", - [ - 46743, - 49108, - 976750, - 44420, - 21151 - ], - 1, - "e4d737ea.png?=20220630", - 45, - "che_220609_RAze", - 71, - [ - "hall:betrate", - "hall:dex3", - "hall:firenum", - "hall:killcrew", - "hall:killcrew_person", - "hall:killnum", - "hall:killrate", - "hall:killrate_person", - "hall:tsrate", - "hall:warnum", - "hall:winrate" - ] - ], - [ - "【45기】DDDD", - 80, - 91, - 16, - "che_event_무쌍", - [ - 103438, - 36057, - 524741, - 49270, - 25026 - ], - 0, - "default.jpg", - 45, - "che_220609_RAze", - 72, - [ - "hall:dex3" - ] - ], - [ - "【45기】야옹이", - 78, - 15, - 95, - "che_event_집중", - [ - 30123, - 30284, - 53649, - 656388, - 24703 - ], - 1, - "44fa6a24.png?=20220610", - 45, - "che_220609_RAze", - 74, - [ - "hall:dex4", - "hall:experience", - "hall:winrate" - ] - ], - [ - "【45기】7", - 90, - 81, - 15, - "che_event_척사", - [ - 790871, - 35381, - 72207, - 38271, - 19331 - ], - 0, - "default.jpg", - 45, - "che_220609_RAze", - 75, - [ - "hall:dedication", - "hall:dex1", - "hall:experience", - "hall:killcrew", - "hall:killcrew_person", - "hall:killrate", - "hall:killrate_person", - "hall:warnum" - ] - ], - [ - "【45기】하하하", - 79, - 17, - 92, - "che_event_신중", - [ - 63007, - 46196, - 19536, - 526006, - 25656 - ], - 0, - "default.jpg", - 45, - "che_220609_RAze", - 77, - [ - "hall:ttrate" - ] - ], - [ - "【45기】독버지", - 77, - 95, - 15, - "che_event_무쌍", - [ - 45479, - 35057, - 481432, - 46788, - 22237 - ], - 1, - "4b6c2fe7.png?=20220603", - 45, - "che_220609_RAze", - 78, - [ - "hall:tsrate" - ] - ], - [ - "【45기】마요이", - 97, - 76, - 15, - "che_event_격노", - [ - 54903, - 671386, - 28221, - 32867, - 19155 - ], - 1, - "96bc8973.png?=20220529", - 45, - "che_220609_RAze", - 79, - [ - "hall:dex2", - "hall:killnum", - "hall:occupied", - "hall:tlrate", - "hall:warnum" - ] - ], - [ - "【45기】냥0ㅏ치파이", - 78, - 95, - 15, - "che_event_척사", - [ - 583118, - 36967, - 62305, - 49554, - 19236 - ], - 1, - "f315b8af.jpg?=20220610", - 45, - "che_220609_RAze", - 80, - [ - "hall:dex1", - "hall:tsrate" - ] - ], - [ - "【45기】남자라면배팅", - 81, - 90, - 15, - "che_event_필살", - [ - 41778, - 335519, - 11076, - 23821, - 16101 - ], - 0, - "default.jpg", - 45, - "che_220609_RAze", - 81, - [ - "hall:betgold", - "hall:betwingold" - ] - ], - [ - "【45기】리버싱핵심원리", - 84, - 90, - 15, - "che_event_신산", - [ - 45079, - 74047, - 650618, - 52291, - 10823 - ], - 0, - "default.jpg", - 45, - "che_220609_RAze", - 82, - [ - "hall:betrate", - "hall:dex3", - "hall:ttrate" - ] - ], - [ - "【45기】사스케넨", - 75, - 15, - 96, - "che_event_필살", - [ - 33632, - 12228, - 37548, - 353999, - 19129 - ], - 1, - "d8e91983.jpg?=20220609", - 45, - "che_220609_RAze", - 83, - [ - "hall:betrate", - "hall:occupied", - "hall:tirate" - ] - ], - [ - "【45기】7ELEVEN", - 93, - 78, - 15, - "che_event_척사", - [ - 560951, - 21107, - 82290, - 84064, - 19377 - ], - 1, - "0b04758a.png?=20220608", - 45, - "che_220609_RAze", - 85, - [ - "hall:dex1", - "hall:tlrate" - ] - ], - [ - "【45기】벨레스", - 78, - 96, - 15, - "che_event_척사", - [ - 38695, - 672021, - 17328, - 68722, - 23846 - ], - 1, - "0fadd0a8.jpg?=20220624", - 45, - "che_220609_RAze", - 86, - [ - "hall:dex2", - "hall:killcrew_person", - "hall:killnum", - "hall:winrate" - ] - ], - [ - "【45기】춘식이", - 78, - 96, - 15, - "che_event_필살", - [ - 163025, - 30964, - 835373, - 142079, - 33131 - ], - 1, - "70ab6caa.webp?=20220604", - 45, - "che_220609_RAze", - 87, - [ - "hall:dex3", - "hall:experience", - "hall:killcrew", - "hall:killcrew_person", - "hall:killnum", - "hall:killrate", - "hall:killrate_person", - "hall:occupied", - "hall:warnum", - "hall:winrate" - ] - ], - [ - "【45기】수신호", - 92, - 77, - 15, - "che_event_필살", - [ - 479268, - 18964, - 166179, - 43484, - 20603 - ], - 0, - "default.jpg", - 45, - "che_220609_RAze", - 90, - [ - "hall:betgold", - "hall:betwingold", - "hall:tlrate" - ] - ], - [ - "【45기】이토 카이지", - 79, - 94, - 15, - "che_event_척사", - [ - 78307, - 800764, - 66678, - 90310, - 40517 - ], - 1, - "94978bf7.png?=20220609", - 45, - "che_220609_RAze", - 91, - [ - "hall:betgold", - "hall:betwin", - "hall:betwingold", - "hall:dex2", - "hall:dex5", - "hall:killcrew", - "hall:killcrew_person", - "hall:killnum", - "hall:killrate", - "hall:killrate_person", - "hall:warnum", - "hall:winrate" - ] - ], - [ - "【45기】박일아", - 78, - 93, - 16, - "che_event_무쌍", - [ - 364937, - 6385, - 14195, - 14863, - 0 - ], - 1, - "8608979.gif?=20191024", - 45, - "che_220609_RAze", - 93, - [ - "hall:betrate", - "hall:firenum" - ] - ], - [ - "【45기】Hide_D", - 81, - 15, - 89, - "che_event_의술", - [ - 95692, - 14163, - 74105, - 579162, - 23037 - ], - 1, - "8cf2033.png?=20220228", - 45, - "che_220609_RAze", - 94, - [ - "hall:dex4", - "hall:occupied" - ] - ], - [ - "【45기】독구독트린", - 98, - 75, - 15, - "che_event_무쌍", - [ - 57091, - 752284, - 9882, - 59784, - 27427 - ], - 1, - "6bbd5da4.png?=20220609", - 45, - "che_220609_RAze", - 95, - [ - "hall:dex2", - "hall:killcrew", - "hall:killcrew_person", - "hall:killnum", - "hall:tlrate", - "hall:warnum" - ] - ], - [ - "【45기】마리모", - 81, - 90, - 15, - "che_event_궁병", - [ - 91022, - 593313, - 6738, - 64851, - 23379 - ], - 0, - "default.jpg", - 45, - "che_220609_RAze", - 96, - [ - "hall:dex2", - "hall:winrate" - ] - ], - [ - "【45기】300M고세구큰거온다", - 78, - 95, - 15, - "che_event_필살", - [ - 656971, - 17449, - 32087, - 44689, - 15180 - ], - 1, - "2cb52730.jpg?=20220607", - 45, - "che_220609_RAze", - 97, - [ - "hall:dex1", - "hall:tsrate" - ] - ], - [ - "【45기】매너게이머", - 95, - 15, - 76, - "che_event_집중", - [ - 62907, - 54918, - 38966, - 323569, - 8999 - ], - 0, - "default.jpg", - 45, - "che_220609_RAze", - 98, - [ - "hall:tlrate" - ] - ], - [ - "【45기】서민3호기", - 76, - 15, - 96, - "che_event_신중", - [ - 47413, - 14243, - 29129, - 503787, - 34414 - ], - 0, - "default.jpg", - 45, - "che_220609_RAze", - 99, - [ - "hall:betgold", - "hall:betwingold", - "hall:tirate" - ] - ], - [ - "【45기】고장난부관", - 16, - 81, - 87, - "che_event_필살", - [ - 4091, - 2200, - 32144, - 1673, - 8379 - ], - 1, - "de4b0404.gif?=20220606", - 45, - "che_220609_RAze", - 100, - [ - "hall:firenum" - ] - ], - [ - "【45기】외심장", - 78, - 15, - 92, - "che_event_집중", - [ - 88385, - 14678, - 28877, - 709797, - 44406 - ], - 1, - "36110cd.jpg?=20180826", - 45, - "che_220609_RAze", - 101, - [ - "hall:dex4", - "hall:dex5", - "hall:killcrew", - "hall:killnum" - ] - ], - [ - "【45기】기", - 74, - 15, - 95, - "che_event_공성", - [ - 22988, - 13472, - 13160, - 47752, - 108409 - ], - 1, - "3a86f19.gif?=20220419", - 45, - "che_220609_RAze", - 102, - [ - "hall:dex5", - "hall:tirate" - ] - ], - [ - "【45기】니노마에이나니스", - 78, - 15, - 95, - "che_event_집중", - [ - 71337, - 22098, - 22388, - 640719, - 23438 - ], - 1, - "dc4e759f.gif?=20220609", - 45, - "che_220609_RAze", - 103, - [ - "hall:dex4", - "hall:ttrate", - "hall:winrate" - ] - ], - [ - "【45기】페르난도", - 74, - 15, - 97, - "che_event_집중", - [ - 64887, - 8678, - 56796, - 481816, - 38284 - ], - 1, - "6c07b3e.jpg?=20220305", - 45, - "che_220609_RAze", - 112, - [ - "chief:9", - "hall:dedication", - "hall:experience", - "hall:tirate" - ] - ], - [ - "【45기】허니카스테라", - 77, - 95, - 15, - "che_event_척사", - [ - 81140, - 418186, - 145329, - 41465, - 24528 - ], - 1, - "ee430e43.jpg?=20220610", - 45, - "che_220609_RAze", - 114, - [ - "hall:betwin", - "hall:dex2", - "hall:tsrate" - ] - ], - [ - "【45기】봄꽃", - 16, - 70, - 101, - "che_event_의술", - [ - 0, - 0, - 0, - 0, - 0 - ], - 1, - "1390e40.jpg?=20211015", - 45, - "che_220609_RAze", - 117, - [ - "hall:dedication", - "hall:tirate" - ] - ], - [ - "【45기】복숭아좋아", - 76, - 15, - 93, - "che_event_신중", - [ - 17168, - 4834, - 44860, - 464699, - 32984 - ], - 1, - "57e4a39.jpg?=20190620", - 45, - "che_220609_RAze", - 118, - [ - "chief:5" - ] - ], - [ - "【45기】크렌스", - 75, - 96, - 15, - "che_event_견고", - [ - 122034, - 370027, - 143808, - 64504, - 24236 - ], - 0, - "default.jpg", - 45, - "che_220609_RAze", - 120, - [ - "chief:10", - "hall:dedication", - "hall:dex2", - "hall:experience", - "hall:firenum", - "hall:tsrate", - "hall:ttrate" - ] - ], - [ - "【45기】삼국지", - 77, - 15, - 92, - "che_event_집중", - [ - 40325, - 26052, - 21126, - 391812, - 12489 - ], - 0, - "default.jpg", - 45, - "che_220609_RAze", - 122, - [ - "hall:winrate" - ] - ], - [ - "【45기】황혼중", - 78, - 15, - 91, - "che_event_환술", - [ - 79040, - 38145, - 37667, - 488194, - 8314 - ], - 1, - "64a306e.png?=20220127", - 45, - "che_220609_RAze", - 123, - [ - "hall:ttrate" - ] - ], - [ - "【45기】애옹이", - 79, - 90, - 15, - "che_event_위압", - [ - 33408, - 29981, - 543566, - 37022, - 30777 - ], - 0, - "default.jpg", - 45, - "che_220609_RAze", - 252, - [ - "hall:betgold", - "hall:betwingold", - "hall:dex3" - ] - ], - [ - "【45기】카이스트", - 74, - 15, - 97, - "che_event_집중", - [ - 80185, - 17538, - 46464, - 421754, - 31814 - ], - 1, - "9361ef8.jpg?=20180907", - 45, - "che_220609_RAze", - 255, - [ - "chief:7", - "hall:betwin", - "hall:dedication", - "hall:experience", - "hall:tirate" - ] - ], - [ - "【45기】엔틱", - 15, - 70, - 101, - "che_event_의술", - [ - 0, - 0, - 0, - 0, - 0 - ], - 1, - "b59e3c8b.gif?=20220520", - 45, - "che_220609_RAze", - 264, - [ - "hall:dedication", - "hall:experience", - "hall:tirate" - ] - ], - [ - "【45기】작은 황금나무", - 92, - 79, - 16, - "che_event_돌격", - [ - 617034, - 47898, - 134257, - 86188, - 29190 - ], - 1, - "e12fa0f7.jpg?=20220529", - 45, - "che_220609_RAze", - 283, - [ - "hall:betgold", - "hall:betwin", - "hall:betwingold", - "hall:dex1", - "hall:warnum" - ] - ], - [ - "【45기】뉴턴", - 79, - 15, - 88, - "che_event_척사", - [ - 38137, - 4989, - 21129, - 352898, - 24639 - ], - 1, - "7b2bbf71.jpg?=20220612", - 45, - "che_220609_RAze", - 291, - [ - "hall:dedication" - ] - ], - [ - "【45기】와일드플라워", - 90, - 78, - 15, - "che_event_저격", - [ - 671224, - 24214, - 53904, - 37553, - 15015 - ], - 0, - "default.jpg", - 45, - "che_220609_RAze", - 448, - [ - "hall:dex1" - ] - ], [ "【46기】소피", 74, @@ -67559,1427 +55826,6 @@ "hall:ttrate" ] ], - [ - "【50기】태사탁", - 98, - 72, - 15, - "che_event_위압", - [ - 31578, - 27462, - 70900, - 56174, - 604637 - ], - 0, - "default.jpg", - 50, - "che_221103_1JGx", - 7, - [ - "hall:betwin", - "hall:dex5", - "hall:occupied", - "hall:tlrate" - ] - ], - [ - "【50기】방색", - 79, - 16, - 91, - "che_event_신중", - [ - 33579, - 10683, - 28309, - 460527, - 52808 - ], - 1, - "5898830.jpg?=20210831", - 50, - "che_221103_1JGx", - 11, - [ - "hall:tirate" - ] - ], - [ - "【50기】유연", - 80, - 94, - 15, - "che_event_무쌍", - [ - 1140334, - 47982, - 89409, - 96521, - 47338 - ], - 1, - "60dba1bf.webp?=20221103", - 50, - "che_221103_1JGx", - 14, - [ - "hall:betwin", - "hall:dex1", - "hall:dex2", - "hall:killcrew", - "hall:killcrew_person", - "hall:killnum", - "hall:killrate", - "hall:killrate_person", - "hall:occupied", - "hall:tsrate", - "hall:warnum", - "hall:winrate" - ] - ], - [ - "【50기】마대", - 79, - 93, - 16, - "che_event_무쌍", - [ - 45334, - 24071, - 828138, - 80633, - 47143 - ], - 1, - "b055465b.jpg?=20221103", - 50, - "che_221103_1JGx", - 17, - [ - "chief:12", - "hall:betgold", - "hall:betwin", - "hall:betwingold", - "hall:dedication", - "hall:dex3", - "hall:experience", - "hall:killnum", - "hall:killrate", - "hall:killrate_person", - "hall:tsrate", - "hall:winrate" - ] - ], - [ - "【50기】반순", - 90, - 79, - 15, - "che_event_척사", - [ - 43790, - 18325, - 874982, - 138804, - 57575 - ], - 1, - "8aa09909.jpg?=20221104", - 50, - "che_221103_1JGx", - 20, - [ - "hall:dex3", - "hall:killcrew_person" - ] - ], - [ - "【50기】엄웅", - 80, - 15, - 92, - "che_event_필살", - [ - 36512, - 10443, - 43506, - 1199933, - 71321 - ], - 0, - "default.jpg", - 50, - "che_221103_1JGx", - 29, - [ - "chief:9", - "hall:dex4", - "hall:experience", - "hall:killcrew", - "hall:killcrew_person", - "hall:killnum", - "hall:killrate", - "hall:killrate_person", - "hall:warnum", - "hall:winrate" - ] - ], - [ - "【50기】화익", - 78, - 15, - 91, - "che_event_척사", - [ - 41867, - 27054, - 35041, - 394784, - 20408 - ], - 0, - "default.jpg", - 50, - "che_221103_1JGx", - 32, - [ - "hall:tirate" - ] - ], - [ - "【50기】우환", - 78, - 90, - 16, - "che_event_무쌍", - [ - 527394, - 8889, - 101569, - 80236, - 38727 - ], - 0, - "default.jpg", - 50, - "che_221103_1JGx", - 37, - [ - "hall:dex1", - "hall:tsrate" - ] - ], - [ - "【50기】우모", - 94, - 77, - 15, - "che_event_무쌍", - [ - 69937, - 37797, - 749879, - 70799, - 78706 - ], - 1, - "2ddba29e.png?=20221103", - 50, - "che_221103_1JGx", - 38, - [ - "hall:dex3" - ] - ], - [ - "【50기】가모", - 93, - 79, - 15, - "che_event_필살", - [ - 27412, - 13070, - 1061974, - 67659, - 74574 - ], - 1, - "ad271564.png?=20221103", - 50, - "che_221103_1JGx", - 47, - [ - "hall:betgold", - "hall:betrate", - "hall:betwin", - "hall:betwingold", - "hall:dex3", - "hall:killcrew", - "hall:killcrew_person", - "hall:tlrate", - "hall:ttrate" - ] - ], - [ - "【50기】사공", - 80, - 92, - 15, - "che_event_필살", - [ - 5069, - 622215, - 31700, - 65048, - 69482 - ], - 1, - "4583d988.jpg?=20221109", - 50, - "che_221103_1JGx", - 54, - [ - "chief:6", - "hall:dedication", - "hall:dex2", - "hall:experience", - "hall:killrate", - "hall:killrate_person", - "hall:occupied", - "hall:tsrate", - "hall:winrate" - ] - ], - [ - "【50기】관합", - 83, - 87, - 15, - "che_event_위압", - [ - 40168, - 541720, - 10016, - 56501, - 43659 - ], - 0, - "default.jpg", - 50, - "che_221103_1JGx", - 61, - [ - "hall:dex2" - ] - ], - [ - "【50기】금완", - 94, - 76, - 16, - "che_event_척사", - [ - 104696, - 23313, - 64423, - 143680, - 768774 - ], - 1, - "f39217aa.gif?=20220916", - 50, - "che_221103_1JGx", - 63, - [ - "hall:dex5", - "hall:ttrate", - "hall:warnum" - ] - ], - [ - "【50기】안간", - 93, - 79, - 15, - "che_event_필살", - [ - 592659, - 2902, - 58995, - 84208, - 42228 - ], - 0, - "default.jpg", - 50, - "che_221103_1JGx", - 64, - [ - "hall:dex1", - "hall:tlrate" - ] - ], - [ - "【50기】미찬", - 80, - 15, - 93, - "che_event_필살", - [ - 64962, - 19202, - 50954, - 665586, - 33027 - ], - 0, - "default.jpg", - 50, - "che_221103_1JGx", - 85, - [ - "hall:dex4", - "hall:ttrate", - "hall:winrate" - ] - ], - [ - "【50기】뇌우", - 80, - 90, - 15, - "che_event_견고", - [ - 28997, - 7704, - 313271, - 16164, - 31400 - ], - 0, - "default.jpg", - 50, - "che_221103_1JGx", - 90, - [ - "hall:ttrate" - ] - ], - [ - "【50기】방위", - 90, - 82, - 15, - "che_event_무쌍", - [ - 910995, - 8569, - 47178, - 55863, - 44474 - ], - 1, - "83224718.png?=20221106", - 50, - "che_221103_1JGx", - 104, - [ - "chief:10", - "hall:dedication", - "hall:dex1", - "hall:experience", - "hall:killcrew", - "hall:killnum", - "hall:killrate", - "hall:killrate_person", - "hall:occupied", - "hall:ttrate" - ] - ], - [ - "【50기】채훈", - 69, - 13, - 77, - "che_event_집중", - [ - 14337, - 10628, - 14444, - 304603, - 25027 - ], - 0, - "default.jpg", - 50, - "che_221103_1JGx", - 105, - [ - "hall:dex4", - "hall:ttrate" - ] - ], - [ - "【50기】관제", - 93, - 76, - 15, - "che_event_척사", - [ - 59851, - 834712, - 32509, - 111259, - 49418 - ], - 1, - "b93e1522.png?=20221103", - 50, - "che_221103_1JGx", - 111, - [ - "hall:dex2", - "hall:firenum", - "hall:killcrew", - "hall:killcrew_person", - "hall:tlrate", - "hall:warnum" - ] - ], - [ - "【50기】위사", - 78, - 15, - 93, - "che_event_집중", - [ - 58547, - 13767, - 62768, - 638110, - 72907 - ], - 0, - "default.jpg", - 50, - "che_221103_1JGx", - 115, - [ - "hall:dex4", - "hall:tirate" - ] - ], - [ - "【50기】허화", - 79, - 88, - 16, - "che_event_격노", - [ - 24579, - 113709, - 321660, - 59327, - 25849 - ], - 0, - "default.jpg", - 50, - "che_221103_1JGx", - 117, - [ - "hall:dex2", - "hall:firenum" - ] - ], - [ - "【50기】태사충", - 78, - 16, - 95, - "che_event_필살", - [ - 50541, - 22543, - 71780, - 870816, - 42043 - ], - 1, - "23baa269.jpg?=20221103", - 50, - "che_221103_1JGx", - 118, - [ - "hall:betgold", - "hall:betrate", - "hall:betwin", - "hall:betwingold", - "hall:dex4", - "hall:killcrew", - "hall:killcrew_person", - "hall:killnum", - "hall:tirate", - "hall:warnum" - ] - ], - [ - "【50기】황녕", - 91, - 79, - 15, - "che_event_필살", - [ - 21547, - 38646, - 667626, - 88971, - 73963 - ], - 0, - "default.jpg", - 50, - "che_221103_1JGx", - 122, - [ - "hall:dex3" - ] - ], - [ - "【50기】반탁", - 90, - 61, - 13, - "che_event_징병", - [ - 115129, - 64075, - 160508, - 185098, - 2004429 - ], - 1, - "bb31c034.jpg?=20221125", - 50, - "che_221103_1JGx", - 123, - [ - "hall:betgold", - "hall:betrate", - "hall:betwin", - "hall:betwingold", - "hall:dedication", - "hall:dex2", - "hall:dex5", - "hall:experience", - "hall:killcrew", - "hall:killcrew_person", - "hall:killnum", - "hall:killrate", - "hall:killrate_person", - "hall:occupied", - "hall:tlrate", - "hall:warnum" - ] - ], - [ - "【50기】사순", - 79, - 15, - 92, - "che_event_필살", - [ - 16958, - 12045, - 38960, - 473222, - 81579 - ], - 1, - "41b12b95.png?=20221102", - 50, - "che_221103_1JGx", - 124, - [ - "hall:betgold", - "hall:betrate", - "hall:betwin", - "hall:betwingold", - "hall:dedication", - "hall:experience" - ] - ], - [ - "【50기】손회", - 78, - 86, - 16, - "che_event_견고", - [ - 332170, - 4237, - 63609, - 35258, - 50661 - ], - 0, - "default.jpg", - 50, - "che_221103_1JGx", - 125, - [ - "hall:firenum", - "hall:tsrate" - ] - ], - [ - "【50기】조양", - 96, - 77, - 15, - "che_event_무쌍", - [ - 23633, - 17084, - 895980, - 91219, - 61289 - ], - 0, - "default.jpg", - 50, - "che_221103_1JGx", - 126, - [ - "chief:11", - "hall:dedication", - "hall:dex3", - "hall:experience", - "hall:killnum", - "hall:killrate", - "hall:occupied", - "hall:tlrate", - "hall:winrate" - ] - ], - [ - "【50기】금이", - 80, - 15, - 89, - "che_event_척사", - [ - 39687, - 42550, - 40915, - 614228, - 83230 - ], - 1, - "5f947ce7.png?=20221103", - 50, - "che_221103_1JGx", - 131, - [ - "hall:dex4" - ] - ], - [ - "【50기】화량", - 80, - 89, - 16, - "che_event_징병", - [ - 558481, - 13373, - 61244, - 106710, - 75065 - ], - 0, - "default.jpg", - 50, - "che_221103_1JGx", - 132, - [ - "hall:dex1" - ] - ], - [ - "【50기】안단", - 80, - 89, - 15, - "che_event_돌격", - [ - 503971, - 3380, - 57362, - 54333, - 61254 - ], - 0, - "default.jpg", - 50, - "che_221103_1JGx", - 138, - [ - "hall:dex1", - "hall:occupied", - "hall:tsrate" - ] - ], - [ - "【50기】종준", - 94, - 75, - 15, - "che_event_무쌍", - [ - 33443, - 39903, - 68093, - 84071, - 895800 - ], - 0, - "default.jpg", - 50, - "che_221103_1JGx", - 140, - [ - "hall:betgold", - "hall:betrate", - "hall:betwingold", - "hall:dex5", - "hall:occupied" - ] - ], - [ - "【50기】심해", - 80, - 15, - 91, - "che_event_저격", - [ - 48043, - 11288, - 39466, - 694641, - 88717 - ], - 1, - "95534aea.jpg?=20220617", - 50, - "che_221103_1JGx", - 141, - [ - "chief:5", - "hall:dedication", - "hall:dex4", - "hall:dex5", - "hall:tirate", - "hall:ttrate" - ] - ], - [ - "【50기】등현", - 91, - 77, - 15, - "che_event_위압", - [ - 186789, - 23254, - 66591, - 80642, - 406597 - ], - 0, - "default.jpg", - 50, - "che_221103_1JGx", - 142, - [ - "hall:betgold", - "hall:betrate", - "hall:betwin", - "hall:betwingold", - "hall:dex5", - "hall:firenum", - "hall:tlrate" - ] - ], - [ - "【50기】금월", - 80, - 90, - 15, - "che_event_저격", - [ - 762440, - 7595, - 55419, - 71148, - 83258 - ], - 1, - "4f5d2342.png?=20221119", - 50, - "che_221103_1JGx", - 143, - [ - "hall:dex1", - "hall:occupied", - "hall:ttrate" - ] - ], - [ - "【50기】공유", - 77, - 93, - 15, - "che_event_격노", - [ - 22768, - 5617, - 401215, - 30221, - 20589 - ], - 1, - "03af3976.jpg?=20221103", - 50, - "che_221103_1JGx", - 144, - [ - "hall:tsrate" - ] - ], - [ - "【50기】동통", - 16, - 73, - 96, - "che_event_반계", - [ - 0, - 0, - 0, - 0, - 0 - ], - 0, - "default.jpg", - 50, - "che_221103_1JGx", - 145, - [ - "hall:tirate" - ] - ], - [ - "【50기】위조", - 81, - 91, - 16, - "che_event_필살", - [ - 22801, - 21470, - 708489, - 56032, - 53051 - ], - 1, - "0ed1b338.gif?=20221124", - 50, - "che_221103_1JGx", - 146, - [ - "hall:betgold", - "hall:betrate", - "hall:betwingold", - "hall:dex3" - ] - ], - [ - "【50기】여합", - 102, - 71, - 15, - "che_event_무쌍", - [ - 80529, - 35868, - 84827, - 80274, - 1342944 - ], - 1, - "106bc0e4.png?=20221125", - 50, - "che_221103_1JGx", - 147, - [ - "chief:8", - "hall:betgold", - "hall:betrate", - "hall:betwin", - "hall:betwingold", - "hall:dex5", - "hall:experience", - "hall:killcrew", - "hall:killcrew_person", - "hall:killnum", - "hall:killrate", - "hall:killrate_person", - "hall:tlrate", - "hall:warnum", - "hall:winrate" - ] - ], - [ - "【50기】마료", - 78, - 96, - 15, - "che_event_무쌍", - [ - 58887, - 47916, - 1087911, - 111179, - 35375 - ], - 1, - "e6ae27a0.jpg?=20221103", - 50, - "che_221103_1JGx", - 150, - [ - "hall:dex2", - "hall:dex3", - "hall:killcrew", - "hall:killcrew_person", - "hall:killnum", - "hall:killrate_person", - "hall:tsrate", - "hall:warnum", - "hall:winrate" - ] - ], - [ - "【50기】문훈", - 97, - 77, - 15, - "che_event_무쌍", - [ - 21687, - 49817, - 788391, - 66447, - 47967 - ], - 0, - "default.jpg", - 50, - "che_221103_1JGx", - 151, - [ - "hall:dex2", - "hall:dex3", - "hall:tlrate" - ] - ], - [ - "【50기】하거", - 93, - 77, - 15, - "che_event_필살", - [ - 106742, - 12567, - 376843, - 61017, - 28561 - ], - 0, - "default.jpg", - 50, - "che_221103_1JGx", - 152, - [ - "hall:betrate", - "hall:firenum", - "hall:tlrate" - ] - ], - [ - "【50기】종정", - 80, - 88, - 16, - "che_event_위압", - [ - 676836, - 10826, - 31562, - 48133, - 74535 - ], - 0, - "default.jpg", - 50, - "che_221103_1JGx", - 154, - [ - "hall:dex1" - ] - ], - [ - "【50기】육속", - 76, - 15, - 94, - "che_event_신중", - [ - 31301, - 13940, - 30847, - 510523, - 22869 - ], - 0, - "default.jpg", - 50, - "che_221103_1JGx", - 155, - [ - "hall:tirate" - ] - ], - [ - "【50기】저익", - 76, - 15, - 96, - "che_event_필살", - [ - 41480, - 42640, - 33084, - 915750, - 78982 - ], - 0, - "default.jpg", - 50, - "che_221103_1JGx", - 157, - [ - "chief:7", - "hall:dedication", - "hall:dex4", - "hall:experience", - "hall:killcrew", - "hall:killnum", - "hall:killrate", - "hall:killrate_person", - "hall:occupied", - "hall:tirate" - ] - ], - [ - "【50기】두유", - 83, - 89, - 15, - "che_event_필살", - [ - 747946, - 5339, - 39253, - 45580, - 14511 - ], - 1, - "519eb73f.jpg?=20221103", - 50, - "che_221103_1JGx", - 163, - [ - "hall:dex1", - "hall:winrate" - ] - ], - [ - "【50기】종승", - 90, - 15, - 81, - "che_event_필살", - [ - 52111, - 57630, - 88423, - 75523, - 887485 - ], - 1, - "b84944.jpg?=20180829", - 50, - "che_221103_1JGx", - 165, - [ - "hall:dex2", - "hall:dex5", - "hall:killcrew_person", - "hall:ttrate", - "hall:warnum" - ] - ], - [ - "【50기】송우", - 79, - 15, - 93, - "che_event_집중", - [ - 41308, - 14584, - 89476, - 799948, - 61333 - ], - 1, - "c1fba45c.png?=20221103", - 50, - "che_221103_1JGx", - 166, - [ - "hall:dex4", - "hall:tirate" - ] - ], - [ - "【50기】괴후", - 80, - 15, - 93, - "che_event_집중", - [ - 40544, - 12108, - 39317, - 593266, - 20733 - ], - 1, - "31f10b32.jpg?=20220717", - 50, - "che_221103_1JGx", - 167, - [ - "hall:winrate" - ] - ], - [ - "【50기】공손윤", - 79, - 16, - 92, - "che_event_집중", - [ - 34511, - 16795, - 23459, - 677226, - 67044 - ], - 1, - "817c8a88.jpg?=20221007", - 50, - "che_221103_1JGx", - 171, - [ - "hall:dex4", - "hall:experience" - ] - ], - [ - "【50기】미검", - 15, - 71, - 93, - "che_event_의술", - [ - 0, - 0, - 0, - 0, - 0 - ], - 0, - "default.jpg", - 50, - "che_221103_1JGx", - 176, - [ - "hall:dedication", - "hall:tirate" - ] - ], - [ - "【50기】괴견", - 80, - 92, - 15, - "che_event_무쌍", - [ - 14672, - 16555, - 612848, - 38409, - 83093 - ], - 0, - "default.jpg", - 50, - "che_221103_1JGx", - 331, - [ - "hall:dedication", - "hall:dex3", - "hall:killrate", - "hall:killrate_person", - "hall:tsrate" - ] - ], - [ - "【50기】진보", - 95, - 74, - 16, - "che_event_무쌍", - [ - 115052, - 36265, - 74233, - 129871, - 866260 - ], - 1, - "1ff44d41.jpg?=20221111", - 50, - "che_221103_1JGx", - 332, - [ - "hall:betgold", - "hall:betrate", - "hall:betwin", - "hall:betwingold", - "hall:dex5", - "hall:firenum", - "hall:warnum" - ] - ], - [ - "【50기】미강", - 87, - 18, - 78, - "che_event_신중", - [ - 21339, - 6177, - 35166, - 171817, - 4846 - ], - 1, - "db0cb7a.jpg?=20190719", - 50, - "che_221103_1JGx", - 336, - [ - "hall:ttrate" - ] - ], - [ - "【50기】두패", - 80, - 87, - 16, - "che_event_척사", - [ - 562788, - 14566, - 73570, - 75211, - 88188 - ], - 1, - "a5eb006e.png?=20221106", - 50, - "che_221103_1JGx", - 348, - [ - "hall:dex1", - "hall:dex5", - "hall:firenum" - ] - ], - [ - "【50기】전람", - 92, - 79, - 15, - "che_event_필살", - [ - 71762, - 813345, - 16523, - 121508, - 62971 - ], - 0, - "default.jpg", - 50, - "che_221103_1JGx", - 349, - [ - "hall:dex2" - ] - ], - [ - "【50기】성완", - 78, - 89, - 15, - "che_event_무쌍", - [ - 340235, - 3075, - 57456, - 59019, - 20483 - ], - 0, - "default.jpg", - 50, - "che_221103_1JGx", - 527, - [ - "hall:tsrate" - ] - ], [ "【51기】3성구", 90, @@ -75314,1597 +62160,6 @@ "hall:firenum" ] ], - [ - "【55기】카이스트", - 90, - 25, - 131, - "che_event_필살", - [ - 38066, - 38424, - 42317, - 840728, - 22680 - ], - 1, - "e7e27cd6.jpg?=20221125", - 55, - "che_230316_WiVp", - 3, - [ - "hall:betgold", - "hall:betwin", - "hall:betwingold", - "hall:killrate_person", - "hall:tirate", - "hall:winrate" - ] - ], - [ - "【55기】테라도스", - 96, - 25, - 125, - "che_event_신중", - [ - 45457, - 39030, - 69292, - 1146991, - 27324 - ], - 1, - "d8948ae7.jpg?=20230318", - 55, - "che_230316_WiVp", - 4, - [ - "hall:dex4", - "hall:killcrew", - "hall:killcrew_person", - "hall:killnum", - "hall:warnum", - "hall:winrate" - ] - ], - [ - "【55기】정카야", - 134, - 89, - 26, - "che_event_징병", - [ - 28950, - 26406, - 57927, - 76025, - 1447943 - ], - 1, - "f2e3f1c7.jpg?=20230401", - 55, - "che_230316_WiVp", - 6, - [ - "hall:betgold", - "hall:betwin", - "hall:betwingold", - "hall:dex5", - "hall:killcrew", - "hall:killcrew_person", - "hall:killnum", - "hall:occupied", - "hall:tlrate", - "hall:ttrate", - "hall:warnum" - ] - ], - [ - "【55기】버거주면임관", - 96, - 119, - 26, - "che_event_저격", - [ - 111559, - 886046, - 70867, - 109872, - 26357 - ], - 1, - "e14e8b56.png?=20230316", - 55, - "che_230316_WiVp", - 8, - [ - "hall:dex2", - "hall:firenum" - ] - ], - [ - "【55기】양민킬러", - 94, - 25, - 125, - "che_event_필살", - [ - 32234, - 38457, - 70661, - 1129040, - 100074 - ], - 1, - "85c3daac.png?=20230316", - 55, - "che_230316_WiVp", - 12, - [ - "chief:9", - "hall:betrate", - "hall:betwin", - "hall:betwingold", - "hall:dex4", - "hall:experience", - "hall:occupied", - "hall:tirate", - "hall:winrate" - ] - ], - [ - "【55기】춥고배고프고졸리다", - 98, - 118, - 26, - "che_event_필살", - [ - 4710, - 70218, - 1030734, - 70727, - 99721 - ], - 0, - "default.jpg", - 55, - "che_230316_WiVp", - 14, - [ - "chief:6", - "hall:dex3" - ] - ], - [ - "【55기】퍄퍄", - 98, - 124, - 25, - "che_event_위압", - [ - 64308, - 1558519, - 92498, - 109315, - 21796 - ], - 1, - "1dcfe486.jpg?=20230317", - 55, - "che_230316_WiVp", - 18, - [ - "hall:betrate", - "hall:dex2", - "hall:experience", - "hall:killcrew", - "hall:killcrew_person", - "hall:killnum", - "hall:killrate", - "hall:killrate_person", - "hall:tsrate", - "hall:warnum" - ] - ], - [ - "【55기】대교", - 124, - 87, - 25, - "che_event_필살", - [ - 18437, - 56593, - 125511, - 81215, - 453068 - ], - 1, - "9f0e6dcc.jpg?=20220808", - 55, - "che_230316_WiVp", - 20, - [ - "hall:dex5", - "hall:tlrate", - "hall:ttrate" - ] - ], - [ - "【55기】전재준", - 93, - 123, - 26, - "che_event_징병", - [ - 45986, - 1161535, - 19552, - 71845, - 37276 - ], - 1, - "47319e53.png?=20230317", - 55, - "che_230316_WiVp", - 22, - [ - "hall:dex2" - ] - ], - [ - "【55기】미숫가루", - 132, - 93, - 25, - "che_event_징병", - [ - 65482, - 1112663, - 37461, - 243031, - 10556 - ], - 1, - "05422fbb.jpg?=20230321", - 55, - "che_230316_WiVp", - 23, - [ - "hall:betwin", - "hall:dex2", - "hall:killcrew", - "hall:killcrew_person", - "hall:killnum", - "hall:killrate", - "hall:killrate_person", - "hall:tlrate", - "hall:warnum" - ] - ], - [ - "【55기】서희", - 96, - 125, - 25, - "che_event_징병", - [ - 11648, - 85478, - 1418476, - 127953, - 70939 - ], - 1, - "8debf7e5.png?=20230308", - 55, - "che_230316_WiVp", - 24, - [ - "chief:8", - "hall:betrate", - "hall:dedication", - "hall:dex3", - "hall:experience", - "hall:killcrew", - "hall:killcrew_person", - "hall:killnum", - "hall:killrate", - "hall:killrate_person", - "hall:occupied", - "hall:tsrate", - "hall:warnum", - "hall:winrate" - ] - ], - [ - "【55기】백마의종", - 124, - 97, - 26, - "che_event_징병", - [ - 62649, - 56780, - 269586, - 193457, - 1467698 - ], - 0, - "default.jpg", - 55, - "che_230316_WiVp", - 26, - [ - "chief:10", - "hall:dex5", - "hall:experience", - "hall:killcrew", - "hall:killcrew_person", - "hall:killnum", - "hall:occupied", - "hall:tlrate", - "hall:warnum", - "hall:winrate" - ] - ], - [ - "【55기】SARS", - 90, - 25, - 122, - "che_event_징병", - [ - 58316, - 22797, - 88801, - 871204, - 9164 - ], - 1, - "b84944.jpg?=20180829", - 55, - "che_230316_WiVp", - 29, - [ - "hall:dex4" - ] - ], - [ - "【55기】Samo", - 125, - 88, - 25, - "che_event_저격", - [ - 25508, - 51407, - 109297, - 98876, - 608977 - ], - 1, - "e7191f5e.png?=20230223", - 55, - "che_230316_WiVp", - 37, - [ - "hall:dex5", - "hall:tlrate" - ] - ], - [ - "【55기】윤하", - 94, - 114, - 25, - "che_event_필살", - [ - 6828, - 32111, - 324300, - 82405, - 9055 - ], - 0, - "default.jpg", - 55, - "che_230316_WiVp", - 43, - [ - "hall:tsrate", - "hall:ttrate" - ] - ], - [ - "【55기】통지", - 94, - 25, - 120, - "che_event_환술", - [ - 17921, - 42020, - 34913, - 619631, - 80267 - ], - 0, - "default.jpg", - 55, - "che_230316_WiVp", - 45, - [ - "hall:tirate" - ] - ], - [ - "【55기】라콘타", - 97, - 118, - 25, - "che_event_격노", - [ - 30997, - 35893, - 752833, - 53746, - 23607 - ], - 1, - "af67c92c.png?=20230330", - 55, - "che_230316_WiVp", - 47, - [ - "hall:dex3", - "hall:firenum", - "hall:tsrate" - ] - ], - [ - "【55기】새로구미", - 120, - 102, - 25, - "che_event_무쌍", - [ - 1698580, - 65027, - 97625, - 116046, - 170122 - ], - 1, - "2817b643.png?=20230316", - 55, - "che_230316_WiVp", - 54, - [ - "chief:11", - "hall:betgold", - "hall:betwin", - "hall:betwingold", - "hall:dex1", - "hall:dex5", - "hall:experience", - "hall:killcrew", - "hall:killcrew_person", - "hall:killnum", - "hall:killrate", - "hall:killrate_person", - "hall:occupied", - "hall:tlrate", - "hall:warnum", - "hall:winrate" - ] - ], - [ - "【55기】환선", - 110, - 106, - 25, - "che_event_징병", - [ - 862408, - 64957, - 97107, - 94292, - 5473 - ], - 0, - "default.jpg", - 55, - "che_230316_WiVp", - 56, - [ - "hall:dex1" - ] - ], - [ - "【55기】네이미", - 122, - 91, - 25, - "che_event_격노", - [ - 154070, - 462984, - 65029, - 137987, - 286160 - ], - 0, - "default.jpg", - 55, - "che_230316_WiVp", - 58, - [ - "hall:betrate", - "hall:dex2", - "hall:dex5" - ] - ], - [ - "【55기】문흠", - 99, - 116, - 26, - "che_event_격노", - [ - 6529, - 46024, - 758060, - 50221, - 3412 - ], - 0, - "default.jpg", - 55, - "che_230316_WiVp", - 60, - [ - "hall:dex3", - "hall:tsrate" - ] - ], - [ - "【55기】정일품", - 100, - 115, - 26, - "che_event_필살", - [ - 833671, - 27542, - 61353, - 120576, - 100263 - ], - 1, - "b3470750.jpg?=20230205", - 55, - "che_230316_WiVp", - 62, - [ - "hall:betrate", - "hall:dex1", - "hall:occupied" - ] - ], - [ - "【55기】마이릴리아", - 92, - 26, - 122, - "che_event_신중", - [ - 34754, - 45568, - 54379, - 660733, - 98677 - ], - 1, - "a7755e4e.png?=20230310", - 55, - "che_230316_WiVp", - 64, - [ - "hall:dedication", - "hall:experience", - "hall:ttrate" - ] - ], - [ - "【55기】독구콘최다사용자", - 91, - 25, - 125, - "che_event_집중", - [ - 23355, - 8699, - 44201, - 588225, - 52247 - ], - 1, - "40d0e506.png?=20230312", - 55, - "che_230316_WiVp", - 69, - [ - "hall:betgold", - "hall:betwin", - "hall:betwingold" - ] - ], - [ - "【55기】키리코", - 98, - 127, - 26, - "che_event_필살", - [ - 64512, - 34381, - 1694784, - 137785, - 19037 - ], - 1, - "283f3a39.jpg?=20230129", - 55, - "che_230316_WiVp", - 70, - [ - "hall:betgold", - "hall:betwin", - "hall:dex3", - "hall:firenum", - "hall:killcrew", - "hall:killcrew_person", - "hall:killnum", - "hall:killrate", - "hall:killrate_person", - "hall:tsrate", - "hall:warnum", - "hall:winrate" - ] - ], - [ - "【55기】응애", - 92, - 25, - 125, - "che_event_필살", - [ - 28776, - 42288, - 32374, - 703439, - 20575 - ], - 1, - "fda33b70.jpg?=20230223", - 55, - "che_230316_WiVp", - 72, - [ - "hall:tirate" - ] - ], - [ - "【55기】정미희", - 120, - 95, - 26, - "che_event_징병", - [ - 354110, - 464694, - 329168, - 82962, - 30034 - ], - 1, - "5784b028.jpg?=20230326", - 55, - "che_230316_WiVp", - 73, - [ - "hall:dex2" - ] - ], - [ - "【55기】계모람쿠단해함몽봄", - 98, - 117, - 25, - "che_event_징병", - [ - 617211, - 36832, - 49646, - 74839, - 96329 - ], - 1, - "34132638.jpg?=20230316", - 55, - "che_230316_WiVp", - 74, - [ - "hall:dex1" - ] - ], - [ - "【55기】문동은", - 95, - 25, - 123, - "che_event_집중", - [ - 16389, - 39032, - 37518, - 892353, - 61367 - ], - 1, - "519f7208.png?=20230327", - 55, - "che_230316_WiVp", - 75, - [ - "hall:dex4", - "hall:ttrate" - ] - ], - [ - "【55기】tqtt", - 123, - 94, - 26, - "che_event_무쌍", - [ - 814288, - 26094, - 20759, - 83555, - 21391 - ], - 0, - "default.jpg", - 55, - "che_230316_WiVp", - 76, - [ - "hall:dex1" - ] - ], - [ - "【55기】ㅊㄹㅊㄹ", - 95, - 120, - 26, - "che_event_견고", - [ - 678209, - 38001, - 36573, - 63866, - 8090 - ], - 1, - "63f1c106.png?=20230223", - 55, - "che_230316_WiVp", - 78, - [ - "hall:dex1", - "hall:tsrate" - ] - ], - [ - "【55기】くま", - 90, - 26, - 122, - "che_event_환술", - [ - 23622, - 34453, - 81597, - 850766, - 123517 - ], - 1, - "770f53.jpg?=20190718", - 55, - "che_230316_WiVp", - 79, - [ - "chief:5", - "hall:dedication", - "hall:tirate", - "hall:ttrate" - ] - ], - [ - "【55기】료우기시키", - 124, - 92, - 26, - "che_event_격노", - [ - 896598, - 17183, - 47554, - 78891, - 23982 - ], - 1, - "72a190e.jpg?=20220109", - 55, - "che_230316_WiVp", - 81, - [ - "hall:dex1" - ] - ], - [ - "【55기】동남서북", - 31, - 81, - 125, - "che_event_징병", - [ - 0, - 0, - 0, - 0, - 0 - ], - 0, - "default.jpg", - 55, - "che_230316_WiVp", - 82, - [ - "hall:dedication" - ] - ], - [ - "【55기】불패", - 98, - 26, - 119, - "che_event_징병", - [ - 32245, - 50565, - 28526, - 947691, - 61978 - ], - 1, - "c6d07baa.jpg?=20230223", - 55, - "che_230316_WiVp", - 83, - [ - "hall:dex4" - ] - ], - [ - "【55기】박연진", - 96, - 124, - 26, - "che_event_필살", - [ - 68194, - 1045204, - 54294, - 100534, - 21032 - ], - 1, - "6e31ac0b.png?=20230405", - 55, - "che_230316_WiVp", - 85, - [ - "hall:dex2", - "hall:killrate", - "hall:killrate_person", - "hall:occupied", - "hall:tsrate", - "hall:winrate" - ] - ], - [ - "【55기】와일드플라워", - 125, - 87, - 27, - "che_event_필살", - [ - 11014, - 46038, - 723341, - 106966, - 64650 - ], - 0, - "default.jpg", - 55, - "che_230316_WiVp", - 86, - [ - "hall:dex3", - "hall:tlrate" - ] - ], - [ - "【55기】머큐리스", - 89, - 25, - 124, - "che_event_집중", - [ - 63753, - 25784, - 30119, - 473941, - 12203 - ], - 0, - "default.jpg", - 55, - "che_230316_WiVp", - 87, - [ - "hall:betgold", - "hall:betwingold" - ] - ], - [ - "【55기】간지밍이", - 97, - 25, - 118, - "che_event_필살", - [ - 16224, - 68734, - 85258, - 980973, - 90750 - ], - 1, - "41b12b95.png?=20221102", - 55, - "che_230316_WiVp", - 89, - [ - "hall:betgold", - "hall:betwin", - "hall:betwingold", - "hall:dedication", - "hall:dex4", - "hall:firenum" - ] - ], - [ - "【55기】최치열", - 96, - 25, - 116, - "che_event_집중", - [ - 50384, - 18929, - 31945, - 523661, - 33537 - ], - 1, - "7cd57508.jpg?=20230317", - 55, - "che_230316_WiVp", - 90, - [ - "hall:killrate", - "hall:tirate" - ] - ], - [ - "【55기】레드제플린", - 98, - 112, - 26, - "che_event_저격", - [ - 26274, - 61555, - 710325, - 105687, - 78351 - ], - 1, - "420cb96e.png?=20230129", - 55, - "che_230316_WiVp", - 91, - [ - "hall:betrate", - "hall:dex3" - ] - ], - [ - "【55기】메어 애슐리페커", - 92, - 25, - 134, - "che_event_징병", - [ - 19448, - 93632, - 80349, - 1945101, - 141230 - ], - 1, - "b0487617.png?=20230316", - 55, - "che_230316_WiVp", - 92, - [ - "chief:12", - "hall:betgold", - "hall:betrate", - "hall:betwingold", - "hall:dedication", - "hall:dex2", - "hall:dex4", - "hall:dex5", - "hall:experience", - "hall:killcrew", - "hall:killcrew_person", - "hall:killnum", - "hall:killrate", - "hall:killrate_person", - "hall:occupied", - "hall:tirate", - "hall:warnum", - "hall:winrate" - ] - ], - [ - "【55기】송하영", - 92, - 25, - 121, - "che_event_집중", - [ - 30880, - 31951, - 17603, - 701300, - 86420 - ], - 1, - "46c4ad92.jpg?=20230316", - 55, - "che_230316_WiVp", - 93, - [ - "hall:firenum" - ] - ], - [ - "【55기】새우튀김", - 96, - 25, - 119, - "che_event_환술", - [ - 47457, - 56642, - 58935, - 953015, - 102891 - ], - 0, - "default.jpg", - 55, - "che_230316_WiVp", - 94, - [ - "hall:dex4" - ] - ], - [ - "【55기】사스케", - 147, - 69, - 21, - "che_event_징병", - [ - 66715, - 21894, - 43039, - 119754, - 2160264 - ], - 1, - "bb31c034.jpg?=20221125", - 55, - "che_230316_WiVp", - 96, - [ - "hall:betgold", - "hall:betwin", - "hall:betwingold", - "hall:dex5", - "hall:experience", - "hall:firenum", - "hall:killcrew", - "hall:killcrew_person", - "hall:killnum", - "hall:killrate", - "hall:killrate_person", - "hall:occupied", - "hall:tlrate", - "hall:ttrate", - "hall:warnum", - "hall:winrate" - ] - ], - [ - "【55기】페르난도", - 98, - 114, - 26, - "che_event_위압", - [ - 12947, - 7753, - 544799, - 69288, - 29855 - ], - 0, - "default.jpg", - 55, - "che_230316_WiVp", - 97, - [ - "hall:betrate", - "hall:dex3" - ] - ], - [ - "【55기】외심장", - 93, - 26, - 121, - "che_event_의술", - [ - 31892, - 43082, - 72496, - 564845, - 117095 - ], - 1, - "36110cd.jpg?=20180826", - 55, - "che_230316_WiVp", - 99, - [ - "hall:dedication" - ] - ], - [ - "【55기】조민", - 92, - 25, - 128, - "che_event_징병", - [ - 47679, - 114526, - 47614, - 1070606, - 63269 - ], - 0, - "default.jpg", - 55, - "che_230316_WiVp", - 100, - [ - "hall:dex2", - "hall:dex4", - "hall:experience", - "hall:tirate" - ] - ], - [ - "【55기】디케", - 93, - 25, - 122, - "che_event_의술", - [ - 28394, - 49988, - 69133, - 799899, - 74644 - ], - 1, - "0db29940.jpg?=20230316", - 55, - "che_230316_WiVp", - 102, - [ - "hall:tirate" - ] - ], - [ - "【55기】1day.1min.", - 95, - 25, - 120, - "che_event_의술", - [ - 49652, - 18601, - 37925, - 459358, - 9974 - ], - 0, - "default.jpg", - 55, - "che_230316_WiVp", - 106, - [ - "hall:betrate", - "hall:ttrate" - ] - ], - [ - "【55기】메이플스토리", - 95, - 25, - 123, - "che_event_반계", - [ - 72631, - 26846, - 49074, - 942452, - 16591 - ], - 1, - "169a4077.png?=20230316", - 55, - "che_230316_WiVp", - 109, - [ - "hall:dex4", - "hall:tirate" - ] - ], - [ - "【55기】미친과학", - 117, - 98, - 25, - "che_event_무쌍", - [ - 778594, - 35983, - 24129, - 138510, - 137523 - ], - 1, - "7ff7c2c9.jpg?=20230225", - 55, - "che_230316_WiVp", - 110, - [ - "hall:dedication", - "hall:dex1", - "hall:dex5", - "hall:occupied" - ] - ], - [ - "【55기】본드래곤", - 97, - 116, - 26, - "che_event_무쌍", - [ - 814337, - 31719, - 47722, - 65926, - 16223 - ], - 0, - "default.jpg", - 55, - "che_230316_WiVp", - 111, - [ - "hall:dex1", - "hall:tsrate", - "hall:ttrate" - ] - ], - [ - "【55기】비상식량", - 127, - 89, - 25, - "che_event_의술", - [ - 61635, - 609154, - 12715, - 73733, - 18739 - ], - 1, - "3031b888.gif?=20221229", - 55, - "che_230316_WiVp", - 112, - [ - "hall:dex2", - "hall:tlrate" - ] - ], - [ - "【55기】척", - 99, - 115, - 25, - "che_event_필살", - [ - 21976, - 22068, - 684772, - 118126, - 15636 - ], - 1, - "7cb75480.png?=20221202", - 55, - "che_230316_WiVp", - 294, - [ - "hall:dex3", - "hall:firenum" - ] - ], - [ - "【55기】기술연구리", - 26, - 88, - 122, - "che_event_필살", - [ - 0, - 0, - 0, - 0, - 0 - ], - 1, - "79dbce5.jpg?=20210918", - 55, - "che_230316_WiVp", - 298, - [ - "hall:betgold", - "hall:betwin", - "hall:betwingold", - "hall:firenum" - ] - ], - [ - "【55기】추선생", - 114, - 97, - 25, - "che_event_견고", - [ - 380405, - 25323, - 60642, - 72107, - 102909 - ], - 1, - "28fe5c10.jpg?=20230318", - 55, - "che_230316_WiVp", - 299, - [ - "hall:tlrate" - ] - ], - [ - "【55기】월향", - 92, - 26, - 120, - "che_event_필살", - [ - 25139, - 18995, - 56093, - 737459, - 106915 - ], - 1, - "0b45cdf8.webp?=20230101", - 55, - "che_230316_WiVp", - 300, - [ - "chief:7", - "hall:dedication", - "hall:experience" - ] - ], - [ - "【55기】경국지색소교", - 95, - 114, - 25, - "che_event_견고", - [ - 8722, - 28058, - 269134, - 43819, - 28746 - ], - 0, - "default.jpg", - 55, - "che_230316_WiVp", - 302, - [ - "hall:tsrate" - ] - ], - [ - "【55기】Bianchi", - 94, - 116, - 25, - "che_event_징병", - [ - 25014, - 32446, - 682426, - 73474, - 29042 - ], - 0, - "default.jpg", - 55, - "che_230316_WiVp", - 307, - [ - "hall:dex3" - ] - ], - [ - "【55기】결산", - 95, - 120, - 27, - "che_event_격노", - [ - 634632, - 28328, - 170272, - 59403, - 32622 - ], - 0, - "default.jpg", - 55, - "che_230316_WiVp", - 308, - [ - "hall:dex1", - "hall:killrate", - "hall:killrate_person", - "hall:ttrate" - ] - ], - [ - "【55기】복숭아좋아", - 94, - 26, - 116, - "che_event_집중", - [ - 17063, - 35688, - 65804, - 644818, - 124301 - ], - 1, - "57e4a39.jpg?=20190620", - 55, - "che_230316_WiVp", - 327, - [ - "hall:dedication", - "hall:dex5" - ] - ], - [ - "【55기】민트토끼", - 27, - 80, - 122, - "che_event_신산", - [ - 0, - 0, - 0, - 0, - 0 - ], - 1, - "b80db368.jpg?=20230221", - 55, - "che_230316_WiVp", - 495, - [ - "hall:firenum" - ] - ], - [ - "【55기】춤과파티", - 89, - 30, - 95, - "che_event_환술", - [ - 860, - 14559, - 0, - 128698, - 3387 - ], - 0, - "default.jpg", - 55, - "che_230316_WiVp", - 785, - [ - "hall:betrate" - ] - ], [ "【56기】카이스트", 78, @@ -83616,1633 +68871,6 @@ "hall:dedication" ] ], - [ - "【60기】척", - 76, - 88, - 15, - "che_event_필살", - [ - 367980, - 5335, - 57006, - 20173, - 187710 - ], - 1, - "7cb75480.png?=20221202", - 60, - "che_230810_pS8L", - 7, - [ - "hall:dex1", - "hall:dex5", - "hall:killrate" - ] - ], - [ - "【60기】ⓗ동탁", - 74, - 92, - 15, - "che_event_필살", - [ - 638499, - 3043, - 18060, - 26903, - 73391 - ], - 0, - "default.jpg", - 60, - "che_230810_pS8L", - 16, - [ - "hall:dex1", - "hall:killrate", - "hall:occupied", - "hall:tsrate" - ] - ], - [ - "【60기】경국지색소교", - 77, - 89, - 16, - "che_event_돌격", - [ - 1753, - 9683, - 212203, - 7257, - 48092 - ], - 1, - "ad2669b5.jpg?=20230605", - 60, - "che_230810_pS8L", - 22, - [ - "hall:ttrate" - ] - ], - [ - "【60기】모코코", - 76, - 91, - 15, - "che_event_무쌍", - [ - 816984, - 9389, - 103558, - 29937, - 90320 - ], - 1, - "de1526f7.jpg?=20230811", - 60, - "che_230810_pS8L", - 25, - [ - "hall:dex1", - "hall:experience", - "hall:killcrew", - "hall:killcrew_person", - "hall:killnum", - "hall:killrate", - "hall:killrate_person", - "hall:occupied", - "hall:warnum" - ] - ], - [ - "【60기】LK99", - 77, - 15, - 90, - "che_event_집중", - [ - 23384, - 2036, - 19889, - 656838, - 99344 - ], - 1, - "a6432751.png?=20230810", - 60, - "che_230810_pS8L", - 27, - [ - "hall:dex4", - "hall:killcrew", - "hall:killcrew_person", - "hall:tirate" - ] - ], - [ - "【60기】카이스트", - 74, - 15, - 91, - "che_event_집중", - [ - 9594, - 4744, - 12801, - 794727, - 123947 - ], - 1, - "e7e27cd6.jpg?=20221125", - 60, - "che_230810_pS8L", - 28, - [ - "hall:betrate", - "hall:dex4", - "hall:killnum", - "hall:tirate", - "hall:warnum" - ] - ], - [ - "【60기】김정은", - 87, - 78, - 15, - "che_event_징병", - [ - 564117, - 11404, - 25555, - 37588, - 195921 - ], - 1, - "6b516dfc.png?=20230810", - 60, - "che_230810_pS8L", - 29, - [ - "hall:betgold", - "hall:betrate", - "hall:betwin", - "hall:betwingold", - "hall:dex1", - "hall:dex5", - "hall:tlrate" - ] - ], - [ - "【60기】장원영", - 76, - 90, - 15, - "che_event_필살", - [ - 564018, - 8291, - 19288, - 30889, - 61438 - ], - 1, - "747944df.jpg?=20230731", - 60, - "che_230810_pS8L", - 31, - [ - "hall:dex1" - ] - ], - [ - "【60기】Sase Kim", - 72, - 15, - 94, - "che_event_환술", - [ - 19403, - 9129, - 4268, - 429778, - 54615 - ], - 1, - "1bf472d6.jpg?=20230810", - 60, - "che_230810_pS8L", - 39, - [ - "hall:betgold", - "hall:betwin", - "hall:betwingold", - "hall:tirate" - ] - ], - [ - "【60기】황진", - 75, - 15, - 91, - "che_event_집중", - [ - 392, - 1125, - 5517, - 152467, - 32695 - ], - 0, - "default.jpg", - 60, - "che_230810_pS8L", - 42, - [ - "hall:ttrate" - ] - ], - [ - "【60기】NS 청설모", - 77, - 87, - 15, - "che_event_위압", - [ - 39924, - 516100, - 4297, - 22944, - 68218 - ], - 0, - "default.jpg", - 60, - "che_230810_pS8L", - 44, - [ - "hall:dex2", - "hall:killrate_person" - ] - ], - [ - "【60기】개미호랑이", - 74, - 15, - 92, - "che_event_척사", - [ - 10941, - 989, - 0, - 182758, - 50769 - ], - 1, - "ce56034f.jpg?=20230714", - 60, - "che_230810_pS8L", - 45, - [ - "hall:dedication", - "hall:tirate" - ] - ], - [ - "【60기】라콘타", - 75, - 91, - 15, - "che_event_필살", - [ - 558376, - 4402, - 1727, - 25714, - 52680 - ], - 1, - "ab1b58bf.png?=20230804", - 60, - "che_230810_pS8L", - 47, - [ - "hall:dex1" - ] - ], - [ - "【60기】초선", - 77, - 15, - 91, - "che_event_집중", - [ - 20710, - 11126, - 20442, - 836540, - 38911 - ], - 1, - "b24730b1.jpg?=20230112", - 60, - "che_230810_pS8L", - 49, - [ - "hall:dex4", - "hall:experience", - "hall:killcrew", - "hall:killcrew_person", - "hall:killnum", - "hall:killrate", - "hall:killrate_person", - "hall:occupied", - "hall:ttrate", - "hall:warnum", - "hall:winrate" - ] - ], - [ - "【60기】유메하라노조미", - 74, - 90, - 18, - "che_event_돌격", - [ - 5033, - 21015, - 448157, - 18727, - 105575 - ], - 1, - "32383907.gif?=20230810", - 60, - "che_230810_pS8L", - 50, - [ - "hall:dex3", - "hall:tsrate" - ] - ], - [ - "【60기】료우기시키", - 75, - 15, - 91, - "che_event_환술", - [ - 21754, - 10891, - 14412, - 752841, - 109692 - ], - 1, - "72a190e.jpg?=20220109", - 60, - "che_230810_pS8L", - 53, - [ - "hall:dex4", - "hall:experience", - "hall:killcrew", - "hall:killcrew_person", - "hall:killnum", - "hall:warnum" - ] - ], - [ - "【60기】대교", - 92, - 73, - 15, - "che_event_격노", - [ - 1710, - 905, - 389480, - 16492, - 94829 - ], - 1, - "9f0e6dcc.jpg?=20220808", - 60, - "che_230810_pS8L", - 57, - [ - "hall:dex3", - "hall:tlrate" - ] - ], - [ - "【60기】강유", - 77, - 15, - 88, - "che_event_필살", - [ - 14258, - 5552, - 10151, - 514394, - 101891 - ], - 1, - "663df7a3.jpg?=20230713", - 60, - "che_230810_pS8L", - 62, - [ - "hall:dex4" - ] - ], - [ - "【60기】Samo", - 77, - 15, - 89, - "che_event_집중", - [ - 10349, - 14486, - 6162, - 498782, - 91393 - ], - 1, - "0b53e4d0.png?=20230502", - 60, - "che_230810_pS8L", - 67, - [ - "hall:dex4" - ] - ], - [ - "【60기】제갈여포", - 75, - 15, - 90, - "che_event_집중", - [ - 14659, - 6098, - 9127, - 347079, - 63187 - ], - 0, - "default.jpg", - 60, - "che_230810_pS8L", - 71, - [ - "hall:firenum", - "hall:tirate" - ] - ], - [ - "【60기】세헤라데", - 74, - 89, - 18, - "che_event_돌격", - [ - 10018, - 13233, - 214416, - 20543, - 21070 - ], - 1, - "0433b89f.png?=20230810", - 60, - "che_230810_pS8L", - 73, - [ - "hall:dex3", - "hall:ttrate" - ] - ], - [ - "【60기】토요일의 플라이트", - 73, - 15, - 93, - "che_event_필살", - [ - 22146, - 9964, - 10473, - 519998, - 70422 - ], - 1, - "61c3902b.jpg?=20230810", - 60, - "che_230810_pS8L", - 77, - [ - "hall:dex4", - "hall:tirate", - "hall:winrate" - ] - ], - [ - "【60기】살수묵링", - 86, - 80, - 15, - "che_event_돌격", - [ - 12815, - 6126, - 278728, - 27711, - 75545 - ], - 0, - "default.jpg", - 60, - "che_230810_pS8L", - 79, - [ - "hall:dex3", - "hall:tlrate" - ] - ], - [ - "【60기】서희", - 86, - 80, - 15, - "che_event_무쌍", - [ - 10780, - 9558, - 757311, - 44380, - 215491 - ], - 1, - "8debf7e5.png?=20230308", - 60, - "che_230810_pS8L", - 81, - [ - "hall:dex3", - "hall:dex5", - "hall:experience", - "hall:killcrew", - "hall:killcrew_person", - "hall:killnum", - "hall:occupied", - "hall:warnum" - ] - ], - [ - "【60기】SARS", - 77, - 16, - 90, - "che_event_돌격", - [ - 26865, - 18118, - 14959, - 939004, - 99433 - ], - 1, - "b84944.jpg?=20180829", - 60, - "che_230810_pS8L", - 82, - [ - "hall:dex4", - "hall:experience", - "hall:killcrew", - "hall:killcrew_person", - "hall:killnum", - "hall:killrate_person", - "hall:occupied", - "hall:warnum", - "hall:winrate" - ] - ], - [ - "【60기】초딩대우직딩", - 85, - 30, - 67, - "che_event_징병", - [ - 7188, - 10551, - 0, - 37047, - 308835 - ], - 0, - "default.jpg", - 60, - "che_230810_pS8L", - 83, - [ - "hall:dex5", - "hall:ttrate" - ] - ], - [ - "【60기】김정일", - 73, - 90, - 17, - "che_event_저격", - [ - 28836, - 1, - 2125, - 3263, - 6612 - ], - 0, - "default.jpg", - 60, - "che_230810_pS8L", - 87, - [ - "hall:tsrate" - ] - ], - [ - "【60기】민트토끼", - 15, - 77, - 89, - "che_event_저격", - [ - 1779, - 0, - 22514, - 3870, - 206 - ], - 1, - "be24281f.jpg?=20230805", - 60, - "che_230810_pS8L", - 90, - [ - "hall:betrate" - ] - ], - [ - "【60기】네이", - 84, - 15, - 81, - "che_event_집중", - [ - 17387, - 2417, - 5638, - 251219, - 51484 - ], - 0, - "default.jpg", - 60, - "che_230810_pS8L", - 91, - [ - "chief:7", - "hall:betgold", - "hall:betwin", - "hall:betwingold", - "hall:firenum" - ] - ], - [ - "【60기】불패", - 72, - 91, - 16, - "che_event_돌격", - [ - 293709, - 1949, - 10509, - 15430, - 46479 - ], - 1, - "e52adea8.jpg?=20230712", - 60, - "che_230810_pS8L", - 92, - [ - "chief:8", - "hall:dedication" - ] - ], - [ - "【60기】레반독구스키", - 87, - 79, - 15, - "che_event_돌격", - [ - 11687, - 18426, - 391952, - 25009, - 29586 - ], - 1, - "40d0e506.png?=20230312", - 60, - "che_230810_pS8L", - 93, - [ - "chief:6", - "hall:betwin", - "hall:dex3", - "hall:killrate_person", - "hall:tlrate", - "hall:winrate" - ] - ], - [ - "【60기】Hide_O", - 92, - 74, - 15, - "che_event_돌격", - [ - 7925, - 29146, - 411007, - 43706, - 72339 - ], - 1, - "6296e31b.png?=20230810", - 60, - "che_230810_pS8L", - 95, - [ - "hall:betgold", - "hall:betrate", - "hall:betwingold", - "hall:dex2", - "hall:dex3", - "hall:tlrate" - ] - ], - [ - "【60기】리안", - 75, - 15, - 90, - "che_event_저격", - [ - 6804, - 1359, - 2352, - 125998, - 16638 - ], - 0, - "default.jpg", - 60, - "che_230810_pS8L", - 97, - [ - "hall:dedication" - ] - ], - [ - "【60기】진솔", - 74, - 15, - 91, - "che_event_필살", - [ - 16458, - 18261, - 6177, - 215088, - 325609 - ], - 1, - "78b044c8.webp?=20230812", - 60, - "che_230810_pS8L", - 98, - [ - "hall:betgold", - "hall:betrate", - "hall:betwingold", - "hall:dex5", - "hall:experience", - "hall:occupied" - ] - ], - [ - "【60기】레드캡 청설모", - 76, - 89, - 15, - "che_event_필살", - [ - 396719, - 2045, - 3693, - 15095, - 47690 - ], - 0, - "default.jpg", - 60, - "che_230810_pS8L", - 99, - [ - "hall:betwin", - "hall:dex1", - "hall:killrate", - "hall:killrate_person", - "hall:tsrate" - ] - ], - [ - "【60기】Hide_D", - 74, - 15, - 93, - "che_event_신중", - [ - 0, - 3991, - 788, - 160443, - 54724 - ], - 1, - "4569d848.png?=20230612", - 60, - "che_230810_pS8L", - 100, - [ - "hall:dedication", - "hall:tirate" - ] - ], - [ - "【60기】202309211100", - 95, - 72, - 15, - "che_event_돌격", - [ - 16231, - 20406, - 3638, - 11618, - 314531 - ], - 0, - "default.jpg", - 60, - "che_230810_pS8L", - 102, - [ - "hall:dex5", - "hall:tlrate" - ] - ], - [ - "【60기】덕구", - 75, - 90, - 15, - "che_event_척사", - [ - 10241, - 297709, - 1717, - 18122, - 71404 - ], - 1, - "f6b9a68b.jpg?=20230810", - 60, - "che_230810_pS8L", - 103, - [ - "hall:dex2" - ] - ], - [ - "【60기】NK", - 93, - 74, - 15, - "che_event_필살", - [ - 15163, - 24653, - 20131, - 28209, - 742030 - ], - 1, - "d48fe93a.jpg?=20221209", - 60, - "che_230810_pS8L", - 104, - [ - "hall:dex5", - "hall:experience", - "hall:killcrew", - "hall:killcrew_person", - "hall:killnum", - "hall:killrate_person", - "hall:occupied", - "hall:tlrate", - "hall:ttrate", - "hall:warnum" - ] - ], - [ - "【60기】평민킬러", - 74, - 95, - 15, - "che_event_필살", - [ - 29378, - 772594, - 17568, - 20892, - 81755 - ], - 1, - "95fee767.jpg?=20230810", - 60, - "che_230810_pS8L", - 105, - [ - "hall:dex2", - "hall:experience", - "hall:killcrew", - "hall:killcrew_person", - "hall:killnum", - "hall:killrate", - "hall:occupied", - "hall:tsrate", - "hall:warnum", - "hall:winrate" - ] - ], - [ - "【60기】아나", - 77, - 89, - 15, - "che_event_공성", - [ - 33281, - 26650, - 354865, - 18536, - 145893 - ], - 0, - "default.jpg", - 60, - "che_230810_pS8L", - 106, - [ - "hall:betgold", - "hall:dex2", - "hall:dex3", - "hall:dex5" - ] - ], - [ - "【60기】팥드러슈", - 75, - 91, - 15, - "che_event_위압", - [ - 2243, - 16983, - 445738, - 17748, - 69135 - ], - 1, - "70b4b24a.jpg?=20230810", - 60, - "che_230810_pS8L", - 108, - [ - "hall:betrate", - "hall:dex3", - "hall:tsrate" - ] - ], - [ - "【60기】ㅊㄹㅊㄹ", - 76, - 91, - 15, - "che_event_돌격", - [ - 34117, - 686754, - 52385, - 22961, - 91121 - ], - 1, - "63f1c106.png?=20230223", - 60, - "che_230810_pS8L", - 109, - [ - "hall:dex2", - "hall:killcrew", - "hall:killcrew_person", - "hall:killnum", - "hall:killrate", - "hall:killrate_person", - "hall:occupied", - "hall:tsrate", - "hall:warnum", - "hall:winrate" - ] - ], - [ - "【60기】민토트끼", - 76, - 16, - 89, - "che_event_집중", - [ - 23718, - 458, - 9555, - 552668, - 80579 - ], - 1, - "1930ae61.jpg?=20230810", - 60, - "che_230810_pS8L", - 110, - [ - "hall:dex4" - ] - ], - [ - "【60기】청설모주니어", - 75, - 91, - 15, - "che_event_견고", - [ - 490792, - 2659, - 10986, - 23770, - 70915 - ], - 1, - "b4040012.png?=20230810", - 60, - "che_230810_pS8L", - 111, - [ - "hall:dex1", - "hall:tsrate" - ] - ], - [ - "【60기】블랙쿠션", - 74, - 90, - 16, - "che_event_필살", - [ - 4749, - 6265, - 607379, - 28228, - 83479 - ], - 1, - "61227d47.jpg?=20230810", - 60, - "che_230810_pS8L", - 112, - [ - "hall:dex3", - "hall:killrate_person", - "hall:winrate" - ] - ], - [ - "【60기】지원", - 95, - 70, - 15, - "che_event_필살", - [ - 41915, - 1314, - 2236, - 5709, - 403239 - ], - 1, - "13c59544.webp?=20230712", - 60, - "che_230810_pS8L", - 113, - [ - "chief:10", - "hall:betwin", - "hall:dex5", - "hall:killrate", - "hall:tlrate" - ] - ], - [ - "【60기】LK_99", - 73, - 15, - 93, - "che_event_신산", - [ - 3447, - 9093, - 12663, - 25681, - 98033 - ], - 0, - "default.jpg", - 60, - "che_230810_pS8L", - 114, - [ - "hall:tirate" - ] - ], - [ - "【60기】아내손미역국", - 75, - 90, - 15, - "che_event_격노", - [ - 337521, - 6978, - 44112, - 23861, - 68723 - ], - 0, - "default.jpg", - 60, - "che_230810_pS8L", - 115, - [ - "hall:betgold", - "hall:betrate", - "hall:betwin", - "hall:betwingold", - "hall:dex1", - "hall:tsrate" - ] - ], - [ - "【60기】랜덤의신도와줘요", - 73, - 95, - 15, - "che_event_필살", - [ - 426714, - 1846, - 2631, - 6589, - 41903 - ], - 1, - "7a9073de.gif?=20230816", - 60, - "che_230810_pS8L", - 117, - [ - "chief:12", - "hall:betwin", - "hall:dedication", - "hall:dex1", - "hall:experience", - "hall:killrate", - "hall:tsrate", - "hall:winrate" - ] - ], - [ - "【60기】독피자 다줘스", - 76, - 15, - 89, - "che_event_필살", - [ - 14845, - 3971, - 3113, - 327995, - 72706 - ], - 0, - "default.jpg", - 60, - "che_230810_pS8L", - 118, - [ - "chief:5" - ] - ], - [ - "【60기】사스케", - 94, - 72, - 16, - "che_event_돌격", - [ - 15661, - 1178, - 12992, - 37691, - 438790 - ], - 1, - "812be77d.jpg?=20230709", - 60, - "che_230810_pS8L", - 119, - [ - "chief:11", - "hall:betgold", - "hall:betwin", - "hall:betwingold", - "hall:dex5", - "hall:tlrate" - ] - ], - [ - "【60기】간지밍이", - 76, - 15, - 92, - "che_event_필살", - [ - 9703, - 1947, - 11361, - 732817, - 79415 - ], - 1, - "19c0150f.png?=20230615", - 60, - "che_230810_pS8L", - 120, - [ - "hall:betgold", - "hall:betrate", - "hall:betwin", - "hall:betwingold", - "hall:dex4", - "hall:experience", - "hall:killcrew", - "hall:killcrew_person", - "hall:killnum", - "hall:killrate", - "hall:killrate_person", - "hall:occupied", - "hall:warnum", - "hall:winrate" - ] - ], - [ - "【60기】외심장", - 76, - 16, - 89, - "che_event_저격", - [ - 11740, - 7256, - 14021, - 345937, - 65657 - ], - 1, - "36110cd.jpg?=20180826", - 60, - "che_230810_pS8L", - 122, - [ - "hall:ttrate" - ] - ], - [ - "【60기】중절모", - 78, - 15, - 89, - "che_event_신산", - [ - 16892, - 6232, - 5611, - 348587, - 70659 - ], - 1, - "7f2981a3.png?=20230810", - 60, - "che_230810_pS8L", - 123, - [ - "hall:betrate", - "hall:betwingold" - ] - ], - [ - "【60기】피와 눈물로", - 78, - 88, - 16, - "che_event_척사", - [ - 23261, - 340656, - 2373, - 16098, - 67473 - ], - 0, - "default.jpg", - 60, - "che_230810_pS8L", - 132, - [ - "hall:dex2", - "hall:ttrate" - ] - ], - [ - "【60기】유카", - 15, - 77, - 88, - "che_event_의술", - [ - 0, - 0, - 0, - 0, - 0 - ], - 0, - "default.jpg", - 60, - "che_230810_pS8L", - 133, - [ - "hall:tirate", - "hall:ttrate" - ] - ], - [ - "【60기】북오더", - 86, - 80, - 15, - "che_event_척사", - [ - 19777, - 25052, - 186817, - 16073, - 26712 - ], - 1, - "f39217aa.gif?=20220916", - 60, - "che_230810_pS8L", - 136, - [ - "hall:dedication", - "hall:dex2" - ] - ], - [ - "【60기】상온초전도치", - 74, - 16, - 91, - "che_event_척사", - [ - 3548, - 1524, - 1585, - 83958, - 128078 - ], - 1, - "6cf16829.jpg?=20230812", - 60, - "che_230810_pS8L", - 223, - [ - "chief:9", - "hall:dedication" - ] - ], - [ - "【60기】.", - 75, - 15, - 89, - "che_event_필살", - [ - 1370, - 10030, - 390, - 227134, - 53077 - ], - 0, - "default.jpg", - 60, - "che_230810_pS8L", - 234, - [ - "hall:tirate" - ] - ], - [ - "【60기】퍄퍄", - 75, - 15, - 91, - "che_event_신중", - [ - 4184, - 6123, - 8720, - 429216, - 90839 - ], - 0, - "default.jpg", - 60, - "che_230810_pS8L", - 237, - [ - "hall:ttrate" - ] - ], - [ - "【60기】히후미", - 88, - 77, - 15, - "che_event_돌격", - [ - 12895, - 494996, - 5648, - 24360, - 81730 - ], - 1, - "6eea6a0a.webp?=20230811", - 60, - "che_230810_pS8L", - 240, - [ - "hall:dex2", - "hall:winrate" - ] - ], - [ - "【60기】くま", - 74, - 15, - 90, - "che_event_저격", - [ - 10587, - 880, - 3656, - 134060, - 27872 - ], - 1, - "770f53.jpg?=20190718", - 60, - "che_230810_pS8L", - 242, - [ - "hall:dedication", - "hall:firenum" - ] - ], - [ - "【60기】냥뇽녕냥", - 74, - 16, - 89, - "che_event_필살", - [ - 2902, - 4153, - 1885, - 239273, - 40376 - ], - 1, - "6932e497.jpg?=20230714", - 60, - "che_230810_pS8L", - 251, - [ - "hall:dedication" - ] - ], - [ - "【60기】이재용", - 15, - 76, - 87, - "che_event_징병", - [ - 0, - 0, - 0, - 0, - 0 - ], - 1, - "b1be35a3.jpg?=20230811", - 60, - "che_230810_pS8L", - 253, - [ - "hall:dedication" - ] - ], - [ - "【60기】Navy마초", - 92, - 71, - 15, - "che_event_위압", - [ - 4976, - 136531, - 1882, - 9917, - 30015 - ], - 0, - "default.jpg", - 60, - "che_230810_pS8L", - 270, - [ - "hall:betgold", - "hall:betrate", - "hall:betwingold", - "hall:dex2", - "hall:tlrate" - ] - ], [ "【61기】앵벌스", 73, @@ -92255,1745 +75883,6 @@ "hall:dex2" ] ], - [ - "【65기】척", - 69, - 82, - 13, - "che_event_필살", - [ - 392632, - 28904, - 59072, - 60448, - 28911 - ], - 1, - "7cb75480.png?=20221202", - 65, - "che_231228_IJng", - 4, - [ - "hall:firenum" - ] - ], - [ - "【65기】똑똑꾸", - 66, - 13, - 84, - "che_event_필살", - [ - 23033, - 10937, - 5124, - 271078, - 16637 - ], - 1, - "f64acfe3.jpg?=20231228", - 65, - "che_231228_IJng", - 5, - [ - "hall:tirate" - ] - ], - [ - "【65기】SARS", - 78, - 15, - 98, - "che_event_집중", - [ - 72596, - 2905, - 10510, - 1005974, - 21339 - ], - 1, - "b84944.jpg?=20180829", - 65, - "che_231228_IJng", - 6, - [ - "hall:dex4", - "hall:firenum", - "hall:killcrew", - "hall:killcrew_person", - "hall:killnum", - "hall:killrate", - "hall:killrate_person", - "hall:tirate", - "hall:winrate" - ] - ], - [ - "【65기】카이스트", - 67, - 13, - 83, - "che_event_신산", - [ - 51928, - 28750, - 31651, - 520785, - 19202 - ], - 1, - "e7e27cd6.jpg?=20221125", - 65, - "che_231228_IJng", - 7, - [ - "hall:firenum" - ] - ], - [ - "【65기】독구", - 67, - 13, - 85, - "che_event_필살", - [ - 45109, - 33859, - 13771, - 719796, - 25600 - ], - 1, - "1b9a260f.png?=20231228", - 65, - "che_231228_IJng", - 11, - [ - "chief:7", - "hall:betrate", - "hall:dex4", - "hall:experience", - "hall:killcrew", - "hall:killcrew_person", - "hall:killnum", - "hall:killrate", - "hall:killrate_person", - "hall:occupied", - "hall:tirate", - "hall:winrate" - ] - ], - [ - "【65기】마라홀릭망해라", - 70, - 13, - 78, - "che_event_신산", - [ - 19516, - 8500, - 16834, - 348445, - 22031 - ], - 1, - "6dd9be2a.jpg?=20231228", - 65, - "che_231228_IJng", - 12, - [ - "hall:firenum" - ] - ], - [ - "【65기】♡ㅅ♡", - 68, - 13, - 81, - "che_event_필살", - [ - 92705, - 19934, - 16826, - 390623, - 15553 - ], - 1, - "84a1806d.png?=20240123", - 65, - "che_231228_IJng", - 15, - [ - "hall:betgold", - "hall:betrate", - "hall:betwin", - "hall:betwingold", - "hall:tirate" - ] - ], - [ - "【65기】치와와", - 68, - 81, - 13, - "che_event_돌격", - [ - 541067, - 25916, - 24934, - 143566, - 24722 - ], - 1, - "d0f7b36c.jpg?=20231228", - 65, - "che_231228_IJng", - 26, - [ - "hall:dex1", - "hall:occupied", - "hall:tsrate" - ] - ], - [ - "【65기】우사미", - 69, - 13, - 84, - "che_event_징병", - [ - 18498, - 18893, - 17637, - 633199, - 29335 - ], - 1, - "781f5643.jpg?=20231228", - 65, - "che_231228_IJng", - 28, - [ - "hall:betgold", - "hall:betwin", - "hall:betwingold", - "hall:dedication", - "hall:dex4", - "hall:killcrew", - "hall:killcrew_person", - "hall:killnum", - "hall:warnum" - ] - ], - [ - "【65기】만샘", - 69, - 13, - 80, - "che_event_신중", - [ - 47407, - 12018, - 6028, - 404634, - 31756 - ], - 1, - "60da5bdc.jpg?=20231228", - 65, - "che_231228_IJng", - 29, - [ - "hall:betrate", - "hall:dex5" - ] - ], - [ - "【65기】Maxamuud", - 82, - 66, - 13, - "che_event_격노", - [ - 25439, - 27283, - 391505, - 100038, - 26427 - ], - 0, - "default.jpg", - 65, - "che_231228_IJng", - 31, - [ - "hall:dex3", - "hall:tlrate" - ] - ], - [ - "【65기】ㄷㄱㄷㄱ", - 67, - 13, - 81, - "che_event_필살", - [ - 52319, - 25559, - 24990, - 491958, - 28641 - ], - 0, - "default.jpg", - 65, - "che_231228_IJng", - 36, - [ - "hall:dedication" - ] - ], - [ - "【65기】매너플레이", - 82, - 65, - 13, - "che_event_필살", - [ - 23789, - 19376, - 415283, - 103553, - 22318 - ], - 1, - "50abb324.jpg?=20231228", - 65, - "che_231228_IJng", - 37, - [ - "hall:dex3", - "hall:tlrate" - ] - ], - [ - "【65기】네이", - 82, - 15, - 95, - "che_event_집중", - [ - 50638, - 51688, - 25234, - 1062407, - 41387 - ], - 0, - "default.jpg", - 65, - "che_231228_IJng", - 46, - [ - "hall:betwin", - "hall:dex4", - "hall:killcrew", - "hall:killcrew_person", - "hall:killnum", - "hall:killrate_person", - "hall:warnum", - "hall:winrate" - ] - ], - [ - "【65기】이안", - 68, - 13, - 83, - "che_event_필살", - [ - 22776, - 14329, - 32989, - 640146, - 14541 - ], - 1, - "881d4662.jpg?=20231229", - 65, - "che_231228_IJng", - 49, - [ - "hall:dex4", - "hall:experience", - "hall:killcrew", - "hall:killcrew_person", - "hall:killnum", - "hall:killrate", - "hall:killrate_person", - "hall:occupied", - "hall:ttrate", - "hall:warnum", - "hall:winrate" - ] - ], - [ - "【65기】Hide_D", - 70, - 13, - 80, - "che_event_신중", - [ - 35231, - 29955, - 31243, - 396644, - 30732 - ], - 1, - "4569d848.png?=20230612", - 65, - "che_231228_IJng", - 52, - [ - "hall:tirate", - "hall:ttrate" - ] - ], - [ - "【65기】외심장", - 67, - 13, - 83, - "che_event_필살", - [ - 34500, - 22546, - 27985, - 641693, - 33303 - ], - 1, - "36110cd.jpg?=20180826", - 65, - "che_231228_IJng", - 58, - [ - "hall:dex4", - "hall:dex5", - "hall:experience", - "hall:occupied", - "hall:tirate", - "hall:warnum" - ] - ], - [ - "【65기】와일드플라워", - 68, - 81, - 14, - "che_event_돌격", - [ - 46928, - 35039, - 664490, - 137327, - 25831 - ], - 1, - "857597b3.jpg?=20230831", - 65, - "che_231228_IJng", - 63, - [ - "chief:10", - "hall:dex3", - "hall:occupied", - "hall:tsrate", - "hall:ttrate" - ] - ], - [ - "【65기】경국지색소교", - 93, - 81, - 15, - "che_event_저격", - [ - 29848, - 47548, - 626776, - 95899, - 29025 - ], - 1, - "ad2669b5.jpg?=20230605", - 65, - "che_231228_IJng", - 64, - [ - "hall:dex3", - "hall:tlrate" - ] - ], - [ - "【65기】로비", - 13, - 61, - 86, - "che_event_의술", - [ - 0, - 0, - 0, - 0, - 0 - ], - 1, - "3e5926b7.png?=20231228", - 65, - "che_231228_IJng", - 65, - [ - "hall:dedication", - "hall:tirate" - ] - ], - [ - "【65기】슬라임", - 87, - 60, - 13, - "che_event_공성", - [ - 13803, - 16489, - 2432, - 33614, - 647550 - ], - 1, - "2d2da7c0.jpg?=20231130", - 65, - "che_231228_IJng", - 67, - [ - "chief:6", - "hall:dex5", - "hall:experience", - "hall:killcrew", - "hall:killrate", - "hall:occupied", - "hall:tlrate", - "hall:winrate" - ] - ], - [ - "【65기】요미", - 68, - 83, - 13, - "che_event_돌격", - [ - 24363, - 41330, - 594299, - 96298, - 20672 - ], - 1, - "f52ccfa3.jpg?=20231228", - 65, - "che_231228_IJng", - 68, - [ - "hall:dex3", - "hall:tsrate", - "hall:ttrate" - ] - ], - [ - "【65기】호나", - 71, - 80, - 13, - "che_event_격노", - [ - 500830, - 22641, - 23245, - 86649, - 9372 - ], - 0, - "default.jpg", - 65, - "che_231228_IJng", - 69, - [ - "hall:dex1" - ] - ], - [ - "【65기】전기 독구", - 72, - 77, - 13, - "che_event_필살", - [ - 381733, - 16288, - 17615, - 76191, - 24719 - ], - 1, - "3716ada7.gif?=20231207", - 65, - "che_231228_IJng", - 73, - [ - "hall:betgold", - "hall:betwin", - "hall:betwingold" - ] - ], - [ - "【65기】페르난도", - 69, - 13, - 80, - "che_event_필살", - [ - 40502, - 33686, - 21420, - 502261, - 19696 - ], - 0, - "default.jpg", - 65, - "che_231228_IJng", - 74, - [ - "hall:ttrate" - ] - ], - [ - "【65기】QWER", - 70, - 13, - 82, - "che_event_필살", - [ - 38440, - 18425, - 34190, - 688868, - 27414 - ], - 1, - "d0e54657.jpg?=20240103", - 65, - "che_231228_IJng", - 75, - [ - "hall:betrate", - "hall:dex4", - "hall:killcrew", - "hall:killcrew_person", - "hall:killnum", - "hall:killrate", - "hall:killrate_person", - "hall:warnum", - "hall:winrate" - ] - ], - [ - "【65기】장원영", - 68, - 14, - 80, - "che_event_필살", - [ - 20851, - 25596, - 20614, - 504616, - 24444 - ], - 1, - "e6a64f3b.jpg?=20240116", - 65, - "che_231228_IJng", - 77, - [ - "hall:dedication", - "hall:experience" - ] - ], - [ - "【65기】링", - 66, - 84, - 13, - "che_event_돌격", - [ - 36395, - 421320, - 18043, - 65091, - 15896 - ], - 1, - "de2d063e.jpg?=20231230", - 65, - "che_231228_IJng", - 78, - [ - "hall:betgold", - "hall:betrate", - "hall:betwingold", - "hall:dex2", - "hall:tsrate" - ] - ], - [ - "【65기】라콘타", - 67, - 82, - 13, - "che_event_척사", - [ - 33896, - 21922, - 461775, - 50143, - 24529 - ], - 1, - "9523c443.webp?=20231228", - 65, - "che_231228_IJng", - 79, - [ - "hall:betwin", - "hall:dex3", - "hall:tsrate" - ] - ], - [ - "【65기】저격수", - 68, - 80, - 13, - "che_event_무쌍", - [ - 19688, - 15004, - 456587, - 33565, - 21534 - ], - 0, - "default.jpg", - 65, - "che_231228_IJng", - 81, - [ - "hall:dex3", - "hall:killrate", - "hall:killrate_person" - ] - ], - [ - "【65기】라이언", - 96, - 76, - 17, - "che_event_무쌍", - [ - 1136583, - 23510, - 33355, - 134542, - 50571 - ], - 1, - "071c777a.gif?=20231228", - 65, - "che_231228_IJng", - 83, - [ - "hall:betgold", - "hall:betrate", - "hall:betwin", - "hall:betwingold", - "hall:dex1", - "hall:killcrew", - "hall:killcrew_person", - "hall:warnum" - ] - ], - [ - "【65기】사스케", - 86, - 67, - 13, - "che_event_필살", - [ - 920633, - 43565, - 42868, - 114373, - 26406 - ], - 1, - "4420cfbf.jpg?=20231207", - 65, - "che_231228_IJng", - 84, - [ - "hall:betgold", - "hall:betwin", - "hall:betwingold", - "hall:dex1", - "hall:experience", - "hall:killcrew", - "hall:killcrew_person", - "hall:killnum", - "hall:killrate", - "hall:killrate_person", - "hall:occupied", - "hall:tlrate", - "hall:warnum", - "hall:winrate" - ] - ], - [ - "【65기】독구홍련화무십일홍", - 69, - 81, - 13, - "che_event_기병", - [ - 3556, - 19972, - 267156, - 49856, - 3907 - ], - 0, - "default.jpg", - 65, - "che_231228_IJng", - 85, - [ - "hall:dex3" - ] - ], - [ - "【65기】지력충", - 60, - 21, - 83, - "che_event_집중", - [ - 31704, - 24487, - 16661, - 516915, - 25413 - ], - 0, - "default.jpg", - 65, - "che_231228_IJng", - 86, - [ - "hall:betrate" - ] - ], - [ - "【65기】Navy마초", - 68, - 81, - 13, - "che_event_무쌍", - [ - 34769, - 312438, - 34310, - 81846, - 12253 - ], - 1, - "37644ed3.png?=20230831", - 65, - "che_231228_IJng", - 88, - [ - "hall:dex2" - ] - ], - [ - "【65기】니쉬", - 77, - 13, - 72, - "che_event_집중", - [ - 31254, - 30212, - 9286, - 325774, - 29554 - ], - 1, - "396a27ce.png?=20240116", - 65, - "che_231228_IJng", - 90, - [ - "hall:dedication", - "hall:dex5", - "hall:occupied" - ] - ], - [ - "【65기】ㅊㄹㅊㄹ", - 71, - 82, - 13, - "che_event_필살", - [ - 68089, - 608512, - 28278, - 77366, - 25193 - ], - 1, - "63f1c106.png?=20230223", - 65, - "che_231228_IJng", - 91, - [ - "chief:8", - "hall:dex2", - "hall:killnum", - "hall:killrate", - "hall:killrate_person", - "hall:winrate" - ] - ], - [ - "【65기】초아인지", - 67, - 82, - 13, - "che_event_위압", - [ - 59220, - 393830, - 18784, - 56027, - 20693 - ], - 1, - "c314b02e.jpg?=20230830", - 65, - "che_231228_IJng", - 92, - [ - "hall:dex2", - "hall:tsrate" - ] - ], - [ - "【65기】평민킬러", - 67, - 85, - 13, - "che_event_필살", - [ - 925167, - 12277, - 37203, - 97385, - 25010 - ], - 1, - "b6291bc6.jpg?=20231130", - 65, - "che_231228_IJng", - 93, - [ - "chief:12", - "hall:betgold", - "hall:betwin", - "hall:betwingold", - "hall:dedication", - "hall:dex1", - "hall:experience", - "hall:killcrew", - "hall:killcrew_person", - "hall:killnum", - "hall:killrate", - "hall:killrate_person", - "hall:tsrate", - "hall:warnum", - "hall:winrate" - ] - ], - [ - "【65기】북오더", - 68, - 82, - 14, - "che_event_필살", - [ - 37187, - 451219, - 12729, - 60226, - 15244 - ], - 1, - "f39217aa.gif?=20220916", - 65, - "che_231228_IJng", - 94, - [ - "hall:dex2", - "hall:tsrate" - ] - ], - [ - "【65기】독피자", - 67, - 13, - 83, - "che_event_환술", - [ - 27730, - 1219, - 6173, - 304677, - 16849 - ], - 1, - "06143703.gif?=20231207", - 65, - "che_231228_IJng", - 95, - [ - "hall:firenum", - "hall:tirate" - ] - ], - [ - "【65기】스텔라의베이스어택", - 82, - 70, - 13, - "che_event_필살", - [ - 175209, - 17736, - 38349, - 48136, - 539756 - ], - 1, - "7eae550f.gif?=20231226", - 65, - "che_231228_IJng", - 96, - [ - "chief:11", - "hall:betgold", - "hall:betrate", - "hall:betwingold", - "hall:dex1", - "hall:experience", - "hall:killrate", - "hall:occupied", - "hall:tlrate" - ] - ], - [ - "【65기】크렌스", - 78, - 95, - 15, - "che_event_필살", - [ - 735853, - 29317, - 57624, - 99822, - 33468 - ], - 0, - "default.jpg", - 65, - "che_231228_IJng", - 97, - [ - "hall:betwin", - "hall:dex1" - ] - ], - [ - "【65기】국04", - 69, - 78, - 13, - "che_event_저격", - [ - 212607, - 5655, - 14023, - 32447, - 10505 - ], - 1, - "546ecd10.png?=20231007", - 65, - "che_231228_IJng", - 98, - [ - "hall:betrate" - ] - ], - [ - "【65기】지원", - 67, - 80, - 13, - "che_event_필살", - [ - 441529, - 17057, - 27860, - 51702, - 13730 - ], - 1, - "eb7f760e.webp?=20231019", - 65, - "che_231228_IJng", - 99, - [ - "hall:dex1" - ] - ], - [ - "【65기】간지밍이", - 67, - 14, - 79, - "che_event_집중", - [ - 30875, - 25446, - 29077, - 449870, - 34252 - ], - 1, - "19c0150f.png?=20230615", - 65, - "che_231228_IJng", - 100, - [ - "hall:betgold", - "hall:betwin", - "hall:betwingold", - "hall:dex5" - ] - ], - [ - "【65기】ㅇㅇ", - 69, - 13, - 82, - "che_event_필살", - [ - 35254, - 8305, - 7752, - 468579, - 12826 - ], - 1, - "c311bfd1.png?=20240124", - 65, - "che_231228_IJng", - 101, - [ - "hall:firenum", - "hall:killnum", - "hall:tirate" - ] - ], - [ - "【65기】늦파이", - 66, - 82, - 13, - "che_event_위압", - [ - 315061, - 13461, - 15335, - 40323, - 11647 - ], - 1, - "67601b4e.jpg?=20231101", - 65, - "che_231228_IJng", - 102, - [ - "hall:ttrate" - ] - ], - [ - "【65기】조승상", - 81, - 70, - 13, - "che_event_돌격", - [ - 72974, - 660164, - 35977, - 185781, - 52511 - ], - 1, - "eb0a14e1.png?=20240123", - 65, - "che_231228_IJng", - 104, - [ - "hall:dex2", - "hall:dex5", - "hall:firenum", - "hall:occupied", - "hall:tlrate", - "hall:ttrate", - "hall:winrate" - ] - ], - [ - "【65기】대교", - 78, - 13, - 73, - "che_event_필살", - [ - 34010, - 5919, - 22056, - 595625, - 22153 - ], - 1, - "9f0e6dcc.jpg?=20220808", - 65, - "che_231228_IJng", - 105, - [ - "chief:5", - "hall:dedication", - "hall:dex4", - "hall:experience", - "hall:killcrew_person", - "hall:warnum" - ] - ], - [ - "【65기】초코아몬드", - 70, - 13, - 79, - "che_event_집중", - [ - 29067, - 24158, - 15518, - 341735, - 32614 - ], - 1, - "6b371ec.jpg?=20190909", - 65, - "che_231228_IJng", - 107, - [ - "hall:dedication", - "hall:dex5" - ] - ], - [ - "【65기】くま", - 68, - 13, - 82, - "che_event_필살", - [ - 57902, - 16519, - 19863, - 584274, - 38492 - ], - 1, - "770f53.jpg?=20190718", - 65, - "che_231228_IJng", - 108, - [ - "chief:9", - "hall:dedication", - "hall:dex4", - "hall:experience" - ] - ], - [ - "【65기】료우기시키", - 68, - 14, - 78, - "che_event_신산", - [ - 7204, - 6773, - 10127, - 203737, - 5494 - ], - 1, - "72a190e.jpg?=20220109", - 65, - "che_231228_IJng", - 109, - [ - "hall:ttrate" - ] - ], - [ - "【65기】장윈영", - 78, - 69, - 14, - "che_event_위압", - [ - 14371, - 193520, - 1814, - 22628, - 6345 - ], - 1, - "b954ba42.jpg?=20231229", - 65, - "che_231228_IJng", - 110, - [ - "hall:dex2" - ] - ], - [ - "【65기】소게킹", - 21, - 69, - 70, - "che_event_척사", - [ - 54140, - 120292, - 37219, - 56584, - 12133 - ], - 1, - "cbc84f52.gif?=20231228", - 65, - "che_231228_IJng", - 112, - [ - "hall:dex2", - "hall:firenum" - ] - ], - [ - "【65기】랜덤다이스", - 78, - 69, - 13, - "che_event_궁병", - [ - 55020, - 390744, - 20941, - 59447, - 17692 - ], - 1, - "ee672e21.png?=20231228", - 65, - "che_231228_IJng", - 116, - [ - "hall:dex2" - ] - ], - [ - "【65기】카라카", - 83, - 64, - 13, - "che_event_척사", - [ - 36945, - 74089, - 334811, - 127379, - 19211 - ], - 0, - "default.jpg", - 65, - "che_231228_IJng", - 119, - [ - "hall:dex3", - "hall:tlrate" - ] - ], - [ - "【65기】카라", - 13, - 73, - 73, - "che_event_신산", - [ - 0, - 0, - 0, - 0, - 0 - ], - 1, - "9495d4a2.jpg?=20231130", - 65, - "che_231228_IJng", - 192, - [ - "hall:firenum" - ] - ], - [ - "【65기】카부쿠와", - 69, - 81, - 14, - "che_event_척사", - [ - 513156, - 40476, - 18981, - 82756, - 21252 - ], - 1, - "005f948d.jpg?=20231229", - 65, - "che_231228_IJng", - 193, - [ - "hall:dex1", - "hall:killrate_person" - ] - ], - [ - "【65기】kimset23", - 66, - 77, - 13, - "che_event_무쌍", - [ - 24411, - 42160, - 153165, - 43379, - 9196 - ], - 0, - "default.jpg", - 65, - "che_231228_IJng", - 196, - [ - "hall:tsrate" - ] - ], - [ - "【65기】앵글러쩡", - 85, - 64, - 13, - "che_event_위압", - [ - 20209, - 34707, - 394910, - 74618, - 28355 - ], - 1, - "8bc2b9dd.png?=20240122", - 65, - "che_231228_IJng", - 205, - [ - "hall:betgold", - "hall:betwingold", - "hall:dex3", - "hall:tlrate" - ] - ], - [ - "【65기】키리코", - 15, - 85, - 86, - "che_event_신산", - [ - 0, - 0, - 0, - 0, - 0 - ], - 1, - "bd82ed7d.jpg?=20231201", - 65, - "che_231228_IJng", - 220, - [ - "hall:firenum" - ] - ], - [ - "【65기】Samo", - 95, - 78, - 15, - "che_event_저격", - [ - 727966, - 19678, - 31464, - 136579, - 29788 - ], - 1, - "0b53e4d0.png?=20230502", - 65, - "che_231228_IJng", - 221, - [ - "hall:tlrate" - ] - ], - [ - "【65기】서림동", - 80, - 93, - 15, - "che_event_필살", - [ - 870420, - 20320, - 49584, - 169120, - 24634 - ], - 0, - "default.jpg", - 65, - "che_231228_IJng", - 222, - [ - "hall:dex1", - "hall:tsrate" - ] - ], - [ - "【65기】미스티", - 69, - 14, - 78, - "che_event_반계", - [ - 67005, - 30386, - 56128, - 445217, - 35448 - ], - 1, - "1aadcba.png?=20180908", - 65, - "che_231228_IJng", - 226, - [ - "hall:dex5" - ] - ], - [ - "【65기】밯빠받다박탸희차맣", - 69, - 14, - 78, - "che_event_필살", - [ - 37340, - 32559, - 13526, - 437081, - 36179 - ], - 1, - "69dbd505.jpg?=20231228", - 65, - "che_231228_IJng", - 257, - [ - "hall:betrate", - "hall:dex5" - ] - ], - [ - "【65기】황혼중", - 76, - 13, - 73, - "che_event_집중", - [ - 38265, - 10349, - 13092, - 267924, - 15961 - ], - 1, - "e5161df9.jpg?=20231110", - 65, - "che_231228_IJng", - 268, - [ - "hall:ttrate" - ] - ], - [ - "【65기】협동전하고싶다", - 81, - 15, - 95, - "che_event_집중", - [ - 80256, - 9706, - 44942, - 985320, - 41654 - ], - 1, - "45bf072c.jpg?=20231030", - 65, - "che_231228_IJng", - 271, - [ - "hall:dex4", - "hall:ttrate", - "hall:warnum" - ] - ], - [ - "【65기】농사지으러옴", - 13, - 62, - 85, - "che_event_필살", - [ - 0, - 0, - 0, - 0, - 0 - ], - 0, - "default.jpg", - 65, - "che_231228_IJng", - 301, - [ - "hall:dedication", - "hall:tirate" - ] - ], - [ - "【65기】late", - 76, - 86, - 16, - "che_event_의술", - [ - 49090, - 19466, - 36694, - 51319, - 93842 - ], - 0, - "default.jpg", - 65, - "che_231228_IJng", - 607, - [ - "hall:dex5" - ] - ], - [ - "【65기】황진", - 77, - 86, - 16, - "che_event_필살", - [ - 19696, - 222035, - 14267, - 41684, - 11383 - ], - 0, - "default.jpg", - 65, - "che_231228_IJng", - 612, - [ - "hall:dex2" - ] - ], [ "【66기】카이스트", 77, @@ -100861,1850 +82750,6 @@ "hall:ttrate" ] ], - [ - "【70기】바나낫", - 79, - 95, - 15, - "che_event_필살", - [ - 26566, - 19367, - 1259770, - 48545, - 22566 - ], - 1, - "5fd921c4.gif?=20240607", - 70, - "che_240523_Nnqh", - 6, - [ - "hall:betgold", - "hall:dex3", - "hall:occupied", - "hall:winrate" - ] - ], - [ - "【70기】류화영", - 101, - 15, - 70, - "che_event_공성", - [ - 5774, - 0, - 12138, - 31444, - 814139 - ], - 1, - "45924e80.jpg?=20240612", - 70, - "che_240523_Nnqh", - 9, - [ - "hall:betgold", - "hall:betwin", - "hall:betwingold", - "hall:dex5", - "hall:experience", - "hall:killrate", - "hall:occupied", - "hall:tlrate" - ] - ], - [ - "【70기】간지밍이", - 77, - 98, - 15, - "che_event_돌격", - [ - 60682, - 74742, - 1217327, - 240520, - 56596 - ], - 1, - "05a5f403.png?=20240523", - 70, - "che_240523_Nnqh", - 10, - [ - "chief:12", - "hall:betgold", - "hall:betwin", - "hall:betwingold", - "hall:dedication", - "hall:dex3", - "hall:dex5", - "hall:experience", - "hall:killnum", - "hall:killrate", - "hall:killrate_person", - "hall:tsrate", - "hall:warnum", - "hall:winrate" - ] - ], - [ - "【70기】민트토끼", - 15, - 100, - 72, - "che_event_의술", - [ - 0, - 0, - 0, - 0, - 0 - ], - 1, - "48933cb5.jpg?=20240517", - 70, - "che_240523_Nnqh", - 12, - [ - "hall:dedication" - ] - ], - [ - "【70기】(AI)이해고", - 78, - 93, - 15, - "che_event_필살", - [ - 45987, - 57878, - 562812, - 58595, - 32701 - ], - 1, - "1481e158.jpg?=20240523", - 70, - "che_240523_Nnqh", - 13, - [ - "hall:betgold", - "hall:betwingold", - "hall:dex3", - "hall:firenum" - ] - ], - [ - "【70기】마요이", - 77, - 15, - 97, - "che_event_집중", - [ - 19836, - 29249, - 10381, - 943935, - 18186 - ], - 1, - "2b49c945.png?=20230921", - 70, - "che_240523_Nnqh", - 14, - [ - "hall:dex4", - "hall:winrate" - ] - ], - [ - "【70기】환선", - 79, - 95, - 15, - "che_event_필살", - [ - 395668, - 50435, - 378901, - 150280, - 27583 - ], - 0, - "default.jpg", - 70, - "che_240523_Nnqh", - 15, - [ - "chief:8", - "hall:betrate", - "hall:dedication" - ] - ], - [ - "【70기】다내꺼", - 15, - 99, - 71, - "che_event_신산", - [ - 0, - 0, - 0, - 0, - 0 - ], - 0, - "default.jpg", - 70, - "che_240523_Nnqh", - 18, - [ - "hall:betrate", - "hall:firenum", - "hall:ttrate" - ] - ], - [ - "【70기】잠입유저", - 79, - 96, - 15, - "che_event_필살", - [ - 1064236, - 28125, - 65550, - 85557, - 23859 - ], - 0, - "default.jpg", - 70, - "che_240523_Nnqh", - 22, - [ - "hall:betgold", - "hall:betwin", - "hall:betwingold", - "hall:dex1", - "hall:tsrate", - "hall:ttrate", - "hall:warnum" - ] - ], - [ - "【70기】babychuck", - 79, - 93, - 15, - "che_event_필살", - [ - 38288, - 48402, - 400754, - 38939, - 25817 - ], - 1, - "7cb75480.png?=20221202", - 70, - "che_240523_Nnqh", - 30, - [ - "hall:dex3", - "hall:tsrate" - ] - ], - [ - "【70기】빅토리", - 77, - 96, - 15, - "che_event_격노", - [ - 93692, - 570177, - 25140, - 72938, - 23716 - ], - 1, - "11637b61.jpg?=20240522", - 70, - "che_240523_Nnqh", - 33, - [ - "hall:firenum" - ] - ], - [ - "【70기】East Girl", - 100, - 44, - 43, - "che_event_견고", - [ - 228779, - 389648, - 290638, - 277386, - 145995 - ], - 1, - "c96d81bd.jpg?=20240523", - 70, - "che_240523_Nnqh", - 35, - [ - "hall:betrate", - "hall:betwingold", - "hall:dex5", - "hall:tlrate", - "hall:ttrate", - "hall:warnum" - ] - ], - [ - "【70기】잠입", - 15, - 73, - 98, - "che_event_의술", - [ - 3314, - 0, - 0, - 0, - 1350 - ], - 0, - "default.jpg", - 70, - "che_240523_Nnqh", - 38, - [ - "hall:tirate" - ] - ], - [ - "【70기】청서", - 93, - 79, - 15, - "che_event_필살", - [ - 702905, - 21287, - 32603, - 172856, - 14938 - ], - 1, - "29336bd7.jpg?=20240613", - 70, - "che_240523_Nnqh", - 40, - [ - "hall:dex1" - ] - ], - [ - "【70기】참새", - 98, - 77, - 15, - "che_event_필살", - [ - 17243, - 1371054, - 12860, - 20763, - 21711 - ], - 1, - "be0eebd0.png?=20240525", - 70, - "che_240523_Nnqh", - 41, - [ - "hall:betgold", - "hall:betrate", - "hall:betwingold", - "hall:dex2", - "hall:killcrew", - "hall:killcrew_person", - "hall:killnum", - "hall:killrate_person", - "hall:tlrate", - "hall:warnum", - "hall:winrate" - ] - ], - [ - "【70기】장원영", - 16, - 96, - 72, - "che_event_신산", - [ - 0, - 0, - 0, - 0, - 0 - ], - 1, - "202e852d.jpg?=20240523", - 70, - "che_240523_Nnqh", - 48, - [ - "hall:firenum" - ] - ], - [ - "【70기】로비아님", - 97, - 15, - 78, - "che_event_필살", - [ - 7590, - 8468, - 9294, - 1174259, - 13588 - ], - 1, - "d55953bd.png?=20240522", - 70, - "che_240523_Nnqh", - 51, - [ - "hall:dex4", - "hall:killcrew_person", - "hall:tlrate" - ] - ], - [ - "【70기】메로나아님아님아님", - 79, - 96, - 15, - "che_event_필살", - [ - 1225824, - 40187, - 36592, - 78971, - 32530 - ], - 1, - "76989280.jpg?=20240523", - 70, - "che_240523_Nnqh", - 52, - [ - "hall:betrate", - "hall:dex1", - "hall:killcrew", - "hall:killcrew_person", - "hall:killnum", - "hall:killrate", - "hall:killrate_person", - "hall:warnum" - ] - ], - [ - "【70기】이브", - 78, - 15, - 94, - "che_event_신중", - [ - 35005, - 9421, - 29843, - 552270, - 20069 - ], - 1, - "53cfa859.png?=20240523", - 70, - "che_240523_Nnqh", - 53, - [ - "hall:firenum" - ] - ], - [ - "【70기】외심장", - 79, - 15, - 98, - "che_event_환술", - [ - 57321, - 78510, - 48696, - 1573669, - 59958 - ], - 1, - "36110cd.jpg?=20180826", - 70, - "che_240523_Nnqh", - 54, - [ - "hall:dex4", - "hall:dex5", - "hall:experience", - "hall:killcrew", - "hall:killcrew_person", - "hall:killnum", - "hall:killrate", - "hall:killrate_person", - "hall:occupied", - "hall:tirate", - "hall:warnum", - "hall:winrate" - ] - ], - [ - "【70기】독구", - 77, - 15, - 99, - "che_event_필살", - [ - 57464, - 49604, - 26496, - 1042771, - 36834 - ], - 1, - "edbb01aa.png?=20240523", - 70, - "che_240523_Nnqh", - 60, - [ - "hall:betwin", - "hall:dex4", - "hall:experience", - "hall:killcrew_person", - "hall:killnum", - "hall:killrate", - "hall:killrate_person", - "hall:winrate" - ] - ], - [ - "【70기】Hide_D", - 77, - 15, - 95, - "che_event_의술", - [ - 87801, - 50694, - 28978, - 627943, - 36534 - ], - 1, - "4569d848.png?=20230612", - 70, - "che_240523_Nnqh", - 62, - [ - "chief:9", - "hall:dedication", - "hall:experience", - "hall:tirate" - ] - ], - [ - "【70기】ㅊㄹㅊㄹ", - 81, - 15, - 91, - "che_event_집중", - [ - 20976, - 53951, - 21070, - 417467, - 13489 - ], - 1, - "63f1c106.png?=20230223", - 70, - "che_240523_Nnqh", - 63, - [ - "hall:ttrate" - ] - ], - [ - "【70기】임사영", - 77, - 96, - 15, - "che_event_필살", - [ - 708975, - 64772, - 124285, - 48896, - 42769 - ], - 1, - "0b5a2642.jpg?=20240305", - 70, - "che_240523_Nnqh", - 64, - [ - "hall:dex1" - ] - ], - [ - "【70기】SARS", - 80, - 15, - 94, - "che_event_신산", - [ - 42139, - 32350, - 29671, - 776282, - 47074 - ], - 1, - "b84944.jpg?=20180829", - 70, - "che_240523_Nnqh", - 65, - [ - "hall:betrate", - "hall:dex4" - ] - ], - [ - "【70기】くま", - 78, - 16, - 92, - "che_event_신중", - [ - 55168, - 35927, - 15410, - 706651, - 24942 - ], - 1, - "770f53.jpg?=20190718", - 70, - "che_240523_Nnqh", - 70, - [ - "chief:11", - "hall:dedication" - ] - ], - [ - "【70기】미용실의 해피", - 67, - 81, - 13, - "che_event_격노", - [ - 505636, - 10684, - 13108, - 11700, - 8172 - ], - 1, - "88fcd811.jpg?=20240523", - 70, - "che_240523_Nnqh", - 72, - [ - "hall:betrate", - "hall:dex1" - ] - ], - [ - "【70기】템도박하자", - 84, - 90, - 15, - "che_event_필살", - [ - 1305717, - 39866, - 48062, - 63190, - 46247 - ], - 0, - "default.jpg", - 70, - "che_240523_Nnqh", - 76, - [ - "hall:dex1" - ] - ], - [ - "【70기】와일드플라워", - 76, - 15, - 97, - "che_event_집중", - [ - 43733, - 38331, - 44056, - 690226, - 41278 - ], - 0, - "default.jpg", - 70, - "che_240523_Nnqh", - 77, - [ - "chief:5", - "hall:dedication", - "hall:experience" - ] - ], - [ - "【70기】POCARI.", - 99, - 71, - 15, - "che_event_공성", - [ - 50996, - 39239, - 23974, - 36416, - 1389402 - ], - 1, - "de9117c2.png?=20240614", - 70, - "che_240523_Nnqh", - 79, - [ - "hall:dex5", - "hall:experience", - "hall:killcrew", - "hall:killrate", - "hall:occupied", - "hall:tlrate" - ] - ], - [ - "【70기】화남", - 15, - 78, - 93, - "che_event_신산", - [ - 0, - 216, - 0, - 1218, - 0 - ], - 0, - "default.jpg", - 70, - "che_240523_Nnqh", - 81, - [ - "hall:betgold" - ] - ], - [ - "【70기】저 독구는 가짜다", - 15, - 73, - 98, - "che_event_의술", - [ - 0, - 0, - 0, - 0, - 0 - ], - 1, - "5283daf7.png?=20240511", - 70, - "che_240523_Nnqh", - 84, - [ - "hall:betgold", - "hall:betwin", - "hall:tirate" - ] - ], - [ - "【70기】쟁안함", - 15, - 98, - 73, - "che_event_신산", - [ - 0, - 0, - 0, - 0, - 0 - ], - 1, - "1988703e.png?=20240604", - 70, - "che_240523_Nnqh", - 86, - [ - "hall:betwingold", - "hall:firenum" - ] - ], - [ - "【70기】미친?과학", - 96, - 79, - 15, - "che_event_필살", - [ - 48282, - 1130051, - 3496, - 92104, - 21978 - ], - 1, - "b477d173.jpg?=20240523", - 70, - "che_240523_Nnqh", - 87, - [ - "hall:dex2", - "hall:killcrew", - "hall:killcrew_person", - "hall:killnum", - "hall:killrate", - "hall:killrate_person", - "hall:tlrate", - "hall:winrate" - ] - ], - [ - "【70기】서희", - 81, - 15, - 92, - "che_event_필살", - [ - 27501, - 62968, - 34751, - 610925, - 19960 - ], - 1, - "8debf7e5.png?=20230308", - 70, - "che_240523_Nnqh", - 88, - [ - "chief:7" - ] - ], - [ - "【70기】카이스트", - 81, - 15, - 92, - "che_event_필살", - [ - 27701, - 12469, - 11587, - 579717, - 35092 - ], - 1, - "e7e27cd6.jpg?=20221125", - 70, - "che_240523_Nnqh", - 89, - [ - "hall:betrate", - "hall:occupied" - ] - ], - [ - "【70기】Navy마초", - 80, - 91, - 15, - "che_event_필살", - [ - 83676, - 583432, - 11574, - 29508, - 20331 - ], - 1, - "37644ed3.png?=20230831", - 70, - "che_240523_Nnqh", - 90, - [ - "hall:dex2", - "hall:ttrate" - ] - ], - [ - "【70기】북오더", - 96, - 44, - 44, - "che_event_공성", - [ - 34198, - 26494, - 2685, - 47783, - 479161 - ], - 1, - "0e7dcff6.gif?=20240417", - 70, - "che_240523_Nnqh", - 91, - [ - "hall:dex5", - "hall:occupied" - ] - ], - [ - "【70기】불패", - 77, - 96, - 15, - "che_event_필살", - [ - 1010466, - 32514, - 19168, - 128538, - 29713 - ], - 1, - "b2fd1cac.jpg?=20240401", - 70, - "che_240523_Nnqh", - 92, - [ - "chief:10", - "hall:betrate", - "hall:betwingold", - "hall:dedication", - "hall:dex1", - "hall:experience", - "hall:killrate", - "hall:killrate_person", - "hall:occupied", - "hall:tsrate" - ] - ], - [ - "【70기】닛몰독구", - 98, - 77, - 15, - "che_event_필살", - [ - 855338, - 10886, - 43423, - 58090, - 28353 - ], - 1, - "be3a0944.png?=20240523", - 70, - "che_240523_Nnqh", - 93, - [ - "hall:betgold", - "hall:betwin", - "hall:betwingold", - "hall:dex1", - "hall:tlrate" - ] - ], - [ - "【70기】기술기술기술", - 77, - 15, - 94, - "che_event_신산", - [ - 130181, - 17678, - 19737, - 527134, - 33659 - ], - 0, - "default.jpg", - 70, - "che_240523_Nnqh", - 94, - [ - "hall:firenum" - ] - ], - [ - "【70기】독피자", - 78, - 95, - 15, - "che_event_신산", - [ - 678399, - 96920, - 81886, - 95664, - 58329 - ], - 0, - "default.jpg", - 70, - "che_240523_Nnqh", - 95, - [ - "hall:dex5", - "hall:firenum", - "hall:tsrate", - "hall:ttrate" - ] - ], - [ - "【70기】니쉬", - 95, - 15, - 78, - "che_event_환술", - [ - 17919, - 17630, - 22082, - 745660, - 11421 - ], - 1, - "215c3ff3.png?=20240402", - 70, - "che_240523_Nnqh", - 96, - [ - "hall:dex4" - ] - ], - [ - "【70기】무극", - 75, - 97, - 15, - "che_event_격노", - [ - 676121, - 53345, - 59990, - 72102, - 42524 - ], - 0, - "default.jpg", - 70, - "che_240523_Nnqh", - 97, - [ - "hall:betwin", - "hall:occupied" - ] - ], - [ - "【70기】지원", - 77, - 97, - 15, - "che_event_필살", - [ - 39480, - 66970, - 538899, - 30001, - 20077 - ], - 1, - "3abfc677.webp?=20240129", - 70, - "che_240523_Nnqh", - 98, - [ - "hall:dex3", - "hall:tsrate" - ] - ], - [ - "【70기】카류", - 16, - 89, - 79, - "che_event_신산", - [ - 0, - 0, - 0, - 0, - 0 - ], - 0, - "default.jpg", - 70, - "che_240523_Nnqh", - 99, - [ - "hall:firenum" - ] - ], - [ - "【70기】냐옹", - 79, - 15, - 94, - "che_event_환술", - [ - 82571, - 58481, - 64675, - 1167018, - 62531 - ], - 1, - "9a6bf29a.jpg?=20231130", - 70, - "che_240523_Nnqh", - 100, - [ - "hall:dex4", - "hall:dex5", - "hall:killrate", - "hall:killrate_person" - ] - ], - [ - "【70기】직구금지", - 79, - 15, - 93, - "che_event_집중", - [ - 53304, - 84912, - 49928, - 897270, - 34413 - ], - 1, - "80ed029e.jpg?=20240523", - 70, - "che_240523_Nnqh", - 101, - [ - "hall:dex4" - ] - ], - [ - "【70기】잠밉", - 76, - 15, - 97, - "che_event_집중", - [ - 52876, - 21344, - 34970, - 662745, - 31905 - ], - 0, - "default.jpg", - 70, - "che_240523_Nnqh", - 102, - [ - "hall:ttrate" - ] - ], - [ - "【70기】Something New", - 79, - 90, - 15, - "che_event_무쌍", - [ - 15384, - 100987, - 481244, - 125154, - 21757 - ], - 0, - "default.jpg", - 70, - "che_240523_Nnqh", - 103, - [ - "hall:dex3" - ] - ], - [ - "【70기】대교", - 97, - 75, - 15, - "che_event_필살", - [ - 1373172, - 49583, - 54151, - 68517, - 61943 - ], - 1, - "9f0e6dcc.jpg?=20220808", - 70, - "che_240523_Nnqh", - 104, - [ - "chief:6", - "hall:dex1", - "hall:dex5", - "hall:experience", - "hall:killcrew", - "hall:occupied", - "hall:tlrate", - "hall:warnum" - ] - ], - [ - "【70기】마이멜로디", - 94, - 15, - 79, - "che_event_징병", - [ - 66971, - 108938, - 18545, - 1281952, - 35784 - ], - 1, - "17dd0154.jpg?=20240523", - 70, - "che_240523_Nnqh", - 106, - [ - "hall:dex4", - "hall:killcrew", - "hall:killcrew_person", - "hall:killnum", - "hall:warnum" - ] - ], - [ - "【70기】사스케", - 79, - 98, - 15, - "che_event_징병", - [ - 57625, - 1524321, - 64203, - 104845, - 30949 - ], - 1, - "b6aec2ca.jpg?=20240503", - 70, - "che_240523_Nnqh", - 107, - [ - "hall:betgold", - "hall:betwin", - "hall:betwingold", - "hall:dex2", - "hall:killcrew", - "hall:killcrew_person", - "hall:killnum", - "hall:tsrate", - "hall:warnum" - ] - ], - [ - "【70기】무지장으로 구경", - 15, - 95, - 75, - "che_event_신산", - [ - 0, - 0, - 0, - 0, - 0 - ], - 0, - "default.jpg", - 70, - "che_240523_Nnqh", - 108, - [ - "hall:firenum" - ] - ], - [ - "【70기】덕구", - 81, - 93, - 15, - "che_event_필살", - [ - 110436, - 1032154, - 9437, - 66269, - 34416 - ], - 1, - "7031e789.jpg?=20240201", - 70, - "che_240523_Nnqh", - 109, - [ - "hall:dex2", - "hall:killnum", - "hall:winrate" - ] - ], - [ - "【70기】Air", - 80, - 95, - 15, - "che_event_필살", - [ - 9537, - 20742, - 1344570, - 12921, - 7880 - ], - 0, - "default.jpg", - 70, - "che_240523_Nnqh", - 111, - [ - "hall:dex3", - "hall:killrate_person", - "hall:tsrate" - ] - ], - [ - "【70기】이드", - 79, - 97, - 15, - "che_event_징병", - [ - 46008, - 973435, - 15613, - 82998, - 18741 - ], - 1, - "fc3385d6.gif?=20240301", - 70, - "che_240523_Nnqh", - 112, - [ - "hall:dex2" - ] - ], - [ - "【70기】포기하면편해", - 77, - 15, - 97, - "che_event_의술", - [ - 20915, - 48770, - 19007, - 682940, - 18072 - ], - 0, - "default.jpg", - 70, - "che_240523_Nnqh", - 116, - [ - "hall:betwin", - "hall:tirate" - ] - ], - [ - "【70기】Boolean", - 95, - 77, - 15, - "che_event_반계", - [ - 23188, - 100205, - 856332, - 93215, - 47768 - ], - 0, - "default.jpg", - 70, - "che_240523_Nnqh", - 117, - [ - "hall:dex3" - ] - ], - [ - "【70기】하늘의제왕 참새", - 92, - 15, - 75, - "che_event_귀병", - [ - 19964, - 42549, - 3886, - 290089, - 3250 - ], - 0, - "default.jpg", - 70, - "che_240523_Nnqh", - 118, - [ - "hall:tlrate" - ] - ], - [ - "【70기】아오쿠모 린", - 93, - 80, - 16, - "che_event_필살", - [ - 8476, - 9594, - 1460482, - 7989, - 7567 - ], - 1, - "d2b58e76.gif?=20240523", - 70, - "che_240523_Nnqh", - 119, - [ - "hall:dex3", - "hall:killcrew", - "hall:killcrew_person", - "hall:killnum", - "hall:warnum", - "hall:winrate" - ] - ], - [ - "【70기】조승상", - 94, - 79, - 15, - "che_event_돌격", - [ - 88944, - 727771, - 69098, - 116357, - 72855 - ], - 1, - "6f27503f.png?=20240322", - 70, - "che_240523_Nnqh", - 120, - [ - "hall:dex2", - "hall:dex5", - "hall:tlrate" - ] - ], - [ - "【70기】경국지색소교", - 78, - 92, - 15, - "che_event_징병", - [ - 25814, - 16377, - 352362, - 65841, - 15227 - ], - 1, - "ad2669b5.jpg?=20230605", - 70, - "che_240523_Nnqh", - 123, - [ - "hall:tsrate" - ] - ], - [ - "【70기】독화살", - 80, - 94, - 15, - "che_event_필살", - [ - 44744, - 779048, - 11926, - 111570, - 20960 - ], - 1, - "ebc6b5b6.png?=20240523", - 70, - "che_240523_Nnqh", - 130, - [ - "hall:dex2" - ] - ], - [ - "【70기】시계탑에흐른피", - 13, - 60, - 87, - "che_event_의술", - [ - 0, - 0, - 0, - 0, - 0 - ], - 0, - "default.jpg", - 70, - "che_240523_Nnqh", - 136, - [ - "hall:dedication", - "hall:experience", - "hall:tirate" - ] - ], - [ - "【70기】진솔", - 76, - 15, - 95, - "che_event_필살", - [ - 28422, - 33661, - 30701, - 344295, - 12903 - ], - 1, - "eac1560c.png?=20240114", - 70, - "che_240523_Nnqh", - 147, - [ - "hall:tirate", - "hall:ttrate" - ] - ], - [ - "【70기】세르네오", - 15, - 73, - 96, - "che_event_의술", - [ - 0, - 0, - 0, - 0, - 0 - ], - 0, - "default.jpg", - 70, - "che_240523_Nnqh", - 148, - [ - "hall:betrate", - "hall:dedication", - "hall:tirate" - ] - ], - [ - "【70기】조창", - 77, - 94, - 15, - "che_event_무쌍", - [ - 702400, - 28271, - 19554, - 106113, - 32566 - ], - 0, - "default.jpg", - 70, - "che_240523_Nnqh", - 150, - [ - "hall:dex1", - "hall:ttrate" - ] - ], - [ - "【70기】최진리", - 77, - 97, - 15, - "che_event_필살", - [ - 45432, - 1236847, - 5823, - 57434, - 32088 - ], - 1, - "2d3506dd.webp?=20240414", - 70, - "che_240523_Nnqh", - 270, - [ - "hall:dex2", - "hall:killcrew", - "hall:killcrew_person", - "hall:killrate", - "hall:killrate_person", - "hall:occupied", - "hall:winrate" - ] - ], - [ - "【70기】에일로이", - 79, - 92, - 15, - "che_event_격노", - [ - 86325, - 28305, - 432668, - 58672, - 19171 - ], - 0, - "default.jpg", - 70, - "che_240523_Nnqh", - 290, - [ - "hall:betwin", - "hall:dex3" - ] - ], - [ - "【70기】선배맘에탕탕", - 80, - 15, - 93, - "che_event_필살", - [ - 64327, - 58901, - 8780, - 743456, - 18373 - ], - 0, - "default.jpg", - 70, - "che_240523_Nnqh", - 292, - [ - "hall:dex4" - ] - ], - [ - "【70기】Samo", - 16, - 72, - 96, - "che_event_저격", - [ - 5400, - 2483, - 270, - 13103, - 2430 - ], - 1, - "0b53e4d0.png?=20230502", - 70, - "che_240523_Nnqh", - 295, - [ - "hall:tirate" - ] - ], - [ - "【70기】애아빠아님", - 76, - 15, - 93, - "che_event_격노", - [ - 35420, - 12911, - 8762, - 197090, - 12350 - ], - 1, - "7b54c93b.jpg?=20230126", - 70, - "che_240523_Nnqh", - 301, - [ - "hall:tirate" - ] - ], - [ - "【70기】사하드", - 77, - 95, - 15, - "che_event_필살", - [ - 26609, - 614571, - 28533, - 63214, - 38237 - ], - 1, - "31f10b32.jpg?=20220717", - 70, - "che_240523_Nnqh", - 305, - [ - "hall:dex2", - "hall:tsrate" - ] - ], - [ - "【70기】악질대장카류", - 88, - 75, - 18, - "che_event_무쌍", - [ - 8022, - 28816, - 85053, - 10325, - 13373 - ], - 0, - "default.jpg", - 70, - "che_240523_Nnqh", - 479, - [ - "hall:ttrate" - ] - ], - [ - "【70기】돌아온너구리", - 16, - 71, - 93, - "che_event_의술", - [ - 0, - 0, - 0, - 0, - 0 - ], - 0, - "default.jpg", - 70, - "che_240523_Nnqh", - 663, - [ - "hall:dedication" - ] - ], [ "【71기】대마법사호바스", 76, @@ -108861,1533 +88906,6 @@ "hall:dex1" ] ], - [ - "【75기】울면 한대", - 75, - 15, - 90, - "che_event_필살", - [ - 1819, - 8415, - 25497, - 299596, - 27548 - ], - 1, - "4c295080.jpg?=20241006", - 75, - "che_240919_OUjB", - 5, - [ - "chief:7", - "hall:dedication", - "hall:experience" - ] - ], - [ - "【75기】미치르 메르헨", - 72, - 15, - 94, - "che_event_필살", - [ - 1400, - 4269, - 1065, - 57796, - 0 - ], - 1, - "2364dd10.jpg?=20240919", - 75, - "che_240919_OUjB", - 8, - [ - "hall:experience", - "hall:killrate_person", - "hall:tirate", - "hall:winrate" - ] - ], - [ - "【75기】카라", - 15, - 91, - 76, - "che_event_무쌍", - [ - 0, - 0, - 0, - 0, - 0 - ], - 1, - "367b2957.jpg?=20240917", - 75, - "che_240919_OUjB", - 16, - [ - "hall:tsrate" - ] - ], - [ - "【75기】삼호", - 87, - 81, - 15, - "che_event_필살", - [ - 248003, - 261136, - 47782, - 46434, - 35621 - ], - 0, - "default.jpg", - 75, - "che_240919_OUjB", - 25, - [ - "hall:dex2" - ] - ], - [ - "【75기】유시 야스켈라이넨", - 89, - 78, - 15, - "che_event_필살", - [ - 68685, - 461452, - 17560, - 45941, - 32405 - ], - 1, - "9e740a1f.jpg?=20240930", - 75, - "che_240919_OUjB", - 32, - [ - "chief:10", - "hall:betrate", - "hall:betwingold", - "hall:dedication", - "hall:dex2", - "hall:experience", - "hall:killrate", - "hall:ttrate" - ] - ], - [ - "【75기】내로남불", - 80, - 87, - 15, - "che_event_위압", - [ - 47354, - 286360, - 88073, - 29253, - 821 - ], - 0, - "default.jpg", - 75, - "che_240919_OUjB", - 34, - [ - "hall:betwin", - "hall:dex2" - ] - ], - [ - "【75기】Navy마초", - 91, - 74, - 15, - "che_event_필살", - [ - 105545, - 50689, - 571416, - 42379, - 14554 - ], - 1, - "37644ed3.png?=20230831", - 75, - "che_240919_OUjB", - 35, - [ - "hall:dex3", - "hall:killnum", - "hall:killrate", - "hall:killrate_person", - "hall:tlrate", - "hall:winrate" - ] - ], - [ - "【75기】스웩", - 15, - 72, - 93, - "che_event_의술", - [ - 0, - 0, - 0, - 0, - 0 - ], - 0, - "default.jpg", - 75, - "che_240919_OUjB", - 36, - [ - "hall:tirate" - ] - ], - [ - "【75기】Samo", - 90, - 76, - 15, - "che_event_척사", - [ - 128003, - 83308, - 351211, - 142342, - 18003 - ], - 0, - "default.jpg", - 75, - "che_240919_OUjB", - 38, - [ - "hall:dex3", - "hall:tlrate" - ] - ], - [ - "【75기】외심장", - 76, - 15, - 90, - "che_event_반계", - [ - 45116, - 75179, - 14018, - 493500, - 21357 - ], - 1, - "36110cd.jpg?=20180826", - 75, - "che_240919_OUjB", - 39, - [ - "hall:dex4", - "hall:occupied", - "hall:tirate" - ] - ], - [ - "【75기】신포", - 66, - 87, - 25, - "che_event_필살", - [ - 11294, - 180341, - 9944, - 37729, - 3998 - ], - 0, - "default.jpg", - 75, - "che_240919_OUjB", - 40, - [ - "hall:dex2", - "hall:tsrate" - ] - ], - [ - "【75기】임사영", - 79, - 88, - 15, - "che_event_무쌍", - [ - 100779, - 25554, - 661207, - 50956, - 28394 - ], - 1, - "0b5a2642.jpg?=20240305", - 75, - "che_240919_OUjB", - 42, - [ - "hall:dex3", - "hall:killcrew", - "hall:killcrew_person", - "hall:killnum", - "hall:killrate", - "hall:occupied", - "hall:warnum" - ] - ], - [ - "【75기】대교", - 94, - 75, - 15, - "che_event_징병", - [ - 1170546, - 22613, - 88477, - 102034, - 62277 - ], - 1, - "2ba23fb6.jpg?=20240927", - 75, - "che_240919_OUjB", - 46, - [ - "chief:11", - "hall:dedication", - "hall:dex1", - "hall:dex5", - "hall:experience", - "hall:firenum", - "hall:killcrew", - "hall:killcrew_person", - "hall:killnum", - "hall:killrate", - "hall:killrate_person", - "hall:occupied", - "hall:tlrate", - "hall:warnum", - "hall:winrate" - ] - ], - [ - "【75기】ㅇㅇ", - 76, - 15, - 90, - "che_event_집중", - [ - 46330, - 21747, - 37384, - 573778, - 53655 - ], - 1, - "a6fcaa40.jpg?=20240929", - 75, - "che_240919_OUjB", - 49, - [ - "chief:9", - "hall:dedication", - "hall:dex4", - "hall:dex5", - "hall:experience", - "hall:killrate", - "hall:killrate_person", - "hall:occupied", - "hall:ttrate", - "hall:winrate" - ] - ], - [ - "【75기】Hide_D", - 81, - 16, - 86, - "che_event_집중", - [ - 46297, - 38452, - 37777, - 570244, - 32520 - ], - 1, - "4569d848.png?=20230612", - 75, - "che_240919_OUjB", - 52, - [ - "hall:dex4" - ] - ], - [ - "【75기】카류", - 92, - 76, - 15, - "che_event_징병", - [ - 690097, - 21666, - 39669, - 56485, - 39137 - ], - 1, - "da250ebd.jpg?=20240919", - 75, - "che_240919_OUjB", - 55, - [ - "hall:betgold", - "hall:betwin", - "hall:betwingold", - "hall:dex1", - "hall:dex5", - "hall:killcrew", - "hall:killcrew_person", - "hall:warnum" - ] - ], - [ - "【75기】유산을 챙기는 자", - 81, - 88, - 15, - "che_event_필살", - [ - 80575, - 53312, - 670231, - 63843, - 31540 - ], - 1, - "3fbd66f8.jpg?=20240919", - 75, - "che_240919_OUjB", - 56, - [ - "hall:betgold", - "hall:betwin", - "hall:dex3", - "hall:killcrew", - "hall:killcrew_person", - "hall:killnum", - "hall:killrate", - "hall:killrate_person", - "hall:tsrate", - "hall:warnum", - "hall:winrate" - ] - ], - [ - "【75기】라면왕", - 93, - 76, - 15, - "che_event_신산", - [ - 26697, - 14875, - 463104, - 26793, - 19669 - ], - 1, - "3b7487b6.jpg?=20241002", - 75, - "che_240919_OUjB", - 58, - [ - "chief:6", - "hall:dex3", - "hall:experience", - "hall:firenum", - "hall:tlrate", - "hall:ttrate", - "hall:winrate" - ] - ], - [ - "【75기】이드", - 75, - 15, - 91, - "che_event_신산", - [ - 11204, - 25264, - 51432, - 414121, - 2629 - ], - 1, - "fc3385d6.gif?=20240301", - 75, - "che_240919_OUjB", - 60, - [ - "hall:betrate" - ] - ], - [ - "【75기】엔틱", - 77, - 15, - 91, - "che_event_환술", - [ - 37752, - 17168, - 12067, - 342415, - 10699 - ], - 1, - "51936f08.jpg?=20240620", - 75, - "che_240919_OUjB", - 62, - [ - "hall:dedication", - "hall:tirate" - ] - ], - [ - "【75기】── ──", - 78, - 90, - 15, - "che_event_징병", - [ - 526831, - 306647, - 157216, - 61192, - 60811 - ], - 1, - "0bdd7eb2.jpg?=20240919", - 75, - "che_240919_OUjB", - 64, - [ - "hall:betgold", - "hall:betwin", - "hall:betwingold", - "hall:dex1", - "hall:dex2", - "hall:dex5", - "hall:experience", - "hall:killcrew", - "hall:killcrew_person", - "hall:killnum", - "hall:occupied", - "hall:warnum" - ] - ], - [ - "【75기】AndreessenHorowitz", - 93, - 74, - 15, - "che_event_척사", - [ - 383859, - 75093, - 58508, - 104950, - 25013 - ], - 1, - "79e03eaa.jpg?=20241002", - 75, - "che_240919_OUjB", - 66, - [ - "hall:betgold", - "hall:dex1", - "hall:tlrate", - "hall:ttrate" - ] - ], - [ - "【75기】라콘타", - 15, - 89, - 74, - "che_event_견고", - [ - 0, - 0, - 0, - 0, - 0 - ], - 1, - "578d3ce5.png?=20240428", - 75, - "che_240919_OUjB", - 67, - [ - "hall:firenum" - ] - ], - [ - "【75기】개미호창", - 77, - 15, - 89, - "che_event_집중", - [ - 17919, - 29305, - 28540, - 517141, - 12866 - ], - 1, - "4325edb9.jpg?=20240919", - 75, - "che_240919_OUjB", - 68, - [ - "hall:dex4", - "hall:winrate" - ] - ], - [ - "【75기】(디폼)쿠루미에리카", - 79, - 88, - 15, - "che_event_견고", - [ - 495671, - 9016, - 20965, - 51848, - 17631 - ], - 1, - "2910ed72.jpg?=20241006", - 75, - "che_240919_OUjB", - 69, - [ - "hall:betgold", - "hall:betrate", - "hall:betwingold", - "hall:dex1" - ] - ], - [ - "【75기】복숭아좋아", - 76, - 15, - 89, - "che_event_의술", - [ - 28789, - 32088, - 15351, - 277609, - 22559 - ], - 0, - "default.jpg", - 75, - "che_240919_OUjB", - 71, - [ - "hall:tirate", - "hall:ttrate" - ] - ], - [ - "【75기】간지밍이", - 16, - 72, - 94, - "che_event_척사", - [ - 0, - 0, - 0, - 0, - 0 - ], - 1, - "32bc261d.png?=20240824", - 75, - "che_240919_OUjB", - 72, - [ - "hall:betgold", - "hall:betrate", - "hall:betwin", - "hall:betwingold", - "hall:firenum", - "hall:tirate" - ] - ], - [ - "【75기】강유", - 78, - 15, - 88, - "che_event_필살", - [ - 48759, - 59743, - 17846, - 531726, - 29665 - ], - 1, - "79e150d0.jpg?=20230921", - 75, - "che_240919_OUjB", - 74, - [ - "hall:dex4", - "hall:killrate_person" - ] - ], - [ - "【75기】청설모", - 15, - 76, - 88, - "che_event_신산", - [ - 0, - 0, - 0, - 0, - 0 - ], - 0, - "default.jpg", - 75, - "che_240919_OUjB", - 75, - [ - "hall:dedication", - "hall:firenum" - ] - ], - [ - "【75기】블루아카이브", - 92, - 72, - 15, - "che_event_징병", - [ - 51825, - 97588, - 387422, - 60546, - 20408 - ], - 0, - "default.jpg", - 75, - "che_240919_OUjB", - 76, - [ - "hall:dex3", - "hall:tlrate" - ] - ], - [ - "【75기】슈퍼블루문", - 78, - 15, - 87, - "che_event_집중", - [ - 35453, - 18514, - 29642, - 579739, - 30224 - ], - 1, - "177d4c0c.png?=20240918", - 75, - "che_240919_OUjB", - 78, - [ - "hall:betrate", - "hall:betwingold", - "hall:dex4", - "hall:ttrate" - ] - ], - [ - "【75기】바나낫", - 80, - 88, - 15, - "che_event_척사", - [ - 664482, - 78092, - 52753, - 38879, - 37830 - ], - 1, - "558910bd.gif?=20240827", - 75, - "che_240919_OUjB", - 79, - [ - "hall:betgold", - "hall:dex1", - "hall:dex5", - "hall:killcrew", - "hall:killrate", - "hall:killrate_person", - "hall:occupied", - "hall:ttrate", - "hall:warnum" - ] - ], - [ - "【75기】독구", - 15, - 95, - 70, - "che_event_무쌍", - [ - 0, - 1680, - 0, - 171, - 0 - ], - 1, - "393f17a6.png?=20240815", - 75, - "che_240919_OUjB", - 80, - [ - "hall:betgold", - "hall:betwin", - "hall:betwingold", - "hall:firenum", - "hall:tsrate" - ] - ], - [ - "【75기】집합", - 79, - 87, - 15, - "che_event_필살", - [ - 404058, - 21454, - 53853, - 43906, - 25606 - ], - 1, - "8d282df8.png?=20240919", - 75, - "che_240919_OUjB", - 81, - [ - "hall:dex1", - "hall:occupied" - ] - ], - [ - "【75기】ㅇㅅㅇ", - 80, - 15, - 88, - "che_event_징병", - [ - 21845, - 57427, - 31208, - 492260, - 21336 - ], - 0, - "default.jpg", - 75, - "che_240919_OUjB", - 82, - [ - "hall:dex4" - ] - ], - [ - "【75기】하냥", - 78, - 87, - 15, - "che_event_필살", - [ - 74282, - 450033, - 72447, - 91356, - 49458 - ], - 1, - "8be1d2b1.jpg?=20240712", - 75, - "che_240919_OUjB", - 83, - [ - "hall:betrate", - "hall:betwingold", - "hall:dex2", - "hall:dex5" - ] - ], - [ - "【75기】교황", - 88, - 76, - 16, - "che_event_척사", - [ - 124875, - 69022, - 459862, - 46922, - 37548 - ], - 1, - "9003e225.png?=20240922", - 75, - "che_240919_OUjB", - 84, - [ - "hall:dex3", - "hall:occupied", - "hall:tlrate" - ] - ], - [ - "【75기】마요이", - 15, - 71, - 93, - "che_event_척사", - [ - 0, - 0, - 0, - 0, - 0 - ], - 1, - "2b49c945.png?=20230921", - 75, - "che_240919_OUjB", - 85, - [ - "hall:tirate" - ] - ], - [ - "【75기】죽을게", - 77, - 88, - 15, - "che_event_견고", - [ - 361796, - 7317, - 46401, - 43591, - 12070 - ], - 1, - "ed5a5ea5.jpg?=20240920", - 75, - "che_240919_OUjB", - 86, - [ - "hall:dex1", - "hall:tsrate" - ] - ], - [ - "【75기】에델가르트", - 74, - 16, - 90, - "che_event_집중", - [ - 12790, - 32103, - 40574, - 271644, - 28949 - ], - 1, - "30c13f9a.jpg?=20241006", - 75, - "che_240919_OUjB", - 87, - [ - "chief:5", - "hall:tirate" - ] - ], - [ - "【75기】평민킬러", - 79, - 88, - 15, - "che_event_필살", - [ - 36444, - 36721, - 788855, - 86039, - 57425 - ], - 1, - "316603e1.jpg?=20240919", - 75, - "che_240919_OUjB", - 88, - [ - "hall:betgold", - "hall:betrate", - "hall:betwin", - "hall:betwingold", - "hall:dex3", - "hall:dex5", - "hall:killcrew", - "hall:killcrew_person", - "hall:killnum", - "hall:ttrate", - "hall:warnum" - ] - ], - [ - "【75기】이솔렛렛", - 77, - 15, - 89, - "che_event_저격", - [ - 30347, - 25888, - 41196, - 600353, - 29981 - ], - 1, - "2da1ca7d.png?=20240919", - 75, - "che_240919_OUjB", - 89, - [ - "hall:dex4", - "hall:killcrew_person", - "hall:killnum", - "hall:warnum", - "hall:winrate" - ] - ], - [ - "【75기】사스케", - 90, - 77, - 15, - "che_event_징병", - [ - 52519, - 876238, - 109748, - 40507, - 53922 - ], - 1, - "bbd4e6ad.jpg?=20240921", - 75, - "che_240919_OUjB", - 90, - [ - "chief:12", - "hall:betgold", - "hall:betrate", - "hall:betwin", - "hall:betwingold", - "hall:dedication", - "hall:dex2", - "hall:dex5", - "hall:experience", - "hall:killcrew", - "hall:killcrew_person", - "hall:killnum", - "hall:killrate", - "hall:killrate_person", - "hall:occupied", - "hall:warnum", - "hall:winrate" - ] - ], - [ - "【75기】불패", - 88, - 77, - 15, - "che_event_필살", - [ - 419889, - 11132, - 70450, - 54333, - 15333 - ], - 1, - "ae4a32ac.jpg?=20240919", - 75, - "che_240919_OUjB", - 91, - [ - "hall:dex1" - ] - ], - [ - "【75기】곽자의", - 89, - 77, - 16, - "che_event_척사", - [ - 63239, - 324045, - 186399, - 52625, - 24626 - ], - 0, - "default.jpg", - 75, - "che_240919_OUjB", - 92, - [ - "hall:dex2", - "hall:tlrate" - ] - ], - [ - "【75기】랜덤조아독구", - 16, - 72, - 93, - "che_event_신산", - [ - 0, - 0, - 0, - 0, - 0 - ], - 1, - "5283daf7.png?=20240511", - 75, - "che_240919_OUjB", - 94, - [ - "hall:betrate", - "hall:betwin", - "hall:dedication", - "hall:experience", - "hall:tirate" - ] - ], - [ - "【75기】키쿄우", - 76, - 92, - 15, - "che_event_척사", - [ - 54961, - 726125, - 14342, - 123095, - 30796 - ], - 1, - "3d324bbb.png?=20240919", - 75, - "che_240919_OUjB", - 95, - [ - "hall:dex2", - "hall:killcrew", - "hall:killcrew_person", - "hall:killnum", - "hall:tsrate" - ] - ], - [ - "【75기】카류3", - 90, - 73, - 15, - "che_event_필살", - [ - 1196508, - 24483, - 27884, - 21964, - 26754 - ], - 1, - "20e760b2.jpg?=20240921", - 75, - "che_240919_OUjB", - 96, - [ - "chief:8", - "hall:betwin", - "hall:dedication", - "hall:dex1", - "hall:experience", - "hall:killcrew", - "hall:killcrew_person", - "hall:killnum", - "hall:killrate", - "hall:killrate_person", - "hall:occupied", - "hall:warnum", - "hall:winrate" - ] - ], - [ - "【75기】최진리", - 74, - 91, - 15, - "che_event_위압", - [ - 10160, - 60718, - 300328, - 34613, - 11120 - ], - 1, - "4b0cbce9.jpg?=20240825", - 75, - "che_240919_OUjB", - 101, - [ - "hall:tsrate" - ] - ], - [ - "【75기】촉구", - 75, - 89, - 15, - "che_event_무쌍", - [ - 304812, - 4666, - 33732, - 45128, - 18577 - ], - 0, - "default.jpg", - 75, - "che_240919_OUjB", - 102, - [ - "hall:tsrate" - ] - ], - [ - "【75기】くま", - 74, - 15, - 89, - "che_event_집중", - [ - 11204, - 6250, - 39442, - 201501, - 13139 - ], - 1, - "770f53.jpg?=20190718", - 75, - "che_240919_OUjB", - 106, - [ - "hall:tirate" - ] - ], - [ - "【75기】냐옹", - 77, - 86, - 17, - "che_event_보병", - [ - 141987, - 7211, - 6592, - 16571, - 4600 - ], - 1, - "9a6bf29a.jpg?=20231130", - 75, - "che_240919_OUjB", - 107, - [ - "hall:killrate", - "hall:killrate_person", - "hall:tsrate" - ] - ], - [ - "【75기】셀레미", - 77, - 89, - 15, - "che_event_돌격", - [ - 58946, - 102645, - 312687, - 56432, - 38210 - ], - 1, - "99a2fac2.png?=20240919", - 75, - "che_240919_OUjB", - 109, - [ - "hall:dex2", - "hall:dex5", - "hall:tsrate" - ] - ], - [ - "【75기】POCARI", - 77, - 15, - 88, - "che_event_척사", - [ - 41095, - 49555, - 13033, - 318843, - 17159 - ], - 0, - "default.jpg", - 75, - "che_240919_OUjB", - 111, - [ - "hall:firenum" - ] - ], - [ - "【75기】니쉬", - 17, - 78, - 85, - "che_event_의술", - [ - 0, - 0, - 0, - 0, - 0 - ], - 1, - "3a86b056.png?=20240921", - 75, - "che_240919_OUjB", - 307, - [ - "hall:firenum" - ] - ], - [ - "【75기】카이스트", - 80, - 15, - 88, - "che_event_집중", - [ - 17975, - 30475, - 36038, - 514387, - 29957 - ], - 1, - "e7e27cd6.jpg?=20221125", - 75, - "che_240919_OUjB", - 309, - [ - "hall:betrate", - "hall:dex4", - "hall:ttrate" - ] - ], - [ - "【75기】유머보따리", - 88, - 79, - 15, - "che_event_격노", - [ - 19742, - 31761, - 465770, - 58331, - 10178 - ], - 0, - "default.jpg", - 75, - "che_240919_OUjB", - 312, - [ - "hall:dedication", - "hall:dex3", - "hall:ttrate" - ] - ], - [ - "【75기】프미나 지헌", - 91, - 15, - 74, - "che_event_환술", - [ - 55923, - 52646, - 15505, - 466423, - 25560 - ], - 1, - "c7d471b8.jpg?=20240920", - 75, - "che_240919_OUjB", - 316, - [ - "hall:dex4", - "hall:tlrate" - ] - ], - [ - "【75기】황혼중", - 89, - 15, - 77, - "che_event_집중", - [ - 0, - 0, - 0, - 0, - 0 - ], - 1, - "e5161df9.jpg?=20231110", - 75, - "che_240919_OUjB", - 324, - [ - "hall:tlrate" - ] - ], - [ - "【75기】메디브", - 76, - 89, - 15, - "che_event_무쌍", - [ - 7149, - 28280, - 274031, - 32041, - 40862 - ], - 1, - "def2895.jpg?=20190719", - 75, - "che_240919_OUjB", - 332, - [ - "hall:dex5" - ] - ], - [ - "【75기】서서서", - 76, - 87, - 16, - "che_event_위압", - [ - 6702, - 37601, - 417293, - 43028, - 8825 - ], - 0, - "default.jpg", - 75, - "che_240919_OUjB", - 441, - [ - "hall:dex3" - ] - ], [ "【76기】김만득", 78, @@ -116739,1611 +95257,6 @@ "hall:dedication" ] ], - [ - "【80기】GigaChad", - 83, - 70, - 13, - "che_event_필살", - [ - 102222, - 837000, - 41457, - 85003, - 27977 - ], - 1, - "9c3754a9.webp?=20250221", - 80, - "che_250123_1OYX", - 3, - [ - "hall:betwin", - "hall:dex1", - "hall:killcrew", - "hall:killcrew_person", - "hall:killnum", - "hall:killrate", - "hall:killrate_person", - "hall:occupied", - "hall:warnum" - ] - ], - [ - "【80기】카이스트", - 72, - 13, - 81, - "che_event_의술", - [ - 29589, - 68849, - 36832, - 466312, - 13252 - ], - 1, - "e7e27cd6.jpg?=20221125", - 80, - "che_250123_1OYX", - 4, - [ - "hall:dex4" - ] - ], - [ - "【80기】임사영", - 71, - 88, - 13, - "che_event_징병", - [ - 814140, - 71577, - 553522, - 137457, - 67792 - ], - 1, - "0b5a2642.jpg?=20240305", - 80, - "che_250123_1OYX", - 9, - [ - "hall:dex1", - "hall:dex3", - "hall:dex5", - "hall:experience", - "hall:killcrew", - "hall:killcrew_person", - "hall:killnum", - "hall:killrate", - "hall:occupied", - "hall:warnum" - ] - ], - [ - "【80기】구강재", - 70, - 85, - 14, - "che_event_필살", - [ - 23296, - 34234, - 1008916, - 64154, - 33620 - ], - 1, - "4ffa4d2a.jpg?=20250123", - 80, - "che_250123_1OYX", - 10, - [ - "chief:8", - "hall:betgold", - "hall:betrate", - "hall:betwingold", - "hall:dex3", - "hall:dex5", - "hall:experience", - "hall:killcrew", - "hall:killcrew_person", - "hall:killnum", - "hall:tsrate", - "hall:ttrate", - "hall:warnum", - "hall:winrate" - ] - ], - [ - "【80기】장원영", - 69, - 14, - 83, - "che_event_필살", - [ - 42272, - 66619, - 44769, - 667824, - 15825 - ], - 1, - "6314d1a5.jpg?=20241226", - 80, - "che_250123_1OYX", - 19, - [ - "chief:5", - "hall:betgold", - "hall:dex4", - "hall:winrate" - ] - ], - [ - "【80기】Air", - 73, - 87, - 16, - "che_event_척사", - [ - 64641, - 721077, - 17002, - 26380, - 47420 - ], - 0, - "default.jpg", - 80, - "che_250123_1OYX", - 21, - [ - "chief:10", - "hall:dex2", - "hall:killrate", - "hall:occupied" - ] - ], - [ - "【80기】바나낫", - 72, - 82, - 13, - "che_event_저격", - [ - 381089, - 199000, - 69758, - 59103, - 11540 - ], - 1, - "95478fad.gif?=20241223", - 80, - "che_250123_1OYX", - 23, - [ - "hall:dex1" - ] - ], - [ - "【80기】눈구", - 14, - 80, - 69, - "che_event_징병", - [ - 0, - 1951, - 0, - 0, - 675 - ], - 1, - "1fc09892.webp?=20250123", - 80, - "che_250123_1OYX", - 24, - [ - "hall:betrate", - "hall:dedication", - "hall:experience", - "hall:ttrate" - ] - ], - [ - "【80기】모전구", - 70, - 80, - 13, - "che_event_격노", - [ - 10804, - 20921, - 378660, - 50952, - 8551 - ], - 1, - "0e023deb.jpg?=20240425", - 80, - "che_250123_1OYX", - 31, - [ - "hall:tsrate" - ] - ], - [ - "【80기】니쉬", - 84, - 76, - 17, - "che_event_징병", - [ - 6161, - 40598, - 516872, - 35048, - 9473 - ], - 1, - "8d8f0ebd.png?=20241226", - 80, - "che_250123_1OYX", - 32, - [ - "hall:betgold", - "hall:betwin", - "hall:betwingold", - "hall:dex3" - ] - ], - [ - "【80기】데드리프트", - 72, - 13, - 81, - "che_event_집중", - [ - 19706, - 16803, - 22539, - 477185, - 17413 - ], - 1, - "72ee7a43.jpg?=20250127", - 80, - "che_250123_1OYX", - 36, - [ - "hall:tirate" - ] - ], - [ - "【80기】강유", - 71, - 13, - 84, - "che_event_필살", - [ - 32494, - 27916, - 30212, - 954156, - 30813 - ], - 1, - "79e150d0.jpg?=20230921", - 80, - "che_250123_1OYX", - 38, - [ - "hall:dex4", - "hall:killcrew", - "hall:killrate", - "hall:killrate_person" - ] - ], - [ - "【80기】척", - 68, - 13, - 85, - "che_event_집중", - [ - 28995, - 49733, - 41175, - 505006, - 41223 - ], - 1, - "7cb75480.png?=20221202", - 80, - "che_250123_1OYX", - 42, - [ - "hall:tirate" - ] - ], - [ - "【80기】외심장", - 71, - 14, - 84, - "che_event_집중", - [ - 24570, - 34338, - 19382, - 756555, - 42561 - ], - 1, - "36110cd.jpg?=20180826", - 80, - "che_250123_1OYX", - 46, - [ - "hall:dex4", - "hall:killrate_person", - "hall:occupied", - "hall:winrate" - ] - ], - [ - "【80기】ㅇㅅㅇ", - 77, - 13, - 77, - "che_event_징병", - [ - 68741, - 61441, - 35756, - 820507, - 38444 - ], - 0, - "default.jpg", - 80, - "che_250123_1OYX", - 50, - [ - "hall:dex4", - "hall:killcrew_person", - "hall:killnum", - "hall:warnum" - ] - ], - [ - "【80기】냥냥냥", - 71, - 15, - 88, - "che_event_필살", - [ - 297512, - 51367, - 28950, - 253190, - 16009 - ], - 1, - "458caeac.gif?=20240919", - 80, - "che_250123_1OYX", - 51, - [ - "hall:dex1", - "hall:ttrate" - ] - ], - [ - "【80기】새해기념복귀유저", - 69, - 13, - 85, - "che_event_환술", - [ - 19018, - 42892, - 41250, - 482651, - 30917 - ], - 0, - "default.jpg", - 80, - "che_250123_1OYX", - 57, - [ - "hall:dex5", - "hall:tirate" - ] - ], - [ - "【80기】네이미", - 66, - 13, - 84, - "che_event_신중", - [ - 36860, - 14414, - 21960, - 362348, - 38170 - ], - 0, - "default.jpg", - 80, - "che_250123_1OYX", - 61, - [ - "hall:dedication" - ] - ], - [ - "【80기】Kashmir", - 80, - 73, - 13, - "che_event_척사", - [ - 56628, - 540168, - 20161, - 64533, - 24126 - ], - 1, - "4c5c1bda.png?=20250123", - 80, - "che_250123_1OYX", - 62, - [ - "hall:dex2", - "hall:tlrate" - ] - ], - [ - "【80기】마요이", - 14, - 63, - 86, - "che_event_의술", - [ - 0, - 0, - 0, - 0, - 0 - ], - 1, - "2b49c945.png?=20230921", - 80, - "che_250123_1OYX", - 63, - [ - "hall:dedication", - "hall:experience", - "hall:tirate" - ] - ], - [ - "【80기】세뱃돈 강탈범 독구", - 13, - 64, - 87, - "che_event_의술", - [ - 0, - 0, - 0, - 0, - 0 - ], - 1, - "5283daf7.png?=20240511", - 80, - "che_250123_1OYX", - 64, - [ - "hall:betwin", - "hall:tirate", - "hall:ttrate" - ] - ], - [ - "【80기】보병", - 70, - 81, - 13, - "che_event_필살", - [ - 556500, - 6226, - 71790, - 39101, - 21842 - ], - 0, - "default.jpg", - 80, - "che_250123_1OYX", - 67, - [ - "hall:betrate", - "hall:betwin", - "hall:betwingold", - "hall:dex1", - "hall:occupied" - ] - ], - [ - "【80기】TQQQ", - 83, - 72, - 13, - "che_event_징병", - [ - 153933, - 161117, - 904235, - 87749, - 35094 - ], - 1, - "b9748e57.jpg?=20250123", - 80, - "che_250123_1OYX", - 69, - [ - "hall:betrate", - "hall:dex3", - "hall:dex5", - "hall:experience", - "hall:killcrew", - "hall:killcrew_person", - "hall:occupied", - "hall:tlrate", - "hall:warnum" - ] - ], - [ - "【80기】고죠 사토루", - 88, - 13, - 62, - "che_event_필살", - [ - 54211, - 45339, - 23145, - 387810, - 23055 - ], - 1, - "c31e1985.jpg?=20250123", - 80, - "che_250123_1OYX", - 71, - [ - "hall:betrate", - "hall:tlrate" - ] - ], - [ - "【80기】빗으맑읔으", - 65, - 82, - 13, - "che_event_필살", - [ - 42771, - 46494, - 476168, - 46942, - 16868 - ], - 0, - "default.jpg", - 80, - "che_250123_1OYX", - 72, - [ - "hall:dex3", - "hall:killrate", - "hall:killrate_person", - "hall:tsrate" - ] - ], - [ - "【80기】ARP9", - 72, - 83, - 13, - "che_event_필살", - [ - 33531, - 82788, - 860294, - 88091, - 44609 - ], - 0, - "default.jpg", - 80, - "che_250123_1OYX", - 74, - [ - "hall:betgold", - "hall:betwin", - "hall:dex3", - "hall:dex5", - "hall:killcrew", - "hall:killcrew_person", - "hall:killnum", - "hall:killrate", - "hall:killrate_person", - "hall:warnum", - "hall:winrate" - ] - ], - [ - "【80기】780", - 71, - 81, - 13, - "che_event_격노", - [ - 55445, - 491435, - 29643, - 53846, - 16704 - ], - 0, - "default.jpg", - 80, - "che_250123_1OYX", - 76, - [ - "hall:dex2" - ] - ], - [ - "【80기】와일드플라워", - 67, - 89, - 13, - "che_event_필살", - [ - 13726, - 924141, - 8685, - 14738, - 13092 - ], - 0, - "default.jpg", - 80, - "che_250123_1OYX", - 77, - [ - "hall:dex2", - "hall:experience", - "hall:killcrew", - "hall:killcrew_person", - "hall:killnum", - "hall:killrate", - "hall:killrate_person", - "hall:occupied", - "hall:tsrate", - "hall:winrate" - ] - ], - [ - "【80기】대교", - 84, - 14, - 68, - "che_event_필살", - [ - 23511, - 98283, - 58219, - 517971, - 43056 - ], - 1, - "a53ab5ef.jpg?=20241010", - 80, - "che_250123_1OYX", - 78, - [ - "hall:tlrate" - ] - ], - [ - "【80기】얼룩말", - 67, - 13, - 86, - "che_event_집중", - [ - 45758, - 23978, - 46058, - 565015, - 43132 - ], - 0, - "default.jpg", - 80, - "che_250123_1OYX", - 79, - [ - "chief:11", - "hall:betgold", - "hall:betwingold", - "hall:dedication" - ] - ], - [ - "【80기】TATUM", - 69, - 83, - 13, - "che_event_필살", - [ - 33856, - 501455, - 93265, - 56931, - 28106 - ], - 0, - "default.jpg", - 80, - "che_250123_1OYX", - 80, - [ - "hall:dex2", - "hall:winrate" - ] - ], - [ - "【80기】감흥", - 79, - 73, - 13, - "che_event_필살", - [ - 58798, - 70760, - 544512, - 128664, - 35228 - ], - 0, - "default.jpg", - 80, - "che_250123_1OYX", - 83, - [ - "hall:dex3" - ] - ], - [ - "【80기】환뚜다", - 68, - 13, - 86, - "che_event_집중", - [ - 35729, - 22716, - 13709, - 904270, - 60078 - ], - 1, - "69414a52.gif?=20250215", - 80, - "che_250123_1OYX", - 84, - [ - "chief:9", - "hall:betwin", - "hall:dex4", - "hall:experience", - "hall:occupied", - "hall:tirate", - "hall:ttrate" - ] - ], - [ - "【80기】찐앙카", - 71, - 82, - 14, - "che_event_무쌍", - [ - 21571, - 864121, - 16053, - 16714, - 12533 - ], - 1, - "165b6563.png?=20250123", - 80, - "che_250123_1OYX", - 86, - [ - "hall:dex2", - "hall:experience", - "hall:killcrew", - "hall:killcrew_person", - "hall:killnum", - "hall:killrate", - "hall:killrate_person", - "hall:warnum", - "hall:winrate" - ] - ], - [ - "【80기】불패", - 68, - 84, - 13, - "che_event_필살", - [ - 60528, - 472089, - 20618, - 143525, - 48199 - ], - 1, - "7c08b5e9.jpg?=20241227", - 80, - "che_250123_1OYX", - 87, - [ - "hall:betrate", - "hall:dex5", - "hall:tsrate" - ] - ], - [ - "【80기】버러우", - 79, - 73, - 13, - "che_event_필살", - [ - 274105, - 36696, - 463650, - 108703, - 41968 - ], - 0, - "default.jpg", - 80, - "che_250123_1OYX", - 89, - [ - "hall:betrate", - "hall:dex3", - "hall:killrate", - "hall:killrate_person", - "hall:tlrate" - ] - ], - [ - "【80기】올해의 색", - 83, - 71, - 13, - "che_event_척사", - [ - 334514, - 71393, - 469007, - 86302, - 53869 - ], - 1, - "5c04315c.jpg?=20250123", - 80, - "che_250123_1OYX", - 90, - [ - "chief:12", - "hall:betrate", - "hall:betwingold", - "hall:dedication", - "hall:dex1", - "hall:dex3", - "hall:dex5", - "hall:tlrate" - ] - ], - [ - "【80기】Sase", - 66, - 13, - 84, - "che_event_필살", - [ - 40520, - 79411, - 69410, - 508806, - 37830 - ], - 1, - "cb8e4672.jpg?=20241224", - 80, - "che_250123_1OYX", - 91, - [ - "hall:betgold", - "hall:betwin", - "hall:betwingold", - "hall:dedication" - ] - ], - [ - "【80기】퍄퍄", - 71, - 83, - 13, - "che_event_척사", - [ - 57713, - 461445, - 50345, - 44476, - 25248 - ], - 0, - "default.jpg", - 80, - "che_250123_1OYX", - 94, - [ - "hall:occupied", - "hall:tsrate" - ] - ], - [ - "【80기】독구", - 70, - 14, - 84, - "che_event_필살", - [ - 26497, - 67211, - 23611, - 614788, - 38835 - ], - 1, - "a476abba.png?=20250123", - 80, - "che_250123_1OYX", - 95, - [ - "chief:7", - "hall:dex5" - ] - ], - [ - "【80기】잘먹는서몰더", - 66, - 14, - 85, - "che_event_의술", - [ - 54807, - 15995, - 38161, - 450896, - 52893 - ], - 1, - "5852e807.jpg?=20250123", - 80, - "che_250123_1OYX", - 96, - [ - "hall:tirate", - "hall:ttrate" - ] - ], - [ - "【80기】쪼꼬미", - 69, - 87, - 13, - "che_event_격노", - [ - 535403, - 54295, - 52059, - 72964, - 19168 - ], - 1, - "d344d6aa.jpg?=20250208", - 80, - "che_250123_1OYX", - 98, - [ - "hall:dex2", - "hall:tsrate" - ] - ], - [ - "【80기】감훙", - 79, - 74, - 13, - "che_event_위압", - [ - 43841, - 418005, - 29082, - 41030, - 9633 - ], - 0, - "default.jpg", - 80, - "che_250123_1OYX", - 99, - [ - "hall:dex2" - ] - ], - [ - "【80기】NK", - 89, - 67, - 13, - "che_event_필살", - [ - 38219, - 35449, - 48859, - 54409, - 506289 - ], - 0, - "default.jpg", - 80, - "che_250123_1OYX", - 100, - [ - "hall:betgold", - "hall:betrate", - "hall:betwingold", - "hall:dex1", - "hall:tlrate" - ] - ], - [ - "【80기】ㅊㄹㅊㄹ", - 72, - 82, - 14, - "che_event_필살", - [ - 54626, - 72172, - 577622, - 60357, - 15799 - ], - 1, - "63f1c106.png?=20230223", - 80, - "che_250123_1OYX", - 101, - [ - "hall:dex3", - "hall:killnum", - "hall:warnum" - ] - ], - [ - "【80기】Hide_D", - 71, - 13, - 85, - "che_event_귀병", - [ - 15450, - 20752, - 45326, - 541930, - 7913 - ], - 1, - "4569d848.png?=20230612", - 80, - "che_250123_1OYX", - 102, - [ - "hall:dex4", - "hall:tirate", - "hall:winrate" - ] - ], - [ - "【80기】간지밍이", - 15, - 69, - 75, - "che_event_집중", - [ - 0, - 0, - 0, - 0, - 0 - ], - 1, - "b3e03d5f.png?=20241207", - 80, - "che_250123_1OYX", - 103, - [ - "hall:betgold" - ] - ], - [ - "【80기】배찌", - 81, - 72, - 14, - "che_event_징병", - [ - 675774, - 8823, - 80332, - 60425, - 21125 - ], - 1, - "89cfccf8.png?=20250123", - 80, - "che_250123_1OYX", - 104, - [ - "hall:betrate", - "hall:betwingold", - "hall:dex1" - ] - ], - [ - "【80기】사스케", - 93, - 70, - 15, - "che_event_공성", - [ - 58357, - 38403, - 59840, - 54017, - 2540171 - ], - 1, - "53aa49bd.jpg?=20241203", - 80, - "che_250123_1OYX", - 105, - [ - "chief:6", - "hall:betgold", - "hall:betwin", - "hall:betwingold", - "hall:dex5", - "hall:experience", - "hall:killcrew", - "hall:killcrew_person", - "hall:killnum", - "hall:killrate", - "hall:killrate_person", - "hall:occupied", - "hall:tlrate", - "hall:warnum", - "hall:winrate" - ] - ], - [ - "【80기】지각생", - 75, - 87, - 15, - "che_event_격노", - [ - 150028, - 907296, - 29305, - 144886, - 41673 - ], - 0, - "default.jpg", - 80, - "che_250123_1OYX", - 110, - [ - "hall:betwin", - "hall:dex2", - "hall:dex5", - "hall:killcrew", - "hall:killcrew_person", - "hall:killnum", - "hall:killrate_person", - "hall:tlrate", - "hall:warnum" - ] - ], - [ - "【80기】이드", - 68, - 81, - 14, - "che_event_필살", - [ - 25761, - 32416, - 425182, - 63530, - 38221 - ], - 1, - "ac5f0a3b.jpg?=20241107", - 80, - "che_250123_1OYX", - 111, - [ - "hall:firenum" - ] - ], - [ - "【80기】왕보윤", - 64, - 79, - 14, - "che_event_기병", - [ - 2364, - 13312, - 114307, - 16036, - 5236 - ], - 1, - "a0576c0f.png?=20250131", - 80, - "che_250123_1OYX", - 115, - [ - "hall:tsrate" - ] - ], - [ - "【80기】서희", - 70, - 14, - 83, - "che_event_필살", - [ - 31739, - 27128, - 45448, - 626637, - 14348 - ], - 0, - "default.jpg", - 80, - "che_250123_1OYX", - 116, - [ - "hall:dex4", - "hall:ttrate" - ] - ], - [ - "【80기】로비", - 13, - 60, - 89, - "che_event_의술", - [ - 0, - 0, - 0, - 0, - 0 - ], - 1, - "71751125.png?=20240823", - 80, - "che_250123_1OYX", - 117, - [ - "hall:dedication", - "hall:tirate" - ] - ], - [ - "【80기】최진리", - 71, - 81, - 13, - "che_event_필살", - [ - 39197, - 601331, - 37959, - 41234, - 17659 - ], - 1, - "677580c5.jpg?=20241230", - 80, - "che_250123_1OYX", - 118, - [ - "hall:dex2" - ] - ], - [ - "【80기】셀레미", - 16, - 63, - 79, - "che_event_필살", - [ - 9095, - 0, - 7822, - 26887, - 1006 - ], - 1, - "d7c3f55a.jpg?=20241231", - 80, - "che_250123_1OYX", - 120, - [ - "hall:dedication" - ] - ], - [ - "【80기】Navy마초", - 68, - 80, - 13, - "che_event_징병", - [ - 24979, - 251872, - 14904, - 24580, - 12735 - ], - 1, - "37644ed3.png?=20230831", - 80, - "che_250123_1OYX", - 228, - [ - "hall:tsrate", - "hall:ttrate" - ] - ], - [ - "【80기】호잉", - 68, - 14, - 85, - "che_event_귀병", - [ - 17472, - 22868, - 21636, - 584422, - 12310 - ], - 0, - "default.jpg", - 80, - "che_250123_1OYX", - 240, - [ - "hall:dex4", - "hall:winrate" - ] - ], - [ - "【80기】복숭아좋아", - 68, - 13, - 82, - "che_event_집중", - [ - 54569, - 47622, - 26450, - 558914, - 28654 - ], - 0, - "default.jpg", - 80, - "che_250123_1OYX", - 242, - [ - "hall:dex4", - "hall:tirate", - "hall:ttrate" - ] - ], - [ - "【80기】카리나", - 68, - 81, - 14, - "che_event_무쌍", - [ - 351781, - 11162, - 42780, - 46810, - 9458 - ], - 1, - "3662b999.jpg?=20250124", - 80, - "che_250123_1OYX", - 243, - [ - "hall:dex1", - "hall:tsrate" - ] - ], - [ - "【80기】명절선물카갈비", - 67, - 80, - 13, - "che_event_척사", - [ - 310418, - 13556, - 42901, - 54881, - 8609 - ], - 1, - "59d1718b.jpg?=20250124", - 80, - "che_250123_1OYX", - 244, - [ - "hall:dex1" - ] - ], - [ - "【80기】진솔", - 13, - 71, - 80, - "che_event_무쌍", - [ - 0, - 0, - 0, - 0, - 0 - ], - 1, - "ed6e48d5.png?=20240719", - 80, - "che_250123_1OYX", - 250, - [ - "hall:dedication", - "hall:ttrate" - ] - ], - [ - "【80기】떡국", - 71, - 14, - 81, - "che_event_척사", - [ - 16148, - 14694, - 20154, - 445647, - 17829 - ], - 0, - "default.jpg", - 80, - "che_250123_1OYX", - 271, - [ - "hall:betgold", - "hall:betwin", - "hall:betwingold", - "hall:firenum" - ] - ], - [ - "【80기】기술연구", - 15, - 71, - 99, - "che_event_신중", - [ - 0, - 0, - 0, - 0, - 0 - ], - 0, - "default.jpg", - 80, - "che_250123_1OYX", - 493, - [ - "hall:dedication", - "hall:experience" - ] - ], - [ - "【80기】김갑환", - 84, - 75, - 16, - "che_event_돌격", - [ - 2588, - 91280, - 9169, - 11579, - 6643 - ], - 1, - "dcff9fd.jpg?=20180823", - 80, - "che_250123_1OYX", - 719, - [ - "hall:tlrate" - ] - ], [ "【81기】독구", 76, @@ -124309,1273 +101222,6 @@ "hall:dex3" ] ], - [ - "【85기】척", - 86, - 113, - 20, - "che_event_격노", - [ - 29105, - 25847, - 802296, - 26915, - 37394 - ], - 1, - "7cb75480.png?=20221202", - 85, - "che_250626_vjy4", - 3, - [ - "hall:dex3", - "hall:killrate_person", - "hall:tsrate", - "hall:winrate" - ] - ], - [ - "【85기】Slack", - 116, - 85, - 20, - "che_event_돌격", - [ - 42834, - 35464, - 25685, - 60039, - 669831 - ], - 1, - "7dd3564d.png?=20250626", - 85, - "che_250626_vjy4", - 7, - [ - "hall:betwin", - "hall:dex5" - ] - ], - [ - "【85기】강유", - 87, - 20, - 112, - "che_event_척사", - [ - 10144, - 13882, - 30733, - 1042430, - 42640 - ], - 1, - "79e150d0.jpg?=20230921", - 85, - "che_250626_vjy4", - 11, - [ - "hall:dex4", - "hall:experience", - "hall:killrate", - "hall:killrate_person", - "hall:occupied", - "hall:winrate" - ] - ], - [ - "【85기】와일드플라워", - 85, - 20, - 113, - "che_event_신중", - [ - 8017, - 12552, - 7323, - 715844, - 35271 - ], - 0, - "default.jpg", - 85, - "che_250626_vjy4", - 13, - [ - "hall:dex4", - "hall:killrate", - "hall:killrate_person", - "hall:tirate", - "hall:winrate" - ] - ], - [ - "【85기】Hide_D", - 84, - 20, - 116, - "che_event_필살", - [ - 12897, - 35158, - 19995, - 967206, - 56238 - ], - 1, - "4569d848.png?=20230612", - 85, - "che_250626_vjy4", - 15, - [ - "hall:dex4", - "hall:tirate", - "hall:ttrate" - ] - ], - [ - "【85기】숨바꼭질 고수 독구", - 20, - 84, - 111, - "che_event_저격", - [ - 0, - 0, - 0, - 0, - 0 - ], - 1, - "5283daf7.png?=20240511", - 85, - "che_250626_vjy4", - 18, - [ - "hall:betwin", - "hall:dedication" - ] - ], - [ - "【85기】임사영", - 127, - 81, - 20, - "che_event_징병", - [ - 39336, - 69848, - 62781, - 105340, - 2553222 - ], - 1, - "0b5a2642.jpg?=20240305", - 85, - "che_250626_vjy4", - 19, - [ - "chief:10", - "hall:dex2", - "hall:dex3", - "hall:dex5", - "hall:experience", - "hall:killcrew", - "hall:killcrew_person", - "hall:killnum", - "hall:killrate", - "hall:occupied", - "hall:tlrate", - "hall:ttrate", - "hall:warnum" - ] - ], - [ - "【85기】리다이린", - 86, - 110, - 21, - "che_event_격노", - [ - 488672, - 7209, - 12181, - 9845, - 23356 - ], - 1, - "f7e7b9e3.png?=20250626", - 85, - "che_250626_vjy4", - 20, - [ - "hall:dex1", - "hall:killrate", - "hall:killrate_person", - "hall:tsrate" - ] - ], - [ - "【85기】외심장", - 86, - 20, - 113, - "che_event_필살", - [ - 8457, - 16011, - 23346, - 787217, - 65967 - ], - 1, - "36110cd.jpg?=20180826", - 85, - "che_250626_vjy4", - 21, - [ - "hall:dex4" - ] - ], - [ - "【85기】황혼중", - 20, - 107, - 89, - "che_event_위압", - [ - 0, - 0, - 0, - 0, - 0 - ], - 1, - "e5161df9.jpg?=20231110", - 85, - "che_250626_vjy4", - 22, - [ - "hall:dedication", - "hall:tsrate" - ] - ], - [ - "【85기】메이스", - 85, - 21, - 111, - "che_event_환술", - [ - 8563, - 12699, - 3571, - 421360, - 12072 - ], - 0, - "default.jpg", - 85, - "che_250626_vjy4", - 34, - [ - "hall:tirate" - ] - ], - [ - "【85기】대교", - 112, - 91, - 20, - "che_event_돌격", - [ - 1723735, - 11698, - 26109, - 45918, - 42618 - ], - 1, - "a53ab5ef.jpg?=20241010", - 85, - "che_250626_vjy4", - 35, - [ - "hall:dex1", - "hall:killcrew", - "hall:killcrew_person", - "hall:killnum", - "hall:killrate", - "hall:killrate_person", - "hall:occupied", - "hall:tlrate", - "hall:warnum", - "hall:winrate" - ] - ], - [ - "【85기】기술자", - 88, - 20, - 114, - "che_event_돌격", - [ - 21799, - 16012, - 11991, - 1149581, - 49411 - ], - 0, - "default.jpg", - 85, - "che_250626_vjy4", - 40, - [ - "chief:9", - "hall:dedication", - "hall:dex4", - "hall:experience", - "hall:killcrew", - "hall:killcrew_person", - "hall:killnum", - "hall:killrate", - "hall:killrate_person", - "hall:warnum", - "hall:winrate" - ] - ], - [ - "【85기】로비", - 20, - 83, - 112, - "che_event_반계", - [ - 0, - 0, - 0, - 0, - 0 - ], - 1, - "71751125.png?=20240823", - 85, - "che_250626_vjy4", - 43, - [ - "hall:tirate" - ] - ], - [ - "【85기】크루엘라", - 124, - 20, - 84, - "che_event_징병", - [ - 47649, - 54968, - 45780, - 110009, - 2380731 - ], - 1, - "651dcd51.jpg?=20250709", - 85, - "che_250626_vjy4", - 44, - [ - "chief:12", - "hall:betgold", - "hall:betrate", - "hall:betwin", - "hall:betwingold", - "hall:dedication", - "hall:dex2", - "hall:dex5", - "hall:experience", - "hall:killcrew", - "hall:killcrew_person", - "hall:killnum", - "hall:occupied", - "hall:tlrate", - "hall:ttrate", - "hall:warnum" - ] - ], - [ - "【85기】대충하는사람", - 117, - 83, - 21, - "che_event_위압", - [ - 56402, - 37066, - 22158, - 79418, - 1522566 - ], - 0, - "default.jpg", - 85, - "che_250626_vjy4", - 45, - [ - "chief:6", - "hall:dex1", - "hall:dex2", - "hall:dex5", - "hall:experience", - "hall:killcrew", - "hall:killcrew_person", - "hall:killnum", - "hall:occupied", - "hall:warnum" - ] - ], - [ - "【85기】나미리", - 106, - 20, - 92, - "che_event_필살", - [ - 14793, - 14996, - 12828, - 730392, - 43066 - ], - 0, - "default.jpg", - 85, - "che_250626_vjy4", - 46, - [ - "hall:dex4", - "hall:tlrate" - ] - ], - [ - "【85기】시요밍", - 109, - 89, - 21, - "che_event_필살", - [ - 920105, - 8426, - 26529, - 57872, - 32571 - ], - 1, - "9cdcc478.png?=20250628", - 85, - "che_250626_vjy4", - 47, - [ - "hall:dex1", - "hall:ttrate" - ] - ], - [ - "【85기】사스케", - 115, - 21, - 83, - "che_event_필살", - [ - 24351, - 16818, - 25812, - 48055, - 787909 - ], - 1, - "177be5d8.jpg?=20250604", - 85, - "che_250626_vjy4", - 51, - [ - "hall:betgold", - "hall:betwin", - "hall:dex5", - "hall:tlrate" - ] - ], - [ - "【85기】도로롱", - 85, - 21, - 113, - "che_event_집중", - [ - 6787, - 13824, - 8983, - 415418, - 14007 - ], - 1, - "ffda626b.gif?=20250626", - 85, - "che_250626_vjy4", - 53, - [ - "hall:tirate" - ] - ], - [ - "【85기】퍄퍄", - 120, - 20, - 83, - "che_event_징병", - [ - 32180, - 31897, - 46483, - 78365, - 2016940 - ], - 0, - "default.jpg", - 85, - "che_250626_vjy4", - 57, - [ - "chief:11", - "hall:dedication", - "hall:dex5", - "hall:experience", - "hall:killcrew", - "hall:killcrew_person", - "hall:killnum", - "hall:killrate", - "hall:occupied", - "hall:warnum" - ] - ], - [ - "【85기】덕구", - 88, - 109, - 21, - "che_event_궁병", - [ - 6616, - 407321, - 2324, - 10355, - 16326 - ], - 1, - "bce319ad.jpg?=20250611", - 85, - "che_250626_vjy4", - 59, - [ - "hall:dex2" - ] - ], - [ - "【85기】나나야 시키", - 107, - 90, - 20, - "che_event_필살", - [ - 3582, - 36875, - 582355, - 23155, - 38183 - ], - 1, - "62e410b1.gif?=20250605", - 85, - "che_250626_vjy4", - 61, - [ - "hall:betgold", - "hall:betwingold", - "hall:dex3", - "hall:tlrate" - ] - ], - [ - "【85기】메로나아님", - 83, - 20, - 118, - "che_event_환술", - [ - 9845, - 18832, - 6136, - 743122, - 35919 - ], - 1, - "4a4cff1a.png?=20250626", - 85, - "che_250626_vjy4", - 62, - [ - "hall:betwingold", - "hall:dex4", - "hall:tirate", - "hall:winrate" - ] - ], - [ - "【85기】아리스가와 히마리", - 84, - 21, - 120, - "che_event_집중", - [ - 24007, - 52661, - 20096, - 1620981, - 59572 - ], - 1, - "f2806739.png?=20250626", - 85, - "che_250626_vjy4", - 63, - [ - "hall:betgold", - "hall:betrate", - "hall:betwin", - "hall:betwingold", - "hall:dedication", - "hall:dex2", - "hall:dex4", - "hall:experience", - "hall:killcrew", - "hall:killcrew_person", - "hall:killnum", - "hall:killrate_person", - "hall:occupied", - "hall:tirate", - "hall:ttrate", - "hall:warnum", - "hall:winrate" - ] - ], - [ - "【85기】NK", - 114, - 87, - 20, - "che_event_돌격", - [ - 24717, - 43746, - 46587, - 58571, - 801939 - ], - 0, - "default.jpg", - 85, - "che_250626_vjy4", - 64, - [ - "hall:betgold", - "hall:dex2", - "hall:dex5", - "hall:tlrate" - ] - ], - [ - "【85기】독구", - 115, - 84, - 20, - "che_event_위압", - [ - 52256, - 6017, - 3635, - 60100, - 664734 - ], - 1, - "0d0a802e.png?=20250529", - 85, - "che_250626_vjy4", - 65, - [ - "hall:dex1", - "hall:dex5" - ] - ], - [ - "【85기】사세니아", - 21, - 83, - 115, - "che_event_반계", - [ - 0, - 0, - 0, - 0, - 0 - ], - 1, - "e44b0ee5.jpg?=20250627", - 85, - "che_250626_vjy4", - 66, - [ - "hall:dedication", - "hall:experience", - "hall:tirate" - ] - ], - [ - "【85기】아이씨유", - 86, - 21, - 109, - "che_event_척사", - [ - 3440, - 8983, - 11015, - 435989, - 29349 - ], - 0, - "default.jpg", - 85, - "che_250626_vjy4", - 67, - [ - "hall:tirate" - ] - ], - [ - "【85기】차병으로 놀아야지", - 118, - 81, - 21, - "che_event_견고", - [ - 19627, - 55517, - 35311, - 89128, - 961465 - ], - 0, - "default.jpg", - 85, - "che_250626_vjy4", - 69, - [ - "hall:dex2", - "hall:dex5", - "hall:warnum" - ] - ], - [ - "【85기】데이워커", - 88, - 108, - 21, - "che_event_돌격", - [ - 67792, - 6481, - 428394, - 30011, - 34961 - ], - 0, - "default.jpg", - 85, - "che_250626_vjy4", - 70, - [ - "hall:betrate", - "hall:betwin", - "hall:dex1", - "hall:dex3", - "hall:tsrate" - ] - ], - [ - "【85기】Sasenia", - 83, - 20, - 114, - "che_event_징병", - [ - 6545, - 11930, - 12027, - 645710, - 53989 - ], - 1, - "07ee79c6.gif?=20250626", - 85, - "che_250626_vjy4", - 71, - [ - "hall:betgold", - "hall:betrate", - "hall:betwin", - "hall:betwingold", - "hall:dedication", - "hall:dex4" - ] - ], - [ - "【85기】으앙", - 83, - 114, - 21, - "che_event_필살", - [ - 4482, - 19799, - 774449, - 23304, - 34799 - ], - 0, - "default.jpg", - 85, - "che_250626_vjy4", - 72, - [ - "hall:dedication", - "hall:dex3", - "hall:killrate", - "hall:killrate_person" - ] - ], - [ - "【85기】평민킬러", - 86, - 112, - 20, - "che_event_징병", - [ - 1082127, - 10526, - 22404, - 40720, - 39996 - ], - 1, - "ff53d7eb.jpg?=20250503", - 85, - "che_250626_vjy4", - 73, - [ - "hall:betgold", - "hall:betrate", - "hall:betwin", - "hall:betwingold", - "hall:dex1", - "hall:killrate", - "hall:killrate_person", - "hall:occupied", - "hall:tsrate" - ] - ], - [ - "【85기】카이스트", - 84, - 20, - 114, - "che_event_징병", - [ - 12382, - 18790, - 9883, - 460359, - 23527 - ], - 1, - "e7e27cd6.jpg?=20221125", - 85, - "che_250626_vjy4", - 74, - [ - "hall:winrate" - ] - ], - [ - "【85기】쓱싹", - 88, - 113, - 20, - "che_event_징병", - [ - 24841, - 1535043, - 74279, - 30715, - 46643 - ], - 0, - "default.jpg", - 85, - "che_250626_vjy4", - 75, - [ - "chief:8", - "hall:betgold", - "hall:betrate", - "hall:betwingold", - "hall:dex2", - "hall:dex3", - "hall:experience", - "hall:killcrew", - "hall:killcrew_person", - "hall:killnum", - "hall:occupied", - "hall:tsrate", - "hall:ttrate", - "hall:warnum" - ] - ], - [ - "【85기】순록", - 83, - 21, - 111, - "che_event_집중", - [ - 4731, - 20135, - 8665, - 362773, - 14502 - ], - 0, - "default.jpg", - 85, - "che_250626_vjy4", - 76, - [ - "hall:betrate", - "hall:betwingold" - ] - ], - [ - "【85기】카프타인 e. 카류", - 108, - 91, - 20, - "che_event_필살", - [ - 1669296, - 8796, - 15488, - 39803, - 62701 - ], - 1, - "d43aa972.png?=20250626", - 85, - "che_250626_vjy4", - 77, - [ - "chief:5", - "hall:betgold", - "hall:betrate", - "hall:betwin", - "hall:betwingold", - "hall:dex1", - "hall:experience", - "hall:killcrew", - "hall:killcrew_person", - "hall:killnum", - "hall:killrate", - "hall:killrate_person", - "hall:occupied", - "hall:tlrate", - "hall:winrate" - ] - ], - [ - "【85기】독티아스", - 86, - 20, - 113, - "che_event_필살", - [ - 5975, - 27209, - 11573, - 960335, - 63124 - ], - 1, - "251f61a6.jpg?=20250627", - 85, - "che_250626_vjy4", - 78, - [ - "chief:7", - "hall:dedication", - "hall:dex4" - ] - ], - [ - "【85기】살", - 88, - 20, - 112, - "che_event_징병", - [ - 17616, - 17649, - 16271, - 636254, - 74947 - ], - 0, - "default.jpg", - 85, - "che_250626_vjy4", - 79, - [ - "hall:betgold", - "hall:betrate", - "hall:betwin", - "hall:betwingold", - "hall:ttrate" - ] - ], - [ - "【85기】진솔", - 88, - 109, - 20, - "che_event_저격", - [ - 4395, - 5051, - 84416, - 20142, - 100722 - ], - 1, - "61ab7ca2.jpg?=20250515", - 85, - "che_250626_vjy4", - 96, - [ - "hall:dex3", - "hall:tsrate", - "hall:ttrate" - ] - ], - [ - "【85기】네이미", - 88, - 110, - 20, - "che_event_격노", - [ - 291177, - 10990, - 11428, - 17198, - 5712 - ], - 0, - "default.jpg", - 85, - "che_250626_vjy4", - 98, - [ - "hall:dex1", - "hall:tsrate", - "hall:ttrate" - ] - ], - [ - "【85기】네시", - 108, - 20, - 91, - "che_event_신산", - [ - 24696, - 10135, - 14379, - 529383, - 24014 - ], - 1, - "b76ffd17.png?=20250530", - 85, - "che_250626_vjy4", - 100, - [ - "hall:tlrate", - "hall:winrate" - ] - ], - [ - "【85기】타치바나히나노", - 87, - 20, - 109, - "che_event_환술", - [ - 4298, - 3463, - 5041, - 326325, - 25837 - ], - 1, - "c033385a.jpg?=20250626", - 85, - "che_250626_vjy4", - 229, - [ - "hall:tirate" - ] - ], - [ - "【85기】불패", - 110, - 92, - 20, - "che_event_돌격", - [ - 29307, - 26518, - 62042, - 76450, - 1305469 - ], - 1, - "283bc08c.jpg?=20250522", - 85, - "che_250626_vjy4", - 231, - [ - "hall:dex3", - "hall:dex5", - "hall:killcrew", - "hall:killcrew_person", - "hall:killnum", - "hall:tlrate", - "hall:tsrate", - "hall:warnum" - ] - ], - [ - "【85기】이흐히히", - 87, - 108, - 21, - "che_event_척사", - [ - 687449, - 39210, - 46757, - 36817, - 46878 - ], - 0, - "default.jpg", - 85, - "che_250626_vjy4", - 273, - [ - "hall:dex1", - "hall:dex2", - "hall:ttrate" - ] - ], - [ - "【85기】ㅊㄹㅊㄹ", - 87, - 108, - 20, - "che_event_무쌍", - [ - 0, - 716, - 93917, - 7584, - 11231 - ], - 1, - "63f1c106.png?=20230223", - 85, - "che_250626_vjy4", - 297, - [ - "hall:dex3" - ] - ], - [ - "【85기】최진리", - 85, - 110, - 21, - "che_event_필살", - [ - 1938, - 30823, - 472187, - 8703, - 35999 - ], - 1, - "677580c5.jpg?=20241230", - 85, - "che_250626_vjy4", - 298, - [ - "hall:dex3", - "hall:tsrate" - ] - ], - [ - "【85기】왈왈왈크르릉", - 85, - 107, - 21, - "che_event_무쌍", - [ - 2684, - 413493, - 9519, - 24250, - 31028 - ], - 0, - "default.jpg", - 85, - "che_250626_vjy4", - 373, - [ - "hall:betrate", - "hall:dex2" - ] - ], [ "【86기】Hide_D", 76, @@ -131049,1233 +106695,6 @@ "hall:tlrate" ] ], - [ - "【90기】슈슈슈슈퍼잼민", - 82, - 93, - 15, - "che_event_돌격", - [ - 1269794, - 20006, - 34707, - 122232, - 54392 - ], - 1, - "7a1d7be1.png?=20251030", - 90, - "che_251030_07JH", - 5, - [ - "hall:betgold", - "hall:betrate", - "hall:betwingold", - "hall:dex1", - "hall:dex5", - "hall:killcrew", - "hall:killnum", - "hall:killrate", - "hall:occupied", - "hall:tsrate", - "hall:warnum", - "hall:winrate" - ] - ], - [ - "【90기】평민킬러", - 79, - 94, - 15, - "che_event_필살", - [ - 1440557, - 28855, - 51396, - 128475, - 50451 - ], - 1, - "4a3cdec0.jpg?=20251030", - 90, - "che_251030_07JH", - 6, - [ - "chief:12", - "hall:betgold", - "hall:betrate", - "hall:betwin", - "hall:betwingold", - "hall:dedication", - "hall:dex1", - "hall:dex5", - "hall:experience", - "hall:killcrew", - "hall:killcrew_person", - "hall:killnum", - "hall:killrate", - "hall:killrate_person", - "hall:occupied", - "hall:tsrate", - "hall:warnum", - "hall:winrate" - ] - ], - [ - "【90기】마제", - 88, - 15, - 83, - "che_event_귀병", - [ - 23606, - 21088, - 7236, - 475706, - 16113 - ], - 0, - "default.jpg", - 90, - "che_251030_07JH", - 8, - [ - "hall:betgold", - "hall:betwin", - "hall:betwingold", - "hall:tlrate", - "hall:winrate" - ] - ], - [ - "【90기】사스케", - 78, - 16, - 94, - "che_event_징병", - [ - 87451, - 49833, - 38337, - 1184080, - 54945 - ], - 1, - "377a21fc.jpg?=20250910", - 90, - "che_251030_07JH", - 11, - [ - "hall:betwin", - "hall:dex4", - "hall:dex5", - "hall:killcrew", - "hall:killcrew_person", - "hall:killnum", - "hall:warnum" - ] - ], - [ - "【90기】Hide_D", - 77, - 15, - 94, - "che_event_척사", - [ - 60929, - 26967, - 2635, - 570802, - 54286 - ], - 1, - "4569d848.png?=20230612", - 90, - "che_251030_07JH", - 13, - [ - "hall:dedication", - "hall:dex5" - ] - ], - [ - "【90기】민트토끼", - 15, - 82, - 88, - "che_event_의술", - [ - 0, - 0, - 0, - 0, - 0 - ], - 1, - "1077b86a.jpg?=20251030", - 90, - "che_251030_07JH", - 15, - [ - "hall:dedication" - ] - ], - [ - "【90기】테호", - 92, - 79, - 15, - "che_event_저격", - [ - 71124, - 689730, - 18444, - 127313, - 27753 - ], - 1, - "3cef5bbe.png?=20251030", - 90, - "che_251030_07JH", - 16, - [ - "hall:dex2", - "hall:tlrate" - ] - ], - [ - "【90기】덕구", - 81, - 89, - 15, - "che_event_무쌍", - [ - 848419, - 30544, - 59182, - 100827, - 26795 - ], - 0, - "default.jpg", - 90, - "che_251030_07JH", - 19, - [ - "hall:dex1", - "hall:dex3" - ] - ], - [ - "【90기】밤", - 80, - 15, - 92, - "che_event_필살", - [ - 49748, - 38472, - 44398, - 834195, - 65841 - ], - 1, - "3a69ab5f.png?=20251111", - 90, - "che_251030_07JH", - 26, - [ - "hall:betgold", - "hall:dex5", - "hall:experience", - "hall:killrate", - "hall:occupied", - "hall:ttrate", - "hall:winrate" - ] - ], - [ - "【90기】병리학적자세", - 77, - 15, - 94, - "che_event_집중", - [ - 50582, - 44876, - 32002, - 668537, - 18589 - ], - 1, - "3679089.jpg?=20180629", - 90, - "che_251030_07JH", - 29, - [ - "hall:betgold", - "hall:betrate", - "hall:betwin", - "hall:betwingold", - "hall:tirate" - ] - ], - [ - "【90기】Carpenter", - 81, - 90, - 15, - "che_event_돌격", - [ - 550582, - 15628, - 66900, - 103807, - 14645 - ], - 0, - "default.jpg", - 90, - "che_251030_07JH", - 30, - [ - "hall:dex1", - "hall:dex3", - "hall:tsrate" - ] - ], - [ - "【90기】마요이", - 15, - 74, - 95, - "che_event_신산", - [ - 0, - 0, - 0, - 0, - 0 - ], - 1, - "2b49c945.png?=20230921", - 90, - "che_251030_07JH", - 32, - [ - "hall:tirate" - ] - ], - [ - "【90기】냥냥냥", - 77, - 91, - 16, - "che_event_필살", - [ - 67970, - 55629, - 748467, - 151362, - 60139 - ], - 1, - "6b2b55c5.png?=20250926", - 90, - "che_251030_07JH", - 35, - [ - "chief:8", - "hall:dedication", - "hall:dex2", - "hall:dex3", - "hall:dex5", - "hall:killrate", - "hall:killrate_person", - "hall:tsrate" - ] - ], - [ - "【90기】와일드플라워", - 77, - 16, - 91, - "che_event_집중", - [ - 34145, - 31805, - 36298, - 967478, - 40488 - ], - 0, - "default.jpg", - 90, - "che_251030_07JH", - 41, - [ - "chief:11", - "hall:dedication", - "hall:dex4", - "hall:experience", - "hall:killrate", - "hall:killrate_person" - ] - ], - [ - "【90기】바나낫", - 80, - 91, - 16, - "che_event_징병", - [ - 955130, - 71481, - 191357, - 146411, - 26817 - ], - 1, - "073c8444.gif?=20251025", - 90, - "che_251030_07JH", - 45, - [ - "hall:dex1", - "hall:dex2", - "hall:dex3", - "hall:killcrew_person", - "hall:tsrate", - "hall:warnum" - ] - ], - [ - "【90기】임사영", - 80, - 16, - 90, - "che_event_필살", - [ - 40274, - 27392, - 71560, - 744546, - 30854 - ], - 1, - "f0c94d4f.jpg?=20250915", - 90, - "che_251030_07JH", - 46, - [ - "hall:dex3", - "hall:ttrate" - ] - ], - [ - "【90기】미스티", - 77, - 17, - 92, - "che_event_환술", - [ - 34784, - 9800, - 11413, - 477801, - 49839 - ], - 1, - "1aadcba.png?=20180908", - 90, - "che_251030_07JH", - 47, - [ - "hall:firenum" - ] - ], - [ - "【90기】서희", - 79, - 16, - 92, - "che_event_징병", - [ - 56169, - 62223, - 20682, - 1173273, - 45455 - ], - 0, - "default.jpg", - 90, - "che_251030_07JH", - 53, - [ - "hall:dex2", - "hall:dex4", - "hall:killcrew", - "hall:killcrew_person", - "hall:killnum", - "hall:warnum" - ] - ], - [ - "【90기】호나", - 79, - 93, - 15, - "che_event_돌격", - [ - 225616, - 63045, - 963976, - 205872, - 66315 - ], - 0, - "default.jpg", - 90, - "che_251030_07JH", - 54, - [ - "chief:10", - "hall:dedication", - "hall:dex2", - "hall:dex3", - "hall:dex5", - "hall:experience", - "hall:killnum", - "hall:killrate", - "hall:killrate_person", - "hall:tsrate", - "hall:winrate" - ] - ], - [ - "【90기】카이스트", - 77, - 15, - 95, - "che_event_집중", - [ - 46094, - 53082, - 24301, - 980767, - 71069 - ], - 1, - "e7e27cd6.jpg?=20221125", - 90, - "che_251030_07JH", - 58, - [ - "chief:9", - "hall:betgold", - "hall:betrate", - "hall:betwin", - "hall:betwingold", - "hall:dedication", - "hall:dex4", - "hall:dex5", - "hall:experience", - "hall:killrate", - "hall:killrate_person", - "hall:occupied", - "hall:tirate" - ] - ], - [ - "【90기】독구", - 78, - 15, - 94, - "che_event_신중", - [ - 38937, - 25486, - 47924, - 1052317, - 23797 - ], - 1, - "c26cbded.png?=20251029", - 90, - "che_251030_07JH", - 59, - [ - "hall:betgold", - "hall:betrate", - "hall:betwin", - "hall:betwingold", - "hall:dex4", - "hall:experience", - "hall:killnum", - "hall:killrate", - "hall:killrate_person", - "hall:occupied", - "hall:winrate" - ] - ], - [ - "【90기】강유", - 91, - 16, - 82, - "che_event_집중", - [ - 72634, - 12751, - 15796, - 1248982, - 29868 - ], - 1, - "79e150d0.jpg?=20230921", - 90, - "che_251030_07JH", - 60, - [ - "hall:betrate", - "hall:dex4", - "hall:killcrew", - "hall:killcrew_person", - "hall:killnum", - "hall:tlrate", - "hall:ttrate", - "hall:warnum", - "hall:winrate" - ] - ], - [ - "【90기】해원", - 90, - 16, - 85, - "che_event_징병", - [ - 77127, - 57044, - 33910, - 1646320, - 25168 - ], - 1, - "1a55c2c1.jpg?=20251030", - 90, - "che_251030_07JH", - 61, - [ - "chief:5", - "hall:dex2", - "hall:dex4", - "hall:experience", - "hall:killcrew", - "hall:killcrew_person", - "hall:killnum", - "hall:warnum" - ] - ], - [ - "【90기】NK", - 93, - 77, - 15, - "che_event_척사", - [ - 896507, - 13631, - 29004, - 202433, - 54257 - ], - 0, - "default.jpg", - 90, - "che_251030_07JH", - 62, - [ - "chief:6", - "hall:dex1", - "hall:dex5", - "hall:experience", - "hall:occupied", - "hall:tlrate" - ] - ], - [ - "【90기】Redbull", - 96, - 74, - 16, - "che_event_돌격", - [ - 64778, - 77734, - 59869, - 70511, - 715924 - ], - 0, - "default.jpg", - 90, - "che_251030_07JH", - 63, - [ - "hall:betrate", - "hall:dex2", - "hall:dex3", - "hall:dex5", - "hall:experience", - "hall:occupied", - "hall:tlrate" - ] - ], - [ - "【90기】제갈량", - 79, - 15, - 93, - "che_event_척사", - [ - 11376, - 20922, - 30641, - 860418, - 33069 - ], - 1, - "7f572ab8.jpg?=20251030", - 90, - "che_251030_07JH", - 64, - [ - "chief:7", - "hall:dedication", - "hall:dex4", - "hall:killrate_person" - ] - ], - [ - "【90기】Sase", - 78, - 17, - 91, - "che_event_환술", - [ - 24240, - 43710, - 36427, - 781563, - 18982 - ], - 1, - "6d261e89.jpg?=20250926", - 90, - "che_251030_07JH", - 65, - [ - "hall:betgold", - "hall:betrate", - "hall:betwin", - "hall:betwingold" - ] - ], - [ - "【90기】영포티", - 95, - 76, - 15, - "che_event_필살", - [ - 1038702, - 14236, - 18962, - 74453, - 35418 - ], - 1, - "1f615248.webp?=20251029", - 90, - "che_251030_07JH", - 66, - [ - "hall:betgold", - "hall:betrate", - "hall:betwin", - "hall:betwingold", - "hall:dex1", - "hall:occupied", - "hall:tlrate" - ] - ], - [ - "【90기】ㅇㅅㅇ", - 82, - 16, - 93, - "che_event_징병", - [ - 18391, - 44703, - 14036, - 1084864, - 16154 - ], - 0, - "default.jpg", - 90, - "che_251030_07JH", - 67, - [ - "hall:dex4", - "hall:killcrew", - "hall:killcrew_person", - "hall:killnum", - "hall:ttrate", - "hall:warnum" - ] - ], - [ - "【90기】불패", - 80, - 92, - 15, - "che_event_필살", - [ - 170755, - 1121337, - 14178, - 100607, - 32792 - ], - 1, - "88bb8fe0.jpg?=20250911", - 90, - "che_251030_07JH", - 68, - [ - "hall:betgold", - "hall:betwingold", - "hall:dex2", - "hall:killcrew", - "hall:killcrew_person", - "hall:killnum", - "hall:killrate", - "hall:killrate_person", - "hall:tsrate", - "hall:winrate" - ] - ], - [ - "【90기】혼마 메이코", - 89, - 81, - 15, - "che_event_위압", - [ - 701900, - 17532, - 14473, - 65349, - 29893 - ], - 1, - "2f7f806a.webp?=20251108", - 90, - "che_251030_07JH", - 69, - [ - "hall:dex1", - "hall:tlrate", - "hall:ttrate" - ] - ], - [ - "【90기】원해", - 94, - 79, - 15, - "che_event_척사", - [ - 824238, - 40569, - 252972, - 127496, - 46049 - ], - 1, - "fd55ff5f.jpg?=20251030", - 90, - "che_251030_07JH", - 70, - [ - "hall:betrate", - "hall:betwingold", - "hall:dex1", - "hall:dex3", - "hall:killcrew", - "hall:killcrew_person", - "hall:occupied", - "hall:tlrate", - "hall:warnum" - ] - ], - [ - "【90기】크리스 범스테드", - 82, - 89, - 15, - "che_event_척사", - [ - 48744, - 53963, - 680603, - 72326, - 17239 - ], - 1, - "16fd65e4.jpg?=20251030", - 90, - "che_251030_07JH", - 71, - [ - "hall:dex2", - "hall:dex3", - "hall:tsrate", - "hall:ttrate" - ] - ], - [ - "【90기】제갈여포", - 92, - 81, - 15, - "che_event_징병", - [ - 1039048, - 22030, - 25839, - 141448, - 12146 - ], - 1, - "e21b5ca3.jpg?=20251031", - 90, - "che_251030_07JH", - 74, - [ - "hall:dex1", - "hall:experience", - "hall:killcrew", - "hall:killcrew_person", - "hall:tlrate", - "hall:warnum" - ] - ], - [ - "【90기】셀레미", - 81, - 15, - 93, - "che_event_집중", - [ - 71164, - 49490, - 20870, - 1005926, - 34095 - ], - 1, - "d7b6d83d.jpg?=20250925", - 90, - "che_251030_07JH", - 77, - [ - "hall:dex4", - "hall:killrate_person", - "hall:tirate" - ] - ], - [ - "【90기】로비", - 15, - 73, - 97, - "che_event_신산", - [ - 0, - 0, - 0, - 0, - 0 - ], - 1, - "71751125.png?=20240823", - 90, - "che_251030_07JH", - 151, - [ - "hall:dedication", - "hall:tirate", - "hall:ttrate" - ] - ], - [ - "【90기】대교", - 89, - 16, - 82, - "che_event_환술", - [ - 84418, - 13875, - 50908, - 804334, - 13026 - ], - 1, - "a53ab5ef.jpg?=20241010", - 90, - "che_251030_07JH", - 160, - [ - "hall:tlrate" - ] - ], - [ - "【90기】조승상", - 80, - 93, - 15, - "che_event_척사", - [ - 26369, - 46579, - 789041, - 115103, - 26373 - ], - 1, - "6f27503f.png?=20240322", - 90, - "che_251030_07JH", - 164, - [ - "hall:dex3", - "hall:tsrate", - "hall:ttrate" - ] - ], - [ - "【90기】돌아온너구리", - 15, - 71, - 98, - "che_event_환술", - [ - 0, - 0, - 0, - 0, - 0 - ], - 1, - "ed33d97a.png?=20251012", - 90, - "che_251030_07JH", - 167, - [ - "hall:tirate" - ] - ], - [ - "【90기】네시", - 79, - 16, - 93, - "che_event_집중", - [ - 64600, - 24300, - 19663, - 581640, - 22810 - ], - 1, - "63f1c106.png?=20230223", - 90, - "che_251030_07JH", - 170, - [ - "hall:betwin", - "hall:tirate", - "hall:ttrate" - ] - ], - [ - "【90기】연구생", - 15, - 75, - 94, - "che_event_집중", - [ - 0, - 0, - 0, - 0, - 0 - ], - 0, - "default.jpg", - 90, - "che_251030_07JH", - 177, - [ - "hall:firenum", - "hall:tirate" - ] - ], - [ - "【90기】최진리", - 77, - 16, - 93, - "che_event_집중", - [ - 25876, - 7044, - 9805, - 691047, - 41251 - ], - 1, - "c2356432.png?=20250929", - 90, - "che_251030_07JH", - 220, - [ - "hall:killrate", - "hall:killrate_person", - "hall:occupied", - "hall:winrate" - ] - ], - [ - "【90기】황혼중", - 78, - 15, - 93, - "che_event_반계", - [ - 9616, - 9990, - 31904, - 496776, - 6365 - ], - 1, - "e5161df9.jpg?=20231110", - 90, - "che_251030_07JH", - 223, - [ - "hall:tirate", - "hall:ttrate" - ] - ], - [ - "【90기】퍄퍄", - 79, - 15, - 92, - "che_event_필살", - [ - 9983, - 10079, - 15460, - 444641, - 9767 - ], - 0, - "default.jpg", - 90, - "che_251030_07JH", - 259, - [ - "hall:tirate", - "hall:winrate" - ] - ], - [ - "【90기】송탄강", - 16, - 88, - 80, - "che_event_견고", - [ - 0, - 0, - 0, - 0, - 0 - ], - 1, - "55516eae.png?=20251102", - 90, - "che_251030_07JH", - 282, - [ - "hall:betwin", - "hall:tsrate" - ] - ], - [ - "【90기】감흥", - 20, - 73, - 87, - "che_event_필살", - [ - 23671, - 318768, - 5507, - 28400, - 9087 - ], - 0, - "default.jpg", - 90, - "che_251030_07JH", - 439, - [ - "hall:dex2" - ] - ], - [ - "【90기】무량공수", - 16, - 71, - 91, - "che_event_신산", - [ - 0, - 0, - 0, - 0, - 0 - ], - 0, - "default.jpg", - 90, - "che_251030_07JH", - 501, - [ - "hall:dedication" - ] - ], [ "【91기】정승필", 77, @@ -137274,1316 +111693,6 @@ "hall:tlrate" ] ], - [ - "【95기】카이스트", - 81, - 15, - 96, - "che_event_징병", - [ - 73987, - 26839, - 57176, - 1010659, - 46942 - ], - 1, - "e7e27cd6.jpg?=20221125", - 95, - "che_260305_iIyj", - 3, - [ - "hall:dex4" - ] - ], - [ - "【95기】마지텐 시아", - 80, - 91, - 17, - "che_event_저격", - [ - 125477, - 793196, - 33669, - 101230, - 33699 - ], - 1, - "44b6e96e.jpg?=20260305", - 95, - "che_260305_iIyj", - 9, - [ - "hall:dex2", - "hall:tsrate" - ] - ], - [ - "【95기】바쿠", - 84, - 100, - 15, - "che_event_무쌍", - [ - 136632, - 118841, - 3112032, - 186973, - 171114 - ], - 1, - "e9d33498.png?=20260305", - 95, - "che_260305_iIyj", - 11, - [ - "chief:10", - "hall:betgold", - "hall:betwingold", - "hall:dex2", - "hall:dex3", - "hall:dex5", - "hall:experience", - "hall:killcrew", - "hall:killcrew_person", - "hall:killnum", - "hall:killrate", - "hall:killrate_person", - "hall:occupied", - "hall:tsrate", - "hall:warnum", - "hall:winrate" - ] - ], - [ - "【95기】100M", - 94, - 15, - 81, - "che_event_집중", - [ - 134695, - 21158, - 42232, - 972603, - 114579 - ], - 0, - "default.jpg", - 95, - "che_260305_iIyj", - 12, - [ - "hall:dex4" - ] - ], - [ - "【95기】와일드플라워", - 79, - 15, - 93, - "che_event_신중", - [ - 78447, - 20645, - 31586, - 882368, - 75320 - ], - 0, - "default.jpg", - 95, - "che_260305_iIyj", - 15, - [ - "hall:tirate" - ] - ], - [ - "【95기】안함", - 92, - 86, - 15, - "che_event_의술", - [ - 2163150, - 40067, - 54572, - 115861, - 83642 - ], - 0, - "default.jpg", - 95, - "che_260305_iIyj", - 17, - [ - "chief:8", - "hall:betgold", - "hall:betwingold", - "hall:dedication", - "hall:dex1", - "hall:experience", - "hall:killcrew", - "hall:killcrew_person", - "hall:killnum", - "hall:tlrate", - "hall:warnum" - ] - ], - [ - "【95기】마제", - 67, - 13, - 79, - "che_event_귀병", - [ - 21538, - 6404, - 13236, - 224658, - 14263 - ], - 0, - "default.jpg", - 95, - "che_260305_iIyj", - 18, - [ - "hall:tirate", - "hall:ttrate" - ] - ], - [ - "【95기】바나낫", - 106, - 77, - 15, - "che_event_필살", - [ - 105667, - 103338, - 119859, - 160664, - 2858806 - ], - 1, - "073c8444.gif?=20251025", - 95, - "che_260305_iIyj", - 19, - [ - "hall:dex2", - "hall:dex5", - "hall:killcrew", - "hall:killcrew_person", - "hall:killnum", - "hall:tlrate", - "hall:ttrate", - "hall:warnum" - ] - ], - [ - "【95기】불패", - 80, - 15, - 96, - "che_event_필살", - [ - 94109, - 42924, - 47155, - 1115588, - 110176 - ], - 1, - "f08fdbc4.jpg?=20251208", - 95, - "che_260305_iIyj", - 20, - [ - "hall:dex4", - "hall:experience" - ] - ], - [ - "【95기】Hide_D", - 81, - 15, - 94, - "che_event_환술", - [ - 101528, - 29630, - 19672, - 701499, - 78506 - ], - 1, - "4569d848.png?=20230612", - 95, - "che_260305_iIyj", - 23, - [ - "hall:tirate" - ] - ], - [ - "【95기】리신", - 70, - 82, - 13, - "che_event_필살", - [ - 91229, - 14819, - 722952, - 82104, - 55944 - ], - 1, - "6283afef.png?=20260309", - 95, - "che_260305_iIyj", - 24, - [ - "chief:6", - "hall:betgold", - "hall:betrate", - "hall:betwin", - "hall:betwingold", - "hall:dedication", - "hall:dex3", - "hall:killrate", - "hall:killrate_person", - "hall:occupied", - "hall:tsrate", - "hall:winrate" - ] - ], - [ - "【95기】임사영", - 95, - 69, - 13, - "che_event_징병", - [ - 169651, - 73501, - 76698, - 128961, - 1710594 - ], - 1, - "918d304e.jpg?=20251209", - 95, - "che_260305_iIyj", - 25, - [ - "hall:betrate", - "hall:dex2", - "hall:dex3", - "hall:dex5", - "hall:experience", - "hall:killcrew", - "hall:killcrew_person", - "hall:killnum", - "hall:occupied", - "hall:tlrate", - "hall:ttrate", - "hall:warnum", - "hall:winrate" - ] - ], - [ - "【95기】조승상", - 80, - 94, - 16, - "che_event_징병", - [ - 1568147, - 15490, - 34273, - 185863, - 42256 - ], - 1, - "f553c160.jpg?=20260327", - 95, - "che_260305_iIyj", - 27, - [ - "hall:dex1" - ] - ], - [ - "【95기】야곤", - 87, - 90, - 15, - "che_event_무쌍", - [ - 1542806, - 14801, - 174285, - 114921, - 53331 - ], - 1, - "8b70d1b5.jpg?=20260301", - 95, - "che_260305_iIyj", - 33, - [ - "hall:dex1", - "hall:dex3", - "hall:killrate", - "hall:killrate_person", - "hall:tsrate", - "hall:ttrate" - ] - ], - [ - "【95기】강유", - 77, - 13, - 75, - "che_event_필살", - [ - 64534, - 12903, - 21998, - 745257, - 33324 - ], - 1, - "79e150d0.jpg?=20230921", - 95, - "che_260305_iIyj", - 34, - [ - "hall:dedication", - "hall:dex4", - "hall:experience", - "hall:killcrew", - "hall:killnum", - "hall:killrate", - "hall:killrate_person", - "hall:winrate" - ] - ], - [ - "【95기】프로랜임러", - 94, - 76, - 16, - "che_event_징병", - [ - 730768, - 15788, - 66347, - 126939, - 225598 - ], - 0, - "default.jpg", - 95, - "che_260305_iIyj", - 36, - [ - "hall:dex1", - "hall:dex5" - ] - ], - [ - "【95기】신입생 독구", - 17, - 74, - 96, - "che_event_의술", - [ - 0, - 0, - 0, - 0, - 0 - ], - 1, - "5283daf7.png?=20240511", - 95, - "che_260305_iIyj", - 39, - [ - "hall:betrate", - "hall:ttrate" - ] - ], - [ - "【95기】Ari", - 90, - 82, - 15, - "che_event_척사", - [ - 22131, - 27806, - 907495, - 46143, - 62670 - ], - 0, - "default.jpg", - 95, - "che_260305_iIyj", - 41, - [ - "hall:dex3", - "hall:occupied", - "hall:tlrate" - ] - ], - [ - "【95기】Navy마초", - 89, - 79, - 17, - "che_event_의술", - [ - 620192, - 15740, - 33782, - 110069, - 72245 - ], - 1, - "37644ed3.png?=20230831", - 95, - "che_260305_iIyj", - 43, - [ - "hall:dex1", - "hall:ttrate" - ] - ], - [ - "【95기】퍄퍄", - 79, - 95, - 15, - "che_event_척사", - [ - 36758, - 29396, - 1069128, - 132622, - 82105 - ], - 1, - "1364113e.png?=20250621", - 95, - "che_260305_iIyj", - 44, - [ - "hall:dex3", - "hall:killrate", - "hall:killrate_person", - "hall:tsrate", - "hall:winrate" - ] - ], - [ - "【95기】감흥", - 67, - 14, - 80, - "che_event_신중", - [ - 64124, - 14126, - 20587, - 597479, - 43650 - ], - 1, - "2a79fbad.jpg?=20260131", - 95, - "che_260305_iIyj", - 45, - [ - "chief:12", - "hall:betrate", - "hall:dedication", - "hall:dex4" - ] - ], - [ - "【95기】어벙", - 89, - 83, - 15, - "che_event_견고", - [ - 266989, - 264524, - 545230, - 135435, - 60752 - ], - 0, - "default.jpg", - 95, - "che_260305_iIyj", - 46, - [ - "hall:dex2", - "hall:dex3" - ] - ], - [ - "【95기】송탄강", - 89, - 15, - 82, - "che_event_신산", - [ - 75303, - 20076, - 21095, - 577087, - 35142 - ], - 1, - "55516eae.png?=20251102", - 95, - "che_260305_iIyj", - 47, - [ - "hall:betwin", - "hall:tlrate" - ] - ], - [ - "【95기】자아이드베르", - 67, - 14, - 82, - "che_event_징병", - [ - 34432, - 20005, - 28424, - 859119, - 43110 - ], - 1, - "0e4c2727.jpg?=20260305", - 95, - "che_260305_iIyj", - 48, - [ - "hall:betgold", - "hall:betwingold", - "hall:dedication", - "hall:dex4", - "hall:killcrew_person", - "hall:ttrate", - "hall:warnum" - ] - ], - [ - "【95기】프리렌", - 80, - 15, - 99, - "che_event_집중", - [ - 54277, - 17668, - 59280, - 1163103, - 54684 - ], - 1, - "79ca0370.gif?=20260320", - 95, - "che_260305_iIyj", - 49, - [ - "hall:betgold", - "hall:betwin", - "hall:betwingold", - "hall:dex4", - "hall:firenum", - "hall:occupied", - "hall:ttrate", - "hall:winrate" - ] - ], - [ - "【95기】뗑까", - 82, - 16, - 93, - "che_event_환술", - [ - 129381, - 31959, - 41695, - 1347805, - 149539 - ], - 1, - "134c3172.png?=20260320", - 95, - "che_260305_iIyj", - 50, - [ - "chief:7", - "hall:betrate", - "hall:betwin", - "hall:dex4", - "hall:dex5", - "hall:experience" - ] - ], - [ - "【95기】단종", - 67, - 84, - 13, - "che_event_필살", - [ - 21261, - 25506, - 686525, - 55695, - 44313 - ], - 1, - "13660541.png?=20260305", - 95, - "che_260305_iIyj", - 51, - [ - "hall:betgold", - "hall:betwin", - "hall:betwingold", - "hall:dex3", - "hall:tsrate" - ] - ], - [ - "【95기】장원영", - 80, - 15, - 91, - "che_event_필살", - [ - 82578, - 51416, - 47618, - 917595, - 77150 - ], - 1, - "837ecd58.jpg?=20260313", - 95, - "che_260305_iIyj", - 52, - [ - "hall:occupied" - ] - ], - [ - "【95기】새참", - 68, - 82, - 13, - "che_event_필살", - [ - 40146, - 733677, - 9357, - 17605, - 54116 - ], - 0, - "default.jpg", - 95, - "che_260305_iIyj", - 53, - [ - "hall:dedication", - "hall:dex2", - "hall:killrate", - "hall:killrate_person", - "hall:tsrate", - "hall:winrate" - ] - ], - [ - "【95기】병리학적자세", - 67, - 13, - 82, - "che_event_귀병", - [ - 41961, - 13176, - 18664, - 445635, - 29690 - ], - 1, - "3679089.jpg?=20180629", - 95, - "che_260305_iIyj", - 54, - [ - "hall:betgold", - "hall:betwin", - "hall:betwingold", - "hall:tirate", - "hall:ttrate" - ] - ], - [ - "【95기】ㅊㄹㅊㄹ", - 81, - 93, - 16, - "che_event_필살", - [ - 65934, - 1189158, - 45493, - 122323, - 62366 - ], - 1, - "63f1c106.png?=20230223", - 95, - "che_260305_iIyj", - 55, - [ - "hall:dex2", - "hall:killrate_person", - "hall:tsrate" - ] - ], - [ - "【95기】대교", - 96, - 78, - 15, - "che_event_필살", - [ - 995892, - 9108, - 50686, - 113883, - 43881 - ], - 1, - "a53ab5ef.jpg?=20241010", - 95, - "che_260305_iIyj", - 56, - [ - "hall:dex1", - "hall:tlrate" - ] - ], - [ - "【95기】시크릿 커리큘럼", - 72, - 78, - 13, - "che_event_견고", - [ - 506006, - 10343, - 11151, - 33709, - 17486 - ], - 0, - "default.jpg", - 95, - "che_260305_iIyj", - 57, - [ - "hall:dex1", - "hall:killrate", - "hall:ttrate" - ] - ], - [ - "【95기】ㅇㅅㅇ", - 82, - 15, - 92, - "che_event_집중", - [ - 55545, - 21195, - 31151, - 881876, - 46926 - ], - 0, - "default.jpg", - 95, - "che_260305_iIyj", - 58, - [ - "hall:tirate" - ] - ], - [ - "【95기】사스케", - 108, - 70, - 15, - "che_event_징병", - [ - 126605, - 40572, - 151931, - 135664, - 1608750 - ], - 1, - "1870de1b.jpg?=20260130", - 95, - "che_260305_iIyj", - 60, - [ - "hall:betgold", - "hall:betwin", - "hall:dex5", - "hall:killcrew", - "hall:killcrew_person", - "hall:killnum", - "hall:occupied", - "hall:tlrate", - "hall:warnum" - ] - ], - [ - "【95기】피곤스곤스", - 80, - 15, - 97, - "che_event_필살", - [ - 124534, - 68883, - 75981, - 1443779, - 127289 - ], - 1, - "0d676c99.png?=20260305", - 95, - "che_260305_iIyj", - 61, - [ - "chief:5", - "hall:betgold", - "hall:betrate", - "hall:betwin", - "hall:betwingold", - "hall:dex4", - "hall:dex5", - "hall:experience", - "hall:winrate" - ] - ], - [ - "【95기】올해의 색", - 110, - 80, - 15, - "che_event_징병", - [ - 355790, - 152192, - 122130, - 192949, - 3582591 - ], - 1, - "408cfe75.jpg?=20260305", - 95, - "che_260305_iIyj", - 62, - [ - "hall:betgold", - "hall:betrate", - "hall:betwin", - "hall:betwingold", - "hall:dex1", - "hall:dex2", - "hall:dex5", - "hall:experience", - "hall:killcrew", - "hall:killcrew_person", - "hall:killnum", - "hall:killrate", - "hall:killrate_person", - "hall:occupied", - "hall:tlrate", - "hall:warnum", - "hall:winrate" - ] - ], - [ - "【95기】사마단", - 69, - 14, - 79, - "che_event_필살", - [ - 46259, - 21847, - 18981, - 479069, - 70906 - ], - 0, - "default.jpg", - 95, - "che_260305_iIyj", - 71, - [ - "chief:9", - "hall:dex5", - "hall:tirate" - ] - ], - [ - "【95기】냥냥", - 91, - 80, - 16, - "che_event_돌격", - [ - 70724, - 25545, - 612319, - 86423, - 110930 - ], - 1, - "90370eaa.png?=20260308", - 95, - "che_260305_iIyj", - 73, - [ - "hall:dex3", - "hall:tlrate" - ] - ], - [ - "【95기】NK", - 15, - 81, - 90, - "che_event_필살", - [ - 0, - 0, - 0, - 0, - 0 - ], - 1, - "b1dd7d45.jpg?=20260205", - 95, - "che_260305_iIyj", - 74, - [ - "hall:dedication" - ] - ], - [ - "【95기】마요이", - 15, - 72, - 99, - "che_event_집중", - [ - 0, - 0, - 0, - 0, - 0 - ], - 1, - "2b49c945.png?=20230921", - 95, - "che_260305_iIyj", - 75, - [ - "hall:dedication", - "hall:tirate" - ] - ], - [ - "【95기】주하", - 87, - 80, - 15, - "che_event_필살", - [ - 211083, - 471919, - 23621, - 106099, - 47764 - ], - 0, - "default.jpg", - 95, - "che_260305_iIyj", - 78, - [ - "hall:dex2" - ] - ], - [ - "【95기】이순신", - 83, - 97, - 15, - "che_event_견고", - [ - 2158291, - 17878, - 142183, - 99701, - 23286 - ], - 0, - "default.jpg", - 95, - "che_260305_iIyj", - 159, - [ - "hall:betrate", - "hall:betwingold", - "hall:dex1", - "hall:killcrew", - "hall:killcrew_person", - "hall:killnum", - "hall:tsrate", - "hall:warnum" - ] - ], - [ - "【95기】외심장", - 83, - 15, - 96, - "che_event_집중", - [ - 97830, - 40545, - 56075, - 1579246, - 20052 - ], - 1, - "36110cd.jpg?=20180826", - 95, - "che_260305_iIyj", - 191, - [ - "hall:dex4", - "hall:killcrew", - "hall:killcrew_person", - "hall:killnum", - "hall:killrate", - "hall:killrate_person", - "hall:occupied", - "hall:warnum", - "hall:winrate" - ] - ], - [ - "【95기】호르무즈", - 80, - 91, - 15, - "che_event_척사", - [ - 12523, - 32291, - 613346, - 112011, - 32454 - ], - 0, - "default.jpg", - 95, - "che_260305_iIyj", - 202, - [ - "hall:dex3", - "hall:tsrate" - ] - ], - [ - "【95기】독구", - 108, - 72, - 15, - "che_event_징병", - [ - 132309, - 91701, - 107565, - 188687, - 3377780 - ], - 1, - "75bb5ce4.png?=20260227", - 95, - "che_260305_iIyj", - 203, - [ - "chief:11", - "hall:betrate", - "hall:dex2", - "hall:dex5", - "hall:experience", - "hall:killcrew", - "hall:killcrew_person", - "hall:killnum", - "hall:killrate", - "hall:killrate_person", - "hall:occupied", - "hall:tlrate", - "hall:warnum" - ] - ], - [ - "【95기】최진리", - 92, - 78, - 15, - "che_event_격노", - [ - 495957, - 10542, - 18713, - 49898, - 82990 - ], - 1, - "c2356432.png?=20250929", - 95, - "che_260305_iIyj", - 261, - [ - "hall:dex1" - ] - ], - [ - "【95기】셀레미", - 16, - 74, - 96, - "che_event_필살", - [ - 0, - 0, - 0, - 0, - 0 - ], - 1, - "91c55fbe.jpg?=20260205", - 95, - "che_260305_iIyj", - 268, - [ - "hall:betrate", - "hall:dedication" - ] - ], - [ - "【95기】펫", - 16, - 76, - 95, - "che_event_척사", - [ - 0, - 0, - 0, - 0, - 0 - ], - 1, - "5cedbb3.jpg?=20190817", - 95, - "che_260305_iIyj", - 287, - [ - "hall:dedication", - "hall:experience", - "hall:tirate" - ] - ], - [ - "【95기】가시춘", - 15, - 76, - 92, - "che_event_신중", - [ - 0, - 0, - 0, - 0, - 0 - ], - 1, - "0b5811c7.jpg?=20260308", - 95, - "che_260305_iIyj", - 490, - [ - "hall:tirate" - ] - ], - [ - "【95기】야한거보면짖는개", - 77, - 16, - 90, - "che_event_신산", - [ - 79538, - 34628, - 40780, - 552140, - 77439 - ], - 0, - "default.jpg", - 95, - "che_260305_iIyj", - 689, - [ - "hall:betwin", - "hall:tirate" - ] - ], [ "【96기】김야곤", 93, diff --git a/src/build_centennial_allstar_pool.php b/src/build_centennial_allstar_pool.php index 4895fde9..96f1e5d8 100644 --- a/src/build_centennial_allstar_pool.php +++ b/src/build_centennial_allstar_pool.php @@ -26,6 +26,11 @@ const OUTPUT_COLUMNS = [ 'selectionReasons', ]; +const EXCLUDED_EVENT_PHASES = [ + 5, 10, 15, 20, 25, 30, 35, 40, 45, 50, + 55, 60, 65, 70, 75, 80, 85, 90, 95, +]; + const LEGACY_SPECIAL_WAR_MAP = [ 40 => 'che_event_귀병', 41 => 'che_event_신산', @@ -158,6 +163,7 @@ $rows = []; $seenSources = []; $nameIndexes = []; $phaseCounts = []; +$chiefCounts = []; $reasonCounts = []; $lineNo = 0; @@ -182,6 +188,9 @@ while (($line = fgets(STDIN)) !== false) { foreach ($row[11] as $reason) { $reasonGroup = str_starts_with($reason, 'chief:') ? 'chief' : 'hall'; $reasonCounts[$reasonGroup] = ($reasonCounts[$reasonGroup] ?? 0) + 1; + if ($reasonGroup === 'chief') { + $chiefCounts[$row[8]] = ($chiefCounts[$row[8]] ?? 0) + 1; + } } $rows[] = $row; } @@ -201,11 +210,18 @@ foreach ($nameIndexes as $generalName => $indexes) { } } ksort($phaseCounts, SORT_NUMERIC); -if (array_keys($phaseCounts) !== range(1, 99)) { - fail('input does not cover every phase from 1 through 99'); +$expectedPhases = array_values(array_diff(range(1, 99), EXCLUDED_EVENT_PHASES)); +if (array_keys($phaseCounts) !== $expectedPhases) { + fail('input does not cover every non-event phase from 1 through 99'); +} +foreach ($expectedPhases as $phase) { + if (($chiefCounts[$phase] ?? 0) !== 8) { + fail("phase {$phase}: expected 8 unification chiefs including the ruler"); + } } $payload = [ + 'excludedEventPhases' => EXCLUDED_EVENT_PHASES, 'columns' => OUTPUT_COLUMNS, 'data' => $rows, ]; diff --git a/src/centennial_allstar_candidates.sql b/src/centennial_allstar_candidates.sql index 4f195de9..005744fd 100644 --- a/src/centennial_allstar_candidates.sql +++ b/src/centennial_allstar_candidates.sql @@ -23,6 +23,7 @@ phases AS ( FROM emperior e LEFT JOIN ng_games g ON g.server_id = e.server_id WHERE e.no BETWEEN 1 AND 99 + AND MOD(e.no, 5) <> 0 ), hall_eligible AS ( SELECT diff --git a/tests/CentennialAllStarPoolTest.php b/tests/CentennialAllStarPoolTest.php index 9fa5af7a..e522594d 100644 --- a/tests/CentennialAllStarPoolTest.php +++ b/tests/CentennialAllStarPoolTest.php @@ -6,7 +6,7 @@ final class CentennialAllStarPoolTest extends TestCase { private const POOL_PATH = __DIR__ . '/../hwe/sammo/GeneralPool/Pool/UnderS100.json'; - public function testPoolCoversEveryCompletedPhase(): void + public function testPoolCoversEveryCompletedNonEventPhase(): void { $pool = json_decode( file_get_contents(self::POOL_PATH), @@ -31,10 +31,18 @@ final class CentennialAllStarPoolTest extends TestCase ], $pool['columns'] ); - self::assertCount(5757, $pool['data']); + self::assertCount(4682, $pool['data']); + self::assertSame( + [ + 5, 10, 15, 20, 25, 30, 35, 40, 45, 50, + 55, 60, 65, 70, 75, 80, 85, 90, 95, + ], + $pool['excludedEventPhases'] + ); $column = array_flip($pool['columns']); $phases = []; + $chiefCounts = []; $sourceKeys = []; $generalNames = []; foreach ($pool['data'] as $row) { @@ -57,11 +65,25 @@ final class CentennialAllStarPoolTest extends TestCase '/^(hall:[a-z0-9_]+|chief:(?:5|6|7|8|9|10|11|12))$/', $reason ); + if (str_starts_with($reason, 'chief:')) { + $chiefCounts[$phase] = ($chiefCounts[$phase] ?? 0) + 1; + } } } ksort($phases, SORT_NUMERIC); - self::assertSame(range(1, 99), array_keys($phases)); + $expectedPhases = array_values(array_diff( + range(1, 99), + $pool['excludedEventPhases'] + )); + self::assertSame($expectedPhases, array_keys($phases)); + foreach ($expectedPhases as $phase) { + self::assertSame( + 8, + $chiefCounts[$phase] ?? 0, + "phase {$phase} must include the ruler and seven chiefs" + ); + } } public function testEveryHistoricalEventSpecialHasAnImplementation(): void From 5ab08403c67dcef143ebf79b4e59311258c369e7 Mon Sep 17 00:00:00 2001 From: hided62 Date: Tue, 28 Jul 2026 16:02:14 +0000 Subject: [PATCH 04/15] =?UTF-8?q?feat:=20100=EA=B8=B0=20NPC=20=EB=8F=99?= =?UTF-8?q?=EC=A1=B0=EC=99=80=20=ED=9B=84=EB=B3=B4=20=EC=B6=94=EC=B2=A8=20?= =?UTF-8?q?=EB=B3=B4=EC=99=84?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- hwe/j_select_picked_general.php | 79 +- hwe/sammo/AbsFromUserPool.php | 10 +- hwe/sammo/CentennialAllStarGrowthService.php | 72 +- hwe/sammo/Command/General/che_인재탐색.php | 7 + hwe/sammo/Command/Nation/che_의병모집.php | 7 + .../Event/Action/AdvanceCentennialAllStar.php | 7 +- hwe/sammo/Event/Action/CreateManyNPC.php | 10 +- hwe/sammo/GeneralPool/Pool/UnderS100.json | 9364 ++++++++--------- hwe/sammo/GeneralPool/SPoolUnderU100.php | 31 + src/build_centennial_allstar_pool.php | 2 +- tests/CentennialAllStarGrowthTest.php | 34 + tests/CentennialAllStarPoolTest.php | 35 + 12 files changed, 4936 insertions(+), 4722 deletions(-) diff --git a/hwe/j_select_picked_general.php b/hwe/j_select_picked_general.php index b7ebbe8a..db4d4cac 100644 --- a/hwe/j_select_picked_general.php +++ b/hwe/j_select_picked_general.php @@ -6,19 +6,19 @@ include "func.php"; WebUtil::requireAJAX(); -$pick = Util::getPost('pick'); -$leadership = Util::getPost('leadership', 'int', GameConst::$defaultStatMin); -$isCentennialAllStar = CentennialAllStarGrowthService::isActive(); -$strength = Util::getPost( - $isCentennialAllStar ? 'strength' : 'leadership', - 'int', - GameConst::$defaultStatMin -); -$intel = Util::getPost( - $isCentennialAllStar ? 'intel' : 'leadership', - 'int', - GameConst::$defaultStatMin -); +$pick = Util::getPost('pick'); +$leadership = Util::getPost('leadership', 'int', GameConst::$defaultStatMin); +$isCentennialAllStar = CentennialAllStarGrowthService::isActive(); +$strength = Util::getPost( + $isCentennialAllStar ? 'strength' : 'leadership', + 'int', + GameConst::$defaultStatMin +); +$intel = Util::getPost( + $isCentennialAllStar ? 'intel' : 'leadership', + 'int', + GameConst::$defaultStatMin +); $personal = Util::getPost('personal', 'string', null); $use_own_picture = Util::getPost('use_own_picture', 'bool', false); @@ -87,19 +87,19 @@ if ($gencount >= $maxgeneral) { ]); } -$poolClass = getGeneralPoolClass(GameConst::$targetGeneralPool); -/** @var AbsGeneralPool */ -if ($isCentennialAllStar) { - $rng = new RandUtil(new LiteHashDRBG(Util::simpleSerialize( - UniqueConst::$hiddenSeed, - 'selectPickedGeneral', - $userID, - $pick - ))); - $pickedGeneral = new $poolClass($db, $rng, $selectInfo, $now); -} else { - $pickedGeneral = new $poolClass($db, $selectInfo, $now); -} +$poolClass = getGeneralPoolClass(GameConst::$targetGeneralPool); +/** @var AbsGeneralPool */ +if ($isCentennialAllStar) { + $rng = new RandUtil(new LiteHashDRBG(Util::simpleSerialize( + UniqueConst::$hiddenSeed, + 'selectPickedGeneral', + $userID, + $pick + ))); + $pickedGeneral = new $poolClass($db, $rng, $selectInfo, $now); +} else { + $pickedGeneral = new $poolClass($db, $selectInfo, $now); +} $builder = $pickedGeneral->getGeneralBuilder(); @@ -124,10 +124,10 @@ foreach(GameConst::$generalPoolAllowOption as $allowOption){ if(!$personal || $personal == 'Random'){ $personal = Util::choiceRandom(GameConst::$availablePersonality); } - $invalidPersonal = $isCentennialAllStar - ? !in_array($personal, GameConst::$availablePersonality, true) - : !array_search($personal, GameConst::$availablePersonality); - if($invalidPersonal){ + $invalidPersonal = $isCentennialAllStar + ? !in_array($personal, GameConst::$availablePersonality, true) + : !array_search($personal, GameConst::$availablePersonality); + if($invalidPersonal){ Json::die([ 'result'=>false, 'reason'=>'올바르지 않은 성격입니다.' @@ -145,6 +145,23 @@ $builder->setKillturn(5); $builder->setNPCType(0); $builder->setAuxVar('next_change', TimeUtil::nowAddMinutes(12 * $env['turnterm'])); $builder->fillRemainSpecAsZero($env); +if ($isCentennialAllStar) { + $candidateCities = $db->queryFirstColumn( + 'SELECT city FROM city WHERE level >= 5 AND level <= 6 AND nation = 0' + ); + if (!$candidateCities) { + $candidateCities = $db->queryFirstColumn( + 'SELECT city FROM city WHERE level >= 5 AND level <= 6' + ); + } + if (!$candidateCities) { + Json::die([ + 'result' => false, + 'reason' => '장수를 생성할 소·중성이 없습니다.', + ]); + } + $builder->setCityID($rng->choice($candidateCities)); +} $builder->build($env); $generalID = $builder->getGeneralID(); if(!$generalID){ @@ -189,4 +206,4 @@ $rootDB->insert('member_log', [ Json::die([ 'result'=>true, 'reason'=>'success' -]); +]); diff --git a/hwe/sammo/AbsFromUserPool.php b/hwe/sammo/AbsFromUserPool.php index 4fca0fac..274b79b0 100644 --- a/hwe/sammo/AbsFromUserPool.php +++ b/hwe/sammo/AbsFromUserPool.php @@ -8,6 +8,11 @@ use sammo\Util; abstract class AbsFromUserPool extends AbsGeneralPool{ + protected static function getCandidateWeight(array $info, int $owner): int|float + { + return array_sum($info['dex'] ?? []); + } + public function occupyGeneralName(): bool { $generalID = $this->getGeneralBuilder()->getGeneralID(); @@ -36,8 +41,7 @@ abstract class AbsFromUserPool extends AbsGeneralPool{ $pool = []; foreach($db->query('SELECT id, unique_name, info FROM select_pool WHERE reserved_until IS NULL AND general_id IS NULL', $pickCnt) as $cand){ $cand['info'] = Json::decode($cand['info']); - $dexTotal = array_sum($cand['info']['dex']); - $pool[] = [$cand, $dexTotal]; + $pool[] = [$cand, static::getCandidateWeight($cand['info'], $owner)]; } if(count($pool) < $pickCnt){ @@ -69,4 +73,4 @@ abstract class AbsFromUserPool extends AbsGeneralPool{ return array_values($result); } -} \ No newline at end of file +} diff --git a/hwe/sammo/CentennialAllStarGrowthService.php b/hwe/sammo/CentennialAllStarGrowthService.php index 23056488..fd7f39a2 100644 --- a/hwe/sammo/CentennialAllStarGrowthService.php +++ b/hwe/sammo/CentennialAllStarGrowthService.php @@ -9,6 +9,7 @@ final class CentennialAllStarGrowthService public const POOL_CLASS = 'SPoolUnderU100'; public const AUX_KEY = 'event100_allstar'; public const TRAIT_UNLOCK_PROGRESS = 0.4; + public const NPC_PROGRESS_MULTIPLIER = 0.9; private const STAT_KEYS = ['leadership', 'strength', 'intel']; private const DEX_KEYS = ['dex1', 'dex2', 'dex3', 'dex4', 'dex5']; @@ -35,18 +36,47 @@ final class CentennialAllStarGrowthService $builder->setAuxVar(self::AUX_KEY, self::initialAux($targetInfo)); } + public static function calculateProgress( + int $startYear, + int $year, + int $month, + float $progressMultiplier = 1.0 + ): float { + if ($progressMultiplier < 0 || $progressMultiplier > 1) { + throw new \InvalidArgumentException('progress multiplier must be between 0 and 1'); + } + return min( + 1, + CentennialAllStarGrowth::progress($startYear, $year, $month) + * $progressMultiplier + ); + } + /** * Mutates the General object but leaves persistence to the caller. * * @return array{progress:float,milestone:int,previousMilestone:int,targetChanged:bool,changed:bool} */ - public static function applyTarget(General $general, array $targetInfo, array $env): array + public static function applyTarget( + General $general, + array $targetInfo, + array $env, + float $progressMultiplier = 1.0 + ): array { $startYear = (int) $env['startyear']; $year = (int) $env['year']; $month = (int) $env['month']; - $progress = CentennialAllStarGrowth::progress($startYear, $year, $month); - $progressMonth = max(0, ($year - $startYear) * 12 + $month - 1); + $progress = self::calculateProgress( + $startYear, + $year, + $month, + $progressMultiplier + ); + $progressMonth = (int) floor( + max(0, ($year - $startYear) * 12 + $month - 1) + * $progressMultiplier + ); $targetId = (string) ($targetInfo['uniqueName'] ?? ''); $aux = $general->getAuxVar(self::AUX_KEY); @@ -159,6 +189,42 @@ final class CentennialAllStarGrowthService ]; } + public static function progressMultiplierFor(General $general): float + { + return self::progressMultiplierForNPCType($general->getNPCType()); + } + + public static function progressMultiplierForNPCType(int $npcType): float + { + return in_array($npcType, [3, 4], true) + ? self::NPC_PROGRESS_MULTIPLIER + : 1.0; + } + + public static function applyCurrentTargetToBuiltNPC( + \MeekroDB $db, + GeneralBuilder $builder, + array $targetInfo, + array $env + ): ?array { + if (!self::isActive()) { + return null; + } + + $general = General::createObjFromDB($builder->getGeneralID()); + if (!in_array($general->getNPCType(), [3, 4], true)) { + return null; + } + $result = self::applyTarget( + $general, + $targetInfo, + $env, + self::NPC_PROGRESS_MULTIPLIER + ); + $general->applyDB($db); + return $result; + } + public static function recordableValue(General $general, string $key): int { $aux = $general->getAuxVar(self::AUX_KEY); diff --git a/hwe/sammo/Command/General/che_인재탐색.php b/hwe/sammo/Command/General/che_인재탐색.php index be6209d4..4e1095a4 100644 --- a/hwe/sammo/Command/General/che_인재탐색.php +++ b/hwe/sammo/Command/General/che_인재탐색.php @@ -7,6 +7,7 @@ use \sammo\Util; use \sammo\JosaUtil; use \sammo\General; use \sammo\ActionLogger; +use \sammo\CentennialAllStarGrowthService; use \sammo\GameConst; use \sammo\LastTurn; use \sammo\GameUnitConst; @@ -190,6 +191,12 @@ class che_인재탐색 extends Command\GeneralCommand $newNPC->fillRemainSpecAsRandom($pickTypeList, $avgGen, $env); $newNPC->build($this->env); + CentennialAllStarGrowthService::applyCurrentTargetToBuiltNPC( + $db, + $newNPC, + $pickedNPC->getInfo(), + $this->env + ); $pickedNPC->occupyGeneralName(); $npcName = $newNPC->getGeneralName(); $josaRa = JosaUtil::pick($npcName, '라'); diff --git a/hwe/sammo/Command/Nation/che_의병모집.php b/hwe/sammo/Command/Nation/che_의병모집.php index 9f2fd188..e0e16e15 100644 --- a/hwe/sammo/Command/Nation/che_의병모집.php +++ b/hwe/sammo/Command/Nation/che_의병모집.php @@ -7,6 +7,7 @@ use \sammo\Util; use \sammo\JosaUtil; use \sammo\General; use \sammo\ActionLogger; +use \sammo\CentennialAllStarGrowthService; use \sammo\GameConst; use \sammo\LastTurn; use \sammo\GameUnitConst; @@ -160,6 +161,12 @@ class che_의병모집 extends Command\NationCommand $newNPC->fillRemainSpecAsRandom($pickTypeList, $avgGen, $env); $newNPC->build($this->env); + CentennialAllStarGrowthService::applyCurrentTargetToBuiltNPC( + $db, + $newNPC, + $pickedNPC->getInfo(), + $this->env + ); $pickedNPC->occupyGeneralName(); } diff --git a/hwe/sammo/Event/Action/AdvanceCentennialAllStar.php b/hwe/sammo/Event/Action/AdvanceCentennialAllStar.php index 63831491..200a2f1c 100644 --- a/hwe/sammo/Event/Action/AdvanceCentennialAllStar.php +++ b/hwe/sammo/Event/Action/AdvanceCentennialAllStar.php @@ -25,7 +25,12 @@ class AdvanceCentennialAllStar extends \sammo\Event\Action ) as $row) { $general = General::createObjFromDB((int) $row['no']); $targetInfo = Json::decode($row['info']); - $result = CentennialAllStarGrowthService::applyTarget($general, $targetInfo, $env); + $result = CentennialAllStarGrowthService::applyTarget( + $general, + $targetInfo, + $env, + CentennialAllStarGrowthService::progressMultiplierFor($general) + ); if ($result['milestone'] > $result['previousMilestone']) { $percent = $result['milestone'] * 20; diff --git a/hwe/sammo/Event/Action/CreateManyNPC.php b/hwe/sammo/Event/Action/CreateManyNPC.php index 25029528..17f1c838 100644 --- a/hwe/sammo/Event/Action/CreateManyNPC.php +++ b/hwe/sammo/Event/Action/CreateManyNPC.php @@ -5,6 +5,7 @@ namespace sammo\Event\Action; use \sammo\GameConst; use \sammo\Util; use \sammo\DB; +use sammo\CentennialAllStarGrowthService; use sammo\LiteHashDRBG; use sammo\RandUtil; use sammo\UniqueConst; @@ -35,7 +36,8 @@ class CreateManyNPC extends \sammo\Event\Action ))); $result = []; - foreach (pickGeneralFromPool(DB::db(), $rng, 0, $cnt) as $pickedNPC) { + $db = DB::db(); + foreach (pickGeneralFromPool($db, $rng, 0, $cnt) as $pickedNPC) { $age = $rng->nextRangeInt(20, 25); $birthYear = $env['year'] - $age; $deathYear = $env['year'] + $rng->nextRangeInt(10, 50); @@ -50,6 +52,12 @@ class CreateManyNPC extends \sammo\Event\Action } $newNPC->fillRemainSpecAsZero($env); $newNPC->build($env); + CentennialAllStarGrowthService::applyCurrentTargetToBuiltNPC( + $db, + $newNPC, + $pickedNPC->getInfo(), + $env + ); $pickedNPC->occupyGeneralName(); $result[] = [ $newNPC->getGeneralName(), $newNPC->getGeneralID() diff --git a/hwe/sammo/GeneralPool/Pool/UnderS100.json b/hwe/sammo/GeneralPool/Pool/UnderS100.json index 53c40558..59f5a66c 100644 --- a/hwe/sammo/GeneralPool/Pool/UnderS100.json +++ b/hwe/sammo/GeneralPool/Pool/UnderS100.json @@ -36,7 +36,7 @@ ], "data": [ [ - "【1기】조민", + "1·조민", 85, 69, 12, @@ -61,7 +61,7 @@ ] ], [ - "【1기】하루", + "1·하루", 77, 77, 10, @@ -88,7 +88,7 @@ ] ], [ - "【1기】먹고튄다", + "1·먹고튄다", 81, 72, 11, @@ -110,7 +110,7 @@ ] ], [ - "【1기】소금ㄴㄴ염", + "1·소금ㄴㄴ염", 88, 68, 10, @@ -138,7 +138,7 @@ ] ], [ - "【1기】SARS", + "1·SARS", 52, 30, 83, @@ -160,7 +160,7 @@ ] ], [ - "【1기】니노미야아스카", + "1·니노미야아스카", 72, 82, 10, @@ -192,7 +192,7 @@ ] ], [ - "【1기】이드", + "1·이드", 71, 86, 10, @@ -220,7 +220,7 @@ ] ], [ - "【1기】평민킬러", + "1·평민킬러", 71, 83, 11, @@ -243,7 +243,7 @@ ] ], [ - "【1기】살수묵랑", + "1·살수묵랑", 71, 85, 10, @@ -267,7 +267,7 @@ ] ], [ - "【1기】죽음의 별", + "1·죽음의 별", 72, 10, 85, @@ -289,7 +289,7 @@ ] ], [ - "【1기】호시노 루리", + "1·호시노 루리", 85, 70, 11, @@ -321,7 +321,7 @@ ] ], [ - "【1기】뒈코뭐리", + "1·뒈코뭐리", 70, 10, 84, @@ -348,7 +348,7 @@ ] ], [ - "【1기】꽁치", + "1·꽁치", 69, 86, 10, @@ -375,7 +375,7 @@ ] ], [ - "【1기】돌려돌려돌림판", + "1·돌려돌려돌림판", 73, 10, 84, @@ -403,7 +403,7 @@ ] ], [ - "【1기】만샘", + "1·만샘", 71, 10, 81, @@ -425,7 +425,7 @@ ] ], [ - "【1기】삼남매아빠", + "1·삼남매아빠", 87, 68, 10, @@ -447,7 +447,7 @@ ] ], [ - "【1기】홈", + "1·홈", 71, 10, 84, @@ -469,7 +469,7 @@ ] ], [ - "【1기】하우젤", + "1·하우젤", 83, 73, 10, @@ -491,7 +491,7 @@ ] ], [ - "【1기】제노에이지", + "1·제노에이지", 69, 10, 87, @@ -518,7 +518,7 @@ ] ], [ - "【1기】마스", + "1·마스", 91, 11, 10, @@ -551,7 +551,7 @@ ] ], [ - "【1기】뽀빠이", + "1·뽀빠이", 68, 83, 10, @@ -573,7 +573,7 @@ ] ], [ - "【1기】코사카우미", + "1·코사카우미", 76, 10, 80, @@ -600,7 +600,7 @@ ] ], [ - "【1기】료우기시키", + "1·료우기시키", 70, 83, 11, @@ -623,7 +623,7 @@ ] ], [ - "【1기】니쉬", + "1·니쉬", 70, 84, 10, @@ -646,7 +646,7 @@ ] ], [ - "【1기】춤추는곰돌이강슬기", + "1·춤추는곰돌이강슬기", 71, 85, 10, @@ -673,7 +673,7 @@ ] ], [ - "【1기】이빌라이져", + "1·이빌라이져", 69, 84, 10, @@ -695,7 +695,7 @@ ] ], [ - "【1기】칸자키 란코", + "1·칸자키 란코", 69, 11, 85, @@ -725,7 +725,7 @@ ] ], [ - "【1기】견고", + "1·견고", 73, 81, 11, @@ -749,7 +749,7 @@ ] ], [ - "【1기】독고다이", + "1·독고다이", 70, 84, 10, @@ -775,7 +775,7 @@ ] ], [ - "【1기】ㅇㄷㅇㄷ", + "1·ㅇㄷㅇㄷ", 70, 10, 83, @@ -797,7 +797,7 @@ ] ], [ - "【1기】첫기는잠입이제맛", + "1·첫기는잠입이제맛", 11, 72, 81, @@ -819,7 +819,7 @@ ] ], [ - "【1기】피피미", + "1·피피미", 80, 73, 10, @@ -842,7 +842,7 @@ ] ], [ - "【1기】Tiasse", + "1·Tiasse", 79, 74, 10, @@ -866,7 +866,7 @@ ] ], [ - "【1기】마르", + "1·마르", 72, 11, 81, @@ -888,7 +888,7 @@ ] ], [ - "【1기】노이어", + "1·노이어", 81, 72, 11, @@ -910,7 +910,7 @@ ] ], [ - "【1기】아소", + "1·아소", 82, 10, 72, @@ -932,7 +932,7 @@ ] ], [ - "【1기】미스티", + "1·미스티", 87, 67, 10, @@ -957,7 +957,7 @@ ] ], [ - "【1기】무장", + "1·무장", 72, 10, 83, @@ -980,7 +980,7 @@ ] ], [ - "【1기】물자조달쟁이", + "1·물자조달쟁이", 71, 10, 83, @@ -1003,7 +1003,7 @@ ] ], [ - "【1기】사이키쿠스오", + "1·사이키쿠스오", 69, 85, 10, @@ -1026,7 +1026,7 @@ ] ], [ - "【1기】Hide_D", + "1·Hide_D", 13, 69, 83, @@ -1048,7 +1048,7 @@ ] ], [ - "【1기】아린", + "1·아린", 13, 66, 81, @@ -1070,7 +1070,7 @@ ] ], [ - "【1기】오다에리나", + "1·오다에리나", 75, 77, 12, @@ -1093,7 +1093,7 @@ ] ], [ - "【1기】야포", + "1·야포", 69, 11, 83, @@ -1116,7 +1116,7 @@ ] ], [ - "【1기】카오스피닉스", + "1·카오스피닉스", 71, 10, 83, @@ -1139,7 +1139,7 @@ ] ], [ - "【1기】DZTO", + "1·DZTO", 85, 67, 10, @@ -1162,7 +1162,7 @@ ] ], [ - "【1기】화애루용병2", + "1·화애루용병2", 10, 68, 82, @@ -1184,7 +1184,7 @@ ] ], [ - "【1기】리즈나", + "1·리즈나", 71, 85, 10, @@ -1212,7 +1212,7 @@ ] ], [ - "【1기】이치코", + "1·이치코", 72, 80, 10, @@ -1234,7 +1234,7 @@ ] ], [ - "【1기】핫산", + "1·핫산", 19, 67, 79, @@ -1256,7 +1256,7 @@ ] ], [ - "【1기】망포", + "1·망포", 77, 77, 10, @@ -1282,7 +1282,7 @@ ] ], [ - "【1기】륜", + "1·륜", 71, 10, 85, @@ -1305,7 +1305,7 @@ ] ], [ - "【1기】우사밍성인", + "1·우사밍성인", 10, 67, 83, @@ -1327,7 +1327,7 @@ ] ], [ - "【1기】아사기리 겐", + "1·아사기리 겐", 69, 11, 86, @@ -1349,7 +1349,7 @@ ] ], [ - "【1기】캐로", + "1·캐로", 68, 9, 85, @@ -1371,7 +1371,7 @@ ] ], [ - "【1기】개발살", + "1·개발살", 69, 84, 10, @@ -1393,7 +1393,7 @@ ] ], [ - "【1기】늘모", + "1·늘모", 82, 72, 10, @@ -1416,7 +1416,7 @@ ] ], [ - "【1기】Card", + "1·Card", 83, 70, 10, @@ -1440,7 +1440,7 @@ ] ], [ - "【1기】8월7일의 로비", + "1·8월7일의 로비", 11, 67, 85, @@ -1463,7 +1463,7 @@ ] ], [ - "【1기】새장속의 이상향", + "1·새장속의 이상향", 71, 10, 83, @@ -1490,7 +1490,7 @@ ] ], [ - "【1기】무한파워안경", + "1·무한파워안경", 85, 70, 10, @@ -1517,7 +1517,7 @@ ] ], [ - "【1기】민트토끼", + "1·민트토끼", 72, 83, 10, @@ -1539,7 +1539,7 @@ ] ], [ - "【1기】아유", + "1·아유", 83, 73, 10, @@ -1564,7 +1564,7 @@ ] ], [ - "【1기】소마", + "1·소마", 73, 81, 10, @@ -1590,7 +1590,7 @@ ] ], [ - "【1기】쿠라가노세라", + "1·쿠라가노세라", 66, 10, 85, @@ -1613,7 +1613,7 @@ ] ], [ - "【1기】실장석", + "1·실장석", 12, 67, 85, @@ -1635,7 +1635,7 @@ ] ], [ - "【1기】광삼이", + "1·광삼이", 74, 10, 79, @@ -1657,7 +1657,7 @@ ] ], [ - "【1기】밥알요정", + "1·밥알요정", 77, 77, 10, @@ -1679,7 +1679,7 @@ ] ], [ - "【1기】whan", + "1·whan", 85, 69, 10, @@ -1701,7 +1701,7 @@ ] ], [ - "【1기】무리인데요", + "1·무리인데요", 10, 83, 70, @@ -1723,7 +1723,7 @@ ] ], [ - "【1기】앙곤운띠", + "1·앙곤운띠", 79, 70, 10, @@ -1745,7 +1745,7 @@ ] ], [ - "【2기】제노에이지", + "2·제노에이지", 74, 10, 90, @@ -1772,7 +1772,7 @@ ] ], [ - "【2기】자벨린", + "2·자벨린", 21, 66, 86, @@ -1794,7 +1794,7 @@ ] ], [ - "【2기】바리", + "2·바리", 95, 12, 11, @@ -1818,7 +1818,7 @@ ] ], [ - "【2기】평민킬러", + "2·평민킬러", 76, 86, 10, @@ -1840,7 +1840,7 @@ ] ], [ - "【2기】모리야 스와코", + "2·모리야 스와코", 70, 10, 91, @@ -1866,7 +1866,7 @@ ] ], [ - "【2기】도리도리반도리도리", + "2·도리도리반도리도리", 83, 83, 10, @@ -1897,7 +1897,7 @@ ] ], [ - "【2기】광삼이", + "2·광삼이", 78, 10, 79, @@ -1919,7 +1919,7 @@ ] ], [ - "【2기】인간 사냥꾼", + "2·인간 사냥꾼", 86, 76, 12, @@ -1945,7 +1945,7 @@ ] ], [ - "【2기】밤비에타", + "2·밤비에타", 75, 78, 14, @@ -1967,7 +1967,7 @@ ] ], [ - "【2기】물조명성너프필수", + "2·물조명성너프필수", 87, 78, 10, @@ -2000,7 +2000,7 @@ ] ], [ - "【2기】카오스피닉스", + "2·카오스피닉스", 76, 85, 10, @@ -2024,7 +2024,7 @@ ] ], [ - "【2기】명가의 수호자", + "2·명가의 수호자", 76, 12, 85, @@ -2052,7 +2052,7 @@ ] ], [ - "【2기】리안", + "2·리안", 73, 11, 87, @@ -2074,7 +2074,7 @@ ] ], [ - "【2기】라스트오더", + "2·라스트오더", 89, 72, 10, @@ -2096,7 +2096,7 @@ ] ], [ - "【2기】Card", + "2·Card", 91, 67, 10, @@ -2124,7 +2124,7 @@ ] ], [ - "【2기】렉사이", + "2·렉사이", 74, 86, 10, @@ -2147,7 +2147,7 @@ ] ], [ - "【2기】황금요정", + "2·황금요정", 98, 10, 66, @@ -2171,7 +2171,7 @@ ] ], [ - "【2기】민트토끼", + "2·민트토끼", 77, 11, 87, @@ -2200,7 +2200,7 @@ ] ], [ - "【2기】SARS", + "2·SARS", 64, 24, 85, @@ -2223,7 +2223,7 @@ ] ], [ - "【2기】이자요이 미쿠", + "2·이자요이 미쿠", 16, 70, 85, @@ -2246,7 +2246,7 @@ ] ], [ - "【2기】여고생쨩", + "2·여고생쨩", 80, 80, 10, @@ -2270,7 +2270,7 @@ ] ], [ - "【2기】실장석", + "2·실장석", 18, 68, 86, @@ -2293,7 +2293,7 @@ ] ], [ - "【2기】모하지맨", + "2·모하지맨", 77, 86, 10, @@ -2323,7 +2323,7 @@ ] ], [ - "【2기】긴토키", + "2·긴토키", 78, 82, 11, @@ -2345,7 +2345,7 @@ ] ], [ - "【2기】백순대먹고싶다정말", + "2·백순대먹고싶다정말", 73, 87, 10, @@ -2368,7 +2368,7 @@ ] ], [ - "【2기】미야노", + "2·미야노", 75, 87, 10, @@ -2392,7 +2392,7 @@ ] ], [ - "【2기】LetsPlay", + "2·LetsPlay", 10, 85, 77, @@ -2414,7 +2414,7 @@ ] ], [ - "【2기】신포", + "2·신포", 90, 70, 10, @@ -2436,7 +2436,7 @@ ] ], [ - "【2기】삼남매아빠", + "2·삼남매아빠", 90, 74, 10, @@ -2468,7 +2468,7 @@ ] ], [ - "【2기】시타오 미우", + "2·시타오 미우", 86, 75, 10, @@ -2490,7 +2490,7 @@ ] ], [ - "【2기】삼남매엄마", + "2·삼남매엄마", 78, 86, 10, @@ -2519,7 +2519,7 @@ ] ], [ - "【2기】아유", + "2·아유", 67, 10, 88, @@ -2542,7 +2542,7 @@ ] ], [ - "【2기】모라스", + "2·모라스", 71, 11, 89, @@ -2567,7 +2567,7 @@ ] ], [ - "【2기】료우기시키", + "2·료우기시키", 75, 85, 10, @@ -2590,7 +2590,7 @@ ] ], [ - "【2기】갓오브블랙필드", + "2·갓오브블랙필드", 76, 87, 10, @@ -2623,7 +2623,7 @@ ] ], [ - "【2기】아저씨쨩", + "2·아저씨쨩", 78, 10, 85, @@ -2648,7 +2648,7 @@ ] ], [ - "【2기】아사이 나나미", + "2·아사이 나나미", 75, 10, 85, @@ -2670,7 +2670,7 @@ ] ], [ - "【2기】마츠자카 사토", + "2·마츠자카 사토", 77, 10, 86, @@ -2692,7 +2692,7 @@ ] ], [ - "【2기】그저늅늅", + "2·그저늅늅", 73, 10, 89, @@ -2715,7 +2715,7 @@ ] ], [ - "【2기】커피", + "2·커피", 77, 86, 10, @@ -2738,7 +2738,7 @@ ] ], [ - "【2기】이치코", + "2·이치코", 17, 71, 84, @@ -2761,7 +2761,7 @@ ] ], [ - "【2기】위대한로렌초", + "2·위대한로렌초", 75, 90, 10, @@ -2792,7 +2792,7 @@ ] ], [ - "【2기】진리", + "2·진리", 88, 72, 10, @@ -2815,7 +2815,7 @@ ] ], [ - "【2기】시이", + "2·시이", 78, 84, 11, @@ -2838,7 +2838,7 @@ ] ], [ - "【2기】덕장", + "2·덕장", 85, 75, 10, @@ -2860,7 +2860,7 @@ ] ], [ - "【2기】먹고싶다.", + "2·먹고싶다.", 69, 90, 11, @@ -2882,7 +2882,7 @@ ] ], [ - "【2기】다니엘레메로시", + "2·다니엘레메로시", 89, 73, 10, @@ -2906,7 +2906,7 @@ ] ], [ - "【2기】농다리", + "2·농다리", 77, 89, 10, @@ -2937,7 +2937,7 @@ ] ], [ - "【2기】천사소녀네티", + "2·천사소녀네티", 78, 82, 11, @@ -2959,7 +2959,7 @@ ] ], [ - "【2기】주사위논리학", + "2·주사위논리학", 91, 69, 11, @@ -2982,7 +2982,7 @@ ] ], [ - "【2기】다다", + "2·다다", 80, 11, 81, @@ -3004,7 +3004,7 @@ ] ], [ - "【2기】늘모", + "2·늘모", 78, 10, 83, @@ -3026,7 +3026,7 @@ ] ], [ - "【2기】갓갓갓", + "2·갓갓갓", 75, 84, 10, @@ -3048,7 +3048,7 @@ ] ], [ - "【2기】whan", + "2·whan", 94, 68, 11, @@ -3073,7 +3073,7 @@ ] ], [ - "【2기】안함", + "2·안함", 94, 66, 11, @@ -3096,7 +3096,7 @@ ] ], [ - "【2기】엔쥬", + "2·엔쥬", 10, 74, 87, @@ -3118,7 +3118,7 @@ ] ], [ - "【2기】제갈여포", + "2·제갈여포", 20, 68, 82, @@ -3140,7 +3140,7 @@ ] ], [ - "【2기】ㅊㅂ", + "2·ㅊㅂ", 69, 86, 11, @@ -3162,7 +3162,7 @@ ] ], [ - "【2기】Nernas", + "2·Nernas", 88, 10, 73, @@ -3184,7 +3184,7 @@ ] ], [ - "【2기】Google", + "2·Google", 74, 10, 86, @@ -3207,7 +3207,7 @@ ] ], [ - "【2기】의의동망", + "2·의의동망", 73, 11, 83, @@ -3231,7 +3231,7 @@ ] ], [ - "【2기】집합안하는무지장", + "2·집합안하는무지장", 10, 83, 76, @@ -3253,7 +3253,7 @@ ] ], [ - "【2기】연휘령", + "2·연휘령", 76, 10, 85, @@ -3277,7 +3277,7 @@ ] ], [ - "【2기】리비", + "2·리비", 16, 89, 64, @@ -3299,7 +3299,7 @@ ] ], [ - "【2기】밥도둑", + "2·밥도둑", 10, 89, 70, @@ -3321,7 +3321,7 @@ ] ], [ - "【2기】가능인데요", + "2·가능인데요", 12, 68, 80, @@ -3346,7 +3346,7 @@ ] ], [ - "【3기】천괴금", + "3·천괴금", 87, 70, 10, @@ -3370,7 +3370,7 @@ ] ], [ - "【3기】감흥", + "3·감흥", 73, 84, 10, @@ -3394,7 +3394,7 @@ ] ], [ - "【3기】이브", + "3·이브", 91, 11, 10, @@ -3419,7 +3419,7 @@ ] ], [ - "【3기】평민킬러", + "3·평민킬러", 74, 82, 10, @@ -3444,7 +3444,7 @@ ] ], [ - "【3기】코시미즈 사치코", + "3·코시미즈 사치코", 72, 10, 85, @@ -3468,7 +3468,7 @@ ] ], [ - "【3기】진실의 심연", + "3·진실의 심연", 74, 83, 11, @@ -3497,7 +3497,7 @@ ] ], [ - "【3기】타케우치P", + "3·타케우치P", 72, 82, 11, @@ -3524,7 +3524,7 @@ ] ], [ - "【3기】큰가슴의요정", + "3·큰가슴의요정", 72, 86, 10, @@ -3549,7 +3549,7 @@ ] ], [ - "【3기】죽창", + "3·죽창", 83, 72, 10, @@ -3574,7 +3574,7 @@ ] ], [ - "【3기】후타바 안즈", + "3·후타바 안즈", 71, 11, 84, @@ -3598,7 +3598,7 @@ ] ], [ - "【3기】졸린마녀", + "3·졸린마녀", 73, 82, 11, @@ -3624,7 +3624,7 @@ ] ], [ - "【3기】테라포밍마스", + "3·테라포밍마스", 71, 13, 83, @@ -3646,7 +3646,7 @@ ] ], [ - "【3기】아유", + "3·아유", 72, 84, 10, @@ -3669,7 +3669,7 @@ ] ], [ - "【3기】5분장멍펫", + "3·5분장멍펫", 78, 79, 10, @@ -3693,7 +3693,7 @@ ] ], [ - "【3기】도트조아", + "3·도트조아", 87, 70, 10, @@ -3719,7 +3719,7 @@ ] ], [ - "【3기】보리", + "3·보리", 69, 10, 86, @@ -3741,7 +3741,7 @@ ] ], [ - "【3기】말랑말", + "3·말랑말", 73, 82, 11, @@ -3763,7 +3763,7 @@ ] ], [ - "【3기】라피나", + "3·라피나", 71, 84, 10, @@ -3790,7 +3790,7 @@ ] ], [ - "【3기】료우기시키", + "3·료우기시키", 73, 83, 10, @@ -3814,7 +3814,7 @@ ] ], [ - "【3기】건전한촉수병사", + "3·건전한촉수병사", 75, 82, 10, @@ -3840,7 +3840,7 @@ ] ], [ - "【3기】민트토끼", + "3·민트토끼", 73, 10, 84, @@ -3862,7 +3862,7 @@ ] ], [ - "【3기】김성욱", + "3·김성욱", 11, 72, 83, @@ -3884,7 +3884,7 @@ ] ], [ - "【3기】SARS", + "3·SARS", 58, 27, 83, @@ -3907,7 +3907,7 @@ ] ], [ - "【3기】멍미", + "3·멍미", 74, 10, 82, @@ -3931,7 +3931,7 @@ ] ], [ - "【3기】이드", + "3·이드", 73, 84, 10, @@ -3955,7 +3955,7 @@ ] ], [ - "【3기】블랙말랑카우", + "3·블랙말랑카우", 74, 83, 10, @@ -3981,7 +3981,7 @@ ] ], [ - "【3기】제갈여포", + "3·제갈여포", 73, 11, 82, @@ -4005,7 +4005,7 @@ ] ], [ - "【3기】커피", + "3·커피", 74, 83, 10, @@ -4030,7 +4030,7 @@ ] ], [ - "【3기】미야와키 사쿠라", + "3·미야와키 사쿠라", 82, 71, 11, @@ -4052,7 +4052,7 @@ ] ], [ - "【3기】하우젤", + "3·하우젤", 86, 70, 10, @@ -4075,7 +4075,7 @@ ] ], [ - "【3기】진리", + "3·진리", 71, 10, 85, @@ -4098,7 +4098,7 @@ ] ], [ - "【3기】삼남매엄마", + "3·삼남매엄마", 72, 84, 10, @@ -4120,7 +4120,7 @@ ] ], [ - "【3기】병리학적자세", + "3·병리학적자세", 71, 9, 86, @@ -4142,7 +4142,7 @@ ] ], [ - "【3기】듀", + "3·듀", 16, 68, 83, @@ -4164,7 +4164,7 @@ ] ], [ - "【3기】쫄따구", + "3·쫄따구", 10, 69, 87, @@ -4188,7 +4188,7 @@ ] ], [ - "【3기】다비", + "3·다비", 72, 85, 10, @@ -4211,7 +4211,7 @@ ] ], [ - "【3기】모라스", + "3·모라스", 72, 82, 11, @@ -4237,7 +4237,7 @@ ] ], [ - "【3기】시나", + "3·시나", 80, 76, 10, @@ -4259,7 +4259,7 @@ ] ], [ - "【3기】ARES군주", + "3·ARES군주", 77, 78, 11, @@ -4281,7 +4281,7 @@ ] ], [ - "【3기】달", + "3·달", 74, 10, 84, @@ -4303,7 +4303,7 @@ ] ], [ - "【3기】삼남매아빠", + "3·삼남매아빠", 86, 70, 10, @@ -4326,7 +4326,7 @@ ] ], [ - "【3기】만샘", + "3·만샘", 86, 69, 10, @@ -4348,7 +4348,7 @@ ] ], [ - "【3기】덕장", + "3·덕장", 70, 84, 11, @@ -4370,7 +4370,7 @@ ] ], [ - "【3기】피카츄", + "3·피카츄", 72, 10, 84, @@ -4392,7 +4392,7 @@ ] ], [ - "【3기】민트초코칩", + "3·민트초코칩", 71, 11, 84, @@ -4415,7 +4415,7 @@ ] ], [ - "【3기】시부야린", + "3·시부야린", 14, 73, 78, @@ -4437,7 +4437,7 @@ ] ], [ - "【3기】조밧", + "3·조밧", 69, 87, 10, @@ -4460,7 +4460,7 @@ ] ], [ - "【3기】미스티", + "3·미스티", 86, 70, 10, @@ -4484,7 +4484,7 @@ ] ], [ - "【3기】김나영", + "3·김나영", 78, 77, 10, @@ -4506,7 +4506,7 @@ ] ], [ - "【3기】카미야 나오", + "3·카미야 나오", 86, 70, 10, @@ -4531,7 +4531,7 @@ ] ], [ - "【3기】카오스피닉스", + "3·카오스피닉스", 72, 10, 85, @@ -4554,7 +4554,7 @@ ] ], [ - "【3기】EMP", + "3·EMP", 73, 10, 84, @@ -4580,7 +4580,7 @@ ] ], [ - "【3기】잉잉", + "3·잉잉", 69, 88, 10, @@ -4603,7 +4603,7 @@ ] ], [ - "【3기】고먐미", + "3·고먐미", 79, 77, 10, @@ -4626,7 +4626,7 @@ ] ], [ - "【3기】늘모", + "3·늘모", 74, 80, 11, @@ -4650,7 +4650,7 @@ ] ], [ - "【3기】whan", + "3·whan", 73, 82, 10, @@ -4672,7 +4672,7 @@ ] ], [ - "【3기】♂", + "3·♂", 88, 69, 10, @@ -4696,7 +4696,7 @@ ] ], [ - "【3기】ㅇㄷㄷㄷ", + "3·ㅇㄷㄷㄷ", 73, 82, 10, @@ -4718,7 +4718,7 @@ ] ], [ - "【3기】버그", + "3·버그", 74, 82, 10, @@ -4742,7 +4742,7 @@ ] ], [ - "【3기】플스4수리함", + "3·플스4수리함", 70, 12, 82, @@ -4764,7 +4764,7 @@ ] ], [ - "【3기】이치노세 시키", + "3·이치노세 시키", 14, 66, 86, @@ -4789,7 +4789,7 @@ ] ], [ - "【3기】아이돌도서관협회장", + "3·아이돌도서관협회장", 72, 84, 10, @@ -4814,7 +4814,7 @@ ] ], [ - "【3기】고긔가먹고싶", + "3·고긔가먹고싶", 70, 10, 86, @@ -4836,7 +4836,7 @@ ] ], [ - "【3기】페이트", + "3·페이트", 81, 42, 41, @@ -4862,7 +4862,7 @@ ] ], [ - "【3기】타카가키 카에데", + "3·타카가키 카에데", 80, 9, 75, @@ -4885,7 +4885,7 @@ ] ], [ - "【3기】ㅊㅂ", + "3·ㅊㅂ", 88, 62, 15, @@ -4907,7 +4907,7 @@ ] ], [ - "【3기】くま", + "3·くま", 73, 11, 83, @@ -4931,7 +4931,7 @@ ] ], [ - "【3기】도적", + "3·도적", 71, 84, 10, @@ -4953,7 +4953,7 @@ ] ], [ - "【3기】시마무라 우즈키", + "3·시마무라 우즈키", 71, 83, 10, @@ -4978,7 +4978,7 @@ ] ], [ - "【3기】사토 신", + "3·사토 신", 20, 65, 80, @@ -5000,7 +5000,7 @@ ] ], [ - "【3기】태극권", + "3·태극권", 84, 68, 10, @@ -5022,7 +5022,7 @@ ] ], [ - "【3기】재야", + "3·재야", 66, 11, 86, @@ -5044,7 +5044,7 @@ ] ], [ - "【3기】Lenn", + "3·Lenn", 86, 69, 10, @@ -5069,7 +5069,7 @@ ] ], [ - "【3기】가소롭군닝겐쿠쿡", + "3·가소롭군닝겐쿠쿡", 65, 10, 86, @@ -5091,7 +5091,7 @@ ] ], [ - "【3기】오오츠키 유이", + "3·오오츠키 유이", 10, 85, 68, @@ -5113,7 +5113,7 @@ ] ], [ - "【3기】이번도구경온누군가", + "3·이번도구경온누군가", 10, 71, 81, @@ -5137,7 +5137,7 @@ ] ], [ - "【3기】여기애들다못생겼음", + "3·여기애들다못생겼음", 10, 67, 85, @@ -5159,7 +5159,7 @@ ] ], [ - "【3기】아오바 모카", + "3·아오바 모카", 80, 72, 10, @@ -5181,7 +5181,7 @@ ] ], [ - "【3기】리체", + "3·리체", 72, 10, 79, @@ -5206,7 +5206,7 @@ ] ], [ - "【3기】엔틱", + "3·엔틱", 78, 68, 10, @@ -5228,7 +5228,7 @@ ] ], [ - "【4기】미스트 뱀파이어", + "4·미스트 뱀파이어", 74, 10, 83, @@ -5253,7 +5253,7 @@ ] ], [ - "【4기】카이스트", + "4·카이스트", 71, 9, 83, @@ -5276,7 +5276,7 @@ ] ], [ - "【4기】평민킬러", + "4·평민킬러", 72, 83, 11, @@ -5302,7 +5302,7 @@ ] ], [ - "【4기】북오더", + "4·북오더", 11, 69, 85, @@ -5326,7 +5326,7 @@ ] ], [ - "【4기】아비그네일", + "4·아비그네일", 81, 76, 10, @@ -5354,7 +5354,7 @@ ] ], [ - "【4기】취한 말랑말", + "4·취한 말랑말", 71, 86, 10, @@ -5377,7 +5377,7 @@ ] ], [ - "【4기】댄스러시 스타덤", + "4·댄스러시 스타덤", 70, 10, 87, @@ -5402,7 +5402,7 @@ ] ], [ - "【4기】사운드볼텍스", + "4·사운드볼텍스", 71, 84, 10, @@ -5426,7 +5426,7 @@ ] ], [ - "【4기】くま", + "4·くま", 72, 10, 83, @@ -5448,7 +5448,7 @@ ] ], [ - "【4기】육도삼략귀모신산", + "4·육도삼략귀모신산", 12, 66, 89, @@ -5472,7 +5472,7 @@ ] ], [ - "【4기】네로", + "4·네로", 72, 83, 10, @@ -5496,7 +5496,7 @@ ] ], [ - "【4기】n아텐 누", + "4·n아텐 누", 86, 72, 10, @@ -5518,7 +5518,7 @@ ] ], [ - "【4기】만샘", + "4·만샘", 70, 11, 84, @@ -5540,7 +5540,7 @@ ] ], [ - "【4기】몬스터볼", + "4·몬스터볼", 80, 10, 73, @@ -5562,7 +5562,7 @@ ] ], [ - "【4기】에드나", + "4·에드나", 72, 83, 10, @@ -5586,7 +5586,7 @@ ] ], [ - "【4기】야부키 나코", + "4·야부키 나코", 83, 72, 10, @@ -5609,7 +5609,7 @@ ] ], [ - "【4기】카오스피닉스", + "4·카오스피닉스", 71, 10, 85, @@ -5631,7 +5631,7 @@ ] ], [ - "【4기】처리오빠", + "4·처리오빠", 91, 11, 65, @@ -5656,7 +5656,7 @@ ] ], [ - "【4기】삼뚝배기", + "4·삼뚝배기", 74, 84, 10, @@ -5682,7 +5682,7 @@ ] ], [ - "【4기】Card", + "4·Card", 87, 69, 10, @@ -5708,7 +5708,7 @@ ] ], [ - "【4기】곰돌이푸", + "4·곰돌이푸", 69, 10, 87, @@ -5731,7 +5731,7 @@ ] ], [ - "【4기】UNIANA", + "4·UNIANA", 12, 67, 86, @@ -5753,7 +5753,7 @@ ] ], [ - "【4기】화난용", + "4·화난용", 88, 65, 13, @@ -5779,7 +5779,7 @@ ] ], [ - "【4기】랜슬롯", + "4·랜슬롯", 69, 12, 85, @@ -5801,7 +5801,7 @@ ] ], [ - "【4기】나아가다", + "4·나아가다", 70, 86, 11, @@ -5824,7 +5824,7 @@ ] ], [ - "【4기】살수묵랑", + "4·살수묵랑", 75, 80, 10, @@ -5846,7 +5846,7 @@ ] ], [ - "【4기】머핀", + "4·머핀", 70, 10, 84, @@ -5868,7 +5868,7 @@ ] ], [ - "【4기】오늘의시", + "4·오늘의시", 75, 10, 81, @@ -5890,7 +5890,7 @@ ] ], [ - "【4기】민트 초코 칩", + "4·민트 초코 칩", 71, 11, 85, @@ -5912,7 +5912,7 @@ ] ], [ - "【4기】리안", + "4·리안", 73, 10, 84, @@ -5934,7 +5934,7 @@ ] ], [ - "【4기】소환수", + "4·소환수", 10, 65, 91, @@ -5956,7 +5956,7 @@ ] ], [ - "【4기】사무엘", + "4·사무엘", 71, 84, 10, @@ -5982,7 +5982,7 @@ ] ], [ - "【4기】D.va", + "4·D.va", 69, 87, 10, @@ -6004,7 +6004,7 @@ ] ], [ - "【4기】이바라키도지", + "4·이바라키도지", 75, 78, 11, @@ -6027,7 +6027,7 @@ ] ], [ - "【4기】343", + "4·343", 85, 70, 10, @@ -6050,7 +6050,7 @@ ] ], [ - "【4기】요정", + "4·요정", 70, 85, 11, @@ -6075,7 +6075,7 @@ ] ], [ - "【4기】오니즈카", + "4·오니즈카", 70, 85, 11, @@ -6102,7 +6102,7 @@ ] ], [ - "【4기】멀린", + "4·멀린", 85, 71, 11, @@ -6127,7 +6127,7 @@ ] ], [ - "【4기】료우기시키", + "4·료우기시키", 71, 84, 10, @@ -6149,7 +6149,7 @@ ] ], [ - "【4기】김나영", + "4·김나영", 74, 82, 11, @@ -6178,7 +6178,7 @@ ] ], [ - "【4기】성산동피주먹", + "4·성산동피주먹", 81, 72, 10, @@ -6200,7 +6200,7 @@ ] ], [ - "【4기】모라스", + "4·모라스", 75, 10, 82, @@ -6222,7 +6222,7 @@ ] ], [ - "【4기】개미", + "4·개미", 75, 80, 12, @@ -6246,7 +6246,7 @@ ] ], [ - "【4기】재야", + "4·재야", 10, 75, 82, @@ -6271,7 +6271,7 @@ ] ], [ - "【4기】구다코", + "4·구다코", 72, 11, 83, @@ -6299,7 +6299,7 @@ ] ], [ - "【4기】666", + "4·666", 83, 10, 72, @@ -6321,7 +6321,7 @@ ] ], [ - "【4기】병리학적자세", + "4·병리학적자세", 81, 10, 76, @@ -6343,7 +6343,7 @@ ] ], [ - "【4기】악동", + "4·악동", 86, 71, 10, @@ -6365,7 +6365,7 @@ ] ], [ - "【4기】니시키노 마키", + "4·니시키노 마키", 70, 10, 85, @@ -6387,7 +6387,7 @@ ] ], [ - "【4기】5분장", + "4·5분장", 71, 10, 86, @@ -6410,7 +6410,7 @@ ] ], [ - "【4기】최$ 지존맨 $강", + "4·최$ 지존맨 $강", 72, 83, 10, @@ -6432,7 +6432,7 @@ ] ], [ - "【4기】개노잼놀아라", + "4·개노잼놀아라", 80, 9, 78, @@ -6455,7 +6455,7 @@ ] ], [ - "【4기】카나메", + "4·카나메", 10, 70, 84, @@ -6477,7 +6477,7 @@ ] ], [ - "【4기】소열제유비", + "4·소열제유비", 72, 84, 10, @@ -6500,7 +6500,7 @@ ] ], [ - "【4기】보스곰", + "4·보스곰", 78, 10, 79, @@ -6522,7 +6522,7 @@ ] ], [ - "【4기】whan", + "4·whan", 75, 83, 10, @@ -6548,7 +6548,7 @@ ] ], [ - "【4기】쉬원찮은남자", + "4·쉬원찮은남자", 81, 74, 11, @@ -6572,7 +6572,7 @@ ] ], [ - "【4기】헨젤과 그레텔", + "4·헨젤과 그레텔", 70, 86, 11, @@ -6596,7 +6596,7 @@ ] ], [ - "【4기】힝힝", + "4·힝힝", 69, 85, 10, @@ -6622,7 +6622,7 @@ ] ], [ - "【4기】혈소판", + "4·혈소판", 11, 67, 89, @@ -6645,7 +6645,7 @@ ] ], [ - "【4기】1288965", + "4·1288965", 71, 86, 10, @@ -6668,7 +6668,7 @@ ] ], [ - "【4기】화계장터마스코트", + "4·화계장터마스코트", 72, 10, 85, @@ -6691,7 +6691,7 @@ ] ], [ - "【4기】리자", + "4·리자", 90, 11, 11, @@ -6716,7 +6716,7 @@ ] ], [ - "【4기】하우젤", + "4·하우젤", 88, 68, 10, @@ -6739,7 +6739,7 @@ ] ], [ - "【4기】울다", + "4·울다", 10, 70, 81, @@ -6761,7 +6761,7 @@ ] ], [ - "【4기】민토트끼", + "4·민토트끼", 83, 72, 10, @@ -6784,7 +6784,7 @@ ] ], [ - "【4기】가로쉬 헬스크림", + "4·가로쉬 헬스크림", 71, 85, 10, @@ -6807,7 +6807,7 @@ ] ], [ - "【4기】에미야[얼터]", + "4·에미야[얼터]", 77, 10, 75, @@ -6829,7 +6829,7 @@ ] ], [ - "【4기】인공지능미사일", + "4·인공지능미사일", 71, 12, 83, @@ -6851,7 +6851,7 @@ ] ], [ - "【4기】아나", + "4·아나", 72, 9, 83, @@ -6873,7 +6873,7 @@ ] ], [ - "【4기】땅크땅크", + "4·땅크땅크", 88, 68, 11, @@ -6896,7 +6896,7 @@ ] ], [ - "【4기】꼬기", + "4·꼬기", 69, 10, 85, @@ -6918,7 +6918,7 @@ ] ], [ - "【4기】대도 팬텀", + "4·대도 팬텀", 11, 82, 72, @@ -6940,7 +6940,7 @@ ] ], [ - "【4기】파주조자룡", + "4·파주조자룡", 10, 66, 89, @@ -6962,7 +6962,7 @@ ] ], [ - "【4기】잼잼", + "4·잼잼", 10, 77, 79, @@ -6984,7 +6984,7 @@ ] ], [ - "【4기】미아", + "4·미아", 84, 72, 10, @@ -7010,7 +7010,7 @@ ] ], [ - "【4기】니가보인다", + "4·니가보인다", 10, 71, 85, @@ -7032,7 +7032,7 @@ ] ], [ - "【4기】삼남매엄마", + "4·삼남매엄마", 72, 10, 81, @@ -7054,7 +7054,7 @@ ] ], [ - "【4기】죽창", + "4·죽창", 85, 69, 11, @@ -7076,7 +7076,7 @@ ] ], [ - "【4기】빅째우맨", + "4·빅째우맨", 10, 68, 85, @@ -7099,7 +7099,7 @@ ] ], [ - "【4기】아이린", + "4·아이린", 72, 84, 10, @@ -7121,7 +7121,7 @@ ] ], [ - "【4기】천괴금", + "4·천괴금", 11, 71, 84, @@ -7143,7 +7143,7 @@ ] ], [ - "【4기】제노에이지", + "4·제노에이지", 69, 10, 87, @@ -7165,7 +7165,7 @@ ] ], [ - "【4기】SARS죽어라", + "4·SARS죽어라", 81, 72, 10, @@ -7190,7 +7190,7 @@ ] ], [ - "【4기】카이", + "4·카이", 83, 71, 10, @@ -7212,7 +7212,7 @@ ] ], [ - "【4기】금설아", + "4·금설아", 10, 70, 84, @@ -7234,7 +7234,7 @@ ] ], [ - "【4기】Black부관", + "4·Black부관", 10, 69, 83, @@ -7259,7 +7259,7 @@ ] ], [ - "【4기】우리즈원♡", + "4·우리즈원♡", 10, 75, 77, @@ -7281,7 +7281,7 @@ ] ], [ - "【4기】눈의소리", + "4·눈의소리", 67, 10, 85, @@ -7305,7 +7305,7 @@ ] ], [ - "【4기】나레이터킬러", + "4·나레이터킬러", 69, 83, 10, @@ -7327,7 +7327,7 @@ ] ], [ - "【4기】자는중임", + "4·자는중임", 85, 67, 10, @@ -7356,7 +7356,7 @@ ] ], [ - "【4기】재송해요재송해요", + "4·재송해요재송해요", 10, 81, 66, @@ -7378,7 +7378,7 @@ ] ], [ - "【6기】카이스트", + "6·카이스트", 71, 10, 83, @@ -7400,7 +7400,7 @@ ] ], [ - "【6기】미아", + "6·미아", 81, 73, 10, @@ -7426,7 +7426,7 @@ ] ], [ - "【6기】아유", + "6·아유", 69, 10, 86, @@ -7450,7 +7450,7 @@ ] ], [ - "【6기】whan", + "6·whan", 70, 10, 85, @@ -7472,7 +7472,7 @@ ] ], [ - "【6기】제갈여포", + "6·제갈여포", 74, 10, 82, @@ -7494,7 +7494,7 @@ ] ], [ - "【6기】사키", + "6·사키", 71, 83, 11, @@ -7517,7 +7517,7 @@ ] ], [ - "【6기】윤지성", + "6·윤지성", 71, 11, 83, @@ -7540,7 +7540,7 @@ ] ], [ - "【6기】ⓐ자비스", + "6·ⓐ자비스", 85, 69, 10, @@ -7566,7 +7566,7 @@ ] ], [ - "【6기】낙지꾸미", + "6·낙지꾸미", 70, 10, 86, @@ -7588,7 +7588,7 @@ ] ], [ - "【6기】ⓟ럭키", + "6·ⓟ럭키", 73, 10, 84, @@ -7613,7 +7613,7 @@ ] ], [ - "【6기】솔라", + "6·솔라", 68, 10, 88, @@ -7639,7 +7639,7 @@ ] ], [ - "【6기】Lupia", + "6·Lupia", 73, 10, 82, @@ -7664,7 +7664,7 @@ ] ], [ - "【6기】수장", + "6·수장", 78, 80, 10, @@ -7687,7 +7687,7 @@ ] ], [ - "【6기】임사영", + "6·임사영", 72, 84, 11, @@ -7713,7 +7713,7 @@ ] ], [ - "【6기】안가면", + "6·안가면", 68, 11, 85, @@ -7735,7 +7735,7 @@ ] ], [ - "【6기】김나영", + "6·김나영", 71, 84, 10, @@ -7757,7 +7757,7 @@ ] ], [ - "【6기】화사", + "6·화사", 69, 87, 10, @@ -7781,7 +7781,7 @@ ] ], [ - "【6기】ⓟ피카츄", + "6·ⓟ피카츄", 74, 80, 11, @@ -7808,7 +7808,7 @@ ] ], [ - "【6기】충차", + "6·충차", 85, 66, 11, @@ -7831,7 +7831,7 @@ ] ], [ - "【6기】황약사", + "6·황약사", 77, 80, 10, @@ -7855,7 +7855,7 @@ ] ], [ - "【6기】사무엘", + "6·사무엘", 12, 70, 82, @@ -7882,7 +7882,7 @@ ] ], [ - "【6기】아범", + "6·아범", 72, 83, 10, @@ -7904,7 +7904,7 @@ ] ], [ - "【6기】팬티", + "6·팬티", 68, 10, 87, @@ -7929,7 +7929,7 @@ ] ], [ - "【6기】북오더", + "6·북오더", 85, 39, 39, @@ -7955,7 +7955,7 @@ ] ], [ - "【6기】에르제", + "6·에르제", 70, 86, 10, @@ -7977,7 +7977,7 @@ ] ], [ - "【6기】늘모", + "6·늘모", 70, 84, 11, @@ -7999,7 +7999,7 @@ ] ], [ - "【6기】ARES군주", + "6·ARES군주", 69, 88, 10, @@ -8021,7 +8021,7 @@ ] ], [ - "【6기】아리아", + "6·아리아", 90, 12, 10, @@ -8045,7 +8045,7 @@ ] ], [ - "【6기】마시멜로", + "6·마시멜로", 71, 85, 10, @@ -8067,7 +8067,7 @@ ] ], [ - "【6기】군사", + "6·군사", 70, 87, 10, @@ -8090,7 +8090,7 @@ ] ], [ - "【6기】노이즈", + "6·노이즈", 67, 11, 87, @@ -8112,7 +8112,7 @@ ] ], [ - "【6기】농장소녀", + "6·농장소녀", 69, 85, 10, @@ -8136,7 +8136,7 @@ ] ], [ - "【6기】캐릭캐릭체인지", + "6·캐릭캐릭체인지", 71, 11, 83, @@ -8158,7 +8158,7 @@ ] ], [ - "【6기】삼남매아빠", + "6·삼남매아빠", 86, 68, 10, @@ -8180,7 +8180,7 @@ ] ], [ - "【6기】Newbie", + "6·Newbie", 73, 10, 84, @@ -8203,7 +8203,7 @@ ] ], [ - "【6기】나나야 시키", + "6·나나야 시키", 86, 69, 11, @@ -8226,7 +8226,7 @@ ] ], [ - "【6기】할말이있어", + "6·할말이있어", 71, 10, 86, @@ -8249,7 +8249,7 @@ ] ], [ - "【6기】당신의노예", + "6·당신의노예", 10, 67, 87, @@ -8271,7 +8271,7 @@ ] ], [ - "【6기】케이", + "6·케이", 70, 87, 10, @@ -8295,7 +8295,7 @@ ] ], [ - "【6기】청기사", + "6·청기사", 10, 66, 90, @@ -8318,7 +8318,7 @@ ] ], [ - "【6기】소열제유비", + "6·소열제유비", 71, 84, 11, @@ -8341,7 +8341,7 @@ ] ], [ - "【6기】규이르", + "6·규이르", 73, 83, 10, @@ -8363,7 +8363,7 @@ ] ], [ - "【6기】궁Yeah!", + "6·궁Yeah!", 80, 10, 76, @@ -8386,7 +8386,7 @@ ] ], [ - "【6기】이쓰미", + "6·이쓰미", 73, 11, 83, @@ -8408,7 +8408,7 @@ ] ], [ - "【6기】만샘", + "6·만샘", 72, 83, 11, @@ -8435,7 +8435,7 @@ ] ], [ - "【6기】팩트)팩트다", + "6·팩트)팩트다", 11, 66, 90, @@ -8457,7 +8457,7 @@ ] ], [ - "【6기】아노리엔", + "6·아노리엔", 70, 84, 10, @@ -8479,7 +8479,7 @@ ] ], [ - "【6기】Pretty레아", + "6·Pretty레아", 70, 84, 11, @@ -8501,7 +8501,7 @@ ] ], [ - "【6기】휘인", + "6·휘인", 86, 68, 10, @@ -8526,7 +8526,7 @@ ] ], [ - "【6기】박보검", + "6·박보검", 69, 10, 85, @@ -8548,7 +8548,7 @@ ] ], [ - "【6기】복숭아좋아", + "6·복숭아좋아", 71, 10, 85, @@ -8570,7 +8570,7 @@ ] ], [ - "【6기】견문하는HideD", + "6·견문하는HideD", 12, 79, 70, @@ -8592,7 +8592,7 @@ ] ], [ - "【6기】Lenn", + "6·Lenn", 87, 67, 11, @@ -8615,7 +8615,7 @@ ] ], [ - "【6기】G11", + "6·G11", 88, 39, 38, @@ -8642,7 +8642,7 @@ ] ], [ - "【6기】병리학적자세", + "6·병리학적자세", 67, 11, 88, @@ -8665,7 +8665,7 @@ ] ], [ - "【6기】뭐지", + "6·뭐지", 69, 87, 10, @@ -8687,7 +8687,7 @@ ] ], [ - "【6기】리플", + "6·리플", 70, 10, 85, @@ -8709,7 +8709,7 @@ ] ], [ - "【6기】태수", + "6·태수", 71, 10, 84, @@ -8731,7 +8731,7 @@ ] ], [ - "【6기】엘레나", + "6·엘레나", 80, 10, 74, @@ -8757,7 +8757,7 @@ ] ], [ - "【6기】진리", + "6·진리", 86, 69, 11, @@ -8786,7 +8786,7 @@ ] ], [ - "【6기】심심", + "6·심심", 72, 10, 84, @@ -8811,7 +8811,7 @@ ] ], [ - "【6기】100이상추방함", + "6·100이상추방함", 11, 87, 68, @@ -8834,7 +8834,7 @@ ] ], [ - "【6기】30초장", + "6·30초장", 67, 10, 86, @@ -8856,7 +8856,7 @@ ] ], [ - "【6기】두땅크", + "6·두땅크", 86, 70, 10, @@ -8878,7 +8878,7 @@ ] ], [ - "【6기】일반장푸", + "6·일반장푸", 55, 55, 55, @@ -8900,7 +8900,7 @@ ] ], [ - "【6기】하우젤", + "6·하우젤", 87, 70, 10, @@ -8923,7 +8923,7 @@ ] ], [ - "【6기】셀레스티아", + "6·셀레스티아", 12, 68, 85, @@ -8946,7 +8946,7 @@ ] ], [ - "【6기】이지금", + "6·이지금", 10, 66, 90, @@ -8968,7 +8968,7 @@ ] ], [ - "【6기】SARS", + "6·SARS", 10, 72, 84, @@ -8991,7 +8991,7 @@ ] ], [ - "【6기】에스테반 공작", + "6·에스테반 공작", 70, 85, 11, @@ -9013,7 +9013,7 @@ ] ], [ - "【6기】난동", + "6·난동", 10, 68, 88, @@ -9036,7 +9036,7 @@ ] ], [ - "【6기】줄리엣 페르시아", + "6·줄리엣 페르시아", 74, 10, 81, @@ -9058,7 +9058,7 @@ ] ], [ - "【6기】평민킬러", + "6·평민킬러", 72, 84, 10, @@ -9080,7 +9080,7 @@ ] ], [ - "【6기】집합장 1", + "6·집합장 1", 80, 75, 10, @@ -9107,7 +9107,7 @@ ] ], [ - "【6기】해피너스", + "6·해피너스", 72, 10, 84, @@ -9129,7 +9129,7 @@ ] ], [ - "【6기】치카", + "6·치카", 87, 67, 10, @@ -9152,7 +9152,7 @@ ] ], [ - "【6기】쿠요", + "6·쿠요", 68, 87, 10, @@ -9174,7 +9174,7 @@ ] ], [ - "【6기】귀여운세젤예키라님", + "6·귀여운세젤예키라님", 69, 85, 10, @@ -9196,7 +9196,7 @@ ] ], [ - "【6기】스파르타쿠스", + "6·스파르타쿠스", 76, 78, 10, @@ -9218,7 +9218,7 @@ ] ], [ - "【6기】안유진", + "6·안유진", 68, 10, 87, @@ -9240,7 +9240,7 @@ ] ], [ - "【6기】아이린", + "6·아이린", 72, 84, 10, @@ -9264,7 +9264,7 @@ ] ], [ - "【6기】긴토키", + "6·긴토키", 86, 68, 11, @@ -9287,7 +9287,7 @@ ] ], [ - "【6기】피아노맨", + "6·피아노맨", 10, 68, 87, @@ -9309,7 +9309,7 @@ ] ], [ - "【6기】소환된민심러", + "6·소환된민심러", 88, 65, 10, @@ -9333,7 +9333,7 @@ ] ], [ - "【6기】새장속의이상향", + "6·새장속의이상향", 73, 82, 10, @@ -9358,7 +9358,7 @@ ] ], [ - "【6기】안돼", + "6·안돼", 11, 68, 85, @@ -9381,7 +9381,7 @@ ] ], [ - "【6기】rm", + "6·rm", 68, 85, 10, @@ -9404,7 +9404,7 @@ ] ], [ - "【6기】프레디머큐리", + "6·프레디머큐리", 10, 71, 83, @@ -9426,7 +9426,7 @@ ] ], [ - "【6기】기연빌런", + "6·기연빌런", 10, 66, 89, @@ -9448,7 +9448,7 @@ ] ], [ - "【6기】강도", + "6·강도", 72, 80, 10, @@ -9470,7 +9470,7 @@ ] ], [ - "【7기】이시리스", + "7·이시리스", 79, 71, 9, @@ -9496,7 +9496,7 @@ ] ], [ - "【7기】미나토 유키나", + "7·미나토 유키나", 71, 9, 81, @@ -9521,7 +9521,7 @@ ] ], [ - "【7기】김채원", + "7·김채원", 71, 9, 80, @@ -9547,7 +9547,7 @@ ] ], [ - "【7기】카이스트", + "7·카이스트", 69, 9, 78, @@ -9570,7 +9570,7 @@ ] ], [ - "【7기】평민킬러", + "7·평민킬러", 69, 80, 9, @@ -9594,7 +9594,7 @@ ] ], [ - "【7기】우수한", + "7·우수한", 69, 10, 77, @@ -9619,7 +9619,7 @@ ] ], [ - "【7기】토야마 카스미", + "7·토야마 카스미", 66, 82, 9, @@ -9642,7 +9642,7 @@ ] ], [ - "【7기】한서진", + "7·한서진", 75, 79, 9, @@ -9674,7 +9674,7 @@ ] ], [ - "【7기】황우주", + "7·황우주", 73, 9, 73, @@ -9699,7 +9699,7 @@ ] ], [ - "【7기】진리", + "7·진리", 76, 9, 71, @@ -9722,7 +9722,7 @@ ] ], [ - "【7기】햄", + "7·햄", 68, 9, 78, @@ -9744,7 +9744,7 @@ ] ], [ - "【7기】미나", + "7·미나", 67, 9, 84, @@ -9772,7 +9772,7 @@ ] ], [ - "【7기】노승혜", + "7·노승혜", 79, 69, 9, @@ -9806,7 +9806,7 @@ ] ], [ - "【7기】제갈여포", + "7·제갈여포", 78, 9, 70, @@ -9828,7 +9828,7 @@ ] ], [ - "【7기】이드", + "7·이드", 69, 79, 9, @@ -9853,7 +9853,7 @@ ] ], [ - "【7기】ˇ˘ˇ", + "7·ˇ˘ˇ", 82, 66, 9, @@ -9875,7 +9875,7 @@ ] ], [ - "【7기】힝힝", + "7·힝힝", 63, 72, 9, @@ -9898,7 +9898,7 @@ ] ], [ - "【7기】난세", + "7·난세", 69, 80, 9, @@ -9928,7 +9928,7 @@ ] ], [ - "【7기】료우기시키", + "7·료우기시키", 73, 77, 9, @@ -9952,7 +9952,7 @@ ] ], [ - "【7기】김주영", + "7·김주영", 76, 9, 73, @@ -9975,7 +9975,7 @@ ] ], [ - "【7기】만샘", + "7·만샘", 67, 9, 82, @@ -9997,7 +9997,7 @@ ] ], [ - "【7기】김나영", + "7·김나영", 68, 77, 9, @@ -10020,7 +10020,7 @@ ] ], [ - "【7기】대천사하야미", + "7·대천사하야미", 69, 9, 79, @@ -10042,7 +10042,7 @@ ] ], [ - "【7기】잠입", + "7·잠입", 62, 14, 77, @@ -10064,7 +10064,7 @@ ] ], [ - "【7기】우양우", + "7·우양우", 69, 81, 9, @@ -10091,7 +10091,7 @@ ] ], [ - "【7기】갓드오브갓크", + "7·갓드오브갓크", 68, 9, 78, @@ -10113,7 +10113,7 @@ ] ], [ - "【7기】삼남매아빠", + "7·삼남매아빠", 66, 9, 81, @@ -10135,7 +10135,7 @@ ] ], [ - "【7기】엘레나", + "7·엘레나", 76, 66, 9, @@ -10158,7 +10158,7 @@ ] ], [ - "【7기】줄리엣", + "7·줄리엣", 64, 9, 85, @@ -10183,7 +10183,7 @@ ] ], [ - "【7기】이쓰미", + "7·이쓰미", 74, 9, 80, @@ -10209,7 +10209,7 @@ ] ], [ - "【7기】차기준", + "7·차기준", 69, 9, 75, @@ -10231,7 +10231,7 @@ ] ], [ - "【7기】고블린슬레이어", + "7·고블린슬레이어", 9, 93, 56, @@ -10254,7 +10254,7 @@ ] ], [ - "【7기】마법소년", + "7·마법소년", 81, 67, 9, @@ -10282,7 +10282,7 @@ ] ], [ - "【7기】박초롱", + "7·박초롱", 66, 82, 9, @@ -10304,7 +10304,7 @@ ] ], [ - "【7기】다유", + "7·다유", 74, 71, 9, @@ -10326,7 +10326,7 @@ ] ], [ - "【7기】늘모", + "7·늘모", 66, 80, 9, @@ -10348,7 +10348,7 @@ ] ], [ - "【7기】심심", + "7·심심", 68, 79, 9, @@ -10370,7 +10370,7 @@ ] ], [ - "【7기】Tiasse", + "7·Tiasse", 11, 62, 79, @@ -10393,7 +10393,7 @@ ] ], [ - "【7기】필터링", + "7·필터링", 68, 9, 80, @@ -10416,7 +10416,7 @@ ] ], [ - "【7기】대충함", + "7·대충함", 10, 86, 59, @@ -10439,7 +10439,7 @@ ] ], [ - "【7기】돈까스", + "7·돈까스", 68, 84, 9, @@ -10464,7 +10464,7 @@ ] ], [ - "【7기】아이린", + "7·아이린", 67, 81, 9, @@ -10486,7 +10486,7 @@ ] ], [ - "【7기】Rei", + "7·Rei", 68, 76, 9, @@ -10510,7 +10510,7 @@ ] ], [ - "【7기】뉴비는아님암튼아님", + "7·뉴비는아님암튼아님", 66, 81, 10, @@ -10532,7 +10532,7 @@ ] ], [ - "【7기】새장속의이상향", + "7·새장속의이상향", 67, 78, 10, @@ -10555,7 +10555,7 @@ ] ], [ - "【7기】란카", + "7·란카", 66, 80, 10, @@ -10578,7 +10578,7 @@ ] ], [ - "【7기】청기사", + "7·청기사", 9, 58, 89, @@ -10601,7 +10601,7 @@ ] ], [ - "【7기】이수임", + "7·이수임", 68, 9, 79, @@ -10625,7 +10625,7 @@ ] ], [ - "【7기】도메스틱한 그녀", + "7·도메스틱한 그녀", 9, 58, 92, @@ -10649,7 +10649,7 @@ ] ], [ - "【7기】이피스", + "7·이피스", 90, 9, 9, @@ -10675,7 +10675,7 @@ ] ], [ - "【7기】강예서", + "7·강예서", 81, 68, 9, @@ -10702,7 +10702,7 @@ ] ], [ - "【7기】삼남매엄마", + "7·삼남매엄마", 68, 80, 9, @@ -10724,7 +10724,7 @@ ] ], [ - "【7기】북오더#98", + "7·북오더#98", 9, 61, 75, @@ -10746,7 +10746,7 @@ ] ], [ - "【7기】제노에이지", + "7·제노에이지", 63, 9, 79, @@ -10769,7 +10769,7 @@ ] ], [ - "【7기】양복을입은아저씨", + "7·양복을입은아저씨", 83, 63, 9, @@ -10792,7 +10792,7 @@ ] ], [ - "【7기】강준상", + "7·강준상", 81, 63, 9, @@ -10818,7 +10818,7 @@ ] ], [ - "【7기】좀비A", + "7·좀비A", 68, 78, 9, @@ -10841,7 +10841,7 @@ ] ], [ - "【7기】M950", + "7·M950", 66, 81, 9, @@ -10864,7 +10864,7 @@ ] ], [ - "【7기】잠입2", + "7·잠입2", 63, 74, 9, @@ -10886,7 +10886,7 @@ ] ], [ - "【7기】미스티", + "7·미스티", 78, 9, 66, @@ -10908,7 +10908,7 @@ ] ], [ - "【7기】엘사", + "7·엘사", 67, 80, 9, @@ -10931,7 +10931,7 @@ ] ], [ - "【7기】무한파워안경", + "7·무한파워안경", 9, 65, 81, @@ -10954,7 +10954,7 @@ ] ], [ - "【7기】천괴금", + "7·천괴금", 11, 86, 58, @@ -10977,7 +10977,7 @@ ] ], [ - "【7기】하우젤", + "7·하우젤", 82, 63, 9, @@ -10999,7 +10999,7 @@ ] ], [ - "【7기】강육공", + "7·강육공", 9, 56, 83, @@ -11022,7 +11022,7 @@ ] ], [ - "【7기】레이첼가드너", + "7·레이첼가드너", 16, 73, 67, @@ -11044,7 +11044,7 @@ ] ], [ - "【7기】리오르", + "7·리오르", 9, 57, 84, @@ -11067,7 +11067,7 @@ ] ], [ - "【7기】바젤기우스", + "7·바젤기우스", 68, 77, 9, @@ -11093,7 +11093,7 @@ ] ], [ - "【7기】모모", + "7·모모", 9, 58, 80, @@ -11115,7 +11115,7 @@ ] ], [ - "【7기】New캐슬", + "7·New캐슬", 9, 62, 76, @@ -11138,7 +11138,7 @@ ] ], [ - "【7기】나데코", + "7·나데코", 74, 9, 67, @@ -11160,7 +11160,7 @@ ] ], [ - "【7기】시그시그", + "7·시그시그", 9, 74, 68, @@ -11183,7 +11183,7 @@ ] ], [ - "【7기】oops", + "7·oops", 64, 9, 74, @@ -11205,7 +11205,7 @@ ] ], [ - "【7기】쀼웃", + "7·쀼웃", 9, 61, 75, @@ -11230,7 +11230,7 @@ ] ], [ - "【7기】혼자SKY간혜나", + "7·혼자SKY간혜나", 27, 75, 69, @@ -11252,7 +11252,7 @@ ] ], [ - "【7기】술병", + "7·술병", 10, 72, 88, @@ -11275,7 +11275,7 @@ ] ], [ - "【7기】하하", + "7·하하", 86, 71, 11, @@ -11298,7 +11298,7 @@ ] ], [ - "【7기】마검", + "7·마검", 69, 10, 81, @@ -11320,7 +11320,7 @@ ] ], [ - "【7기】Febrile", + "7·Febrile", 71, 10, 81, @@ -11344,7 +11344,7 @@ ] ], [ - "【7기】마니와 시라사기", + "7·마니와 시라사기", 12, 75, 76, @@ -11366,7 +11366,7 @@ ] ], [ - "【7기】북오더#428", + "7·북오더#428", 83, 38, 39, @@ -11389,7 +11389,7 @@ ] ], [ - "【8기】우동게", + "8·우동게", 68, 10, 93, @@ -11414,7 +11414,7 @@ ] ], [ - "【8기】후지와라 치카", + "8·후지와라 치카", 92, 67, 10, @@ -11440,7 +11440,7 @@ ] ], [ - "【8기】카이스트", + "8·카이스트", 72, 10, 88, @@ -11462,7 +11462,7 @@ ] ], [ - "【8기】김나영", + "8·김나영", 72, 87, 10, @@ -11485,7 +11485,7 @@ ] ], [ - "【8기】무한파워안경", + "8·무한파워안경", 87, 73, 10, @@ -11507,7 +11507,7 @@ ] ], [ - "【8기】삼겹살", + "8·삼겹살", 83, 11, 77, @@ -11529,7 +11529,7 @@ ] ], [ - "【8기】노진구", + "8·노진구", 87, 74, 10, @@ -11557,7 +11557,7 @@ ] ], [ - "【8기】평민킬러", + "8·평민킬러", 75, 85, 10, @@ -11584,7 +11584,7 @@ ] ], [ - "【8기】시뉴카린", + "8·시뉴카린", 70, 10, 88, @@ -11609,7 +11609,7 @@ ] ], [ - "【8기】제노에이지", + "8·제노에이지", 73, 10, 89, @@ -11637,7 +11637,7 @@ ] ], [ - "【8기】민트의 요정", + "8·민트의 요정", 10, 81, 80, @@ -11659,7 +11659,7 @@ ] ], [ - "【8기】포트리스3패왕전", + "8·포트리스3패왕전", 72, 10, 88, @@ -11688,7 +11688,7 @@ ] ], [ - "【8기】프로야구매니저", + "8·프로야구매니저", 72, 89, 10, @@ -11724,7 +11724,7 @@ ] ], [ - "【8기】덕장", + "8·덕장", 90, 69, 10, @@ -11747,7 +11747,7 @@ ] ], [ - "【8기】이상혁", + "8·이상혁", 10, 92, 66, @@ -11769,7 +11769,7 @@ ] ], [ - "【8기】쉐도우 핀드", + "8·쉐도우 핀드", 71, 10, 91, @@ -11791,7 +11791,7 @@ ] ], [ - "【8기】프론트라인", + "8·프론트라인", 85, 74, 10, @@ -11814,7 +11814,7 @@ ] ], [ - "【8기】조밧", + "8·조밧", 67, 11, 89, @@ -11836,7 +11836,7 @@ ] ], [ - "【8기】구스", + "8·구스", 83, 78, 10, @@ -11858,7 +11858,7 @@ ] ], [ - "【8기】등갑병", + "8·등갑병", 89, 67, 10, @@ -11881,7 +11881,7 @@ ] ], [ - "【8기】갈색마(+5)", + "8·갈색마(+5)", 76, 81, 10, @@ -11903,7 +11903,7 @@ ] ], [ - "【8기】사스케", + "8·사스케", 74, 86, 10, @@ -11937,7 +11937,7 @@ ] ], [ - "【8기】슬라임", + "8·슬라임", 82, 78, 10, @@ -11959,7 +11959,7 @@ ] ], [ - "【8기】빵에건포도", + "8·빵에건포도", 85, 76, 11, @@ -11981,7 +11981,7 @@ ] ], [ - "【8기】박초롱", + "8·박초롱", 68, 91, 10, @@ -12004,7 +12004,7 @@ ] ], [ - "【8기】천괴금", + "8·천괴금", 70, 88, 10, @@ -12026,7 +12026,7 @@ ] ], [ - "【8기】모니ㅇ카", + "8·모니ㅇ카", 69, 10, 89, @@ -12050,7 +12050,7 @@ ] ], [ - "【8기】치카", + "8·치카", 89, 71, 10, @@ -12074,7 +12074,7 @@ ] ], [ - "【8기】동백쨔응", + "8·동백쨔응", 73, 11, 88, @@ -12097,7 +12097,7 @@ ] ], [ - "【8기】이리스 유마", + "8·이리스 유마", 90, 10, 68, @@ -12124,7 +12124,7 @@ ] ], [ - "【8기】Rumi", + "8·Rumi", 71, 89, 10, @@ -12150,7 +12150,7 @@ ] ], [ - "【8기】줄리엣", + "8·줄리엣", 87, 72, 10, @@ -12173,7 +12173,7 @@ ] ], [ - "【8기】이시리스", + "8·이시리스", 70, 10, 92, @@ -12195,7 +12195,7 @@ ] ], [ - "【8기】분위기갑자기소전", + "8·분위기갑자기소전", 75, 87, 10, @@ -12218,7 +12218,7 @@ ] ], [ - "【8기】페레로로쉐", + "8·페레로로쉐", 79, 10, 81, @@ -12248,7 +12248,7 @@ ] ], [ - "【8기】마비노기", + "8·마비노기", 73, 88, 10, @@ -12271,7 +12271,7 @@ ] ], [ - "【8기】만샘", + "8·만샘", 74, 10, 88, @@ -12298,7 +12298,7 @@ ] ], [ - "【8기】아유", + "8·아유", 70, 10, 89, @@ -12320,7 +12320,7 @@ ] ], [ - "【8기】마법소녀매지컬모모", + "8·마법소녀매지컬모모", 75, 85, 10, @@ -12342,7 +12342,7 @@ ] ], [ - "【8기】하우젤", + "8·하우젤", 87, 73, 10, @@ -12364,7 +12364,7 @@ ] ], [ - "【8기】그랜드체이스", + "8·그랜드체이스", 72, 89, 11, @@ -12390,7 +12390,7 @@ ] ], [ - "【8기】카라", + "8·카라", 76, 11, 83, @@ -12422,7 +12422,7 @@ ] ], [ - "【8기】미스티", + "8·미스티", 71, 10, 88, @@ -12444,7 +12444,7 @@ ] ], [ - "【8기】삼남매아빠", + "8·삼남매아빠", 71, 10, 92, @@ -12475,7 +12475,7 @@ ] ], [ - "【8기】서든어택2", + "8·서든어택2", 72, 10, 88, @@ -12498,7 +12498,7 @@ ] ], [ - "【8기】단비", + "8·단비", 71, 10, 91, @@ -12521,7 +12521,7 @@ ] ], [ - "【8기】베니엔마", + "8·베니엔마", 86, 72, 11, @@ -12543,7 +12543,7 @@ ] ], [ - "【8기】베스", + "8·베스", 69, 10, 89, @@ -12569,7 +12569,7 @@ ] ], [ - "【8기】리플", + "8·리플", 71, 90, 10, @@ -12597,7 +12597,7 @@ ] ], [ - "【8기】두나", + "8·두나", 72, 10, 88, @@ -12619,7 +12619,7 @@ ] ], [ - "【8기】後唐 이존욱", + "8·後唐 이존욱", 71, 87, 11, @@ -12642,7 +12642,7 @@ ] ], [ - "【8기】일시키면삭턴탐", + "8·일시키면삭턴탐", 11, 66, 93, @@ -12665,7 +12665,7 @@ ] ], [ - "【8기】주인장", + "8·주인장", 73, 85, 10, @@ -12687,7 +12687,7 @@ ] ], [ - "【8기】소열제유비", + "8·소열제유비", 72, 88, 10, @@ -12709,7 +12709,7 @@ ] ], [ - "【8기】아노리엔", + "8·아노리엔", 87, 70, 11, @@ -12732,7 +12732,7 @@ ] ], [ - "【8기】미아뇌미아", + "8·미아뇌미아", 73, 88, 10, @@ -12754,7 +12754,7 @@ ] ], [ - "【8기】오로라", + "8·오로라", 72, 88, 11, @@ -12776,7 +12776,7 @@ ] ], [ - "【8기】류다희", + "8·류다희", 72, 87, 11, @@ -12799,7 +12799,7 @@ ] ], [ - "【8기】수장", + "8·수장", 76, 84, 10, @@ -12821,7 +12821,7 @@ ] ], [ - "【8기】지나가는뉴비", + "8·지나가는뉴비", 77, 81, 10, @@ -12846,7 +12846,7 @@ ] ], [ - "【8기】삼남매엄마", + "8·삼남매엄마", 73, 10, 86, @@ -12869,7 +12869,7 @@ ] ], [ - "【8기】청기사", + "8·청기사", 11, 67, 93, @@ -12891,7 +12891,7 @@ ] ], [ - "【8기】료우기시키", + "8·료우기시키", 69, 11, 89, @@ -12913,7 +12913,7 @@ ] ], [ - "【8기】Aika", + "8·Aika", 85, 75, 11, @@ -12938,7 +12938,7 @@ ] ], [ - "【8기】기연빌런", + "8·기연빌런", 10, 66, 86, @@ -12960,7 +12960,7 @@ ] ], [ - "【8기】아이린", + "8·아이린", 71, 89, 10, @@ -12982,7 +12982,7 @@ ] ], [ - "【8기】쀼웃", + "8·쀼웃", 11, 68, 91, @@ -13004,7 +13004,7 @@ ] ], [ - "【8기】병리학적자세", + "8·병리학적자세", 68, 10, 92, @@ -13026,7 +13026,7 @@ ] ], [ - "【8기】외심장", + "8·외심장", 71, 10, 87, @@ -13048,7 +13048,7 @@ ] ], [ - "【8기】NOVA1492", + "8·NOVA1492", 10, 70, 87, @@ -13070,7 +13070,7 @@ ] ], [ - "【8기】킹유신", + "8·킹유신", 81, 75, 12, @@ -13092,7 +13092,7 @@ ] ], [ - "【8기】생각", + "8·생각", 10, 65, 90, @@ -13114,7 +13114,7 @@ ] ], [ - "【8기】색무새호무새망무새", + "8·색무새호무새망무새", 80, 10, 76, @@ -13137,7 +13137,7 @@ ] ], [ - "【8기】의리", + "8·의리", 72, 83, 10, @@ -13159,7 +13159,7 @@ ] ], [ - "【9기】카이스트", + "9·카이스트", 71, 10, 88, @@ -13182,7 +13182,7 @@ ] ], [ - "【9기】임사영", + "9·임사영", 71, 10, 88, @@ -13207,7 +13207,7 @@ ] ], [ - "【9기】아유", + "9·아유", 72, 10, 87, @@ -13231,7 +13231,7 @@ ] ], [ - "【9기】타마키", + "9·타마키", 87, 71, 11, @@ -13255,7 +13255,7 @@ ] ], [ - "【9기】평민킬러", + "9·평민킬러", 69, 89, 10, @@ -13278,7 +13278,7 @@ ] ], [ - "【9기】무사태평자", + "9·무사태평자", 70, 10, 88, @@ -13301,7 +13301,7 @@ ] ], [ - "【9기】밥벌레", + "9·밥벌레", 71, 11, 88, @@ -13326,7 +13326,7 @@ ] ], [ - "【9기】미야와키 사쿠라", + "9·미야와키 사쿠라", 72, 10, 87, @@ -13351,7 +13351,7 @@ ] ], [ - "【9기】황약사", + "9·황약사", 90, 68, 10, @@ -13377,7 +13377,7 @@ ] ], [ - "【9기】이쓰미", + "9·이쓰미", 71, 10, 89, @@ -13401,7 +13401,7 @@ ] ], [ - "【9기】쌀벌레", + "9·쌀벌레", 69, 11, 87, @@ -13427,7 +13427,7 @@ ] ], [ - "【9기】로키", + "9·로키", 74, 87, 10, @@ -13456,7 +13456,7 @@ ] ], [ - "【9기】기술제한이면인탐", + "9·기술제한이면인탐", 10, 69, 91, @@ -13480,7 +13480,7 @@ ] ], [ - "【9기】치카", + "9·치카", 71, 11, 86, @@ -13506,7 +13506,7 @@ ] ], [ - "【9기】나랑", + "9·나랑", 90, 41, 37, @@ -13532,7 +13532,7 @@ ] ], [ - "【9기】료우기시키", + "9·료우기시키", 89, 70, 10, @@ -13558,7 +13558,7 @@ ] ], [ - "【9기】늅늅", + "9·늅늅", 72, 87, 10, @@ -13584,7 +13584,7 @@ ] ], [ - "【9기】스트레인지", + "9·스트레인지", 76, 84, 10, @@ -13608,7 +13608,7 @@ ] ], [ - "【9기】개미호랑이", + "9·개미호랑이", 72, 10, 88, @@ -13635,7 +13635,7 @@ ] ], [ - "【9기】니콜라스 퓨리", + "9·니콜라스 퓨리", 79, 11, 80, @@ -13665,7 +13665,7 @@ ] ], [ - "【9기】이시리스", + "9·이시리스", 70, 10, 89, @@ -13687,7 +13687,7 @@ ] ], [ - "【9기】술벌레", + "9·술벌레", 11, 70, 86, @@ -13711,7 +13711,7 @@ ] ], [ - "【9기】박초롱", + "9·박초롱", 73, 86, 10, @@ -13733,7 +13733,7 @@ ] ], [ - "【9기】이드", + "9·이드", 71, 10, 88, @@ -13757,7 +13757,7 @@ ] ], [ - "【9기】그루트", + "9·그루트", 72, 10, 86, @@ -13782,7 +13782,7 @@ ] ], [ - "【9기】노가가", + "9·노가가", 90, 68, 10, @@ -13808,7 +13808,7 @@ ] ], [ - "【9기】하우젤", + "9·하우젤", 86, 74, 10, @@ -13835,7 +13835,7 @@ ] ], [ - "【9기】이거뭔겜임", + "9·이거뭔겜임", 74, 82, 10, @@ -13857,7 +13857,7 @@ ] ], [ - "【9기】5분장", + "9·5분장", 71, 10, 86, @@ -13879,7 +13879,7 @@ ] ], [ - "【9기】sifmd", + "9·sifmd", 71, 10, 86, @@ -13901,7 +13901,7 @@ ] ], [ - "【9기】피라미드건설노동자", + "9·피라미드건설노동자", 11, 91, 65, @@ -13923,7 +13923,7 @@ ] ], [ - "【9기】죽창(+5)", + "9·죽창(+5)", 69, 11, 89, @@ -13950,7 +13950,7 @@ ] ], [ - "【9기】보만다", + "9·보만다", 72, 85, 10, @@ -13974,7 +13974,7 @@ ] ], [ - "【9기】∵∴∵∴∵∴∵∴∵", + "9·∵∴∵∴∵∴∵∴∵", 71, 86, 10, @@ -13998,7 +13998,7 @@ ] ], [ - "【9기】의리", + "9·의리", 72, 84, 10, @@ -14020,7 +14020,7 @@ ] ], [ - "【9기】콧코로", + "9·콧코로", 87, 71, 10, @@ -14043,7 +14043,7 @@ ] ], [ - "【9기】아루지사마", + "9·아루지사마", 67, 89, 12, @@ -14065,7 +14065,7 @@ ] ], [ - "【9기】다유", + "9·다유", 71, 86, 10, @@ -14087,7 +14087,7 @@ ] ], [ - "【9기】레프 트로츠키", + "9·레프 트로츠키", 71, 10, 87, @@ -14110,7 +14110,7 @@ ] ], [ - "【9기】누렁", + "9·누렁", 89, 70, 10, @@ -14133,7 +14133,7 @@ ] ], [ - "【9기】클로제린츠", + "9·클로제린츠", 72, 10, 87, @@ -14158,7 +14158,7 @@ ] ], [ - "【9기】소열제유비", + "9·소열제유비", 71, 87, 10, @@ -14180,7 +14180,7 @@ ] ], [ - "【9기】호크아이", + "9·호크아이", 72, 87, 10, @@ -14202,7 +14202,7 @@ ] ], [ - "【9기】HAL 9000", + "9·HAL 9000", 71, 10, 88, @@ -14227,7 +14227,7 @@ ] ], [ - "【9기】돼지바베큐", + "9·돼지바베큐", 72, 10, 85, @@ -14249,7 +14249,7 @@ ] ], [ - "【9기】아시나 겐이치로", + "9·아시나 겐이치로", 85, 71, 10, @@ -14275,7 +14275,7 @@ ] ], [ - "【9기】싸우지말고삼모해", + "9·싸우지말고삼모해", 70, 10, 87, @@ -14297,7 +14297,7 @@ ] ], [ - "【9기】정근", + "9·정근", 70, 10, 88, @@ -14321,7 +14321,7 @@ ] ], [ - "【9기】버즈", + "9·버즈", 88, 71, 10, @@ -14350,7 +14350,7 @@ ] ], [ - "【9기】미친과학", + "9·미친과학", 70, 84, 10, @@ -14373,7 +14373,7 @@ ] ], [ - "【9기】북오더", + "9·북오더", 71, 85, 10, @@ -14396,7 +14396,7 @@ ] ], [ - "【9기】드류", + "9·드류", 70, 10, 87, @@ -14418,7 +14418,7 @@ ] ], [ - "【9기】리플", + "9·리플", 73, 84, 10, @@ -14440,7 +14440,7 @@ ] ], [ - "【9기】수장", + "9·수장", 77, 81, 10, @@ -14463,7 +14463,7 @@ ] ], [ - "【9기】아이린", + "9·아이린", 71, 87, 10, @@ -14487,7 +14487,7 @@ ] ], [ - "【9기】도적", + "9·도적", 10, 90, 65, @@ -14509,7 +14509,7 @@ ] ], [ - "【9기】n아텐 누", + "9·n아텐 누", 72, 11, 85, @@ -14531,7 +14531,7 @@ ] ], [ - "【9기】노네임", + "9·노네임", 88, 72, 10, @@ -14554,7 +14554,7 @@ ] ], [ - "【9기】파이", + "9·파이", 79, 81, 10, @@ -14577,7 +14577,7 @@ ] ], [ - "【9기】비올레타", + "9·비올레타", 70, 85, 10, @@ -14599,7 +14599,7 @@ ] ], [ - "【9기】리안", + "9·리안", 86, 71, 10, @@ -14625,7 +14625,7 @@ ] ], [ - "【9기】아무것도안함", + "9·아무것도안함", 85, 74, 10, @@ -14648,7 +14648,7 @@ ] ], [ - "【9기】망나뇽", + "9·망나뇽", 70, 84, 12, @@ -14672,7 +14672,7 @@ ] ], [ - "【9기】7.5초장", + "9·7.5초장", 11, 67, 90, @@ -14694,7 +14694,7 @@ ] ], [ - "【9기】장손신희", + "9·장손신희", 72, 84, 10, @@ -14717,7 +14717,7 @@ ] ], [ - "【9기】문학소녀", + "9·문학소녀", 70, 10, 86, @@ -14739,7 +14739,7 @@ ] ], [ - "【9기】제노에이지", + "9·제노에이지", 69, 10, 87, @@ -14763,7 +14763,7 @@ ] ], [ - "【9기】줄리엣", + "9·줄리엣", 71, 84, 10, @@ -14787,7 +14787,7 @@ ] ], [ - "【9기】이수", + "9·이수", 70, 85, 10, @@ -14813,7 +14813,7 @@ ] ], [ - "【9기】탈곡기", + "9·탈곡기", 69, 12, 80, @@ -14836,7 +14836,7 @@ ] ], [ - "【9기】아노리엔", + "9·아노리엔", 73, 81, 10, @@ -14858,7 +14858,7 @@ ] ], [ - "【9기】실전형집합장", + "9·실전형집합장", 67, 81, 10, @@ -14880,7 +14880,7 @@ ] ], [ - "【9기】아세소환수1", + "9·아세소환수1", 11, 66, 79, @@ -14902,7 +14902,7 @@ ] ], [ - "【11기】카이스트", + "11·카이스트", 71, 10, 87, @@ -14926,7 +14926,7 @@ ] ], [ - "【11기】줄리엣", + "11·줄리엣", 70, 10, 86, @@ -14955,7 +14955,7 @@ ] ], [ - "【11기】Samo", + "11·Samo", 71, 85, 10, @@ -14979,7 +14979,7 @@ ] ], [ - "【11기】니논", + "11·니논", 10, 67, 90, @@ -15004,7 +15004,7 @@ ] ], [ - "【11기】극새ㅅ사이브ㄹ", + "11·극새ㅅ사이브ㄹ", 67, 10, 90, @@ -15029,7 +15029,7 @@ ] ], [ - "【11기】이초홍", + "11·이초홍", 71, 10, 86, @@ -15056,7 +15056,7 @@ ] ], [ - "【11기】케프리", + "11·케프리", 91, 65, 10, @@ -15081,7 +15081,7 @@ ] ], [ - "【11기】철푸덕", + "11·철푸덕", 70, 10, 88, @@ -15106,7 +15106,7 @@ ] ], [ - "【11기】기분좋은안녕", + "11·기분좋은안녕", 68, 88, 10, @@ -15128,7 +15128,7 @@ ] ], [ - "【11기】평민킬러", + "11·평민킬러", 71, 87, 10, @@ -15156,7 +15156,7 @@ ] ], [ - "【11기】삐약이", + "11·삐약이", 74, 83, 10, @@ -15180,7 +15180,7 @@ ] ], [ - "【11기】꽃냥", + "11·꽃냥", 69, 10, 87, @@ -15203,7 +15203,7 @@ ] ], [ - "【11기】Hide_D", + "11·Hide_D", 11, 69, 88, @@ -15226,7 +15226,7 @@ ] ], [ - "【11기】무당벌레", + "11·무당벌레", 86, 10, 72, @@ -15249,7 +15249,7 @@ ] ], [ - "【11기】개촐ㄹ랒필거야 ?", + "11·개촐ㄹ랒필거야 ?", 81, 75, 10, @@ -15275,7 +15275,7 @@ ] ], [ - "【11기】꽃삔", + "11·꽃삔", 71, 11, 86, @@ -15298,7 +15298,7 @@ ] ], [ - "【11기】수장", + "11·수장", 70, 10, 86, @@ -15321,7 +15321,7 @@ ] ], [ - "【11기】비스마르크", + "11·비스마르크", 69, 85, 11, @@ -15344,7 +15344,7 @@ ] ], [ - "【11기】료우기시키", + "11·료우기시키", 82, 76, 10, @@ -15367,7 +15367,7 @@ ] ], [ - "【11기】이리시스", + "11·이리시스", 72, 10, 86, @@ -15392,7 +15392,7 @@ ] ], [ - "【11기】개미호랑이", + "11·개미호랑이", 72, 10, 87, @@ -15420,7 +15420,7 @@ ] ], [ - "【11기】드림캐쳐", + "11·드림캐쳐", 73, 84, 10, @@ -15448,7 +15448,7 @@ ] ], [ - "【11기】학식대장", + "11·학식대장", 82, 74, 10, @@ -15471,7 +15471,7 @@ ] ], [ - "【11기】장손신희", + "11·장손신희", 71, 85, 11, @@ -15495,7 +15495,7 @@ ] ], [ - "【11기】리안", + "11·리안", 69, 10, 87, @@ -15517,7 +15517,7 @@ ] ], [ - "【11기】살인사건", + "11·살인사건", 71, 85, 10, @@ -15539,7 +15539,7 @@ ] ], [ - "【11기】협동전 하고싶다", + "11·협동전 하고싶다", 73, 10, 86, @@ -15569,7 +15569,7 @@ ] ], [ - "【11기】반역의루돌프", + "11·반역의루돌프", 82, 66, 13, @@ -15592,7 +15592,7 @@ ] ], [ - "【11기】파이", + "11·파이", 68, 10, 88, @@ -15615,7 +15615,7 @@ ] ], [ - "【11기】고긔가먹고싶", + "11·고긔가먹고싶", 10, 72, 84, @@ -15638,7 +15638,7 @@ ] ], [ - "【11기】쒸익쒸익", + "11·쒸익쒸익", 84, 73, 11, @@ -15664,7 +15664,7 @@ ] ], [ - "【11기】이시리스", + "11·이시리스", 72, 11, 86, @@ -15692,7 +15692,7 @@ ] ], [ - "【11기】임사영", + "11·임사영", 68, 10, 89, @@ -15714,7 +15714,7 @@ ] ], [ - "【11기】외심장", + "11·외심장", 72, 11, 84, @@ -15742,7 +15742,7 @@ ] ], [ - "【11기】빨간망토", + "11·빨간망토", 11, 69, 87, @@ -15764,7 +15764,7 @@ ] ], [ - "【11기】두나", + "11·두나", 68, 10, 90, @@ -15787,7 +15787,7 @@ ] ], [ - "【11기】멘헤라쨩", + "11·멘헤라쨩", 10, 71, 88, @@ -15809,7 +15809,7 @@ ] ], [ - "【11기】BAKBAK", + "11·BAKBAK", 68, 10, 88, @@ -15831,7 +15831,7 @@ ] ], [ - "【11기】아련그자체", + "11·아련그자체", 70, 10, 87, @@ -15854,7 +15854,7 @@ ] ], [ - "【11기】사스케", + "11·사스케", 71, 84, 10, @@ -15876,7 +15876,7 @@ ] ], [ - "【11기】Radon", + "11·Radon", 87, 70, 10, @@ -15902,7 +15902,7 @@ ] ], [ - "【11기】이쓰미", + "11·이쓰미", 73, 10, 84, @@ -15924,7 +15924,7 @@ ] ], [ - "【11기】댕찌율", + "11·댕찌율", 74, 10, 83, @@ -15950,7 +15950,7 @@ ] ], [ - "【11기】유튜브친구들", + "11·유튜브친구들", 69, 10, 87, @@ -15972,7 +15972,7 @@ ] ], [ - "【11기】치요", + "11·치요", 87, 67, 10, @@ -15995,7 +15995,7 @@ ] ], [ - "【11기】나가사와 마리나", + "11·나가사와 마리나", 81, 10, 76, @@ -16017,7 +16017,7 @@ ] ], [ - "【11기】륜", + "11·륜", 91, 11, 11, @@ -16045,7 +16045,7 @@ ] ], [ - "【11기】병리학적자세", + "11·병리학적자세", 70, 10, 88, @@ -16067,7 +16067,7 @@ ] ], [ - "【11기】민트토끼", + "11·민트토끼", 10, 89, 68, @@ -16090,7 +16090,7 @@ ] ], [ - "【11기】늘모", + "11·늘모", 64, 82, 18, @@ -16113,7 +16113,7 @@ ] ], [ - "【11기】킹구갓구", + "11·킹구갓구", 69, 88, 10, @@ -16137,7 +16137,7 @@ ] ], [ - "【11기】박일아", + "11·박일아", 10, 67, 92, @@ -16160,7 +16160,7 @@ ] ], [ - "【11기】사이다라떼", + "11·사이다라떼", 68, 10, 88, @@ -16185,7 +16185,7 @@ ] ], [ - "【11기】손인", + "11·손인", 71, 87, 10, @@ -16210,7 +16210,7 @@ ] ], [ - "【11기】소열제유비", + "11·소열제유비", 71, 85, 10, @@ -16232,7 +16232,7 @@ ] ], [ - "【11기】헹이", + "11·헹이", 71, 85, 10, @@ -16255,7 +16255,7 @@ ] ], [ - "【11기】의욕없는규일", + "11·의욕없는규일", 73, 85, 10, @@ -16282,7 +16282,7 @@ ] ], [ - "【11기】아이린", + "11·아이린", 69, 88, 10, @@ -16306,7 +16306,7 @@ ] ], [ - "【11기】조용히해라", + "11·조용히해라", 11, 67, 88, @@ -16328,7 +16328,7 @@ ] ], [ - "【11기】오른쪽왼쪽제자리", + "11·오른쪽왼쪽제자리", 88, 69, 11, @@ -16354,7 +16354,7 @@ ] ], [ - "【11기】고양이발바닥", + "11·고양이발바닥", 65, 11, 92, @@ -16376,7 +16376,7 @@ ] ], [ - "【11기】로리", + "11·로리", 10, 68, 87, @@ -16398,7 +16398,7 @@ ] ], [ - "【11기】개꿀", + "11·개꿀", 68, 82, 10, @@ -16420,7 +16420,7 @@ ] ], [ - "【11기】먹튀", + "11·먹튀", 69, 11, 82, @@ -16442,7 +16442,7 @@ ] ], [ - "【11기】조용히해주실래요?", + "11·조용히해주실래요?", 81, 68, 10, @@ -16465,7 +16465,7 @@ ] ], [ - "【11기】타오바오", + "11·타오바오", 11, 68, 81, @@ -16490,7 +16490,7 @@ ] ], [ - "【12기】병리학적자세", + "12·병리학적자세", 72, 10, 91, @@ -16519,7 +16519,7 @@ ] ], [ - "【12기】로 리", + "12·로 리", 71, 10, 89, @@ -16548,7 +16548,7 @@ ] ], [ - "【12기】미나토 유키나", + "12·미나토 유키나", 67, 12, 89, @@ -16571,7 +16571,7 @@ ] ], [ - "【12기】꼬리♡", + "12·꼬리♡", 73, 10, 90, @@ -16595,7 +16595,7 @@ ] ], [ - "【12기】치즈", + "12·치즈", 90, 70, 10, @@ -16620,7 +16620,7 @@ ] ], [ - "【12기】꼬리", + "12·꼬리", 72, 10, 91, @@ -16645,7 +16645,7 @@ ] ], [ - "【12기】꽃핀", + "12·꽃핀", 75, 10, 89, @@ -16675,7 +16675,7 @@ ] ], [ - "【12기】개미호랑이", + "12·개미호랑이", 71, 11, 88, @@ -16697,7 +16697,7 @@ ] ], [ - "【12기】캬루", + "12·캬루", 70, 11, 90, @@ -16720,7 +16720,7 @@ ] ], [ - "【12기】Hide_D", + "12·Hide_D", 10, 68, 93, @@ -16743,7 +16743,7 @@ ] ], [ - "【12기】평민킬러", + "12·평민킬러", 75, 85, 10, @@ -16774,7 +16774,7 @@ ] ], [ - "【12기】메디브", + "12·메디브", 83, 78, 10, @@ -16799,7 +16799,7 @@ ] ], [ - "【12기】아바브와", + "12·아바브와", 75, 86, 10, @@ -16821,7 +16821,7 @@ ] ], [ - "【12기】문병", + "12·문병", 13, 81, 78, @@ -16844,7 +16844,7 @@ ] ], [ - "【12기】카오스피닉스", + "12·카오스피닉스", 74, 10, 87, @@ -16873,7 +16873,7 @@ ] ], [ - "【12기】n아텐 누", + "12·n아텐 누", 77, 11, 85, @@ -16904,7 +16904,7 @@ ] ], [ - "【12기】바밀리오", + "12·바밀리오", 69, 10, 93, @@ -16928,7 +16928,7 @@ ] ], [ - "【12기】두나", + "12·두나", 68, 10, 94, @@ -16951,7 +16951,7 @@ ] ], [ - "【12기】리안", + "12·리안", 70, 10, 90, @@ -16973,7 +16973,7 @@ ] ], [ - "【12기】료우기시키", + "12·료우기시키", 71, 10, 88, @@ -16995,7 +16995,7 @@ ] ], [ - "【12기】이한결", + "12·이한결", 74, 86, 10, @@ -17018,7 +17018,7 @@ ] ], [ - "【12기】나폴레옹", + "12·나폴레옹", 82, 79, 10, @@ -17041,7 +17041,7 @@ ] ], [ - "【12기】란카", + "12·란카", 10, 72, 90, @@ -17064,7 +17064,7 @@ ] ], [ - "【12기】꼬리원자력발전소", + "12·꼬리원자력발전소", 83, 11, 78, @@ -17091,7 +17091,7 @@ ] ], [ - "【12기】리즈나광팬672번", + "12·리즈나광팬672번", 77, 82, 10, @@ -17114,7 +17114,7 @@ ] ], [ - "【12기】장손신희", + "12·장손신희", 78, 83, 10, @@ -17138,7 +17138,7 @@ ] ], [ - "【12기】카이스트", + "12·카이스트", 68, 11, 87, @@ -17161,7 +17161,7 @@ ] ], [ - "【12기】분노의꼬리", + "12·분노의꼬리", 70, 10, 91, @@ -17183,7 +17183,7 @@ ] ], [ - "【12기】이해고", + "12·이해고", 84, 75, 10, @@ -17208,7 +17208,7 @@ ] ], [ - "【12기】네이미", + "12·네이미", 86, 10, 73, @@ -17233,7 +17233,7 @@ ] ], [ - "【12기】모건", + "12·모건", 93, 13, 10, @@ -17258,7 +17258,7 @@ ] ], [ - "【12기】청기사", + "12·청기사", 10, 71, 89, @@ -17281,7 +17281,7 @@ ] ], [ - "【12기】반역의루돌프", + "12·반역의루돌프", 78, 74, 12, @@ -17304,7 +17304,7 @@ ] ], [ - "【12기】외심장", + "12·외심장", 68, 10, 91, @@ -17326,7 +17326,7 @@ ] ], [ - "【12기】로비", + "12·로비", 10, 68, 92, @@ -17350,7 +17350,7 @@ ] ], [ - "【12기】쟁안하는트롤", + "12·쟁안하는트롤", 67, 10, 92, @@ -17372,7 +17372,7 @@ ] ], [ - "【12기】시뉴카린해명해", + "12·시뉴카린해명해", 91, 70, 10, @@ -17395,7 +17395,7 @@ ] ], [ - "【12기】보스곰", + "12·보스곰", 69, 11, 89, @@ -17417,7 +17417,7 @@ ] ], [ - "【12기】김나영", + "12·김나영", 70, 89, 10, @@ -17445,7 +17445,7 @@ ] ], [ - "【12기】제노에이지", + "12·제노에이지", 67, 10, 95, @@ -17469,7 +17469,7 @@ ] ], [ - "【12기】노란멍충이", + "12·노란멍충이", 70, 88, 11, @@ -17492,7 +17492,7 @@ ] ], [ - "【12기】사스케", + "12·사스케", 92, 10, 10, @@ -17518,7 +17518,7 @@ ] ], [ - "【12기】아침에먹는아욱국", + "12·아침에먹는아욱국", 87, 10, 72, @@ -17540,7 +17540,7 @@ ] ], [ - "【12기】뒹굴뒹굴", + "12·뒹굴뒹굴", 70, 10, 84, @@ -17565,7 +17565,7 @@ ] ], [ - "【12기】USB", + "12·USB", 73, 10, 90, @@ -17588,7 +17588,7 @@ ] ], [ - "【12기】호박고구마", + "12·호박고구마", 11, 85, 73, @@ -17611,7 +17611,7 @@ ] ], [ - "【12기】스카디", + "12·스카디", 74, 86, 10, @@ -17638,7 +17638,7 @@ ] ], [ - "【12기】호무새", + "12·호무새", 77, 10, 82, @@ -17660,7 +17660,7 @@ ] ], [ - "【12기】아이린", + "12·아이린", 70, 88, 11, @@ -17683,7 +17683,7 @@ ] ], [ - "【12기】뽀", + "12·뽀", 71, 10, 91, @@ -17706,7 +17706,7 @@ ] ], [ - "【12기】낙지꿈", + "12·낙지꿈", 75, 10, 86, @@ -17732,7 +17732,7 @@ ] ], [ - "【12기】만샘", + "12·만샘", 71, 10, 88, @@ -17754,7 +17754,7 @@ ] ], [ - "【12기】광삼이", + "12·광삼이", 77, 10, 81, @@ -17776,7 +17776,7 @@ ] ], [ - "【12기】늙고병든활쟁이", + "12·늙고병든활쟁이", 74, 83, 10, @@ -17799,7 +17799,7 @@ ] ], [ - "【12기】천괴금", + "12·천괴금", 10, 90, 69, @@ -17822,7 +17822,7 @@ ] ], [ - "【12기】태양탄", + "12·태양탄", 78, 80, 11, @@ -17845,7 +17845,7 @@ ] ], [ - "【12기】정채연", + "12·정채연", 73, 83, 10, @@ -17867,7 +17867,7 @@ ] ], [ - "【12기】집나간파이", + "12·집나간파이", 84, 72, 10, @@ -17890,7 +17890,7 @@ ] ], [ - "【12기】구경꾼", + "12·구경꾼", 67, 79, 12, @@ -17912,7 +17912,7 @@ ] ], [ - "【13기】연초봄", + "13·연초봄", 69, 83, 10, @@ -17937,7 +17937,7 @@ ] ], [ - "【13기】아이린", + "13·아이린", 70, 85, 11, @@ -17967,7 +17967,7 @@ ] ], [ - "【13기】비스마르크", + "13·비스마르크", 68, 85, 11, @@ -17992,7 +17992,7 @@ ] ], [ - "【13기】치ㅋㄹ타", + "13·치ㅋㄹ타", 85, 69, 11, @@ -18015,7 +18015,7 @@ ] ], [ - "【13기】오리온자리", + "13·오리온자리", 81, 72, 10, @@ -18037,7 +18037,7 @@ ] ], [ - "【13기】호무새", + "13·호무새", 83, 69, 10, @@ -18060,7 +18060,7 @@ ] ], [ - "【13기】애니", + "13·애니", 87, 67, 11, @@ -18086,7 +18086,7 @@ ] ], [ - "【13기】배박수양아지", + "13·배박수양아지", 78, 74, 10, @@ -18109,7 +18109,7 @@ ] ], [ - "【13기】샴", + "13·샴", 71, 10, 84, @@ -18131,7 +18131,7 @@ ] ], [ - "【13기】베이비소울", + "13·베이비소울", 82, 73, 10, @@ -18155,7 +18155,7 @@ ] ], [ - "【13기】병리학적자세", + "13·병리학적자세", 69, 11, 86, @@ -18185,7 +18185,7 @@ ] ], [ - "【13기】얀핀", + "13·얀핀", 77, 79, 10, @@ -18212,7 +18212,7 @@ ] ], [ - "【13기】함병선입니다", + "13·함병선입니다", 85, 10, 71, @@ -18236,7 +18236,7 @@ ] ], [ - "【13기】카오스피닉스", + "13·카오스피닉스", 70, 10, 86, @@ -18261,7 +18261,7 @@ ] ], [ - "【13기】호무새의속마음", + "13·호무새의속마음", 82, 71, 10, @@ -18284,7 +18284,7 @@ ] ], [ - "【13기】카이스트", + "13·카이스트", 79, 11, 70, @@ -18306,7 +18306,7 @@ ] ], [ - "【13기】반역의루돌프", + "13·반역의루돌프", 77, 76, 10, @@ -18328,7 +18328,7 @@ ] ], [ - "【13기】체리맛농약", + "13·체리맛농약", 68, 10, 85, @@ -18350,7 +18350,7 @@ ] ], [ - "【13기】귀찮", + "13·귀찮", 67, 84, 10, @@ -18373,7 +18373,7 @@ ] ], [ - "【13기】랜임맨", + "13·랜임맨", 74, 10, 82, @@ -18396,7 +18396,7 @@ ] ], [ - "【13기】청기사", + "13·청기사", 11, 67, 88, @@ -18419,7 +18419,7 @@ ] ], [ - "【13기】Hide_D", + "13·Hide_D", 10, 72, 85, @@ -18441,7 +18441,7 @@ ] ], [ - "【13기】사스케", + "13·사스케", 71, 82, 10, @@ -18469,7 +18469,7 @@ ] ], [ - "【13기】규일", + "13·규일", 69, 10, 85, @@ -18491,7 +18491,7 @@ ] ], [ - "【13기】아르르 나쟈", + "13·아르르 나쟈", 67, 10, 86, @@ -18518,7 +18518,7 @@ ] ], [ - "【13기】한동숙", + "13·한동숙", 72, 84, 10, @@ -18550,7 +18550,7 @@ ] ], [ - "【13기】충차아님", + "13·충차아님", 87, 41, 35, @@ -18575,7 +18575,7 @@ ] ], [ - "【13기】오징어", + "13·오징어", 72, 83, 10, @@ -18602,7 +18602,7 @@ ] ], [ - "【13기】이취홍", + "13·이취홍", 68, 86, 10, @@ -18633,7 +18633,7 @@ ] ], [ - "【13기】오버이지", + "13·오버이지", 86, 68, 10, @@ -18656,7 +18656,7 @@ ] ], [ - "【13기】제노에이지", + "13·제노에이지", 67, 10, 87, @@ -18682,7 +18682,7 @@ ] ], [ - "【13기】개미호랑이", + "13·개미호랑이", 73, 10, 83, @@ -18705,7 +18705,7 @@ ] ], [ - "【13기】서새봄", + "13·서새봄", 84, 70, 11, @@ -18736,7 +18736,7 @@ ] ], [ - "【13기】강찬밥", + "13·강찬밥", 70, 83, 10, @@ -18759,7 +18759,7 @@ ] ], [ - "【13기】n아텐 누", + "13·n아텐 누", 83, 67, 11, @@ -18784,7 +18784,7 @@ ] ], [ - "【13기】슬라임", + "13·슬라임", 82, 71, 11, @@ -18807,7 +18807,7 @@ ] ], [ - "【13기】로리", + "13·로리", 81, 11, 71, @@ -18829,7 +18829,7 @@ ] ], [ - "【13기】달이차오른다", + "13·달이차오른다", 81, 70, 12, @@ -18852,7 +18852,7 @@ ] ], [ - "【13기】아오바", + "13·아오바", 68, 10, 86, @@ -18879,7 +18879,7 @@ ] ], [ - "【13기】토템", + "13·토템", 10, 67, 85, @@ -18901,7 +18901,7 @@ ] ], [ - "【13기】KZ Deft", + "13·KZ Deft", 71, 10, 83, @@ -18926,7 +18926,7 @@ ] ], [ - "【13기】유닠주세요", + "13·유닠주세요", 69, 84, 10, @@ -18949,7 +18949,7 @@ ] ], [ - "【13기】외심장", + "13·외심장", 67, 10, 88, @@ -18974,7 +18974,7 @@ ] ], [ - "【13기】두나", + "13·두나", 67, 11, 85, @@ -18996,7 +18996,7 @@ ] ], [ - "【13기】스타킹", + "13·스타킹", 76, 78, 10, @@ -19018,7 +19018,7 @@ ] ], [ - "【13기】제르피스", + "13·제르피스", 10, 66, 88, @@ -19041,7 +19041,7 @@ ] ], [ - "【13기】템", + "13·템", 69, 11, 83, @@ -19064,7 +19064,7 @@ ] ], [ - "【13기】견자희", + "13·견자희", 69, 85, 10, @@ -19096,7 +19096,7 @@ ] ], [ - "【13기】장손신희", + "13·장손신희", 69, 10, 86, @@ -19118,7 +19118,7 @@ ] ], [ - "【13기】니케", + "13·니케", 68, 10, 86, @@ -19140,7 +19140,7 @@ ] ], [ - "【13기】민트토끼", + "13·민트토끼", 68, 11, 86, @@ -19165,7 +19165,7 @@ ] ], [ - "【13기】묘", + "13·묘", 68, 81, 11, @@ -19187,7 +19187,7 @@ ] ], [ - "【13기】천통해서출세한삐약", + "13·천통해서출세한삐약", 67, 84, 10, @@ -19209,7 +19209,7 @@ ] ], [ - "【13기】멍", + "13·멍", 10, 78, 76, @@ -19232,7 +19232,7 @@ ] ], [ - "【13기】천괴금", + "13·천괴금", 12, 86, 67, @@ -19257,7 +19257,7 @@ ] ], [ - "【13기】제갈대두", + "13·제갈대두", 52, 27, 84, @@ -19280,7 +19280,7 @@ ] ], [ - "【13기】시즈", + "13·시즈", 11, 66, 87, @@ -19302,7 +19302,7 @@ ] ], [ - "【13기】냐옹냐옹", + "13·냐옹냐옹", 69, 10, 83, @@ -19324,7 +19324,7 @@ ] ], [ - "【13기】망나뇽", + "13·망나뇽", 81, 69, 10, @@ -19346,7 +19346,7 @@ ] ], [ - "【14기】Hide_D", + "14·Hide_D", 10, 72, 85, @@ -19368,7 +19368,7 @@ ] ], [ - "【14기】제노에이지", + "14·제노에이지", 71, 10, 87, @@ -19393,7 +19393,7 @@ ] ], [ - "【14기】연채홍", + "14·연채홍", 69, 11, 85, @@ -19421,7 +19421,7 @@ ] ], [ - "【14기】천괴금", + "14·천괴금", 85, 68, 10, @@ -19448,7 +19448,7 @@ ] ], [ - "【14기】카오스피닉스", + "14·카오스피닉스", 70, 11, 85, @@ -19470,7 +19470,7 @@ ] ], [ - "【14기】아메스", + "14·아메스", 71, 11, 84, @@ -19500,7 +19500,7 @@ ] ], [ - "【14기】지장", + "14·지장", 69, 10, 85, @@ -19522,7 +19522,7 @@ ] ], [ - "【14기】김나영", + "14·김나영", 70, 85, 10, @@ -19545,7 +19545,7 @@ ] ], [ - "【14기】화신주유", + "14·화신주유", 71, 86, 10, @@ -19577,7 +19577,7 @@ ] ], [ - "【14기】오리온자리", + "14·오리온자리", 83, 10, 74, @@ -19602,7 +19602,7 @@ ] ], [ - "【14기】료우기시키", + "14·료우기시키", 69, 10, 84, @@ -19624,7 +19624,7 @@ ] ], [ - "【14기】프로젝트애쉬", + "14·프로젝트애쉬", 70, 85, 10, @@ -19647,7 +19647,7 @@ ] ], [ - "【14기】치약토끼", + "14·치약토끼", 71, 84, 10, @@ -19676,7 +19676,7 @@ ] ], [ - "【14기】ㅇㄷ", + "14·ㅇㄷ", 69, 86, 10, @@ -19703,7 +19703,7 @@ ] ], [ - "【14기】째깐둥이", + "14·째깐둥이", 81, 10, 72, @@ -19725,7 +19725,7 @@ ] ], [ - "【14기】두나", + "14·두나", 67, 10, 86, @@ -19747,7 +19747,7 @@ ] ], [ - "【14기】Satan", + "14·Satan", 71, 82, 10, @@ -19769,7 +19769,7 @@ ] ], [ - "【14기】청기사", + "14·청기사", 10, 66, 90, @@ -19792,7 +19792,7 @@ ] ], [ - "【14기】보스곰", + "14·보스곰", 69, 12, 84, @@ -19817,7 +19817,7 @@ ] ], [ - "【14기】우주대스타나나양", + "14·우주대스타나나양", 80, 76, 11, @@ -19844,7 +19844,7 @@ ] ], [ - "【14기】메로나광팬486번", + "14·메로나광팬486번", 70, 85, 10, @@ -19867,7 +19867,7 @@ ] ], [ - "【14기】구미호", + "14·구미호", 86, 67, 10, @@ -19893,7 +19893,7 @@ ] ], [ - "【14기】삼겹살", + "14·삼겹살", 69, 12, 84, @@ -19920,7 +19920,7 @@ ] ], [ - "【14기】평민킬러", + "14·평민킬러", 71, 85, 10, @@ -19951,7 +19951,7 @@ ] ], [ - "【14기】장손신희", + "14·장손신희", 11, 68, 86, @@ -19973,7 +19973,7 @@ ] ], [ - "【14기】스오우", + "14·스오우", 72, 10, 85, @@ -19997,7 +19997,7 @@ ] ], [ - "【14기】룬레이", + "14·룬레이", 86, 66, 11, @@ -20020,7 +20020,7 @@ ] ], [ - "【14기】모가미 시즈카", + "14·모가미 시즈카", 87, 67, 10, @@ -20049,7 +20049,7 @@ ] ], [ - "【14기】멘헤라쨩", + "14·멘헤라쨩", 11, 66, 88, @@ -20071,7 +20071,7 @@ ] ], [ - "【14기】ⓢ노예장8", + "14·ⓢ노예장8", 12, 67, 85, @@ -20093,7 +20093,7 @@ ] ], [ - "【14기】짹짹이", + "14·짹짹이", 71, 11, 85, @@ -20117,7 +20117,7 @@ ] ], [ - "【14기】킹구없이는못살아", + "14·킹구없이는못살아", 83, 71, 10, @@ -20141,7 +20141,7 @@ ] ], [ - "【14기】임사영", + "14·임사영", 70, 10, 86, @@ -20167,7 +20167,7 @@ ] ], [ - "【14기】베이비소울", + "14·베이비소울", 81, 74, 10, @@ -20190,7 +20190,7 @@ ] ], [ - "【14기】륜", + "14·륜", 68, 11, 86, @@ -20212,7 +20212,7 @@ ] ], [ - "【14기】KZ Deft", + "14·KZ Deft", 81, 72, 10, @@ -20235,7 +20235,7 @@ ] ], [ - "【14기】페르난도", + "14·페르난도", 70, 84, 10, @@ -20259,7 +20259,7 @@ ] ], [ - "【14기】메디브", + "14·메디브", 83, 75, 10, @@ -20282,7 +20282,7 @@ ] ], [ - "【14기】Myo", + "14·Myo", 70, 82, 10, @@ -20305,7 +20305,7 @@ ] ], [ - "【14기】날떠나가지말아요", + "14·날떠나가지말아요", 67, 10, 86, @@ -20327,7 +20327,7 @@ ] ], [ - "【14기】엔야스", + "14·엔야스", 58, 23, 86, @@ -20349,7 +20349,7 @@ ] ], [ - "【14기】나루호도", + "14·나루호도", 79, 76, 10, @@ -20372,7 +20372,7 @@ ] ], [ - "【14기】개미호랑이", + "14·개미호랑이", 70, 10, 84, @@ -20395,7 +20395,7 @@ ] ], [ - "【14기】아리냥냥", + "14·아리냥냥", 10, 66, 89, @@ -20418,7 +20418,7 @@ ] ], [ - "【14기】톡없음", + "14·톡없음", 72, 11, 82, @@ -20440,7 +20440,7 @@ ] ], [ - "【14기】라피스라쥴리", + "14·라피스라쥴리", 71, 10, 85, @@ -20462,7 +20462,7 @@ ] ], [ - "【14기】로또", + "14·로또", 73, 82, 10, @@ -20486,7 +20486,7 @@ ] ], [ - "【14기】로리", + "14·로리", 72, 11, 84, @@ -20515,7 +20515,7 @@ ] ], [ - "【14기】미니미니쿠키", + "14·미니미니쿠키", 81, 10, 74, @@ -20537,7 +20537,7 @@ ] ], [ - "【14기】닥터유", + "14·닥터유", 76, 77, 10, @@ -20560,7 +20560,7 @@ ] ], [ - "【14기】멍", + "14·멍", 13, 76, 75, @@ -20582,7 +20582,7 @@ ] ], [ - "【14기】밀리언라이브", + "14·밀리언라이브", 81, 71, 10, @@ -20605,7 +20605,7 @@ ] ], [ - "【14기】언제 오픈했지", + "14·언제 오픈했지", 11, 84, 67, @@ -20627,7 +20627,7 @@ ] ], [ - "【14기】호랑나비", + "14·호랑나비", 10, 81, 72, @@ -20650,7 +20650,7 @@ ] ], [ - "【14기】사스케", + "14·사스케", 89, 10, 10, @@ -20679,7 +20679,7 @@ ] ], [ - "【14기】쀼웃", + "14·쀼웃", 10, 69, 83, @@ -20702,7 +20702,7 @@ ] ], [ - "【14기】돌아온파이", + "14·돌아온파이", 71, 81, 10, @@ -20724,7 +20724,7 @@ ] ], [ - "【14기】땅땅이", + "14·땅땅이", 67, 10, 83, @@ -20746,7 +20746,7 @@ ] ], [ - "【14기】도추", + "14·도추", 10, 79, 68, @@ -20768,7 +20768,7 @@ ] ], [ - "【16기】크람푸스", + "16·크람푸스", 69, 10, 87, @@ -20799,7 +20799,7 @@ ] ], [ - "【16기】미코토", + "16·미코토", 71, 11, 81, @@ -20822,7 +20822,7 @@ ] ], [ - "【16기】청기사", + "16·청기사", 11, 67, 89, @@ -20845,7 +20845,7 @@ ] ], [ - "【16기】보라색맛났어", + "16·보라색맛났어", 10, 71, 83, @@ -20867,7 +20867,7 @@ ] ], [ - "【16기】병리학적자세", + "16·병리학적자세", 67, 10, 90, @@ -20895,7 +20895,7 @@ ] ], [ - "【16기】메디이이브", + "16·메디이이브", 82, 74, 10, @@ -20919,7 +20919,7 @@ ] ], [ - "【16기】Navy마초", + "16·Navy마초", 68, 87, 10, @@ -20950,7 +20950,7 @@ ] ], [ - "【16기】Hide_D", + "16·Hide_D", 10, 81, 73, @@ -20972,7 +20972,7 @@ ] ], [ - "【16기】네이미", + "16·네이미", 79, 69, 10, @@ -20995,7 +20995,7 @@ ] ], [ - "【16기】로리", + "16·로리", 69, 10, 87, @@ -21027,7 +21027,7 @@ ] ], [ - "【16기】킹구없이는못살아", + "16·킹구없이는못살아", 80, 73, 10, @@ -21051,7 +21051,7 @@ ] ], [ - "【16기】땅땅이", + "16·땅땅이", 67, 11, 87, @@ -21076,7 +21076,7 @@ ] ], [ - "【16기】멘헤라짱", + "16·멘헤라짱", 80, 75, 10, @@ -21108,7 +21108,7 @@ ] ], [ - "【16기】료우기시키", + "16·료우기시키", 82, 74, 11, @@ -21134,7 +21134,7 @@ ] ], [ - "【16기】낙지꾸미", + "16·낙지꾸미", 70, 10, 83, @@ -21162,7 +21162,7 @@ ] ], [ - "【16기】늙고병든활쟁이", + "16·늙고병든활쟁이", 69, 10, 85, @@ -21184,7 +21184,7 @@ ] ], [ - "【16기】펭삼이", + "16·펭삼이", 76, 10, 77, @@ -21206,7 +21206,7 @@ ] ], [ - "【16기】카이스트", + "16·카이스트", 67, 12, 88, @@ -21229,7 +21229,7 @@ ] ], [ - "【16기】ㅁ", + "16·ㅁ", 70, 10, 85, @@ -21261,7 +21261,7 @@ ] ], [ - "【16기】제노에이지", + "16·제노에이지", 69, 10, 87, @@ -21293,7 +21293,7 @@ ] ], [ - "【16기】평민킬러", + "16·평민킬러", 69, 86, 10, @@ -21325,7 +21325,7 @@ ] ], [ - "【16기】외심장", + "16·외심장", 67, 10, 88, @@ -21350,7 +21350,7 @@ ] ], [ - "【16기】카오스피닉스", + "16·카오스피닉스", 69, 10, 87, @@ -21377,7 +21377,7 @@ ] ], [ - "【16기】엔틱", + "16·엔틱", 67, 10, 88, @@ -21399,7 +21399,7 @@ ] ], [ - "【16기】개미호랑이", + "16·개미호랑이", 70, 10, 86, @@ -21429,7 +21429,7 @@ ] ], [ - "【16기】마왕", + "16·마왕", 68, 10, 87, @@ -21453,7 +21453,7 @@ ] ], [ - "【16기】김나영", + "16·김나영", 10, 67, 89, @@ -21476,7 +21476,7 @@ ] ], [ - "【16기】아무말이나들어줌", + "16·아무말이나들어줌", 76, 79, 12, @@ -21506,7 +21506,7 @@ ] ], [ - "【16기】내선순환열차", + "16·내선순환열차", 10, 81, 72, @@ -21529,7 +21529,7 @@ ] ], [ - "【16기】극대노초홍", + "16·극대노초홍", 68, 10, 89, @@ -21555,7 +21555,7 @@ ] ], [ - "【16기】이건 모구전때문임", + "16·이건 모구전때문임", 11, 82, 69, @@ -21578,7 +21578,7 @@ ] ], [ - "【16기】짜왕", + "16·짜왕", 73, 79, 10, @@ -21602,7 +21602,7 @@ ] ], [ - "【16기】륜", + "16·륜", 10, 68, 86, @@ -21625,7 +21625,7 @@ ] ], [ - "【16기】샤를 드 골", + "16·샤를 드 골", 80, 10, 76, @@ -21651,7 +21651,7 @@ ] ], [ - "【16기】ㅇㄷㄷㄷ", + "16·ㅇㄷㄷㄷ", 71, 82, 10, @@ -21677,7 +21677,7 @@ ] ], [ - "【16기】도추", + "16·도추", 69, 11, 86, @@ -21699,7 +21699,7 @@ ] ], [ - "【16기】정채연", + "16·정채연", 67, 85, 10, @@ -21727,7 +21727,7 @@ ] ], [ - "【17기】시그", + "17·시그", 72, 84, 10, @@ -21760,7 +21760,7 @@ ] ], [ - "【17기】Hide_D", + "17·Hide_D", 11, 69, 84, @@ -21786,7 +21786,7 @@ ] ], [ - "【17기】로리", + "17·로리", 71, 10, 83, @@ -21817,7 +21817,7 @@ ] ], [ - "【17기】카이스트", + "17·카이스트", 70, 10, 83, @@ -21851,7 +21851,7 @@ ] ], [ - "【17기】토미에", + "17·토미에", 69, 10, 82, @@ -21876,7 +21876,7 @@ ] ], [ - "【17기】후와 효카", + "17·후와 효카", 10, 69, 84, @@ -21899,7 +21899,7 @@ ] ], [ - "【17기】병리학적자세", + "17·병리학적자세", 69, 10, 83, @@ -21931,7 +21931,7 @@ ] ], [ - "【17기】오포이스", + "17·오포이스", 70, 82, 10, @@ -21962,7 +21962,7 @@ ] ], [ - "【17기】평민킬러", + "17·평민킬러", 68, 85, 10, @@ -21991,7 +21991,7 @@ ] ], [ - "【17기】기체", + "17·기체", 68, 10, 86, @@ -22019,7 +22019,7 @@ ] ], [ - "【17기】모모냥", + "17·모모냥", 11, 69, 83, @@ -22041,7 +22041,7 @@ ] ], [ - "【17기】외심장", + "17·외심장", 68, 11, 81, @@ -22064,7 +22064,7 @@ ] ], [ - "【17기】박일아", + "17·박일아", 71, 10, 84, @@ -22097,7 +22097,7 @@ ] ], [ - "【17기】강희정", + "17·강희정", 69, 10, 80, @@ -22119,7 +22119,7 @@ ] ], [ - "【17기】땅땅이", + "17·땅땅이", 81, 72, 10, @@ -22145,7 +22145,7 @@ ] ], [ - "【17기】개미호랑이", + "17·개미호랑이", 69, 10, 83, @@ -22172,7 +22172,7 @@ ] ], [ - "【17기】료우기시키", + "17·료우기시키", 83, 70, 10, @@ -22202,7 +22202,7 @@ ] ], [ - "【17기】테러범A", + "17·테러범A", 71, 83, 10, @@ -22237,7 +22237,7 @@ ] ], [ - "【17기】카오스피닉스", + "17·카오스피닉스", 68, 10, 85, @@ -22265,7 +22265,7 @@ ] ], [ - "【17기】보스곰", + "17·보스곰", 70, 11, 82, @@ -22290,7 +22290,7 @@ ] ], [ - "【17기】아무생각이없다", + "17·아무생각이없다", 82, 71, 11, @@ -22323,7 +22323,7 @@ ] ], [ - "【17기】정채연", + "17·정채연", 69, 10, 82, @@ -22346,7 +22346,7 @@ ] ], [ - "【17기】보부상", + "17·보부상", 83, 70, 10, @@ -22373,7 +22373,7 @@ ] ], [ - "【17기】Navy마초", + "17·Navy마초", 71, 82, 10, @@ -22399,7 +22399,7 @@ ] ], [ - "【17기】for kakao", + "17·for kakao", 10, 70, 73, @@ -22421,7 +22421,7 @@ ] ], [ - "【17기】이초홍", + "17·이초홍", 10, 71, 79, @@ -22443,7 +22443,7 @@ ] ], [ - "【17기】뺙제차냥차냥", + "17·뺙제차냥차냥", 72, 76, 10, @@ -22465,7 +22465,7 @@ ] ], [ - "【18기】우웅...", + "18·우웅...", 73, 10, 87, @@ -22498,7 +22498,7 @@ ] ], [ - "【18기】카이스트", + "18·카이스트", 72, 10, 88, @@ -22528,7 +22528,7 @@ ] ], [ - "【18기】모모냥", + "18·모모냥", 10, 76, 84, @@ -22550,7 +22550,7 @@ ] ], [ - "【18기】Anna", + "18·Anna", 72, 11, 88, @@ -22578,7 +22578,7 @@ ] ], [ - "【18기】평민킬러", + "18·평민킬러", 73, 85, 10, @@ -22606,7 +22606,7 @@ ] ], [ - "【18기】사스케", + "18·사스케", 71, 10, 84, @@ -22628,7 +22628,7 @@ ] ], [ - "【18기】박일아", + "18·박일아", 75, 87, 10, @@ -22660,7 +22660,7 @@ ] ], [ - "【18기】보스곰", + "18·보스곰", 72, 10, 86, @@ -22683,7 +22683,7 @@ ] ], [ - "【18기】임사영", + "18·임사영", 69, 10, 85, @@ -22705,7 +22705,7 @@ ] ], [ - "【18기】기절중...zzZ", + "18·기절중...zzZ", 91, 11, 10, @@ -22731,7 +22731,7 @@ ] ], [ - "【18기】찰스 디킨스", + "18·찰스 디킨스", 10, 76, 82, @@ -22754,7 +22754,7 @@ ] ], [ - "【18기】지바", + "18·지바", 87, 72, 11, @@ -22788,7 +22788,7 @@ ] ], [ - "【18기】Hide_D", + "18·Hide_D", 82, 10, 79, @@ -22822,7 +22822,7 @@ ] ], [ - "【18기】Eman", + "18·Eman", 83, 73, 11, @@ -22849,7 +22849,7 @@ ] ], [ - "【18기】우대주스나타나양", + "18·우대주스나타나양", 72, 10, 87, @@ -22883,7 +22883,7 @@ ] ], [ - "【18기】료우기시키", + "18·료우기시키", 87, 70, 10, @@ -22909,7 +22909,7 @@ ] ], [ - "【18기】개미호랑이", + "18·개미호랑이", 90, 10, 66, @@ -22934,7 +22934,7 @@ ] ], [ - "【18기】병리학적자세", + "18·병리학적자세", 71, 10, 89, @@ -22968,7 +22968,7 @@ ] ], [ - "【18기】외심장", + "18·외심장", 74, 10, 85, @@ -23004,7 +23004,7 @@ ] ], [ - "【18기】KOSPI", + "18·KOSPI", 74, 86, 10, @@ -23031,7 +23031,7 @@ ] ], [ - "【18기】땅땅이", + "18·땅땅이", 84, 75, 10, @@ -23066,7 +23066,7 @@ ] ], [ - "【18기】레이첼 알카드", + "18·레이첼 알카드", 10, 69, 86, @@ -23088,7 +23088,7 @@ ] ], [ - "【18기】웃고있다", + "18·웃고있다", 13, 87, 67, @@ -23111,7 +23111,7 @@ ] ], [ - "【18기】양", + "18·양", 10, 68, 84, @@ -23135,7 +23135,7 @@ ] ], [ - "【18기】천괴금", + "18·천괴금", 10, 86, 65, @@ -23157,7 +23157,7 @@ ] ], [ - "【18기】DDDD", + "18·DDDD", 69, 11, 80, @@ -23181,7 +23181,7 @@ ] ], [ - "【18기】펭수", + "18·펭수", 10, 70, 82, @@ -23204,7 +23204,7 @@ ] ], [ - "【19기】박일아", + "19·박일아", 86, 68, 10, @@ -23233,7 +23233,7 @@ ] ], [ - "【19기】보스곰", + "19·보스곰", 70, 10, 84, @@ -23256,7 +23256,7 @@ ] ], [ - "【19기】금사향", + "19·금사향", 70, 11, 83, @@ -23290,7 +23290,7 @@ ] ], [ - "【19기】DDDD", + "19·DDDD", 69, 10, 84, @@ -23313,7 +23313,7 @@ ] ], [ - "【19기】평민킬러", + "19·평민킬러", 70, 10, 85, @@ -23342,7 +23342,7 @@ ] ], [ - "【19기】갈근", + "19·갈근", 71, 10, 82, @@ -23373,7 +23373,7 @@ ] ], [ - "【19기】올때메로나", + "19·올때메로나", 80, 10, 72, @@ -23397,7 +23397,7 @@ ] ], [ - "【19기】카이스트", + "19·카이스트", 70, 10, 82, @@ -23421,7 +23421,7 @@ ] ], [ - "【19기】개미호랑이", + "19·개미호랑이", 82, 70, 11, @@ -23451,7 +23451,7 @@ ] ], [ - "【19기】삼모몰라요", + "19·삼모몰라요", 83, 70, 10, @@ -23481,7 +23481,7 @@ ] ], [ - "【19기】카오스피닉스", + "19·카오스피닉스", 69, 10, 85, @@ -23505,7 +23505,7 @@ ] ], [ - "【19기】엔딩요정", + "19·엔딩요정", 69, 83, 10, @@ -23531,7 +23531,7 @@ ] ], [ - "【19기】rwitch", + "19·rwitch", 71, 10, 83, @@ -23554,7 +23554,7 @@ ] ], [ - "【19기】Elsa", + "19·Elsa", 71, 83, 10, @@ -23577,7 +23577,7 @@ ] ], [ - "【19기】슬라임", + "19·슬라임", 10, 69, 85, @@ -23599,7 +23599,7 @@ ] ], [ - "【19기】팬지", + "19·팬지", 69, 10, 83, @@ -23622,7 +23622,7 @@ ] ], [ - "【19기】Hide_D", + "19·Hide_D", 69, 12, 83, @@ -23644,7 +23644,7 @@ ] ], [ - "【19기】파크헤트", + "19·파크헤트", 84, 69, 10, @@ -23668,7 +23668,7 @@ ] ], [ - "【19기】말걸지마라", + "19·말걸지마라", 85, 69, 10, @@ -23697,7 +23697,7 @@ ] ], [ - "【19기】땅땅이", + "19·땅땅이", 78, 73, 10, @@ -23725,7 +23725,7 @@ ] ], [ - "【19기】외심장", + "19·외심장", 70, 10, 83, @@ -23749,7 +23749,7 @@ ] ], [ - "【19기】임사영", + "19·임사영", 70, 10, 82, @@ -23771,7 +23771,7 @@ ] ], [ - "【19기】정채연", + "19·정채연", 72, 81, 10, @@ -23795,7 +23795,7 @@ ] ], [ - "【19기】yapyap30", + "19·yapyap30", 70, 11, 83, @@ -23822,7 +23822,7 @@ ] ], [ - "【19기】DRX Deft", + "19·DRX Deft", 79, 72, 10, @@ -23846,7 +23846,7 @@ ] ], [ - "【19기】기", + "19·기", 84, 69, 10, @@ -23871,7 +23871,7 @@ ] ], [ - "【19기】료우기시키", + "19·료우기시키", 81, 72, 10, @@ -23897,7 +23897,7 @@ ] ], [ - "【19기】KOSPI", + "19·KOSPI", 71, 84, 10, @@ -23920,7 +23920,7 @@ ] ], [ - "【19기】독구", + "19·독구", 69, 11, 82, @@ -23952,7 +23952,7 @@ ] ], [ - "【19기】유다치", + "19·유다치", 69, 81, 10, @@ -23976,7 +23976,7 @@ ] ], [ - "【19기】하우젤", + "19·하우젤", 71, 82, 10, @@ -24000,7 +24000,7 @@ ] ], [ - "【19기】인탐빌런", + "19·인탐빌런", 84, 10, 68, @@ -24022,7 +24022,7 @@ ] ], [ - "【19기】병리학적자세", + "19·병리학적자세", 68, 11, 84, @@ -24051,7 +24051,7 @@ ] ], [ - "【19기】아클릿", + "19·아클릿", 60, 80, 19, @@ -24073,7 +24073,7 @@ ] ], [ - "【19기】아노리엔", + "19·아노리엔", 81, 67, 10, @@ -24095,7 +24095,7 @@ ] ], [ - "【19기】펭수", + "19·펭수", 11, 66, 85, @@ -24119,7 +24119,7 @@ ] ], [ - "【19기】ㅎㅎ", + "19·ㅎㅎ", 10, 66, 83, @@ -24141,7 +24141,7 @@ ] ], [ - "【19기】비빅", + "19·비빅", 68, 10, 79, @@ -24163,7 +24163,7 @@ ] ], [ - "【19기】불사조페이트", + "19·불사조페이트", 83, 67, 10, @@ -24186,7 +24186,7 @@ ] ], [ - "【19기】현피1번남음", + "19·현피1번남음", 69, 10, 79, @@ -24208,7 +24208,7 @@ ] ], [ - "【19기】무기농야채", + "19·무기농야채", 81, 65, 10, @@ -24230,7 +24230,7 @@ ] ], [ - "【19기】하와와", + "19·하와와", 70, 10, 80, @@ -24252,7 +24252,7 @@ ] ], [ - "【19기】연애중앵벌스", + "19·연애중앵벌스", 69, 80, 10, @@ -24275,7 +24275,7 @@ ] ], [ - "【19기】현피0번남음", + "19·현피0번남음", 66, 10, 82, @@ -24297,7 +24297,7 @@ ] ], [ - "【21기】평민킬러", + "21·평민킬러", 77, 81, 10, @@ -24323,7 +24323,7 @@ ] ], [ - "【21기】차비씨", + "21·차비씨", 71, 10, 86, @@ -24347,7 +24347,7 @@ ] ], [ - "【21기】독구", + "21·독구", 68, 11, 83, @@ -24369,7 +24369,7 @@ ] ], [ - "【21기】갈근", + "21·갈근", 11, 67, 91, @@ -24393,7 +24393,7 @@ ] ], [ - "【21기】Hide_D", + "21·Hide_D", 73, 10, 86, @@ -24422,7 +24422,7 @@ ] ], [ - "【21기】청랑구", + "21·청랑구", 72, 86, 10, @@ -24448,7 +24448,7 @@ ] ], [ - "【21기】엘사", + "21·엘사", 72, 86, 10, @@ -24475,7 +24475,7 @@ ] ], [ - "【21기】킹구", + "21·킹구", 89, 69, 10, @@ -24499,7 +24499,7 @@ ] ], [ - "【21기】두꺼비", + "21·두꺼비", 87, 69, 10, @@ -24527,7 +24527,7 @@ ] ], [ - "【21기】KF94", + "21·KF94", 73, 84, 10, @@ -24556,7 +24556,7 @@ ] ], [ - "【21기】마티아스", + "21·마티아스", 74, 85, 10, @@ -24585,7 +24585,7 @@ ] ], [ - "【21기】병리학적자세", + "21·병리학적자세", 71, 13, 85, @@ -24611,7 +24611,7 @@ ] ], [ - "【21기】박일아", + "21·박일아", 74, 86, 10, @@ -24641,7 +24641,7 @@ ] ], [ - "【21기】길냥이", + "21·길냥이", 88, 70, 10, @@ -24673,7 +24673,7 @@ ] ], [ - "【21기】네반", + "21·네반", 73, 10, 83, @@ -24698,7 +24698,7 @@ ] ], [ - "【21기】천괴금", + "21·천괴금", 15, 84, 67, @@ -24724,7 +24724,7 @@ ] ], [ - "【21기】카이스트", + "21·카이스트", 71, 10, 87, @@ -24747,7 +24747,7 @@ ] ], [ - "【21기】료우기시키", + "21·료우기시키", 84, 71, 10, @@ -24773,7 +24773,7 @@ ] ], [ - "【21기】개미호랑이", + "21·개미호랑이", 88, 66, 11, @@ -24797,7 +24797,7 @@ ] ], [ - "【21기】연채홍", + "21·연채홍", 71, 10, 87, @@ -24819,7 +24819,7 @@ ] ], [ - "【21기】보이루", + "21·보이루", 72, 10, 86, @@ -24848,7 +24848,7 @@ ] ], [ - "【21기】오리너구리", + "21·오리너구리", 72, 10, 84, @@ -24873,7 +24873,7 @@ ] ], [ - "【21기】피에스타", + "21·피에스타", 83, 73, 11, @@ -24902,7 +24902,7 @@ ] ], [ - "【21기】슬라임", + "21·슬라임", 83, 10, 75, @@ -24926,7 +24926,7 @@ ] ], [ - "【21기】두나", + "21·두나", 67, 10, 90, @@ -24949,7 +24949,7 @@ ] ], [ - "【21기】박일도", + "21·박일도", 66, 16, 85, @@ -24972,7 +24972,7 @@ ] ], [ - "【21기】AP샤코", + "21·AP샤코", 71, 10, 87, @@ -24997,7 +24997,7 @@ ] ], [ - "【21기】임사영", + "21·임사영", 71, 10, 86, @@ -25022,7 +25022,7 @@ ] ], [ - "【21기】옵저버", + "21·옵저버", 18, 65, 84, @@ -25045,7 +25045,7 @@ ] ], [ - "【21기】ㅁㄴㅇㄹ", + "21·ㅁㄴㅇㄹ", 10, 80, 75, @@ -25067,7 +25067,7 @@ ] ], [ - "【21기】네프기어", + "21·네프기어", 85, 67, 12, @@ -25089,7 +25089,7 @@ ] ], [ - "【21기】쒸익쒸익", + "21·쒸익쒸익", 70, 10, 85, @@ -25112,7 +25112,7 @@ ] ], [ - "【21기】돌아온너구리", + "21·돌아온너구리", 72, 11, 87, @@ -25143,7 +25143,7 @@ ] ], [ - "【21기】로리", + "21·로리", 73, 10, 86, @@ -25174,7 +25174,7 @@ ] ], [ - "【21기】뉴턴", + "21·뉴턴", 74, 83, 10, @@ -25199,7 +25199,7 @@ ] ], [ - "【21기】くま", + "21·くま", 70, 10, 85, @@ -25222,7 +25222,7 @@ ] ], [ - "【21기】정채연", + "21·정채연", 69, 83, 10, @@ -25246,7 +25246,7 @@ ] ], [ - "【21기】카오스피닉스", + "21·카오스피닉스", 68, 10, 85, @@ -25268,7 +25268,7 @@ ] ], [ - "【21기】야까스 코만", + "21·야까스 코만", 65, 11, 85, @@ -25291,7 +25291,7 @@ ] ], [ - "【21기】가련", + "21·가련", 10, 70, 85, @@ -25313,7 +25313,7 @@ ] ], [ - "【21기】만샘", + "21·만샘", 10, 80, 73, @@ -25335,7 +25335,7 @@ ] ], [ - "【21기】내정만하고싶다", + "21·내정만하고싶다", 10, 66, 88, @@ -25360,7 +25360,7 @@ ] ], [ - "【21기】리무루", + "21·리무루", 70, 10, 83, @@ -25382,7 +25382,7 @@ ] ], [ - "【21기】수장", + "21·수장", 70, 82, 10, @@ -25405,7 +25405,7 @@ ] ], [ - "【21기】펭수", + "21·펭수", 10, 80, 69, @@ -25427,7 +25427,7 @@ ] ], [ - "【22기】이즈미 쿄카", + "22·이즈미 쿄카", 71, 10, 83, @@ -25456,7 +25456,7 @@ ] ], [ - "【22기】미스티", + "22·미스티", 67, 10, 86, @@ -25480,7 +25480,7 @@ ] ], [ - "【22기】평민킬러", + "22·평민킬러", 69, 10, 86, @@ -25510,7 +25510,7 @@ ] ], [ - "【22기】냐옹", + "22·냐옹", 69, 84, 10, @@ -25533,7 +25533,7 @@ ] ], [ - "【22기】야근요정헹이", + "22·야근요정헹이", 80, 10, 74, @@ -25559,7 +25559,7 @@ ] ], [ - "【22기】아키라의노예", + "22·아키라의노예", 70, 10, 85, @@ -25586,7 +25586,7 @@ ] ], [ - "【22기】수장", + "22·수장", 82, 71, 12, @@ -25613,7 +25613,7 @@ ] ], [ - "【22기】이드", + "22·이드", 71, 83, 10, @@ -25636,7 +25636,7 @@ ] ], [ - "【22기】임사영", + "22·임사영", 69, 11, 86, @@ -25660,7 +25660,7 @@ ] ], [ - "【22기】료우기시키", + "22·료우기시키", 81, 70, 10, @@ -25684,7 +25684,7 @@ ] ], [ - "【22기】너굴", + "22·너굴", 69, 10, 85, @@ -25707,7 +25707,7 @@ ] ], [ - "【22기】카이스트", + "22·카이스트", 71, 10, 83, @@ -25734,7 +25734,7 @@ ] ], [ - "【22기】아마자라시", + "22·아마자라시", 12, 81, 70, @@ -25758,7 +25758,7 @@ ] ], [ - "【22기】죄악의 안젤리카", + "22·죄악의 안젤리카", 70, 83, 10, @@ -25786,7 +25786,7 @@ ] ], [ - "【22기】킹구", + "22·킹구", 68, 10, 85, @@ -25809,7 +25809,7 @@ ] ], [ - "【22기】로비", + "22·로비", 10, 67, 87, @@ -25831,7 +25831,7 @@ ] ], [ - "【22기】Hide_D", + "22·Hide_D", 70, 10, 85, @@ -25859,7 +25859,7 @@ ] ], [ - "【22기】트리니티", + "22·트리니티", 85, 68, 10, @@ -25885,7 +25885,7 @@ ] ], [ - "【22기】사스케", + "22·사스케", 85, 70, 10, @@ -25914,7 +25914,7 @@ ] ], [ - "【22기】김나영", + "22·김나영", 69, 86, 10, @@ -25943,7 +25943,7 @@ ] ], [ - "【22기】나타", + "22·나타", 86, 68, 10, @@ -25974,7 +25974,7 @@ ] ], [ - "【22기】くま", + "22·くま", 85, 70, 10, @@ -26009,7 +26009,7 @@ ] ], [ - "【22기】독구", + "22·독구", 67, 10, 86, @@ -26034,7 +26034,7 @@ ] ], [ - "【22기】천괴금", + "22·천괴금", 10, 82, 71, @@ -26058,7 +26058,7 @@ ] ], [ - "【22기】나루토", + "22·나루토", 69, 10, 84, @@ -26085,7 +26085,7 @@ ] ], [ - "【22기】마을주민", + "22·마을주민", 72, 82, 10, @@ -26112,7 +26112,7 @@ ] ], [ - "【22기】광순이", + "22·광순이", 69, 10, 84, @@ -26135,7 +26135,7 @@ ] ], [ - "【22기】외심장", + "22·외심장", 68, 10, 86, @@ -26157,7 +26157,7 @@ ] ], [ - "【22기】박일아", + "22·박일아", 11, 79, 76, @@ -26181,7 +26181,7 @@ ] ], [ - "【22기】만샘", + "22·만샘", 71, 10, 83, @@ -26211,7 +26211,7 @@ ] ], [ - "【22기】개미호랑이렐리아", + "22·개미호랑이렐리아", 86, 66, 10, @@ -26235,7 +26235,7 @@ ] ], [ - "【22기】피에스타", + "22·피에스타", 81, 73, 10, @@ -26260,7 +26260,7 @@ ] ], [ - "【22기】호랑이사람", + "22·호랑이사람", 10, 65, 89, @@ -26283,7 +26283,7 @@ ] ], [ - "【22기】KOSPI", + "22·KOSPI", 71, 84, 10, @@ -26310,7 +26310,7 @@ ] ], [ - "【22기】쿠쿠쿠쿠쿠쿠쿠쿠쿠", + "22·쿠쿠쿠쿠쿠쿠쿠쿠쿠", 10, 71, 80, @@ -26332,7 +26332,7 @@ ] ], [ - "【22기】아라한", + "22·아라한", 80, 73, 11, @@ -26362,7 +26362,7 @@ ] ], [ - "【22기】슬라임", + "22·슬라임", 70, 10, 83, @@ -26387,7 +26387,7 @@ ] ], [ - "【22기】뼈다구", + "22·뼈다구", 67, 10, 84, @@ -26409,7 +26409,7 @@ ] ], [ - "【22기】리에", + "22·리에", 88, 10, 11, @@ -26432,7 +26432,7 @@ ] ], [ - "【22기】q1", + "22·q1", 10, 71, 80, @@ -26454,7 +26454,7 @@ ] ], [ - "【22기】나만마딜없어", + "22·나만마딜없어", 68, 10, 84, @@ -26476,7 +26476,7 @@ ] ], [ - "【22기】김갑환", + "22·김갑환", 79, 72, 10, @@ -26498,7 +26498,7 @@ ] ], [ - "【22기】로리", + "22·로리", 10, 78, 69, @@ -26520,7 +26520,7 @@ ] ], [ - "【22기】시즈", + "22·시즈", 67, 83, 10, @@ -26544,7 +26544,7 @@ ] ], [ - "【22기】크류", + "22·크류", 68, 82, 10, @@ -26566,7 +26566,7 @@ ] ], [ - "【22기】천조장호무새", + "22·천조장호무새", 77, 69, 12, @@ -26588,7 +26588,7 @@ ] ], [ - "【23기】프린세스 라라", + "23·프린세스 라라", 69, 10, 85, @@ -26611,7 +26611,7 @@ ] ], [ - "【23기】문중", + "23·문중", 83, 69, 10, @@ -26636,7 +26636,7 @@ ] ], [ - "【23기】데보라", + "23·데보라", 85, 68, 10, @@ -26666,7 +26666,7 @@ ] ], [ - "【23기】로리", + "23·로리", 69, 11, 83, @@ -26689,7 +26689,7 @@ ] ], [ - "【23기】칸나", + "23·칸나", 83, 71, 10, @@ -26715,7 +26715,7 @@ ] ], [ - "【23기】펭수병", + "23·펭수병", 71, 83, 10, @@ -26742,7 +26742,7 @@ ] ], [ - "【23기】수장", + "23·수장", 82, 70, 10, @@ -26770,7 +26770,7 @@ ] ], [ - "【23기】임사영", + "23·임사영", 84, 68, 10, @@ -26794,7 +26794,7 @@ ] ], [ - "【23기】네티", + "23·네티", 83, 70, 11, @@ -26823,7 +26823,7 @@ ] ], [ - "【23기】무공요정", + "23·무공요정", 71, 10, 82, @@ -26846,7 +26846,7 @@ ] ], [ - "【23기】Hide_D", + "23·Hide_D", 71, 11, 84, @@ -26874,7 +26874,7 @@ ] ], [ - "【23기】smile", + "23·smile", 70, 10, 84, @@ -26897,7 +26897,7 @@ ] ], [ - "【23기】박일아", + "23·박일아", 10, 68, 86, @@ -26921,7 +26921,7 @@ ] ], [ - "【23기】평민킬러", + "23·평민킬러", 71, 84, 10, @@ -26951,7 +26951,7 @@ ] ], [ - "【23기】카이스트", + "23·카이스트", 71, 10, 84, @@ -26979,7 +26979,7 @@ ] ], [ - "【23기】돌아온너구리", + "23·돌아온너구리", 71, 10, 84, @@ -27008,7 +27008,7 @@ ] ], [ - "【23기】돌격", + "23·돌격", 85, 67, 11, @@ -27039,7 +27039,7 @@ ] ], [ - "【23기】갈근", + "23·갈근", 10, 68, 87, @@ -27063,7 +27063,7 @@ ] ], [ - "【23기】프로야구개막한다", + "23·프로야구개막한다", 70, 11, 82, @@ -27087,7 +27087,7 @@ ] ], [ - "【23기】메리레녹스", + "23·메리레녹스", 15, 82, 67, @@ -27113,7 +27113,7 @@ ] ], [ - "【23기】톱니바퀴", + "23·톱니바퀴", 10, 65, 89, @@ -27136,7 +27136,7 @@ ] ], [ - "【23기】철별", + "23·철별", 70, 10, 83, @@ -27165,7 +27165,7 @@ ] ], [ - "【23기】외심장", + "23·외심장", 70, 10, 85, @@ -27188,7 +27188,7 @@ ] ], [ - "【23기】땅땅", + "23·땅땅", 80, 72, 10, @@ -27211,7 +27211,7 @@ ] ], [ - "【23기】くま", + "23·くま", 83, 68, 10, @@ -27236,7 +27236,7 @@ ] ], [ - "【23기】이거 또 망함?", + "23·이거 또 망함?", 10, 86, 67, @@ -27260,7 +27260,7 @@ ] ], [ - "【23기】바보카린", + "23·바보카린", 12, 78, 74, @@ -27288,7 +27288,7 @@ ] ], [ - "【23기】냐옹", + "23·냐옹", 69, 79, 12, @@ -27310,7 +27310,7 @@ ] ], [ - "【23기】타임머신", + "23·타임머신", 81, 71, 10, @@ -27335,7 +27335,7 @@ ] ], [ - "【23기】개미호랑이즈리얼", + "23·개미호랑이즈리얼", 82, 70, 10, @@ -27357,7 +27357,7 @@ ] ], [ - "【23기】엔장", + "23·엔장", 10, 79, 72, @@ -27380,7 +27380,7 @@ ] ], [ - "【23기】바보", + "23·바보", 70, 10, 83, @@ -27405,7 +27405,7 @@ ] ], [ - "【23기】료우기시키", + "23·료우기시키", 82, 69, 10, @@ -27428,7 +27428,7 @@ ] ], [ - "【23기】민트토끼", + "23·민트토끼", 12, 66, 85, @@ -27452,7 +27452,7 @@ ] ], [ - "【23기】만샘", + "23·만샘", 70, 82, 10, @@ -27476,7 +27476,7 @@ ] ], [ - "【23기】김갑환", + "23·김갑환", 83, 70, 10, @@ -27500,7 +27500,7 @@ ] ], [ - "【23기】12팩에2전설뜸", + "23·12팩에2전설뜸", 71, 10, 81, @@ -27522,7 +27522,7 @@ ] ], [ - "【23기】사이언스베슬", + "23·사이언스베슬", 68, 10, 84, @@ -27545,7 +27545,7 @@ ] ], [ - "【23기】이드", + "23·이드", 11, 76, 75, @@ -27568,7 +27568,7 @@ ] ], [ - "【23기】뜨뜨뜨뜨", + "23·뜨뜨뜨뜨", 80, 10, 74, @@ -27591,7 +27591,7 @@ ] ], [ - "【23기】천괴금", + "23·천괴금", 82, 69, 10, @@ -27619,7 +27619,7 @@ ] ], [ - "【23기】펭수크류", + "23·펭수크류", 71, 10, 81, @@ -27641,7 +27641,7 @@ ] ], [ - "【23기】정채연", + "23·정채연", 72, 78, 10, @@ -27664,7 +27664,7 @@ ] ], [ - "【23기】마검", + "23·마검", 69, 10, 81, @@ -27687,7 +27687,7 @@ ] ], [ - "【23기】개장수", + "23·개장수", 82, 69, 10, @@ -27710,7 +27710,7 @@ ] ], [ - "【24기】행복했으면좋겠어", + "24·행복했으면좋겠어", 69, 10, 83, @@ -27733,7 +27733,7 @@ ] ], [ - "【24기】만샘", + "24·만샘", 71, 10, 83, @@ -27761,7 +27761,7 @@ ] ], [ - "【24기】호시이 미키", + "24·호시이 미키", 81, 73, 10, @@ -27791,7 +27791,7 @@ ] ], [ - "【24기】킹구갓구", + "24·킹구갓구", 84, 68, 10, @@ -27819,7 +27819,7 @@ ] ], [ - "【24기】카나리아", + "24·카나리아", 69, 10, 84, @@ -27850,7 +27850,7 @@ ] ], [ - "【24기】Hide_D", + "24·Hide_D", 67, 12, 83, @@ -27876,7 +27876,7 @@ ] ], [ - "【24기】펭수", + "24·펭수", 68, 11, 83, @@ -27900,7 +27900,7 @@ ] ], [ - "【24기】smile", + "24·smile", 73, 81, 10, @@ -27928,7 +27928,7 @@ ] ], [ - "【24기】천고l금", + "24·천고l금", 11, 72, 79, @@ -27954,7 +27954,7 @@ ] ], [ - "【24기】혜미", + "24·혜미", 86, 67, 10, @@ -27982,7 +27982,7 @@ ] ], [ - "【24기】레아실비아", + "24·레아실비아", 71, 83, 10, @@ -28007,7 +28007,7 @@ ] ], [ - "【24기】Already", + "24·Already", 69, 10, 84, @@ -28030,7 +28030,7 @@ ] ], [ - "【24기】평민킬러", + "24·평민킬러", 68, 10, 85, @@ -28059,7 +28059,7 @@ ] ], [ - "【24기】카이스트", + "24·카이스트", 67, 10, 84, @@ -28084,7 +28084,7 @@ ] ], [ - "【24기】료우기시키", + "24·료우기시키", 83, 69, 10, @@ -28108,7 +28108,7 @@ ] ], [ - "【24기】모가미 시즈카", + "24·모가미 시즈카", 83, 70, 10, @@ -28134,7 +28134,7 @@ ] ], [ - "【24기】독구", + "24·독구", 69, 10, 85, @@ -28163,7 +28163,7 @@ ] ], [ - "【24기】외심장", + "24·외심장", 71, 10, 82, @@ -28190,7 +28190,7 @@ ] ], [ - "【24기】코리안코커", + "24·코리안코커", 81, 71, 10, @@ -28213,7 +28213,7 @@ ] ], [ - "【24기】유메미 리아무", + "24·유메미 리아무", 74, 79, 10, @@ -28242,7 +28242,7 @@ ] ], [ - "【24기】천무군사육백언", + "24·천무군사육백언", 69, 10, 84, @@ -28265,7 +28265,7 @@ ] ], [ - "【24기】ㅇㄷㄷㄷㄷㄷㄷ", + "24·ㅇㄷㄷㄷㄷㄷㄷ", 68, 84, 11, @@ -28289,7 +28289,7 @@ ] ], [ - "【24기】땅땅땅땅", + "24·땅땅땅땅", 83, 70, 10, @@ -28317,7 +28317,7 @@ ] ], [ - "【24기】경계의 거주자", + "24·경계의 거주자", 86, 68, 10, @@ -28342,7 +28342,7 @@ ] ], [ - "【24기】별이다섯개", + "24·별이다섯개", 10, 77, 72, @@ -28365,7 +28365,7 @@ ] ], [ - "【24기】닭둘기", + "24·닭둘기", 84, 67, 11, @@ -28393,7 +28393,7 @@ ] ], [ - "【24기】계략함", + "24·계략함", 71, 79, 11, @@ -28417,7 +28417,7 @@ ] ], [ - "【24기】연채홍", + "24·연채홍", 68, 10, 84, @@ -28441,7 +28441,7 @@ ] ], [ - "【24기】건방진노예", + "24·건방진노예", 69, 10, 84, @@ -28464,7 +28464,7 @@ ] ], [ - "【24기】갈근", + "24·갈근", 11, 67, 83, @@ -28486,7 +28486,7 @@ ] ], [ - "【24기】개미호랑이블린", + "24·개미호랑이블린", 68, 10, 83, @@ -28512,7 +28512,7 @@ ] ], [ - "【24기】로비", + "24·로비", 10, 68, 84, @@ -28534,7 +28534,7 @@ ] ], [ - "【24기】세미얼터", + "24·세미얼터", 81, 71, 11, @@ -28558,7 +28558,7 @@ ] ], [ - "【24기】돌아온너구리", + "24·돌아온너구리", 83, 68, 10, @@ -28583,7 +28583,7 @@ ] ], [ - "【24기】일이석우", + "24·일이석우", 68, 10, 83, @@ -28605,7 +28605,7 @@ ] ], [ - "【24기】정채연", + "24·정채연", 72, 80, 10, @@ -28631,7 +28631,7 @@ ] ], [ - "【24기】로리", + "24·로리", 72, 80, 10, @@ -28654,7 +28654,7 @@ ] ], [ - "【24기】김갑환", + "24·김갑환", 81, 69, 10, @@ -28677,7 +28677,7 @@ ] ], [ - "【26기】Hide_D", + "26·Hide_D", 74, 15, 92, @@ -28702,7 +28702,7 @@ ] ], [ - "【26기】smile", + "26·smile", 87, 78, 17, @@ -28725,7 +28725,7 @@ ] ], [ - "【26기】사뉴카린시등분", + "26·사뉴카린시등분", 74, 15, 92, @@ -28750,7 +28750,7 @@ ] ], [ - "【26기】카린", + "26·카린", 87, 77, 16, @@ -28775,7 +28775,7 @@ ] ], [ - "【26기】다람쥐", + "26·다람쥐", 92, 74, 16, @@ -28799,7 +28799,7 @@ ] ], [ - "【26기】프레이이시스", + "26·프레이이시스", 88, 76, 15, @@ -28824,7 +28824,7 @@ ] ], [ - "【26기】????", + "26·????", 85, 16, 79, @@ -28847,7 +28847,7 @@ ] ], [ - "【26기】이초홍", + "26·이초홍", 74, 16, 91, @@ -28874,7 +28874,7 @@ ] ], [ - "【26기】수장", + "26·수장", 84, 81, 15, @@ -28900,7 +28900,7 @@ ] ], [ - "【26기】모루좀뽑아라", + "26·모루좀뽑아라", 75, 16, 91, @@ -28933,7 +28933,7 @@ ] ], [ - "【26기】갈근", + "26·갈근", 15, 72, 93, @@ -28955,7 +28955,7 @@ ] ], [ - "【26기】rwitch", + "26·rwitch", 74, 15, 92, @@ -28982,7 +28982,7 @@ ] ], [ - "【26기】떼껄룩", + "26·떼껄룩", 87, 78, 16, @@ -29006,7 +29006,7 @@ ] ], [ - "【26기】슬라임", + "26·슬라임", 86, 79, 15, @@ -29039,7 +29039,7 @@ ] ], [ - "【26기】바넬로피", + "26·바넬로피", 88, 78, 15, @@ -29070,7 +29070,7 @@ ] ], [ - "【26기】돼지", + "26·돼지", 78, 88, 15, @@ -29104,7 +29104,7 @@ ] ], [ - "【26기】국립국어원", + "26·국립국어원", 71, 15, 95, @@ -29128,7 +29128,7 @@ ] ], [ - "【26기】플라", + "26·플라", 69, 20, 92, @@ -29153,7 +29153,7 @@ ] ], [ - "【26기】외심장", + "26·외심장", 73, 16, 93, @@ -29178,7 +29178,7 @@ ] ], [ - "【26기】김나영", + "26·김나영", 76, 90, 16, @@ -29208,7 +29208,7 @@ ] ], [ - "【26기】연", + "26·연", 89, 76, 15, @@ -29233,7 +29233,7 @@ ] ], [ - "【26기】시딱마", + "26·시딱마", 75, 15, 90, @@ -29256,7 +29256,7 @@ ] ], [ - "【26기】창모", + "26·창모", 76, 15, 89, @@ -29279,7 +29279,7 @@ ] ], [ - "【26기】병리학적자세", + "26·병리학적자세", 72, 15, 93, @@ -29301,7 +29301,7 @@ ] ], [ - "【26기】보스곰", + "26·보스곰", 74, 15, 91, @@ -29326,7 +29326,7 @@ ] ], [ - "【26기】료우기시키", + "26·료우기시키", 88, 78, 15, @@ -29349,7 +29349,7 @@ ] ], [ - "【26기】건방진노예", + "26·건방진노예", 76, 90, 16, @@ -29373,7 +29373,7 @@ ] ], [ - "【26기】낙지꿈", + "26·낙지꿈", 76, 16, 88, @@ -29396,7 +29396,7 @@ ] ], [ - "【26기】레벤", + "26·레벤", 73, 15, 91, @@ -29418,7 +29418,7 @@ ] ], [ - "【26기】일이석우", + "26·일이석우", 78, 85, 15, @@ -29445,7 +29445,7 @@ ] ], [ - "【26기】개미호랑2", + "26·개미호랑2", 73, 90, 15, @@ -29468,7 +29468,7 @@ ] ], [ - "【26기】김갑환", + "26·김갑환", 87, 78, 15, @@ -29497,7 +29497,7 @@ ] ], [ - "【26기】검호매의눈미호크", + "26·검호매의눈미호크", 85, 79, 16, @@ -29525,7 +29525,7 @@ ] ], [ - "【26기】시라이", + "26·시라이", 76, 89, 15, @@ -29550,7 +29550,7 @@ ] ], [ - "【26기】팀쿡", + "26·팀쿡", 90, 77, 15, @@ -29573,7 +29573,7 @@ ] ], [ - "【26기】천재", + "26·천재", 76, 15, 91, @@ -29596,7 +29596,7 @@ ] ], [ - "【26기】민트토끼", + "26·민트토끼", 72, 16, 94, @@ -29619,7 +29619,7 @@ ] ], [ - "【26기】평민킬러", + "26·평민킬러", 75, 92, 15, @@ -29652,7 +29652,7 @@ ] ], [ - "【26기】카라라트리", + "26·카라라트리", 75, 90, 15, @@ -29684,7 +29684,7 @@ ] ], [ - "【26기】시키면반대로함", + "26·시키면반대로함", 15, 72, 93, @@ -29707,7 +29707,7 @@ ] ], [ - "【26기】딱밤10스택=깡", + "26·딱밤10스택=깡", 17, 74, 89, @@ -29730,7 +29730,7 @@ ] ], [ - "【26기】늦엇따당", + "26·늦엇따당", 88, 75, 15, @@ -29754,7 +29754,7 @@ ] ], [ - "【26기】로리", + "26·로리", 16, 71, 92, @@ -29776,7 +29776,7 @@ ] ], [ - "【26기】페이트", + "26·페이트", 75, 16, 87, @@ -29799,7 +29799,7 @@ ] ], [ - "【26기】체하나도모름비", + "26·체하나도모름비", 15, 74, 83, @@ -29821,7 +29821,7 @@ ] ], [ - "【26기】Nunsense", + "26·Nunsense", 84, 77, 15, @@ -29843,7 +29843,7 @@ ] ], [ - "【26기】카오스피닉스", + "26·카오스피닉스", 15, 82, 77, @@ -29865,7 +29865,7 @@ ] ], [ - "【26기】손견문대", + "26·손견문대", 75, 15, 85, @@ -29887,7 +29887,7 @@ ] ], [ - "【26기】불랑기 화승총병", + "26·불랑기 화승총병", 72, 15, 88, @@ -29909,7 +29909,7 @@ ] ], [ - "【26기】구경꾼", + "26·구경꾼", 74, 15, 86, @@ -29931,7 +29931,7 @@ ] ], [ - "【27기】평민킬러", + "27·평민킬러", 93, 74, 15, @@ -29957,7 +29957,7 @@ ] ], [ - "【27기】Hide_D", + "27·Hide_D", 76, 16, 87, @@ -29979,7 +29979,7 @@ ] ], [ - "【27기】킹구", + "27·킹구", 78, 87, 15, @@ -30002,7 +30002,7 @@ ] ], [ - "【27기】외심장", + "27·외심장", 76, 15, 91, @@ -30033,7 +30033,7 @@ ] ], [ - "【27기】플라", + "27·플라", 90, 75, 15, @@ -30062,7 +30062,7 @@ ] ], [ - "【27기】슬라임", + "27·슬라임", 87, 79, 15, @@ -30089,7 +30089,7 @@ ] ], [ - "【27기】김갑환", + "27·김갑환", 84, 81, 16, @@ -30118,7 +30118,7 @@ ] ], [ - "【27기】평온의온도", + "27·평온의온도", 75, 15, 91, @@ -30151,7 +30151,7 @@ ] ], [ - "【27기】파워에이드", + "27·파워에이드", 75, 15, 90, @@ -30174,7 +30174,7 @@ ] ], [ - "【27기】RGB", + "27·RGB", 76, 15, 88, @@ -30196,7 +30196,7 @@ ] ], [ - "【27기】연채홍", + "27·연채홍", 75, 15, 90, @@ -30218,7 +30218,7 @@ ] ], [ - "【27기】김삿갓", + "27·김삿갓", 19, 73, 89, @@ -30241,7 +30241,7 @@ ] ], [ - "【27기】태을진인", + "27·태을진인", 15, 72, 95, @@ -30263,7 +30263,7 @@ ] ], [ - "【27기】코드블루", + "27·코드블루", 75, 15, 90, @@ -30296,7 +30296,7 @@ ] ], [ - "【27기】Oz Vessalius", + "27·Oz Vessalius", 75, 16, 92, @@ -30324,7 +30324,7 @@ ] ], [ - "【27기】김나영", + "27·김나영", 73, 92, 16, @@ -30352,7 +30352,7 @@ ] ], [ - "【27기】무한파워안경", + "27·무한파워안경", 17, 70, 94, @@ -30374,7 +30374,7 @@ ] ], [ - "【27기】좌우쌍욍검유비", + "27·좌우쌍욍검유비", 88, 76, 15, @@ -30405,7 +30405,7 @@ ] ], [ - "【27기】독구", + "27·독구", 77, 15, 90, @@ -30438,7 +30438,7 @@ ] ], [ - "【27기】티와즈", + "27·티와즈", 76, 88, 16, @@ -30472,7 +30472,7 @@ ] ], [ - "【27기】료우기시키", + "27·료우기시키", 88, 78, 15, @@ -30497,7 +30497,7 @@ ] ], [ - "【27기】카이스트", + "27·카이스트", 77, 15, 88, @@ -30523,7 +30523,7 @@ ] ], [ - "【27기】미즈하라 치즈루", + "27·미즈하라 치즈루", 93, 75, 15, @@ -30552,7 +30552,7 @@ ] ], [ - "【27기】만샘", + "27·만샘", 76, 15, 91, @@ -30576,7 +30576,7 @@ ] ], [ - "【27기】갈근", + "27·갈근", 15, 76, 90, @@ -30598,7 +30598,7 @@ ] ], [ - "【27기】카오스피닉스", + "27·카오스피닉스", 15, 71, 94, @@ -30620,7 +30620,7 @@ ] ], [ - "【27기】.", + "27·.", 89, 76, 16, @@ -30651,7 +30651,7 @@ ] ], [ - "【27기】DDDD", + "27·DDDD", 86, 15, 79, @@ -30674,7 +30674,7 @@ ] ], [ - "【27기】낙지꿈", + "27·낙지꿈", 74, 16, 91, @@ -30699,7 +30699,7 @@ ] ], [ - "【27기】10068", + "27·10068", 75, 15, 90, @@ -30721,7 +30721,7 @@ ] ], [ - "【27기】시뉴카린스택계산기", + "27·시뉴카린스택계산기", 78, 15, 89, @@ -30744,7 +30744,7 @@ ] ], [ - "【27기】불반도", + "27·불반도", 74, 17, 92, @@ -30767,7 +30767,7 @@ ] ], [ - "【27기】따당따당", + "27·따당따당", 86, 79, 15, @@ -30791,7 +30791,7 @@ ] ], [ - "【27기】레벤", + "27·레벤", 90, 76, 15, @@ -30822,7 +30822,7 @@ ] ], [ - "【27기】일이석우", + "27·일이석우", 74, 15, 90, @@ -30844,7 +30844,7 @@ ] ], [ - "【27기】미스터트롯예매기원", + "27·미스터트롯예매기원", 16, 71, 94, @@ -30867,7 +30867,7 @@ ] ], [ - "【27기】민토의속마음", + "27·민토의속마음", 75, 16, 91, @@ -30892,7 +30892,7 @@ ] ], [ - "【27기】건방진노예", + "27·건방진노예", 75, 15, 89, @@ -30914,7 +30914,7 @@ ] ], [ - "【27기】임사영", + "27·임사영", 72, 15, 91, @@ -30937,7 +30937,7 @@ ] ], [ - "【27기】크류", + "27·크류", 75, 89, 17, @@ -30961,7 +30961,7 @@ ] ], [ - "【27기】asdf", + "27·asdf", 88, 78, 15, @@ -30985,7 +30985,7 @@ ] ], [ - "【27기】시뉴카린", + "27·시뉴카린", 75, 16, 90, @@ -31010,7 +31010,7 @@ ] ], [ - "【27기】오이슬", + "27·오이슬", 15, 80, 85, @@ -31033,7 +31033,7 @@ ] ], [ - "【27기】개미호랑이", + "27·개미호랑이", 74, 16, 90, @@ -31057,7 +31057,7 @@ ] ], [ - "【27기】네시", + "27·네시", 75, 15, 89, @@ -31082,7 +31082,7 @@ ] ], [ - "【27기】구독독구해주세요", + "27·구독독구해주세요", 75, 15, 90, @@ -31104,7 +31104,7 @@ ] ], [ - "【27기】smile", + "27·smile", 16, 77, 85, @@ -31127,7 +31127,7 @@ ] ], [ - "【28기】숨질래", + "28·숨질래", 75, 15, 94, @@ -31150,7 +31150,7 @@ ] ], [ - "【28기】하우젤", + "28·하우젤", 75, 15, 93, @@ -31173,7 +31173,7 @@ ] ], [ - "【28기】10068", + "28·10068", 74, 92, 15, @@ -31197,7 +31197,7 @@ ] ], [ - "【28기】플라", + "28·플라", 90, 77, 16, @@ -31224,7 +31224,7 @@ ] ], [ - "【28기】그저늅늅", + "28·그저늅늅", 74, 16, 94, @@ -31249,7 +31249,7 @@ ] ], [ - "【28기】리화", + "28·리화", 15, 74, 94, @@ -31272,7 +31272,7 @@ ] ], [ - "【28기】이초홍", + "28·이초홍", 16, 89, 78, @@ -31295,7 +31295,7 @@ ] ], [ - "【28기】낙지꿈", + "28·낙지꿈", 75, 16, 91, @@ -31323,7 +31323,7 @@ ] ], [ - "【28기】카이스트", + "28·카이스트", 75, 15, 91, @@ -31346,7 +31346,7 @@ ] ], [ - "【28기】호두농구왕왕쌍", + "28·호두농구왕왕쌍", 89, 75, 15, @@ -31372,7 +31372,7 @@ ] ], [ - "【28기】네시", + "28·네시", 75, 15, 92, @@ -31403,7 +31403,7 @@ ] ], [ - "【28기】임사영", + "28·임사영", 74, 15, 93, @@ -31425,7 +31425,7 @@ ] ], [ - "【28기】smile", + "28·smile", 75, 15, 92, @@ -31447,7 +31447,7 @@ ] ], [ - "【28기】클로토", + "28·클로토", 76, 91, 15, @@ -31480,7 +31480,7 @@ ] ], [ - "【28기】나누기", + "28·나누기", 75, 15, 89, @@ -31505,7 +31505,7 @@ ] ], [ - "【28기】카류", + "28·카류", 84, 83, 16, @@ -31541,7 +31541,7 @@ ] ], [ - "【28기】하루1분", + "28·하루1분", 73, 15, 93, @@ -31563,7 +31563,7 @@ ] ], [ - "【28기】병리학적자세", + "28·병리학적자세", 75, 15, 93, @@ -31590,7 +31590,7 @@ ] ], [ - "【28기】Dok2", + "28·Dok2", 76, 15, 92, @@ -31621,7 +31621,7 @@ ] ], [ - "【28기】초코맛국수", + "28·초코맛국수", 74, 15, 94, @@ -31650,7 +31650,7 @@ ] ], [ - "【28기】킹구", + "28·킹구", 90, 78, 15, @@ -31673,7 +31673,7 @@ ] ], [ - "【28기】Per", + "28·Per", 87, 81, 15, @@ -31706,7 +31706,7 @@ ] ], [ - "【28기】Hide_D", + "28·Hide_D", 75, 16, 90, @@ -31729,7 +31729,7 @@ ] ], [ - "【28기】광성자", + "28·광성자", 94, 73, 15, @@ -31757,7 +31757,7 @@ ] ], [ - "【28기】전각 9글자", + "28·전각 9글자", 79, 15, 91, @@ -31792,7 +31792,7 @@ ] ], [ - "【28기】일이석우", + "28·일이석우", 76, 15, 92, @@ -31820,7 +31820,7 @@ ] ], [ - "【28기】1", + "28·1", 85, 80, 16, @@ -31845,7 +31845,7 @@ ] ], [ - "【28기】평민킬러", + "28·평민킬러", 78, 90, 15, @@ -31876,7 +31876,7 @@ ] ], [ - "【28기】갈근", + "28·갈근", 16, 73, 94, @@ -31899,7 +31899,7 @@ ] ], [ - "【28기】시뉴카린임포스터", + "28·시뉴카린임포스터", 76, 90, 15, @@ -31924,7 +31924,7 @@ ] ], [ - "【28기】로리", + "28·로리", 79, 88, 15, @@ -31954,7 +31954,7 @@ ] ], [ - "【28기】하루10분영어야나두", + "28·하루10분영어야나두", 76, 15, 90, @@ -31976,7 +31976,7 @@ ] ], [ - "【28기】불반도", + "28·불반도", 77, 15, 90, @@ -32000,7 +32000,7 @@ ] ], [ - "【28기】아리아", + "28·아리아", 74, 93, 15, @@ -32024,7 +32024,7 @@ ] ], [ - "【28기】민트토끼", + "28·민트토끼", 16, 73, 94, @@ -32046,7 +32046,7 @@ ] ], [ - "【28기】외심장", + "28·외심장", 76, 15, 90, @@ -32069,7 +32069,7 @@ ] ], [ - "【28기】000000000", + "28·000000000", 15, 75, 91, @@ -32092,7 +32092,7 @@ ] ], [ - "【28기】건방진노예", + "28·건방진노예", 77, 15, 91, @@ -32117,7 +32117,7 @@ ] ], [ - "【28기】레벤", + "28·레벤", 87, 80, 15, @@ -32150,7 +32150,7 @@ ] ], [ - "【28기】조혜련", + "28·조혜련", 86, 79, 15, @@ -32172,7 +32172,7 @@ ] ], [ - "【28기】ZL", + "28·ZL", 83, 15, 76, @@ -32194,7 +32194,7 @@ ] ], [ - "【28기】제로원", + "28·제로원", 75, 86, 15, @@ -32218,7 +32218,7 @@ ] ], [ - "【29기】네시", + "29·네시", 73, 15, 88, @@ -32243,7 +32243,7 @@ ] ], [ - "【29기】둘리", + "29·둘리", 74, 15, 87, @@ -32267,7 +32267,7 @@ ] ], [ - "【29기】빼빼로", + "29·빼빼로", 74, 86, 15, @@ -32303,7 +32303,7 @@ ] ], [ - "【29기】이드", + "29·이드", 74, 86, 15, @@ -32332,7 +32332,7 @@ ] ], [ - "【29기】보스곰", + "29·보스곰", 74, 16, 86, @@ -32356,7 +32356,7 @@ ] ], [ - "【29기】기", + "29·기", 89, 72, 15, @@ -32383,7 +32383,7 @@ ] ], [ - "【29기】잭프로스트", + "29·잭프로스트", 75, 15, 86, @@ -32409,7 +32409,7 @@ ] ], [ - "【29기】1시30분", + "29·1시30분", 89, 73, 15, @@ -32447,7 +32447,7 @@ ] ], [ - "【29기】로비", + "29·로비", 15, 71, 91, @@ -32471,7 +32471,7 @@ ] ], [ - "【29기】나타", + "29·나타", 74, 15, 88, @@ -32505,7 +32505,7 @@ ] ], [ - "【29기】야가다마스터", + "29·야가다마스터", 77, 85, 15, @@ -32535,7 +32535,7 @@ ] ], [ - "【29기】일이석우", + "29·일이석우", 72, 15, 89, @@ -32560,7 +32560,7 @@ ] ], [ - "【29기】낙지꿈", + "29·낙지꿈", 71, 15, 87, @@ -32588,7 +32588,7 @@ ] ], [ - "【29기】껄룩", + "29·껄룩", 74, 85, 16, @@ -32615,7 +32615,7 @@ ] ], [ - "【29기】도우너", + "29·도우너", 75, 85, 15, @@ -32643,7 +32643,7 @@ ] ], [ - "【29기】시딱마! 옥끼토끼!", + "29·시딱마! 옥끼토끼!", 75, 15, 87, @@ -32667,7 +32667,7 @@ ] ], [ - "【29기】이즈미", + "29·이즈미", 74, 15, 86, @@ -32689,7 +32689,7 @@ ] ], [ - "【29기】로리", + "29·로리", 73, 15, 88, @@ -32717,7 +32717,7 @@ ] ], [ - "【29기】앵벌스", + "29·앵벌스", 82, 75, 15, @@ -32741,7 +32741,7 @@ ] ], [ - "【29기】갈근", + "29·갈근", 74, 16, 87, @@ -32767,7 +32767,7 @@ ] ], [ - "【29기】I", + "29·I", 74, 88, 15, @@ -32792,7 +32792,7 @@ ] ], [ - "【29기】코브라", + "29·코브라", 75, 15, 87, @@ -32819,7 +32819,7 @@ ] ], [ - "【29기】그저늅늅", + "29·그저늅늅", 73, 87, 15, @@ -32845,7 +32845,7 @@ ] ], [ - "【29기】Vicpie", + "29·Vicpie", 72, 16, 87, @@ -32872,7 +32872,7 @@ ] ], [ - "【29기】초코맛국수", + "29·초코맛국수", 75, 16, 84, @@ -32896,7 +32896,7 @@ ] ], [ - "【29기】외심장", + "29·외심장", 75, 16, 86, @@ -32924,7 +32924,7 @@ ] ], [ - "【29기】평민킬러", + "29·평민킬러", 76, 85, 15, @@ -32955,7 +32955,7 @@ ] ], [ - "【29기】민트토끼", + "29·민트토끼", 73, 16, 87, @@ -32988,7 +32988,7 @@ ] ], [ - "【29기】조승상", + "29·조승상", 87, 72, 16, @@ -33016,7 +33016,7 @@ ] ], [ - "【29기】수장", + "29·수장", 84, 76, 15, @@ -33047,7 +33047,7 @@ ] ], [ - "【29기】병리학적자세", + "29·병리학적자세", 73, 15, 88, @@ -33069,7 +33069,7 @@ ] ], [ - "【29기】마왕", + "29·마왕", 71, 85, 17, @@ -33091,7 +33091,7 @@ ] ], [ - "【29기】카오스피닉스", + "29·카오스피닉스", 15, 83, 77, @@ -33114,7 +33114,7 @@ ] ], [ - "【29기】배규리", + "29·배규리", 74, 15, 84, @@ -33136,7 +33136,7 @@ ] ], [ - "【29기】료우기시키", + "29·료우기시키", 80, 76, 15, @@ -33159,7 +33159,7 @@ ] ], [ - "【29기】게르티카", + "29·게르티카", 82, 75, 17, @@ -33181,7 +33181,7 @@ ] ], [ - "【31기】네이미", + "31·네이미", 90, 15, 77, @@ -33210,7 +33210,7 @@ ] ], [ - "【31기】Hide_D", + "31·Hide_D", 78, 16, 88, @@ -33240,7 +33240,7 @@ ] ], [ - "【31기】로비", + "31·로비", 15, 72, 94, @@ -33265,7 +33265,7 @@ ] ], [ - "【31기】임사영", + "31·임사영", 84, 15, 86, @@ -33298,7 +33298,7 @@ ] ], [ - "【31기】시뉴카린", + "31·시뉴카린", 79, 16, 86, @@ -33324,7 +33324,7 @@ ] ], [ - "【31기】카이스트", + "31·카이스트", 76, 16, 87, @@ -33349,7 +33349,7 @@ ] ], [ - "【31기】초코맛국수", + "31·초코맛국수", 75, 15, 88, @@ -33374,7 +33374,7 @@ ] ], [ - "【31기】smile", + "31·smile", 77, 16, 90, @@ -33400,7 +33400,7 @@ ] ], [ - "【31기】독구", + "31·독구", 78, 15, 89, @@ -33429,7 +33429,7 @@ ] ], [ - "【31기】퍄퍄", + "31·퍄퍄", 78, 87, 15, @@ -33459,7 +33459,7 @@ ] ], [ - "【31기】소울아크", + "31·소울아크", 89, 76, 15, @@ -33484,7 +33484,7 @@ ] ], [ - "【31기】이즈미", + "31·이즈미", 78, 87, 15, @@ -33512,7 +33512,7 @@ ] ], [ - "【31기】평민킬러", + "31·평민킬러", 92, 75, 16, @@ -33543,7 +33543,7 @@ ] ], [ - "【31기】토마스", + "31·토마스", 76, 90, 16, @@ -33577,7 +33577,7 @@ ] ], [ - "【31기】외심장", + "31·외심장", 77, 15, 89, @@ -33602,7 +33602,7 @@ ] ], [ - "【31기】잭프로스트", + "31·잭프로스트", 73, 16, 91, @@ -33629,7 +33629,7 @@ ] ], [ - "【31기】돌아온너구리", + "31·돌아온너구리", 92, 75, 15, @@ -33664,7 +33664,7 @@ ] ], [ - "【31기】일이석우", + "31·일이석우", 87, 15, 77, @@ -33686,7 +33686,7 @@ ] ], [ - "【31기】시스시", + "31·시스시", 89, 74, 16, @@ -33711,7 +33711,7 @@ ] ], [ - "【31기】새해복많이받으세요", + "31·새해복많이받으세요", 78, 15, 88, @@ -33738,7 +33738,7 @@ ] ], [ - "【31기】낙지꿈", + "31·낙지꿈", 75, 15, 90, @@ -33763,7 +33763,7 @@ ] ], [ - "【31기】와", + "31·와", 78, 89, 15, @@ -33797,7 +33797,7 @@ ] ], [ - "【31기】그저늅늅", + "31·그저늅늅", 78, 15, 90, @@ -33821,7 +33821,7 @@ ] ], [ - "【31기】건방진노예", + "31·건방진노예", 80, 15, 88, @@ -33849,7 +33849,7 @@ ] ], [ - "【31기】DDDD", + "31·DDDD", 80, 84, 15, @@ -33876,7 +33876,7 @@ ] ], [ - "【31기】퀸델", + "31·퀸델", 74, 89, 17, @@ -33903,7 +33903,7 @@ ] ], [ - "【31기】시초밥", + "31·시초밥", 74, 15, 89, @@ -33926,7 +33926,7 @@ ] ], [ - "【31기】ㅇㅅㅇ", + "31·ㅇㅅㅇ", 76, 15, 89, @@ -33956,7 +33956,7 @@ ] ], [ - "【31기】료우기시키", + "31·료우기시키", 84, 76, 15, @@ -33980,7 +33980,7 @@ ] ], [ - "【31기】안녕하세용가릐~", + "31·안녕하세용가릐~", 74, 89, 15, @@ -34009,7 +34009,7 @@ ] ], [ - "【31기】츠키히나리", + "31·츠키히나리", 86, 77, 15, @@ -34035,7 +34035,7 @@ ] ], [ - "【31기】이드", + "31·이드", 74, 15, 86, @@ -34057,7 +34057,7 @@ ] ], [ - "【32기】퍄퍄", + "32·퍄퍄", 77, 87, 15, @@ -34082,7 +34082,7 @@ ] ], [ - "【32기】평민킬러", + "32·평민킬러", 87, 74, 15, @@ -34112,7 +34112,7 @@ ] ], [ - "【32기】제갈여포", + "32·제갈여포", 73, 15, 89, @@ -34136,7 +34136,7 @@ ] ], [ - "【32기】이드", + "32·이드", 74, 87, 16, @@ -34165,7 +34165,7 @@ ] ], [ - "【32기】트릭스터", + "32·트릭스터", 72, 16, 89, @@ -34195,7 +34195,7 @@ ] ], [ - "【32기】롤린", + "32·롤린", 75, 15, 89, @@ -34224,7 +34224,7 @@ ] ], [ - "【32기】DDDD", + "32·DDDD", 84, 76, 15, @@ -34250,7 +34250,7 @@ ] ], [ - "【32기】잭프로스트", + "32·잭프로스트", 72, 15, 87, @@ -34272,7 +34272,7 @@ ] ], [ - "【32기】Hide_D", + "32·Hide_D", 73, 15, 90, @@ -34303,7 +34303,7 @@ ] ], [ - "【32기】쿠팡맨", + "32·쿠팡맨", 74, 15, 88, @@ -34340,7 +34340,7 @@ ] ], [ - "【32기】아타나시아", + "32·아타나시아", 87, 75, 16, @@ -34375,7 +34375,7 @@ ] ], [ - "【32기】누렁", + "32·누렁", 75, 15, 89, @@ -34404,7 +34404,7 @@ ] ], [ - "【32기】그저늅늅", + "32·그저늅늅", 74, 15, 89, @@ -34429,7 +34429,7 @@ ] ], [ - "【32기】멈춰!", + "32·멈춰!", 73, 16, 88, @@ -34455,7 +34455,7 @@ ] ], [ - "【32기】천서진", + "32·천서진", 73, 16, 87, @@ -34477,7 +34477,7 @@ ] ], [ - "【32기】앵코인", + "32·앵코인", 85, 73, 15, @@ -34502,7 +34502,7 @@ ] ], [ - "【32기】할까말까", + "32·할까말까", 75, 15, 87, @@ -34526,7 +34526,7 @@ ] ], [ - "【32기】분탕", + "32·분탕", 76, 88, 15, @@ -34550,7 +34550,7 @@ ] ], [ - "【32기】효성중공업", + "32·효성중공업", 85, 75, 15, @@ -34575,7 +34575,7 @@ ] ], [ - "【32기】수장", + "32·수장", 85, 77, 16, @@ -34601,7 +34601,7 @@ ] ], [ - "【32기】와이어트", + "32·와이어트", 72, 91, 15, @@ -34635,7 +34635,7 @@ ] ], [ - "【32기】일이석우", + "32·일이석우", 75, 86, 15, @@ -34669,7 +34669,7 @@ ] ], [ - "【32기】갈근", + "32·갈근", 75, 16, 89, @@ -34701,7 +34701,7 @@ ] ], [ - "【32기】낙지꿈", + "32·낙지꿈", 74, 15, 90, @@ -34736,7 +34736,7 @@ ] ], [ - "【32기】불반도", + "32·불반도", 73, 15, 90, @@ -34763,7 +34763,7 @@ ] ], [ - "【32기】로리", + "32·로리", 74, 15, 90, @@ -34797,7 +34797,7 @@ ] ], [ - "【32기】건방진노예", + "32·건방진노예", 76, 15, 86, @@ -34821,7 +34821,7 @@ ] ], [ - "【32기】기", + "32·기", 73, 15, 89, @@ -34844,7 +34844,7 @@ ] ], [ - "【32기】통솔지력형", + "32·통솔지력형", 84, 16, 78, @@ -34867,7 +34867,7 @@ ] ], [ - "【32기】Liam", + "32·Liam", 73, 15, 86, @@ -34891,7 +34891,7 @@ ] ], [ - "【33기】쑤앤날ψ", + "33·쑤앤날ψ", 76, 15, 94, @@ -34916,7 +34916,7 @@ ] ], [ - "【33기】아르테미시아", + "33·아르테미시아", 88, 84, 15, @@ -34950,7 +34950,7 @@ ] ], [ - "【33기】임사영", + "33·임사영", 75, 15, 95, @@ -34979,7 +34979,7 @@ ] ], [ - "【33기】시벌", + "33·시벌", 74, 15, 96, @@ -35011,7 +35011,7 @@ ] ], [ - "【33기】누렁", + "33·누렁", 76, 92, 15, @@ -35036,7 +35036,7 @@ ] ], [ - "【33기】갈근", + "33·갈근", 73, 15, 98, @@ -35073,7 +35073,7 @@ ] ], [ - "【33기】Hide_D", + "33·Hide_D", 79, 16, 92, @@ -35104,7 +35104,7 @@ ] ], [ - "【33기】꼬리사냥꾼", + "33·꼬리사냥꾼", 78, 91, 15, @@ -35137,7 +35137,7 @@ ] ], [ - "【33기】Pink", + "33·Pink", 87, 82, 15, @@ -35168,7 +35168,7 @@ ] ], [ - "【33기】이드", + "33·이드", 74, 15, 97, @@ -35201,7 +35201,7 @@ ] ], [ - "【33기】시뉴카린", + "33·시뉴카린", 74, 16, 96, @@ -35236,7 +35236,7 @@ ] ], [ - "【33기】Ni", + "33·Ni", 75, 16, 95, @@ -35272,7 +35272,7 @@ ] ], [ - "【33기】광성자", + "33·광성자", 92, 78, 15, @@ -35299,7 +35299,7 @@ ] ], [ - "【33기】외심장", + "33·외심장", 75, 16, 95, @@ -35329,7 +35329,7 @@ ] ], [ - "【33기】체섭", + "33·체섭", 92, 78, 15, @@ -35357,7 +35357,7 @@ ] ], [ - "【33기】퉤섭", + "33·퉤섭", 93, 75, 16, @@ -35383,7 +35383,7 @@ ] ], [ - "【33기】냥냥", + "33·냥냥", 75, 96, 15, @@ -35418,7 +35418,7 @@ ] ], [ - "【33기】니노미야아스카", + "33·니노미야아스카", 76, 89, 16, @@ -35441,7 +35441,7 @@ ] ], [ - "【33기】낙지꿈", + "33·낙지꿈", 95, 75, 15, @@ -35473,7 +35473,7 @@ ] ], [ - "【33기】루드네스", + "33·루드네스", 92, 76, 15, @@ -35498,7 +35498,7 @@ ] ], [ - "【33기】Liam", + "33·Liam", 95, 74, 15, @@ -35521,7 +35521,7 @@ ] ], [ - "【33기】불반도", + "33·불반도", 94, 77, 15, @@ -35547,7 +35547,7 @@ ] ], [ - "【33기】건방진노예", + "33·건방진노예", 94, 73, 16, @@ -35573,7 +35573,7 @@ ] ], [ - "【33기】로비", + "33·로비", 16, 71, 94, @@ -35596,7 +35596,7 @@ ] ], [ - "【33기】미소년소지로", + "33·미소년소지로", 77, 87, 15, @@ -35618,7 +35618,7 @@ ] ], [ - "【34기】라가라자", + "34·라가라자", 78, 15, 95, @@ -35653,7 +35653,7 @@ ] ], [ - "【34기】랑해", + "34·랑해", 85, 89, 15, @@ -35690,7 +35690,7 @@ ] ], [ - "【34기】이드", + "34·이드", 79, 15, 94, @@ -35720,7 +35720,7 @@ ] ], [ - "【34기】Hide_D", + "34·Hide_D", 79, 15, 95, @@ -35754,7 +35754,7 @@ ] ], [ - "【34기】퍄퍄", + "34·퍄퍄", 80, 16, 94, @@ -35780,7 +35780,7 @@ ] ], [ - "【34기】제갈여포", + "34·제갈여포", 95, 15, 82, @@ -35810,7 +35810,7 @@ ] ], [ - "【34기】제로펩시", + "34·제로펩시", 78, 15, 95, @@ -35840,7 +35840,7 @@ ] ], [ - "【34기】갈근", + "34·갈근", 79, 15, 97, @@ -35878,7 +35878,7 @@ ] ], [ - "【34기】퍽퍽퍽퍽퍽퍽퍽퍽퍽", + "34·퍽퍽퍽퍽퍽퍽퍽퍽퍽", 80, 94, 15, @@ -35916,7 +35916,7 @@ ] ], [ - "【34기】창섭", + "34·창섭", 95, 80, 15, @@ -35945,7 +35945,7 @@ ] ], [ - "【34기】고릴라", + "34·고릴라", 77, 15, 95, @@ -35970,7 +35970,7 @@ ] ], [ - "【34기】독구", + "34·독구", 80, 15, 96, @@ -36010,7 +36010,7 @@ ] ], [ - "【34기】네이미", + "34·네이미", 78, 93, 16, @@ -36034,7 +36034,7 @@ ] ], [ - "【34기】시뉴카린", + "34·시뉴카린", 80, 91, 17, @@ -36062,7 +36062,7 @@ ] ], [ - "【34기】외심장", + "34·외심장", 80, 15, 95, @@ -36096,7 +36096,7 @@ ] ], [ - "【34기】태상노군", + "34·태상노군", 96, 76, 15, @@ -36121,7 +36121,7 @@ ] ], [ - "【34기】rwitch", + "34·rwitch", 76, 15, 97, @@ -36145,7 +36145,7 @@ ] ], [ - "【34기】임사영", + "34·임사영", 79, 15, 96, @@ -36175,7 +36175,7 @@ ] ], [ - "【34기】그림자", + "34·그림자", 79, 94, 16, @@ -36198,7 +36198,7 @@ ] ], [ - "【34기】평민킬러", + "34·평민킬러", 95, 80, 15, @@ -36233,7 +36233,7 @@ ] ], [ - "【34기】동오의덕", + "34·동오의덕", 78, 92, 16, @@ -36257,7 +36257,7 @@ ] ], [ - "【34기】누렁", + "34·누렁", 77, 16, 95, @@ -36282,7 +36282,7 @@ ] ], [ - "【34기】관지평", + "34·관지평", 80, 90, 15, @@ -36307,7 +36307,7 @@ ] ], [ - "【34기】뿌뿌", + "34·뿌뿌", 92, 82, 16, @@ -36338,7 +36338,7 @@ ] ], [ - "【34기】일이석우", + "34·일이석우", 90, 78, 16, @@ -36361,7 +36361,7 @@ ] ], [ - "【34기】사스케", + "34·사스케", 16, 79, 91, @@ -36384,7 +36384,7 @@ ] ], [ - "【34기】건방진노예", + "34·건방진노예", 78, 15, 92, @@ -36407,7 +36407,7 @@ ] ], [ - "【34기】INDIS", + "34·INDIS", 91, 81, 15, @@ -36433,7 +36433,7 @@ ] ], [ - "【34기】도지코인", + "34·도지코인", 15, 74, 96, @@ -36458,7 +36458,7 @@ ] ], [ - "【34기】천괴금", + "34·천괴금", 77, 89, 17, @@ -36482,7 +36482,7 @@ ] ], [ - "【34기】독피자찬스", + "34·독피자찬스", 85, 73, 15, @@ -36505,7 +36505,7 @@ ] ], [ - "【34기】천투랑", + "34·천투랑", 72, 83, 17, @@ -36527,7 +36527,7 @@ ] ], [ - "【34기】이데아캐논", + "34·이데아캐논", 84, 73, 15, @@ -36549,7 +36549,7 @@ ] ], [ - "【34기】김먁사", + "34·김먁사", 85, 73, 15, @@ -36571,7 +36571,7 @@ ] ], [ - "【36기】코코로네네", + "36·코코로네네", 77, 16, 93, @@ -36604,7 +36604,7 @@ ] ], [ - "【36기】부됸니", + "36·부됸니", 79, 87, 17, @@ -36628,7 +36628,7 @@ ] ], [ - "【36기】과학자", + "36·과학자", 15, 77, 93, @@ -36651,7 +36651,7 @@ ] ], [ - "【36기】퍄퍄", + "36·퍄퍄", 78, 91, 15, @@ -36679,7 +36679,7 @@ ] ], [ - "【36기】Hide_D", + "36·Hide_D", 80, 15, 89, @@ -36702,7 +36702,7 @@ ] ], [ - "【36기】음화하핫", + "36·음화하핫", 90, 82, 16, @@ -36731,7 +36731,7 @@ ] ], [ - "【36기】이드", + "36·이드", 87, 81, 15, @@ -36759,7 +36759,7 @@ ] ], [ - "【36기】평민킬러", + "36·평민킬러", 75, 97, 15, @@ -36795,7 +36795,7 @@ ] ], [ - "【36기】네시", + "36·네시", 90, 78, 16, @@ -36821,7 +36821,7 @@ ] ], [ - "【36기】갈근", + "36·갈근", 79, 15, 90, @@ -36844,7 +36844,7 @@ ] ], [ - "【36기】귀달", + "36·귀달", 88, 15, 82, @@ -36866,7 +36866,7 @@ ] ], [ - "【36기】앵드캡", + "36·앵드캡", 81, 88, 15, @@ -36893,7 +36893,7 @@ ] ], [ - "【36기】rwitch", + "36·rwitch", 78, 15, 91, @@ -36917,7 +36917,7 @@ ] ], [ - "【36기】이루마야 요루파쨩", + "36·이루마야 요루파쨩", 90, 80, 15, @@ -36946,7 +36946,7 @@ ] ], [ - "【36기】킹구", + "36·킹구", 88, 80, 15, @@ -36972,7 +36972,7 @@ ] ], [ - "【36기】루이즈", + "36·루이즈", 75, 15, 95, @@ -37001,7 +37001,7 @@ ] ], [ - "【36기】페이트", + "36·페이트", 16, 92, 76, @@ -37023,7 +37023,7 @@ ] ], [ - "【36기】사스케", + "36·사스케", 94, 75, 15, @@ -37054,7 +37054,7 @@ ] ], [ - "【36기】임사영", + "36·임사영", 77, 91, 15, @@ -37079,7 +37079,7 @@ ] ], [ - "【36기】아텐 누", + "36·아텐 누", 90, 16, 80, @@ -37105,7 +37105,7 @@ ] ], [ - "【36기】장화", + "36·장화", 79, 90, 15, @@ -37133,7 +37133,7 @@ ] ], [ - "【36기】네이미", + "36·네이미", 77, 90, 17, @@ -37161,7 +37161,7 @@ ] ], [ - "【36기】지갑여전사시뉴카린", + "36·지갑여전사시뉴카린", 76, 89, 16, @@ -37191,7 +37191,7 @@ ] ], [ - "【36기】Inanis", + "36·Inanis", 78, 92, 15, @@ -37214,7 +37214,7 @@ ] ], [ - "【36기】로리", + "36·로리", 79, 15, 90, @@ -37236,7 +37236,7 @@ ] ], [ - "【36기】방비방비", + "36·방비방비", 78, 15, 89, @@ -37259,7 +37259,7 @@ ] ], [ - "【36기】스이세이", + "36·스이세이", 95, 73, 16, @@ -37286,7 +37286,7 @@ ] ], [ - "【36기】깡!", + "36·깡!", 77, 16, 91, @@ -37308,7 +37308,7 @@ ] ], [ - "【36기】제갈여포", + "36·제갈여포", 78, 92, 15, @@ -37332,7 +37332,7 @@ ] ], [ - "【36기】일이석우", + "36·일이석우", 92, 75, 16, @@ -37355,7 +37355,7 @@ ] ], [ - "【36기】중집", + "36·중집", 76, 15, 92, @@ -37378,7 +37378,7 @@ ] ], [ - "【36기】조민", + "36·조민", 79, 15, 90, @@ -37401,7 +37401,7 @@ ] ], [ - "【36기】봄꽃", + "36·봄꽃", 90, 15, 78, @@ -37424,7 +37424,7 @@ ] ], [ - "【36기】RainbowVoyage", + "36·RainbowVoyage", 76, 15, 93, @@ -37452,7 +37452,7 @@ ] ], [ - "【36기】부스터샷", + "36·부스터샷", 97, 77, 15, @@ -37489,7 +37489,7 @@ ] ], [ - "【36기】양전", + "36·양전", 15, 71, 97, @@ -37513,7 +37513,7 @@ ] ], [ - "【36기】야고", + "36·야고", 90, 77, 16, @@ -37541,7 +37541,7 @@ ] ], [ - "【36기】마령화강혜원", + "36·마령화강혜원", 90, 79, 15, @@ -37564,7 +37564,7 @@ ] ], [ - "【36기】타카나시 키아라", + "36·타카나시 키아라", 77, 92, 16, @@ -37593,7 +37593,7 @@ ] ], [ - "【36기】나이키쨉엄", + "36·나이키쨉엄", 86, 15, 81, @@ -37615,7 +37615,7 @@ ] ], [ - "【36기】천괴금", + "36·천괴금", 73, 15, 94, @@ -37640,7 +37640,7 @@ ] ], [ - "【36기】버그좀써보자", + "36·버그좀써보자", 83, 83, 16, @@ -37662,7 +37662,7 @@ ] ], [ - "【36기】메뚜기", + "36·메뚜기", 16, 70, 95, @@ -37684,7 +37684,7 @@ ] ], [ - "【36기】ㅇ", + "36·ㅇ", 77, 89, 16, @@ -37707,7 +37707,7 @@ ] ], [ - "【36기】ARES군주", + "36·ARES군주", 77, 94, 15, @@ -37744,7 +37744,7 @@ ] ], [ - "【36기】무지성 치성수", + "36·무지성 치성수", 15, 95, 74, @@ -37767,7 +37767,7 @@ ] ], [ - "【36기】갓갓가가갓갓", + "36·갓갓가가갓갓", 79, 15, 90, @@ -37791,7 +37791,7 @@ ] ], [ - "【36기】1분장", + "36·1분장", 77, 15, 92, @@ -37815,7 +37815,7 @@ ] ], [ - "【36기】Nunsense", + "36·Nunsense", 73, 15, 94, @@ -37837,7 +37837,7 @@ ] ], [ - "【36기】구우경맨", + "36·구우경맨", 87, 79, 15, @@ -37860,7 +37860,7 @@ ] ], [ - "【37기】퍄퍄", + "37·퍄퍄", 90, 79, 15, @@ -37889,7 +37889,7 @@ ] ], [ - "【37기】강백호", + "37·강백호", 79, 94, 15, @@ -37921,7 +37921,7 @@ ] ], [ - "【37기】ㄷ", + "37·ㄷ", 80, 89, 15, @@ -37944,7 +37944,7 @@ ] ], [ - "【37기】독?루", + "37·독?루", 76, 95, 15, @@ -37982,7 +37982,7 @@ ] ], [ - "【37기】독멜른", + "37·독멜른", 78, 15, 93, @@ -38006,7 +38006,7 @@ ] ], [ - "【37기】카이스트", + "37·카이스트", 78, 16, 93, @@ -38040,7 +38040,7 @@ ] ], [ - "【37기】갓수정차냥해", + "37·갓수정차냥해", 15, 72, 97, @@ -38063,7 +38063,7 @@ ] ], [ - "【37기】피자배달현장복귀딘", + "37·피자배달현장복귀딘", 91, 79, 15, @@ -38088,7 +38088,7 @@ ] ], [ - "【37기】이드", + "37·이드", 77, 15, 93, @@ -38113,7 +38113,7 @@ ] ], [ - "【37기】네이미", + "37·네이미", 79, 15, 91, @@ -38136,7 +38136,7 @@ ] ], [ - "【37기】곡괭이", + "37·곡괭이", 15, 72, 99, @@ -38161,7 +38161,7 @@ ] ], [ - "【37기】이시미", + "37·이시미", 76, 15, 95, @@ -38188,7 +38188,7 @@ ] ], [ - "【37기】경국지색소교", + "37·경국지색소교", 74, 17, 93, @@ -38210,7 +38210,7 @@ ] ], [ - "【37기】갓갓갓", + "37·갓갓갓", 93, 76, 16, @@ -38238,7 +38238,7 @@ ] ], [ - "【37기】마리아님", + "37·마리아님", 75, 96, 15, @@ -38269,7 +38269,7 @@ ] ], [ - "【37기】Hide_D", + "37·Hide_D", 82, 16, 87, @@ -38291,7 +38291,7 @@ ] ], [ - "【37기】독구", + "37·독구", 76, 15, 96, @@ -38329,7 +38329,7 @@ ] ], [ - "【37기】팬텀", + "37·팬텀", 78, 17, 90, @@ -38355,7 +38355,7 @@ ] ], [ - "【37기】앵드캡", + "37·앵드캡", 81, 91, 15, @@ -38380,7 +38380,7 @@ ] ], [ - "【37기】네시", + "37·네시", 77, 15, 94, @@ -38413,7 +38413,7 @@ ] ], [ - "【37기】볼코프 레보스키", + "37·볼코프 레보스키", 96, 73, 15, @@ -38443,7 +38443,7 @@ ] ], [ - "【37기】사스케", + "37·사스케", 77, 92, 17, @@ -38476,7 +38476,7 @@ ] ], [ - "【37기】페르2", + "37·페르2", 97, 74, 15, @@ -38501,7 +38501,7 @@ ] ], [ - "【37기】한세건", + "37·한세건", 94, 75, 16, @@ -38532,7 +38532,7 @@ ] ], [ - "【37기】아르곤", + "37·아르곤", 76, 97, 15, @@ -38567,7 +38567,7 @@ ] ], [ - "【37기】페르", + "37·페르", 91, 15, 80, @@ -38593,7 +38593,7 @@ ] ], [ - "【37기】평민킬러", + "37·평민킬러", 78, 92, 15, @@ -38618,7 +38618,7 @@ ] ], [ - "【37기】로나로나땅", + "37·로나로나땅", 92, 78, 15, @@ -38641,7 +38641,7 @@ ] ], [ - "【37기】봄꽃", + "37·봄꽃", 88, 15, 80, @@ -38664,7 +38664,7 @@ ] ], [ - "【37기】귀달", + "37·귀달", 92, 79, 15, @@ -38688,7 +38688,7 @@ ] ], [ - "【37기】중집", + "37·중집", 77, 16, 90, @@ -38710,7 +38710,7 @@ ] ], [ - "【37기】A_Little_Tanker", + "37·A_Little_Tanker", 76, 93, 15, @@ -38735,7 +38735,7 @@ ] ], [ - "【37기】과학자", + "37·과학자", 76, 16, 94, @@ -38759,7 +38759,7 @@ ] ], [ - "【37기】킹구", + "37·킹구", 90, 79, 15, @@ -38783,7 +38783,7 @@ ] ], [ - "【37기】로비", + "37·로비", 15, 72, 95, @@ -38805,7 +38805,7 @@ ] ], [ - "【37기】쪽끼한", + "37·쪽끼한", 89, 77, 18, @@ -38828,7 +38828,7 @@ ] ], [ - "【37기】임사영", + "37·임사영", 82, 15, 88, @@ -38854,7 +38854,7 @@ ] ], [ - "【37기】그거아세요?", + "37·그거아세요?", 16, 72, 98, @@ -38879,7 +38879,7 @@ ] ], [ - "【37기】ARES군주", + "37·ARES군주", 79, 89, 15, @@ -38908,7 +38908,7 @@ ] ], [ - "【37기】멸치", + "37·멸치", 87, 15, 82, @@ -38930,7 +38930,7 @@ ] ], [ - "【37기】누조미", + "37·누조미", 17, 93, 75, @@ -38952,7 +38952,7 @@ ] ], [ - "【37기】랜덤임관합니다", + "37·랜덤임관합니다", 15, 79, 90, @@ -38974,7 +38974,7 @@ ] ], [ - "【37기】김갑환", + "37·김갑환", 75, 15, 94, @@ -38996,7 +38996,7 @@ ] ], [ - "【37기】민초조아", + "37·민초조아", 78, 16, 91, @@ -39018,7 +39018,7 @@ ] ], [ - "【37기】Nunsense", + "37·Nunsense", 76, 15, 94, @@ -39040,7 +39040,7 @@ ] ], [ - "【37기】배고프고 지친 사람", + "37·배고프고 지친 사람", 15, 89, 78, @@ -39063,7 +39063,7 @@ ] ], [ - "【37기】페이트", + "37·페이트", 17, 94, 71, @@ -39090,7 +39090,7 @@ ] ], [ - "【37기】기술력은세개체고", + "37·기술력은세개체고", 15, 71, 94, @@ -39113,7 +39113,7 @@ ] ], [ - "【37기】고고싱", + "37·고고싱", 73, 17, 87, @@ -39135,7 +39135,7 @@ ] ], [ - "【37기】블루아카이브", + "37·블루아카이브", 75, 87, 16, @@ -39157,7 +39157,7 @@ ] ], [ - "【37기】민트토끼", + "37·민트토끼", 17, 85, 72, @@ -39179,7 +39179,7 @@ ] ], [ - "【38기】스즈키아야", + "38·스즈키아야", 75, 91, 15, @@ -39208,7 +39208,7 @@ ] ], [ - "【38기】라플라스 다크니스", + "38·라플라스 다크니스", 91, 73, 15, @@ -39231,7 +39231,7 @@ ] ], [ - "【38기】임사영", + "38·임사영", 77, 15, 89, @@ -39257,7 +39257,7 @@ ] ], [ - "【38기】갈근", + "38·갈근", 75, 16, 90, @@ -39280,7 +39280,7 @@ ] ], [ - "【38기】사니", + "38·사니", 93, 74, 15, @@ -39312,7 +39312,7 @@ ] ], [ - "【38기】광학자", + "38·광학자", 15, 79, 84, @@ -39335,7 +39335,7 @@ ] ], [ - "【38기】ㅇ", + "38·ㅇ", 77, 87, 17, @@ -39365,7 +39365,7 @@ ] ], [ - "【38기】이둔", + "38·이둔", 71, 21, 90, @@ -39389,7 +39389,7 @@ ] ], [ - "【38기】A_Little_Tanker", + "38·A_Little_Tanker", 78, 88, 15, @@ -39414,7 +39414,7 @@ ] ], [ - "【38기】사스케", + "38·사스케", 75, 94, 15, @@ -39453,7 +39453,7 @@ ] ], [ - "【38기】421", + "38·421", 88, 76, 15, @@ -39477,7 +39477,7 @@ ] ], [ - "【38기】엘든 링", + "38·엘든 링", 15, 82, 84, @@ -39499,7 +39499,7 @@ ] ], [ - "【38기】독?루아카이브", + "38·독?루아카이브", 76, 15, 88, @@ -39521,7 +39521,7 @@ ] ], [ - "【38기】승원이", + "38·승원이", 91, 76, 15, @@ -39554,7 +39554,7 @@ ] ], [ - "【38기】꺄", + "38·꺄", 75, 15, 89, @@ -39577,7 +39577,7 @@ ] ], [ - "【38기】킹구", + "38·킹구", 76, 15, 90, @@ -39601,7 +39601,7 @@ ] ], [ - "【38기】Hide_D", + "38·Hide_D", 77, 15, 89, @@ -39628,7 +39628,7 @@ ] ], [ - "【38기】퍄퍄", + "38·퍄퍄", 76, 16, 89, @@ -39650,7 +39650,7 @@ ] ], [ - "【38기】피자왕독피자", + "38·피자왕독피자", 94, 73, 15, @@ -39688,7 +39688,7 @@ ] ], [ - "【38기】앵드캡", + "38·앵드캡", 77, 84, 17, @@ -39713,7 +39713,7 @@ ] ], [ - "【38기】독피자", + "38·독피자", 80, 85, 15, @@ -39746,7 +39746,7 @@ ] ], [ - "【38기】평민킬러", + "38·평민킬러", 75, 91, 15, @@ -39771,7 +39771,7 @@ ] ], [ - "【38기】마요이", + "38·마요이", 76, 15, 88, @@ -39793,7 +39793,7 @@ ] ], [ - "【38기】독두꺼비", + "38·독두꺼비", 76, 86, 17, @@ -39815,7 +39815,7 @@ ] ], [ - "【38기】외심장", + "38·외심장", 79, 16, 86, @@ -39837,7 +39837,7 @@ ] ], [ - "【38기】갓갓갓", + "38·갓갓갓", 76, 15, 89, @@ -39869,7 +39869,7 @@ ] ], [ - "【38기】핫소스", + "38·핫소스", 90, 73, 16, @@ -39893,7 +39893,7 @@ ] ], [ - "【38기】제갈여포", + "38·제갈여포", 76, 16, 88, @@ -39916,7 +39916,7 @@ ] ], [ - "【38기】불량", + "38·불량", 75, 91, 15, @@ -39943,7 +39943,7 @@ ] ], [ - "【38기】니키타", + "38·니키타", 76, 15, 90, @@ -39965,7 +39965,7 @@ ] ], [ - "【38기】카이스트", + "38·카이스트", 76, 16, 88, @@ -39992,7 +39992,7 @@ ] ], [ - "【38기】어림도없다!", + "38·어림도없다!", 16, 71, 93, @@ -40017,7 +40017,7 @@ ] ], [ - "【38기】봄꽃", + "38·봄꽃", 15, 70, 94, @@ -40039,7 +40039,7 @@ ] ], [ - "【38기】냥뿌꾸", + "38·냥뿌꾸", 77, 90, 15, @@ -40067,7 +40067,7 @@ ] ], [ - "【38기】이창선", + "38·이창선", 75, 90, 15, @@ -40099,7 +40099,7 @@ ] ], [ - "【38기】구독", + "38·구독", 16, 84, 78, @@ -40122,7 +40122,7 @@ ] ], [ - "【38기】도둑이닷", + "38·도둑이닷", 15, 87, 77, @@ -40145,7 +40145,7 @@ ] ], [ - "【38기】독생독사", + "38·독생독사", 75, 15, 91, @@ -40174,7 +40174,7 @@ ] ], [ - "【38기】초밥왕시뉴카린", + "38·초밥왕시뉴카린", 87, 77, 15, @@ -40197,7 +40197,7 @@ ] ], [ - "【38기】시카이슈테르", + "38·시카이슈테르", 87, 74, 15, @@ -40220,7 +40220,7 @@ ] ], [ - "【38기】ARES군주", + "38·ARES군주", 76, 91, 15, @@ -40252,7 +40252,7 @@ ] ], [ - "【38기】Cure", + "38·Cure", 78, 15, 89, @@ -40277,7 +40277,7 @@ ] ], [ - "【38기】귀달", + "38·귀달", 87, 78, 16, @@ -40307,7 +40307,7 @@ ] ], [ - "【38기】크렌스", + "38·크렌스", 89, 75, 15, @@ -40334,7 +40334,7 @@ ] ], [ - "【38기】세일러문", + "38·세일러문", 72, 15, 92, @@ -40356,7 +40356,7 @@ ] ], [ - "【38기】삭턴과1분장", + "38·삭턴과1분장", 75, 15, 89, @@ -40378,7 +40378,7 @@ ] ], [ - "【38기】펭탄두", + "38·펭탄두", 15, 92, 72, @@ -40402,7 +40402,7 @@ ] ], [ - "【38기】멜덩이", + "38·멜덩이", 58, 62, 58, @@ -40424,7 +40424,7 @@ ] ], [ - "【38기】네정", + "38·네정", 15, 72, 91, @@ -40447,7 +40447,7 @@ ] ], [ - "【38기】물고기맛쿠키", + "38·물고기맛쿠키", 75, 16, 86, @@ -40469,7 +40469,7 @@ ] ], [ - "【38기】무지장캐논", + "38·무지장캐논", 17, 76, 86, @@ -40491,7 +40491,7 @@ ] ], [ - "【38기】초록햄과초록달걀", + "38·초록햄과초록달걀", 73, 15, 89, @@ -40513,7 +40513,7 @@ ] ], [ - "【38기】구경잼꿀잼뭐하나", + "38·구경잼꿀잼뭐하나", 74, 86, 15, @@ -40539,7 +40539,7 @@ ] ], [ - "【38기】ㅁㄴㅇㄹ", + "38·ㅁㄴㅇㄹ", 73, 84, 15, @@ -40561,7 +40561,7 @@ ] ], [ - "【39기】피리부는사나이", + "39·피리부는사나이", 15, 94, 70, @@ -40585,7 +40585,7 @@ ] ], [ - "【39기】아이린", + "39·아이린", 73, 89, 15, @@ -40609,7 +40609,7 @@ ] ], [ - "【39기】앵드캡", + "39·앵드캡", 75, 89, 15, @@ -40644,7 +40644,7 @@ ] ], [ - "【39기】릴파", + "39·릴파", 16, 89, 74, @@ -40667,7 +40667,7 @@ ] ], [ - "【39기】착한람쥐죽은람쥐", + "39·착한람쥐죽은람쥐", 73, 90, 15, @@ -40692,7 +40692,7 @@ ] ], [ - "【39기】이드", + "39·이드", 72, 15, 92, @@ -40714,7 +40714,7 @@ ] ], [ - "【39기】머슬다람쥐", + "39·머슬다람쥐", 76, 88, 15, @@ -40744,7 +40744,7 @@ ] ], [ - "【39기】카비", + "39·카비", 71, 20, 88, @@ -40766,7 +40766,7 @@ ] ], [ - "【39기】Hide_D", + "39·Hide_D", 76, 15, 88, @@ -40793,7 +40793,7 @@ ] ], [ - "【39기】로비", + "39·로비", 15, 71, 93, @@ -40816,7 +40816,7 @@ ] ], [ - "【39기】호람쥐", + "39·호람쥐", 71, 20, 89, @@ -40839,7 +40839,7 @@ ] ], [ - "【39기】다랍쥐", + "39·다랍쥐", 15, 87, 75, @@ -40861,7 +40861,7 @@ ] ], [ - "【39기】복숭아좋아", + "39·복숭아좋아", 74, 16, 87, @@ -40883,7 +40883,7 @@ ] ], [ - "【39기】수장", + "39·수장", 75, 15, 88, @@ -40909,7 +40909,7 @@ ] ], [ - "【39기】불멸의어르신", + "39·불멸의어르신", 76, 89, 15, @@ -40938,7 +40938,7 @@ ] ], [ - "【39기】자숙케", + "39·자숙케", 75, 86, 16, @@ -40960,7 +40960,7 @@ ] ], [ - "【39기】ㅣ", + "39·ㅣ", 74, 88, 15, @@ -40983,7 +40983,7 @@ ] ], [ - "【39기】갤노트람쥐", + "39·갤노트람쥐", 72, 91, 15, @@ -41006,7 +41006,7 @@ ] ], [ - "【39기】ThirtyNine", + "39·ThirtyNine", 88, 74, 15, @@ -41031,7 +41031,7 @@ ] ], [ - "【39기】마요이", + "39·마요이", 77, 85, 15, @@ -41059,7 +41059,7 @@ ] ], [ - "【39기】천괴금", + "39·천괴금", 18, 71, 89, @@ -41082,7 +41082,7 @@ ] ], [ - "【39기】오과국화약", + "39·오과국화약", 86, 77, 15, @@ -41105,7 +41105,7 @@ ] ], [ - "【39기】독구킬러다람쥐", + "39·독구킬러다람쥐", 75, 88, 15, @@ -41127,7 +41127,7 @@ ] ], [ - "【39기】갈근", + "39·갈근", 89, 74, 15, @@ -41154,7 +41154,7 @@ ] ], [ - "【39기】비앙카", + "39·비앙카", 91, 74, 15, @@ -41181,7 +41181,7 @@ ] ], [ - "【39기】박일아", + "39·박일아", 74, 16, 89, @@ -41206,7 +41206,7 @@ ] ], [ - "【39기】네시네시", + "39·네시네시", 75, 15, 89, @@ -41231,7 +41231,7 @@ ] ], [ - "【39기】아가다람쥐앵벌스", + "39·아가다람쥐앵벌스", 75, 88, 15, @@ -41254,7 +41254,7 @@ ] ], [ - "【39기】페이트", + "39·페이트", 15, 91, 72, @@ -41278,7 +41278,7 @@ ] ], [ - "【39기】제갈람쥐", + "39·제갈람쥐", 76, 15, 87, @@ -41300,7 +41300,7 @@ ] ], [ - "【39기】로?루", + "39·로?루", 15, 72, 90, @@ -41323,7 +41323,7 @@ ] ], [ - "【39기】평민킬러", + "39·평민킬러", 93, 71, 15, @@ -41347,7 +41347,7 @@ ] ], [ - "【39기】디람쥐", + "39·디람쥐", 84, 79, 15, @@ -41372,7 +41372,7 @@ ] ], [ - "【39기】카이스트", + "39·카이스트", 73, 16, 89, @@ -41402,7 +41402,7 @@ ] ], [ - "【39기】킹구", + "39·킹구", 72, 16, 89, @@ -41426,7 +41426,7 @@ ] ], [ - "【39기】임사영", + "39·임사영", 76, 15, 89, @@ -41454,7 +41454,7 @@ ] ], [ - "【39기】돌림쥐", + "39·돌림쥐", 73, 16, 88, @@ -41483,7 +41483,7 @@ ] ], [ - "【39기】다림쥐", + "39·다림쥐", 75, 15, 88, @@ -41505,7 +41505,7 @@ ] ], [ - "【39기】앵야호", + "39·앵야호", 73, 15, 91, @@ -41535,7 +41535,7 @@ ] ], [ - "【39기】앵날먹", + "39·앵날먹", 16, 72, 89, @@ -41558,7 +41558,7 @@ ] ], [ - "【39기】야람쥐", + "39·야람쥐", 91, 73, 15, @@ -41590,7 +41590,7 @@ ] ], [ - "【39기】독구", + "39·독구", 73, 15, 92, @@ -41622,7 +41622,7 @@ ] ], [ - "【39기】앵벌스", + "39·앵벌스", 74, 15, 91, @@ -41650,7 +41650,7 @@ ] ], [ - "【39기】다람쥐", + "39·다람쥐", 75, 15, 88, @@ -41676,7 +41676,7 @@ ] ], [ - "【39기】퍄퍄", + "39·퍄퍄", 75, 87, 15, @@ -41704,7 +41704,7 @@ ] ], [ - "【39기】검은참깨두유", + "39·검은참깨두유", 75, 89, 16, @@ -41732,7 +41732,7 @@ ] ], [ - "【39기】봄꽃", + "39·봄꽃", 85, 15, 77, @@ -41754,7 +41754,7 @@ ] ], [ - "【39기】ARES군주", + "39·ARES군주", 74, 89, 17, @@ -41779,7 +41779,7 @@ ] ], [ - "【39기】귀달", + "39·귀달", 76, 86, 15, @@ -41802,7 +41802,7 @@ ] ], [ - "【39기】애국보수", + "39·애국보수", 74, 15, 87, @@ -41824,7 +41824,7 @@ ] ], [ - "【39기】파개한다", + "39·파개한다", 16, 86, 76, @@ -41847,7 +41847,7 @@ ] ], [ - "【39기】콘슈퍼람", + "39·콘슈퍼람", 75, 15, 89, @@ -41875,7 +41875,7 @@ ] ], [ - "【39기】전라", + "39·전라", 73, 16, 87, @@ -41897,7 +41897,7 @@ ] ], [ - "【39기】1분장삭턴다람쥐", + "39·1분장삭턴다람쥐", 71, 15, 90, @@ -41919,7 +41919,7 @@ ] ], [ - "【39기】몰루", + "39·몰루", 83, 78, 15, @@ -41949,7 +41949,7 @@ ] ], [ - "【39기】정상수", + "39·정상수", 15, 73, 90, @@ -41971,7 +41971,7 @@ ] ], [ - "【39기】연애그만해라", + "39·연애그만해라", 83, 79, 16, @@ -41996,7 +41996,7 @@ ] ], [ - "【39기】edz", + "39·edz", 84, 76, 15, @@ -42019,7 +42019,7 @@ ] ], [ - "【39기】료우기시키", + "39·료우기시키", 85, 76, 15, @@ -42043,7 +42043,7 @@ ] ], [ - "【39기】김갑환", + "39·김갑환", 85, 77, 15, @@ -42066,7 +42066,7 @@ ] ], [ - "【39기】앵람쥐", + "39·앵람쥐", 84, 77, 15, @@ -42088,7 +42088,7 @@ ] ], [ - "【39기】쿤타", + "39·쿤타", 15, 72, 89, @@ -42110,7 +42110,7 @@ ] ], [ - "【39기】할래", + "39·할래", 15, 73, 84, @@ -42132,7 +42132,7 @@ ] ], [ - "【41기】박일아", + "41·박일아", 75, 90, 15, @@ -42159,7 +42159,7 @@ ] ], [ - "【41기】로제타", + "41·로제타", 73, 15, 93, @@ -42181,7 +42181,7 @@ ] ], [ - "【41기】독마독갈테르", + "41·독마독갈테르", 78, 89, 15, @@ -42212,7 +42212,7 @@ ] ], [ - "【41기】하츄핑", + "41·하츄핑", 74, 15, 93, @@ -42246,7 +42246,7 @@ ] ], [ - "【41기】제갈공명", + "41·제갈공명", 75, 16, 90, @@ -42270,7 +42270,7 @@ ] ], [ - "【41기】콩가루", + "41·콩가루", 74, 93, 15, @@ -42295,7 +42295,7 @@ ] ], [ - "【41기】SARS", + "41·SARS", 90, 76, 15, @@ -42327,7 +42327,7 @@ ] ], [ - "【41기】악동핑", + "41·악동핑", 74, 92, 15, @@ -42353,7 +42353,7 @@ ] ], [ - "【41기】아우", + "41·아우", 75, 86, 16, @@ -42376,7 +42376,7 @@ ] ], [ - "【41기】코케 레수렉시온", + "41·코케 레수렉시온", 20, 86, 74, @@ -42401,7 +42401,7 @@ ] ], [ - "【41기】앵버거독피자시스시", + "41·앵버거독피자시스시", 77, 86, 15, @@ -42423,7 +42423,7 @@ ] ], [ - "【41기】평민킬러", + "41·평민킬러", 94, 73, 15, @@ -42451,7 +42451,7 @@ ] ], [ - "【41기】초코맛국수", + "41·초코맛국수", 78, 16, 86, @@ -42474,7 +42474,7 @@ ] ], [ - "【41기】퍄퍄", + "41·퍄퍄", 75, 88, 15, @@ -42497,7 +42497,7 @@ ] ], [ - "【41기】카이스트", + "41·카이스트", 75, 15, 89, @@ -42522,7 +42522,7 @@ ] ], [ - "【41기】반도핑", + "41·반도핑", 80, 86, 15, @@ -42552,7 +42552,7 @@ ] ], [ - "【41기】게르니카", + "41·게르니카", 78, 15, 87, @@ -42574,7 +42574,7 @@ ] ], [ - "【41기】조승상", + "41·조승상", 86, 78, 16, @@ -42601,7 +42601,7 @@ ] ], [ - "【41기】네이미", + "41·네이미", 85, 80, 15, @@ -42626,7 +42626,7 @@ ] ], [ - "【41기】앵벌스♡리즈나", + "41·앵벌스♡리즈나", 76, 15, 89, @@ -42648,7 +42648,7 @@ ] ], [ - "【41기】바로핑", + "41·바로핑", 75, 15, 92, @@ -42676,7 +42676,7 @@ ] ], [ - "【41기】유카", + "41·유카", 74, 92, 15, @@ -42698,7 +42698,7 @@ ] ], [ - "【41기】루리나", + "41·루리나", 15, 73, 91, @@ -42720,7 +42720,7 @@ ] ], [ - "【41기】1.0", + "41·1.0", 73, 15, 93, @@ -42749,7 +42749,7 @@ ] ], [ - "【41기】핑", + "41·핑", 77, 16, 88, @@ -42772,7 +42772,7 @@ ] ], [ - "【41기】갈근", + "41·갈근", 89, 75, 15, @@ -42797,7 +42797,7 @@ ] ], [ - "【41기】도9", + "41·도9", 86, 77, 16, @@ -42819,7 +42819,7 @@ ] ], [ - "【41기】시뉴카린", + "41·시뉴카린", 75, 88, 16, @@ -42846,7 +42846,7 @@ ] ], [ - "【41기】불패", + "41·불패", 75, 15, 90, @@ -42871,7 +42871,7 @@ ] ], [ - "【41기】시진핑", + "41·시진핑", 89, 78, 15, @@ -42901,7 +42901,7 @@ ] ], [ - "【41기】ZZARA", + "41·ZZARA", 75, 89, 15, @@ -42928,7 +42928,7 @@ ] ], [ - "【41기】마휘핑", + "41·마휘핑", 74, 15, 92, @@ -42955,7 +42955,7 @@ ] ], [ - "【41기】차차핑", + "41·차차핑", 77, 87, 16, @@ -42980,7 +42980,7 @@ ] ], [ - "【41기】임사영", + "41·임사영", 76, 15, 91, @@ -43012,7 +43012,7 @@ ] ], [ - "【41기】커여운홍차", + "41·커여운홍차", 19, 83, 79, @@ -43034,7 +43034,7 @@ ] ], [ - "【41기】넌못지나간다", + "41·넌못지나간다", 93, 73, 15, @@ -43058,7 +43058,7 @@ ] ], [ - "【41기】뉴턴", + "41·뉴턴", 74, 16, 90, @@ -43081,7 +43081,7 @@ ] ], [ - "【41기】고독한삐에로", + "41·고독한삐에로", 91, 75, 15, @@ -43106,7 +43106,7 @@ ] ], [ - "【41기】페르난도", + "41·페르난도", 73, 93, 15, @@ -43135,7 +43135,7 @@ ] ], [ - "【41기】민방위n년차", + "41·민방위n년차", 83, 15, 81, @@ -43157,7 +43157,7 @@ ] ], [ - "【41기】불곰", + "41·불곰", 38, 52, 90, @@ -43179,7 +43179,7 @@ ] ], [ - "【41기】군필22학번", + "41·군필22학번", 74, 15, 90, @@ -43204,7 +43204,7 @@ ] ], [ - "【41기】네시", + "41·네시", 93, 72, 15, @@ -43227,7 +43227,7 @@ ] ], [ - "【41기】칠리크랩", + "41·칠리크랩", 15, 73, 93, @@ -43249,7 +43249,7 @@ ] ], [ - "【41기】AI 흑우", + "41·AI 흑우", 76, 15, 90, @@ -43273,7 +43273,7 @@ ] ], [ - "【41기】tqtt", + "41·tqtt", 72, 15, 91, @@ -43295,7 +43295,7 @@ ] ], [ - "【41기】호갱", + "41·호갱", 77, 87, 15, @@ -43317,7 +43317,7 @@ ] ], [ - "【41기】3", + "41·3", 76, 87, 16, @@ -43341,7 +43341,7 @@ ] ], [ - "【41기】무장입니다", + "41·무장입니다", 74, 94, 15, @@ -43372,7 +43372,7 @@ ] ], [ - "【41기】갓갓가가갓갓", + "41·갓갓가가갓갓", 77, 87, 15, @@ -43394,7 +43394,7 @@ ] ], [ - "【41기】아야핑", + "41·아야핑", 76, 89, 15, @@ -43420,7 +43420,7 @@ ] ], [ - "【41기】수장", + "41·수장", 75, 89, 15, @@ -43443,7 +43443,7 @@ ] ], [ - "【41기】봄꽃", + "41·봄꽃", 86, 15, 78, @@ -43465,7 +43465,7 @@ ] ], [ - "【41기】천마", + "41·천마", 75, 15, 90, @@ -43489,7 +43489,7 @@ ] ], [ - "【41기】중달", + "41·중달", 77, 15, 88, @@ -43522,7 +43522,7 @@ ] ], [ - "【41기】후랴", + "41·후랴", 73, 15, 92, @@ -43547,7 +43547,7 @@ ] ], [ - "【41기】료우기시키", + "41·료우기시키", 86, 74, 16, @@ -43569,7 +43569,7 @@ ] ], [ - "【41기】맛있는딸기", + "41·맛있는딸기", 74, 90, 15, @@ -43592,7 +43592,7 @@ ] ], [ - "【41기】rwitch", + "41·rwitch", 86, 77, 15, @@ -43616,7 +43616,7 @@ ] ], [ - "【41기】냐옹", + "41·냐옹", 74, 87, 15, @@ -43638,7 +43638,7 @@ ] ], [ - "【41기】엘독링", + "41·엘독링", 15, 84, 74, @@ -43660,7 +43660,7 @@ ] ], [ - "【41기】유산스카", + "41·유산스카", 15, 86, 73, @@ -43682,7 +43682,7 @@ ] ], [ - "【42기】HMR", + "42·HMR", 77, 15, 91, @@ -43704,7 +43704,7 @@ ] ], [ - "【42기】카이스트", + "42·카이스트", 75, 15, 93, @@ -43729,7 +43729,7 @@ ] ], [ - "【42기】천괴은", + "42·천괴은", 76, 93, 15, @@ -43754,7 +43754,7 @@ ] ], [ - "【42기】갈근", + "42·갈근", 91, 77, 15, @@ -43788,7 +43788,7 @@ ] ], [ - "【42기】블루마운틴", + "42·블루마운틴", 15, 95, 71, @@ -43812,7 +43812,7 @@ ] ], [ - "【42기】엔틱", + "42·엔틱", 77, 15, 93, @@ -43842,7 +43842,7 @@ ] ], [ - "【42기】천재마법사", + "42·천재마법사", 76, 15, 92, @@ -43864,7 +43864,7 @@ ] ], [ - "【42기】심의위원장", + "42·심의위원장", 73, 16, 93, @@ -43886,7 +43886,7 @@ ] ], [ - "【42기】수장", + "42·수장", 77, 91, 15, @@ -43914,7 +43914,7 @@ ] ], [ - "【42기】미네르바", + "42·미네르바", 90, 79, 15, @@ -43941,7 +43941,7 @@ ] ], [ - "【42기】천괴다이아", + "42·천괴다이아", 73, 15, 96, @@ -43964,7 +43964,7 @@ ] ], [ - "【42기】사사게", + "42·사사게", 76, 91, 15, @@ -43989,7 +43989,7 @@ ] ], [ - "【42기】박일아", + "42·박일아", 76, 91, 15, @@ -44015,7 +44015,7 @@ ] ], [ - "【42기】SARS", + "42·SARS", 88, 78, 16, @@ -44042,7 +44042,7 @@ ] ], [ - "【42기】이드", + "42·이드", 74, 94, 15, @@ -44066,7 +44066,7 @@ ] ], [ - "【42기】킹구", + "42·킹구", 76, 15, 91, @@ -44088,7 +44088,7 @@ ] ], [ - "【42기】빵사능홍차", + "42·빵사능홍차", 89, 78, 15, @@ -44121,7 +44121,7 @@ ] ], [ - "【42기】루피", + "42·루피", 74, 95, 15, @@ -44146,7 +44146,7 @@ ] ], [ - "【42기】복숭아좋아", + "42·복숭아좋아", 74, 16, 91, @@ -44169,7 +44169,7 @@ ] ], [ - "【42기】Mella", + "42·Mella", 75, 93, 16, @@ -44194,7 +44194,7 @@ ] ], [ - "【42기】방화범", + "42·방화범", 72, 93, 16, @@ -44216,7 +44216,7 @@ ] ], [ - "【42기】퍄퍄", + "42·퍄퍄", 75, 16, 91, @@ -44238,7 +44238,7 @@ ] ], [ - "【42기】마요이", + "42·마요이", 77, 92, 15, @@ -44261,7 +44261,7 @@ ] ], [ - "【42기】rwitch", + "42·rwitch", 75, 15, 94, @@ -44286,7 +44286,7 @@ ] ], [ - "【42기】천재", + "42·천재", 74, 15, 92, @@ -44312,7 +44312,7 @@ ] ], [ - "【42기】천괴흙", + "42·천괴흙", 76, 15, 92, @@ -44335,7 +44335,7 @@ ] ], [ - "【42기】천괴코인", + "42·천괴코인", 91, 77, 15, @@ -44358,7 +44358,7 @@ ] ], [ - "【42기】사스케", + "42·사스케", 75, 15, 91, @@ -44392,7 +44392,7 @@ ] ], [ - "【42기】SARS케", + "42·SARS케", 79, 89, 15, @@ -44415,7 +44415,7 @@ ] ], [ - "【42기】평민킬러", + "42·평민킬러", 76, 93, 15, @@ -44439,7 +44439,7 @@ ] ], [ - "【42기】참고하라고", + "42·참고하라고", 75, 92, 15, @@ -44468,7 +44468,7 @@ ] ], [ - "【42기】임사영", + "42·임사영", 76, 15, 92, @@ -44494,7 +44494,7 @@ ] ], [ - "【42기】전술핵", + "42·전술핵", 75, 93, 15, @@ -44532,7 +44532,7 @@ ] ], [ - "【42기】Hide_D", + "42·Hide_D", 77, 15, 91, @@ -44556,7 +44556,7 @@ ] ], [ - "【42기】천괴옥", + "42·천괴옥", 77, 91, 15, @@ -44580,7 +44580,7 @@ ] ], [ - "【42기】천괴동", + "42·천괴동", 73, 15, 93, @@ -44602,7 +44602,7 @@ ] ], [ - "【42기】갓갓가가갓갓", + "42·갓갓가가갓갓", 77, 15, 91, @@ -44625,7 +44625,7 @@ ] ], [ - "【42기】페르난도", + "42·페르난도", 78, 89, 16, @@ -44650,7 +44650,7 @@ ] ], [ - "【42기】코로나다메요", + "42·코로나다메요", 87, 78, 16, @@ -44673,7 +44673,7 @@ ] ], [ - "【42기】불곰", + "42·불곰", 76, 90, 15, @@ -44697,7 +44697,7 @@ ] ], [ - "【42기】천개금", + "42·천개금", 15, 98, 70, @@ -44723,7 +44723,7 @@ ] ], [ - "【42기】황혼중", + "42·황혼중", 87, 15, 80, @@ -44745,7 +44745,7 @@ ] ], [ - "【42기】불패", + "42·불패", 91, 74, 15, @@ -44769,7 +44769,7 @@ ] ], [ - "【42기】4.6", + "42·4.6", 79, 91, 15, @@ -44803,7 +44803,7 @@ ] ], [ - "【42기】네시", + "42·네시", 84, 82, 15, @@ -44825,7 +44825,7 @@ ] ], [ - "【42기】렌고쿠 쿄주로", + "42·렌고쿠 쿄주로", 76, 90, 15, @@ -44851,7 +44851,7 @@ ] ], [ - "【42기】초코맛국수", + "42·초코맛국수", 77, 15, 89, @@ -44874,7 +44874,7 @@ ] ], [ - "【42기】빛", + "42·빛", 77, 90, 15, @@ -44901,7 +44901,7 @@ ] ], [ - "【42기】외심장", + "42·외심장", 73, 18, 93, @@ -44926,7 +44926,7 @@ ] ], [ - "【42기】돈까스에치즈빼라", + "42·돈까스에치즈빼라", 75, 15, 94, @@ -44953,7 +44953,7 @@ ] ], [ - "【42기】정승필18센치", + "42·정승필18센치", 15, 75, 91, @@ -44975,7 +44975,7 @@ ] ], [ - "【42기】네시분신", + "42·네시분신", 74, 15, 93, @@ -44997,7 +44997,7 @@ ] ], [ - "【42기】중달", + "42·중달", 96, 72, 15, @@ -45027,7 +45027,7 @@ ] ], [ - "【42기】상임위원", + "42·상임위원", 76, 89, 17, @@ -45049,7 +45049,7 @@ ] ], [ - "【42기】tqtt", + "42·tqtt", 72, 15, 94, @@ -45071,7 +45071,7 @@ ] ], [ - "【42기】제갈여포", + "42·제갈여포", 15, 76, 92, @@ -45093,7 +45093,7 @@ ] ], [ - "【42기】로아의노예", + "42·로아의노예", 15, 80, 86, @@ -45117,7 +45117,7 @@ ] ], [ - "【42기】모리쿠보노노", + "42·모리쿠보노노", 74, 15, 92, @@ -45142,7 +45142,7 @@ ] ], [ - "【42기】후랴", + "42·후랴", 77, 15, 89, @@ -45164,7 +45164,7 @@ ] ], [ - "【42기】멜덩이", + "42·멜덩이", 16, 74, 90, @@ -45186,7 +45186,7 @@ ] ], [ - "【42기】민초치카", + "42·민초치카", 16, 92, 72, @@ -45208,7 +45208,7 @@ ] ], [ - "【42기】숨쉴래", + "42·숨쉴래", 71, 15, 95, @@ -45230,7 +45230,7 @@ ] ], [ - "【42기】멜랑멜랑", + "42·멜랑멜랑", 15, 73, 90, @@ -45252,7 +45252,7 @@ ] ], [ - "【42기】Q1", + "42·Q1", 83, 77, 15, @@ -45274,7 +45274,7 @@ ] ], [ - "【43기】구동매", + "43·구동매", 78, 94, 15, @@ -45304,7 +45304,7 @@ ] ], [ - "【43기】징버거", + "43·징버거", 76, 91, 15, @@ -45327,7 +45327,7 @@ ] ], [ - "【43기】히나", + "43·히나", 76, 16, 94, @@ -45351,7 +45351,7 @@ ] ], [ - "【43기】굴먹는고양이", + "43·굴먹는고양이", 87, 84, 15, @@ -45374,7 +45374,7 @@ ] ], [ - "【43기】카리야개팬다", + "43·카리야개팬다", 78, 95, 15, @@ -45406,7 +45406,7 @@ ] ], [ - "【43기】악질사랑스런케리건", + "43·악질사랑스런케리건", 77, 91, 15, @@ -45429,7 +45429,7 @@ ] ], [ - "【43기】K9자주포", + "43·K9자주포", 101, 15, 70, @@ -45456,7 +45456,7 @@ ] ], [ - "【43기】고세구", + "43·고세구", 76, 15, 93, @@ -45478,7 +45478,7 @@ ] ], [ - "【43기】Hide_D", + "43·Hide_D", 79, 15, 92, @@ -45502,7 +45502,7 @@ ] ], [ - "【43기】놀러와~~", + "43·놀러와~~", 78, 92, 15, @@ -45525,7 +45525,7 @@ ] ], [ - "【43기】이드", + "43·이드", 75, 15, 96, @@ -45549,7 +45549,7 @@ ] ], [ - "【43기】메스가키", + "43·메스가키", 96, 78, 15, @@ -45580,7 +45580,7 @@ ] ], [ - "【43기】OpenSea", + "43·OpenSea", 79, 15, 92, @@ -45602,7 +45602,7 @@ ] ], [ - "【43기】페코린느", + "43·페코린느", 79, 93, 15, @@ -45627,7 +45627,7 @@ ] ], [ - "【43기】라이언", + "43·라이언", 100, 70, 15, @@ -45654,7 +45654,7 @@ ] ], [ - "【43기】마크", + "43·마크", 92, 79, 15, @@ -45678,7 +45678,7 @@ ] ], [ - "【43기】SARS", + "43·SARS", 89, 83, 15, @@ -45710,7 +45710,7 @@ ] ], [ - "【43기】황혼중", + "43·황혼중", 78, 17, 91, @@ -45732,7 +45732,7 @@ ] ], [ - "【43기】SARS케앵벌스케", + "43·SARS케앵벌스케", 89, 15, 83, @@ -45755,7 +45755,7 @@ ] ], [ - "【43기】독피자", + "43·독피자", 79, 93, 15, @@ -45783,7 +45783,7 @@ ] ], [ - "【43기】예쁜애", + "43·예쁜애", 76, 15, 95, @@ -45811,7 +45811,7 @@ ] ], [ - "【43기】양아치파이리", + "43·양아치파이리", 77, 15, 95, @@ -45834,7 +45834,7 @@ ] ], [ - "【43기】카리야 깡!", + "43·카리야 깡!", 76, 95, 15, @@ -45859,7 +45859,7 @@ ] ], [ - "【43기】라이마", + "43·라이마", 75, 15, 97, @@ -45884,7 +45884,7 @@ ] ], [ - "【43기】라디오", + "43·라디오", 88, 81, 16, @@ -45907,7 +45907,7 @@ ] ], [ - "【43기】불패", + "43·불패", 76, 15, 94, @@ -45931,7 +45931,7 @@ ] ], [ - "【43기】제갈여포", + "43·제갈여포", 15, 73, 95, @@ -45954,7 +45954,7 @@ ] ], [ - "【43기】양아치파이", + "43·양아치파이", 77, 17, 93, @@ -45976,7 +45976,7 @@ ] ], [ - "【43기】네시", + "43·네시", 77, 92, 15, @@ -45999,7 +45999,7 @@ ] ], [ - "【43기】갈근", + "43·갈근", 94, 76, 16, @@ -46022,7 +46022,7 @@ ] ], [ - "【43기】김나영", + "43·김나영", 79, 92, 16, @@ -46053,7 +46053,7 @@ ] ], [ - "【43기】복숭아좋아", + "43·복숭아좋아", 76, 16, 93, @@ -46075,7 +46075,7 @@ ] ], [ - "【43기】고애신", + "43·고애신", 76, 15, 95, @@ -46097,7 +46097,7 @@ ] ], [ - "【43기】임사영", + "43·임사영", 77, 16, 93, @@ -46123,7 +46123,7 @@ ] ], [ - "【43기】마요이", + "43·마요이", 74, 15, 97, @@ -46149,7 +46149,7 @@ ] ], [ - "【43기】중달", + "43·중달", 76, 94, 15, @@ -46176,7 +46176,7 @@ ] ], [ - "【43기】천괴금", + "43·천괴금", 77, 15, 95, @@ -46202,7 +46202,7 @@ ] ], [ - "【43기】달", + "43·달", 77, 15, 96, @@ -46228,7 +46228,7 @@ ] ], [ - "【43기】제롬파월", + "43·제롬파월", 79, 90, 16, @@ -46252,7 +46252,7 @@ ] ], [ - "【43기】트윈터보", + "43·트윈터보", 78, 95, 15, @@ -46277,7 +46277,7 @@ ] ], [ - "【43기】5.5", + "43·5.5", 77, 94, 15, @@ -46305,7 +46305,7 @@ ] ], [ - "【43기】카이스트", + "43·카이스트", 75, 15, 95, @@ -46329,7 +46329,7 @@ ] ], [ - "【43기】사스케", + "43·사스케", 109, 15, 71, @@ -46364,7 +46364,7 @@ ] ], [ - "【43기】카류", + "43·카류", 75, 15, 101, @@ -46398,7 +46398,7 @@ ] ], [ - "【43기】외심장", + "43·외심장", 75, 15, 96, @@ -46422,7 +46422,7 @@ ] ], [ - "【43기】불멍", + "43·불멍", 16, 78, 91, @@ -46445,7 +46445,7 @@ ] ], [ - "【43기】농부", + "43·농부", 79, 93, 17, @@ -46473,7 +46473,7 @@ ] ], [ - "【43기】바나나파이", + "43·바나나파이", 79, 91, 15, @@ -46497,7 +46497,7 @@ ] ], [ - "【43기】은월떡상", + "43·은월떡상", 76, 94, 16, @@ -46521,7 +46521,7 @@ ] ], [ - "【43기】근작", + "43·근작", 74, 98, 15, @@ -46547,7 +46547,7 @@ ] ], [ - "【43기】우서", + "43·우서", 77, 15, 92, @@ -46569,7 +46569,7 @@ ] ], [ - "【43기】유진초이", + "43·유진초이", 76, 92, 17, @@ -46592,7 +46592,7 @@ ] ], [ - "【43기】평민킬러", + "43·평민킬러", 79, 91, 16, @@ -46614,7 +46614,7 @@ ] ], [ - "【43기】르세라핌", + "43·르세라핌", 88, 79, 16, @@ -46637,7 +46637,7 @@ ] ], [ - "【43기】딸깍", + "43·딸깍", 76, 15, 96, @@ -46659,7 +46659,7 @@ ] ], [ - "【43기】개미호랑이", + "43·개미호랑이", 79, 15, 92, @@ -46682,7 +46682,7 @@ ] ], [ - "【43기】미스터정승필", + "43·미스터정승필", 15, 77, 94, @@ -46706,7 +46706,7 @@ ] ], [ - "【43기】페르난도", + "43·페르난도", 77, 95, 15, @@ -46730,7 +46730,7 @@ ] ], [ - "【43기】류화영", + "43·류화영", 16, 80, 87, @@ -46752,7 +46752,7 @@ ] ], [ - "【43기】q1", + "43·q1", 81, 88, 15, @@ -46774,7 +46774,7 @@ ] ], [ - "【43기】오드아이즈", + "43·오드아이즈", 80, 90, 15, @@ -46796,7 +46796,7 @@ ] ], [ - "【43기】와타메이트", + "43·와타메이트", 17, 75, 90, @@ -46818,7 +46818,7 @@ ] ], [ - "【43기】Wanderer", + "43·Wanderer", 15, 81, 87, @@ -46842,7 +46842,7 @@ ] ], [ - "【43기】봄꽃", + "43·봄꽃", 15, 86, 82, @@ -46864,7 +46864,7 @@ ] ], [ - "【43기】옴마니밭매용", + "43·옴마니밭매용", 15, 75, 89, @@ -46886,7 +46886,7 @@ ] ], [ - "【43기】악마가붙잡음", + "43·악마가붙잡음", 15, 73, 89, @@ -46908,7 +46908,7 @@ ] ], [ - "【44기】카이스트", + "44·카이스트", 75, 17, 89, @@ -46935,7 +46935,7 @@ ] ], [ - "【44기】오리꿍", + "44·오리꿍", 75, 92, 15, @@ -46960,7 +46960,7 @@ ] ], [ - "【44기】감흥", + "44·감흥", 87, 16, 80, @@ -46989,7 +46989,7 @@ ] ], [ - "【44기】뉴비", + "44·뉴비", 76, 89, 15, @@ -47014,7 +47014,7 @@ ] ], [ - "【44기】달스케", + "44·달스케", 76, 90, 15, @@ -47039,7 +47039,7 @@ ] ], [ - "【44기】SARS", + "44·SARS", 75, 15, 90, @@ -47065,7 +47065,7 @@ ] ], [ - "【44기】공명", + "44·공명", 88, 16, 78, @@ -47088,7 +47088,7 @@ ] ], [ - "【44기】나루토", + "44·나루토", 75, 89, 16, @@ -47112,7 +47112,7 @@ ] ], [ - "【44기】리안", + "44·리안", 74, 91, 15, @@ -47134,7 +47134,7 @@ ] ], [ - "【44기】CodeMico", + "44·CodeMico", 78, 89, 15, @@ -47161,7 +47161,7 @@ ] ], [ - "【44기】에이펙스레전드", + "44·에이펙스레전드", 76, 92, 15, @@ -47192,7 +47192,7 @@ ] ], [ - "【44기】소피 노이엔뮐러", + "44·소피 노이엔뮐러", 74, 15, 93, @@ -47216,7 +47216,7 @@ ] ], [ - "【44기】정승필실종사건", + "44·정승필실종사건", 87, 15, 79, @@ -47241,7 +47241,7 @@ ] ], [ - "【44기】미스티", + "44·미스티", 75, 17, 90, @@ -47264,7 +47264,7 @@ ] ], [ - "【44기】찐승필", + "44·찐승필", 93, 75, 15, @@ -47288,7 +47288,7 @@ ] ], [ - "【44기】아누비스", + "44·아누비스", 75, 92, 15, @@ -47311,7 +47311,7 @@ ] ], [ - "【44기】슬라임이당", + "44·슬라임이당", 89, 78, 15, @@ -47334,7 +47334,7 @@ ] ], [ - "【44기】사스캣", + "44·사스캣", 76, 15, 93, @@ -47364,7 +47364,7 @@ ] ], [ - "【44기】Hide_D", + "44·Hide_D", 82, 15, 85, @@ -47388,7 +47388,7 @@ ] ], [ - "【44기】4水Ke", + "44·4水Ke", 73, 93, 15, @@ -47412,7 +47412,7 @@ ] ], [ - "【44기】?바나나?", + "44·?바나나?", 77, 90, 15, @@ -47440,7 +47440,7 @@ ] ], [ - "【44기】정승필", + "44·정승필", 79, 87, 16, @@ -47467,7 +47467,7 @@ ] ], [ - "【44기】ㅋㅋㄹ", + "44·ㅋㅋㄹ", 74, 15, 92, @@ -47489,7 +47489,7 @@ ] ], [ - "【44기】콘", + "44·콘", 76, 15, 90, @@ -47512,7 +47512,7 @@ ] ], [ - "【44기】날먹유카", + "44·날먹유카", 80, 87, 16, @@ -47538,7 +47538,7 @@ ] ], [ - "【44기】이드", + "44·이드", 95, 74, 15, @@ -47565,7 +47565,7 @@ ] ], [ - "【44기】6.5", + "44·6.5", 87, 78, 15, @@ -47588,7 +47588,7 @@ ] ], [ - "【44기】박일아", + "44·박일아", 78, 15, 89, @@ -47610,7 +47610,7 @@ ] ], [ - "【44기】망냥냥", + "44·망냥냥", 75, 90, 15, @@ -47633,7 +47633,7 @@ ] ], [ - "【44기】야스케", + "44·야스케", 74, 16, 89, @@ -47659,7 +47659,7 @@ ] ], [ - "【44기】유스케", + "44·유스케", 76, 15, 90, @@ -47683,7 +47683,7 @@ ] ], [ - "【44기】몰⸮루", + "44·몰⸮루", 74, 15, 93, @@ -47708,7 +47708,7 @@ ] ], [ - "【44기】사스가키", + "44·사스가키", 74, 93, 15, @@ -47732,7 +47732,7 @@ ] ], [ - "【44기】한시", + "44·한시", 75, 15, 92, @@ -47754,7 +47754,7 @@ ] ], [ - "【44기】오디오", + "44·오디오", 76, 90, 16, @@ -47779,7 +47779,7 @@ ] ], [ - "【44기】사스케", + "44·사스케", 76, 15, 91, @@ -47804,7 +47804,7 @@ ] ], [ - "【44기】퇴사까지4달", + "44·퇴사까지4달", 78, 15, 89, @@ -47826,7 +47826,7 @@ ] ], [ - "【44기】평민킬러", + "44·평민킬러", 77, 88, 15, @@ -47853,7 +47853,7 @@ ] ], [ - "【44기】덕구", + "44·덕구", 78, 89, 15, @@ -47886,7 +47886,7 @@ ] ], [ - "【44기】몰?루", + "44·몰?루", 75, 90, 16, @@ -47909,7 +47909,7 @@ ] ], [ - "【44기】왓슨 아멜리아", + "44·왓슨 아멜리아", 75, 91, 16, @@ -47937,7 +47937,7 @@ ] ], [ - "【44기】마스케", + "44·마스케", 76, 89, 15, @@ -47959,7 +47959,7 @@ ] ], [ - "【44기】돌아온너구리", + "44·돌아온너구리", 77, 88, 15, @@ -47981,7 +47981,7 @@ ] ], [ - "【44기】닥터승필레인지", + "44·닥터승필레인지", 77, 16, 89, @@ -48003,7 +48003,7 @@ ] ], [ - "【44기】갈근", + "44·갈근", 93, 75, 15, @@ -48031,7 +48031,7 @@ ] ], [ - "【44기】오스케", + "44·오스케", 77, 88, 16, @@ -48057,7 +48057,7 @@ ] ], [ - "【44기】세시", + "44·세시", 91, 73, 15, @@ -48081,7 +48081,7 @@ ] ], [ - "【44기】아이언승필", + "44·아이언승필", 77, 15, 90, @@ -48111,7 +48111,7 @@ ] ], [ - "【44기】캡틴승필리카", + "44·캡틴승필리카", 74, 91, 15, @@ -48135,7 +48135,7 @@ ] ], [ - "【44기】가짜", + "44·가짜", 15, 95, 72, @@ -48159,7 +48159,7 @@ ] ], [ - "【44기】サンソン", + "44·サンソン", 73, 94, 15, @@ -48182,7 +48182,7 @@ ] ], [ - "【44기】여캠시뉴카린", + "44·여캠시뉴카린", 75, 89, 16, @@ -48204,7 +48204,7 @@ ] ], [ - "【44기】외심장", + "44·외심장", 76, 15, 91, @@ -48226,7 +48226,7 @@ ] ], [ - "【44기】아메리카", + "44·아메리카", 74, 15, 92, @@ -48249,7 +48249,7 @@ ] ], [ - "【44기】비앙키", + "44·비앙키", 78, 88, 15, @@ -48273,7 +48273,7 @@ ] ], [ - "【44기】루나", + "44·루나", 16, 71, 95, @@ -48296,7 +48296,7 @@ ] ], [ - "【44기】호각", + "44·호각", 77, 85, 17, @@ -48320,7 +48320,7 @@ ] ], [ - "【44기】로리", + "44·로리", 76, 17, 89, @@ -48342,7 +48342,7 @@ ] ], [ - "【44기】봄꽃", + "44·봄꽃", 15, 71, 96, @@ -48365,7 +48365,7 @@ ] ], [ - "【44기】무천도사", + "44·무천도사", 74, 16, 91, @@ -48387,7 +48387,7 @@ ] ], [ - "【44기】황혼중", + "44·황혼중", 75, 16, 90, @@ -48412,7 +48412,7 @@ ] ], [ - "【44기】배팅의신", + "44·배팅의신", 77, 16, 90, @@ -48434,7 +48434,7 @@ ] ], [ - "【44기】르세라핌", + "44·르세라핌", 86, 78, 16, @@ -48459,7 +48459,7 @@ ] ], [ - "【44기】파도", + "44·파도", 76, 16, 86, @@ -48481,7 +48481,7 @@ ] ], [ - "【44기】중집", + "44·중집", 78, 17, 89, @@ -48503,7 +48503,7 @@ ] ], [ - "【44기】개미호랑이", + "44·개미호랑이", 74, 16, 90, @@ -48530,7 +48530,7 @@ ] ], [ - "【44기】태수", + "44·태수", 77, 15, 89, @@ -48553,7 +48553,7 @@ ] ], [ - "【44기】페르난도", + "44·페르난도", 76, 15, 92, @@ -48577,7 +48577,7 @@ ] ], [ - "【44기】로비", + "44·로비", 16, 73, 91, @@ -48599,7 +48599,7 @@ ] ], [ - "【44기】지옥", + "44·지옥", 90, 74, 15, @@ -48623,7 +48623,7 @@ ] ], [ - "【44기】어피치", + "44·어피치", 89, 72, 15, @@ -48645,7 +48645,7 @@ ] ], [ - "【44기】페코린느", + "44·페코린느", 75, 87, 16, @@ -48667,7 +48667,7 @@ ] ], [ - "【44기】아이", + "44·아이", 74, 17, 86, @@ -48689,7 +48689,7 @@ ] ], [ - "【46기】소피", + "46·소피", 74, 91, 15, @@ -48712,7 +48712,7 @@ ] ], [ - "【46기】박일아", + "46·박일아", 73, 15, 93, @@ -48734,7 +48734,7 @@ ] ], [ - "【46기】임춘식", + "46·임춘식", 75, 91, 15, @@ -48762,7 +48762,7 @@ ] ], [ - "【46기】라이츄", + "46·라이츄", 76, 87, 15, @@ -48784,7 +48784,7 @@ ] ], [ - "【46기】킹구", + "46·킹구", 76, 15, 90, @@ -48809,7 +48809,7 @@ ] ], [ - "【46기】페이몬", + "46·페이몬", 75, 16, 89, @@ -48831,7 +48831,7 @@ ] ], [ - "【46기】바나낫", + "46·바나낫", 74, 92, 15, @@ -48864,7 +48864,7 @@ ] ], [ - "【46기】레이스", + "46·레이스", 77, 90, 15, @@ -48892,7 +48892,7 @@ ] ], [ - "【46기】오에에에엑시뉴카린", + "46·오에에에엑시뉴카린", 74, 15, 92, @@ -48916,7 +48916,7 @@ ] ], [ - "【46기】페르난도", + "46·페르난도", 76, 89, 15, @@ -48942,7 +48942,7 @@ ] ], [ - "【46기】류화영", + "46·류화영", 28, 73, 80, @@ -48965,7 +48965,7 @@ ] ], [ - "【46기】츄츄족", + "46·츄츄족", 75, 88, 16, @@ -48987,7 +48987,7 @@ ] ], [ - "【46기】SARS", + "46·SARS", 80, 86, 15, @@ -49011,7 +49011,7 @@ ] ], [ - "【46기】홍홍", + "46·홍홍", 77, 87, 15, @@ -49034,7 +49034,7 @@ ] ], [ - "【46기】노인을묶으면타이틀", + "46·노인을묶으면타이틀", 76, 89, 16, @@ -49058,7 +49058,7 @@ ] ], [ - "【46기】장원영", + "46·장원영", 91, 73, 15, @@ -49085,7 +49085,7 @@ ] ], [ - "【46기】POCARI.", + "46·POCARI.", 90, 75, 15, @@ -49110,7 +49110,7 @@ ] ], [ - "【46기】삼체미시뉴카린", + "46·삼체미시뉴카린", 75, 92, 15, @@ -49143,7 +49143,7 @@ ] ], [ - "【46기】나옹이", + "46·나옹이", 80, 88, 15, @@ -49170,7 +49170,7 @@ ] ], [ - "【46기】제갈여포", + "46·제갈여포", 88, 15, 76, @@ -49192,7 +49192,7 @@ ] ], [ - "【46기】8", + "46·8", 89, 77, 15, @@ -49217,7 +49217,7 @@ ] ], [ - "【46기】피카츄", + "46·피카츄", 87, 15, 78, @@ -49241,7 +49241,7 @@ ] ], [ - "【46기】감흥", + "46·감흥", 76, 15, 90, @@ -49265,7 +49265,7 @@ ] ], [ - "【46기】마요이", + "46·마요이", 75, 15, 93, @@ -49297,7 +49297,7 @@ ] ], [ - "【46기】아약스", + "46·아약스", 77, 86, 15, @@ -49319,7 +49319,7 @@ ] ], [ - "【46기】고통의가시", + "46·고통의가시", 89, 15, 74, @@ -49341,7 +49341,7 @@ ] ], [ - "【46기】짭뉴카린", + "46·짭뉴카린", 75, 15, 90, @@ -49364,7 +49364,7 @@ ] ], [ - "【46기】와일드플라워", + "46·와일드플라워", 83, 81, 15, @@ -49387,7 +49387,7 @@ ] ], [ - "【46기】깡패", + "46·깡패", 80, 85, 15, @@ -49410,7 +49410,7 @@ ] ], [ - "【46기】바나나OUT", + "46·바나나OUT", 75, 15, 89, @@ -49433,7 +49433,7 @@ ] ], [ - "【46기】나이스네이처", + "46·나이스네이처", 76, 88, 16, @@ -49455,7 +49455,7 @@ ] ], [ - "【46기】물자조달", + "46·물자조달", 17, 89, 74, @@ -49477,7 +49477,7 @@ ] ], [ - "【46기】이드", + "46·이드", 74, 15, 92, @@ -49500,7 +49500,7 @@ ] ], [ - "【46기】카이스트", + "46·카이스트", 77, 15, 88, @@ -49522,7 +49522,7 @@ ] ], [ - "【46기】미스티", + "46·미스티", 78, 15, 88, @@ -49544,7 +49544,7 @@ ] ], [ - "【46기】슬라임", + "46·슬라임", 88, 76, 15, @@ -49569,7 +49569,7 @@ ] ], [ - "【46기】칸나", + "46·칸나", 76, 15, 91, @@ -49597,7 +49597,7 @@ ] ], [ - "【46기】호나", + "46·호나", 80, 85, 15, @@ -49620,7 +49620,7 @@ ] ], [ - "【46기】사스케", + "46·사스케", 94, 72, 15, @@ -49656,7 +49656,7 @@ ] ], [ - "【46기】평민킬러", + "46·평민킬러", 76, 93, 15, @@ -49690,7 +49690,7 @@ ] ], [ - "【46기】마이멜로디", + "46·마이멜로디", 76, 16, 87, @@ -49712,7 +49712,7 @@ ] ], [ - "【46기】퍄퍄", + "46·퍄퍄", 77, 15, 87, @@ -49734,7 +49734,7 @@ ] ], [ - "【46기】쫒겨난애옹이", + "46·쫒겨난애옹이", 77, 15, 86, @@ -49757,7 +49757,7 @@ ] ], [ - "【46기】독괴금", + "46·독괴금", 73, 15, 90, @@ -49779,7 +49779,7 @@ ] ], [ - "【46기】스시카린", + "46·스시카린", 74, 15, 91, @@ -49802,7 +49802,7 @@ ] ], [ - "【46기】료우기시키", + "46·료우기시키", 76, 15, 89, @@ -49825,7 +49825,7 @@ ] ], [ - "【46기】갈근", + "46·갈근", 92, 72, 15, @@ -49850,7 +49850,7 @@ ] ], [ - "【46기】초코바나나빽스치노", + "46·초코바나나빽스치노", 74, 91, 15, @@ -49881,7 +49881,7 @@ ] ], [ - "【46기】시뉴카린", + "46·시뉴카린", 79, 84, 15, @@ -49908,7 +49908,7 @@ ] ], [ - "【46기】복숭아좋아", + "46·복숭아좋아", 75, 15, 89, @@ -49930,7 +49930,7 @@ ] ], [ - "【46기】비챤", + "46·비챤", 72, 15, 92, @@ -49952,7 +49952,7 @@ ] ], [ - "【46기】흑화시뉴카린", + "46·흑화시뉴카린", 78, 86, 16, @@ -49974,7 +49974,7 @@ ] ], [ - "【46기】물조만하는기상술사", + "46·물조만하는기상술사", 15, 85, 78, @@ -49997,7 +49997,7 @@ ] ], [ - "【46기】난배팅만한다", + "46·난배팅만한다", 72, 15, 93, @@ -50022,7 +50022,7 @@ ] ], [ - "【46기】안유진", + "46·안유진", 73, 18, 89, @@ -50045,7 +50045,7 @@ ] ], [ - "【46기】가든", + "46·가든", 76, 16, 88, @@ -50067,7 +50067,7 @@ ] ], [ - "【46기】무쌍", + "46·무쌍", 74, 93, 15, @@ -50099,7 +50099,7 @@ ] ], [ - "【46기】르세라핌", + "46·르세라핌", 85, 78, 15, @@ -50124,7 +50124,7 @@ ] ], [ - "【46기】바나나킥", + "46·바나나킥", 15, 71, 93, @@ -50146,7 +50146,7 @@ ] ], [ - "【46기】베라", + "46·베라", 74, 15, 91, @@ -50172,7 +50172,7 @@ ] ], [ - "【46기】아샤", + "46·아샤", 77, 15, 86, @@ -50194,7 +50194,7 @@ ] ], [ - "【46기】삼국지", + "46·삼국지", 74, 15, 89, @@ -50218,7 +50218,7 @@ ] ], [ - "【46기】tqtt", + "46·tqtt", 83, 83, 15, @@ -50241,7 +50241,7 @@ ] ], [ - "【46기】묵언수행", + "46·묵언수행", 72, 16, 91, @@ -50263,7 +50263,7 @@ ] ], [ - "【46기】아무고토몰라요", + "46·아무고토몰라요", 79, 85, 15, @@ -50285,7 +50285,7 @@ ] ], [ - "【46기】민트토끼", + "46·민트토끼", 15, 75, 90, @@ -50308,7 +50308,7 @@ ] ], [ - "【46기】미친과학", + "46·미친과학", 87, 76, 17, @@ -50330,7 +50330,7 @@ ] ], [ - "【46기】엘리시아", + "46·엘리시아", 76, 88, 15, @@ -50352,7 +50352,7 @@ ] ], [ - "【46기】루나3.0", + "46·루나3.0", 78, 15, 86, @@ -50376,7 +50376,7 @@ ] ], [ - "【46기】감소영", + "46·감소영", 78, 85, 15, @@ -50399,7 +50399,7 @@ ] ], [ - "【46기】바이돌", + "46·바이돌", 86, 16, 76, @@ -50421,7 +50421,7 @@ ] ], [ - "【46기】꿀벌", + "46·꿀벌", 76, 85, 15, @@ -50443,7 +50443,7 @@ ] ], [ - "【46기】체비", + "46·체비", 78, 86, 15, @@ -50465,7 +50465,7 @@ ] ], [ - "【46기】허허허", + "46·허허허", 15, 71, 92, @@ -50487,7 +50487,7 @@ ] ], [ - "【46기】월급오른페이트", + "46·월급오른페이트", 15, 90, 73, @@ -50509,7 +50509,7 @@ ] ], [ - "【47기】민트토끼", + "47·민트토끼", 17, 75, 94, @@ -50532,7 +50532,7 @@ ] ], [ - "【47기】우영우", + "47·우영우", 76, 16, 96, @@ -50566,7 +50566,7 @@ ] ], [ - "【47기】김나영", + "47·김나영", 80, 93, 15, @@ -50589,7 +50589,7 @@ ] ], [ - "【47기】카레니나", + "47·카레니나", 76, 98, 15, @@ -50612,7 +50612,7 @@ ] ], [ - "【47기】마요이", + "47·마요이", 77, 15, 94, @@ -50634,7 +50634,7 @@ ] ], [ - "【47기】독구독", + "47·독구독", 99, 72, 15, @@ -50662,7 +50662,7 @@ ] ], [ - "【47기】천사소녀네티", + "47·천사소녀네티", 15, 82, 90, @@ -50686,7 +50686,7 @@ ] ], [ - "【47기】NK", + "47·NK", 87, 84, 15, @@ -50710,7 +50710,7 @@ ] ], [ - "【47기】역삼역", + "47·역삼역", 15, 73, 97, @@ -50732,7 +50732,7 @@ ] ], [ - "【47기】슬라임♡", + "47·슬라임♡", 94, 75, 16, @@ -50754,7 +50754,7 @@ ] ], [ - "【47기】이준호", + "47·이준호", 79, 94, 15, @@ -50784,7 +50784,7 @@ ] ], [ - "【47기】갈근", + "47·갈근", 95, 76, 15, @@ -50810,7 +50810,7 @@ ] ], [ - "【47기】시나모롤", + "47·시나모롤", 91, 79, 15, @@ -50833,7 +50833,7 @@ ] ], [ - "【47기】박일아", + "47·박일아", 96, 75, 15, @@ -50856,7 +50856,7 @@ ] ], [ - "【47기】마이멜로디", + "47·마이멜로디", 96, 76, 15, @@ -50880,7 +50880,7 @@ ] ], [ - "【47기】더 월드", + "47·더 월드", 78, 93, 15, @@ -50902,7 +50902,7 @@ ] ], [ - "【47기】수장", + "47·수장", 15, 82, 86, @@ -50924,7 +50924,7 @@ ] ], [ - "【47기】스피드왜건", + "47·스피드왜건", 84, 84, 16, @@ -50946,7 +50946,7 @@ ] ], [ - "【47기】털게", + "47·털게", 91, 80, 15, @@ -50978,7 +50978,7 @@ ] ], [ - "【47기】엔틱", + "47·엔틱", 76, 15, 95, @@ -51005,7 +51005,7 @@ ] ], [ - "【47기】방가방가햄토리", + "47·방가방가햄토리", 80, 91, 15, @@ -51027,7 +51027,7 @@ ] ], [ - "【47기】불패", + "47·불패", 81, 92, 15, @@ -51049,7 +51049,7 @@ ] ], [ - "【47기】DIO", + "47·DIO", 80, 92, 15, @@ -51071,7 +51071,7 @@ ] ], [ - "【47기】고래", + "47·고래", 15, 95, 76, @@ -51093,7 +51093,7 @@ ] ], [ - "【47기】제갈여포", + "47·제갈여포", 92, 15, 83, @@ -51122,7 +51122,7 @@ ] ], [ - "【47기】나이샤", + "47·나이샤", 78, 15, 93, @@ -51144,7 +51144,7 @@ ] ], [ - "【47기】나나", + "47·나나", 89, 81, 15, @@ -51168,7 +51168,7 @@ ] ], [ - "【47기】카이스트", + "47·카이스트", 80, 15, 93, @@ -51191,7 +51191,7 @@ ] ], [ - "【47기】네이미", + "47·네이미", 90, 79, 16, @@ -51213,7 +51213,7 @@ ] ], [ - "【47기】삼모처음하는강아지", + "47·삼모처음하는강아지", 91, 80, 15, @@ -51235,7 +51235,7 @@ ] ], [ - "【47기】자택경비담당자", + "47·자택경비담당자", 79, 90, 16, @@ -51257,7 +51257,7 @@ ] ], [ - "【47기】토마토", + "47·토마토", 77, 16, 92, @@ -51279,7 +51279,7 @@ ] ], [ - "【47기】십원", + "47·십원", 83, 90, 15, @@ -51305,7 +51305,7 @@ ] ], [ - "【47기】독미손", + "47·독미손", 76, 15, 98, @@ -51332,7 +51332,7 @@ ] ], [ - "【47기】네시", + "47·네시", 79, 15, 92, @@ -51355,7 +51355,7 @@ ] ], [ - "【47기】킹구", + "47·킹구", 78, 15, 92, @@ -51381,7 +51381,7 @@ ] ], [ - "【47기】9.9", + "47·9.9", 79, 93, 15, @@ -51405,7 +51405,7 @@ ] ], [ - "【47기】사스케", + "47·사스케", 80, 91, 15, @@ -51441,7 +51441,7 @@ ] ], [ - "【47기】SARS", + "47·SARS", 76, 15, 95, @@ -51463,7 +51463,7 @@ ] ], [ - "【47기】임사영", + "47·임사영", 79, 96, 15, @@ -51497,7 +51497,7 @@ ] ], [ - "【47기】평민킬러", + "47·평민킬러", 79, 95, 15, @@ -51526,7 +51526,7 @@ ] ], [ - "【47기】Hide_D", + "47·Hide_D", 79, 15, 93, @@ -51558,7 +51558,7 @@ ] ], [ - "【47기】나이스네짱!", + "47·나이스네짱!", 75, 97, 15, @@ -51580,7 +51580,7 @@ ] ], [ - "【47기】껄룩", + "47·껄룩", 15, 94, 75, @@ -51603,7 +51603,7 @@ ] ], [ - "【47기】호나", + "47·호나", 89, 79, 15, @@ -51626,7 +51626,7 @@ ] ], [ - "【47기】퍄퍄", + "47·퍄퍄", 74, 98, 15, @@ -51649,7 +51649,7 @@ ] ], [ - "【47기】와일드플라워", + "47·와일드플라워", 93, 77, 16, @@ -51673,7 +51673,7 @@ ] ], [ - "【47기】큐베", + "47·큐베", 77, 15, 95, @@ -51696,7 +51696,7 @@ ] ], [ - "【47기】군필22학번", + "47·군필22학번", 78, 15, 93, @@ -51722,7 +51722,7 @@ ] ], [ - "【47기】UK", + "47·UK", 85, 17, 84, @@ -51744,7 +51744,7 @@ ] ], [ - "【47기】불멍", + "47·불멍", 74, 19, 91, @@ -51769,7 +51769,7 @@ ] ], [ - "【47기】페르난도", + "47·페르난도", 78, 94, 15, @@ -51792,7 +51792,7 @@ ] ], [ - "【47기】화난나옹이", + "47·화난나옹이", 79, 93, 15, @@ -51816,7 +51816,7 @@ ] ], [ - "【47기】충치", + "47·충치", 77, 15, 96, @@ -51840,7 +51840,7 @@ ] ], [ - "【47기】외심장", + "47·외심장", 78, 16, 95, @@ -51863,7 +51863,7 @@ ] ], [ - "【47기】사쿠라미코", + "47·사쿠라미코", 76, 15, 95, @@ -51885,7 +51885,7 @@ ] ], [ - "【47기】ARES군주", + "47·ARES군주", 78, 94, 17, @@ -51917,7 +51917,7 @@ ] ], [ - "【47기】찍먹", + "47·찍먹", 79, 96, 15, @@ -51945,7 +51945,7 @@ ] ], [ - "【47기】칠리크랩", + "47·칠리크랩", 15, 80, 90, @@ -51967,7 +51967,7 @@ ] ], [ - "【47기】여행자", + "47·여행자", 80, 90, 16, @@ -51993,7 +51993,7 @@ ] ], [ - "【47기】아라타키 이토", + "47·아라타키 이토", 82, 88, 15, @@ -52016,7 +52016,7 @@ ] ], [ - "【47기】사하드", + "47·사하드", 73, 16, 97, @@ -52038,7 +52038,7 @@ ] ], [ - "【47기】소현", + "47·소현", 88, 81, 15, @@ -52063,7 +52063,7 @@ ] ], [ - "【47기】멍", + "47·멍", 15, 82, 89, @@ -52086,7 +52086,7 @@ ] ], [ - "【47기】rwitch", + "47·rwitch", 76, 15, 95, @@ -52108,7 +52108,7 @@ ] ], [ - "【47기】천괴금", + "47·천괴금", 75, 15, 93, @@ -52130,7 +52130,7 @@ ] ], [ - "【47기】호각", + "47·호각", 76, 93, 16, @@ -52153,7 +52153,7 @@ ] ], [ - "【47기】불끈불끈", + "47·불끈불끈", 15, 73, 98, @@ -52176,7 +52176,7 @@ ] ], [ - "【47기】무지무지", + "47·무지무지", 16, 71, 99, @@ -52198,7 +52198,7 @@ ] ], [ - "【47기】사슴곰", + "47·사슴곰", 16, 72, 98, @@ -52220,7 +52220,7 @@ ] ], [ - "【47기】우마무스메", + "47·우마무스메", 15, 83, 88, @@ -52243,7 +52243,7 @@ ] ], [ - "【47기】클레", + "47·클레", 90, 76, 15, @@ -52265,7 +52265,7 @@ ] ], [ - "【47기】페이트", + "47·페이트", 16, 92, 74, @@ -52287,7 +52287,7 @@ ] ], [ - "【47기】아무것도안하는사람", + "47·아무것도안하는사람", 76, 91, 15, @@ -52309,7 +52309,7 @@ ] ], [ - "【47기】Bianchi", + "47·Bianchi", 77, 86, 15, @@ -52331,7 +52331,7 @@ ] ], [ - "【47기】멜덩이멜랑멜랑", + "47·멜덩이멜랑멜랑", 15, 72, 86, @@ -52353,7 +52353,7 @@ ] ], [ - "【48기】셀레미", + "48·셀레미", 65, 13, 83, @@ -52377,7 +52377,7 @@ ] ], [ - "【48기】칼든피아노", + "48·칼든피아노", 66, 82, 13, @@ -52401,7 +52401,7 @@ ] ], [ - "【48기】세레나", + "48·세레나", 66, 83, 13, @@ -52424,7 +52424,7 @@ ] ], [ - "【48기】SARS", + "48·SARS", 84, 63, 13, @@ -52456,7 +52456,7 @@ ] ], [ - "【48기】임사영", + "48·임사영", 68, 13, 82, @@ -52487,7 +52487,7 @@ ] ], [ - "【48기】칼든멜로디", + "48·칼든멜로디", 66, 13, 82, @@ -52510,7 +52510,7 @@ ] ], [ - "【48기】마요이", + "48·마요이", 66, 14, 81, @@ -52534,7 +52534,7 @@ ] ], [ - "【48기】독구", + "48·독구", 67, 13, 82, @@ -52560,7 +52560,7 @@ ] ], [ - "【48기】무지무지막지", + "48·무지무지막지", 15, 64, 81, @@ -52582,7 +52582,7 @@ ] ], [ - "【48기】미래없는영끌족", + "48·미래없는영끌족", 86, 64, 13, @@ -52608,7 +52608,7 @@ ] ], [ - "【48기】네시", + "48·네시", 81, 92, 15, @@ -52630,7 +52630,7 @@ ] ], [ - "【48기】김나영", + "48·김나영", 68, 82, 13, @@ -52661,7 +52661,7 @@ ] ], [ - "【48기】Tiger VI", + "48·Tiger VI", 86, 63, 13, @@ -52688,7 +52688,7 @@ ] ], [ - "【48기】11", + "48·11", 78, 95, 15, @@ -52711,7 +52711,7 @@ ] ], [ - "【48기】륜", + "48·륜", 70, 13, 78, @@ -52733,7 +52733,7 @@ ] ], [ - "【48기】페르난도", + "48·페르난도", 72, 76, 13, @@ -52756,7 +52756,7 @@ ] ], [ - "【48기】카이스트", + "48·카이스트", 67, 13, 80, @@ -52783,7 +52783,7 @@ ] ], [ - "【48기】Hide_D", + "48·Hide_D", 66, 13, 84, @@ -52817,7 +52817,7 @@ ] ], [ - "【48기】바나낫", + "48·바나낫", 65, 83, 13, @@ -52842,7 +52842,7 @@ ] ], [ - "【48기】금강", + "48·금강", 67, 81, 13, @@ -52866,7 +52866,7 @@ ] ], [ - "【48기】독구리", + "48·독구리", 84, 64, 13, @@ -52895,7 +52895,7 @@ ] ], [ - "【48기】꽈배기", + "48·꽈배기", 65, 13, 82, @@ -52918,7 +52918,7 @@ ] ], [ - "【48기】이드", + "48·이드", 65, 13, 84, @@ -52940,7 +52940,7 @@ ] ], [ - "【48기】밧줄이 유일한 희망", + "48·밧줄이 유일한 희망", 13, 82, 65, @@ -52962,7 +52962,7 @@ ] ], [ - "【48기】갈근", + "48·갈근", 94, 79, 15, @@ -52989,7 +52989,7 @@ ] ], [ - "【48기】로비", + "48·로비", 77, 13, 70, @@ -53011,7 +53011,7 @@ ] ], [ - "【48기】독재자", + "48·독재자", 65, 13, 84, @@ -53035,7 +53035,7 @@ ] ], [ - "【48기】Hide_Doc", + "48·Hide_Doc", 77, 96, 16, @@ -53065,7 +53065,7 @@ ] ], [ - "【48기】예쁜꽃에는독이있다", + "48·예쁜꽃에는독이있다", 65, 13, 81, @@ -53089,7 +53089,7 @@ ] ], [ - "【48기】독단비", + "48·독단비", 86, 60, 13, @@ -53112,7 +53112,7 @@ ] ], [ - "【48기】악질", + "48·악질", 15, 79, 93, @@ -53134,7 +53134,7 @@ ] ], [ - "【48기】원영토끼", + "48·원영토끼", 14, 85, 62, @@ -53158,7 +53158,7 @@ ] ], [ - "【48기】돌아온너구리", + "48·돌아온너구리", 14, 74, 72, @@ -53181,7 +53181,7 @@ ] ], [ - "【48기】독극물", + "48·독극물", 65, 13, 85, @@ -53210,7 +53210,7 @@ ] ], [ - "【48기】호나", + "48·호나", 72, 13, 76, @@ -53234,7 +53234,7 @@ ] ], [ - "【48기】독워그레이몬", + "48·독워그레이몬", 87, 60, 14, @@ -53265,7 +53265,7 @@ ] ], [ - "【48기】6시내고향", + "48·6시내고향", 68, 79, 14, @@ -53294,7 +53294,7 @@ ] ], [ - "【48기】하루", + "48·하루", 68, 78, 14, @@ -53329,7 +53329,7 @@ ] ], [ - "【48기】내정내정", + "48·내정내정", 61, 14, 85, @@ -53351,7 +53351,7 @@ ] ], [ - "【48기】불곰", + "48·불곰", 13, 84, 62, @@ -53373,7 +53373,7 @@ ] ], [ - "【48기】웨이더", + "48·웨이더", 69, 77, 14, @@ -53396,7 +53396,7 @@ ] ], [ - "【48기】Hide의과거형HideD", + "48·Hide의과거형HideD", 69, 79, 14, @@ -53427,7 +53427,7 @@ ] ], [ - "【48기】나옹이", + "48·나옹이", 79, 16, 93, @@ -53452,7 +53452,7 @@ ] ], [ - "【48기】Air", + "48·Air", 66, 82, 13, @@ -53475,7 +53475,7 @@ ] ], [ - "【48기】대교", + "48·대교", 83, 62, 13, @@ -53499,7 +53499,7 @@ ] ], [ - "【48기】히메모리루나", + "48·히메모리루나", 68, 13, 81, @@ -53522,7 +53522,7 @@ ] ], [ - "【48기】유카", + "48·유카", 79, 92, 15, @@ -53544,7 +53544,7 @@ ] ], [ - "【48기】엔틱", + "48·엔틱", 64, 13, 83, @@ -53566,7 +53566,7 @@ ] ], [ - "【48기】벽돌도둑", + "48·벽돌도둑", 13, 85, 61, @@ -53589,7 +53589,7 @@ ] ], [ - "【48기】와일드플라워", + "48·와일드플라워", 65, 83, 13, @@ -53611,7 +53611,7 @@ ] ], [ - "【48기】소현", + "48·소현", 90, 81, 16, @@ -53637,7 +53637,7 @@ ] ], [ - "【48기】꿀벌군단", + "48·꿀벌군단", 67, 78, 13, @@ -53659,7 +53659,7 @@ ] ], [ - "【48기】카겜디져라", + "48·카겜디져라", 67, 81, 13, @@ -53682,7 +53682,7 @@ ] ], [ - "【48기】아키카와 야요이", + "48·아키카와 야요이", 68, 14, 79, @@ -53704,7 +53704,7 @@ ] ], [ - "【48기】껄룩", + "48·껄룩", 70, 76, 14, @@ -53726,7 +53726,7 @@ ] ], [ - "【48기】데스네이트", + "48·데스네이트", 66, 81, 13, @@ -53750,7 +53750,7 @@ ] ], [ - "【48기】료우기시키", + "48·료우기시키", 66, 14, 82, @@ -53772,7 +53772,7 @@ ] ], [ - "【48기】대한총대장그레이스", + "48·대한총대장그레이스", 69, 13, 79, @@ -53794,7 +53794,7 @@ ] ], [ - "【48기】우마무스메", + "48·우마무스메", 77, 14, 67, @@ -53816,7 +53816,7 @@ ] ], [ - "【48기】네코 아르크", + "48·네코 아르크", 81, 91, 15, @@ -53838,7 +53838,7 @@ ] ], [ - "【48기】바이돌", + "48·바이돌", 77, 13, 71, @@ -53860,7 +53860,7 @@ ] ], [ - "【48기】칼든사냥꾼", + "48·칼든사냥꾼", 13, 64, 82, @@ -53883,7 +53883,7 @@ ] ], [ - "【48기】물조멜로디", + "48·물조멜로디", 13, 65, 81, @@ -53906,7 +53906,7 @@ ] ], [ - "【48기】1004", + "48·1004", 65, 82, 13, @@ -53928,7 +53928,7 @@ ] ], [ - "【48기】운영자님글카업글좀", + "48·운영자님글카업글좀", 17, 63, 79, @@ -53950,7 +53950,7 @@ ] ], [ - "【48기】아기쿠로미", + "48·아기쿠로미", 67, 81, 13, @@ -53975,7 +53975,7 @@ ] ], [ - "【48기】내정만함", + "48·내정만함", 14, 79, 66, @@ -53997,7 +53997,7 @@ ] ], [ - "【48기】Evans", + "48·Evans", 66, 80, 13, @@ -54019,7 +54019,7 @@ ] ], [ - "【48기】잠복기간", + "48·잠복기간", 89, 15, 82, @@ -54042,7 +54042,7 @@ ] ], [ - "【48기】사하드", + "48·사하드", 65, 13, 81, @@ -54064,7 +54064,7 @@ ] ], [ - "【48기】만샘", + "48·만샘", 16, 60, 82, @@ -54088,7 +54088,7 @@ ] ], [ - "【48기】조선아", + "48·조선아", 79, 66, 15, @@ -54111,7 +54111,7 @@ ] ], [ - "【48기】메지로 맥퀸", + "48·메지로 맥퀸", 78, 93, 15, @@ -54133,7 +54133,7 @@ ] ], [ - "【48기】무지장", + "48·무지장", 15, 75, 87, @@ -54155,7 +54155,7 @@ ] ], [ - "【49기】부관", + "49·부관", 77, 94, 15, @@ -54184,7 +54184,7 @@ ] ], [ - "【49기】셀레미", + "49·셀레미", 73, 15, 96, @@ -54212,7 +54212,7 @@ ] ], [ - "【49기】갈근", + "49·갈근", 93, 73, 15, @@ -54237,7 +54237,7 @@ ] ], [ - "【49기】자", + "49·자", 74, 15, 94, @@ -54260,7 +54260,7 @@ ] ], [ - "【49기】우마무스메", + "49·우마무스메", 77, 90, 16, @@ -54283,7 +54283,7 @@ ] ], [ - "【49기】마요이", + "49·마요이", 73, 15, 95, @@ -54305,7 +54305,7 @@ ] ], [ - "【49기】쿠라마", + "49·쿠라마", 76, 15, 89, @@ -54328,7 +54328,7 @@ ] ], [ - "【49기】스누피", + "49·스누피", 97, 71, 15, @@ -54354,7 +54354,7 @@ ] ], [ - "【49기】강유", + "49·강유", 80, 16, 89, @@ -54378,7 +54378,7 @@ ] ], [ - "【49기】SARS", + "49·SARS", 89, 78, 15, @@ -54404,7 +54404,7 @@ ] ], [ - "【49기】장원영", + "49·장원영", 98, 70, 15, @@ -54436,7 +54436,7 @@ ] ], [ - "【49기】만리향", + "49·만리향", 15, 93, 74, @@ -54461,7 +54461,7 @@ ] ], [ - "【49기】곡", + "49·곡", 75, 95, 15, @@ -54492,7 +54492,7 @@ ] ], [ - "【49기】제갈여포", + "49·제갈여포", 77, 15, 93, @@ -54514,7 +54514,7 @@ ] ], [ - "【49기】정기예금들어라", + "49·정기예금들어라", 76, 16, 90, @@ -54536,7 +54536,7 @@ ] ], [ - "【49기】이드", + "49·이드", 73, 93, 16, @@ -54559,7 +54559,7 @@ ] ], [ - "【49기】카이스트", + "49·카이스트", 76, 15, 90, @@ -54585,7 +54585,7 @@ ] ], [ - "【49기】엄마슈퍼", + "49·엄마슈퍼", 77, 93, 15, @@ -54618,7 +54618,7 @@ ] ], [ - "【49기】민트토끼", + "49·민트토끼", 75, 93, 15, @@ -54647,7 +54647,7 @@ ] ], [ - "【49기】박일아", + "49·박일아", 78, 15, 91, @@ -54672,7 +54672,7 @@ ] ], [ - "【49기】독", + "49·독", 97, 70, 15, @@ -54701,7 +54701,7 @@ ] ], [ - "【49기】리플리", + "49·리플리", 77, 16, 91, @@ -54723,7 +54723,7 @@ ] ], [ - "【49기】와일드플라워", + "49·와일드플라워", 96, 72, 15, @@ -54747,7 +54747,7 @@ ] ], [ - "【49기】군필22학번", + "49·군필22학번", 76, 16, 92, @@ -54769,7 +54769,7 @@ ] ], [ - "【49기】유기의길", + "49·유기의길", 77, 89, 16, @@ -54793,7 +54793,7 @@ ] ], [ - "【49기】오의난무위소", + "49·오의난무위소", 90, 76, 15, @@ -54816,7 +54816,7 @@ ] ], [ - "【49기】12", + "49·12", 78, 89, 15, @@ -54848,7 +54848,7 @@ ] ], [ - "【49기】다람쥐헌터", + "49·다람쥐헌터", 89, 15, 78, @@ -54872,7 +54872,7 @@ ] ], [ - "【49기】앤젤라", + "49·앤젤라", 75, 15, 93, @@ -54895,7 +54895,7 @@ ] ], [ - "【49기】응애", + "49·응애", 90, 77, 15, @@ -54918,7 +54918,7 @@ ] ], [ - "【49기】바이돌", + "49·바이돌", 84, 15, 83, @@ -54941,7 +54941,7 @@ ] ], [ - "【49기】가을?", + "49·가을?", 98, 70, 15, @@ -54967,7 +54967,7 @@ ] ], [ - "【49기】앙투아네트", + "49·앙투아네트", 74, 15, 95, @@ -54990,7 +54990,7 @@ ] ], [ - "【49기】대교", + "49·대교", 89, 15, 79, @@ -55014,7 +55014,7 @@ ] ], [ - "【49기】잘거야", + "49·잘거야", 76, 89, 15, @@ -55039,7 +55039,7 @@ ] ], [ - "【49기】피", + "49·피", 76, 90, 15, @@ -55062,7 +55062,7 @@ ] ], [ - "【49기】평민킬러", + "49·평민킬러", 94, 76, 15, @@ -55094,7 +55094,7 @@ ] ], [ - "【49기】예초기", + "49·예초기", 74, 92, 15, @@ -55117,7 +55117,7 @@ ] ], [ - "【49기】뭘봐", + "49·뭘봐", 88, 78, 16, @@ -55141,7 +55141,7 @@ ] ], [ - "【49기】관부", + "49·관부", 77, 15, 90, @@ -55165,7 +55165,7 @@ ] ], [ - "【49기】네시", + "49·네시", 78, 15, 90, @@ -55188,7 +55188,7 @@ ] ], [ - "【49기】마왕", + "49·마왕", 76, 15, 90, @@ -55212,7 +55212,7 @@ ] ], [ - "【49기】사스케", + "49·사스케", 75, 15, 93, @@ -55241,7 +55241,7 @@ ] ], [ - "【49기】환선", + "49·환선", 78, 89, 15, @@ -55266,7 +55266,7 @@ ] ], [ - "【49기】Hide_D", + "49·Hide_D", 77, 16, 90, @@ -55290,7 +55290,7 @@ ] ], [ - "【49기】마작왕페이트", + "49·마작왕페이트", 94, 74, 15, @@ -55320,7 +55320,7 @@ ] ], [ - "【49기】나옹이", + "49·나옹이", 77, 89, 15, @@ -55343,7 +55343,7 @@ ] ], [ - "【49기】아싸", + "49·아싸", 76, 16, 91, @@ -55368,7 +55368,7 @@ ] ], [ - "【49기】독여시", + "49·독여시", 77, 89, 16, @@ -55391,7 +55391,7 @@ ] ], [ - "【49기】평민힐러", + "49·평민힐러", 15, 73, 95, @@ -55414,7 +55414,7 @@ ] ], [ - "【49기】소현", + "49·소현", 89, 79, 16, @@ -55439,7 +55439,7 @@ ] ], [ - "【49기】료우기시키", + "49·료우기시키", 78, 15, 90, @@ -55461,7 +55461,7 @@ ] ], [ - "【49기】태홍", + "49·태홍", 75, 92, 15, @@ -55484,7 +55484,7 @@ ] ], [ - "【49기】페르난도", + "49·페르난도", 79, 87, 15, @@ -55509,7 +55509,7 @@ ] ], [ - "【49기】골든치즈렐라와퍼", + "49·골든치즈렐라와퍼", 89, 78, 15, @@ -55536,7 +55536,7 @@ ] ], [ - "【49기】Bianchi", + "49·Bianchi", 79, 90, 15, @@ -55558,7 +55558,7 @@ ] ], [ - "【49기】くま", + "49·くま", 77, 16, 91, @@ -55581,7 +55581,7 @@ ] ], [ - "【49기】개미호랑이", + "49·개미호랑이", 76, 15, 92, @@ -55603,7 +55603,7 @@ ] ], [ - "【49기】반역의루돌프", + "49·반역의루돌프", 75, 15, 91, @@ -55625,7 +55625,7 @@ ] ], [ - "【49기】구경꾼", + "49·구경꾼", 15, 87, 78, @@ -55647,7 +55647,7 @@ ] ], [ - "【49기】POCARI.", + "49·POCARI.", 74, 15, 93, @@ -55670,7 +55670,7 @@ ] ], [ - "【49기】네이미", + "49·네이미", 89, 78, 15, @@ -55692,7 +55692,7 @@ ] ], [ - "【49기】호시마치스이세이", + "49·호시마치스이세이", 75, 15, 92, @@ -55716,7 +55716,7 @@ ] ], [ - "【49기】돌아온너구리", + "49·돌아온너구리", 93, 73, 16, @@ -55738,7 +55738,7 @@ ] ], [ - "【49기】낙지꿈", + "49·낙지꿈", 73, 17, 91, @@ -55760,7 +55760,7 @@ ] ], [ - "【49기】신", + "49·신", 90, 15, 77, @@ -55783,7 +55783,7 @@ ] ], [ - "【49기】게을로트레이너", + "49·게을로트레이너", 15, 73, 92, @@ -55805,7 +55805,7 @@ ] ], [ - "【49기】앵벌스의결혼식", + "49·앵벌스의결혼식", 15, 85, 75, @@ -55827,7 +55827,7 @@ ] ], [ - "【51기】3성구", + "51·3성구", 90, 79, 15, @@ -55862,7 +55862,7 @@ ] ], [ - "【51기】자유", + "51·자유", 78, 91, 15, @@ -55892,7 +55892,7 @@ ] ], [ - "【51기】문피아", + "51·문피아", 79, 15, 90, @@ -55914,7 +55914,7 @@ ] ], [ - "【51기】밍나뇽", + "51·밍나뇽", 74, 95, 15, @@ -55940,7 +55940,7 @@ ] ], [ - "【51기】장만월", + "51·장만월", 74, 16, 94, @@ -55962,7 +55962,7 @@ ] ], [ - "【51기】1성구", + "51·1성구", 16, 70, 98, @@ -55986,7 +55986,7 @@ ] ], [ - "【51기】그린치", + "51·그린치", 98, 74, 15, @@ -56016,7 +56016,7 @@ ] ], [ - "【51기】가자미", + "51·가자미", 85, 83, 16, @@ -56039,7 +56039,7 @@ ] ], [ - "【51기】겨울엔 군고구마", + "51·겨울엔 군고구마", 94, 76, 15, @@ -56065,7 +56065,7 @@ ] ], [ - "【51기】0성구", + "51·0성구", 76, 15, 92, @@ -56087,7 +56087,7 @@ ] ], [ - "【51기】독황상제", + "51·독황상제", 78, 16, 90, @@ -56114,7 +56114,7 @@ ] ], [ - "【51기】소용돌이", + "51·소용돌이", 86, 81, 15, @@ -56137,7 +56137,7 @@ ] ], [ - "【51기】퍄퍄", + "51·퍄퍄", 93, 75, 16, @@ -56161,7 +56161,7 @@ ] ], [ - "【51기】카류", + "51·카류", 76, 92, 16, @@ -56184,7 +56184,7 @@ ] ], [ - "【51기】유카", + "51·유카", 76, 16, 92, @@ -56207,7 +56207,7 @@ ] ], [ - "【51기】tqtt", + "51·tqtt", 78, 15, 92, @@ -56229,7 +56229,7 @@ ] ], [ - "【51기】くま", + "51·くま", 78, 15, 91, @@ -56253,7 +56253,7 @@ ] ], [ - "【51기】멍멍", + "51·멍멍", 15, 91, 78, @@ -56277,7 +56277,7 @@ ] ], [ - "【51기】바이돌", + "51·바이돌", 76, 15, 93, @@ -56299,7 +56299,7 @@ ] ], [ - "【51기】월성대군", + "51·월성대군", 77, 91, 16, @@ -56322,7 +56322,7 @@ ] ], [ - "【51기】후랴", + "51·후랴", 74, 15, 93, @@ -56344,7 +56344,7 @@ ] ], [ - "【51기】와일드플라워", + "51·와일드플라워", 98, 70, 15, @@ -56368,7 +56368,7 @@ ] ], [ - "【51기】독황", + "51·독황", 96, 71, 15, @@ -56400,7 +56400,7 @@ ] ], [ - "【51기】강유", + "51·강유", 75, 95, 15, @@ -56433,7 +56433,7 @@ ] ], [ - "【51기】NK", + "51·NK", 74, 15, 95, @@ -56460,7 +56460,7 @@ ] ], [ - "【51기】월향", + "51·월향", 73, 15, 94, @@ -56490,7 +56490,7 @@ ] ], [ - "【51기】7성구", + "51·7성구", 100, 71, 15, @@ -56517,7 +56517,7 @@ ] ], [ - "【51기】호나", + "51·호나", 76, 90, 16, @@ -56540,7 +56540,7 @@ ] ], [ - "【51기】임사영", + "51·임사영", 74, 95, 15, @@ -56566,7 +56566,7 @@ ] ], [ - "【51기】그걸다먹냐~", + "51·그걸다먹냐~", 76, 91, 16, @@ -56595,7 +56595,7 @@ ] ], [ - "【51기】카와이세이야", + "51·카와이세이야", 91, 76, 15, @@ -56617,7 +56617,7 @@ ] ], [ - "【51기】삼모안식년", + "51·삼모안식년", 76, 91, 16, @@ -56640,7 +56640,7 @@ ] ], [ - "【51기】초승달", + "51·초승달", 75, 16, 94, @@ -56672,7 +56672,7 @@ ] ], [ - "【51기】SARS", + "51·SARS", 92, 76, 16, @@ -56701,7 +56701,7 @@ ] ], [ - "【51기】료우기시키", + "51·료우기시키", 75, 15, 94, @@ -56723,7 +56723,7 @@ ] ], [ - "【51기】대교", + "51·대교", 87, 15, 82, @@ -56746,7 +56746,7 @@ ] ], [ - "【51기】간지밍이", + "51·간지밍이", 77, 15, 92, @@ -56771,7 +56771,7 @@ ] ], [ - "【51기】사스케", + "51·사스케", 75, 15, 94, @@ -56798,7 +56798,7 @@ ] ], [ - "【51기】강有", + "51·강有", 77, 15, 93, @@ -56820,7 +56820,7 @@ ] ], [ - "【51기】4성구", + "51·4성구", 76, 15, 92, @@ -56843,7 +56843,7 @@ ] ], [ - "【51기】구찬성", + "51·구찬성", 76, 90, 15, @@ -56866,7 +56866,7 @@ ] ], [ - "【51기】쇼쿠호미사키", + "51·쇼쿠호미사키", 79, 89, 15, @@ -56889,7 +56889,7 @@ ] ], [ - "【51기】진도준", + "51·진도준", 98, 70, 15, @@ -56916,7 +56916,7 @@ ] ], [ - "【51기】장수명", + "51·장수명", 13, 68, 75, @@ -56939,7 +56939,7 @@ ] ], [ - "【51기】100", + "51·100", 85, 83, 16, @@ -56963,7 +56963,7 @@ ] ], [ - "【51기】파이", + "51·파이", 79, 87, 15, @@ -56985,7 +56985,7 @@ ] ], [ - "【51기】21호", + "51·21호", 92, 77, 15, @@ -57008,7 +57008,7 @@ ] ], [ - "【51기】독구", + "51·독구", 67, 14, 77, @@ -57040,7 +57040,7 @@ ] ], [ - "【51기】초선", + "51·초선", 77, 15, 90, @@ -57062,7 +57062,7 @@ ] ], [ - "【51기】풀문", + "51·풀문", 73, 15, 96, @@ -57085,7 +57085,7 @@ ] ], [ - "【51기】이누가미코로네", + "51·이누가미코로네", 78, 15, 92, @@ -57108,7 +57108,7 @@ ] ], [ - "【51기】산책중", + "51·산책중", 77, 16, 91, @@ -57130,7 +57130,7 @@ ] ], [ - "【51기】리안", + "51·리안", 81, 87, 15, @@ -57153,7 +57153,7 @@ ] ], [ - "【51기】마법소년", + "51·마법소년", 86, 83, 15, @@ -57180,7 +57180,7 @@ ] ], [ - "【51기】키리코", + "51·키리코", 76, 17, 91, @@ -57202,7 +57202,7 @@ ] ], [ - "【51기】블랙어니언와퍼", + "51·블랙어니언와퍼", 96, 75, 15, @@ -57229,7 +57229,7 @@ ] ], [ - "【51기】2성구", + "51·2성구", 16, 92, 74, @@ -57252,7 +57252,7 @@ ] ], [ - "【51기】야근왕", + "51·야근왕", 92, 75, 16, @@ -57274,7 +57274,7 @@ ] ], [ - "【51기】템먹튀하야", + "51·템먹튀하야", 76, 15, 93, @@ -57297,7 +57297,7 @@ ] ], [ - "【51기】사하드", + "51·사하드", 80, 15, 90, @@ -57321,7 +57321,7 @@ ] ], [ - "【51기】독무장", + "51·독무장", 95, 71, 16, @@ -57345,7 +57345,7 @@ ] ], [ - "【51기】득점왕모라타", + "51·득점왕모라타", 81, 86, 15, @@ -57368,7 +57368,7 @@ ] ], [ - "【51기】돌아온너구리", + "51·돌아온너구리", 86, 83, 16, @@ -57392,7 +57392,7 @@ ] ], [ - "【51기】Bianchi", + "51·Bianchi", 77, 87, 15, @@ -57414,7 +57414,7 @@ ] ], [ - "【52기】골든리트리버", + "52·골든리트리버", 88, 60, 13, @@ -57446,7 +57446,7 @@ ] ], [ - "【52기】Mella", + "52·Mella", 76, 97, 15, @@ -57475,7 +57475,7 @@ ] ], [ - "【52기】륜", + "52·륜", 96, 15, 76, @@ -57497,7 +57497,7 @@ ] ], [ - "【52기】굴먹는고양이", + "52·굴먹는고양이", 93, 74, 15, @@ -57522,7 +57522,7 @@ ] ], [ - "【52기】Chuck", + "52·Chuck", 67, 78, 13, @@ -57549,7 +57549,7 @@ ] ], [ - "【52기】123", + "52·123", 95, 76, 15, @@ -57573,7 +57573,7 @@ ] ], [ - "【52기】민트토끼", + "52·민트토끼", 13, 65, 78, @@ -57597,7 +57597,7 @@ ] ], [ - "【52기】Hide_D", + "52·Hide_D", 79, 15, 89, @@ -57619,7 +57619,7 @@ ] ], [ - "【52기】키류 카즈마", + "52·키류 카즈마", 81, 15, 93, @@ -57645,7 +57645,7 @@ ] ], [ - "【52기】200", + "52·200", 95, 75, 15, @@ -57668,7 +57668,7 @@ ] ], [ - "【52기】초선", + "52·초선", 82, 15, 90, @@ -57690,7 +57690,7 @@ ] ], [ - "【52기】호나", + "52·호나", 92, 78, 15, @@ -57715,7 +57715,7 @@ ] ], [ - "【52기】바이돌", + "52·바이돌", 78, 15, 92, @@ -57738,7 +57738,7 @@ ] ], [ - "【52기】스크루지", + "52·스크루지", 77, 97, 15, @@ -57762,7 +57762,7 @@ ] ], [ - "【52기】무작위왕", + "52·무작위왕", 66, 13, 81, @@ -57784,7 +57784,7 @@ ] ], [ - "【52기】컴퓨터", + "52·컴퓨터", 92, 78, 15, @@ -57806,7 +57806,7 @@ ] ], [ - "【52기】갈근", + "52·갈근", 90, 81, 15, @@ -57831,7 +57831,7 @@ ] ], [ - "【52기】아냐", + "52·아냐", 77, 15, 94, @@ -57856,7 +57856,7 @@ ] ], [ - "【52기】감흥", + "52·감흥", 77, 15, 94, @@ -57883,7 +57883,7 @@ ] ], [ - "【52기】마요이", + "52·마요이", 66, 13, 82, @@ -57911,7 +57911,7 @@ ] ], [ - "【52기】임사영", + "52·임사영", 88, 64, 13, @@ -57946,7 +57946,7 @@ ] ], [ - "【52기】SARS", + "52·SARS", 80, 89, 16, @@ -57971,7 +57971,7 @@ ] ], [ - "【52기】쪼꼬미", + "52·쪼꼬미", 76, 15, 95, @@ -57994,7 +57994,7 @@ ] ], [ - "【52기】바르바로스", + "52·바르바로스", 15, 73, 99, @@ -58018,7 +58018,7 @@ ] ], [ - "【52기】카이스트", + "52·카이스트", 82, 15, 91, @@ -58042,7 +58042,7 @@ ] ], [ - "【52기】불패", + "52·불패", 80, 92, 15, @@ -58067,7 +58067,7 @@ ] ], [ - "【52기】제갈여포", + "52·제갈여포", 77, 15, 94, @@ -58090,7 +58090,7 @@ ] ], [ - "【52기】tqtt", + "52·tqtt", 79, 92, 16, @@ -58114,7 +58114,7 @@ ] ], [ - "【52기】시진핑핑이", + "52·시진핑핑이", 77, 92, 15, @@ -58137,7 +58137,7 @@ ] ], [ - "【52기】제갈초선", + "52·제갈초선", 76, 15, 95, @@ -58160,7 +58160,7 @@ ] ], [ - "【52기】로아온너구리", + "52·로아온너구리", 15, 71, 99, @@ -58183,7 +58183,7 @@ ] ], [ - "【52기】바나낫", + "52·바나낫", 78, 91, 16, @@ -58206,7 +58206,7 @@ ] ], [ - "【52기】그걸다먹냐~", + "52·그걸다먹냐~", 82, 92, 16, @@ -58235,7 +58235,7 @@ ] ], [ - "【52기】월향", + "52·월향", 69, 13, 79, @@ -58269,7 +58269,7 @@ ] ], [ - "【52기】독구", + "52·독구", 76, 15, 96, @@ -58303,7 +58303,7 @@ ] ], [ - "【52기】카류", + "52·카류", 95, 76, 15, @@ -58326,7 +58326,7 @@ ] ], [ - "【52기】정장이좋아", + "52·정장이좋아", 98, 74, 15, @@ -58349,7 +58349,7 @@ ] ], [ - "【52기】평민킬러", + "52·평민킬러", 76, 95, 15, @@ -58373,7 +58373,7 @@ ] ], [ - "【52기】23턴휴식예정", + "52·23턴휴식예정", 76, 95, 15, @@ -58396,7 +58396,7 @@ ] ], [ - "【52기】라스트댄스", + "52·라스트댄스", 77, 98, 15, @@ -58428,7 +58428,7 @@ ] ], [ - "【52기】구몬선생", + "52·구몬선생", 79, 91, 15, @@ -58450,7 +58450,7 @@ ] ], [ - "【52기】사스케", + "52·사스케", 80, 90, 15, @@ -58476,7 +58476,7 @@ ] ], [ - "【52기】크렌스", + "52·크렌스", 78, 91, 15, @@ -58499,7 +58499,7 @@ ] ], [ - "【52기】비상식량", + "52·비상식량", 15, 74, 96, @@ -58522,7 +58522,7 @@ ] ], [ - "【52기】올리비아", + "52·올리비아", 77, 15, 95, @@ -58549,7 +58549,7 @@ ] ], [ - "【52기】간지밍이", + "52·간지밍이", 77, 16, 91, @@ -58574,7 +58574,7 @@ ] ], [ - "【52기】파초선", + "52·파초선", 79, 92, 16, @@ -58602,7 +58602,7 @@ ] ], [ - "【52기】개미호랑이", + "52·개미호랑이", 75, 15, 95, @@ -58624,7 +58624,7 @@ ] ], [ - "【52기】라콘타", + "52·라콘타", 98, 72, 15, @@ -58647,7 +58647,7 @@ ] ], [ - "【52기】가후", + "52·가후", 81, 15, 90, @@ -58669,7 +58669,7 @@ ] ], [ - "【52기】장원영", + "52·장원영", 96, 71, 15, @@ -58695,7 +58695,7 @@ ] ], [ - "【52기】마왕", + "52·마왕", 80, 91, 16, @@ -58718,7 +58718,7 @@ ] ], [ - "【52기】온달", + "52·온달", 81, 16, 90, @@ -58748,7 +58748,7 @@ ] ], [ - "【52기】겨울홍차", + "52·겨울홍차", 15, 76, 92, @@ -58771,7 +58771,7 @@ ] ], [ - "【52기】료우기시키", + "52·료우기시키", 78, 15, 93, @@ -58793,7 +58793,7 @@ ] ], [ - "【52기】리안", + "52·리안", 78, 92, 15, @@ -58817,7 +58817,7 @@ ] ], [ - "【52기】슈퍼소닉", + "52·슈퍼소닉", 78, 15, 95, @@ -58840,7 +58840,7 @@ ] ], [ - "【52기】콘", + "52·콘", 90, 82, 16, @@ -58864,7 +58864,7 @@ ] ], [ - "【52기】아마자라시", + "52·아마자라시", 78, 91, 15, @@ -58886,7 +58886,7 @@ ] ], [ - "【52기】자축인묘", + "52·자축인묘", 95, 16, 74, @@ -58909,7 +58909,7 @@ ] ], [ - "【52기】야로나", + "52·야로나", 78, 91, 15, @@ -58931,7 +58931,7 @@ ] ], [ - "【52기】50040", + "52·50040", 88, 76, 15, @@ -58953,7 +58953,7 @@ ] ], [ - "【52기】くま", + "52·くま", 76, 16, 92, @@ -58975,7 +58975,7 @@ ] ], [ - "【52기】대교", + "52·대교", 95, 15, 74, @@ -58999,7 +58999,7 @@ ] ], [ - "【52기】껄룩", + "52·껄룩", 80, 90, 15, @@ -59021,7 +59021,7 @@ ] ], [ - "【52기】NK", + "52·NK", 16, 95, 74, @@ -59043,7 +59043,7 @@ ] ], [ - "【52기】독급함", + "52·독급함", 15, 74, 93, @@ -59066,7 +59066,7 @@ ] ], [ - "【52기】기", + "52·기", 16, 72, 91, @@ -59088,7 +59088,7 @@ ] ], [ - "【53기】사스케", + "53·사스케", 64, 84, 13, @@ -59125,7 +59125,7 @@ ] ], [ - "【53기】카류", + "53·카류", 104, 70, 15, @@ -59162,7 +59162,7 @@ ] ], [ - "【53기】평민킬러", + "53·평민킬러", 96, 81, 15, @@ -59196,7 +59196,7 @@ ] ], [ - "【53기】물냉면", + "53·물냉면", 93, 77, 15, @@ -59220,7 +59220,7 @@ ] ], [ - "【53기】크렌스", + "53·크렌스", 85, 60, 13, @@ -59248,7 +59248,7 @@ ] ], [ - "【53기】SARS", + "53·SARS", 69, 13, 78, @@ -59270,7 +59270,7 @@ ] ], [ - "【53기】뤼에르", + "53·뤼에르", 75, 96, 15, @@ -59295,7 +59295,7 @@ ] ], [ - "【53기】장원영", + "53·장원영", 100, 70, 15, @@ -59329,7 +59329,7 @@ ] ], [ - "【53기】복분자막걸리", + "53·복분자막걸리", 104, 70, 15, @@ -59365,7 +59365,7 @@ ] ], [ - "【53기】키리코", + "53·키리코", 64, 13, 82, @@ -59388,7 +59388,7 @@ ] ], [ - "【53기】와일드플라워", + "53·와일드플라워", 94, 74, 15, @@ -59411,7 +59411,7 @@ ] ], [ - "【53기】월향", + "53·월향", 91, 76, 18, @@ -59435,7 +59435,7 @@ ] ], [ - "【53기】렌스옹 근위병", + "53·렌스옹 근위병", 64, 82, 13, @@ -59462,7 +59462,7 @@ ] ], [ - "【53기】북오더", + "53·북오더", 93, 15, 77, @@ -59486,7 +59486,7 @@ ] ], [ - "【53기】정일품", + "53·정일품", 77, 89, 16, @@ -59509,7 +59509,7 @@ ] ], [ - "【53기】이서", + "53·이서", 73, 15, 97, @@ -59536,7 +59536,7 @@ ] ], [ - "【53기】에드몬드", + "53·에드몬드", 87, 83, 15, @@ -59559,7 +59559,7 @@ ] ], [ - "【53기】리안", + "53·리안", 89, 79, 16, @@ -59581,7 +59581,7 @@ ] ], [ - "【53기】라콘타", + "53·라콘타", 73, 97, 15, @@ -59603,7 +59603,7 @@ ] ], [ - "【53기】안유진", + "53·안유진", 74, 96, 15, @@ -59629,7 +59629,7 @@ ] ], [ - "【53기】나나미", + "53·나나미", 76, 94, 15, @@ -59652,7 +59652,7 @@ ] ], [ - "【53기】머털도사", + "53·머털도사", 97, 74, 15, @@ -59680,7 +59680,7 @@ ] ], [ - "【53기】5초만함", + "53·5초만함", 78, 15, 92, @@ -59702,7 +59702,7 @@ ] ], [ - "【53기】카이스트", + "53·카이스트", 78, 16, 92, @@ -59725,7 +59725,7 @@ ] ], [ - "【53기】김나영", + "53·김나영", 81, 91, 15, @@ -59750,7 +59750,7 @@ ] ], [ - "【53기】복숭아좋아", + "53·복숭아좋아", 64, 13, 82, @@ -59773,7 +59773,7 @@ ] ], [ - "【53기】네시", + "53·네시", 78, 92, 15, @@ -59799,7 +59799,7 @@ ] ], [ - "【53기】양념소갈비", + "53·양념소갈비", 74, 15, 96, @@ -59825,7 +59825,7 @@ ] ], [ - "【53기】득구", + "53·득구", 96, 73, 15, @@ -59847,7 +59847,7 @@ ] ], [ - "【53기】호나", + "53·호나", 79, 15, 92, @@ -59869,7 +59869,7 @@ ] ], [ - "【53기】200", + "53·200", 91, 80, 15, @@ -59895,7 +59895,7 @@ ] ], [ - "【53기】교수님", + "53·교수님", 78, 16, 93, @@ -59920,7 +59920,7 @@ ] ], [ - "【53기】박회장", + "53·박회장", 77, 91, 15, @@ -59943,7 +59943,7 @@ ] ], [ - "【53기】파이", + "53·파이", 78, 15, 91, @@ -59968,7 +59968,7 @@ ] ], [ - "【53기】발터모델", + "53·발터모델", 80, 92, 15, @@ -59994,7 +59994,7 @@ ] ], [ - "【53기】청하", + "53·청하", 15, 74, 95, @@ -60018,7 +60018,7 @@ ] ], [ - "【53기】개미호랑이", + "53·개미호랑이", 82, 15, 89, @@ -60042,7 +60042,7 @@ ] ], [ - "【53기】돼지갈비", + "53·돼지갈비", 19, 72, 91, @@ -60068,7 +60068,7 @@ ] ], [ - "【53기】NK", + "53·NK", 92, 78, 15, @@ -60094,7 +60094,7 @@ ] ], [ - "【53기】간지밍이", + "53·간지밍이", 74, 15, 96, @@ -60120,7 +60120,7 @@ ] ], [ - "【53기】독구", + "53·독구", 75, 15, 96, @@ -60146,7 +60146,7 @@ ] ], [ - "【53기】1초장", + "53·1초장", 13, 62, 82, @@ -60169,7 +60169,7 @@ ] ], [ - "【53기】하야마 우미", + "53·하야마 우미", 75, 15, 96, @@ -60195,7 +60195,7 @@ ] ], [ - "【53기】독구교3인자", + "53·독구교3인자", 96, 71, 16, @@ -60218,7 +60218,7 @@ ] ], [ - "【53기】무라사키시온", + "53·무라사키시온", 80, 15, 88, @@ -60240,7 +60240,7 @@ ] ], [ - "【53기】아이리 칸나", + "53·아이리 칸나", 79, 90, 15, @@ -60266,7 +60266,7 @@ ] ], [ - "【53기】임사영", + "53·임사영", 76, 95, 15, @@ -60290,7 +60290,7 @@ ] ], [ - "【53기】허니츄러스", + "53·허니츄러스", 96, 73, 15, @@ -60313,7 +60313,7 @@ ] ], [ - "【53기】경국지색소교", + "53·경국지색소교", 79, 90, 15, @@ -60336,7 +60336,7 @@ ] ], [ - "【53기】네이미", + "53·네이미", 89, 79, 15, @@ -60358,7 +60358,7 @@ ] ], [ - "【53기】동네 이장", + "53·동네 이장", 82, 63, 13, @@ -60381,7 +60381,7 @@ ] ], [ - "【53기】대교", + "53·대교", 93, 75, 15, @@ -60403,7 +60403,7 @@ ] ], [ - "【53기】무광", + "53·무광", 69, 13, 75, @@ -60425,7 +60425,7 @@ ] ], [ - "【53기】Chuck", + "53·Chuck", 76, 16, 93, @@ -60448,7 +60448,7 @@ ] ], [ - "【53기】삭턴사", + "53·삭턴사", 15, 73, 97, @@ -60470,7 +60470,7 @@ ] ], [ - "【53기】비상식량", + "53·비상식량", 90, 79, 15, @@ -60493,7 +60493,7 @@ ] ], [ - "【53기】23학번경영학도", + "53·23학번경영학도", 92, 75, 15, @@ -60515,7 +60515,7 @@ ] ], [ - "【53기】비빔냉면", + "53·비빔냉면", 75, 15, 93, @@ -60537,7 +60537,7 @@ ] ], [ - "【53기】외심장", + "53·외심장", 75, 16, 93, @@ -60559,7 +60559,7 @@ ] ], [ - "【53기】Bianchi", + "53·Bianchi", 65, 79, 14, @@ -60583,7 +60583,7 @@ ] ], [ - "【53기】국04", + "53·국04", 87, 81, 15, @@ -60605,7 +60605,7 @@ ] ], [ - "【53기】Samo", + "53·Samo", 79, 15, 87, @@ -60628,7 +60628,7 @@ ] ], [ - "【53기】건달", + "53·건달", 74, 88, 15, @@ -60653,7 +60653,7 @@ ] ], [ - "【54기】카이스트", + "54·카이스트", 78, 15, 90, @@ -60679,7 +60679,7 @@ ] ], [ - "【54기】여포", + "54·여포", 78, 15, 88, @@ -60702,7 +60702,7 @@ ] ], [ - "【54기】버터링딥초코", + "54·버터링딥초코", 97, 72, 15, @@ -60732,7 +60732,7 @@ ] ], [ - "【54기】덕구", + "54·덕구", 79, 93, 15, @@ -60764,7 +60764,7 @@ ] ], [ - "【54기】Chuck", + "54·Chuck", 76, 91, 16, @@ -60788,7 +60788,7 @@ ] ], [ - "【54기】불패", + "54·불패", 75, 15, 92, @@ -60816,7 +60816,7 @@ ] ], [ - "【54기】재선충", + "54·재선충", 76, 92, 15, @@ -60850,7 +60850,7 @@ ] ], [ - "【54기】토오노 아키하", + "54·토오노 아키하", 77, 15, 91, @@ -60872,7 +60872,7 @@ ] ], [ - "【54기】ㅊㄹㅊㄹ", + "54·ㅊㄹㅊㄹ", 78, 90, 15, @@ -60896,7 +60896,7 @@ ] ], [ - "【54기】Mayday", + "54·Mayday", 95, 73, 15, @@ -60919,7 +60919,7 @@ ] ], [ - "【54기】내정장", + "54·내정장", 76, 15, 91, @@ -60941,7 +60941,7 @@ ] ], [ - "【54기】김채원", + "54·김채원", 77, 89, 15, @@ -60965,7 +60965,7 @@ ] ], [ - "【54기】국04", + "54·국04", 87, 15, 77, @@ -60989,7 +60989,7 @@ ] ], [ - "【54기】엔틱", + "54·엔틱", 77, 15, 90, @@ -61018,7 +61018,7 @@ ] ], [ - "【54기】임사영", + "54·임사영", 76, 15, 91, @@ -61040,7 +61040,7 @@ ] ], [ - "【54기】Bianchi", + "54·Bianchi", 74, 91, 15, @@ -61063,7 +61063,7 @@ ] ], [ - "【54기】헬창법사", + "54·헬창법사", 94, 15, 74, @@ -61086,7 +61086,7 @@ ] ], [ - "【54기】바나낫", + "54·바나낫", 79, 88, 16, @@ -61111,7 +61111,7 @@ ] ], [ - "【54기】나나미", + "54·나나미", 94, 75, 15, @@ -61136,7 +61136,7 @@ ] ], [ - "【54기】초선", + "54·초선", 76, 16, 89, @@ -61158,7 +61158,7 @@ ] ], [ - "【54기】SARS", + "54·SARS", 77, 89, 16, @@ -61183,7 +61183,7 @@ ] ], [ - "【54기】동물", + "54·동물", 75, 16, 90, @@ -61217,7 +61217,7 @@ ] ], [ - "【54기】환승역", + "54·환승역", 93, 74, 15, @@ -61240,7 +61240,7 @@ ] ], [ - "【54기】대교", + "54·대교", 93, 74, 15, @@ -61264,7 +61264,7 @@ ] ], [ - "【54기】네이미", + "54·네이미", 89, 75, 16, @@ -61287,7 +61287,7 @@ ] ], [ - "【54기】에드몬드", + "54·에드몬드", 83, 15, 84, @@ -61310,7 +61310,7 @@ ] ], [ - "【54기】제갈여포", + "54·제갈여포", 75, 15, 94, @@ -61339,7 +61339,7 @@ ] ], [ - "【54기】비상식량", + "54·비상식량", 89, 78, 15, @@ -61371,7 +61371,7 @@ ] ], [ - "【54기】북오더", + "54·북오더", 15, 72, 92, @@ -61393,7 +61393,7 @@ ] ], [ - "【54기】셀레미", + "54·셀레미", 75, 16, 91, @@ -61426,7 +61426,7 @@ ] ], [ - "【54기】월향", + "54·월향", 76, 15, 91, @@ -61450,7 +61450,7 @@ ] ], [ - "【54기】홍Kill동", + "54·홍Kill동", 90, 74, 15, @@ -61480,7 +61480,7 @@ ] ], [ - "【54기】평민킬러", + "54·평민킬러", 97, 70, 15, @@ -61515,7 +61515,7 @@ ] ], [ - "【54기】유카", + "54·유카", 76, 90, 15, @@ -61540,7 +61540,7 @@ ] ], [ - "【54기】독구", + "54·독구", 75, 15, 93, @@ -61574,7 +61574,7 @@ ] ], [ - "【54기】자동태수", + "54·자동태수", 76, 87, 16, @@ -61597,7 +61597,7 @@ ] ], [ - "【54기】Aeng572", + "54·Aeng572", 15, 93, 71, @@ -61620,7 +61620,7 @@ ] ], [ - "【54기】300", + "54·300", 90, 78, 15, @@ -61645,7 +61645,7 @@ ] ], [ - "【54기】간지밍이", + "54·간지밍이", 91, 15, 73, @@ -61671,7 +61671,7 @@ ] ], [ - "【54기】사스케", + "54·사스케", 18, 93, 70, @@ -61702,7 +61702,7 @@ ] ], [ - "【54기】라콘타", + "54·라콘타", 75, 15, 93, @@ -61724,7 +61724,7 @@ ] ], [ - "【54기】모라스", + "54·모라스", 77, 16, 91, @@ -61749,7 +61749,7 @@ ] ], [ - "【54기】tqtt", + "54·tqtt", 86, 79, 15, @@ -61771,7 +61771,7 @@ ] ], [ - "【54기】무지파이", + "54·무지파이", 15, 77, 89, @@ -61795,7 +61795,7 @@ ] ], [ - "【54기】키리코", + "54·키리코", 78, 88, 15, @@ -61819,7 +61819,7 @@ ] ], [ - "【54기】고기방패", + "54·고기방패", 89, 76, 15, @@ -61842,7 +61842,7 @@ ] ], [ - "【54기】panpenpan", + "54·panpenpan", 76, 15, 91, @@ -61864,7 +61864,7 @@ ] ], [ - "【54기】개미호랑이", + "54·개미호랑이", 78, 15, 88, @@ -61887,7 +61887,7 @@ ] ], [ - "【54기】くま", + "54·くま", 74, 16, 90, @@ -61910,7 +61910,7 @@ ] ], [ - "【54기】아바타라", + "54·아바타라", 74, 15, 92, @@ -61932,7 +61932,7 @@ ] ], [ - "【54기】돌아온너구리", + "54·돌아온너구리", 75, 16, 90, @@ -61955,7 +61955,7 @@ ] ], [ - "【54기】호나", + "54·호나", 91, 16, 75, @@ -61981,7 +61981,7 @@ ] ], [ - "【54기】影:", + "54·影:", 15, 75, 92, @@ -62003,7 +62003,7 @@ ] ], [ - "【54기】2초장프레기", + "54·2초장프레기", 15, 76, 90, @@ -62026,7 +62026,7 @@ ] ], [ - "【54기】민트토끼", + "54·민트토끼", 15, 70, 95, @@ -62049,7 +62049,7 @@ ] ], [ - "【54기】정일품", + "54·정일품", 75, 16, 87, @@ -62071,7 +62071,7 @@ ] ], [ - "【54기】경국지색소교", + "54·경국지색소교", 75, 89, 15, @@ -62094,7 +62094,7 @@ ] ], [ - "【54기】이노리", + "54·이노리", 15, 79, 85, @@ -62116,7 +62116,7 @@ ] ], [ - "【54기】본드래곤", + "54·본드래곤", 75, 86, 15, @@ -62138,7 +62138,7 @@ ] ], [ - "【54기】서희", + "54·서희", 73, 84, 15, @@ -62161,7 +62161,7 @@ ] ], [ - "【56기】카이스트", + "56·카이스트", 78, 15, 93, @@ -62186,7 +62186,7 @@ ] ], [ - "【56기】척", + "56·척", 76, 91, 15, @@ -62212,7 +62212,7 @@ ] ], [ - "【56기】바나낫", + "56·바나낫", 80, 93, 15, @@ -62248,7 +62248,7 @@ ] ], [ - "【56기】멜리오다스", + "56·멜리오다스", 99, 73, 15, @@ -62278,7 +62278,7 @@ ] ], [ - "【56기】맥날스", + "56·맥날스", 75, 94, 15, @@ -62305,7 +62305,7 @@ ] ], [ - "【56기】구구단", + "56·구구단", 77, 15, 94, @@ -62329,7 +62329,7 @@ ] ], [ - "【56기】사스케", + "56·사스케", 99, 70, 15, @@ -62356,7 +62356,7 @@ ] ], [ - "【56기】경국지색소교", + "56·경국지색소교", 16, 76, 93, @@ -62379,7 +62379,7 @@ ] ], [ - "【56기】드래곤본", + "56·드래곤본", 69, 88, 27, @@ -62403,7 +62403,7 @@ ] ], [ - "【56기】Mbappe", + "56·Mbappe", 76, 15, 92, @@ -62425,7 +62425,7 @@ ] ], [ - "【56기】서희", + "56·서희", 88, 81, 15, @@ -62448,7 +62448,7 @@ ] ], [ - "【56기】조달요이2트", + "56·조달요이2트", 16, 79, 89, @@ -62470,7 +62470,7 @@ ] ], [ - "【56기】tqtt", + "56·tqtt", 91, 77, 16, @@ -62494,7 +62494,7 @@ ] ], [ - "【56기】장원영", + "56·장원영", 98, 71, 15, @@ -62516,7 +62516,7 @@ ] ], [ - "【56기】예니체리", + "56·예니체리", 79, 15, 89, @@ -62538,7 +62538,7 @@ ] ], [ - "【56기】호나", + "56·호나", 96, 74, 15, @@ -62564,7 +62564,7 @@ ] ], [ - "【56기】이서", + "56·이서", 75, 15, 94, @@ -62587,7 +62587,7 @@ ] ], [ - "【56기】와일드플라워", + "56·와일드플라워", 76, 15, 93, @@ -62609,7 +62609,7 @@ ] ], [ - "【56기】Hide_D", + "56·Hide_D", 76, 15, 93, @@ -62631,7 +62631,7 @@ ] ], [ - "【56기】SARS", + "56·SARS", 93, 16, 78, @@ -62661,7 +62661,7 @@ ] ], [ - "【56기】정일품", + "56·정일품", 81, 86, 16, @@ -62684,7 +62684,7 @@ ] ], [ - "【56기】신의배팅", + "56·신의배팅", 79, 92, 15, @@ -62709,7 +62709,7 @@ ] ], [ - "【56기】AI", + "56·AI", 79, 90, 15, @@ -62731,7 +62731,7 @@ ] ], [ - "【56기】독구는 승리한다", + "56·독구는 승리한다", 15, 72, 96, @@ -62755,7 +62755,7 @@ ] ], [ - "【56기】강유", + "56·강유", 75, 16, 93, @@ -62777,7 +62777,7 @@ ] ], [ - "【56기】카레", + "56·카레", 93, 75, 15, @@ -62800,7 +62800,7 @@ ] ], [ - "【56기】유카", + "56·유카", 15, 75, 94, @@ -62823,7 +62823,7 @@ ] ], [ - "【56기】돌아온너구리", + "56·돌아온너구리", 79, 15, 93, @@ -62846,7 +62846,7 @@ ] ], [ - "【56기】520", + "56·520", 98, 73, 15, @@ -62878,7 +62878,7 @@ ] ], [ - "【56기】윤보미", + "56·윤보미", 97, 74, 15, @@ -62910,7 +62910,7 @@ ] ], [ - "【56기】김효진", + "56·김효진", 79, 15, 92, @@ -62934,7 +62934,7 @@ ] ], [ - "【56기】귀욤스", + "56·귀욤스", 76, 15, 92, @@ -62959,7 +62959,7 @@ ] ], [ - "【56기】파프타", + "56·파프타", 96, 72, 15, @@ -62982,7 +62982,7 @@ ] ], [ - "【56기】임사영", + "56·임사영", 99, 73, 15, @@ -63015,7 +63015,7 @@ ] ], [ - "【56기】동탄역", + "56·동탄역", 76, 15, 94, @@ -63037,7 +63037,7 @@ ] ], [ - "【56기】지원", + "56·지원", 76, 15, 95, @@ -63059,7 +63059,7 @@ ] ], [ - "【56기】춤과파티", + "56·춤과파티", 79, 89, 15, @@ -63083,7 +63083,7 @@ ] ], [ - "【56기】대교", + "56·대교", 97, 71, 17, @@ -63106,7 +63106,7 @@ ] ], [ - "【56기】굴먹는고양이", + "56·굴먹는고양이", 77, 89, 16, @@ -63128,7 +63128,7 @@ ] ], [ - "【56기】SamGPT", + "56·SamGPT", 75, 15, 95, @@ -63157,7 +63157,7 @@ ] ], [ - "【56기】간지밍이", + "56·간지밍이", 107, 70, 15, @@ -63194,7 +63194,7 @@ ] ], [ - "【56기】라콘타2", + "56·라콘타2", 77, 16, 92, @@ -63219,7 +63219,7 @@ ] ], [ - "【56기】라콘타", + "56·라콘타", 96, 75, 15, @@ -63241,7 +63241,7 @@ ] ], [ - "【56기】이오", + "56·이오", 97, 74, 15, @@ -63263,7 +63263,7 @@ ] ], [ - "【56기】여동사친", + "56·여동사친", 75, 15, 95, @@ -63295,7 +63295,7 @@ ] ], [ - "【56기】카갈비", + "56·카갈비", 98, 72, 15, @@ -63322,7 +63322,7 @@ ] ], [ - "【56기】키리코", + "56·키리코", 77, 90, 15, @@ -63348,7 +63348,7 @@ ] ], [ - "【56기】하입보이", + "56·하입보이", 91, 77, 15, @@ -63370,7 +63370,7 @@ ] ], [ - "【56기】응애", + "56·응애", 74, 15, 95, @@ -63393,7 +63393,7 @@ ] ], [ - "【56기】1", + "56·1", 97, 71, 15, @@ -63421,7 +63421,7 @@ ] ], [ - "【56기】페파", + "56·페파", 76, 16, 92, @@ -63443,7 +63443,7 @@ ] ], [ - "【56기】Samo", + "56·Samo", 77, 91, 15, @@ -63467,7 +63467,7 @@ ] ], [ - "【56기】외심장", + "56·외심장", 79, 15, 91, @@ -63489,7 +63489,7 @@ ] ], [ - "【56기】비상식량", + "56·비상식량", 94, 73, 15, @@ -63511,7 +63511,7 @@ ] ], [ - "【56기】북오더", + "56·북오더", 80, 90, 16, @@ -63533,7 +63533,7 @@ ] ], [ - "【56기】머큐리스", + "56·머큐리스", 76, 91, 16, @@ -63556,7 +63556,7 @@ ] ], [ - "【56기】김채원", + "56·김채원", 76, 89, 15, @@ -63578,7 +63578,7 @@ ] ], [ - "【56기】산월장수", + "56·산월장수", 80, 87, 15, @@ -63600,7 +63600,7 @@ ] ], [ - "【56기】くま", + "56·くま", 76, 16, 92, @@ -63625,7 +63625,7 @@ ] ], [ - "【56기】료우기시키", + "56·료우기시키", 80, 15, 86, @@ -63647,7 +63647,7 @@ ] ], [ - "【56기】김나영", + "56·김나영", 78, 91, 15, @@ -63670,7 +63670,7 @@ ] ], [ - "【56기】어둠", + "56·어둠", 91, 76, 15, @@ -63699,7 +63699,7 @@ ] ], [ - "【56기】봇치", + "56·봇치", 17, 78, 89, @@ -63721,7 +63721,7 @@ ] ], [ - "【56기】뉴턴", + "56·뉴턴", 79, 15, 89, @@ -63744,7 +63744,7 @@ ] ], [ - "【56기】고고라니고고고라니", + "56·고고라니고고고라니", 88, 80, 15, @@ -63766,7 +63766,7 @@ ] ], [ - "【56기】ㅊㄹㅊㄹ", + "56·ㅊㄹㅊㄹ", 76, 92, 15, @@ -63789,7 +63789,7 @@ ] ], [ - "【56기】두꺼비", + "56·두꺼비", 16, 71, 95, @@ -63811,7 +63811,7 @@ ] ], [ - "【56기】사필귀정", + "56·사필귀정", 71, 15, 88, @@ -63833,7 +63833,7 @@ ] ], [ - "【57기】민트도끼", + "57·민트도끼", 94, 80, 15, @@ -63865,7 +63865,7 @@ ] ], [ - "【57기】카이스트", + "57·카이스트", 67, 13, 81, @@ -63890,7 +63890,7 @@ ] ], [ - "【57기】척", + "57·척", 77, 95, 15, @@ -63914,7 +63914,7 @@ ] ], [ - "【57기】카류열전없는Hide_D", + "57·카류열전없는Hide_D", 65, 13, 82, @@ -63937,7 +63937,7 @@ ] ], [ - "【57기】SARS", + "57·SARS", 68, 78, 14, @@ -63959,7 +63959,7 @@ ] ], [ - "【57기】셀레미", + "57·셀레미", 15, 101, 71, @@ -63982,7 +63982,7 @@ ] ], [ - "【57기】열전도둑카류", + "57·열전도둑카류", 14, 82, 64, @@ -64006,7 +64006,7 @@ ] ], [ - "【57기】자동포탑시스템", + "57·자동포탑시스템", 80, 96, 15, @@ -64037,7 +64037,7 @@ ] ], [ - "【57기】예니체리", + "57·예니체리", 78, 15, 91, @@ -64059,7 +64059,7 @@ ] ], [ - "【57기】김나영", + "57·김나영", 67, 82, 13, @@ -64083,7 +64083,7 @@ ] ], [ - "【57기】글린다", + "57·글린다", 63, 13, 85, @@ -64114,7 +64114,7 @@ ] ], [ - "【57기】대의", + "57·대의", 80, 94, 16, @@ -64140,7 +64140,7 @@ ] ], [ - "【57기】MSI우승 기원 독구", + "57·MSI우승 기원 독구", 67, 81, 13, @@ -64164,7 +64164,7 @@ ] ], [ - "【57기】Ceo카류", + "57·Ceo카류", 67, 78, 14, @@ -64186,7 +64186,7 @@ ] ], [ - "【57기】악질카류열전내놔", + "57·악질카류열전내놔", 88, 60, 13, @@ -64214,7 +64214,7 @@ ] ], [ - "【57기】료우기시키", + "57·료우기시키", 67, 13, 81, @@ -64236,7 +64236,7 @@ ] ], [ - "【57기】열전먹튀범카류잡자", + "57·열전먹튀범카류잡자", 64, 13, 84, @@ -64259,7 +64259,7 @@ ] ], [ - "【57기】리안", + "57·리안", 64, 85, 13, @@ -64289,7 +64289,7 @@ ] ], [ - "【57기】경국지색소교", + "57·경국지색소교", 78, 92, 15, @@ -64312,7 +64312,7 @@ ] ], [ - "【57기】서희", + "57·서희", 89, 86, 15, @@ -64338,7 +64338,7 @@ ] ], [ - "【57기】먹튀카류패는마동석", + "57·먹튀카류패는마동석", 78, 15, 94, @@ -64362,7 +64362,7 @@ ] ], [ - "【57기】환자킬러", + "57·환자킬러", 15, 73, 99, @@ -64386,7 +64386,7 @@ ] ], [ - "【57기】월향", + "57·월향", 64, 14, 82, @@ -64414,7 +64414,7 @@ ] ], [ - "【57기】평민킬러", + "57·평민킬러", 75, 99, 15, @@ -64448,7 +64448,7 @@ ] ], [ - "【57기】불패", + "57·불패", 76, 15, 98, @@ -64476,7 +64476,7 @@ ] ], [ - "【57기】엔틱", + "57·엔틱", 75, 15, 98, @@ -64498,7 +64498,7 @@ ] ], [ - "【57기】양민킬러", + "57·양민킬러", 82, 65, 13, @@ -64522,7 +64522,7 @@ ] ], [ - "【57기】농부", + "57·농부", 77, 15, 95, @@ -64544,7 +64544,7 @@ ] ], [ - "【57기】와일드플라워", + "57·와일드플라워", 94, 78, 16, @@ -64568,7 +64568,7 @@ ] ], [ - "【57기】Mercy", + "57·Mercy", 78, 18, 91, @@ -64592,7 +64592,7 @@ ] ], [ - "【57기】카류놈아열전내놔라", + "57·카류놈아열전내놔라", 95, 77, 15, @@ -64619,7 +64619,7 @@ ] ], [ - "【57기】임사영", + "57·임사영", 77, 94, 16, @@ -64642,7 +64642,7 @@ ] ], [ - "【57기】몬테크리스토", + "57·몬테크리스토", 92, 79, 15, @@ -64665,7 +64665,7 @@ ] ], [ - "【57기】차율라의파편", + "57·차율라의파편", 63, 13, 84, @@ -64688,7 +64688,7 @@ ] ], [ - "【57기】ㅊㄹㅊㄹ", + "57·ㅊㄹㅊㄹ", 67, 80, 13, @@ -64712,7 +64712,7 @@ ] ], [ - "【57기】대교", + "57·대교", 99, 72, 16, @@ -64734,7 +64734,7 @@ ] ], [ - "【57기】비상식량", + "57·비상식량", 97, 75, 15, @@ -64757,7 +64757,7 @@ ] ], [ - "【57기】전역킬러", + "57·전역킬러", 63, 13, 84, @@ -64779,7 +64779,7 @@ ] ], [ - "【57기】돈내놔", + "57·돈내놔", 75, 15, 97, @@ -64801,7 +64801,7 @@ ] ], [ - "【57기】독구", + "57·독구", 65, 13, 82, @@ -64824,7 +64824,7 @@ ] ], [ - "【57기】네이", + "57·네이", 88, 16, 83, @@ -64846,7 +64846,7 @@ ] ], [ - "【57기】괴물습격!사스템!", + "57·괴물습격!사스템!", 90, 81, 15, @@ -64869,7 +64869,7 @@ ] ], [ - "【57기】개미호랑이", + "57·개미호랑이", 74, 15, 100, @@ -64893,7 +64893,7 @@ ] ], [ - "【57기】악질홍차", + "57·악질홍차", 67, 13, 80, @@ -64915,7 +64915,7 @@ ] ], [ - "【57기】새신랑카류", + "57·새신랑카류", 79, 93, 15, @@ -64937,7 +64937,7 @@ ] ], [ - "【57기】777", + "57·777", 78, 94, 15, @@ -64962,7 +64962,7 @@ ] ], [ - "【57기】사필귀정", + "57·사필귀정", 89, 15, 82, @@ -64989,7 +64989,7 @@ ] ], [ - "【57기】감흥", + "57·감흥", 76, 15, 98, @@ -65015,7 +65015,7 @@ ] ], [ - "【57기】굴먹는고양이", + "57·굴먹는고양이", 64, 13, 86, @@ -65042,7 +65042,7 @@ ] ], [ - "【57기】복숭아좋아", + "57·복숭아좋아", 65, 13, 82, @@ -65065,7 +65065,7 @@ ] ], [ - "【57기】황금표호나우두", + "57·황금표호나우두", 88, 82, 16, @@ -65087,7 +65087,7 @@ ] ], [ - "【57기】간지밍이", + "57·간지밍이", 87, 60, 13, @@ -65119,7 +65119,7 @@ ] ], [ - "【57기】응애", + "57·응애", 75, 15, 98, @@ -65141,7 +65141,7 @@ ] ], [ - "【57기】카갈비열전좀써라", + "57·카갈비열전좀써라", 76, 15, 98, @@ -65168,7 +65168,7 @@ ] ], [ - "【57기】열전먹튀카갈비", + "57·열전먹튀카갈비", 76, 16, 95, @@ -65190,7 +65190,7 @@ ] ], [ - "【57기】월클센터백", + "57·월클센터백", 75, 72, 13, @@ -65214,7 +65214,7 @@ ] ], [ - "【57기】くま", + "57·くま", 78, 16, 94, @@ -65245,7 +65245,7 @@ ] ], [ - "【57기】국04", + "57·국04", 90, 15, 82, @@ -65268,7 +65268,7 @@ ] ], [ - "【57기】장수풍뎅이", + "57·장수풍뎅이", 89, 79, 15, @@ -65290,7 +65290,7 @@ ] ], [ - "【57기】NK", + "57·NK", 74, 15, 101, @@ -65324,7 +65324,7 @@ ] ], [ - "【57기】뉴턴", + "57·뉴턴", 81, 15, 92, @@ -65346,7 +65346,7 @@ ] ], [ - "【57기】잠수중1반복", + "57·잠수중1반복", 15, 73, 98, @@ -65368,7 +65368,7 @@ ] ], [ - "【57기】벽돌도둑", + "57·벽돌도둑", 96, 73, 16, @@ -65393,7 +65393,7 @@ ] ], [ - "【57기】은채", + "57·은채", 75, 15, 98, @@ -65416,7 +65416,7 @@ ] ], [ - "【57기】Bianchi", + "57·Bianchi", 79, 91, 16, @@ -65438,7 +65438,7 @@ ] ], [ - "【57기】Fragile", + "57·Fragile", 74, 15, 98, @@ -65460,7 +65460,7 @@ ] ], [ - "【57기】냐옹", + "57·냐옹", 17, 78, 89, @@ -65482,7 +65482,7 @@ ] ], [ - "【57기】푸키삼모", + "57·푸키삼모", 85, 15, 82, @@ -65504,7 +65504,7 @@ ] ], [ - "【57기】황진", + "57·황진", 74, 88, 17, @@ -65526,7 +65526,7 @@ ] ], [ - "【57기】Navy마초", + "57·Navy마초", 75, 86, 15, @@ -65548,7 +65548,7 @@ ] ], [ - "【58기】호시노 아이", + "58·호시노 아이", 96, 78, 15, @@ -65574,7 +65574,7 @@ ] ], [ - "【58기】하츄핑", + "58·하츄핑", 80, 92, 15, @@ -65605,7 +65605,7 @@ ] ], [ - "【58기】SARS", + "58·SARS", 90, 82, 15, @@ -65627,7 +65627,7 @@ ] ], [ - "【58기】강유", + "58·강유", 76, 15, 95, @@ -65649,7 +65649,7 @@ ] ], [ - "【58기】피해자의눈물", + "58·피해자의눈물", 80, 96, 15, @@ -65679,7 +65679,7 @@ ] ], [ - "【58기】아자핑", + "58·아자핑", 80, 15, 91, @@ -65701,7 +65701,7 @@ ] ], [ - "【58기】Sarspear", + "58·Sarspear", 79, 95, 15, @@ -65737,7 +65737,7 @@ ] ], [ - "【58기】바쁜척", + "58·바쁜척", 79, 91, 15, @@ -65759,7 +65759,7 @@ ] ], [ - "【58기】집합장 앵벌스", + "58·집합장 앵벌스", 15, 70, 103, @@ -65782,7 +65782,7 @@ ] ], [ - "【58기】호나", + "58·호나", 95, 76, 15, @@ -65809,7 +65809,7 @@ ] ], [ - "【58기】도비이즈프리", + "58·도비이즈프리", 91, 78, 15, @@ -65832,7 +65832,7 @@ ] ], [ - "【58기】비비안", + "58·비비안", 79, 98, 15, @@ -65865,7 +65865,7 @@ ] ], [ - "【58기】SAS", + "58·SAS", 77, 15, 95, @@ -65899,7 +65899,7 @@ ] ], [ - "【58기】행운핑", + "58·행운핑", 83, 91, 15, @@ -65922,7 +65922,7 @@ ] ], [ - "【58기】김나영", + "58·김나영", 83, 87, 15, @@ -65945,7 +65945,7 @@ ] ], [ - "【58기】가면핑", + "58·가면핑", 91, 15, 81, @@ -65972,7 +65972,7 @@ ] ], [ - "【58기】카이스트", + "58·카이스트", 80, 18, 88, @@ -65994,7 +65994,7 @@ ] ], [ - "【58기】독스훈트", + "58·독스훈트", 82, 92, 15, @@ -66019,7 +66019,7 @@ ] ], [ - "【58기】푸키삼모", + "58·푸키삼모", 93, 78, 15, @@ -66041,7 +66041,7 @@ ] ], [ - "【58기】SAR$", + "58·SAR$", 83, 87, 16, @@ -66063,7 +66063,7 @@ ] ], [ - "【58기】SARS걸린 이연", + "58·SARS걸린 이연", 78, 15, 92, @@ -66089,7 +66089,7 @@ ] ], [ - "【58기】렌스쪼앙", + "58·렌스쪼앙", 80, 15, 93, @@ -66111,7 +66111,7 @@ ] ], [ - "【58기】아휴핑", + "58·아휴핑", 81, 92, 15, @@ -66134,7 +66134,7 @@ ] ], [ - "【58기】진희", + "58·진희", 15, 71, 99, @@ -66157,7 +66157,7 @@ ] ], [ - "【58기】SARS", + "58·SARS", 77, 15, 95, @@ -66181,7 +66181,7 @@ ] ], [ - "【58기】네이", + "58·네이", 92, 15, 79, @@ -66205,7 +66205,7 @@ ] ], [ - "【58기】ㅊㄹㅊㄹ", + "58·ㅊㄹㅊㄹ", 78, 91, 15, @@ -66227,7 +66227,7 @@ ] ], [ - "【58기】서희", + "58·서희", 89, 80, 15, @@ -66249,7 +66249,7 @@ ] ], [ - "【58기】차차핑", + "58·차차핑", 79, 15, 93, @@ -66271,7 +66271,7 @@ ] ], [ - "【58기】지원", + "58·지원", 81, 15, 94, @@ -66301,7 +66301,7 @@ ] ], [ - "【58기】아라핑", + "58·아라핑", 13, 64, 83, @@ -66323,7 +66323,7 @@ ] ], [ - "【58기】북오더", + "58·북오더", 89, 82, 15, @@ -66345,7 +66345,7 @@ ] ], [ - "【58기】간지밍이", + "58·간지밍이", 79, 15, 94, @@ -66375,7 +66375,7 @@ ] ], [ - "【58기】샤일록", + "58·샤일록", 15, 79, 91, @@ -66397,7 +66397,7 @@ ] ], [ - "【58기】시진핑", + "58·시진핑", 80, 91, 16, @@ -66420,7 +66420,7 @@ ] ], [ - "【58기】셀린", + "58·셀린", 76, 15, 97, @@ -66448,7 +66448,7 @@ ] ], [ - "【58기】SRAS", + "58·SRAS", 77, 15, 92, @@ -66470,7 +66470,7 @@ ] ], [ - "【58기】5ARS", + "58·5ARS", 79, 101, 15, @@ -66508,7 +66508,7 @@ ] ], [ - "【58기】XARS", + "58·XARS", 99, 72, 15, @@ -66534,7 +66534,7 @@ ] ], [ - "【58기】살스", + "58·살스", 78, 15, 97, @@ -66569,7 +66569,7 @@ ] ], [ - "【58기】SAR5", + "58·SAR5", 76, 15, 97, @@ -66598,7 +66598,7 @@ ] ], [ - "【58기】문익점", + "58·문익점", 91, 15, 78, @@ -66621,7 +66621,7 @@ ] ], [ - "【58기】12345678910111213", + "58·12345678910111213", 91, 80, 16, @@ -66644,7 +66644,7 @@ ] ], [ - "【58기】.", + "58·.", 99, 71, 16, @@ -66672,7 +66672,7 @@ ] ], [ - "【58기】PARS", + "58·PARS", 74, 97, 15, @@ -66697,7 +66697,7 @@ ] ], [ - "【58기】료우기시키", + "58·료우기시키", 77, 15, 95, @@ -66719,7 +66719,7 @@ ] ], [ - "【58기】Hide_D", + "58·Hide_D", 80, 15, 95, @@ -66745,7 +66745,7 @@ ] ], [ - "【58기】와일드플라워", + "58·와일드플라워", 97, 73, 15, @@ -66768,7 +66768,7 @@ ] ], [ - "【58기】SABS", + "58·SABS", 75, 17, 94, @@ -66797,7 +66797,7 @@ ] ], [ - "【58기】응애", + "58·응애", 77, 15, 96, @@ -66819,7 +66819,7 @@ ] ], [ - "【58기】악어의눈물", + "58·악어의눈물", 77, 15, 95, @@ -66841,7 +66841,7 @@ ] ], [ - "【58기】기병", + "58·기병", 80, 90, 16, @@ -66863,7 +66863,7 @@ ] ], [ - "【58기】경국지색소교", + "58·경국지색소교", 79, 93, 15, @@ -66886,7 +66886,7 @@ ] ], [ - "【58기】이랑", + "58·이랑", 77, 94, 15, @@ -66909,7 +66909,7 @@ ] ], [ - "【58기】황진", + "58·황진", 92, 79, 15, @@ -66932,7 +66932,7 @@ ] ], [ - "【58기】돌아온너구리", + "58·돌아온너구리", 15, 72, 100, @@ -66954,7 +66954,7 @@ ] ], [ - "【58기】ㅂ1상식량", + "58·ㅂ1상식량", 93, 77, 16, @@ -66976,7 +66976,7 @@ ] ], [ - "【58기】무림", + "58·무림", 91, 77, 16, @@ -66998,7 +66998,7 @@ ] ], [ - "【58기】Bianchi", + "58·Bianchi", 81, 90, 15, @@ -67022,7 +67022,7 @@ ] ], [ - "【58기】예니체리", + "58·예니체리", 90, 15, 79, @@ -67044,7 +67044,7 @@ ] ], [ - "【58기】만샘", + "58·만샘", 93, 77, 15, @@ -67067,7 +67067,7 @@ ] ], [ - "【58기】삭턴전문가", + "58·삭턴전문가", 78, 15, 92, @@ -67089,7 +67089,7 @@ ] ], [ - "【58기】Navy마초", + "58·Navy마초", 79, 15, 91, @@ -67111,7 +67111,7 @@ ] ], [ - "【58기】진솔", + "58·진솔", 18, 74, 86, @@ -67133,7 +67133,7 @@ ] ], [ - "【59기】아픈척", + "59·아픈척", 79, 92, 15, @@ -67156,7 +67156,7 @@ ] ], [ - "【59기】양사영", + "59·양사영", 81, 96, 15, @@ -67186,7 +67186,7 @@ ] ], [ - "【59기】헬조선망해라", + "59·헬조선망해라", 69, 80, 13, @@ -67215,7 +67215,7 @@ ] ], [ - "【59기】鳴海大我", + "59·鳴海大我", 77, 15, 94, @@ -67242,7 +67242,7 @@ ] ], [ - "【59기】만디", + "59·만디", 84, 88, 15, @@ -67267,7 +67267,7 @@ ] ], [ - "【59기】돌아온너구리", + "59·돌아온너구리", 98, 72, 16, @@ -67296,7 +67296,7 @@ ] ], [ - "【59기】SARS", + "59·SARS", 90, 84, 15, @@ -67326,7 +67326,7 @@ ] ], [ - "【59기】GATA미코가미리코", + "59·GATA미코가미리코", 77, 94, 18, @@ -67356,7 +67356,7 @@ ] ], [ - "【59기】응애", + "59·응애", 76, 15, 96, @@ -67378,7 +67378,7 @@ ] ], [ - "【59기】Sase Kim", + "59·Sase Kim", 82, 16, 89, @@ -67402,7 +67402,7 @@ ] ], [ - "【59기】길을가던냥이", + "59·길을가던냥이", 95, 76, 15, @@ -67426,7 +67426,7 @@ ] ], [ - "【59기】바나낫", + "59·바나낫", 80, 91, 15, @@ -67449,7 +67449,7 @@ ] ], [ - "【59기】사카마타클로에", + "59·사카마타클로에", 77, 16, 95, @@ -67476,7 +67476,7 @@ ] ], [ - "【59기】나가", + "59·나가", 75, 96, 15, @@ -67501,7 +67501,7 @@ ] ], [ - "【59기】요리의신 청설모", + "59·요리의신 청설모", 76, 95, 15, @@ -67523,7 +67523,7 @@ ] ], [ - "【59기】Hide_D", + "59·Hide_D", 79, 15, 94, @@ -67546,7 +67546,7 @@ ] ], [ - "【59기】진솔", + "59·진솔", 16, 71, 99, @@ -67570,7 +67570,7 @@ ] ], [ - "【59기】이연", + "59·이연", 80, 93, 15, @@ -67600,7 +67600,7 @@ ] ], [ - "【59기】로니", + "59·로니", 82, 90, 15, @@ -67622,7 +67622,7 @@ ] ], [ - "【59기】외심장", + "59·외심장", 76, 16, 93, @@ -67644,7 +67644,7 @@ ] ], [ - "【59기】호시노 앵벌스", + "59·호시노 앵벌스", 92, 78, 16, @@ -67676,7 +67676,7 @@ ] ], [ - "【59기】무녀", + "59·무녀", 79, 15, 91, @@ -67698,7 +67698,7 @@ ] ], [ - "【59기】네이", + "59·네이", 79, 16, 91, @@ -67721,7 +67721,7 @@ ] ], [ - "【59기】키리코", + "59·키리코", 77, 93, 16, @@ -67744,7 +67744,7 @@ ] ], [ - "【59기】묵은지닭찜과보드카", + "59·묵은지닭찜과보드카", 90, 81, 15, @@ -67768,7 +67768,7 @@ ] ], [ - "【59기】셀레미", + "59·셀레미", 78, 15, 95, @@ -67793,7 +67793,7 @@ ] ], [ - "【59기】감흥", + "59·감흥", 15, 75, 95, @@ -67815,7 +67815,7 @@ ] ], [ - "【59기】와플", + "59·와플", 96, 75, 15, @@ -67838,7 +67838,7 @@ ] ], [ - "【59기】학군사관", + "59·학군사관", 80, 89, 15, @@ -67860,7 +67860,7 @@ ] ], [ - "【59기】그림리퍼", + "59·그림리퍼", 80, 89, 15, @@ -67882,7 +67882,7 @@ ] ], [ - "【59기】하디아", + "59·하디아", 90, 81, 15, @@ -67904,7 +67904,7 @@ ] ], [ - "【59기】비상식량", + "59·비상식량", 90, 82, 15, @@ -67927,7 +67927,7 @@ ] ], [ - "【59기】유카", + "59·유카", 80, 91, 15, @@ -67949,7 +67949,7 @@ ] ], [ - "【59기】NK", + "59·NK", 77, 96, 15, @@ -67972,7 +67972,7 @@ ] ], [ - "【59기】블로니", + "59·블로니", 16, 73, 96, @@ -67995,7 +67995,7 @@ ] ], [ - "【59기】비건 독구", + "59·비건 독구", 78, 91, 15, @@ -68023,7 +68023,7 @@ ] ], [ - "【59기】나무사이", + "59·나무사이", 78, 92, 15, @@ -68046,7 +68046,7 @@ ] ], [ - "【59기】칼라", + "59·칼라", 15, 82, 89, @@ -68068,7 +68068,7 @@ ] ], [ - "【59기】간지밍이", + "59·간지밍이", 78, 16, 93, @@ -68094,7 +68094,7 @@ ] ], [ - "【59기】호나", + "59·호나", 93, 17, 76, @@ -68118,7 +68118,7 @@ ] ], [ - "【59기】지원", + "59·지원", 79, 92, 16, @@ -68144,7 +68144,7 @@ ] ], [ - "【59기】불패", + "59·불패", 81, 93, 15, @@ -68167,7 +68167,7 @@ ] ], [ - "【59기】크렌스", + "59·크렌스", 81, 92, 15, @@ -68192,7 +68192,7 @@ ] ], [ - "【59기】인고나", + "59·인고나", 78, 15, 93, @@ -68214,7 +68214,7 @@ ] ], [ - "【59기】황진", + "59·황진", 82, 92, 15, @@ -68238,7 +68238,7 @@ ] ], [ - "【59기】라콘타", + "59·라콘타", 76, 15, 95, @@ -68260,7 +68260,7 @@ ] ], [ - "【59기】카이스트", + "59·카이스트", 79, 15, 91, @@ -68282,7 +68282,7 @@ ] ], [ - "【59기】사스케", + "59·사스케", 20, 95, 71, @@ -68313,7 +68313,7 @@ ] ], [ - "【59기】pray", + "59·pray", 79, 63, 14, @@ -68336,7 +68336,7 @@ ] ], [ - "【59기】독구", + "59·독구", 78, 15, 94, @@ -68362,7 +68362,7 @@ ] ], [ - "【59기】사마귀", + "59·사마귀", 75, 98, 15, @@ -68398,7 +68398,7 @@ ] ], [ - "【59기】우돌", + "59·우돌", 98, 72, 16, @@ -68423,7 +68423,7 @@ ] ], [ - "【59기】군견", + "59·군견", 75, 15, 97, @@ -68452,7 +68452,7 @@ ] ], [ - "【59기】아야츠노 유니", + "59·아야츠노 유니", 79, 15, 95, @@ -68486,7 +68486,7 @@ ] ], [ - "【59기】잉여_국04", + "59·잉여_국04", 76, 15, 94, @@ -68509,7 +68509,7 @@ ] ], [ - "【59기】대교", + "59·대교", 95, 73, 16, @@ -68533,7 +68533,7 @@ ] ], [ - "【59기】Navy마초", + "59·Navy마초", 97, 73, 15, @@ -68558,7 +68558,7 @@ ] ], [ - "【59기】초롱초롱 무지", + "59·초롱초롱 무지", 80, 92, 15, @@ -68581,7 +68581,7 @@ ] ], [ - "【59기】경국지색소교", + "59·경국지색소교", 80, 16, 91, @@ -68603,7 +68603,7 @@ ] ], [ - "【59기】고양이", + "59·고양이", 91, 15, 81, @@ -68627,7 +68627,7 @@ ] ], [ - "【59기】다유", + "59·다유", 78, 15, 93, @@ -68649,7 +68649,7 @@ ] ], [ - "【59기】기연노예", + "59·기연노예", 76, 15, 95, @@ -68671,7 +68671,7 @@ ] ], [ - "【59기】서희", + "59·서희", 78, 91, 15, @@ -68693,7 +68693,7 @@ ] ], [ - "【59기】김유현", + "59·김유현", 87, 15, 84, @@ -68716,7 +68716,7 @@ ] ], [ - "【59기】문어", + "59·문어", 77, 90, 16, @@ -68738,7 +68738,7 @@ ] ], [ - "【59기】나이많음의아이콘", + "59·나이많음의아이콘", 80, 16, 92, @@ -68761,7 +68761,7 @@ ] ], [ - "【59기】블러드", + "59·블러드", 78, 91, 15, @@ -68784,7 +68784,7 @@ ] ], [ - "【59기】くま", + "59·くま", 80, 15, 92, @@ -68806,7 +68806,7 @@ ] ], [ - "【59기】어린양", + "59·어린양", 15, 73, 95, @@ -68828,7 +68828,7 @@ ] ], [ - "【59기】초선", + "59·초선", 16, 83, 83, @@ -68850,7 +68850,7 @@ ] ], [ - "【59기】임태산북두", + "59·임태산북두", 15, 73, 92, @@ -68872,7 +68872,7 @@ ] ], [ - "【61기】앵벌스", + "61·앵벌스", 73, 15, 92, @@ -68899,7 +68899,7 @@ ] ], [ - "【61기】천지개불", + "61·천지개불", 76, 15, 89, @@ -68922,7 +68922,7 @@ ] ], [ - "【61기】마요이", + "61·마요이", 94, 71, 15, @@ -68953,7 +68953,7 @@ ] ], [ - "【61기】감흥", + "61·감흥", 15, 73, 90, @@ -68976,7 +68976,7 @@ ] ], [ - "【61기】호그와트냉장고", + "61·호그와트냉장고", 76, 15, 87, @@ -68998,7 +68998,7 @@ ] ], [ - "【61기】강유", + "61·강유", 75, 15, 89, @@ -69020,7 +69020,7 @@ ] ], [ - "【61기】척", + "61·척", 75, 87, 16, @@ -69042,7 +69042,7 @@ ] ], [ - "【61기】바나낫", + "61·바나낫", 73, 15, 92, @@ -69066,7 +69066,7 @@ ] ], [ - "【61기】나데코", + "61·나데코", 75, 88, 16, @@ -69096,7 +69096,7 @@ ] ], [ - "【61기】평민킬러", + "61·평민킬러", 76, 89, 15, @@ -69123,7 +69123,7 @@ ] ], [ - "【61기】냐옹", + "61·냐옹", 75, 89, 15, @@ -69146,7 +69146,7 @@ ] ], [ - "【61기】근설모", + "61·근설모", 74, 91, 15, @@ -69172,7 +69172,7 @@ ] ], [ - "【61기】김채원", + "61·김채원", 84, 16, 80, @@ -69194,7 +69194,7 @@ ] ], [ - "【61기】카이스트", + "61·카이스트", 77, 15, 88, @@ -69218,7 +69218,7 @@ ] ], [ - "【61기】호두", + "61·호두", 73, 91, 15, @@ -69242,7 +69242,7 @@ ] ], [ - "【61기】데스티니차일드", + "61·데스티니차일드", 73, 15, 92, @@ -69268,7 +69268,7 @@ ] ], [ - "【61기】라콘타", + "61·라콘타", 77, 87, 15, @@ -69291,7 +69291,7 @@ ] ], [ - "【61기】메메", + "61·메메", 91, 71, 16, @@ -69316,7 +69316,7 @@ ] ], [ - "【61기】네이미", + "61·네이미", 84, 78, 15, @@ -69339,7 +69339,7 @@ ] ], [ - "【61기】페브리", + "61·페브리", 73, 89, 15, @@ -69361,7 +69361,7 @@ ] ], [ - "【61기】내정.D.ream", + "61·내정.D.ream", 15, 70, 95, @@ -69385,7 +69385,7 @@ ] ], [ - "【61기】미친과학", + "61·미친과학", 93, 70, 15, @@ -69412,7 +69412,7 @@ ] ], [ - "【61기】딸배왕앵벌스", + "61·딸배왕앵벌스", 77, 15, 87, @@ -69435,7 +69435,7 @@ ] ], [ - "【61기】SARS", + "61·SARS", 76, 88, 15, @@ -69458,7 +69458,7 @@ ] ], [ - "【61기】북오더", + "61·북오더", 74, 15, 88, @@ -69480,7 +69480,7 @@ ] ], [ - "【61기】돌아온너구리", + "61·돌아온너구리", 77, 15, 88, @@ -69502,7 +69502,7 @@ ] ], [ - "【61기】키리코", + "61·키리코", 74, 89, 15, @@ -69524,7 +69524,7 @@ ] ], [ - "【61기】대교", + "61·대교", 89, 71, 16, @@ -69547,7 +69547,7 @@ ] ], [ - "【61기】정찬성", + "61·정찬성", 75, 87, 16, @@ -69572,7 +69572,7 @@ ] ], [ - "【61기】지력5", + "61·지력5", 74, 15, 91, @@ -69598,7 +69598,7 @@ ] ], [ - "【61기】앵두한", + "61·앵두한", 74, 15, 89, @@ -69625,7 +69625,7 @@ ] ], [ - "【61기】설치류 사냥꾼 독구", + "61·설치류 사냥꾼 독구", 76, 89, 15, @@ -69650,7 +69650,7 @@ ] ], [ - "【61기】앵목사", + "61·앵목사", 73, 15, 91, @@ -69676,7 +69676,7 @@ ] ], [ - "【61기】미친수학", + "61·미친수학", 75, 15, 91, @@ -69703,7 +69703,7 @@ ] ], [ - "【61기】하늘다람쥐", + "61·하늘다람쥐", 73, 15, 92, @@ -69730,7 +69730,7 @@ ] ], [ - "【61기】ㅊㄹㅊㄹ", + "61·ㅊㄹㅊㄹ", 74, 89, 15, @@ -69752,7 +69752,7 @@ ] ], [ - "【61기】초선", + "61·초선", 73, 15, 90, @@ -69774,7 +69774,7 @@ ] ], [ - "【61기】앵만희", + "61·앵만희", 76, 15, 89, @@ -69796,7 +69796,7 @@ ] ], [ - "【61기】정소민", + "61·정소민", 73, 15, 93, @@ -69819,7 +69819,7 @@ ] ], [ - "【61기】간지밍이", + "61·간지밍이", 74, 15, 89, @@ -69844,7 +69844,7 @@ ] ], [ - "【61기】매일영혼을바나낫", + "61·매일영혼을바나낫", 76, 88, 15, @@ -69866,7 +69866,7 @@ ] ], [ - "【61기】성기사 이즈 킹", + "61·성기사 이즈 킹", 88, 75, 18, @@ -69901,7 +69901,7 @@ ] ], [ - "【61기】앵틀러", + "61·앵틀러", 74, 90, 15, @@ -69923,7 +69923,7 @@ ] ], [ - "【61기】사스케", + "61·사스케", 72, 15, 92, @@ -69953,7 +69953,7 @@ ] ], [ - "【61기】1000", + "61·1000", 72, 91, 15, @@ -69976,7 +69976,7 @@ ] ], [ - "【61기】Hide_D", + "61·Hide_D", 74, 15, 91, @@ -69999,7 +69999,7 @@ ] ], [ - "【61기】병종뭐할까요?", + "61·병종뭐할까요?", 90, 75, 15, @@ -70028,7 +70028,7 @@ ] ], [ - "【61기】ㅂ1상식량", + "61·ㅂ1상식량", 88, 78, 15, @@ -70059,7 +70059,7 @@ ] ], [ - "【61기】민트토끼", + "61·민트토끼", 15, 72, 93, @@ -70081,7 +70081,7 @@ ] ], [ - "【61기】독구", + "61·독구", 73, 15, 91, @@ -70108,7 +70108,7 @@ ] ], [ - "【61기】크렌스", + "61·크렌스", 75, 88, 15, @@ -70138,7 +70138,7 @@ ] ], [ - "【61기】엔틱", + "61·엔틱", 73, 15, 89, @@ -70162,7 +70162,7 @@ ] ], [ - "【61기】선덕", + "61·선덕", 74, 15, 88, @@ -70184,7 +70184,7 @@ ] ], [ - "【61기】료우기시키", + "61·료우기시키", 75, 15, 90, @@ -70206,7 +70206,7 @@ ] ], [ - "【61기】불패", + "61·불패", 74, 15, 89, @@ -70229,7 +70229,7 @@ ] ], [ - "【61기】덕구", + "61·덕구", 73, 91, 15, @@ -70251,7 +70251,7 @@ ] ], [ - "【61기】Jr. Aeng", + "61·Jr. Aeng", 74, 15, 88, @@ -70273,7 +70273,7 @@ ] ], [ - "【61기】장원영", + "61·장원영", 73, 15, 90, @@ -70295,7 +70295,7 @@ ] ], [ - "【61기】시뉴카린", + "61·시뉴카린", 73, 15, 89, @@ -70317,7 +70317,7 @@ ] ], [ - "【61기】삼겹살", + "61·삼겹살", 73, 15, 92, @@ -70343,7 +70343,7 @@ ] ], [ - "【61기】페이트", + "61·페이트", 15, 72, 90, @@ -70365,7 +70365,7 @@ ] ], [ - "【61기】Navy마초", + "61·Navy마초", 90, 74, 16, @@ -70395,7 +70395,7 @@ ] ], [ - "【61기】경국지색소교", + "61·경국지색소교", 78, 15, 86, @@ -70417,7 +70417,7 @@ ] ], [ - "【61기】지원", + "61·지원", 72, 92, 15, @@ -70440,7 +70440,7 @@ ] ], [ - "【61기】앵사노바", + "61·앵사노바", 92, 72, 15, @@ -70464,7 +70464,7 @@ ] ], [ - "【61기】응애", + "61·응애", 73, 15, 91, @@ -70486,7 +70486,7 @@ ] ], [ - "【61기】초아인지", + "61·초아인지", 72, 86, 20, @@ -70508,7 +70508,7 @@ ] ], [ - "【61기】피나콜라다", + "61·피나콜라다", 72, 91, 15, @@ -70533,7 +70533,7 @@ ] ], [ - "【61기】숨진사람", + "61·숨진사람", 76, 15, 87, @@ -70555,7 +70555,7 @@ ] ], [ - "【61기】앵여시", + "61·앵여시", 75, 15, 87, @@ -70577,7 +70577,7 @@ ] ], [ - "【61기】Meddugi", + "61·Meddugi", 75, 88, 15, @@ -70599,7 +70599,7 @@ ] ], [ - "【61기】칠리크랩", + "61·칠리크랩", 15, 73, 89, @@ -70621,7 +70621,7 @@ ] ], [ - "【61기】블러드", + "61·블러드", 73, 87, 16, @@ -70644,7 +70644,7 @@ ] ], [ - "【61기】Bianchi", + "61·Bianchi", 74, 86, 15, @@ -70666,7 +70666,7 @@ ] ], [ - "【61기】안유진", + "61·안유진", 15, 90, 72, @@ -70688,7 +70688,7 @@ ] ], [ - "【62기】SARS", + "62·SARS", 78, 89, 15, @@ -70711,7 +70711,7 @@ ] ], [ - "【62기】카이스트", + "62·카이스트", 83, 15, 89, @@ -70733,7 +70733,7 @@ ] ], [ - "【62기】Samo", + "62·Samo", 79, 15, 91, @@ -70757,7 +70757,7 @@ ] ], [ - "【62기】임사영", + "62·임사영", 80, 15, 93, @@ -70779,7 +70779,7 @@ ] ], [ - "【62기】POCARI.", + "62·POCARI.", 77, 95, 15, @@ -70808,7 +70808,7 @@ ] ], [ - "【62기】청설모", + "62·청설모", 80, 15, 92, @@ -70831,7 +70831,7 @@ ] ], [ - "【62기】크렌스", + "62·크렌스", 76, 97, 15, @@ -70865,7 +70865,7 @@ ] ], [ - "【62기】笠原桃奈", + "62·笠原桃奈", 13, 13, 87, @@ -70888,7 +70888,7 @@ ] ], [ - "【62기】신도4", + "62·신도4", 85, 61, 13, @@ -70918,7 +70918,7 @@ ] ], [ - "【62기】푸바오", + "62·푸바오", 93, 76, 15, @@ -70943,7 +70943,7 @@ ] ], [ - "【62기】Navy마초", + "62·Navy마초", 98, 72, 15, @@ -70967,7 +70967,7 @@ ] ], [ - "【62기】염소희", + "62·염소희", 77, 92, 15, @@ -70991,7 +70991,7 @@ ] ], [ - "【62기】무통", + "62·무통", 76, 69, 13, @@ -71015,7 +71015,7 @@ ] ], [ - "【62기】서림동", + "62·서림동", 77, 91, 15, @@ -71037,7 +71037,7 @@ ] ], [ - "【62기】신도40000", + "62·신도40000", 77, 99, 15, @@ -71072,7 +71072,7 @@ ] ], [ - "【62기】카멘", + "62·카멘", 81, 15, 92, @@ -71095,7 +71095,7 @@ ] ], [ - "【62기】유카", + "62·유카", 15, 73, 95, @@ -71119,7 +71119,7 @@ ] ], [ - "【62기】홍마진척왕근", + "62·홍마진척왕근", 69, 80, 13, @@ -71146,7 +71146,7 @@ ] ], [ - "【62기】프레데리카", + "62·프레데리카", 78, 95, 15, @@ -71177,7 +71177,7 @@ ] ], [ - "【62기】치유의부적", + "62·치유의부적", 17, 76, 93, @@ -71199,7 +71199,7 @@ ] ], [ - "【62기】김채원", + "62·김채원", 90, 16, 77, @@ -71221,7 +71221,7 @@ ] ], [ - "【62기】크멘의 애완견", + "62·크멘의 애완견", 76, 15, 98, @@ -71249,7 +71249,7 @@ ] ], [ - "【62기】강유", + "62·강유", 67, 13, 82, @@ -71278,7 +71278,7 @@ ] ], [ - "【62기】파랑새", + "62·파랑새", 80, 16, 92, @@ -71304,7 +71304,7 @@ ] ], [ - "【62기】크멘교 배제대생", + "62·크멘교 배제대생", 97, 75, 15, @@ -71333,7 +71333,7 @@ ] ], [ - "【62기】따라큐", + "62·따라큐", 91, 16, 79, @@ -71358,7 +71358,7 @@ ] ], [ - "【62기】초롱초롱 무지", + "62·초롱초롱 무지", 75, 16, 95, @@ -71380,7 +71380,7 @@ ] ], [ - "【62기】신도119", + "62·신도119", 101, 15, 71, @@ -71408,7 +71408,7 @@ ] ], [ - "【62기】뭐하지", + "62·뭐하지", 90, 80, 16, @@ -71431,7 +71431,7 @@ ] ], [ - "【62기】냐옹", + "62·냐옹", 79, 90, 15, @@ -71454,7 +71454,7 @@ ] ], [ - "【62기】신도44", + "62·신도44", 76, 95, 15, @@ -71481,7 +71481,7 @@ ] ], [ - "【62기】신도444", + "62·신도444", 76, 15, 95, @@ -71506,7 +71506,7 @@ ] ], [ - "【62기】서희", + "62·서희", 92, 78, 15, @@ -71528,7 +71528,7 @@ ] ], [ - "【62기】로열가드", + "62·로열가드", 77, 15, 96, @@ -71552,7 +71552,7 @@ ] ], [ - "【62기】9999999999999", + "62·9999999999999", 98, 73, 15, @@ -71580,7 +71580,7 @@ ] ], [ - "【62기】신도5", + "62·신도5", 76, 15, 98, @@ -71606,7 +71606,7 @@ ] ], [ - "【62기】샤를마뉴 렌쏭", + "62·샤를마뉴 렌쏭", 79, 93, 16, @@ -71630,7 +71630,7 @@ ] ], [ - "【62기】신도9", + "62·신도9", 77, 97, 15, @@ -71661,7 +71661,7 @@ ] ], [ - "【62기】진솔", + "62·진솔", 82, 88, 16, @@ -71683,7 +71683,7 @@ ] ], [ - "【62기】데바", + "62·데바", 96, 75, 15, @@ -71707,7 +71707,7 @@ ] ], [ - "【62기】쓸모없음", + "62·쓸모없음", 15, 70, 102, @@ -71731,7 +71731,7 @@ ] ], [ - "【62기】와일드플라워", + "62·와일드플라워", 13, 63, 83, @@ -71754,7 +71754,7 @@ ] ], [ - "【62기】오토노세 카나데", + "62·오토노세 카나데", 78, 93, 15, @@ -71777,7 +71777,7 @@ ] ], [ - "【62기】F", + "62·F", 77, 95, 15, @@ -71800,7 +71800,7 @@ ] ], [ - "【62기】대교", + "62·대교", 82, 63, 13, @@ -71823,7 +71823,7 @@ ] ], [ - "【62기】만샘", + "62·만샘", 75, 15, 98, @@ -71849,7 +71849,7 @@ ] ], [ - "【62기】간지밍이", + "62·간지밍이", 82, 13, 67, @@ -71884,7 +71884,7 @@ ] ], [ - "【62기】북오더", + "62·북오더", 90, 77, 15, @@ -71906,7 +71906,7 @@ ] ], [ - "【62기】초선", + "62·초선", 79, 15, 93, @@ -71928,7 +71928,7 @@ ] ], [ - "【62기】땃지", + "62·땃지", 75, 17, 91, @@ -71950,7 +71950,7 @@ ] ], [ - "【62기】덕구", + "62·덕구", 85, 89, 15, @@ -71976,7 +71976,7 @@ ] ], [ - "【62기】doz IP Zak", + "62·doz IP Zak", 83, 15, 89, @@ -72001,7 +72001,7 @@ ] ], [ - "【62기】기술만올리는척", + "62·기술만올리는척", 16, 72, 99, @@ -72023,7 +72023,7 @@ ] ], [ - "【62기】퍄퍄", + "62·퍄퍄", 79, 15, 93, @@ -72045,7 +72045,7 @@ ] ], [ - "【62기】외심장", + "62·외심장", 78, 15, 92, @@ -72067,7 +72067,7 @@ ] ], [ - "【62기】POCAPI", + "62·POCAPI", 83, 15, 89, @@ -72089,7 +72089,7 @@ ] ], [ - "【62기】임관권유거부", + "62·임관권유거부", 80, 16, 88, @@ -72111,7 +72111,7 @@ ] ], [ - "【62기】초아인지", + "62·초아인지", 66, 81, 13, @@ -72138,7 +72138,7 @@ ] ], [ - "【62기】미에 아이", + "62·미에 아이", 75, 17, 92, @@ -72160,7 +72160,7 @@ ] ], [ - "【62기】배틀마스터", + "62·배틀마스터", 83, 90, 16, @@ -72186,7 +72186,7 @@ ] ], [ - "【62기】민트토끼", + "62·민트토끼", 16, 72, 97, @@ -72208,7 +72208,7 @@ ] ], [ - "【62기】초딩대우직딩", + "62·초딩대우직딩", 17, 76, 91, @@ -72230,7 +72230,7 @@ ] ], [ - "【62기】불패", + "62·불패", 75, 96, 15, @@ -72254,7 +72254,7 @@ ] ], [ - "【62기】くま", + "62·くま", 78, 15, 94, @@ -72276,7 +72276,7 @@ ] ], [ - "【62기】코노가고싶다", + "62·코노가고싶다", 78, 15, 93, @@ -72299,7 +72299,7 @@ ] ], [ - "【62기】주사위논리학", + "62·주사위논리학", 88, 76, 16, @@ -72322,7 +72322,7 @@ ] ], [ - "【63기】팬이에요.", + "63·팬이에요.", 73, 85, 13, @@ -72349,7 +72349,7 @@ ] ], [ - "【63기】사스케", + "63·사스케", 62, 13, 93, @@ -72375,7 +72375,7 @@ ] ], [ - "【63기】조승상", + "63·조승상", 85, 70, 14, @@ -72397,7 +72397,7 @@ ] ], [ - "【63기】장원영", + "63·장원영", 62, 14, 89, @@ -72419,7 +72419,7 @@ ] ], [ - "【63기】아보크", + "63·아보크", 70, 13, 87, @@ -72442,7 +72442,7 @@ ] ], [ - "【63기】양사영", + "63·양사영", 69, 13, 87, @@ -72475,7 +72475,7 @@ ] ], [ - "【63기】또도가스", + "63·또도가스", 86, 72, 13, @@ -72499,7 +72499,7 @@ ] ], [ - "【63기】엘사", + "63·엘사", 70, 86, 13, @@ -72524,7 +72524,7 @@ ] ], [ - "【63기】이누바시리 모미지", + "63·이누바시리 모미지", 69, 14, 76, @@ -72548,7 +72548,7 @@ ] ], [ - "【63기】초아인지", + "63·초아인지", 65, 13, 89, @@ -72570,7 +72570,7 @@ ] ], [ - "【63기】히이라기 카가미", + "63·히이라기 카가미", 66, 13, 86, @@ -72593,7 +72593,7 @@ ] ], [ - "【63기】렌고쿠 쿄주로", + "63·렌고쿠 쿄주로", 66, 84, 13, @@ -72615,7 +72615,7 @@ ] ], [ - "【63기】경국지색소교", + "63·경국지색소교", 69, 82, 14, @@ -72637,7 +72637,7 @@ ] ], [ - "【63기】재간둥이", + "63·재간둥이", 80, 70, 14, @@ -72660,7 +72660,7 @@ ] ], [ - "【63기】Hide_D", + "63·Hide_D", 71, 14, 83, @@ -72684,7 +72684,7 @@ ] ], [ - "【63기】서희", + "63·서희", 65, 13, 89, @@ -72706,7 +72706,7 @@ ] ], [ - "【63기】ㅊㄹㅊㄹ", + "63·ㅊㄹㅊㄹ", 66, 13, 88, @@ -72728,7 +72728,7 @@ ] ], [ - "【63기】로사", + "63·로사", 13, 68, 86, @@ -72750,7 +72750,7 @@ ] ], [ - "【63기】SARS", + "63·SARS", 81, 73, 14, @@ -72779,7 +72779,7 @@ ] ], [ - "【63기】피엔나", + "63·피엔나", 71, 13, 88, @@ -72803,7 +72803,7 @@ ] ], [ - "【63기】양요이", + "63·양요이", 67, 14, 84, @@ -72825,7 +72825,7 @@ ] ], [ - "【63기】마자용", + "63·마자용", 67, 13, 90, @@ -72851,7 +72851,7 @@ ] ], [ - "【63기】후라이팬", + "63·후라이팬", 73, 87, 13, @@ -72881,7 +72881,7 @@ ] ], [ - "【63기】미야와키 사쿠라", + "63·미야와키 사쿠라", 78, 13, 76, @@ -72903,7 +72903,7 @@ ] ], [ - "【63기】초딩대우직딩", + "63·초딩대우직딩", 81, 70, 14, @@ -72926,7 +72926,7 @@ ] ], [ - "【63기】PEPSI", + "63·PEPSI", 68, 13, 86, @@ -72953,7 +72953,7 @@ ] ], [ - "【63기】예턴장", + "63·예턴장", 83, 71, 14, @@ -72975,7 +72975,7 @@ ] ], [ - "【63기】랜덤박스", + "63·랜덤박스", 73, 79, 14, @@ -72997,7 +72997,7 @@ ] ], [ - "【63기】나옹", + "63·나옹", 68, 13, 89, @@ -73023,7 +73023,7 @@ ] ], [ - "【63기】북오더", + "63·북오더", 71, 83, 13, @@ -73051,7 +73051,7 @@ ] ], [ - "【63기】무쇠팬", + "63·무쇠팬", 70, 84, 13, @@ -73079,7 +73079,7 @@ ] ], [ - "【63기】안아줘요", + "63·안아줘요", 14, 87, 64, @@ -73102,7 +73102,7 @@ ] ], [ - "【63기】진솔", + "63·진솔", 71, 82, 13, @@ -73124,7 +73124,7 @@ ] ], [ - "【63기】마즈피플", + "63·마즈피플", 70, 83, 15, @@ -73146,7 +73146,7 @@ ] ], [ - "【63기】지원", + "63·지원", 73, 82, 13, @@ -73169,7 +73169,7 @@ ] ], [ - "【63기】Sase Kim", + "63·Sase Kim", 67, 87, 13, @@ -73195,7 +73195,7 @@ ] ], [ - "【63기】로이", + "63·로이", 69, 13, 86, @@ -73226,7 +73226,7 @@ ] ], [ - "【63기】Love", + "63·Love", 70, 13, 84, @@ -73248,7 +73248,7 @@ ] ], [ - "【63기】비주기", + "63·비주기", 90, 69, 13, @@ -73281,7 +73281,7 @@ ] ], [ - "【63기】간지밍이", + "63·간지밍이", 16, 62, 87, @@ -73307,7 +73307,7 @@ ] ], [ - "【63기】로켓맨", + "63·로켓맨", 71, 14, 87, @@ -73333,7 +73333,7 @@ ] ], [ - "【63기】초선", + "63·초선", 66, 13, 88, @@ -73355,7 +73355,7 @@ ] ], [ - "【63기】くま", + "63·くま", 70, 14, 86, @@ -73384,7 +73384,7 @@ ] ], [ - "【63기】시험감독곰", + "63·시험감독곰", 76, 79, 14, @@ -73408,7 +73408,7 @@ ] ], [ - "【63기】노예", + "63·노예", 92, 66, 13, @@ -73440,7 +73440,7 @@ ] ], [ - "【63기】통솔", + "63·통솔", 83, 74, 13, @@ -73468,7 +73468,7 @@ ] ], [ - "【63기】김나영", + "63·김나영", 68, 84, 13, @@ -73490,7 +73490,7 @@ ] ], [ - "【63기】독구", + "63·독구", 67, 13, 90, @@ -73513,7 +73513,7 @@ ] ], [ - "【63기】대교", + "63·대교", 89, 62, 14, @@ -73536,7 +73536,7 @@ ] ], [ - "【63기】송건중기마초맹기", + "63·송건중기마초맹기", 70, 83, 13, @@ -73559,7 +73559,7 @@ ] ], [ - "【63기】멜파고", + "63·멜파고", 14, 67, 83, @@ -73581,7 +73581,7 @@ ] ], [ - "【63기】앵버거먹튀범대머리", + "63·앵버거먹튀범대머리", 14, 62, 85, @@ -73603,7 +73603,7 @@ ] ], [ - "【63기】SARSKE", + "63·SARSKE", 67, 13, 91, @@ -73628,7 +73628,7 @@ ] ], [ - "【63기】밤안개", + "63·밤안개", 72, 83, 13, @@ -73655,7 +73655,7 @@ ] ], [ - "【63기】와일드플라워", + "63·와일드플라워", 92, 68, 13, @@ -73687,7 +73687,7 @@ ] ], [ - "【63기】슬슬쉬고싶은karl", + "63·슬슬쉬고싶은karl", 87, 64, 14, @@ -73709,7 +73709,7 @@ ] ], [ - "【63기】Navy마초", + "63·Navy마초", 71, 83, 13, @@ -73731,7 +73731,7 @@ ] ], [ - "【63기】땅땅이", + "63·땅땅이", 84, 68, 13, @@ -73753,7 +73753,7 @@ ] ], [ - "【63기】경력있는신입", + "63·경력있는신입", 88, 67, 13, @@ -73778,7 +73778,7 @@ ] ], [ - "【63기】예니체리", + "63·예니체리", 68, 13, 86, @@ -73800,7 +73800,7 @@ ] ], [ - "【63기】척", + "63·척", 74, 80, 13, @@ -73826,7 +73826,7 @@ ] ], [ - "【63기】성수전용", + "63·성수전용", 14, 89, 63, @@ -73848,7 +73848,7 @@ ] ], [ - "【63기】로비", + "63·로비", 13, 72, 82, @@ -73870,7 +73870,7 @@ ] ], [ - "【63기】십수생", + "63·십수생", 14, 64, 87, @@ -73892,7 +73892,7 @@ ] ], [ - "【63기】청기사", + "63·청기사", 16, 60, 89, @@ -73914,7 +73914,7 @@ ] ], [ - "【63기】료우기시키", + "63·료우기시키", 71, 14, 84, @@ -73936,7 +73936,7 @@ ] ], [ - "【63기】LISARS", + "63·LISARS", 68, 82, 14, @@ -73961,7 +73961,7 @@ ] ], [ - "【63기】땃 지", + "63·땃 지", 77, 14, 76, @@ -73983,7 +73983,7 @@ ] ], [ - "【63기】김유현", + "63·김유현", 65, 13, 86, @@ -74005,7 +74005,7 @@ ] ], [ - "【63기】세르네오", + "63·세르네오", 13, 66, 85, @@ -74027,7 +74027,7 @@ ] ], [ - "【63기】주다사", + "63·주다사", 61, 14, 90, @@ -74050,7 +74050,7 @@ ] ], [ - "【63기】파이어로", + "63·파이어로", 14, 66, 83, @@ -74076,7 +74076,7 @@ ] ], [ - "【63기】코미", + "63·코미", 15, 74, 98, @@ -74099,7 +74099,7 @@ ] ], [ - "【63기】민초조아", + "63·민초조아", 15, 85, 85, @@ -74123,7 +74123,7 @@ ] ], [ - "【63기】슈퍼블루문", + "63·슈퍼블루문", 85, 15, 77, @@ -74145,7 +74145,7 @@ ] ], [ - "【64기】김계란", + "64·김계란", 80, 92, 15, @@ -74169,7 +74169,7 @@ ] ], [ - "【64기】키리코", + "64·키리코", 76, 15, 98, @@ -74193,7 +74193,7 @@ ] ], [ - "【64기】로드롤러", + "64·로드롤러", 102, 70, 15, @@ -74223,7 +74223,7 @@ ] ], [ - "【64기】밀키스", + "64·밀키스", 90, 83, 15, @@ -74246,7 +74246,7 @@ ] ], [ - "【64기】환타", + "64·환타", 75, 15, 97, @@ -74268,7 +74268,7 @@ ] ], [ - "【64기】슬라임", + "64·슬라임", 80, 67, 14, @@ -74292,7 +74292,7 @@ ] ], [ - "【64기】누군가", + "64·누군가", 20, 73, 94, @@ -74314,7 +74314,7 @@ ] ], [ - "【64기】라콘타", + "64·라콘타", 80, 93, 15, @@ -74340,7 +74340,7 @@ ] ], [ - "【64기】개미호랑이", + "64·개미호랑이", 78, 15, 93, @@ -74362,7 +74362,7 @@ ] ], [ - "【64기】실비아", + "64·실비아", 68, 77, 14, @@ -74387,7 +74387,7 @@ ] ], [ - "【64기】로베르트", + "64·로베르트", 66, 13, 82, @@ -74414,7 +74414,7 @@ ] ], [ - "【64기】박광덕", + "64·박광덕", 97, 74, 15, @@ -74437,7 +74437,7 @@ ] ], [ - "【64기】효", + "64·효", 83, 63, 13, @@ -74468,7 +74468,7 @@ ] ], [ - "【64기】역병군주시진핑핑이", + "64·역병군주시진핑핑이", 65, 13, 86, @@ -74501,7 +74501,7 @@ ] ], [ - "【64기】역병자산운용앵대리", + "64·역병자산운용앵대리", 66, 13, 80, @@ -74523,7 +74523,7 @@ ] ], [ - "【64기】평민킬러", + "64·평민킬러", 77, 95, 15, @@ -74551,7 +74551,7 @@ ] ], [ - "【64기】이터널리턴", + "64·이터널리턴", 77, 15, 94, @@ -74573,7 +74573,7 @@ ] ], [ - "【64기】숭배자", + "64·숭배자", 80, 68, 13, @@ -74607,7 +74607,7 @@ ] ], [ - "【64기】Navy마초", + "64·Navy마초", 79, 15, 93, @@ -74629,7 +74629,7 @@ ] ], [ - "【64기】마운틴 듀", + "64·마운틴 듀", 77, 16, 95, @@ -74652,7 +74652,7 @@ ] ], [ - "【64기】Mella", + "64·Mella", 79, 93, 15, @@ -74675,7 +74675,7 @@ ] ], [ - "【64기】타불", + "64·타불", 89, 82, 15, @@ -74697,7 +74697,7 @@ ] ], [ - "【64기】역병의사", + "64·역병의사", 79, 17, 93, @@ -74721,7 +74721,7 @@ ] ], [ - "【64기】코카콜라", + "64·코카콜라", 90, 80, 15, @@ -74744,7 +74744,7 @@ ] ], [ - "【64기】SARS", + "64·SARS", 77, 93, 15, @@ -74768,7 +74768,7 @@ ] ], [ - "【64기】미나토", + "64·미나토", 89, 15, 82, @@ -74790,7 +74790,7 @@ ] ], [ - "【64기】마요이", + "64·마요이", 78, 15, 96, @@ -74814,7 +74814,7 @@ ] ], [ - "【64기】젤렌스키", + "64·젤렌스키", 101, 70, 15, @@ -74838,7 +74838,7 @@ ] ], [ - "【64기】크돌프", + "64·크돌프", 85, 61, 13, @@ -74861,7 +74861,7 @@ ] ], [ - "【64기】Parrot", + "64·Parrot", 98, 74, 15, @@ -74884,7 +74884,7 @@ ] ], [ - "【64기】ㅊㄹㅊㄹ", + "64·ㅊㄹㅊㄹ", 79, 95, 15, @@ -74914,7 +74914,7 @@ ] ], [ - "【64기】슈퍼블루문", + "64·슈퍼블루문", 80, 65, 14, @@ -74938,7 +74938,7 @@ ] ], [ - "【64기】panpenpan", + "64·panpenpan", 75, 16, 96, @@ -74962,7 +74962,7 @@ ] ], [ - "【64기】POCARI", + "64·POCARI", 76, 15, 96, @@ -74984,7 +74984,7 @@ ] ], [ - "【64기】깨수깡", + "64·깨수깡", 101, 71, 15, @@ -75009,7 +75009,7 @@ ] ], [ - "【64기】코코아", + "64·코코아", 78, 15, 94, @@ -75032,7 +75032,7 @@ ] ], [ - "【64기】간지밍이", + "64·간지밍이", 67, 13, 79, @@ -75060,7 +75060,7 @@ ] ], [ - "【64기】와일드플라워", + "64·와일드플라워", 76, 15, 97, @@ -75082,7 +75082,7 @@ ] ], [ - "【64기】역병을뒤집으면병역", + "64·역병을뒤집으면병역", 66, 79, 14, @@ -75110,7 +75110,7 @@ ] ], [ - "【64기】맥콜", + "64·맥콜", 76, 94, 16, @@ -75133,7 +75133,7 @@ ] ], [ - "【64기】RPG", + "64·RPG", 90, 16, 80, @@ -75156,7 +75156,7 @@ ] ], [ - "【64기】북오더", + "64·북오더", 78, 93, 15, @@ -75179,7 +75179,7 @@ ] ], [ - "【64기】산타크렌스", + "64·산타크렌스", 83, 62, 13, @@ -75210,7 +75210,7 @@ ] ], [ - "【64기】대교", + "64·대교", 98, 74, 15, @@ -75233,7 +75233,7 @@ ] ], [ - "【64기】외심장", + "64·외심장", 78, 16, 94, @@ -75255,7 +75255,7 @@ ] ], [ - "【64기】셀레미", + "64·셀레미", 75, 15, 98, @@ -75287,7 +75287,7 @@ ] ], [ - "【64기】코난", + "64·코난", 92, 17, 75, @@ -75310,7 +75310,7 @@ ] ], [ - "【64기】별이다섯개이렇게", + "64·별이다섯개이렇게", 79, 94, 15, @@ -75333,7 +75333,7 @@ ] ], [ - "【64기】독구", + "64·독구", 77, 97, 15, @@ -75366,7 +75366,7 @@ ] ], [ - "【64기】BlueArchive", + "64·BlueArchive", 78, 93, 16, @@ -75394,7 +75394,7 @@ ] ], [ - "【64기】예턴장", + "64·예턴장", 78, 16, 92, @@ -75417,7 +75417,7 @@ ] ], [ - "【64기】황혼중", + "64·황혼중", 75, 15, 97, @@ -75440,7 +75440,7 @@ ] ], [ - "【64기】카라", + "64·카라", 13, 65, 77, @@ -75462,7 +75462,7 @@ ] ], [ - "【64기】무지성4반복5반복", + "64·무지성4반복5반복", 65, 13, 82, @@ -75487,7 +75487,7 @@ ] ], [ - "【64기】척", + "64·척", 78, 93, 16, @@ -75510,7 +75510,7 @@ ] ], [ - "【64기】청기사", + "64·청기사", 15, 71, 100, @@ -75533,7 +75533,7 @@ ] ], [ - "【64기】레이무", + "64·레이무", 68, 13, 80, @@ -75561,7 +75561,7 @@ ] ], [ - "【64기】Samo", + "64·Samo", 18, 73, 95, @@ -75583,7 +75583,7 @@ ] ], [ - "【64기】진솔", + "64·진솔", 15, 72, 99, @@ -75606,7 +75606,7 @@ ] ], [ - "【64기】くま", + "64·くま", 78, 16, 92, @@ -75636,7 +75636,7 @@ ] ], [ - "【64기】팍씨", + "64·팍씨", 80, 15, 91, @@ -75658,7 +75658,7 @@ ] ], [ - "【64기】지원", + "64·지원", 16, 72, 100, @@ -75680,7 +75680,7 @@ ] ], [ - "【64기】마지막춤은나와함께", + "64·마지막춤은나와함께", 76, 16, 94, @@ -75703,7 +75703,7 @@ ] ], [ - "【64기】경국지색소교", + "64·경국지색소교", 90, 79, 15, @@ -75727,7 +75727,7 @@ ] ], [ - "【64기】기술연구", + "64·기술연구", 15, 72, 100, @@ -75749,7 +75749,7 @@ ] ], [ - "【64기】세르네오", + "64·세르네오", 65, 79, 14, @@ -75773,7 +75773,7 @@ ] ], [ - "【64기】서림동", + "64·서림동", 75, 93, 15, @@ -75795,7 +75795,7 @@ ] ], [ - "【64기】협동전조아", + "64·협동전조아", 15, 88, 82, @@ -75817,7 +75817,7 @@ ] ], [ - "【64기】BARBAROSSA", + "64·BARBAROSSA", 89, 15, 77, @@ -75839,7 +75839,7 @@ ] ], [ - "【64기】kimset23", + "64·kimset23", 59, 87, 32, @@ -75862,7 +75862,7 @@ ] ], [ - "【64기】다루이젠", + "64·다루이젠", 84, 75, 16, @@ -75884,7 +75884,7 @@ ] ], [ - "【66기】카이스트", + "66·카이스트", 77, 16, 93, @@ -75907,7 +75907,7 @@ ] ], [ - "【66기】백설공주", + "66·백설공주", 95, 76, 15, @@ -75932,7 +75932,7 @@ ] ], [ - "【66기】호나", + "66·호나", 88, 15, 82, @@ -75956,7 +75956,7 @@ ] ], [ - "【66기】바나낫", + "66·바나낫", 79, 95, 15, @@ -75989,7 +75989,7 @@ ] ], [ - "【66기】ㅤ", + "66·ㅤ", 76, 93, 16, @@ -76014,7 +76014,7 @@ ] ], [ - "【66기】kims23", + "66·kims23", 79, 89, 15, @@ -76038,7 +76038,7 @@ ] ], [ - "【66기】모아나", + "66·모아나", 78, 99, 15, @@ -76069,7 +76069,7 @@ ] ], [ - "【66기】밥", + "66·밥", 13, 69, 74, @@ -76092,7 +76092,7 @@ ] ], [ - "【66기】목구", + "66·목구", 79, 15, 88, @@ -76114,7 +76114,7 @@ ] ], [ - "【66기】babychuck", + "66·babychuck", 78, 92, 15, @@ -76136,7 +76136,7 @@ ] ], [ - "【66기】루비", + "66·루비", 77, 15, 93, @@ -76161,7 +76161,7 @@ ] ], [ - "【66기】무지한 독구", + "66·무지한 독구", 15, 73, 95, @@ -76183,7 +76183,7 @@ ] ], [ - "【66기】SARS", + "66·SARS", 75, 15, 97, @@ -76213,7 +76213,7 @@ ] ], [ - "【66기】이차원의 도망자", + "66·이차원의 도망자", 95, 74, 15, @@ -76240,7 +76240,7 @@ ] ], [ - "【66기】이순신", + "66·이순신", 100, 70, 15, @@ -76269,7 +76269,7 @@ ] ], [ - "【66기】북오더", + "66·북오더", 78, 93, 15, @@ -76294,7 +76294,7 @@ ] ], [ - "【66기】빈첸조", + "66·빈첸조", 81, 15, 92, @@ -76321,7 +76321,7 @@ ] ], [ - "【66기】ForTheEmperor", + "66·ForTheEmperor", 75, 96, 15, @@ -76350,7 +76350,7 @@ ] ], [ - "【66기】엘사", + "66·엘사", 76, 92, 15, @@ -76374,7 +76374,7 @@ ] ], [ - "【66기】쵸단", + "66·쵸단", 75, 95, 15, @@ -76397,7 +76397,7 @@ ] ], [ - "【66기】도로롱", + "66·도로롱", 79, 15, 90, @@ -76419,7 +76419,7 @@ ] ], [ - "【66기】신세희", + "66·신세희", 95, 15, 75, @@ -76443,7 +76443,7 @@ ] ], [ - "【66기】서희", + "66·서희", 78, 94, 15, @@ -76473,7 +76473,7 @@ ] ], [ - "【66기】장원영", + "66·장원영", 75, 15, 96, @@ -76498,7 +76498,7 @@ ] ], [ - "【66기】태평동", + "66·태평동", 79, 15, 90, @@ -76520,7 +76520,7 @@ ] ], [ - "【66기】페이트", + "66·페이트", 17, 73, 94, @@ -76542,7 +76542,7 @@ ] ], [ - "【66기】로비", + "66·로비", 16, 72, 96, @@ -76564,7 +76564,7 @@ ] ], [ - "【66기】바낫크톤", + "66·바낫크톤", 65, 14, 80, @@ -76591,7 +76591,7 @@ ] ], [ - "【66기】윈드디어", + "66·윈드디어", 71, 75, 13, @@ -76614,7 +76614,7 @@ ] ], [ - "【66기】임사영", + "66·임사영", 77, 94, 15, @@ -76637,7 +76637,7 @@ ] ], [ - "【66기】ㄱㅈ", + "66·ㄱㅈ", 80, 90, 18, @@ -76662,7 +76662,7 @@ ] ], [ - "【66기】최진리", + "66·최진리", 76, 95, 15, @@ -76685,7 +76685,7 @@ ] ], [ - "【66기】림사영", + "66·림사영", 79, 15, 90, @@ -76707,7 +76707,7 @@ ] ], [ - "【66기】지원", + "66·지원", 15, 72, 97, @@ -76731,7 +76731,7 @@ ] ], [ - "【66기】지듣노", + "66·지듣노", 81, 65, 13, @@ -76760,7 +76760,7 @@ ] ], [ - "【66기】우렉", + "66·우렉", 77, 93, 15, @@ -76782,7 +76782,7 @@ ] ], [ - "【66기】개척자", + "66·개척자", 94, 74, 15, @@ -76809,7 +76809,7 @@ ] ], [ - "【66기】둑구", + "66·둑구", 77, 15, 93, @@ -76832,7 +76832,7 @@ ] ], [ - "【66기】독피자", + "66·독피자", 78, 91, 15, @@ -76854,7 +76854,7 @@ ] ], [ - "【66기】빙글빙글", + "66·빙글빙글", 80, 15, 89, @@ -76876,7 +76876,7 @@ ] ], [ - "【66기】젠이츠", + "66·젠이츠", 82, 63, 13, @@ -76903,7 +76903,7 @@ ] ], [ - "【66기】다라", + "66·다라", 76, 91, 15, @@ -76925,7 +76925,7 @@ ] ], [ - "【66기】마요이", + "66·마요이", 65, 13, 81, @@ -76947,7 +76947,7 @@ ] ], [ - "【66기】스튜어트", + "66·스튜어트", 79, 15, 92, @@ -76972,7 +76972,7 @@ ] ], [ - "【66기】독구", + "66·독구", 65, 13, 80, @@ -77000,7 +77000,7 @@ ] ], [ - "【66기】케빈", + "66·케빈", 65, 83, 13, @@ -77036,7 +77036,7 @@ ] ], [ - "【66기】독이별택시", + "66·독이별택시", 95, 73, 16, @@ -77059,7 +77059,7 @@ ] ], [ - "【66기】Yennefer", + "66·Yennefer", 79, 15, 91, @@ -77082,7 +77082,7 @@ ] ], [ - "【66기】사스케", + "66·사스케", 19, 95, 71, @@ -77111,7 +77111,7 @@ ] ], [ - "【66기】진솔", + "66·진솔", 77, 15, 94, @@ -77134,7 +77134,7 @@ ] ], [ - "【66기】스폰지바낫", + "66·스폰지바낫", 82, 64, 13, @@ -77170,7 +77170,7 @@ ] ], [ - "【66기】간지밍이", + "66·간지밍이", 76, 15, 92, @@ -77195,7 +77195,7 @@ ] ], [ - "【66기】고여르미르", + "66·고여르미르", 78, 90, 15, @@ -77217,7 +77217,7 @@ ] ], [ - "【66기】뮬란", + "66·뮬란", 96, 73, 15, @@ -77244,7 +77244,7 @@ ] ], [ - "【66기】슬라임", + "66·슬라임", 95, 75, 15, @@ -77266,7 +77266,7 @@ ] ], [ - "【66기】초코송이", + "66·초코송이", 77, 91, 15, @@ -77288,7 +77288,7 @@ ] ], [ - "【66기】Navy마초", + "66·Navy마초", 76, 91, 15, @@ -77310,7 +77310,7 @@ ] ], [ - "【66기】와일드플라워", + "66·와일드플라워", 97, 74, 15, @@ -77336,7 +77336,7 @@ ] ], [ - "【66기】나는무장", + "66·나는무장", 76, 94, 15, @@ -77358,7 +77358,7 @@ ] ], [ - "【66기】지각생", + "66·지각생", 74, 15, 97, @@ -77380,7 +77380,7 @@ ] ], [ - "【66기】경국지색소교", + "66·경국지색소교", 75, 90, 19, @@ -77404,7 +77404,7 @@ ] ], [ - "【66기】라푼젤", + "66·라푼젤", 81, 88, 15, @@ -77426,7 +77426,7 @@ ] ], [ - "【66기】ㅊㄹㅊㄹ", + "66·ㅊㄹㅊㄹ", 79, 89, 15, @@ -77448,7 +77448,7 @@ ] ], [ - "【66기】페르난도", + "66·페르난도", 76, 16, 91, @@ -77470,7 +77470,7 @@ ] ], [ - "【66기】크루오네", + "66·크루오네", 15, 95, 72, @@ -77494,7 +77494,7 @@ ] ], [ - "【66기】잉여_국04", + "66·잉여_국04", 75, 16, 91, @@ -77516,7 +77516,7 @@ ] ], [ - "【66기】무지장감흥", + "66·무지장감흥", 16, 71, 95, @@ -77538,7 +77538,7 @@ ] ], [ - "【66기】도움전용유산싸개", + "66·도움전용유산싸개", 15, 74, 83, @@ -77560,7 +77560,7 @@ ] ], [ - "【67기】피카리오", + "67·피카리오", 77, 94, 15, @@ -77588,7 +77588,7 @@ ] ], [ - "【67기】바나낫", + "67·바나낫", 80, 93, 15, @@ -77620,7 +77620,7 @@ ] ], [ - "【67기】방통", + "67·방통", 15, 74, 95, @@ -77643,7 +77643,7 @@ ] ], [ - "【67기】슈퍼블루문", + "67·슈퍼블루문", 77, 91, 16, @@ -77667,7 +77667,7 @@ ] ], [ - "【67기】앵벌스", + "67·앵벌스", 75, 93, 15, @@ -77690,7 +77690,7 @@ ] ], [ - "【67기】태호", + "67·태호", 92, 78, 15, @@ -77713,7 +77713,7 @@ ] ], [ - "【67기】간지밍이", + "67·간지밍이", 76, 15, 98, @@ -77749,7 +77749,7 @@ ] ], [ - "【67기】최진리", + "67·최진리", 74, 15, 97, @@ -77773,7 +77773,7 @@ ] ], [ - "【67기】엘리자베스", + "67·엘리자베스", 96, 75, 15, @@ -77796,7 +77796,7 @@ ] ], [ - "【67기】뱌뱌", + "67·뱌뱌", 76, 93, 15, @@ -77819,7 +77819,7 @@ ] ], [ - "【67기】서희", + "67·서희", 75, 95, 15, @@ -77844,7 +77844,7 @@ ] ], [ - "【67기】미과 팬 독구", + "67·미과 팬 독구", 77, 93, 15, @@ -77868,7 +77868,7 @@ ] ], [ - "【67기】panpenpan", + "67·panpenpan", 75, 15, 95, @@ -77891,7 +77891,7 @@ ] ], [ - "【67기】외심장", + "67·외심장", 78, 15, 92, @@ -77913,7 +77913,7 @@ ] ], [ - "【67기】Navy마초", + "67·Navy마초", 77, 95, 15, @@ -77944,7 +77944,7 @@ ] ], [ - "【67기】독튜버", + "67·독튜버", 93, 79, 15, @@ -77978,7 +77978,7 @@ ] ], [ - "【67기】베이커리", + "67·베이커리", 75, 15, 97, @@ -78010,7 +78010,7 @@ ] ], [ - "【67기】마오마오", + "67·마오마오", 81, 88, 16, @@ -78035,7 +78035,7 @@ ] ], [ - "【67기】로비", + "67·로비", 15, 77, 93, @@ -78057,7 +78057,7 @@ ] ], [ - "【67기】사스케", + "67·사스케", 98, 15, 80, @@ -78097,7 +78097,7 @@ ] ], [ - "【67기】조승상", + "67·조승상", 95, 75, 16, @@ -78121,7 +78121,7 @@ ] ], [ - "【67기】강서유서", + "67·강서유서", 76, 94, 15, @@ -78146,7 +78146,7 @@ ] ], [ - "【67기】틴더", + "67·틴더", 80, 87, 15, @@ -78168,7 +78168,7 @@ ] ], [ - "【67기】황혼중", + "67·황혼중", 15, 72, 97, @@ -78190,7 +78190,7 @@ ] ], [ - "【67기】슬라임", + "67·슬라임", 93, 74, 16, @@ -78213,7 +78213,7 @@ ] ], [ - "【67기】독구탕", + "67·독구탕", 76, 16, 91, @@ -78235,7 +78235,7 @@ ] ], [ - "【67기】지원", + "67·지원", 15, 71, 97, @@ -78257,7 +78257,7 @@ ] ], [ - "【67기】불패", + "67·불패", 92, 77, 15, @@ -78279,7 +78279,7 @@ ] ], [ - "【67기】해피캣", + "67·해피캣", 92, 75, 15, @@ -78301,7 +78301,7 @@ ] ], [ - "【67기】진솔", + "67·진솔", 78, 91, 15, @@ -78323,7 +78323,7 @@ ] ], [ - "【67기】북오더", + "67·북오더", 77, 15, 90, @@ -78346,7 +78346,7 @@ ] ], [ - "【67기】신두리", + "67·신두리", 94, 74, 15, @@ -78369,7 +78369,7 @@ ] ], [ - "【67기】Hide_D", + "67·Hide_D", 76, 15, 96, @@ -78392,7 +78392,7 @@ ] ], [ - "【67기】날아라", + "67·날아라", 78, 92, 15, @@ -78414,7 +78414,7 @@ ] ], [ - "【67기】독구", + "67·독구", 77, 93, 15, @@ -78445,7 +78445,7 @@ ] ], [ - "【67기】파우스트", + "67·파우스트", 77, 15, 93, @@ -78467,7 +78467,7 @@ ] ], [ - "【67기】딸기알러지", + "67·딸기알러지", 77, 94, 15, @@ -78497,7 +78497,7 @@ ] ], [ - "【67기】덕구", + "67·덕구", 76, 92, 16, @@ -78520,7 +78520,7 @@ ] ], [ - "【67기】카제", + "67·카제", 79, 94, 15, @@ -78550,7 +78550,7 @@ ] ], [ - "【67기】링크", + "67·링크", 79, 90, 15, @@ -78572,7 +78572,7 @@ ] ], [ - "【67기】모래마녀", + "67·모래마녀", 74, 15, 96, @@ -78598,7 +78598,7 @@ ] ], [ - "【67기】카리나", + "67·카리나", 76, 16, 93, @@ -78623,7 +78623,7 @@ ] ], [ - "【67기】서림동", + "67·서림동", 79, 92, 15, @@ -78645,7 +78645,7 @@ ] ], [ - "【67기】기연만합니다", + "67·기연만합니다", 71, 15, 98, @@ -78670,7 +78670,7 @@ ] ], [ - "【67기】대교", + "67·대교", 91, 15, 78, @@ -78693,7 +78693,7 @@ ] ], [ - "【67기】100000$", + "67·100000$", 96, 76, 15, @@ -78723,7 +78723,7 @@ ] ], [ - "【67기】파이", + "67·파이", 78, 15, 89, @@ -78745,7 +78745,7 @@ ] ], [ - "【67기】육각형무지장", + "67·육각형무지장", 15, 70, 100, @@ -78769,7 +78769,7 @@ ] ], [ - "【67기】무지와플", + "67·무지와플", 15, 71, 98, @@ -78793,7 +78793,7 @@ ] ], [ - "【67기】순욱", + "67·순욱", 78, 15, 89, @@ -78817,7 +78817,7 @@ ] ], [ - "【67기】예턴이나", + "67·예턴이나", 78, 15, 93, @@ -78841,7 +78841,7 @@ ] ], [ - "【67기】춤추는달패이", + "67·춤추는달패이", 86, 84, 15, @@ -78868,7 +78868,7 @@ ] ], [ - "【67기】사렌", + "67·사렌", 75, 15, 96, @@ -78892,7 +78892,7 @@ ] ], [ - "【67기】아키노", + "67·아키노", 76, 94, 15, @@ -78916,7 +78916,7 @@ ] ], [ - "【67기】유카", + "67·유카", 95, 73, 15, @@ -78945,7 +78945,7 @@ ] ], [ - "【67기】kims24", + "67·kims24", 88, 80, 15, @@ -78967,7 +78967,7 @@ ] ], [ - "【67기】세르네오", + "67·세르네오", 15, 78, 92, @@ -78990,7 +78990,7 @@ ] ], [ - "【67기】덕", + "67·덕", 96, 76, 15, @@ -79017,7 +79017,7 @@ ] ], [ - "【67기】마요이", + "67·마요이", 70, 15, 101, @@ -79040,7 +79040,7 @@ ] ], [ - "【67기】니쉬", + "67·니쉬", 15, 77, 90, @@ -79062,7 +79062,7 @@ ] ], [ - "【67기】무능장", + "67·무능장", 15, 83, 86, @@ -79084,7 +79084,7 @@ ] ], [ - "【67기】부활한협동전", + "67·부활한협동전", 80, 90, 15, @@ -79106,7 +79106,7 @@ ] ], [ - "【67기】ㅊㄹㅊㄹ", + "67·ㅊㄹㅊㄹ", 78, 15, 91, @@ -79130,7 +79130,7 @@ ] ], [ - "【67기】캬루", + "67·캬루", 76, 15, 93, @@ -79152,7 +79152,7 @@ ] ], [ - "【68기】공학토끼", + "68·공학토끼", 78, 16, 90, @@ -79174,7 +79174,7 @@ ] ], [ - "【68기】포카리나메코", + "68·포카리나메코", 78, 89, 15, @@ -79196,7 +79196,7 @@ ] ], [ - "【68기】핑핑이나메코", + "68·핑핑이나메코", 93, 74, 16, @@ -79220,7 +79220,7 @@ ] ], [ - "【68기】無名別動隊", + "68·無名別動隊", 66, 13, 79, @@ -79246,7 +79246,7 @@ ] ], [ - "【68기】인민의 영웅 독구", + "68·인민의 영웅 독구", 18, 71, 93, @@ -79268,7 +79268,7 @@ ] ], [ - "【68기】척", + "68·척", 78, 90, 15, @@ -79293,7 +79293,7 @@ ] ], [ - "【68기】압도적으로 긍정적", + "68·압도적으로 긍정적", 95, 77, 15, @@ -79322,7 +79322,7 @@ ] ], [ - "【68기】원영토끼", + "68·원영토끼", 78, 90, 15, @@ -79345,7 +79345,7 @@ ] ], [ - "【68기】크루오네시아유카류", + "68·크루오네시아유카류", 82, 91, 15, @@ -79371,7 +79371,7 @@ ] ], [ - "【68기】와일드플라워", + "68·와일드플라워", 93, 77, 16, @@ -79400,7 +79400,7 @@ ] ], [ - "【68기】마요이", + "68·마요이", 76, 15, 92, @@ -79423,7 +79423,7 @@ ] ], [ - "【68기】카이스트", + "68·카이스트", 81, 15, 91, @@ -79451,7 +79451,7 @@ ] ], [ - "【68기】덕구", + "68·덕구", 79, 89, 16, @@ -79475,7 +79475,7 @@ ] ], [ - "【68기】히메카와 네네", + "68·히메카와 네네", 77, 15, 93, @@ -79497,7 +79497,7 @@ ] ], [ - "【68기】최진리", + "68·최진리", 78, 15, 94, @@ -79522,7 +79522,7 @@ ] ], [ - "【68기】SARS", + "68·SARS", 79, 15, 93, @@ -79552,7 +79552,7 @@ ] ], [ - "【68기】뭐할까나", + "68·뭐할까나", 79, 95, 15, @@ -79584,7 +79584,7 @@ ] ], [ - "【68기】리안", + "68·리안", 77, 15, 92, @@ -79607,7 +79607,7 @@ ] ], [ - "【68기】경국지색소교", + "68·경국지색소교", 80, 87, 15, @@ -79629,7 +79629,7 @@ ] ], [ - "【68기】Navy마초", + "68·Navy마초", 87, 85, 15, @@ -79653,7 +79653,7 @@ ] ], [ - "【68기】서림동", + "68·서림동", 79, 89, 15, @@ -79676,7 +79676,7 @@ ] ], [ - "【68기】이드", + "68·이드", 94, 73, 15, @@ -79698,7 +79698,7 @@ ] ], [ - "【68기】조예린", + "68·조예린", 97, 15, 74, @@ -79720,7 +79720,7 @@ ] ], [ - "【68기】파츄리", + "68·파츄리", 15, 73, 96, @@ -79743,7 +79743,7 @@ ] ], [ - "【68기】ㅊㄹㅊㄹ", + "68·ㅊㄹㅊㄹ", 79, 90, 15, @@ -79765,7 +79765,7 @@ ] ], [ - "【68기】라라", + "68·라라", 79, 89, 15, @@ -79787,7 +79787,7 @@ ] ], [ - "【68기】임사영", + "68·임사영", 80, 15, 92, @@ -79809,7 +79809,7 @@ ] ], [ - "【68기】라콘타", + "68·라콘타", 79, 93, 15, @@ -79845,7 +79845,7 @@ ] ], [ - "【68기】응나", + "68·응나", 77, 15, 96, @@ -79876,7 +79876,7 @@ ] ], [ - "【68기】황금나메코", + "68·황금나메코", 79, 88, 15, @@ -79901,7 +79901,7 @@ ] ], [ - "【68기】대장토끼", + "68·대장토끼", 75, 16, 92, @@ -79927,7 +79927,7 @@ ] ], [ - "【68기】야생토끼", + "68·야생토끼", 90, 79, 15, @@ -79954,7 +79954,7 @@ ] ], [ - "【68기】스탈린", + "68·스탈린", 92, 78, 16, @@ -79983,7 +79983,7 @@ ] ], [ - "【68기】1일1접속", + "68·1일1접속", 78, 88, 15, @@ -80005,7 +80005,7 @@ ] ], [ - "【68기】kims24", + "68·kims24", 80, 90, 16, @@ -80028,7 +80028,7 @@ ] ], [ - "【68기】지장", + "68·지장", 76, 16, 91, @@ -80051,7 +80051,7 @@ ] ], [ - "【68기】탕후루", + "68·탕후루", 96, 73, 15, @@ -80082,7 +80082,7 @@ ] ], [ - "【68기】진솔", + "68·진솔", 78, 90, 16, @@ -80105,7 +80105,7 @@ ] ], [ - "【68기】셀레미나메코", + "68·셀레미나메코", 78, 15, 92, @@ -80127,7 +80127,7 @@ ] ], [ - "【68기】마이나메코", + "68·마이나메코", 91, 15, 76, @@ -80149,7 +80149,7 @@ ] ], [ - "【68기】하나미 코토하", + "68·하나미 코토하", 78, 89, 15, @@ -80172,7 +80172,7 @@ ] ], [ - "【68기】쿄스케", + "68·쿄스케", 77, 93, 15, @@ -80202,7 +80202,7 @@ ] ], [ - "【68기】김정은", + "68·김정은", 82, 90, 15, @@ -80237,7 +80237,7 @@ ] ], [ - "【68기】ㅎㄴ", + "68·ㅎㄴ", 89, 80, 15, @@ -80260,7 +80260,7 @@ ] ], [ - "【68기】사스케", + "68·사스케", 77, 15, 92, @@ -80286,7 +80286,7 @@ ] ], [ - "【68기】래빗홀", + "68·래빗홀", 81, 89, 15, @@ -80308,7 +80308,7 @@ ] ], [ - "【68기】Hide_D", + "68·Hide_D", 77, 15, 93, @@ -80333,7 +80333,7 @@ ] ], [ - "【68기】퍄퍄", + "68·퍄퍄", 79, 89, 15, @@ -80356,7 +80356,7 @@ ] ], [ - "【68기】대교", + "68·대교", 94, 15, 74, @@ -80378,7 +80378,7 @@ ] ], [ - "【68기】전사의 모험", + "68·전사의 모험", 93, 73, 15, @@ -80403,7 +80403,7 @@ ] ], [ - "【68기】모니카", + "68·모니카", 79, 91, 15, @@ -80430,7 +80430,7 @@ ] ], [ - "【68기】간지밍이", + "68·간지밍이", 77, 16, 91, @@ -80454,7 +80454,7 @@ ] ], [ - "【68기】니쉬", + "68·니쉬", 87, 16, 79, @@ -80477,7 +80477,7 @@ ] ], [ - "【68기】슬라임", + "68·슬라임", 91, 76, 15, @@ -80500,7 +80500,7 @@ ] ], [ - "【68기】깔깔유머", + "68·깔깔유머", 80, 88, 15, @@ -80522,7 +80522,7 @@ ] ], [ - "【68기】개미호랑이", + "68·개미호랑이", 78, 15, 93, @@ -80545,7 +80545,7 @@ ] ], [ - "【68기】압도적으로 부정적", + "68·압도적으로 부정적", 79, 15, 91, @@ -80569,7 +80569,7 @@ ] ], [ - "【68기】resin", + "68·resin", 79, 15, 90, @@ -80593,7 +80593,7 @@ ] ], [ - "【68기】불패", + "68·불패", 79, 15, 91, @@ -80615,7 +80615,7 @@ ] ], [ - "【68기】제이크", + "68·제이크", 78, 15, 92, @@ -80637,7 +80637,7 @@ ] ], [ - "【68기】세르네오", + "68·세르네오", 15, 76, 90, @@ -80659,7 +80659,7 @@ ] ], [ - "【68기】깔보지마라", + "68·깔보지마라", 78, 16, 91, @@ -80681,7 +80681,7 @@ ] ], [ - "【68기】주사위나메코", + "68·주사위나메코", 78, 16, 91, @@ -80703,7 +80703,7 @@ ] ], [ - "【68기】Air", + "68·Air", 79, 90, 15, @@ -80727,7 +80727,7 @@ ] ], [ - "【68기】황혼중", + "68·황혼중", 15, 72, 98, @@ -80751,7 +80751,7 @@ ] ], [ - "【68기】くま", + "68·くま", 77, 15, 92, @@ -80773,7 +80773,7 @@ ] ], [ - "【68기】서희", + "68·서희", 76, 15, 92, @@ -80796,7 +80796,7 @@ ] ], [ - "【68기】하루5분", + "68·하루5분", 79, 16, 88, @@ -80818,7 +80818,7 @@ ] ], [ - "【68기】냐옹", + "68·냐옹", 16, 75, 92, @@ -80840,7 +80840,7 @@ ] ], [ - "【68기】조승상", + "68·조승상", 15, 91, 76, @@ -80863,7 +80863,7 @@ ] ], [ - "【68기】초아인지", + "68·초아인지", 81, 15, 86, @@ -80886,7 +80886,7 @@ ] ], [ - "【69기】쀼관", + "69·쀼관", 17, 85, 82, @@ -80908,7 +80908,7 @@ ] ], [ - "【69기】수사반장1958", + "69·수사반장1958", 15, 74, 97, @@ -80931,7 +80931,7 @@ ] ], [ - "【69기】바나낫", + "69·바나낫", 81, 91, 15, @@ -80960,7 +80960,7 @@ ] ], [ - "【69기】와일드플라워", + "69·와일드플라워", 78, 15, 92, @@ -80986,7 +80986,7 @@ ] ], [ - "【69기】Stardust", + "69·Stardust", 78, 89, 15, @@ -81008,7 +81008,7 @@ ] ], [ - "【69기】panpenpan", + "69·panpenpan", 78, 15, 93, @@ -81031,7 +81031,7 @@ ] ], [ - "【69기】로비", + "69·로비", 15, 73, 96, @@ -81053,7 +81053,7 @@ ] ], [ - "【69기】텟사", + "69·텟사", 76, 93, 16, @@ -81076,7 +81076,7 @@ ] ], [ - "【69기】기연봇", + "69·기연봇", 15, 74, 95, @@ -81098,7 +81098,7 @@ ] ], [ - "【69기】くま", + "69·くま", 78, 16, 90, @@ -81120,7 +81120,7 @@ ] ], [ - "【69기】Navy마초", + "69·Navy마초", 78, 92, 15, @@ -81143,7 +81143,7 @@ ] ], [ - "【69기】무다구치 렌야", + "69·무다구치 렌야", 96, 73, 15, @@ -81166,7 +81166,7 @@ ] ], [ - "【69기】불패", + "69·불패", 82, 88, 15, @@ -81188,7 +81188,7 @@ ] ], [ - "【69기】Air", + "69·Air", 78, 88, 18, @@ -81211,7 +81211,7 @@ ] ], [ - "【69기】임사영", + "69·임사영", 77, 15, 98, @@ -81242,7 +81242,7 @@ ] ], [ - "【69기】이세리아", + "69·이세리아", 81, 94, 15, @@ -81276,7 +81276,7 @@ ] ], [ - "【69기】호무새", + "69·호무새", 76, 92, 16, @@ -81299,7 +81299,7 @@ ] ], [ - "【69기】사스", + "69·사스", 80, 15, 91, @@ -81328,7 +81328,7 @@ ] ], [ - "【69기】셀레미", + "69·셀레미", 78, 15, 92, @@ -81350,7 +81350,7 @@ ] ], [ - "【69기】네이", + "69·네이", 80, 15, 92, @@ -81372,7 +81372,7 @@ ] ], [ - "【69기】서희", + "69·서희", 82, 15, 90, @@ -81394,7 +81394,7 @@ ] ], [ - "【69기】POCARI", + "69·POCARI", 89, 80, 15, @@ -81418,7 +81418,7 @@ ] ], [ - "【69기】김수현", + "69·김수현", 94, 78, 16, @@ -81444,7 +81444,7 @@ ] ], [ - "【69기】평민킬러", + "69·평민킬러", 80, 90, 16, @@ -81471,7 +81471,7 @@ ] ], [ - "【69기】꿀병", + "69·꿀병", 93, 76, 15, @@ -81494,7 +81494,7 @@ ] ], [ - "【69기】SARS", + "69·SARS", 82, 91, 15, @@ -81525,7 +81525,7 @@ ] ], [ - "【69기】니쉬", + "69·니쉬", 89, 80, 16, @@ -81547,7 +81547,7 @@ ] ], [ - "【69기】색스", + "69·색스", 95, 78, 15, @@ -81577,7 +81577,7 @@ ] ], [ - "【69기】블랙죠", + "69·블랙죠", 92, 78, 16, @@ -81601,7 +81601,7 @@ ] ], [ - "【69기】프리허그", + "69·프리허그", 77, 15, 95, @@ -81628,7 +81628,7 @@ ] ], [ - "【69기】無名別動隊", + "69·無名別動隊", 91, 77, 16, @@ -81651,7 +81651,7 @@ ] ], [ - "【69기】Attila the Hun", + "69·Attila the Hun", 93, 78, 15, @@ -81676,7 +81676,7 @@ ] ], [ - "【69기】방시혁", + "69·방시혁", 90, 80, 15, @@ -81698,7 +81698,7 @@ ] ], [ - "【69기】ㅊㄹㅊㄹ", + "69·ㅊㄹㅊㄹ", 80, 89, 15, @@ -81720,7 +81720,7 @@ ] ], [ - "【69기】봄꽃", + "69·봄꽃", 81, 89, 15, @@ -81742,7 +81742,7 @@ ] ], [ - "【69기】TASK0400", + "69·TASK0400", 79, 15, 88, @@ -81765,7 +81765,7 @@ ] ], [ - "【69기】독구", + "69·독구", 79, 15, 94, @@ -81794,7 +81794,7 @@ ] ], [ - "【69기】개미호랑이", + "69·개미호랑이", 78, 15, 94, @@ -81819,7 +81819,7 @@ ] ], [ - "【69기】RAKONTA", + "69·RAKONTA", 83, 88, 15, @@ -81851,7 +81851,7 @@ ] ], [ - "【69기】무장", + "69·무장", 80, 96, 15, @@ -81883,7 +81883,7 @@ ] ], [ - "【69기】덕구", + "69·덕구", 80, 90, 15, @@ -81906,7 +81906,7 @@ ] ], [ - "【69기】홍해인", + "69·홍해인", 16, 80, 88, @@ -81929,7 +81929,7 @@ ] ], [ - "【69기】강서유서", + "69·강서유서", 15, 81, 87, @@ -81953,7 +81953,7 @@ ] ], [ - "【69기】베이커리", + "69·베이커리", 16, 95, 72, @@ -81979,7 +81979,7 @@ ] ], [ - "【69기】태호", + "69·태호", 16, 74, 94, @@ -82005,7 +82005,7 @@ ] ], [ - "【69기】카이스트", + "69·카이스트", 77, 15, 92, @@ -82027,7 +82027,7 @@ ] ], [ - "【69기】에드워드", + "69·에드워드", 81, 17, 92, @@ -82061,7 +82061,7 @@ ] ], [ - "【69기】마요이", + "69·마요이", 78, 15, 92, @@ -82084,7 +82084,7 @@ ] ], [ - "【69기】이세리 니나", + "69·이세리 니나", 90, 78, 15, @@ -82107,7 +82107,7 @@ ] ], [ - "【69기】갈길도바쁜데", + "69·갈길도바쁜데", 77, 15, 94, @@ -82131,7 +82131,7 @@ ] ], [ - "【69기】냐옹", + "69·냐옹", 76, 92, 17, @@ -82153,7 +82153,7 @@ ] ], [ - "【69기】척", + "69·척", 77, 90, 15, @@ -82175,7 +82175,7 @@ ] ], [ - "【69기】Hide_D", + "69·Hide_D", 78, 15, 94, @@ -82197,7 +82197,7 @@ ] ], [ - "【69기】슬라임", + "69·슬라임", 82, 60, 14, @@ -82226,7 +82226,7 @@ ] ], [ - "【69기】킬라그램", + "69·킬라그램", 93, 74, 15, @@ -82248,7 +82248,7 @@ ] ], [ - "【69기】슈퍼블루문", + "69·슈퍼블루문", 15, 89, 78, @@ -82270,7 +82270,7 @@ ] ], [ - "【69기】난천", + "69·난천", 15, 77, 91, @@ -82292,7 +82292,7 @@ ] ], [ - "【69기】통장", + "69·통장", 97, 15, 73, @@ -82314,7 +82314,7 @@ ] ], [ - "【69기】호두", + "69·호두", 80, 92, 15, @@ -82338,7 +82338,7 @@ ] ], [ - "【69기】무지쟝", + "69·무지쟝", 76, 15, 93, @@ -82360,7 +82360,7 @@ ] ], [ - "【69기】최진리", + "69·최진리", 78, 94, 15, @@ -82385,7 +82385,7 @@ ] ], [ - "【69기】러브레터", + "69·러브레터", 15, 73, 97, @@ -82407,7 +82407,7 @@ ] ], [ - "【69기】북오더", + "69·북오더", 79, 92, 16, @@ -82437,7 +82437,7 @@ ] ], [ - "【69기】알렉스 카젤느", + "69·알렉스 카젤느", 77, 15, 95, @@ -82459,7 +82459,7 @@ ] ], [ - "【69기】지원", + "69·지원", 15, 72, 94, @@ -82481,7 +82481,7 @@ ] ], [ - "【69기】경매장테러범", + "69·경매장테러범", 91, 15, 76, @@ -82504,7 +82504,7 @@ ] ], [ - "【69기】열국지", + "69·열국지", 90, 78, 15, @@ -82527,7 +82527,7 @@ ] ], [ - "【69기】황혼중", + "69·황혼중", 15, 72, 96, @@ -82549,7 +82549,7 @@ ] ], [ - "【69기】돌아온너구리", + "69·돌아온너구리", 81, 87, 17, @@ -82571,7 +82571,7 @@ ] ], [ - "【69기】리안", + "69·리안", 77, 92, 15, @@ -82596,7 +82596,7 @@ ] ], [ - "【69기】진솔", + "69·진솔", 79, 87, 15, @@ -82618,7 +82618,7 @@ ] ], [ - "【69기】이재모피자", + "69·이재모피자", 17, 74, 90, @@ -82640,7 +82640,7 @@ ] ], [ - "【69기】tqtt", + "69·tqtt", 16, 75, 91, @@ -82662,7 +82662,7 @@ ] ], [ - "【69기】종방징", + "69·종방징", 15, 85, 77, @@ -82684,7 +82684,7 @@ ] ], [ - "【69기】불곰", + "69·불곰", 15, 74, 92, @@ -82706,7 +82706,7 @@ ] ], [ - "【69기】조승상", + "69·조승상", 91, 74, 15, @@ -82729,7 +82729,7 @@ ] ], [ - "【69기】유니스", + "69·유니스", 15, 78, 84, @@ -82751,7 +82751,7 @@ ] ], [ - "【71기】대마법사호바스", + "71·대마법사호바스", 76, 16, 92, @@ -82777,7 +82777,7 @@ ] ], [ - "【71기】로비", + "71·로비", 15, 72, 94, @@ -82799,7 +82799,7 @@ ] ], [ - "【71기】씩씩한아붕이", + "71·씩씩한아붕이", 73, 19, 88, @@ -82821,7 +82821,7 @@ ] ], [ - "【71기】북오더", + "71·북오더", 78, 16, 91, @@ -82852,7 +82852,7 @@ ] ], [ - "【71기】시끄럽고버거나줘요", + "71·시끄럽고버거나줘요", 75, 15, 91, @@ -82874,7 +82874,7 @@ ] ], [ - "【71기】☆☀️徠假淚構慨?️★", + "71·☆☀️徠假淚構慨?️★", 88, 70, 15, @@ -82899,7 +82899,7 @@ ] ], [ - "【71기】tqtt", + "71·tqtt", 89, 77, 15, @@ -82921,7 +82921,7 @@ ] ], [ - "【71기】오호", + "71·오호", 94, 74, 15, @@ -82948,7 +82948,7 @@ ] ], [ - "【71기】앵버거추심상담사", + "71·앵버거추심상담사", 73, 16, 90, @@ -82970,7 +82970,7 @@ ] ], [ - "【71기】척", + "71·척", 74, 91, 15, @@ -82992,7 +82992,7 @@ ] ], [ - "【71기】로비아", + "71·로비아", 15, 73, 94, @@ -83015,7 +83015,7 @@ ] ], [ - "【71기】강유", + "71·강유", 78, 15, 88, @@ -83037,7 +83037,7 @@ ] ], [ - "【71기】독신", + "71·독신", 15, 73, 92, @@ -83061,7 +83061,7 @@ ] ], [ - "【71기】임사영", + "71·임사영", 76, 15, 92, @@ -83089,7 +83089,7 @@ ] ], [ - "【71기】Hide_D", + "71·Hide_D", 76, 15, 90, @@ -83111,7 +83111,7 @@ ] ], [ - "【71기】윌리스 캐리어", + "71·윌리스 캐리어", 80, 88, 15, @@ -83141,7 +83141,7 @@ ] ], [ - "【71기】버걱스", + "71·버걱스", 75, 15, 94, @@ -83170,7 +83170,7 @@ ] ], [ - "【71기】슬라임", + "71·슬라임", 90, 77, 15, @@ -83193,7 +83193,7 @@ ] ], [ - "【71기】니쉬", + "71·니쉬", 16, 88, 78, @@ -83215,7 +83215,7 @@ ] ], [ - "【71기】사카마따끄로에", + "71·사카마따끄로에", 74, 15, 92, @@ -83237,7 +83237,7 @@ ] ], [ - "【71기】퍄퍄", + "71·퍄퍄", 75, 91, 15, @@ -83259,7 +83259,7 @@ ] ], [ - "【71기】테테", + "71·테테", 76, 90, 15, @@ -83284,7 +83284,7 @@ ] ], [ - "【71기】샬럿", + "71·샬럿", 75, 86, 17, @@ -83306,7 +83306,7 @@ ] ], [ - "【71기】Navy마초", + "71·Navy마초", 75, 15, 92, @@ -83329,7 +83329,7 @@ ] ], [ - "【71기】불패", + "71·불패", 76, 15, 91, @@ -83351,7 +83351,7 @@ ] ], [ - "【71기】라콘타", + "71·라콘타", 75, 93, 15, @@ -83380,7 +83380,7 @@ ] ], [ - "【71기】대교", + "71·대교", 96, 71, 15, @@ -83410,7 +83410,7 @@ ] ], [ - "【71기】좋소고양이", + "71·좋소고양이", 93, 75, 16, @@ -83440,7 +83440,7 @@ ] ], [ - "【71기】비치나는솔로", + "71·비치나는솔로", 77, 15, 89, @@ -83463,7 +83463,7 @@ ] ], [ - "【71기】지원", + "71·지원", 72, 15, 96, @@ -83499,7 +83499,7 @@ ] ], [ - "【71기】외심장", + "71·외심장", 16, 91, 76, @@ -83521,7 +83521,7 @@ ] ], [ - "【71기】류화영", + "71·류화영", 74, 95, 15, @@ -83556,7 +83556,7 @@ ] ], [ - "【71기】춤추는달팽이", + "71·춤추는달팽이", 95, 73, 15, @@ -83584,7 +83584,7 @@ ] ], [ - "【71기】UGG", + "71·UGG", 75, 93, 15, @@ -83609,7 +83609,7 @@ ] ], [ - "【71기】와일드플라워", + "71·와일드플라워", 72, 15, 95, @@ -83638,7 +83638,7 @@ ] ], [ - "【71기】유리아", + "71·유리아", 73, 95, 15, @@ -83666,7 +83666,7 @@ ] ], [ - "【71기】레몬뽕", + "71·레몬뽕", 73, 15, 95, @@ -83688,7 +83688,7 @@ ] ], [ - "【71기】황혼중", + "71·황혼중", 15, 72, 96, @@ -83710,7 +83710,7 @@ ] ], [ - "【71기】쌍근", + "71·쌍근", 87, 79, 15, @@ -83738,7 +83738,7 @@ ] ], [ - "【71기】이걸로끝이다", + "71·이걸로끝이다", 81, 85, 16, @@ -83762,7 +83762,7 @@ ] ], [ - "【71기】ㅊㄹㅊㄹ", + "71·ㅊㄹㅊㄹ", 78, 86, 16, @@ -83785,7 +83785,7 @@ ] ], [ - "【71기】앵버거안주면머머리", + "71·앵버거안주면머머리", 74, 15, 93, @@ -83809,7 +83809,7 @@ ] ], [ - "【71기】선배마음에", + "71·선배마음에", 76, 15, 91, @@ -83835,7 +83835,7 @@ ] ], [ - "【71기】시끄럽고홍삼주세요", + "71·시끄럽고홍삼주세요", 96, 70, 15, @@ -83863,7 +83863,7 @@ ] ], [ - "【71기】셀레미", + "71·셀레미", 75, 15, 94, @@ -83885,7 +83885,7 @@ ] ], [ - "【71기】호호", + "71·호호", 77, 88, 15, @@ -83907,7 +83907,7 @@ ] ], [ - "【71기】감흥", + "71·감흥", 16, 73, 92, @@ -83929,7 +83929,7 @@ ] ], [ - "【71기】선배맘에탕탕", + "71·선배맘에탕탕", 79, 88, 15, @@ -83954,7 +83954,7 @@ ] ], [ - "【71기】Air", + "71·Air", 73, 94, 15, @@ -83981,7 +83981,7 @@ ] ], [ - "【71기】참새", + "71·참새", 92, 74, 15, @@ -84005,7 +84005,7 @@ ] ], [ - "【71기】서희", + "71·서희", 88, 15, 79, @@ -84027,7 +84027,7 @@ ] ], [ - "【71기】마요이", + "71·마요이", 15, 72, 95, @@ -84050,7 +84050,7 @@ ] ], [ - "【71기】로스트아크", + "71·로스트아크", 75, 15, 92, @@ -84073,7 +84073,7 @@ ] ], [ - "【71기】세르네오", + "71·세르네오", 15, 72, 93, @@ -84095,7 +84095,7 @@ ] ], [ - "【71기】의술내정장", + "71·의술내정장", 24, 66, 66, @@ -84119,7 +84119,7 @@ ] ], [ - "【71기】그러지마", + "71·그러지마", 75, 16, 91, @@ -84141,7 +84141,7 @@ ] ], [ - "【71기】독치킨", + "71·독치킨", 80, 89, 15, @@ -84163,7 +84163,7 @@ ] ], [ - "【71기】홍삼엑기스", + "71·홍삼엑기스", 75, 90, 15, @@ -84186,7 +84186,7 @@ ] ], [ - "【71기】최진리", + "71·최진리", 74, 93, 15, @@ -84209,7 +84209,7 @@ ] ], [ - "【71기】사하드", + "71·사하드", 73, 93, 15, @@ -84232,7 +84232,7 @@ ] ], [ - "【71기】쿄스케", + "71·쿄스케", 74, 91, 15, @@ -84258,7 +84258,7 @@ ] ], [ - "【71기】설지얌", + "71·설지얌", 78, 88, 15, @@ -84280,7 +84280,7 @@ ] ], [ - "【71기】코뿔소", + "71·코뿔소", 94, 72, 15, @@ -84305,7 +84305,7 @@ ] ], [ - "【71기】강서유서", + "71·강서유서", 91, 16, 74, @@ -84327,7 +84327,7 @@ ] ], [ - "【71기】くま", + "71·くま", 76, 16, 88, @@ -84349,7 +84349,7 @@ ] ], [ - "【71기】무지장입니다.", + "71·무지장입니다.", 16, 87, 75, @@ -84371,7 +84371,7 @@ ] ], [ - "【71기】진솔", + "71·진솔", 16, 73, 91, @@ -84393,7 +84393,7 @@ ] ], [ - "【71기】김유신", + "71·김유신", 79, 87, 15, @@ -84419,7 +84419,7 @@ ] ], [ - "【71기】개덥다", + "71·개덥다", 15, 71, 90, @@ -84441,7 +84441,7 @@ ] ], [ - "【72기】류화영", + "72·류화영", 72, 13, 85, @@ -84470,7 +84470,7 @@ ] ], [ - "【72기】척", + "72·척", 70, 83, 14, @@ -84495,7 +84495,7 @@ ] ], [ - "【72기】헬스요이", + "72·헬스요이", 13, 66, 86, @@ -84517,7 +84517,7 @@ ] ], [ - "【72기】와일드플라워", + "72·와일드플라워", 69, 14, 81, @@ -84539,7 +84539,7 @@ ] ], [ - "【72기】完顔宗弼", + "72·完顔宗弼", 73, 83, 13, @@ -84563,7 +84563,7 @@ ] ], [ - "【72기】외심장", + "72·외심장", 72, 14, 79, @@ -84585,7 +84585,7 @@ ] ], [ - "【72기】퐁구리", + "72·퐁구리", 13, 62, 89, @@ -84608,7 +84608,7 @@ ] ], [ - "【72기】So long!", + "72·So long!", 85, 69, 13, @@ -84632,7 +84632,7 @@ ] ], [ - "【72기】황혼중", + "72·황혼중", 14, 65, 86, @@ -84654,7 +84654,7 @@ ] ], [ - "【72기】?", + "72·?", 73, 80, 14, @@ -84678,7 +84678,7 @@ ] ], [ - "【72기】모기 물린 독구", + "72·모기 물린 독구", 14, 65, 85, @@ -84704,7 +84704,7 @@ ] ], [ - "【72기】네이", + "72·네이", 82, 13, 72, @@ -84726,7 +84726,7 @@ ] ], [ - "【72기】감흥", + "72·감흥", 21, 63, 82, @@ -84750,7 +84750,7 @@ ] ], [ - "【72기】이드", + "72·이드", 89, 62, 13, @@ -84772,7 +84772,7 @@ ] ], [ - "【72기】카마인", + "72·카마인", 69, 13, 89, @@ -84798,7 +84798,7 @@ ] ], [ - "【72기】장원영", + "72·장원영", 68, 13, 89, @@ -84829,7 +84829,7 @@ ] ], [ - "【72기】유카", + "72·유카", 70, 83, 14, @@ -84852,7 +84852,7 @@ ] ], [ - "【72기】강유", + "72·강유", 72, 13, 83, @@ -84879,7 +84879,7 @@ ] ], [ - "【72기】ㅊㄹㅊㄹ", + "72·ㅊㄹㅊㄹ", 70, 81, 13, @@ -84902,7 +84902,7 @@ ] ], [ - "【72기】조승상", + "72·조승상", 81, 71, 13, @@ -84924,7 +84924,7 @@ ] ], [ - "【72기】잘가요", + "72·잘가요", 73, 82, 14, @@ -84949,7 +84949,7 @@ ] ], [ - "【72기】미국주식보유자", + "72·미국주식보유자", 74, 89, 15, @@ -84983,7 +84983,7 @@ ] ], [ - "【72기】사호", + "72·사호", 74, 82, 13, @@ -85009,7 +85009,7 @@ ] ], [ - "【72기】Air", + "72·Air", 73, 81, 13, @@ -85033,7 +85033,7 @@ ] ], [ - "【72기】장마철", + "72·장마철", 71, 80, 13, @@ -85056,7 +85056,7 @@ ] ], [ - "【72기】알트아이젠", + "72·알트아이젠", 69, 84, 13, @@ -85081,7 +85081,7 @@ ] ], [ - "【72기】대교", + "72·대교", 85, 66, 13, @@ -85104,7 +85104,7 @@ ] ], [ - "【72기】강남순", + "72·강남순", 69, 82, 13, @@ -85126,7 +85126,7 @@ ] ], [ - "【72기】뜌땨", + "72·뜌땨", 86, 66, 14, @@ -85162,7 +85162,7 @@ ] ], [ - "【72기】누렁이", + "72·누렁이", 67, 89, 13, @@ -85189,7 +85189,7 @@ ] ], [ - "【72기】보디가드", + "72·보디가드", 89, 61, 13, @@ -85216,7 +85216,7 @@ ] ], [ - "【72기】몽고르기니 우라칸", + "72·몽고르기니 우라칸", 71, 81, 14, @@ -85239,7 +85239,7 @@ ] ], [ - "【72기】루이스", + "72·루이스", 69, 13, 86, @@ -85266,7 +85266,7 @@ ] ], [ - "【72기】꼬꼬댁", + "72·꼬꼬댁", 67, 13, 88, @@ -85298,7 +85298,7 @@ ] ], [ - "【72기】님들그거아세요?", + "72·님들그거아세요?", 69, 13, 82, @@ -85320,7 +85320,7 @@ ] ], [ - "【72기】독피자", + "72·독피자", 69, 13, 84, @@ -85344,7 +85344,7 @@ ] ], [ - "【72기】홍삼맛양갱", + "72·홍삼맛양갱", 76, 82, 13, @@ -85374,7 +85374,7 @@ ] ], [ - "【72기】임사영", + "72·임사영", 67, 13, 87, @@ -85396,7 +85396,7 @@ ] ], [ - "【72기】개복치", + "72·개복치", 67, 13, 89, @@ -85426,7 +85426,7 @@ ] ], [ - "【72기】Mella", + "72·Mella", 72, 86, 13, @@ -85458,7 +85458,7 @@ ] ], [ - "【72기】일레이나", + "72·일레이나", 71, 13, 84, @@ -85480,7 +85480,7 @@ ] ], [ - "【72기】라콘타", + "72·라콘타", 84, 13, 70, @@ -85504,7 +85504,7 @@ ] ], [ - "【72기】사스케", + "72·사스케", 80, 14, 73, @@ -85536,7 +85536,7 @@ ] ], [ - "【72기】하마", + "72·하마", 85, 73, 15, @@ -85559,7 +85559,7 @@ ] ], [ - "【72기】유니크는재야에봉인", + "72·유니크는재야에봉인", 80, 71, 13, @@ -85581,7 +85581,7 @@ ] ], [ - "【72기】애기븝미에얌", + "72·애기븝미에얌", 14, 65, 86, @@ -85603,7 +85603,7 @@ ] ], [ - "【72기】간지밍이", + "72·간지밍이", 17, 68, 79, @@ -85627,7 +85627,7 @@ ] ], [ - "【72기】금주영윤금희", + "72·금주영윤금희", 70, 82, 13, @@ -85649,7 +85649,7 @@ ] ], [ - "【72기】하비", + "72·하비", 13, 65, 88, @@ -85672,7 +85672,7 @@ ] ], [ - "【72기】유산내놔슬라임", + "72·유산내놔슬라임", 73, 88, 15, @@ -85699,7 +85699,7 @@ ] ], [ - "【72기】덕구", + "72·덕구", 71, 80, 14, @@ -85722,7 +85722,7 @@ ] ], [ - "【72기】경국지색소교", + "72·경국지색소교", 72, 82, 13, @@ -85745,7 +85745,7 @@ ] ], [ - "【72기】구경합니다", + "72·구경합니다", 14, 82, 67, @@ -85769,7 +85769,7 @@ ] ], [ - "【72기】카리나", + "72·카리나", 84, 61, 13, @@ -85794,7 +85794,7 @@ ] ], [ - "【72기】카이스트", + "72·카이스트", 69, 14, 85, @@ -85816,7 +85816,7 @@ ] ], [ - "【72기】물음표", + "72·물음표", 69, 84, 13, @@ -85840,7 +85840,7 @@ ] ], [ - "【72기】본닉공개반대", + "72·본닉공개반대", 75, 13, 82, @@ -85864,7 +85864,7 @@ ] ], [ - "【72기】くま", + "72·くま", 73, 14, 81, @@ -85891,7 +85891,7 @@ ] ], [ - "【72기】하냥", + "72·하냥", 72, 81, 13, @@ -85913,7 +85913,7 @@ ] ], [ - "【72기】조예린", + "72·조예린", 88, 13, 64, @@ -85936,7 +85936,7 @@ ] ], [ - "【72기】Navy마초", + "72·Navy마초", 85, 64, 14, @@ -85959,7 +85959,7 @@ ] ], [ - "【72기】국04", + "72·국04", 70, 13, 79, @@ -85981,7 +85981,7 @@ ] ], [ - "【72기】할아버지", + "72·할아버지", 15, 60, 89, @@ -86003,7 +86003,7 @@ ] ], [ - "【72기】북오더", + "72·북오더", 69, 13, 81, @@ -86025,7 +86025,7 @@ ] ], [ - "【72기】초록소", + "72·초록소", 13, 81, 67, @@ -86048,7 +86048,7 @@ ] ], [ - "【72기】서희", + "72·서희", 77, 13, 72, @@ -86071,7 +86071,7 @@ ] ], [ - "【73기】미친과학", + "73·미친과학", 71, 15, 89, @@ -86094,7 +86094,7 @@ ] ], [ - "【73기】로갈 돈", + "73·로갈 돈", 91, 70, 15, @@ -86126,7 +86126,7 @@ ] ], [ - "【73기】신도큐어그레이스", + "73·신도큐어그레이스", 73, 15, 88, @@ -86154,7 +86154,7 @@ ] ], [ - "【73기】생귀니우스", + "73·생귀니우스", 72, 15, 89, @@ -86189,7 +86189,7 @@ ] ], [ - "【73기】신에게부름받은이", + "73·신에게부름받은이", 16, 81, 78, @@ -86211,7 +86211,7 @@ ] ], [ - "【73기】페러스 매너스", + "73·페러스 매너스", 72, 15, 89, @@ -86240,7 +86240,7 @@ ] ], [ - "【73기】크렌스", + "73·크렌스", 90, 15, 73, @@ -86278,7 +86278,7 @@ ] ], [ - "【73기】김정은", + "73·김정은", 73, 87, 16, @@ -86304,7 +86304,7 @@ ] ], [ - "【73기】카토 시카리우스", + "73·카토 시카리우스", 89, 15, 71, @@ -86330,7 +86330,7 @@ ] ], [ - "【73기】와일드플라워", + "73·와일드플라워", 73, 16, 86, @@ -86354,7 +86354,7 @@ ] ], [ - "【73기】코르부스 코락스", + "73·코르부스 코락스", 72, 89, 15, @@ -86382,7 +86382,7 @@ ] ], [ - "【73기】라이온 엘 존슨", + "73·라이온 엘 존슨", 72, 88, 15, @@ -86418,7 +86418,7 @@ ] ], [ - "【73기】조승상", + "73·조승상", 85, 72, 16, @@ -86440,7 +86440,7 @@ ] ], [ - "【73기】이젠안녕", + "73·이젠안녕", 79, 81, 15, @@ -86466,7 +86466,7 @@ ] ], [ - "【73기】크피자빵", + "73·크피자빵", 71, 89, 15, @@ -86496,7 +86496,7 @@ ] ], [ - "【73기】CHANGMO", + "73·CHANGMO", 89, 71, 15, @@ -86519,7 +86519,7 @@ ] ], [ - "【73기】Air", + "73·Air", 73, 83, 20, @@ -86546,7 +86546,7 @@ ] ], [ - "【73기】최진리", + "73·최진리", 90, 70, 15, @@ -86570,7 +86570,7 @@ ] ], [ - "【73기】더위 먹은 독구", + "73·더위 먹은 독구", 15, 73, 86, @@ -86594,7 +86594,7 @@ ] ], [ - "【73기】황혼중", + "73·황혼중", 15, 89, 71, @@ -86617,7 +86617,7 @@ ] ], [ - "【73기】북오더", + "73·북오더", 72, 85, 16, @@ -86640,7 +86640,7 @@ ] ], [ - "【73기】신도8", + "73·신도8", 77, 15, 83, @@ -86663,7 +86663,7 @@ ] ], [ - "【73기】경국지색소교", + "73·경국지색소교", 75, 16, 84, @@ -86686,7 +86686,7 @@ ] ], [ - "【73기】제키엘", + "73·제키엘", 88, 70, 15, @@ -86714,7 +86714,7 @@ ] ], [ - "【73기】쒸익쒸익", + "73·쒸익쒸익", 86, 15, 74, @@ -86740,7 +86740,7 @@ ] ], [ - "【73기】대교", + "73·대교", 85, 73, 16, @@ -86767,7 +86767,7 @@ ] ], [ - "【73기】음양사", + "73·음양사", 74, 87, 15, @@ -86798,7 +86798,7 @@ ] ], [ - "【73기】이드", + "73·이드", 72, 15, 89, @@ -86823,7 +86823,7 @@ ] ], [ - "【73기】샐래미", + "73·샐래미", 16, 73, 86, @@ -86846,7 +86846,7 @@ ] ], [ - "【73기】저금통", + "73·저금통", 15, 71, 90, @@ -86869,7 +86869,7 @@ ] ], [ - "【73기】우타즈미 사쿠라코", + "73·우타즈미 사쿠라코", 72, 88, 15, @@ -86892,7 +86892,7 @@ ] ], [ - "【73기】쿠크세이튼", + "73·쿠크세이튼", 72, 15, 89, @@ -86914,7 +86914,7 @@ ] ], [ - "【73기】오레하상급융화재료", + "73·오레하상급융화재료", 73, 88, 15, @@ -86938,7 +86938,7 @@ ] ], [ - "【73기】신도6", + "73·신도6", 73, 85, 15, @@ -86962,7 +86962,7 @@ ] ], [ - "【73기】두다다다", + "73·두다다다", 75, 85, 16, @@ -86988,7 +86988,7 @@ ] ], [ - "【73기】건방진여고생", + "73·건방진여고생", 76, 15, 84, @@ -87013,7 +87013,7 @@ ] ], [ - "【73기】복숭아좋아", + "73·복숭아좋아", 72, 15, 88, @@ -87035,7 +87035,7 @@ ] ], [ - "【73기】니쉬", + "73·니쉬", 76, 85, 15, @@ -87062,7 +87062,7 @@ ] ], [ - "【73기】ㅇㅅㅇ", + "73·ㅇㅅㅇ", 74, 84, 16, @@ -87084,7 +87084,7 @@ ] ], [ - "【73기】이단심판관", + "73·이단심판관", 73, 88, 15, @@ -87111,7 +87111,7 @@ ] ], [ - "【73기】독구", + "73·독구", 72, 15, 89, @@ -87143,7 +87143,7 @@ ] ], [ - "【73기】웨이드 리플", + "73·웨이드 리플", 74, 84, 15, @@ -87169,7 +87169,7 @@ ] ], [ - "【73기】미친영어", + "73·미친영어", 85, 74, 15, @@ -87195,7 +87195,7 @@ ] ], [ - "【73기】라콘타", + "73·라콘타", 71, 15, 89, @@ -87217,7 +87217,7 @@ ] ], [ - "【73기】로부테 길리먼", + "73·로부테 길리먼", 90, 70, 15, @@ -87247,7 +87247,7 @@ ] ], [ - "【73기】쌀숭이", + "73·쌀숭이", 75, 86, 15, @@ -87269,7 +87269,7 @@ ] ], [ - "【73기】Navy마초", + "73·Navy마초", 84, 73, 16, @@ -87292,7 +87292,7 @@ ] ], [ - "【73기】보살", + "73·보살", 86, 16, 73, @@ -87316,7 +87316,7 @@ ] ], [ - "【73기】이번기지장", + "73·이번기지장", 75, 15, 85, @@ -87338,7 +87338,7 @@ ] ], [ - "【73기】없는사람", + "73·없는사람", 15, 73, 88, @@ -87360,7 +87360,7 @@ ] ], [ - "【73기】척", + "73·척", 72, 86, 15, @@ -87384,7 +87384,7 @@ ] ], [ - "【73기】스미다 아이코", + "73·스미다 아이코", 88, 15, 71, @@ -87406,7 +87406,7 @@ ] ], [ - "【73기】@_@", + "73·@_@", 75, 83, 15, @@ -87429,7 +87429,7 @@ ] ], [ - "【73기】사하드", + "73·사하드", 73, 85, 15, @@ -87451,7 +87451,7 @@ ] ], [ - "【74기】노트북", + "74·노트북", 73, 15, 92, @@ -87480,7 +87480,7 @@ ] ], [ - "【74기】앵무새", + "74·앵무새", 93, 73, 15, @@ -87515,7 +87515,7 @@ ] ], [ - "【74기】셀레미", + "74·셀레미", 73, 17, 89, @@ -87538,7 +87538,7 @@ ] ], [ - "【74기】신성제국 시민 독구", + "74·신성제국 시민 독구", 16, 73, 90, @@ -87561,7 +87561,7 @@ ] ], [ - "【74기】바나낫", + "74·바나낫", 92, 71, 15, @@ -87588,7 +87588,7 @@ ] ], [ - "【74기】라콘타", + "74·라콘타", 76, 15, 88, @@ -87610,7 +87610,7 @@ ] ], [ - "【74기】독구", + "74·독구", 77, 15, 89, @@ -87646,7 +87646,7 @@ ] ], [ - "【74기】조승상", + "74·조승상", 86, 77, 15, @@ -87668,7 +87668,7 @@ ] ], [ - "【74기】컴퓨터", + "74·컴퓨터", 76, 15, 89, @@ -87690,7 +87690,7 @@ ] ], [ - "【74기】나나시무메이", + "74·나나시무메이", 76, 15, 89, @@ -87714,7 +87714,7 @@ ] ], [ - "【74기】Navy마초", + "74·Navy마초", 89, 74, 16, @@ -87740,7 +87740,7 @@ ] ], [ - "【74기】독파이", + "74·독파이", 78, 16, 86, @@ -87762,7 +87762,7 @@ ] ], [ - "【74기】Samo", + "74·Samo", 74, 15, 91, @@ -87789,7 +87789,7 @@ ] ], [ - "【74기】임사영", + "74·임사영", 89, 75, 16, @@ -87820,7 +87820,7 @@ ] ], [ - "【74기】멸화홍염겁화작열", + "74·멸화홍염겁화작열", 77, 88, 15, @@ -87845,7 +87845,7 @@ ] ], [ - "【74기】간지밍이", + "74·간지밍이", 17, 74, 89, @@ -87868,7 +87868,7 @@ ] ], [ - "【74기】쉬자", + "74·쉬자", 15, 73, 90, @@ -87890,7 +87890,7 @@ ] ], [ - "【74기】카이스트", + "74·카이스트", 78, 15, 87, @@ -87913,7 +87913,7 @@ ] ], [ - "【74기】くま", + "74·くま", 78, 15, 88, @@ -87935,7 +87935,7 @@ ] ], [ - "【74기】덕구", + "74·덕구", 75, 90, 15, @@ -87962,7 +87962,7 @@ ] ], [ - "【74기】사스케", + "74·사스케", 75, 15, 91, @@ -87995,7 +87995,7 @@ ] ], [ - "【74기】독불장군", + "74·독불장군", 75, 88, 15, @@ -88021,7 +88021,7 @@ ] ], [ - "【74기】누구인가", + "74·누구인가", 79, 87, 15, @@ -88046,7 +88046,7 @@ ] ], [ - "【74기】클로제린츠", + "74·클로제린츠", 76, 88, 15, @@ -88074,7 +88074,7 @@ ] ], [ - "【74기】아브렐슈드", + "74·아브렐슈드", 77, 86, 15, @@ -88097,7 +88097,7 @@ ] ], [ - "【74기】이드", + "74·이드", 73, 15, 92, @@ -88120,7 +88120,7 @@ ] ], [ - "【74기】Hide_D", + "74·Hide_D", 75, 15, 89, @@ -88142,7 +88142,7 @@ ] ], [ - "【74기】강유", + "74·강유", 79, 15, 88, @@ -88167,7 +88167,7 @@ ] ], [ - "【74기】사랑에 빠진 독구", + "74·사랑에 빠진 독구", 78, 15, 86, @@ -88194,7 +88194,7 @@ ] ], [ - "【74기】윤하", + "74·윤하", 75, 91, 15, @@ -88226,7 +88226,7 @@ ] ], [ - "【74기】황진", + "74·황진", 75, 87, 16, @@ -88251,7 +88251,7 @@ ] ], [ - "【74기】슈퍼독구문", + "74·슈퍼독구문", 74, 15, 90, @@ -88273,7 +88273,7 @@ ] ], [ - "【74기】참세", + "74·참세", 15, 73, 89, @@ -88295,7 +88295,7 @@ ] ], [ - "【74기】와일드플라워", + "74·와일드플라워", 76, 15, 90, @@ -88317,7 +88317,7 @@ ] ], [ - "【74기】독일", + "74·독일", 90, 73, 15, @@ -88342,7 +88342,7 @@ ] ], [ - "【74기】라우리엘", + "74·라우리엘", 75, 15, 90, @@ -88366,7 +88366,7 @@ ] ], [ - "【74기】독퇴근", + "74·독퇴근", 74, 15, 91, @@ -88399,7 +88399,7 @@ ] ], [ - "【74기】독갸루", + "74·독갸루", 90, 71, 16, @@ -88424,7 +88424,7 @@ ] ], [ - "【74기】가는세월", + "74·가는세월", 78, 85, 15, @@ -88447,7 +88447,7 @@ ] ], [ - "【74기】독페이크", + "74·독페이크", 88, 74, 17, @@ -88474,7 +88474,7 @@ ] ], [ - "【74기】민트독끼", + "74·민트독끼", 16, 77, 85, @@ -88496,7 +88496,7 @@ ] ], [ - "【74기】울란바토르", + "74·울란바토르", 75, 15, 89, @@ -88518,7 +88518,7 @@ ] ], [ - "【74기】독시노 아이", + "74·독시노 아이", 76, 92, 15, @@ -88550,7 +88550,7 @@ ] ], [ - "【74기】서희", + "74·서희", 78, 15, 87, @@ -88576,7 +88576,7 @@ ] ], [ - "【74기】진브", + "74·진브", 78, 15, 85, @@ -88598,7 +88598,7 @@ ] ], [ - "【74기】상승조", + "74·상승조", 90, 75, 15, @@ -88621,7 +88621,7 @@ ] ], [ - "【74기】뽀구미", + "74·뽀구미", 93, 71, 15, @@ -88650,7 +88650,7 @@ ] ], [ - "【74기】최진리", + "74·최진리", 92, 72, 15, @@ -88673,7 +88673,7 @@ ] ], [ - "【74기】panpenpan", + "74·panpenpan", 75, 15, 89, @@ -88696,7 +88696,7 @@ ] ], [ - "【74기】유카", + "74·유카", 15, 72, 92, @@ -88718,7 +88718,7 @@ ] ], [ - "【74기】지각", + "74·지각", 76, 15, 87, @@ -88741,7 +88741,7 @@ ] ], [ - "【74기】영웅전설", + "74·영웅전설", 88, 76, 16, @@ -88765,7 +88765,7 @@ ] ], [ - "【74기】Bianchi", + "74·Bianchi", 75, 89, 15, @@ -88790,7 +88790,7 @@ ] ], [ - "【74기】초속70ms", + "74·초속70ms", 86, 76, 15, @@ -88812,7 +88812,7 @@ ] ], [ - "【74기】니쉬", + "74·니쉬", 77, 15, 88, @@ -88835,7 +88835,7 @@ ] ], [ - "【74기】피스오브문", + "74·피스오브문", 73, 15, 91, @@ -88859,7 +88859,7 @@ ] ], [ - "【74기】웨이드 리플", + "74·웨이드 리플", 79, 87, 15, @@ -88883,7 +88883,7 @@ ] ], [ - "【74기】다크템플러", + "74·다크템플러", 78, 83, 16, @@ -88907,7 +88907,7 @@ ] ], [ - "【76기】김만득", + "76·김만득", 78, 90, 15, @@ -88933,7 +88933,7 @@ ] ], [ - "【76기】퍄퍄", + "76·퍄퍄", 67, 13, 80, @@ -88955,7 +88955,7 @@ ] ], [ - "【76기】Ten va pas", + "76·Ten va pas", 95, 79, 15, @@ -88984,7 +88984,7 @@ ] ], [ - "【76기】독구", + "76·독구", 79, 15, 92, @@ -89006,7 +89006,7 @@ ] ], [ - "【76기】냥냥냥", + "76·냥냥냥", 91, 81, 17, @@ -89037,7 +89037,7 @@ ] ], [ - "【76기】임전호시노", + "76·임전호시노", 76, 97, 15, @@ -89065,7 +89065,7 @@ ] ], [ - "【76기】강유", + "76·강유", 75, 15, 96, @@ -89092,7 +89092,7 @@ ] ], [ - "【76기】민트토끼", + "76·민트토끼", 68, 80, 13, @@ -89114,7 +89114,7 @@ ] ], [ - "【76기】핑크맨", + "76·핑크맨", 78, 15, 95, @@ -89145,7 +89145,7 @@ ] ], [ - "【76기】대동강맥주", + "76·대동강맥주", 78, 15, 96, @@ -89168,7 +89168,7 @@ ] ], [ - "【76기】라라란", + "76·라라란", 67, 82, 13, @@ -89193,7 +89193,7 @@ ] ], [ - "【76기】외심장", + "76·외심장", 68, 13, 81, @@ -89218,7 +89218,7 @@ ] ], [ - "【76기】집행관 솔라스", + "76·집행관 솔라스", 89, 81, 15, @@ -89240,7 +89240,7 @@ ] ], [ - "【76기】설윤아", + "76·설윤아", 68, 13, 81, @@ -89273,7 +89273,7 @@ ] ], [ - "【76기】간지밍이", + "76·간지밍이", 18, 92, 79, @@ -89300,7 +89300,7 @@ ] ], [ - "【76기】마요이", + "76·마요이", 15, 73, 98, @@ -89322,7 +89322,7 @@ ] ], [ - "【76기】네이", + "76·네이", 82, 92, 15, @@ -89344,7 +89344,7 @@ ] ], [ - "【76기】감흥", + "76·감흥", 19, 73, 95, @@ -89367,7 +89367,7 @@ ] ], [ - "【76기】4a", + "76·4a", 79, 15, 94, @@ -89392,7 +89392,7 @@ ] ], [ - "【76기】くま", + "76·くま", 75, 15, 96, @@ -89414,7 +89414,7 @@ ] ], [ - "【76기】나츠이로마츠리", + "76·나츠이로마츠리", 77, 15, 94, @@ -89436,7 +89436,7 @@ ] ], [ - "【76기】평민킬러", + "76·평민킬러", 82, 64, 13, @@ -89462,7 +89462,7 @@ ] ], [ - "【76기】라콘타", + "76·라콘타", 13, 80, 65, @@ -89485,7 +89485,7 @@ ] ], [ - "【76기】Hide_D", + "76·Hide_D", 67, 13, 80, @@ -89507,7 +89507,7 @@ ] ], [ - "【76기】item", + "76·item", 82, 94, 15, @@ -89536,7 +89536,7 @@ ] ], [ - "【76기】아직도 덥다", + "76·아직도 덥다", 78, 15, 95, @@ -89558,7 +89558,7 @@ ] ], [ - "【76기】불안핑", + "76·불안핑", 79, 96, 15, @@ -89584,7 +89584,7 @@ ] ], [ - "【76기】서희", + "76·서희", 79, 16, 95, @@ -89606,7 +89606,7 @@ ] ], [ - "【76기】카이스트", + "76·카이스트", 79, 16, 98, @@ -89640,7 +89640,7 @@ ] ], [ - "【76기】카마인", + "76·카마인", 68, 13, 80, @@ -89662,7 +89662,7 @@ ] ], [ - "【76기】우승기원독구", + "76·우승기원독구", 16, 78, 93, @@ -89685,7 +89685,7 @@ ] ], [ - "【76기】진저웨일", + "76·진저웨일", 91, 79, 15, @@ -89708,7 +89708,7 @@ ] ], [ - "【76기】임사영", + "76·임사영", 76, 99, 15, @@ -89742,7 +89742,7 @@ ] ], [ - "【76기】삼모하는 돌아이", + "76·삼모하는 돌아이", 79, 15, 93, @@ -89766,7 +89766,7 @@ ] ], [ - "【76기】대교", + "76·대교", 99, 76, 15, @@ -89793,7 +89793,7 @@ ] ], [ - "【76기】고양", + "76·고양", 71, 15, 84, @@ -89821,7 +89821,7 @@ ] ], [ - "【76기】셀레미", + "76·셀레미", 77, 15, 98, @@ -89849,7 +89849,7 @@ ] ], [ - "【76기】호구", + "76·호구", 95, 77, 16, @@ -89875,7 +89875,7 @@ ] ], [ - "【76기】빠스", + "76·빠스", 79, 92, 16, @@ -89902,7 +89902,7 @@ ] ], [ - "【76기】천통군주", + "76·천통군주", 68, 83, 13, @@ -89931,7 +89931,7 @@ ] ], [ - "【76기】갬비슨", + "76·갬비슨", 70, 78, 13, @@ -89955,7 +89955,7 @@ ] ], [ - "【76기】이호", + "76·이호", 78, 16, 97, @@ -89981,7 +89981,7 @@ ] ], [ - "【76기】류화영", + "76·류화영", 93, 15, 79, @@ -90003,7 +90003,7 @@ ] ], [ - "【76기】북오더", + "76·북오더", 81, 91, 15, @@ -90026,7 +90026,7 @@ ] ], [ - "【76기】만리향", + "76·만리향", 14, 66, 78, @@ -90049,7 +90049,7 @@ ] ], [ - "【76기】Air", + "76·Air", 82, 90, 16, @@ -90072,7 +90072,7 @@ ] ], [ - "【76기】사스케", + "76·사스케", 79, 15, 93, @@ -90101,7 +90101,7 @@ ] ], [ - "【76기】페이크", + "76·페이크", 16, 73, 99, @@ -90124,7 +90124,7 @@ ] ], [ - "【76기】도적", + "76·도적", 15, 98, 73, @@ -90148,7 +90148,7 @@ ] ], [ - "【76기】황혼중", + "76·황혼중", 15, 98, 74, @@ -90170,7 +90170,7 @@ ] ], [ - "【76기】Sunderland", + "76·Sunderland", 78, 93, 15, @@ -90193,7 +90193,7 @@ ] ], [ - "【76기】니쉬", + "76·니쉬", 13, 83, 63, @@ -90216,7 +90216,7 @@ ] ], [ - "【76기】Nobel", + "76·Nobel", 91, 79, 17, @@ -90240,7 +90240,7 @@ ] ], [ - "【76기】panpenpan", + "76·panpenpan", 79, 15, 93, @@ -90262,7 +90262,7 @@ ] ], [ - "【76기】토끼카류토끼", + "76·토끼카류토끼", 65, 13, 82, @@ -90284,7 +90284,7 @@ ] ], [ - "【76기】블랙죠", + "76·블랙죠", 62, 63, 60, @@ -90306,7 +90306,7 @@ ] ], [ - "【76기】최진리", + "76·최진리", 63, 13, 83, @@ -90328,7 +90328,7 @@ ] ], [ - "【76기】늦었다냥", + "76·늦었다냥", 90, 83, 16, @@ -90357,7 +90357,7 @@ ] ], [ - "【76기】다육이", + "76·다육이", 77, 92, 16, @@ -90379,7 +90379,7 @@ ] ], [ - "【76기】와일드플라워", + "76·와일드플라워", 16, 79, 92, @@ -90402,7 +90402,7 @@ ] ], [ - "【76기】최강록", + "76·최강록", 79, 93, 16, @@ -90430,7 +90430,7 @@ ] ], [ - "【76기】서림동", + "76·서림동", 78, 91, 17, @@ -90452,7 +90452,7 @@ ] ], [ - "【76기】쿠가 쥰", + "76·쿠가 쥰", 17, 80, 83, @@ -90474,7 +90474,7 @@ ] ], [ - "【76기】진솔", + "76·진솔", 15, 71, 98, @@ -90496,7 +90496,7 @@ ] ], [ - "【77기】바나낫", + "77·바나낫", 96, 73, 15, @@ -90523,7 +90523,7 @@ ] ], [ - "【77기】강유", + "77·강유", 78, 16, 88, @@ -90546,7 +90546,7 @@ ] ], [ - "【77기】진브", + "77·진브", 74, 15, 95, @@ -90583,7 +90583,7 @@ ] ], [ - "【77기】임사영", + "77·임사영", 94, 72, 15, @@ -90609,7 +90609,7 @@ ] ], [ - "【77기】도널드 존 트럼프", + "77·도널드 존 트럼프", 75, 15, 92, @@ -90634,7 +90634,7 @@ ] ], [ - "【77기】린브", + "77·린브", 98, 70, 15, @@ -90667,7 +90667,7 @@ ] ], [ - "【77기】궁녀", + "77·궁녀", 88, 15, 79, @@ -90690,7 +90690,7 @@ ] ], [ - "【77기】애쉬", + "77·애쉬", 74, 94, 15, @@ -90714,7 +90714,7 @@ ] ], [ - "【77기】카류소환수2", + "77·카류소환수2", 75, 16, 91, @@ -90737,7 +90737,7 @@ ] ], [ - "【77기】능송", + "77·능송", 93, 15, 79, @@ -90771,7 +90771,7 @@ ] ], [ - "【77기】5성장군 독구", + "77·5성장군 독구", 15, 77, 90, @@ -90793,7 +90793,7 @@ ] ], [ - "【77기】유화영", + "77·유화영", 15, 87, 78, @@ -90815,7 +90815,7 @@ ] ], [ - "【77기】어린 세자", + "77·어린 세자", 75, 15, 93, @@ -90843,7 +90843,7 @@ ] ], [ - "【77기】라콘타", + "77·라콘타", 77, 88, 15, @@ -90865,7 +90865,7 @@ ] ], [ - "【77기】카류소환수1", + "77·카류소환수1", 73, 15, 94, @@ -90895,7 +90895,7 @@ ] ], [ - "【77기】물패", + "77·물패", 75, 15, 90, @@ -90918,7 +90918,7 @@ ] ], [ - "【77기】낭패", + "77·낭패", 76, 15, 90, @@ -90940,7 +90940,7 @@ ] ], [ - "【77기】냥냥냥", + "77·냥냥냥", 78, 90, 15, @@ -90965,7 +90965,7 @@ ] ], [ - "【77기】키타가와 마린", + "77·키타가와 마린", 74, 15, 93, @@ -90989,7 +90989,7 @@ ] ], [ - "【77기】싸패", + "77·싸패", 93, 76, 15, @@ -91024,7 +91024,7 @@ ] ], [ - "【77기】라리에트", + "77·라리에트", 17, 74, 87, @@ -91046,7 +91046,7 @@ ] ], [ - "【77기】불패", + "77·불패", 74, 95, 15, @@ -91077,7 +91077,7 @@ ] ], [ - "【77기】카류", + "77·카류", 73, 15, 94, @@ -91101,7 +91101,7 @@ ] ], [ - "【77기】깡패", + "77·깡패", 74, 93, 15, @@ -91126,7 +91126,7 @@ ] ], [ - "【77기】개미호창", + "77·개미호창", 74, 15, 92, @@ -91150,7 +91150,7 @@ ] ], [ - "【77기】비스마르크", + "77·비스마르크", 75, 93, 15, @@ -91173,7 +91173,7 @@ ] ], [ - "【77기】마요이", + "77·마요이", 15, 72, 95, @@ -91195,7 +91195,7 @@ ] ], [ - "【77기】1557번 궁녀", + "77·1557번 궁녀", 74, 94, 15, @@ -91226,7 +91226,7 @@ ] ], [ - "【77기】Sase", + "77·Sase", 74, 15, 91, @@ -91251,7 +91251,7 @@ ] ], [ - "【77기】터보할멈", + "77·터보할멈", 90, 78, 16, @@ -91284,7 +91284,7 @@ ] ], [ - "【77기】Air", + "77·Air", 79, 89, 15, @@ -91307,7 +91307,7 @@ ] ], [ - "【77기】텟사", + "77·텟사", 77, 91, 15, @@ -91339,7 +91339,7 @@ ] ], [ - "【77기】간지밍이", + "77·간지밍이", 76, 18, 88, @@ -91364,7 +91364,7 @@ ] ], [ - "【77기】아지태", + "77·아지태", 74, 16, 92, @@ -91388,7 +91388,7 @@ ] ], [ - "【77기】대교", + "77·대교", 93, 15, 75, @@ -91410,7 +91410,7 @@ ] ], [ - "【77기】패패", + "77·패패", 95, 73, 15, @@ -91436,7 +91436,7 @@ ] ], [ - "【77기】시나모롤", + "77·시나모롤", 77, 16, 90, @@ -91459,7 +91459,7 @@ ] ], [ - "【77기】기녀", + "77·기녀", 74, 94, 15, @@ -91483,7 +91483,7 @@ ] ], [ - "【77기】플랑", + "77·플랑", 74, 95, 15, @@ -91517,7 +91517,7 @@ ] ], [ - "【77기】황진", + "77·황진", 76, 16, 91, @@ -91541,7 +91541,7 @@ ] ], [ - "【77기】복숭아좋아", + "77·복숭아좋아", 76, 16, 89, @@ -91563,7 +91563,7 @@ ] ], [ - "【77기】네이", + "77·네이", 87, 16, 79, @@ -91588,7 +91588,7 @@ ] ], [ - "【77기】단풍놀이", + "77·단풍놀이", 76, 90, 15, @@ -91610,7 +91610,7 @@ ] ], [ - "【77기】9rumee", + "77·9rumee", 76, 15, 91, @@ -91633,7 +91633,7 @@ ] ], [ - "【77기】くま", + "77·くま", 76, 15, 92, @@ -91655,7 +91655,7 @@ ] ], [ - "【77기】최진리", + "77·최진리", 90, 76, 15, @@ -91678,7 +91678,7 @@ ] ], [ - "【77기】이타도리 유지", + "77·이타도리 유지", 92, 15, 74, @@ -91700,7 +91700,7 @@ ] ], [ - "【77기】황혼중", + "77·황혼중", 15, 91, 75, @@ -91723,7 +91723,7 @@ ] ], [ - "【77기】Navy마초", + "77·Navy마초", 76, 88, 15, @@ -91745,7 +91745,7 @@ ] ], [ - "【77기】Bianchi", + "77·Bianchi", 77, 91, 15, @@ -91767,7 +91767,7 @@ ] ], [ - "【77기】지각생", + "77·지각생", 77, 87, 16, @@ -91789,7 +91789,7 @@ ] ], [ - "【77기】진 브", + "77·진 브", 32, 95, 55, @@ -91812,7 +91812,7 @@ ] ], [ - "【77기】쥰쥰", + "77·쥰쥰", 76, 88, 15, @@ -91834,7 +91834,7 @@ ] ], [ - "【77기】으라차", + "77·으라차", 75, 87, 16, @@ -91856,7 +91856,7 @@ ] ], [ - "【77기】뇽", + "77·뇽", 76, 87, 15, @@ -91878,7 +91878,7 @@ ] ], [ - "【77기】네팍", + "77·네팍", 75, 15, 88, @@ -91900,7 +91900,7 @@ ] ], [ - "【77기】메이웨더람쥐", + "77·메이웨더람쥐", 74, 16, 88, @@ -91922,7 +91922,7 @@ ] ], [ - "【77기】ㅊㄹㅊㄹ", + "77·ㅊㄹㅊㄹ", 75, 87, 15, @@ -91945,7 +91945,7 @@ ] ], [ - "【77기】춤과파티", + "77·춤과파티", 76, 87, 16, @@ -91967,7 +91967,7 @@ ] ], [ - "【77기】모찌", + "77·모찌", 74, 15, 89, @@ -91989,7 +91989,7 @@ ] ], [ - "【77기】박치기공룡", + "77·박치기공룡", 77, 85, 15, @@ -92011,7 +92011,7 @@ ] ], [ - "【77기】람각", + "77·람각", 76, 16, 86, @@ -92033,7 +92033,7 @@ ] ], [ - "【77기】.", + "77·.", 73, 18, 85, @@ -92055,7 +92055,7 @@ ] ], [ - "【77기】구경꾼", + "77·구경꾼", 72, 15, 88, @@ -92078,7 +92078,7 @@ ] ], [ - "【77기】솟쟝", + "77·솟쟝", 87, 72, 16, @@ -92100,7 +92100,7 @@ ] ], [ - "【78기】리춘희", + "78·리춘희", 77, 15, 91, @@ -92122,7 +92122,7 @@ ] ], [ - "【78기】뉴비", + "78·뉴비", 77, 94, 15, @@ -92150,7 +92150,7 @@ ] ], [ - "【78기】독건적 약탈꾼", + "78·독건적 약탈꾼", 77, 95, 15, @@ -92188,7 +92188,7 @@ ] ], [ - "【78기】Ktaeha", + "78·Ktaeha", 79, 16, 88, @@ -92214,7 +92214,7 @@ ] ], [ - "【78기】임사영", + "78·임사영", 79, 91, 15, @@ -92236,7 +92236,7 @@ ] ], [ - "【78기】김정은", + "78·김정은", 77, 94, 15, @@ -92264,7 +92264,7 @@ ] ], [ - "【78기】Navy마초", + "78·Navy마초", 76, 92, 15, @@ -92286,7 +92286,7 @@ ] ], [ - "【78기】이스마엘", + "78·이스마엘", 81, 15, 89, @@ -92309,7 +92309,7 @@ ] ], [ - "【78기】Hide_D", + "78·Hide_D", 78, 15, 93, @@ -92331,7 +92331,7 @@ ] ], [ - "【78기】와일드플라워", + "78·와일드플라워", 76, 15, 94, @@ -92356,7 +92356,7 @@ ] ], [ - "【78기】아후로디", + "78·아후로디", 77, 91, 16, @@ -92380,7 +92380,7 @@ ] ], [ - "【78기】수장", + "78·수장", 80, 91, 15, @@ -92411,7 +92411,7 @@ ] ], [ - "【78기】춤과파티", + "78·춤과파티", 78, 90, 15, @@ -92433,7 +92433,7 @@ ] ], [ - "【78기】독버지", + "78·독버지", 79, 91, 15, @@ -92460,7 +92460,7 @@ ] ], [ - "【78기】독구단 진브도둑", + "78·독구단 진브도둑", 77, 15, 93, @@ -92486,7 +92486,7 @@ ] ], [ - "【78기】김정일", + "78·김정일", 76, 15, 93, @@ -92516,7 +92516,7 @@ ] ], [ - "【78기】호나", + "78·호나", 90, 83, 15, @@ -92543,7 +92543,7 @@ ] ], [ - "【78기】최진리", + "78·최진리", 76, 15, 95, @@ -92565,7 +92565,7 @@ ] ], [ - "【78기】대설", + "78·대설", 79, 93, 15, @@ -92596,7 +92596,7 @@ ] ], [ - "【78기】화환부수기장인독구", + "78·화환부수기장인독구", 16, 72, 96, @@ -92620,7 +92620,7 @@ ] ], [ - "【78기】대교", + "78·대교", 93, 74, 15, @@ -92644,7 +92644,7 @@ ] ], [ - "【78기】불패", + "78·불패", 80, 15, 90, @@ -92666,7 +92666,7 @@ ] ], [ - "【78기】야호로아콘", + "78·야호로아콘", 76, 15, 96, @@ -92697,7 +92697,7 @@ ] ], [ - "【78기】영차로아콘", + "78·영차로아콘", 76, 96, 15, @@ -92730,7 +92730,7 @@ ] ], [ - "【78기】Sase", + "78·Sase", 76, 15, 94, @@ -92759,7 +92759,7 @@ ] ], [ - "【78기】boogle", + "78·boogle", 92, 77, 16, @@ -92782,7 +92782,7 @@ ] ], [ - "【78기】카이스트", + "78·카이스트", 80, 15, 92, @@ -92804,7 +92804,7 @@ ] ], [ - "【78기】토바", + "78·토바", 94, 75, 15, @@ -92827,7 +92827,7 @@ ] ], [ - "【78기】리병철", + "78·리병철", 78, 92, 15, @@ -92849,7 +92849,7 @@ ] ], [ - "【78기】반입금지", + "78·반입금지", 78, 90, 15, @@ -92871,7 +92871,7 @@ ] ], [ - "【78기】정말로아콘", + "78·정말로아콘", 76, 16, 89, @@ -92893,7 +92893,7 @@ ] ], [ - "【78기】독구", + "78·독구", 77, 15, 93, @@ -92923,7 +92923,7 @@ ] ], [ - "【78기】덕구", + "78·덕구", 78, 90, 15, @@ -92945,7 +92945,7 @@ ] ], [ - "【78기】크멘의 종", + "78·크멘의 종", 94, 15, 77, @@ -92972,7 +92972,7 @@ ] ], [ - "【78기】비스마르크", + "78·비스마르크", 78, 93, 15, @@ -92996,7 +92996,7 @@ ] ], [ - "【78기】원류환", + "78·원류환", 94, 79, 15, @@ -93021,7 +93021,7 @@ ] ], [ - "【78기】ranran", + "78·ranran", 80, 89, 16, @@ -93044,7 +93044,7 @@ ] ], [ - "【78기】최룡해", + "78·최룡해", 100, 70, 15, @@ -93075,7 +93075,7 @@ ] ], [ - "【78기】김여정", + "78·김여정", 77, 15, 96, @@ -93102,7 +93102,7 @@ ] ], [ - "【78기】스야", + "78·스야", 76, 15, 93, @@ -93124,7 +93124,7 @@ ] ], [ - "【78기】눈칫로아콘", + "78·눈칫로아콘", 76, 15, 91, @@ -93146,7 +93146,7 @@ ] ], [ - "【78기】미친과학", + "78·미친과학", 92, 78, 15, @@ -93170,7 +93170,7 @@ ] ], [ - "【78기】천리마", + "78·천리마", 15, 97, 72, @@ -93192,7 +93192,7 @@ ] ], [ - "【78기】습설", + "78·습설", 79, 90, 15, @@ -93216,7 +93216,7 @@ ] ], [ - "【78기】니나브겨드햇반뚝딱", + "78·니나브겨드햇반뚝딱", 80, 16, 88, @@ -93238,7 +93238,7 @@ ] ], [ - "【78기】굶주린 참새", + "78·굶주린 참새", 81, 93, 15, @@ -93266,7 +93266,7 @@ ] ], [ - "【78기】김일성", + "78·김일성", 78, 15, 91, @@ -93291,7 +93291,7 @@ ] ], [ - "【78기】NK", + "78·NK", 94, 78, 15, @@ -93319,7 +93319,7 @@ ] ], [ - "【78기】정성옥", + "78·정성옥", 19, 76, 88, @@ -93344,7 +93344,7 @@ ] ], [ - "【78기】네이", + "78·네이", 91, 81, 16, @@ -93369,7 +93369,7 @@ ] ], [ - "【78기】마요이", + "78·마요이", 15, 73, 95, @@ -93391,7 +93391,7 @@ ] ], [ - "【78기】독구?싶다", + "78·독구?싶다", 77, 15, 92, @@ -93416,7 +93416,7 @@ ] ], [ - "【78기】염인백화검", + "78·염인백화검", 82, 90, 15, @@ -93439,7 +93439,7 @@ ] ], [ - "【78기】인민탱크", + "78·인민탱크", 92, 80, 15, @@ -93468,7 +93468,7 @@ ] ], [ - "【78기】제갈여포", + "78·제갈여포", 79, 15, 88, @@ -93491,7 +93491,7 @@ ] ], [ - "【78기】독카류", + "78·독카류", 76, 90, 15, @@ -93515,7 +93515,7 @@ ] ], [ - "【78기】코드명다이스키", + "78·코드명다이스키", 96, 74, 15, @@ -93538,7 +93538,7 @@ ] ], [ - "【78기】독건적 경계근무원", + "78·독건적 경계근무원", 15, 73, 92, @@ -93560,7 +93560,7 @@ ] ], [ - "【78기】잡았다요놈", + "78·잡았다요놈", 78, 88, 15, @@ -93583,7 +93583,7 @@ ] ], [ - "【78기】조승상", + "78·조승상", 89, 76, 16, @@ -93605,7 +93605,7 @@ ] ], [ - "【78기】로력영웅", + "78·로력영웅", 15, 75, 91, @@ -93627,7 +93627,7 @@ ] ], [ - "【78기】밥먹달금", + "78·밥먹달금", 15, 72, 90, @@ -93650,7 +93650,7 @@ ] ], [ - "【79기】강자", + "79·강자", 79, 96, 15, @@ -93676,7 +93676,7 @@ ] ], [ - "【79기】임사영", + "79·임사영", 78, 102, 15, @@ -93711,7 +93711,7 @@ ] ], [ - "【79기】에다", + "79·에다", 100, 73, 15, @@ -93735,7 +93735,7 @@ ] ], [ - "【79기】Bee폭력티모", + "79·Bee폭력티모", 73, 16, 96, @@ -93757,7 +93757,7 @@ ] ], [ - "【79기】종", + "79·종", 82, 16, 91, @@ -93789,7 +93789,7 @@ ] ], [ - "【79기】장원영", + "79·장원영", 102, 70, 15, @@ -93813,7 +93813,7 @@ ] ], [ - "【79기】카류", + "79·카류", 97, 75, 15, @@ -93839,7 +93839,7 @@ ] ], [ - "【79기】키키라라비비", + "79·키키라라비비", 82, 15, 88, @@ -93861,7 +93861,7 @@ ] ], [ - "【79기】척", + "79·척", 15, 70, 101, @@ -93885,7 +93885,7 @@ ] ], [ - "【79기】퍄퍄", + "79·퍄퍄", 79, 92, 15, @@ -93913,7 +93913,7 @@ ] ], [ - "【79기】스쿼트", + "79·스쿼트", 96, 77, 15, @@ -93939,7 +93939,7 @@ ] ], [ - "【79기】김나영", + "79·김나영", 80, 92, 15, @@ -93961,7 +93961,7 @@ ] ], [ - "【79기】강유", + "79·강유", 79, 15, 92, @@ -93983,7 +93983,7 @@ ] ], [ - "【79기】바나낫", + "79·바나낫", 79, 95, 15, @@ -94008,7 +94008,7 @@ ] ], [ - "【79기】Hide_D", + "79·Hide_D", 74, 15, 98, @@ -94031,7 +94031,7 @@ ] ], [ - "【79기】총각파티", + "79·총각파티", 82, 91, 15, @@ -94057,7 +94057,7 @@ ] ], [ - "【79기】귀농한 독구", + "79·귀농한 독구", 15, 77, 95, @@ -94079,7 +94079,7 @@ ] ], [ - "【79기】영", + "79·영", 96, 78, 15, @@ -94109,7 +94109,7 @@ ] ], [ - "【79기】유산흡수", + "79·유산흡수", 78, 16, 95, @@ -94132,7 +94132,7 @@ ] ], [ - "【79기】윤석열", + "79·윤석열", 75, 15, 94, @@ -94155,7 +94155,7 @@ ] ], [ - "【79기】호나", + "79·호나", 91, 82, 15, @@ -94187,7 +94187,7 @@ ] ], [ - "【79기】셀레미파", + "79·셀레미파", 92, 80, 15, @@ -94210,7 +94210,7 @@ ] ], [ - "【79기】세종", + "79·세종", 76, 93, 15, @@ -94232,7 +94232,7 @@ ] ], [ - "【79기】Navy마초", + "79·Navy마초", 80, 91, 15, @@ -94254,7 +94254,7 @@ ] ], [ - "【79기】노네임", + "79·노네임", 74, 96, 15, @@ -94276,7 +94276,7 @@ ] ], [ - "【79기】스즈키상", + "79·스즈키상", 74, 15, 96, @@ -94299,7 +94299,7 @@ ] ], [ - "【79기】새해복많이받으세요", + "79·새해복많이받으세요", 79, 93, 16, @@ -94322,7 +94322,7 @@ ] ], [ - "【79기】마요이", + "79·마요이", 15, 73, 99, @@ -94346,7 +94346,7 @@ ] ], [ - "【79기】와일드플라워", + "79·와일드플라워", 79, 16, 97, @@ -94379,7 +94379,7 @@ ] ], [ - "【79기】독죽이", + "79·독죽이", 97, 74, 15, @@ -94406,7 +94406,7 @@ ] ], [ - "【79기】최진리", + "79·최진리", 77, 93, 15, @@ -94428,7 +94428,7 @@ ] ], [ - "【79기】대교", + "79·대교", 94, 82, 15, @@ -94463,7 +94463,7 @@ ] ], [ - "【79기】NK", + "79·NK", 76, 97, 15, @@ -94485,7 +94485,7 @@ ] ], [ - "【79기】복숭아좋아", + "79·복숭아좋아", 76, 15, 96, @@ -94507,7 +94507,7 @@ ] ], [ - "【79기】매그너스", + "79·매그너스", 94, 77, 15, @@ -94530,7 +94530,7 @@ ] ], [ - "【79기】panpenpan", + "79·panpenpan", 76, 15, 93, @@ -94553,7 +94553,7 @@ ] ], [ - "【79기】백화점레드썬", + "79·백화점레드썬", 78, 92, 15, @@ -94575,7 +94575,7 @@ ] ], [ - "【79기】비스마르크", + "79·비스마르크", 80, 95, 15, @@ -94605,7 +94605,7 @@ ] ], [ - "【79기】로비", + "79·로비", 19, 72, 95, @@ -94628,7 +94628,7 @@ ] ], [ - "【79기】카이스트", + "79·카이스트", 80, 17, 93, @@ -94651,7 +94651,7 @@ ] ], [ - "【79기】간지밍이", + "79·간지밍이", 19, 78, 91, @@ -94675,7 +94675,7 @@ ] ], [ - "【79기】소수맥", + "79·소수맥", 84, 90, 15, @@ -94701,7 +94701,7 @@ ] ], [ - "【79기】이바라히메", + "79·이바라히메", 79, 92, 16, @@ -94725,7 +94725,7 @@ ] ], [ - "【79기】사스케", + "79·사스케", 73, 94, 15, @@ -94749,7 +94749,7 @@ ] ], [ - "【79기】크렌스", + "79·크렌스", 77, 94, 15, @@ -94775,7 +94775,7 @@ ] ], [ - "【79기】네이", + "79·네이", 87, 15, 89, @@ -94798,7 +94798,7 @@ ] ], [ - "【79기】독구", + "79·독구", 77, 15, 96, @@ -94820,7 +94820,7 @@ ] ], [ - "【79기】진솔", + "79·진솔", 16, 71, 100, @@ -94843,7 +94843,7 @@ ] ], [ - "【79기】Sase", + "79·Sase", 79, 16, 90, @@ -94871,7 +94871,7 @@ ] ], [ - "【79기】쩝쩝", + "79·쩝쩝", 80, 92, 16, @@ -94900,7 +94900,7 @@ ] ], [ - "【79기】눈구", + "79·눈구", 15, 94, 76, @@ -94922,7 +94922,7 @@ ] ], [ - "【79기】?", + "79·?", 80, 15, 89, @@ -94949,7 +94949,7 @@ ] ], [ - "【79기】오징어", + "79·오징어", 78, 95, 15, @@ -94973,7 +94973,7 @@ ] ], [ - "【79기】Air", + "79·Air", 82, 93, 15, @@ -94999,7 +94999,7 @@ ] ], [ - "【79기】외심장", + "79·외심장", 79, 16, 93, @@ -95029,7 +95029,7 @@ ] ], [ - "【79기】이드", + "79·이드", 15, 78, 94, @@ -95051,7 +95051,7 @@ ] ], [ - "【79기】ㅊㄹㅊㄹ", + "79·ㅊㄹㅊㄹ", 81, 90, 15, @@ -95073,7 +95073,7 @@ ] ], [ - "【79기】니쉬", + "79·니쉬", 90, 15, 81, @@ -95096,7 +95096,7 @@ ] ], [ - "【79기】황혼중", + "79·황혼중", 15, 79, 93, @@ -95118,7 +95118,7 @@ ] ], [ - "【79기】양면 스쿠나", + "79·양면 스쿠나", 99, 73, 15, @@ -95145,7 +95145,7 @@ ] ], [ - "【79기】레드캡피자", + "79·레드캡피자", 74, 16, 96, @@ -95167,7 +95167,7 @@ ] ], [ - "【79기】도화가", + "79·도화가", 16, 73, 94, @@ -95189,7 +95189,7 @@ ] ], [ - "【79기】컴퓨터", + "79·컴퓨터", 78, 90, 17, @@ -95211,7 +95211,7 @@ ] ], [ - "【79기】Kman", + "79·Kman", 16, 90, 73, @@ -95233,7 +95233,7 @@ ] ], [ - "【79기】지금퇴근합니다", + "79·지금퇴근합니다", 15, 73, 93, @@ -95258,7 +95258,7 @@ ] ], [ - "【81기】독구", + "81·독구", 76, 15, 93, @@ -95284,7 +95284,7 @@ ] ], [ - "【81기】바나낫", + "81·바나낫", 82, 85, 15, @@ -95307,7 +95307,7 @@ ] ], [ - "【81기】니쉬", + "81·니쉬", 15, 71, 97, @@ -95330,7 +95330,7 @@ ] ], [ - "【81기】이드", + "81·이드", 15, 90, 78, @@ -95353,7 +95353,7 @@ ] ], [ - "【81기】강유", + "81·강유", 79, 15, 91, @@ -95380,7 +95380,7 @@ ] ], [ - "【81기】와일드플라워", + "81·와일드플라워", 77, 92, 15, @@ -95404,7 +95404,7 @@ ] ], [ - "【81기】척", + "81·척", 78, 88, 15, @@ -95426,7 +95426,7 @@ ] ], [ - "【81기】비스마르크", + "81·비스마르크", 77, 92, 15, @@ -95449,7 +95449,7 @@ ] ], [ - "【81기】호나", + "81·호나", 75, 94, 15, @@ -95474,7 +95474,7 @@ ] ], [ - "【81기】플로리다", + "81·플로리다", 76, 15, 90, @@ -95496,7 +95496,7 @@ ] ], [ - "【81기】이서", + "81·이서", 90, 15, 81, @@ -95524,7 +95524,7 @@ ] ], [ - "【81기】Nunsense", + "81·Nunsense", 82, 87, 15, @@ -95547,7 +95547,7 @@ ] ], [ - "【81기】팔일기", + "81·팔일기", 80, 16, 90, @@ -95572,7 +95572,7 @@ ] ], [ - "【81기】꽃가루 알러지 독구", + "81·꽃가루 알러지 독구", 16, 71, 97, @@ -95596,7 +95596,7 @@ ] ], [ - "【81기】똑토끼", + "81·똑토끼", 15, 71, 96, @@ -95618,7 +95618,7 @@ ] ], [ - "【81기】강서유서", + "81·강서유서", 87, 15, 79, @@ -95640,7 +95640,7 @@ ] ], [ - "【81기】만렙토끼", + "81·만렙토끼", 79, 87, 15, @@ -95663,7 +95663,7 @@ ] ], [ - "【81기】대장토끼", + "81·대장토끼", 75, 93, 16, @@ -95689,7 +95689,7 @@ ] ], [ - "【81기】고죠 사토루", + "81·고죠 사토루", 75, 93, 15, @@ -95716,7 +95716,7 @@ ] ], [ - "【81기】실훔", + "81·실훔", 79, 91, 16, @@ -95743,7 +95743,7 @@ ] ], [ - "【81기】리치사기꾼진브", + "81·리치사기꾼진브", 88, 77, 15, @@ -95767,7 +95767,7 @@ ] ], [ - "【81기】잠수", + "81·잠수", 76, 15, 94, @@ -95790,7 +95790,7 @@ ] ], [ - "【81기】Sase", + "81·Sase", 78, 15, 90, @@ -95821,7 +95821,7 @@ ] ], [ - "【81기】Hide_D", + "81·Hide_D", 74, 15, 94, @@ -95843,7 +95843,7 @@ ] ], [ - "【81기】무당벌레", + "81·무당벌레", 92, 76, 15, @@ -95872,7 +95872,7 @@ ] ], [ - "【81기】사스케", + "81·사스케", 75, 15, 92, @@ -95895,7 +95895,7 @@ ] ], [ - "【81기】밀하우스 벤하우튼", + "81·밀하우스 벤하우튼", 91, 76, 16, @@ -95919,7 +95919,7 @@ ] ], [ - "【81기】불패", + "81·불패", 81, 15, 88, @@ -95944,7 +95944,7 @@ ] ], [ - "【81기】TATUM", + "81·TATUM", 77, 15, 89, @@ -95966,7 +95966,7 @@ ] ], [ - "【81기】나나치", + "81·나나치", 93, 75, 16, @@ -95991,7 +95991,7 @@ ] ], [ - "【81기】라비린", + "81·라비린", 76, 16, 92, @@ -96018,7 +96018,7 @@ ] ], [ - "【81기】평민킬러", + "81·평민킬러", 76, 94, 15, @@ -96055,7 +96055,7 @@ ] ], [ - "【81기】민희진", + "81·민희진", 87, 16, 78, @@ -96081,7 +96081,7 @@ ] ], [ - "【81기】토냥이", + "81·토냥이", 77, 89, 15, @@ -96103,7 +96103,7 @@ ] ], [ - "【81기】덕구", + "81·덕구", 78, 88, 16, @@ -96125,7 +96125,7 @@ ] ], [ - "【81기】햄부기", + "81·햄부기", 76, 93, 15, @@ -96149,7 +96149,7 @@ ] ], [ - "【81기】카이스트", + "81·카이스트", 75, 15, 94, @@ -96174,7 +96174,7 @@ ] ], [ - "【81기】네이", + "81·네이", 88, 15, 82, @@ -96199,7 +96199,7 @@ ] ], [ - "【81기】진보의 다리", + "81·진보의 다리", 76, 92, 15, @@ -96222,7 +96222,7 @@ ] ], [ - "【81기】평민", + "81·평민", 78, 94, 16, @@ -96258,7 +96258,7 @@ ] ], [ - "【81기】임마", + "81·임마", 78, 91, 16, @@ -96286,7 +96286,7 @@ ] ], [ - "【81기】대교", + "81·대교", 95, 71, 16, @@ -96308,7 +96308,7 @@ ] ], [ - "【81기】벤치프레스", + "81·벤치프레스", 79, 92, 15, @@ -96335,7 +96335,7 @@ ] ], [ - "【81기】임사영", + "81·임사영", 78, 91, 16, @@ -96366,7 +96366,7 @@ ] ], [ - "【81기】SQQQ", + "81·SQQQ", 94, 75, 15, @@ -96389,7 +96389,7 @@ ] ], [ - "【81기】NK", + "81·NK", 75, 94, 15, @@ -96416,7 +96416,7 @@ ] ], [ - "【81기】황혼중", + "81·황혼중", 15, 82, 86, @@ -96438,7 +96438,7 @@ ] ], [ - "【81기】간지밍이", + "81·간지밍이", 16, 73, 88, @@ -96460,7 +96460,7 @@ ] ], [ - "【81기】犢皮紙", + "81·犢皮紙", 76, 92, 15, @@ -96482,7 +96482,7 @@ ] ], [ - "【81기】춤과파티", + "81·춤과파티", 75, 15, 96, @@ -96515,7 +96515,7 @@ ] ], [ - "【81기】아무개", + "81·아무개", 15, 72, 97, @@ -96538,7 +96538,7 @@ ] ], [ - "【81기】최진리", + "81·최진리", 89, 78, 15, @@ -96562,7 +96562,7 @@ ] ], [ - "【81기】솔의눈", + "81·솔의눈", 15, 93, 73, @@ -96584,7 +96584,7 @@ ] ], [ - "【81기】마요이", + "81·마요이", 15, 73, 94, @@ -96607,7 +96607,7 @@ ] ], [ - "【81기】진솔", + "81·진솔", 15, 71, 96, @@ -96630,7 +96630,7 @@ ] ], [ - "【81기】올해의 새", + "81·올해의 새", 79, 15, 100, @@ -96664,7 +96664,7 @@ ] ], [ - "【81기】유카", + "81·유카", 78, 88, 15, @@ -96686,7 +96686,7 @@ ] ], [ - "【81기】아즈마 레이", + "81·아즈마 레이", 77, 89, 17, @@ -96708,7 +96708,7 @@ ] ], [ - "【81기】키키라라비비", + "81·키키라라비비", 76, 15, 91, @@ -96730,7 +96730,7 @@ ] ], [ - "【81기】환수사", + "81·환수사", 77, 89, 16, @@ -96754,7 +96754,7 @@ ] ], [ - "【81기】하우젤", + "81·하우젤", 78, 89, 15, @@ -96779,7 +96779,7 @@ ] ], [ - "【82기】임사영", + "82·임사영", 81, 15, 95, @@ -96803,7 +96803,7 @@ ] ], [ - "【82기】척", + "82·척", 67, 78, 14, @@ -96825,7 +96825,7 @@ ] ], [ - "【82기】카멘", + "82·카멘", 66, 83, 13, @@ -96859,7 +96859,7 @@ ] ], [ - "【82기】냥냥냥", + "82·냥냥냥", 98, 76, 16, @@ -96884,7 +96884,7 @@ ] ], [ - "【82기】Hide_D", + "82·Hide_D", 78, 15, 96, @@ -96907,7 +96907,7 @@ ] ], [ - "【82기】이노마타 타이키", + "82·이노마타 타이키", 77, 15, 96, @@ -96930,7 +96930,7 @@ ] ], [ - "【82기】호나", + "82·호나", 79, 93, 17, @@ -96954,7 +96954,7 @@ ] ], [ - "【82기】대교", + "82·대교", 79, 14, 68, @@ -96978,7 +96978,7 @@ ] ], [ - "【82기】청주꽃돌이관흥", + "82·청주꽃돌이관흥", 80, 15, 95, @@ -97006,7 +97006,7 @@ ] ], [ - "【82기】욕망군단장비아키스", + "82·욕망군단장비아키스", 89, 15, 86, @@ -97033,7 +97033,7 @@ ] ], [ - "【82기】가능", + "82·가능", 98, 79, 15, @@ -97068,7 +97068,7 @@ ] ], [ - "【82기】독구", + "82·독구", 80, 71, 13, @@ -97101,7 +97101,7 @@ ] ], [ - "【82기】진웅", + "82·진웅", 80, 97, 15, @@ -97134,7 +97134,7 @@ ] ], [ - "【82기】딸기", + "82·딸기", 79, 15, 93, @@ -97156,7 +97156,7 @@ ] ], [ - "【82기】구루", + "82·구루", 83, 91, 15, @@ -97179,7 +97179,7 @@ ] ], [ - "【82기】이드", + "82·이드", 67, 80, 13, @@ -97203,7 +97203,7 @@ ] ], [ - "【82기】퍄퍄", + "82·퍄퍄", 79, 15, 94, @@ -97225,7 +97225,7 @@ ] ], [ - "【82기】연미복관흥", + "82·연미복관흥", 20, 71, 94, @@ -97248,7 +97248,7 @@ ] ], [ - "【82기】Air", + "82·Air", 82, 92, 15, @@ -97271,7 +97271,7 @@ ] ], [ - "【82기】간지밍이", + "82·간지밍이", 15, 77, 65, @@ -97294,7 +97294,7 @@ ] ], [ - "【82기】(지브리)이해고", + "82·(지브리)이해고", 80, 93, 16, @@ -97319,7 +97319,7 @@ ] ], [ - "【82기】개미호창", + "82·개미호창", 95, 77, 15, @@ -97343,7 +97343,7 @@ ] ], [ - "【82기】쿠크세이튼", + "82·쿠크세이튼", 66, 82, 13, @@ -97376,7 +97376,7 @@ ] ], [ - "【82기】발리나크", + "82·발리나크", 78, 93, 16, @@ -97398,7 +97398,7 @@ ] ], [ - "【82기】카이스트", + "82·카이스트", 80, 15, 97, @@ -97426,7 +97426,7 @@ ] ], [ - "【82기】서희", + "82·서희", 78, 16, 94, @@ -97448,7 +97448,7 @@ ] ], [ - "【82기】킬리네사", + "82·킬리네사", 67, 13, 82, @@ -97474,7 +97474,7 @@ ] ], [ - "【82기】Sase", + "82·Sase", 70, 86, 13, @@ -97509,7 +97509,7 @@ ] ], [ - "【82기】KISJ", + "82·KISJ", 78, 96, 15, @@ -97532,7 +97532,7 @@ ] ], [ - "【82기】덕구", + "82·덕구", 77, 92, 16, @@ -97554,7 +97554,7 @@ ] ], [ - "【82기】둠스데이", + "82·둠스데이", 70, 78, 13, @@ -97576,7 +97576,7 @@ ] ], [ - "【82기】불여시헌터관흥", + "82·불여시헌터관흥", 89, 15, 85, @@ -97605,7 +97605,7 @@ ] ], [ - "【82기】여심폭격기관흥", + "82·여심폭격기관흥", 65, 84, 13, @@ -97642,7 +97642,7 @@ ] ], [ - "【82기】사스케", + "82·사스케", 101, 70, 15, @@ -97674,7 +97674,7 @@ ] ], [ - "【82기】백수", + "82·백수", 68, 79, 14, @@ -97696,7 +97696,7 @@ ] ], [ - "【82기】진솔", + "82·진솔", 78, 95, 15, @@ -97719,7 +97719,7 @@ ] ], [ - "【82기】페로몬뉴클리어관흥", + "82·페로몬뉴클리어관흥", 68, 14, 80, @@ -97746,7 +97746,7 @@ ] ], [ - "【82기】주하야", + "82·주하야", 90, 82, 15, @@ -97768,7 +97768,7 @@ ] ], [ - "【82기】Every Moment", + "82·Every Moment", 92, 79, 15, @@ -97791,7 +97791,7 @@ ] ], [ - "【82기】NK", + "82·NK", 67, 82, 13, @@ -97818,7 +97818,7 @@ ] ], [ - "【82기】도라에몽", + "82·도라에몽", 91, 15, 80, @@ -97842,7 +97842,7 @@ ] ], [ - "【82기】ㅠ.ㅠ", + "82·ㅠ.ㅠ", 88, 15, 85, @@ -97865,7 +97865,7 @@ ] ], [ - "【82기】로비", + "82·로비", 15, 73, 99, @@ -97888,7 +97888,7 @@ ] ], [ - "【82기】메로나", + "82·메로나", 66, 13, 82, @@ -97911,7 +97911,7 @@ ] ], [ - "【82기】니쉬", + "82·니쉬", 15, 72, 98, @@ -97933,7 +97933,7 @@ ] ], [ - "【82기】로아 그만둔 독구", + "82·로아 그만둔 독구", 15, 73, 99, @@ -97957,7 +97957,7 @@ ] ], [ - "【82기】최진리", + "82·최진리", 97, 76, 15, @@ -97980,7 +97980,7 @@ ] ], [ - "【82기】병리학적자세", + "82·병리학적자세", 80, 15, 90, @@ -98003,7 +98003,7 @@ ] ], [ - "【82기】황혼중", + "82·황혼중", 15, 83, 90, @@ -98025,7 +98025,7 @@ ] ], [ - "【82기】밀리터리 프레스", + "82·밀리터리 프레스", 82, 93, 16, @@ -98055,7 +98055,7 @@ ] ], [ - "【82기】기술셔틀", + "82·기술셔틀", 15, 71, 101, @@ -98078,7 +98078,7 @@ ] ], [ - "【82기】마요이", + "82·마요이", 16, 73, 98, @@ -98101,7 +98101,7 @@ ] ], [ - "【82기】와일드플라워", + "82·와일드플라워", 78, 91, 16, @@ -98123,7 +98123,7 @@ ] ], [ - "【82기】비스마르크", + "82·비스마르크", 79, 95, 15, @@ -98147,7 +98147,7 @@ ] ], [ - "【82기】雪原", + "82·雪原", 81, 93, 15, @@ -98171,7 +98171,7 @@ ] ], [ - "【82기】어둠의대검", + "82·어둠의대검", 78, 15, 92, @@ -98193,7 +98193,7 @@ ] ], [ - "【82기】Navy마초", + "82·Navy마초", 77, 92, 15, @@ -98215,7 +98215,7 @@ ] ], [ - "【82기】충북미남관흥", + "82·충북미남관흥", 17, 73, 96, @@ -98237,7 +98237,7 @@ ] ], [ - "【82기】관흥동생관색", + "82·관흥동생관색", 16, 72, 97, @@ -98259,7 +98259,7 @@ ] ], [ - "【82기】여심도둑가능", + "82·여심도둑가능", 78, 89, 15, @@ -98281,7 +98281,7 @@ ] ], [ - "【83기】아미새", + "83·아미새", 80, 16, 89, @@ -98306,7 +98306,7 @@ ] ], [ - "【83기】어그로천번끄는독구", + "83·어그로천번끄는독구", 15, 72, 97, @@ -98332,7 +98332,7 @@ ] ], [ - "【83기】Mr. Boo", + "83·Mr. Boo", 83, 15, 92, @@ -98363,7 +98363,7 @@ ] ], [ - "【83기】Skt", + "83·Skt", 78, 92, 15, @@ -98386,7 +98386,7 @@ ] ], [ - "【83기】바나낫", + "83·바나낫", 78, 15, 93, @@ -98411,7 +98411,7 @@ ] ], [ - "【83기】임사영", + "83·임사영", 93, 77, 15, @@ -98435,7 +98435,7 @@ ] ], [ - "【83기】와일드플라워", + "83·와일드플라워", 76, 16, 92, @@ -98457,7 +98457,7 @@ ] ], [ - "【83기】퍄퍄", + "83·퍄퍄", 78, 93, 15, @@ -98482,7 +98482,7 @@ ] ], [ - "【83기】하와와", + "83·하와와", 81, 15, 92, @@ -98506,7 +98506,7 @@ ] ], [ - "【83기】Hide_D", + "83·Hide_D", 79, 15, 93, @@ -98528,7 +98528,7 @@ ] ], [ - "【83기】비스", + "83·비스", 80, 93, 15, @@ -98551,7 +98551,7 @@ ] ], [ - "【83기】네시", + "83·네시", 81, 87, 15, @@ -98573,7 +98573,7 @@ ] ], [ - "【83기】트랄랄레로트랄랄라", + "83·트랄랄레로트랄랄라", 79, 15, 91, @@ -98596,7 +98596,7 @@ ] ], [ - "【83기】봄봄비니구지니", + "83·봄봄비니구지니", 91, 78, 15, @@ -98619,7 +98619,7 @@ ] ], [ - "【83기】평민킬러", + "83·평민킬러", 79, 94, 15, @@ -98657,7 +98657,7 @@ ] ], [ - "【83기】마요이", + "83·마요이", 15, 76, 90, @@ -98679,7 +98679,7 @@ ] ], [ - "【83기】진솔", + "83·진솔", 77, 92, 15, @@ -98704,7 +98704,7 @@ ] ], [ - "【83기】???", + "83·???", 81, 88, 16, @@ -98727,7 +98727,7 @@ ] ], [ - "【83기】로비", + "83·로비", 17, 72, 96, @@ -98749,7 +98749,7 @@ ] ], [ - "【83기】진브", + "83·진브", 77, 16, 90, @@ -98771,7 +98771,7 @@ ] ], [ - "【83기】비프로스트", + "83·비프로스트", 76, 95, 15, @@ -98797,7 +98797,7 @@ ] ], [ - "【83기】시드 카게노", + "83·시드 카게노", 94, 75, 16, @@ -98821,7 +98821,7 @@ ] ], [ - "【83기】지장", + "83·지장", 82, 15, 89, @@ -98843,7 +98843,7 @@ ] ], [ - "【83기】카이스트", + "83·카이스트", 79, 15, 90, @@ -98866,7 +98866,7 @@ ] ], [ - "【83기】사이드레터럴레이즈", + "83·사이드레터럴레이즈", 76, 16, 93, @@ -98893,7 +98893,7 @@ ] ], [ - "【83기】감흥", + "83·감흥", 75, 97, 16, @@ -98925,7 +98925,7 @@ ] ], [ - "【83기】Lemon", + "83·Lemon", 82, 87, 15, @@ -98958,7 +98958,7 @@ ] ], [ - "【83기】Time", + "83·Time", 89, 82, 15, @@ -98981,7 +98981,7 @@ ] ], [ - "【83기】이드", + "83·이드", 76, 15, 92, @@ -99003,7 +99003,7 @@ ] ], [ - "【83기】리나크", + "83·리나크", 78, 97, 15, @@ -99035,7 +99035,7 @@ ] ], [ - "【83기】브르르브르르파타핌", + "83·브르르브르르파타핌", 78, 15, 94, @@ -99066,7 +99066,7 @@ ] ], [ - "【83기】Air", + "83·Air", 83, 91, 15, @@ -99097,7 +99097,7 @@ ] ], [ - "【83기】사스케", + "83·사스케", 78, 15, 93, @@ -99122,7 +99122,7 @@ ] ], [ - "【83기】섀도우", + "83·섀도우", 79, 15, 95, @@ -99150,7 +99150,7 @@ ] ], [ - "【83기】진브소환수", + "83·진브소환수", 89, 15, 79, @@ -99172,7 +99172,7 @@ ] ], [ - "【83기】나 독구 아니다", + "83·나 독구 아니다", 93, 81, 15, @@ -99203,7 +99203,7 @@ ] ], [ - "【83기】냥냥냥", + "83·냥냥냥", 94, 74, 15, @@ -99228,7 +99228,7 @@ ] ], [ - "【83기】불패", + "83·불패", 80, 91, 15, @@ -99262,7 +99262,7 @@ ] ], [ - "【83기】키키라라비비", + "83·키키라라비비", 77, 15, 93, @@ -99284,7 +99284,7 @@ ] ], [ - "【83기】대교", + "83·대교", 94, 74, 17, @@ -99307,7 +99307,7 @@ ] ], [ - "【83기】강유", + "83·강유", 79, 15, 93, @@ -99332,7 +99332,7 @@ ] ], [ - "【83기】황혼중", + "83·황혼중", 15, 90, 78, @@ -99354,7 +99354,7 @@ ] ], [ - "【83기】독도", + "83·독도", 96, 81, 15, @@ -99390,7 +99390,7 @@ ] ], [ - "【83기】퉁퉁퉁 사후르", + "83·퉁퉁퉁 사후르", 66, 78, 13, @@ -99422,7 +99422,7 @@ ] ], [ - "【83기】토가메", + "83·토가메", 78, 92, 15, @@ -99445,7 +99445,7 @@ ] ], [ - "【83기】척", + "83·척", 78, 93, 15, @@ -99468,7 +99468,7 @@ ] ], [ - "【83기】시아", + "83·시아", 16, 74, 92, @@ -99490,7 +99490,7 @@ ] ], [ - "【83기】최진리", + "83·최진리", 75, 15, 96, @@ -99514,7 +99514,7 @@ ] ], [ - "【83기】아니다", + "83·아니다", 82, 86, 15, @@ -99536,7 +99536,7 @@ ] ], [ - "【83기】서희", + "83·서희", 82, 15, 88, @@ -99561,7 +99561,7 @@ ] ], [ - "【83기】코코낸내", + "83·코코낸내", 78, 15, 92, @@ -99583,7 +99583,7 @@ ] ], [ - "【83기】무", + "83·무", 77, 15, 94, @@ -99606,7 +99606,7 @@ ] ], [ - "【83기】ㅁㅁㅁ", + "83·ㅁㅁㅁ", 84, 15, 86, @@ -99628,7 +99628,7 @@ ] ], [ - "【83기】지각", + "83·지각", 91, 15, 77, @@ -99653,7 +99653,7 @@ ] ], [ - "【83기】Audi", + "83·Audi", 93, 74, 15, @@ -99677,7 +99677,7 @@ ] ], [ - "【83기】보네카 암발라부", + "83·보네카 암발라부", 77, 91, 15, @@ -99699,7 +99699,7 @@ ] ], [ - "【83기】하냥", + "83·하냥", 15, 73, 89, @@ -99721,7 +99721,7 @@ ] ], [ - "【84기】진솔", + "84·진솔", 79, 15, 92, @@ -99743,7 +99743,7 @@ ] ], [ - "【84기】JOHN CENA", + "84·JOHN CENA", 77, 93, 15, @@ -99773,7 +99773,7 @@ ] ], [ - "【84기】씩씩한아붕이", + "84·씩씩한아붕이", 67, 13, 78, @@ -99795,7 +99795,7 @@ ] ], [ - "【84기】임사영", + "84·임사영", 77, 15, 93, @@ -99819,7 +99819,7 @@ ] ], [ - "【84기】Bianchi", + "84·Bianchi", 90, 78, 15, @@ -99841,7 +99841,7 @@ ] ], [ - "【84기】피그말리온", + "84·피그말리온", 78, 93, 15, @@ -99864,7 +99864,7 @@ ] ], [ - "【84기】ㅎㄴ", + "84·ㅎㄴ", 80, 91, 15, @@ -99887,7 +99887,7 @@ ] ], [ - "【84기】시진핑핑이", + "84·시진핑핑이", 82, 89, 15, @@ -99911,7 +99911,7 @@ ] ], [ - "【84기】강유", + "84·강유", 79, 15, 89, @@ -99933,7 +99933,7 @@ ] ], [ - "【84기】독구현여친", + "84·독구현여친", 66, 13, 78, @@ -99958,7 +99958,7 @@ ] ], [ - "【84기】마르크", + "84·마르크", 66, 81, 13, @@ -99983,7 +99983,7 @@ ] ], [ - "【84기】Sase", + "84·Sase", 82, 15, 91, @@ -100014,7 +100014,7 @@ ] ], [ - "【84기】쯔모", + "84·쯔모", 13, 61, 84, @@ -100036,7 +100036,7 @@ ] ], [ - "【84기】초이스", + "84·초이스", 76, 15, 91, @@ -100058,7 +100058,7 @@ ] ], [ - "【84기】지파이", + "84·지파이", 78, 66, 13, @@ -100081,7 +100081,7 @@ ] ], [ - "【84기】마츄", + "84·마츄", 79, 15, 92, @@ -100106,7 +100106,7 @@ ] ], [ - "【84기】삼모 대통령 독구", + "84·삼모 대통령 독구", 16, 71, 97, @@ -100129,7 +100129,7 @@ ] ], [ - "【84기】독구미래여친", + "84·독구미래여친", 95, 72, 17, @@ -100156,7 +100156,7 @@ ] ], [ - "【84기】냥냥냥", + "84·냥냥냥", 81, 15, 88, @@ -100178,7 +100178,7 @@ ] ], [ - "【84기】김현지", + "84·김현지", 79, 16, 88, @@ -100200,7 +100200,7 @@ ] ], [ - "【84기】이재명", + "84·이재명", 112, 70, 15, @@ -100237,7 +100237,7 @@ ] ], [ - "【84기】와일드플라워", + "84·와일드플라워", 80, 16, 87, @@ -100259,7 +100259,7 @@ ] ], [ - "【84기】대교", + "84·대교", 80, 65, 13, @@ -100283,7 +100283,7 @@ ] ], [ - "【84기】김남준", + "84·김남준", 65, 13, 79, @@ -100306,7 +100306,7 @@ ] ], [ - "【84기】잠식수", + "84·잠식수", 68, 78, 13, @@ -100329,7 +100329,7 @@ ] ], [ - "【84기】독구", + "84·독구", 77, 96, 15, @@ -100360,7 +100360,7 @@ ] ], [ - "【84기】김문수", + "84·김문수", 93, 77, 16, @@ -100390,7 +100390,7 @@ ] ], [ - "【84기】독버지", + "84·독버지", 78, 15, 93, @@ -100413,7 +100413,7 @@ ] ], [ - "【84기】더", + "84·더", 80, 92, 15, @@ -100436,7 +100436,7 @@ ] ], [ - "【84기】NK", + "84·NK", 82, 65, 13, @@ -100466,7 +100466,7 @@ ] ], [ - "【84기】마자용", + "84·마자용", 81, 94, 15, @@ -100498,7 +100498,7 @@ ] ], [ - "【84기】네이", + "84·네이", 90, 16, 81, @@ -100522,7 +100522,7 @@ ] ], [ - "【84기】독구대통령님", + "84·독구대통령님", 79, 16, 94, @@ -100551,7 +100551,7 @@ ] ], [ - "【84기】아야", + "84·아야", 91, 78, 15, @@ -100575,7 +100575,7 @@ ] ], [ - "【84기】평민킬러", + "84·평민킬러", 66, 80, 13, @@ -100602,7 +100602,7 @@ ] ], [ - "【84기】잠맘보", + "84·잠맘보", 79, 15, 91, @@ -100626,7 +100626,7 @@ ] ], [ - "【84기】애쉬", + "84·애쉬", 80, 15, 91, @@ -100648,7 +100648,7 @@ ] ], [ - "【84기】JP", + "84·JP", 78, 15, 91, @@ -100671,7 +100671,7 @@ ] ], [ - "【84기】독구전여친", + "84·독구전여친", 76, 15, 94, @@ -100694,7 +100694,7 @@ ] ], [ - "【84기】케이네", + "84·케이네", 101, 70, 15, @@ -100727,7 +100727,7 @@ ] ], [ - "【84기】서림동", + "84·서림동", 84, 87, 15, @@ -100755,7 +100755,7 @@ ] ], [ - "【84기】불패", + "84·불패", 77, 15, 94, @@ -100780,7 +100780,7 @@ ] ], [ - "【84기】로비", + "84·로비", 13, 61, 83, @@ -100804,7 +100804,7 @@ ] ], [ - "【84기】독자이크", + "84·독자이크", 93, 76, 15, @@ -100827,7 +100827,7 @@ ] ], [ - "【84기】덕구", + "84·덕구", 69, 77, 13, @@ -100851,7 +100851,7 @@ ] ], [ - "【84기】추미애", + "84·추미애", 81, 68, 13, @@ -100884,7 +100884,7 @@ ] ], [ - "【84기】Hide_D", + "84·Hide_D", 81, 15, 94, @@ -100914,7 +100914,7 @@ ] ], [ - "【84기】황혼중", + "84·황혼중", 15, 91, 79, @@ -100936,7 +100936,7 @@ ] ], [ - "【84기】셀레미", + "84·셀레미", 95, 15, 72, @@ -100961,7 +100961,7 @@ ] ], [ - "【84기】최진리", + "84·최진리", 79, 93, 16, @@ -100990,7 +100990,7 @@ ] ], [ - "【84기】트럼프", + "84·트럼프", 77, 65, 14, @@ -101013,7 +101013,7 @@ ] ], [ - "【84기】척", + "84·척", 79, 89, 15, @@ -101035,7 +101035,7 @@ ] ], [ - "【84기】기호 3번 마요이", + "84·기호 3번 마요이", 16, 74, 96, @@ -101058,7 +101058,7 @@ ] ], [ - "【84기】성수용", + "84·성수용", 15, 96, 73, @@ -101081,7 +101081,7 @@ ] ], [ - "【84기】ㅊㄹㅊㄹ", + "84·ㅊㄹㅊㄹ", 83, 89, 15, @@ -101104,7 +101104,7 @@ ] ], [ - "【84기】지?각", + "84·지?각", 91, 77, 16, @@ -101130,7 +101130,7 @@ ] ], [ - "【84기】키키라라비비", + "84·키키라라비비", 79, 15, 89, @@ -101152,7 +101152,7 @@ ] ], [ - "【84기】조모모모", + "84·조모모모", 78, 90, 17, @@ -101177,7 +101177,7 @@ ] ], [ - "【84기】도지삽니다", + "84·도지삽니다", 92, 76, 15, @@ -101201,7 +101201,7 @@ ] ], [ - "【84기】나나야시키", + "84·나나야시키", 77, 89, 15, @@ -101223,7 +101223,7 @@ ] ], [ - "【86기】Hide_D", + "86·Hide_D", 76, 15, 94, @@ -101246,7 +101246,7 @@ ] ], [ - "【86기】불패", + "86·불패", 77, 94, 15, @@ -101281,7 +101281,7 @@ ] ], [ - "【86기】바나낫", + "86·바나낫", 78, 92, 15, @@ -101312,7 +101312,7 @@ ] ], [ - "【86기】도로롱", + "86·도로롱", 93, 75, 15, @@ -101336,7 +101336,7 @@ ] ], [ - "【86기】비스마르크", + "86·비스마르크", 75, 92, 15, @@ -101358,7 +101358,7 @@ ] ], [ - "【86기】까치", + "86·까치", 76, 93, 15, @@ -101380,7 +101380,7 @@ ] ], [ - "【86기】퍄퍄", + "86·퍄퍄", 77, 15, 93, @@ -101403,7 +101403,7 @@ ] ], [ - "【86기】전소미", + "86·전소미", 79, 15, 89, @@ -101426,7 +101426,7 @@ ] ], [ - "【86기】외심장", + "86·외심장", 79, 16, 92, @@ -101449,7 +101449,7 @@ ] ], [ - "【86기】호나", + "86·호나", 92, 81, 15, @@ -101476,7 +101476,7 @@ ] ], [ - "【86기】셋쇼마루", + "86·셋쇼마루", 76, 15, 99, @@ -101508,7 +101508,7 @@ ] ], [ - "【86기】황혼중", + "86·황혼중", 75, 15, 94, @@ -101531,7 +101531,7 @@ ] ], [ - "【86기】white hand", + "86·white hand", 78, 94, 16, @@ -101560,7 +101560,7 @@ ] ], [ - "【86기】유산조아", + "86·유산조아", 77, 15, 91, @@ -101582,7 +101582,7 @@ ] ], [ - "【86기】덕구", + "86·덕구", 76, 93, 15, @@ -101606,7 +101606,7 @@ ] ], [ - "【86기】아마테라스", + "86·아마테라스", 80, 15, 92, @@ -101634,7 +101634,7 @@ ] ], [ - "【86기】Sase", + "86·Sase", 76, 94, 15, @@ -101665,7 +101665,7 @@ ] ], [ - "【86기】먹튀예술가", + "86·먹튀예술가", 76, 93, 16, @@ -101695,7 +101695,7 @@ ] ], [ - "【86기】뉴진스님", + "86·뉴진스님", 76, 15, 92, @@ -101717,7 +101717,7 @@ ] ], [ - "【86기】임사영", + "86·임사영", 75, 96, 15, @@ -101744,7 +101744,7 @@ ] ], [ - "【86기】Air", + "86·Air", 80, 91, 15, @@ -101767,7 +101767,7 @@ ] ], [ - "【86기】로비", + "86·로비", 15, 73, 98, @@ -101790,7 +101790,7 @@ ] ], [ - "【86기】장마철입수장인독구", + "86·장마철입수장인독구", 16, 73, 96, @@ -101813,7 +101813,7 @@ ] ], [ - "【86기】테토견 독구", + "86·테토견 독구", 79, 91, 15, @@ -101837,7 +101837,7 @@ ] ], [ - "【86기】NK", + "86·NK", 76, 95, 15, @@ -101868,7 +101868,7 @@ ] ], [ - "【86기】대교", + "86·대교", 94, 74, 15, @@ -101894,7 +101894,7 @@ ] ], [ - "【86기】이누야샤", + "86·이누야샤", 76, 99, 15, @@ -101925,7 +101925,7 @@ ] ], [ - "【86기】불법스님", + "86·불법스님", 94, 75, 16, @@ -101953,7 +101953,7 @@ ] ], [ - "【86기】카이스트", + "86·카이스트", 77, 16, 93, @@ -101975,7 +101975,7 @@ ] ], [ - "【86기】키라호시 시엘", + "86·키라호시 시엘", 76, 15, 92, @@ -102004,7 +102004,7 @@ ] ], [ - "【86기】와일드플라워", + "86·와일드플라워", 76, 15, 93, @@ -102030,7 +102030,7 @@ ] ], [ - "【86기】혜민스님", + "86·혜민스님", 74, 15, 96, @@ -102066,7 +102066,7 @@ ] ], [ - "【86기】강유", + "86·강유", 79, 15, 94, @@ -102092,7 +102092,7 @@ ] ], [ - "【86기】풀소유", + "86·풀소유", 79, 15, 89, @@ -102114,7 +102114,7 @@ ] ], [ - "【86기】토심이", + "86·토심이", 75, 15, 95, @@ -102145,7 +102145,7 @@ ] ], [ - "【86기】네이", + "86·네이", 88, 15, 82, @@ -102171,7 +102171,7 @@ ] ], [ - "【86기】람", + "86·람", 78, 95, 15, @@ -102203,7 +102203,7 @@ ] ], [ - "【86기】오란씨", + "86·오란씨", 76, 15, 94, @@ -102226,7 +102226,7 @@ ] ], [ - "【86기】제갈여포", + "86·제갈여포", 90, 16, 78, @@ -102252,7 +102252,7 @@ ] ], [ - "【86기】La Dernière Leçon", + "86·La Dernière Leçon", 89, 80, 16, @@ -102277,7 +102277,7 @@ ] ], [ - "【86기】쿠로미", + "86·쿠로미", 90, 15, 79, @@ -102300,7 +102300,7 @@ ] ], [ - "【86기】최진리", + "86·최진리", 77, 95, 15, @@ -102328,7 +102328,7 @@ ] ], [ - "【86기】척", + "86·척", 76, 91, 15, @@ -102350,7 +102350,7 @@ ] ], [ - "【86기】칼라브리아", + "86·칼라브리아", 78, 90, 16, @@ -102372,7 +102372,7 @@ ] ], [ - "【86기】타치바나히나노", + "86·타치바나히나노", 78, 90, 15, @@ -102395,7 +102395,7 @@ ] ], [ - "【86기】미스티", + "86·미스티", 77, 15, 93, @@ -102417,7 +102417,7 @@ ] ], [ - "【86기】햄수타", + "86·햄수타", 87, 81, 15, @@ -102442,7 +102442,7 @@ ] ], [ - "【86기】국04", + "86·국04", 85, 15, 80, @@ -102464,7 +102464,7 @@ ] ], [ - "【86기】마요이", + "86·마요이", 15, 71, 95, @@ -102486,7 +102486,7 @@ ] ], [ - "【86기】민트토끼", + "86·민트토끼", 16, 82, 84, @@ -102509,7 +102509,7 @@ ] ], [ - "【86기】진우", + "86·진우", 16, 73, 93, @@ -102531,7 +102531,7 @@ ] ], [ - "【86기】감흥", + "86·감흥", 15, 75, 88, @@ -102554,7 +102554,7 @@ ] ], [ - "【87기】척", + "87·척", 76, 90, 15, @@ -102578,7 +102578,7 @@ ] ], [ - "【87기】프렝탕", + "87·프렝탕", 74, 15, 91, @@ -102600,7 +102600,7 @@ ] ], [ - "【87기】One", + "87·One", 76, 90, 15, @@ -102623,7 +102623,7 @@ ] ], [ - "【87기】신장수", + "87·신장수", 87, 79, 15, @@ -102654,7 +102654,7 @@ ] ], [ - "【87기】해질녘", + "87·해질녘", 77, 89, 16, @@ -102676,7 +102676,7 @@ ] ], [ - "【87기】미친과학", + "87·미친과학", 88, 80, 15, @@ -102708,7 +102708,7 @@ ] ], [ - "【87기】대교", + "87·대교", 89, 76, 16, @@ -102732,7 +102732,7 @@ ] ], [ - "【87기】외심장", + "87·외심장", 77, 15, 90, @@ -102755,7 +102755,7 @@ ] ], [ - "【87기】바나낫", + "87·바나낫", 75, 92, 15, @@ -102780,7 +102780,7 @@ ] ], [ - "【87기】네이", + "87·네이", 90, 15, 76, @@ -102804,7 +102804,7 @@ ] ], [ - "【87기】로비", + "87·로비", 15, 72, 93, @@ -102826,7 +102826,7 @@ ] ], [ - "【87기】황혼중", + "87·황혼중", 73, 15, 93, @@ -102850,7 +102850,7 @@ ] ], [ - "【87기】갈비탕", + "87·갈비탕", 75, 87, 17, @@ -102872,7 +102872,7 @@ ] ], [ - "【87기】와일드플라워", + "87·와일드플라워", 74, 15, 90, @@ -102894,7 +102894,7 @@ ] ], [ - "【87기】크랙", + "87·크랙", 94, 77, 15, @@ -102927,7 +102927,7 @@ ] ], [ - "【87기】독구탕", + "87·독구탕", 76, 15, 92, @@ -102949,7 +102949,7 @@ ] ], [ - "【87기】참새탕", + "87·참새탕", 75, 90, 15, @@ -102975,7 +102975,7 @@ ] ], [ - "【87기】바낫탕", + "87·바낫탕", 94, 72, 15, @@ -103007,7 +103007,7 @@ ] ], [ - "【87기】호나", + "87·호나", 88, 78, 16, @@ -103029,7 +103029,7 @@ ] ], [ - "【87기】덕구", + "87·덕구", 78, 88, 15, @@ -103052,7 +103052,7 @@ ] ], [ - "【87기】Air", + "87·Air", 76, 89, 15, @@ -103074,7 +103074,7 @@ ] ], [ - "【87기】NK", + "87·NK", 92, 75, 15, @@ -103103,7 +103103,7 @@ ] ], [ - "【87기】병리학적자세", + "87·병리학적자세", 73, 15, 94, @@ -103134,7 +103134,7 @@ ] ], [ - "【87기】크루", + "87·크루", 76, 15, 92, @@ -103157,7 +103157,7 @@ ] ], [ - "【87기】간지밍이", + "87·간지밍이", 15, 74, 88, @@ -103179,7 +103179,7 @@ ] ], [ - "【87기】청서탕", + "87·청서탕", 89, 74, 15, @@ -103201,7 +103201,7 @@ ] ], [ - "【87기】라콘탕", + "87·라콘탕", 71, 83, 15, @@ -103223,7 +103223,7 @@ ] ], [ - "【87기】솔로탕", + "87·솔로탕", 91, 77, 15, @@ -103259,7 +103259,7 @@ ] ], [ - "【87기】비스마르크", + "87·비스마르크", 78, 93, 15, @@ -103286,7 +103286,7 @@ ] ], [ - "【87기】코젠탕", + "87·코젠탕", 78, 87, 16, @@ -103312,7 +103312,7 @@ ] ], [ - "【87기】Kalsarikännit", + "87·Kalsarikännit", 79, 90, 15, @@ -103344,7 +103344,7 @@ ] ], [ - "【87기】맛탕", + "87·맛탕", 86, 15, 80, @@ -103366,7 +103366,7 @@ ] ], [ - "【87기】비의", + "87·비의", 75, 15, 91, @@ -103400,7 +103400,7 @@ ] ], [ - "【87기】강유", + "87·강유", 90, 15, 79, @@ -103434,7 +103434,7 @@ ] ], [ - "【87기】개가홍보하는삼계탕", + "87·개가홍보하는삼계탕", 79, 88, 15, @@ -103460,7 +103460,7 @@ ] ], [ - "【87기】쌍심장", + "87·쌍심장", 76, 90, 15, @@ -103491,7 +103491,7 @@ ] ], [ - "【87기】호표기병A", + "87·호표기병A", 89, 77, 15, @@ -103514,7 +103514,7 @@ ] ], [ - "【87기】싱하", + "87·싱하", 77, 89, 15, @@ -103538,7 +103538,7 @@ ] ], [ - "【87기】식물탕", + "87·식물탕", 73, 15, 94, @@ -103567,7 +103567,7 @@ ] ], [ - "【87기】슥게탕", + "87·슥게탕", 74, 18, 88, @@ -103589,7 +103589,7 @@ ] ], [ - "【87기】카이스트", + "87·카이스트", 79, 15, 89, @@ -103616,7 +103616,7 @@ ] ], [ - "【87기】뇌진탕", + "87·뇌진탕", 95, 71, 15, @@ -103644,7 +103644,7 @@ ] ], [ - "【87기】총명탕", + "87·총명탕", 73, 15, 94, @@ -103670,7 +103670,7 @@ ] ], [ - "【87기】퍄퍄", + "87·퍄퍄", 75, 89, 15, @@ -103694,7 +103694,7 @@ ] ], [ - "【87기】해피니스!", + "87·해피니스!", 74, 15, 92, @@ -103716,7 +103716,7 @@ ] ], [ - "【87기】Hide_D", + "87·Hide_D", 75, 15, 93, @@ -103740,7 +103740,7 @@ ] ], [ - "【87기】송탄강", + "87·송탄강", 75, 16, 89, @@ -103765,7 +103765,7 @@ ] ], [ - "【87기】호우주의보", + "87·호우주의보", 86, 16, 75, @@ -103788,7 +103788,7 @@ ] ], [ - "【87기】타치바나히나노", + "87·타치바나히나노", 77, 89, 15, @@ -103810,7 +103810,7 @@ ] ], [ - "【87기】민트토끼", + "87·민트토끼", 15, 73, 93, @@ -103834,7 +103834,7 @@ ] ], [ - "【87기】ㅊㄹㅊㄹ", + "87·ㅊㄹㅊㄹ", 77, 86, 15, @@ -103858,7 +103858,7 @@ ] ], [ - "【87기】주기자", + "87·주기자", 91, 15, 74, @@ -103882,7 +103882,7 @@ ] ], [ - "【87기】TATUM", + "87·TATUM", 75, 90, 15, @@ -103905,7 +103905,7 @@ ] ], [ - "【87기】꽁꽁 고양이", + "87·꽁꽁 고양이", 16, 72, 90, @@ -103927,7 +103927,7 @@ ] ], [ - "【87기】미친개", + "87·미친개", 79, 85, 15, @@ -103950,7 +103950,7 @@ ] ], [ - "【88기】카마도 탄지로", + "88·카마도 탄지로", 78, 85, 15, @@ -103972,7 +103972,7 @@ ] ], [ - "【88기】척", + "88·척", 75, 89, 15, @@ -103995,7 +103995,7 @@ ] ], [ - "【88기】도로롱", + "88·도로롱", 95, 72, 15, @@ -104025,7 +104025,7 @@ ] ], [ - "【88기】토미오카 기유", + "88·토미오카 기유", 91, 76, 15, @@ -104059,7 +104059,7 @@ ] ], [ - "【88기】우즈이 텐겐", + "88·우즈이 텐겐", 15, 73, 92, @@ -104082,7 +104082,7 @@ ] ], [ - "【88기】사마량", + "88·사마량", 74, 15, 94, @@ -104104,7 +104104,7 @@ ] ], [ - "【88기】콜드브루", + "88·콜드브루", 78, 15, 89, @@ -104130,7 +104130,7 @@ ] ], [ - "【88기】코쵸우 시노부", + "88·코쵸우 시노부", 77, 15, 88, @@ -104154,7 +104154,7 @@ ] ], [ - "【88기】서림동결혼반지도둑", + "88·서림동결혼반지도둑", 74, 15, 92, @@ -104176,7 +104176,7 @@ ] ], [ - "【88기】히메지마 쿄메이", + "88·히메지마 쿄메이", 74, 93, 15, @@ -104199,7 +104199,7 @@ ] ], [ - "【88기】제갈량", + "88·제갈량", 78, 15, 91, @@ -104224,7 +104224,7 @@ ] ], [ - "【88기】포클", + "88·포클", 76, 89, 15, @@ -104246,7 +104246,7 @@ ] ], [ - "【88기】Hide_D", + "88·Hide_D", 76, 15, 90, @@ -104268,7 +104268,7 @@ ] ], [ - "【88기】병리학적자세", + "88·병리학적자세", 73, 15, 95, @@ -104294,7 +104294,7 @@ ] ], [ - "【88기】메로론", + "88·메로론", 76, 15, 92, @@ -104326,7 +104326,7 @@ ] ], [ - "【88기】제5열", + "88·제5열", 76, 90, 15, @@ -104353,7 +104353,7 @@ ] ], [ - "【88기】바나낫", + "88·바나낫", 76, 93, 15, @@ -104385,7 +104385,7 @@ ] ], [ - "【88기】대교", + "88·대교", 92, 73, 16, @@ -104407,7 +104407,7 @@ ] ], [ - "【88기】머쉬베놈", + "88·머쉬베놈", 96, 72, 15, @@ -104434,7 +104434,7 @@ ] ], [ - "【88기】잠입", + "88·잠입", 76, 89, 15, @@ -104456,7 +104456,7 @@ ] ], [ - "【88기】너구리", + "88·너구리", 76, 15, 93, @@ -104484,7 +104484,7 @@ ] ], [ - "【88기】코쿠시보", + "88·코쿠시보", 77, 15, 89, @@ -104507,7 +104507,7 @@ ] ], [ - "【88기】栗花落 カナヲ", + "88·栗花落 カナヲ", 74, 15, 93, @@ -104534,7 +104534,7 @@ ] ], [ - "【88기】잘생빔맞은루미", + "88·잘생빔맞은루미", 16, 88, 77, @@ -104556,7 +104556,7 @@ ] ], [ - "【88기】황혼중", + "88·황혼중", 90, 15, 76, @@ -104578,7 +104578,7 @@ ] ], [ - "【88기】TATUM", + "88·TATUM", 91, 15, 74, @@ -104601,7 +104601,7 @@ ] ], [ - "【88기】마이트 가이", + "88·마이트 가이", 93, 73, 16, @@ -104633,7 +104633,7 @@ ] ], [ - "【88기】앵벌스", + "88·앵벌스", 76, 93, 15, @@ -104666,7 +104666,7 @@ ] ], [ - "【88기】카이스트", + "88·카이스트", 76, 15, 88, @@ -104692,7 +104692,7 @@ ] ], [ - "【88기】크냥", + "88·크냥", 92, 77, 15, @@ -104725,7 +104725,7 @@ ] ], [ - "【88기】평민킬러", + "88·평민킬러", 77, 93, 15, @@ -104760,7 +104760,7 @@ ] ], [ - "【88기】장수", + "88·장수", 76, 93, 15, @@ -104792,7 +104792,7 @@ ] ], [ - "【88기】지나가던 선비", + "88·지나가던 선비", 77, 89, 15, @@ -104814,7 +104814,7 @@ ] ], [ - "【88기】덥다", + "88·덥다", 91, 77, 15, @@ -104844,7 +104844,7 @@ ] ], [ - "【88기】우부야시키 카가야", + "88·우부야시키 카가야", 76, 91, 15, @@ -104869,7 +104869,7 @@ ] ], [ - "【88기】하시바라 이노스케", + "88·하시바라 이노스케", 86, 15, 81, @@ -104892,7 +104892,7 @@ ] ], [ - "【88기】침묵의 마녀", + "88·침묵의 마녀", 75, 15, 94, @@ -104924,7 +104924,7 @@ ] ], [ - "【88기】맘보", + "88·맘보", 76, 91, 15, @@ -104951,7 +104951,7 @@ ] ], [ - "【88기】Air", + "88·Air", 79, 89, 15, @@ -104974,7 +104974,7 @@ ] ], [ - "【88기】블러드메이지", + "88·블러드메이지", 77, 15, 91, @@ -104996,7 +104996,7 @@ ] ], [ - "【88기】츠유리 카나오", + "88·츠유리 카나오", 76, 89, 16, @@ -105019,7 +105019,7 @@ ] ], [ - "【88기】카마도 네즈코", + "88·카마도 네즈코", 76, 16, 90, @@ -105041,7 +105041,7 @@ ] ], [ - "【88기】지각", + "88·지각", 74, 15, 93, @@ -105064,7 +105064,7 @@ ] ], [ - "【88기】알레르기성비염독구", + "88·알레르기성비염독구", 16, 73, 91, @@ -105086,7 +105086,7 @@ ] ], [ - "【88기】미스티", + "88·미스티", 74, 15, 90, @@ -105108,7 +105108,7 @@ ] ], [ - "【88기】마요이", + "88·마요이", 16, 73, 91, @@ -105130,7 +105130,7 @@ ] ], [ - "【88기】ㅊㄹㅊㄹ", + "88·ㅊㄹㅊㄹ", 81, 88, 15, @@ -105157,7 +105157,7 @@ ] ], [ - "【88기】오펜하이머", + "88·오펜하이머", 75, 16, 89, @@ -105181,7 +105181,7 @@ ] ], [ - "【88기】메종독구네", + "88·메종독구네", 15, 72, 93, @@ -105204,7 +105204,7 @@ ] ], [ - "【88기】서림동", + "88·서림동", 76, 89, 15, @@ -105228,7 +105228,7 @@ ] ], [ - "【88기】레이즐", + "88·레이즐", 76, 86, 16, @@ -105251,7 +105251,7 @@ ] ], [ - "【88기】최진리", + "88·최진리", 78, 15, 89, @@ -105273,7 +105273,7 @@ ] ], [ - "【88기】맛있는거", + "88·맛있는거", 61, 56, 64, @@ -105295,7 +105295,7 @@ ] ], [ - "【88기】춤과파티", + "88·춤과파티", 86, 71, 23, @@ -105320,7 +105320,7 @@ ] ], [ - "【88기】VITAMIN", + "88·VITAMIN", 16, 73, 88, @@ -105342,7 +105342,7 @@ ] ], [ - "【88기】가을이즈커밍", + "88·가을이즈커밍", 71, 15, 92, @@ -105364,7 +105364,7 @@ ] ], [ - "【89기】NK", + "89·NK", 84, 66, 13, @@ -105390,7 +105390,7 @@ ] ], [ - "【89기】Hide_D", + "89·Hide_D", 80, 15, 93, @@ -105412,7 +105412,7 @@ ] ], [ - "【89기】척", + "89·척", 77, 96, 15, @@ -105435,7 +105435,7 @@ ] ], [ - "【89기】이드", + "89·이드", 15, 72, 100, @@ -105459,7 +105459,7 @@ ] ], [ - "【89기】톨루이칸", + "89·톨루이칸", 78, 15, 97, @@ -105492,7 +105492,7 @@ ] ], [ - "【89기】지뢰계멘헤라", + "89·지뢰계멘헤라", 69, 78, 13, @@ -105514,7 +105514,7 @@ ] ], [ - "【89기】임사영", + "89·임사영", 67, 84, 13, @@ -105543,7 +105543,7 @@ ] ], [ - "【89기】호나", + "89·호나", 83, 15, 90, @@ -105567,7 +105567,7 @@ ] ], [ - "【89기】몽케칸", + "89·몽케칸", 81, 15, 89, @@ -105590,7 +105590,7 @@ ] ], [ - "【89기】병리학적자세", + "89·병리학적자세", 67, 13, 80, @@ -105621,7 +105621,7 @@ ] ], [ - "【89기】미스 몽골", + "89·미스 몽골", 15, 63, 82, @@ -105643,7 +105643,7 @@ ] ], [ - "【89기】간지밍이", + "89·간지밍이", 16, 85, 85, @@ -105665,7 +105665,7 @@ ] ], [ - "【89기】황혼중", + "89·황혼중", 76, 13, 72, @@ -105688,7 +105688,7 @@ ] ], [ - "【89기】올리버 칸", + "89·올리버 칸", 82, 91, 15, @@ -105720,7 +105720,7 @@ ] ], [ - "【89기】김정은", + "89·김정은", 66, 83, 13, @@ -105756,7 +105756,7 @@ ] ], [ - "【89기】사스케", + "89·사스케", 89, 60, 13, @@ -105789,7 +105789,7 @@ ] ], [ - "【89기】강유", + "89·강유", 93, 15, 80, @@ -105811,7 +105811,7 @@ ] ], [ - "【89기】마요이", + "89·마요이", 15, 76, 97, @@ -105834,7 +105834,7 @@ ] ], [ - "【89기】가자에버그레이스", + "89·가자에버그레이스", 82, 15, 92, @@ -105861,7 +105861,7 @@ ] ], [ - "【89기】동수칸", + "89·동수칸", 71, 91, 13, @@ -105896,7 +105896,7 @@ ] ], [ - "【89기】인디애나올아메리칸", + "89·인디애나올아메리칸", 79, 94, 15, @@ -105924,7 +105924,7 @@ ] ], [ - "【89기】외심장", + "89·외심장", 82, 16, 91, @@ -105947,7 +105947,7 @@ ] ], [ - "【89기】No way back", + "89·No way back", 92, 79, 15, @@ -105970,7 +105970,7 @@ ] ], [ - "【89기】리노 잭슨", + "89·리노 잭슨", 78, 93, 16, @@ -106005,7 +106005,7 @@ ] ], [ - "【89기】불패", + "89·불패", 95, 80, 15, @@ -106029,7 +106029,7 @@ ] ], [ - "【89기】덕구", + "89·덕구", 80, 93, 15, @@ -106052,7 +106052,7 @@ ] ], [ - "【89기】bystander", + "89·bystander", 78, 96, 15, @@ -106076,7 +106076,7 @@ ] ], [ - "【89기】예수게이", + "89·예수게이", 82, 15, 91, @@ -106099,7 +106099,7 @@ ] ], [ - "【89기】셀레미", + "89·셀레미", 77, 15, 97, @@ -106123,7 +106123,7 @@ ] ], [ - "【89기】알리시아", + "89·알리시아", 80, 15, 93, @@ -106146,7 +106146,7 @@ ] ], [ - "【89기】모히칸", + "89·모히칸", 82, 65, 14, @@ -106174,7 +106174,7 @@ ] ], [ - "【89기】네이", + "89·네이", 92, 15, 82, @@ -106196,7 +106196,7 @@ ] ], [ - "【89기】?", + "89·?", 76, 15, 99, @@ -106218,7 +106218,7 @@ ] ], [ - "【89기】다영", + "89·다영", 78, 70, 13, @@ -106242,7 +106242,7 @@ ] ], [ - "【89기】Sase", + "89·Sase", 82, 66, 14, @@ -106274,7 +106274,7 @@ ] ], [ - "【89기】징기스칸", + "89·징기스칸", 68, 81, 13, @@ -106305,7 +106305,7 @@ ] ], [ - "【89기】삼모노잼", + "89·삼모노잼", 74, 15, 96, @@ -106327,7 +106327,7 @@ ] ], [ - "【89기】제갈여포", + "89·제갈여포", 77, 15, 95, @@ -106349,7 +106349,7 @@ ] ], [ - "【89기】령리한너구리", + "89·령리한너구리", 83, 92, 15, @@ -106383,7 +106383,7 @@ ] ], [ - "【89기】모모냥", + "89·모모냥", 71, 75, 13, @@ -106407,7 +106407,7 @@ ] ], [ - "【89기】미스티", + "89·미스티", 79, 15, 93, @@ -106429,7 +106429,7 @@ ] ], [ - "【89기】에버나이트", + "89·에버나이트", 96, 78, 16, @@ -106455,7 +106455,7 @@ ] ], [ - "【89기】아폴로", + "89·아폴로", 80, 93, 16, @@ -106477,7 +106477,7 @@ ] ], [ - "【89기】최진리", + "89·최진리", 95, 75, 16, @@ -106502,7 +106502,7 @@ ] ], [ - "【89기】와일드플라워", + "89·와일드플라워", 81, 15, 93, @@ -106524,7 +106524,7 @@ ] ], [ - "【89기】넹면", + "89·넹면", 79, 17, 91, @@ -106557,7 +106557,7 @@ ] ], [ - "【89기】로비", + "89·로비", 15, 72, 99, @@ -106580,7 +106580,7 @@ ] ], [ - "【89기】주하여친몽골여신", + "89·주하여친몽골여신", 17, 70, 98, @@ -106602,7 +106602,7 @@ ] ], [ - "【89기】ㅊㄹㅊㄹ", + "89·ㅊㄹㅊㄹ", 76, 95, 15, @@ -106626,7 +106626,7 @@ ] ], [ - "【89기】풍성한 한가위 독구", + "89·풍성한 한가위 독구", 16, 75, 96, @@ -106649,7 +106649,7 @@ ] ], [ - "【89기】카이스트", + "89·카이스트", 81, 15, 92, @@ -106671,7 +106671,7 @@ ] ], [ - "【89기】돌아온너구리", + "89·돌아온너구리", 95, 76, 16, @@ -106696,7 +106696,7 @@ ] ], [ - "【91기】정승필", + "91·정승필", 77, 92, 16, @@ -106735,7 +106735,7 @@ ] ], [ - "【91기】[속보] 정승필,", + "91·[속보] 정승필,", 87, 80, 15, @@ -106763,7 +106763,7 @@ ] ], [ - "【91기】어눌한 시루이 씨", + "91·어눌한 시루이 씨", 17, 72, 95, @@ -106787,7 +106787,7 @@ ] ], [ - "【91기】호나", + "91·호나", 78, 89, 16, @@ -106813,7 +106813,7 @@ ] ], [ - "【91기】강유", + "91·강유", 89, 15, 80, @@ -106837,7 +106837,7 @@ ] ], [ - "【91기】카이스트", + "91·카이스트", 77, 16, 91, @@ -106862,7 +106862,7 @@ ] ], [ - "【91기】쉬멜승필", + "91·쉬멜승필", 95, 73, 15, @@ -106886,7 +106886,7 @@ ] ], [ - "【91기】바나낫", + "91·바나낫", 78, 92, 15, @@ -106915,7 +106915,7 @@ ] ], [ - "【91기】사스케", + "91·사스케", 98, 70, 16, @@ -106946,7 +106946,7 @@ ] ], [ - "【91기】제갈여포", + "91·제갈여포", 80, 15, 93, @@ -106973,7 +106973,7 @@ ] ], [ - "【91기】생각없음", + "91·생각없음", 76, 16, 92, @@ -106997,7 +106997,7 @@ ] ], [ - "【91기】승필호4차발사성공", + "91·승필호4차발사성공", 78, 16, 89, @@ -107021,7 +107021,7 @@ ] ], [ - "【91기】Malaren", + "91·Malaren", 76, 94, 15, @@ -107050,7 +107050,7 @@ ] ], [ - "【91기】마제", + "91·마제", 77, 15, 92, @@ -107073,7 +107073,7 @@ ] ], [ - "【91기】시엘", + "91·시엘", 79, 88, 15, @@ -107098,7 +107098,7 @@ ] ], [ - "【91기】병리학적자세", + "91·병리학적자세", 80, 15, 89, @@ -107131,7 +107131,7 @@ ] ], [ - "【91기】커뮤중독자", + "91·커뮤중독자", 93, 75, 16, @@ -107164,7 +107164,7 @@ ] ], [ - "【91기】승테이크", + "91·승테이크", 78, 15, 90, @@ -107187,7 +107187,7 @@ ] ], [ - "【91기】나다", + "91·나다", 89, 78, 15, @@ -107210,7 +107210,7 @@ ] ], [ - "【91기】네이", + "91·네이", 76, 16, 91, @@ -107235,7 +107235,7 @@ ] ], [ - "【91기】정승피리리리?", + "91·정승피리리리?", 76, 93, 15, @@ -107264,7 +107264,7 @@ ] ], [ - "【91기】조승상", + "91·조승상", 81, 90, 16, @@ -107292,7 +107292,7 @@ ] ], [ - "【91기】명예로운 승필경", + "91·명예로운 승필경", 75, 15, 100, @@ -107332,7 +107332,7 @@ ] ], [ - "【91기】NK", + "91·NK", 77, 15, 94, @@ -107362,7 +107362,7 @@ ] ], [ - "【91기】배도변", + "91·배도변", 78, 15, 90, @@ -107387,7 +107387,7 @@ ] ], [ - "【91기】승누피", + "91·승누피", 75, 15, 95, @@ -107422,7 +107422,7 @@ ] ], [ - "【91기】냥냥냥", + "91·냥냥냥", 79, 87, 16, @@ -107445,7 +107445,7 @@ ] ], [ - "【91기】대교", + "91·대교", 89, 15, 81, @@ -107469,7 +107469,7 @@ ] ], [ - "【91기】평민킬러", + "91·평민킬러", 76, 93, 15, @@ -107497,7 +107497,7 @@ ] ], [ - "【91기】1210로아시작ㄱ", + "91·1210로아시작ㄱ", 75, 95, 15, @@ -107526,7 +107526,7 @@ ] ], [ - "【91기】인클라인덤벨프레스", + "91·인클라인덤벨프레스", 78, 90, 15, @@ -107557,7 +107557,7 @@ ] ], [ - "【91기】와일드플라워", + "91·와일드플라워", 77, 15, 91, @@ -107580,7 +107580,7 @@ ] ], [ - "【91기】카류", + "91·카류", 78, 16, 89, @@ -107602,7 +107602,7 @@ ] ], [ - "【91기】레드캡투어", + "91·레드캡투어", 77, 91, 15, @@ -107626,7 +107626,7 @@ ] ], [ - "【91기】냥냥", + "91·냥냥", 87, 16, 77, @@ -107648,7 +107648,7 @@ ] ], [ - "【91기】ㅊㄹㅊㄹ", + "91·ㅊㄹㅊㄹ", 82, 87, 16, @@ -107673,7 +107673,7 @@ ] ], [ - "【91기】최진리", + "91·최진리", 75, 92, 16, @@ -107696,7 +107696,7 @@ ] ], [ - "【91기】돌아온너구리", + "91·돌아온너구리", 15, 73, 94, @@ -107719,7 +107719,7 @@ ] ], [ - "【91기】NOV", + "91·NOV", 74, 90, 15, @@ -107743,7 +107743,7 @@ ] ], [ - "【91기】로비", + "91·로비", 16, 72, 94, @@ -107766,7 +107766,7 @@ ] ], [ - "【91기】서림동결혼식땅따", + "91·서림동결혼식땅따", 16, 88, 76, @@ -107789,7 +107789,7 @@ ] ], [ - "【91기】송탄강", + "91·송탄강", 17, 86, 77, @@ -107814,7 +107814,7 @@ ] ], [ - "【91기】Aion", + "91·Aion", 78, 89, 15, @@ -107838,7 +107838,7 @@ ] ], [ - "【91기】미스티", + "91·미스티", 73, 15, 91, @@ -107860,7 +107860,7 @@ ] ], [ - "【91기】아가공주", + "91·아가공주", 77, 15, 87, @@ -107883,7 +107883,7 @@ ] ], [ - "【92기】강유", + "92·강유", 91, 16, 80, @@ -107906,7 +107906,7 @@ ] ], [ - "【92기】랑", + "92·랑", 72, 73, 13, @@ -107930,7 +107930,7 @@ ] ], [ - "【92기】Hide_D", + "92·Hide_D", 78, 15, 90, @@ -107953,7 +107953,7 @@ ] ], [ - "【92기】마제", + "92·마제", 75, 15, 95, @@ -107975,7 +107975,7 @@ ] ], [ - "【92기】민트토끼", + "92·민트토끼", 15, 80, 87, @@ -107997,7 +107997,7 @@ ] ], [ - "【92기】병리학적자세", + "92·병리학적자세", 80, 15, 95, @@ -108028,7 +108028,7 @@ ] ], [ - "【92기】캐럴 부르는 독구", + "92·캐럴 부르는 독구", 15, 71, 96, @@ -108052,7 +108052,7 @@ ] ], [ - "【92기】외심장", + "92·외심장", 80, 15, 92, @@ -108075,7 +108075,7 @@ ] ], [ - "【92기】전두광", + "92·전두광", 81, 91, 15, @@ -108107,7 +108107,7 @@ ] ], [ - "【92기】6292", + "92·6292", 15, 71, 96, @@ -108130,7 +108130,7 @@ ] ], [ - "【92기】NK", + "92·NK", 95, 75, 15, @@ -108156,7 +108156,7 @@ ] ], [ - "【92기】평민킬러", + "92·평민킬러", 66, 84, 13, @@ -108191,7 +108191,7 @@ ] ], [ - "【92기】임사영", + "92·임사영", 78, 92, 15, @@ -108215,7 +108215,7 @@ ] ], [ - "【92기】타치바나히나노", + "92·타치바나히나노", 78, 16, 89, @@ -108237,7 +108237,7 @@ ] ], [ - "【92기】바나낫", + "92·바나낫", 80, 90, 15, @@ -108261,7 +108261,7 @@ ] ], [ - "【92기】...", + "92·...", 80, 89, 15, @@ -108287,7 +108287,7 @@ ] ], [ - "【92기】92년생 숏컷빅맘", + "92·92년생 숏컷빅맘", 91, 76, 16, @@ -108317,7 +108317,7 @@ ] ], [ - "【92기】퍄퍄", + "92·퍄퍄", 79, 90, 15, @@ -108340,7 +108340,7 @@ ] ], [ - "【92기】슬라임", + "92·슬라임", 85, 60, 13, @@ -108369,7 +108369,7 @@ ] ], [ - "【92기】불패", + "92·불패", 77, 93, 15, @@ -108397,7 +108397,7 @@ ] ], [ - "【92기】로비", + "92·로비", 15, 72, 96, @@ -108420,7 +108420,7 @@ ] ], [ - "【92기】단결독", + "92·단결독", 92, 76, 15, @@ -108452,7 +108452,7 @@ ] ], [ - "【92기】독구", + "92·독구", 78, 15, 92, @@ -108481,7 +108481,7 @@ ] ], [ - "【92기】루돌프", + "92·루돌프", 79, 93, 15, @@ -108510,7 +108510,7 @@ ] ], [ - "【92기】UMP9", + "92·UMP9", 65, 13, 77, @@ -108532,7 +108532,7 @@ ] ], [ - "【92기】카이스트", + "92·카이스트", 77, 16, 93, @@ -108558,7 +108558,7 @@ ] ], [ - "【92기】네이", + "92·네이", 88, 15, 82, @@ -108581,7 +108581,7 @@ ] ], [ - "【92기】수장", + "92·수장", 76, 94, 15, @@ -108612,7 +108612,7 @@ ] ], [ - "【92기】Sase", + "92·Sase", 78, 15, 92, @@ -108641,7 +108641,7 @@ ] ], [ - "【92기】제갈여포", + "92·제갈여포", 78, 90, 16, @@ -108664,7 +108664,7 @@ ] ], [ - "【92기】사스케", + "92·사스케", 94, 13, 60, @@ -108702,7 +108702,7 @@ ] ], [ - "【92기】노르딕햄스트링컬", + "92·노르딕햄스트링컬", 81, 15, 89, @@ -108725,7 +108725,7 @@ ] ], [ - "【92기】세울타코", + "92·세울타코", 77, 15, 95, @@ -108757,7 +108757,7 @@ ] ], [ - "【92기】수행", + "92·수행", 77, 87, 20, @@ -108780,7 +108780,7 @@ ] ], [ - "【92기】간지밍이", + "92·간지밍이", 79, 15, 91, @@ -108806,7 +108806,7 @@ ] ], [ - "【92기】쌀숭이", + "92·쌀숭이", 80, 15, 91, @@ -108828,7 +108828,7 @@ ] ], [ - "【92기】메종독구네", + "92·메종독구네", 15, 71, 94, @@ -108851,7 +108851,7 @@ ] ], [ - "【92기】92년생 김지영", + "92·92년생 김지영", 76, 15, 93, @@ -108873,7 +108873,7 @@ ] ], [ - "【92기】셀레미", + "92·셀레미", 83, 15, 87, @@ -108896,7 +108896,7 @@ ] ], [ - "【92기】대교", + "92·대교", 91, 15, 77, @@ -108923,7 +108923,7 @@ ] ], [ - "【92기】Jeju", + "92·Jeju", 93, 78, 15, @@ -108951,7 +108951,7 @@ ] ], [ - "【92기】92년생 앵지영", + "92·92년생 앵지영", 94, 73, 15, @@ -108976,7 +108976,7 @@ ] ], [ - "【92기】최진리", + "92·최진리", 79, 15, 90, @@ -109001,7 +109001,7 @@ ] ], [ - "【92기】마요이", + "92·마요이", 16, 73, 96, @@ -109025,7 +109025,7 @@ ] ], [ - "【92기】세종의종신파딱", + "92·세종의종신파딱", 77, 16, 90, @@ -109052,7 +109052,7 @@ ] ], [ - "【92기】ㅊㄹㅊㄹ", + "92·ㅊㄹㅊㄹ", 80, 89, 15, @@ -109077,7 +109077,7 @@ ] ], [ - "【92기】나야, 청솔모", + "92·나야, 청솔모", 91, 76, 15, @@ -109100,7 +109100,7 @@ ] ], [ - "【92기】황혼중", + "92·황혼중", 15, 85, 84, @@ -109122,7 +109122,7 @@ ] ], [ - "【92기】로즈", + "92·로즈", 15, 75, 91, @@ -109144,7 +109144,7 @@ ] ], [ - "【92기】도화가", + "92·도화가", 79, 16, 87, @@ -109167,7 +109167,7 @@ ] ], [ - "【92기】이밤의끝을잡고", + "92·이밤의끝을잡고", 90, 75, 15, @@ -109189,7 +109189,7 @@ ] ], [ - "【92기】배가고픈개", + "92·배가고픈개", 79, 89, 16, @@ -109213,7 +109213,7 @@ ] ], [ - "【92기】송탄강", + "92·송탄강", 16, 85, 80, @@ -109236,7 +109236,7 @@ ] ], [ - "【92기】재야", + "92·재야", 16, 75, 90, @@ -109258,7 +109258,7 @@ ] ], [ - "【93기】카이스트", + "93·카이스트", 76, 15, 85, @@ -109281,7 +109281,7 @@ ] ], [ - "【93기】냥냥의오른팔", + "93·냥냥의오른팔", 73, 15, 88, @@ -109308,7 +109308,7 @@ ] ], [ - "【93기】냥냥", + "93·냥냥", 74, 15, 87, @@ -109338,7 +109338,7 @@ ] ], [ - "【93기】병리학적자세", + "93·병리학적자세", 72, 15, 91, @@ -109368,7 +109368,7 @@ ] ], [ - "【93기】그런스핔이필요하다", + "93·그런스핔이필요하다", 15, 73, 88, @@ -109390,7 +109390,7 @@ ] ], [ - "【93기】긁혔냥", + "93·긁혔냥", 92, 70, 15, @@ -109421,7 +109421,7 @@ ] ], [ - "【93기】미스티", + "93·미스티", 73, 16, 88, @@ -109443,7 +109443,7 @@ ] ], [ - "【93기】임사영", + "93·임사영", 89, 72, 15, @@ -109471,7 +109471,7 @@ ] ], [ - "【93기】바나낫", + "93·바나낫", 92, 71, 15, @@ -109499,7 +109499,7 @@ ] ], [ - "【93기】강유", + "93·강유", 87, 15, 73, @@ -109523,7 +109523,7 @@ ] ], [ - "【93기】Hide_D", + "93·Hide_D", 73, 15, 89, @@ -109546,7 +109546,7 @@ ] ], [ - "【93기】리퍼", + "93·리퍼", 84, 73, 16, @@ -109570,7 +109570,7 @@ ] ], [ - "【93기】끼에에에엑!!!", + "93·끼에에에엑!!!", 84, 15, 75, @@ -109592,7 +109592,7 @@ ] ], [ - "【93기】코트디부아르", + "93·코트디부아르", 17, 71, 87, @@ -109614,7 +109614,7 @@ ] ], [ - "【93기】륜", + "93·륜", 75, 87, 16, @@ -109640,7 +109640,7 @@ ] ], [ - "【93기】퍄퍄", + "93·퍄퍄", 73, 89, 15, @@ -109663,7 +109663,7 @@ ] ], [ - "【93기】ZETA", + "93·ZETA", 74, 85, 17, @@ -109685,7 +109685,7 @@ ] ], [ - "【93기】아라야", + "93·아라야", 76, 85, 15, @@ -109711,7 +109711,7 @@ ] ], [ - "【93기】냥뇽녕냥", + "93·냥뇽녕냥", 76, 87, 15, @@ -109748,7 +109748,7 @@ ] ], [ - "【93기】그숙련에잠이오냥", + "93·그숙련에잠이오냥", 72, 91, 15, @@ -109780,7 +109780,7 @@ ] ], [ - "【93기】동냥", + "93·동냥", 74, 15, 88, @@ -109808,7 +109808,7 @@ ] ], [ - "【93기】빠른94", + "93·빠른94", 74, 89, 15, @@ -109833,7 +109833,7 @@ ] ], [ - "【93기】제갈여포", + "93·제갈여포", 74, 16, 87, @@ -109861,7 +109861,7 @@ ] ], [ - "【93기】ㅊㄹㅊㄹ", + "93·ㅊㄹㅊㄹ", 75, 87, 16, @@ -109885,7 +109885,7 @@ ] ], [ - "【93기】주하", + "93·주하", 83, 73, 17, @@ -109909,7 +109909,7 @@ ] ], [ - "【93기】송탄강", + "93·송탄강", 85, 16, 74, @@ -109933,7 +109933,7 @@ ] ], [ - "【93기】조승상", + "93·조승상", 73, 90, 15, @@ -109965,7 +109965,7 @@ ] ], [ - "【93기】서희", + "93·서희", 87, 15, 74, @@ -109987,7 +109987,7 @@ ] ], [ - "【93기】세르카", + "93·세르카", 74, 15, 89, @@ -110022,7 +110022,7 @@ ] ], [ - "【93기】NK", + "93·NK", 90, 73, 15, @@ -110054,7 +110054,7 @@ ] ], [ - "【93기】Sase", + "93·Sase", 74, 15, 89, @@ -110081,7 +110081,7 @@ ] ], [ - "【93기】삼모쉬었음", + "93·삼모쉬었음", 76, 15, 84, @@ -110103,7 +110103,7 @@ ] ], [ - "【93기】스핔이", + "93·스핔이", 87, 73, 16, @@ -110134,7 +110134,7 @@ ] ], [ - "【93기】불패", + "93·불패", 73, 89, 15, @@ -110163,7 +110163,7 @@ ] ], [ - "【93기】나는해고", + "93·나는해고", 73, 87, 15, @@ -110189,7 +110189,7 @@ ] ], [ - "【93기】8ase", + "93·8ase", 74, 16, 85, @@ -110212,7 +110212,7 @@ ] ], [ - "【93기】단또", + "93·단또", 91, 72, 15, @@ -110243,7 +110243,7 @@ ] ], [ - "【93기】뭐하냥", + "93·뭐하냥", 92, 15, 70, @@ -110274,7 +110274,7 @@ ] ], [ - "【93기】최진리", + "93·최진리", 73, 15, 88, @@ -110303,7 +110303,7 @@ ] ], [ - "【93기】쉬었음참새", + "93·쉬었음참새", 72, 89, 15, @@ -110329,7 +110329,7 @@ ] ], [ - "【93기】호나", + "93·호나", 73, 88, 15, @@ -110353,7 +110353,7 @@ ] ], [ - "【93기】로비", + "93·로비", 15, 73, 87, @@ -110375,7 +110375,7 @@ ] ], [ - "【93기】팍팍해요", + "93·팍팍해요", 75, 85, 15, @@ -110398,7 +110398,7 @@ ] ], [ - "【93기】재야", + "93·재야", 16, 73, 86, @@ -110420,7 +110420,7 @@ ] ], [ - "【94기】임사영", + "94·임사영", 95, 73, 15, @@ -110445,7 +110445,7 @@ ] ], [ - "【94기】싱하", + "94·싱하", 75, 15, 98, @@ -110482,7 +110482,7 @@ ] ], [ - "【94기】Hide_D", + "94·Hide_D", 75, 15, 91, @@ -110504,7 +110504,7 @@ ] ], [ - "【94기】병리학적자세", + "94·병리학적자세", 77, 15, 94, @@ -110534,7 +110534,7 @@ ] ], [ - "【94기】010120", + "94·010120", 81, 89, 15, @@ -110561,7 +110561,7 @@ ] ], [ - "【94기】외심장", + "94·외심장", 80, 15, 92, @@ -110585,7 +110585,7 @@ ] ], [ - "【94기】꿀잠자는참새", + "94·꿀잠자는참새", 77, 15, 95, @@ -110609,7 +110609,7 @@ ] ], [ - "【94기】최진리", + "94·최진리", 76, 15, 97, @@ -110639,7 +110639,7 @@ ] ], [ - "【94기】셀레미", + "94·셀레미", 75, 16, 93, @@ -110662,7 +110662,7 @@ ] ], [ - "【94기】카이스트", + "94·카이스트", 77, 17, 92, @@ -110684,7 +110684,7 @@ ] ], [ - "【94기】코바야시 미쿠루", + "94·코바야시 미쿠루", 77, 94, 15, @@ -110713,7 +110713,7 @@ ] ], [ - "【94기】Sase Kim", + "94·Sase Kim", 75, 15, 97, @@ -110743,7 +110743,7 @@ ] ], [ - "【94기】냥냥", + "94·냥냥", 78, 91, 15, @@ -110767,7 +110767,7 @@ ] ], [ - "【94기】울트라리스크", + "94·울트라리스크", 94, 85, 15, @@ -110802,7 +110802,7 @@ ] ], [ - "【94기】와일드플라워", + "94·와일드플라워", 79, 15, 93, @@ -110824,7 +110824,7 @@ ] ], [ - "【94기】m장", + "94·m장", 77, 96, 15, @@ -110858,7 +110858,7 @@ ] ], [ - "【94기】NK", + "94·NK", 97, 74, 15, @@ -110885,7 +110885,7 @@ ] ], [ - "【94기】바나낫", + "94·바나낫", 76, 93, 15, @@ -110910,7 +110910,7 @@ ] ], [ - "【94기】PIKU이상형월드컵", + "94·PIKU이상형월드컵", 76, 15, 94, @@ -110932,7 +110932,7 @@ ] ], [ - "【94기】로즈워드차를로스성", + "94·로즈워드차를로스성", 96, 75, 15, @@ -110961,7 +110961,7 @@ ] ], [ - "【94기】뒤집개", + "94·뒤집개", 79, 93, 15, @@ -110993,7 +110993,7 @@ ] ], [ - "【94기】갈비도둑", + "94·갈비도둑", 15, 101, 70, @@ -111018,7 +111018,7 @@ ] ], [ - "【94기】에드워드", + "94·에드워드", 75, 98, 15, @@ -111058,7 +111058,7 @@ ] ], [ - "【94기】퍄퍄", + "94·퍄퍄", 79, 92, 15, @@ -111082,7 +111082,7 @@ ] ], [ - "【94기】감흥", + "94·감흥", 76, 15, 94, @@ -111112,7 +111112,7 @@ ] ], [ - "【94기】호나", + "94·호나", 79, 93, 15, @@ -111138,7 +111138,7 @@ ] ], [ - "【94기】감다뒤", + "94·감다뒤", 20, 73, 92, @@ -111160,7 +111160,7 @@ ] ], [ - "【94기】독하", + "94·독하", 76, 15, 95, @@ -111188,7 +111188,7 @@ ] ], [ - "【94기】증바람", + "94·증바람", 76, 15, 96, @@ -111213,7 +111213,7 @@ ] ], [ - "【94기】불패", + "94·불패", 76, 97, 15, @@ -111243,7 +111243,7 @@ ] ], [ - "【94기】대교", + "94·대교", 88, 15, 85, @@ -111268,7 +111268,7 @@ ] ], [ - "【94기】농부", + "94·농부", 76, 15, 94, @@ -111293,7 +111293,7 @@ ] ], [ - "【94기】조승상", + "94·조승상", 76, 92, 15, @@ -111316,7 +111316,7 @@ ] ], [ - "【94기】ㅇㅅㅇ", + "94·ㅇㅅㅇ", 88, 83, 15, @@ -111342,7 +111342,7 @@ ] ], [ - "【94기】주기자", + "94·주기자", 77, 16, 95, @@ -111370,7 +111370,7 @@ ] ], [ - "【94기】갈비집막내아들", + "94·갈비집막내아들", 15, 95, 73, @@ -111394,7 +111394,7 @@ ] ], [ - "【94기】송탄강", + "94·송탄강", 16, 76, 93, @@ -111417,7 +111417,7 @@ ] ], [ - "【94기】설맞이 독구", + "94·설맞이 독구", 15, 73, 96, @@ -111440,7 +111440,7 @@ ] ], [ - "【94기】척", + "94·척", 16, 72, 97, @@ -111462,7 +111462,7 @@ ] ], [ - "【94기】조운", + "94·조운", 15, 73, 96, @@ -111486,7 +111486,7 @@ ] ], [ - "【94기】앵벌스", + "94·앵벌스", 90, 76, 15, @@ -111509,7 +111509,7 @@ ] ], [ - "【94기】ㅊㄹㅊㄹ", + "94·ㅊㄹㅊㄹ", 79, 90, 16, @@ -111533,7 +111533,7 @@ ] ], [ - "【94기】타마모크로스", + "94·타마모크로스", 90, 79, 15, @@ -111555,7 +111555,7 @@ ] ], [ - "【94기】마요이", + "94·마요이", 16, 75, 92, @@ -111577,7 +111577,7 @@ ] ], [ - "【94기】기술연구하장", + "94·기술연구하장", 15, 75, 91, @@ -111599,7 +111599,7 @@ ] ], [ - "【94기】리니지", + "94·리니지", 89, 77, 18, @@ -111624,7 +111624,7 @@ ] ], [ - "【94기】미도리야 이즈쿠", + "94·미도리야 이즈쿠", 94, 15, 73, @@ -111646,7 +111646,7 @@ ] ], [ - "【94기】74", + "94·74", 15, 72, 94, @@ -111670,7 +111670,7 @@ ] ], [ - "【94기】Navy마초", + "94·Navy마초", 87, 74, 17, @@ -111694,7 +111694,7 @@ ] ], [ - "【96기】김야곤", + "96·김야곤", 93, 82, 16, @@ -111727,7 +111727,7 @@ ] ], [ - "【96기】몽골맨", + "96·몽골맨", 80, 94, 15, @@ -111750,7 +111750,7 @@ ] ], [ - "【96기】슬라임123", + "96·슬라임123", 83, 66, 13, @@ -111779,7 +111779,7 @@ ] ], [ - "【96기】아메리칸", + "96·아메리칸", 71, 80, 14, @@ -111806,7 +111806,7 @@ ] ], [ - "【96기】갑옷", + "96·갑옷", 84, 66, 14, @@ -111842,7 +111842,7 @@ ] ], [ - "【96기】와일드플라워", + "96·와일드플라워", 66, 13, 82, @@ -111866,7 +111866,7 @@ ] ], [ - "【96기】바나낫", + "96·바나낫", 66, 83, 14, @@ -111893,7 +111893,7 @@ ] ], [ - "【96기】바티칸", + "96·바티칸", 69, 13, 79, @@ -111916,7 +111916,7 @@ ] ], [ - "【96기】예턴장", + "96·예턴장", 72, 82, 13, @@ -111951,7 +111951,7 @@ ] ], [ - "【96기】살로메", + "96·살로메", 66, 83, 13, @@ -111978,7 +111978,7 @@ ] ], [ - "【96기】ㅊㄹㅊㄹ", + "96·ㅊㄹㅊㄹ", 68, 13, 82, @@ -112002,7 +112002,7 @@ ] ], [ - "【96기】스테퍼레트로", + "96·스테퍼레트로", 70, 77, 13, @@ -112025,7 +112025,7 @@ ] ], [ - "【96기】참새30마리먹은독구", + "96·참새30마리먹은독구", 15, 73, 99, @@ -112048,7 +112048,7 @@ ] ], [ - "【96기】KarRiu", + "96·KarRiu", 83, 62, 13, @@ -112075,7 +112075,7 @@ ] ], [ - "【96기】카이스트", + "96·카이스트", 81, 15, 94, @@ -112102,7 +112102,7 @@ ] ], [ - "【96기】임사영", + "96·임사영", 81, 69, 13, @@ -112126,7 +112126,7 @@ ] ], [ - "【96기】NK", + "96·NK", 82, 70, 13, @@ -112162,7 +112162,7 @@ ] ], [ - "【96기】개인전업투자자", + "96·개인전업투자자", 84, 65, 13, @@ -112189,7 +112189,7 @@ ] ], [ - "【96기】96네코", + "96·96네코", 71, 13, 78, @@ -112211,7 +112211,7 @@ ] ], [ - "【96기】ChatGPT", + "96·ChatGPT", 78, 71, 13, @@ -112235,7 +112235,7 @@ ] ], [ - "【96기】빈칸", + "96·빈칸", 82, 14, 71, @@ -112268,7 +112268,7 @@ ] ], [ - "【96기】Sase Kim", + "96·Sase Kim", 85, 65, 13, @@ -112301,7 +112301,7 @@ ] ], [ - "【96기】비브람파이브핑거스", + "96·비브람파이브핑거스", 69, 78, 13, @@ -112326,7 +112326,7 @@ ] ], [ - "【96기】V", + "96·V", 65, 14, 82, @@ -112348,7 +112348,7 @@ ] ], [ - "【96기】몽마 탄 주하", + "96·몽마 탄 주하", 67, 83, 13, @@ -112371,7 +112371,7 @@ ] ], [ - "【96기】미스티", + "96·미스티", 73, 13, 74, @@ -112393,7 +112393,7 @@ ] ], [ - "【96기】병리학적자세", + "96·병리학적자세", 66, 13, 85, @@ -112421,7 +112421,7 @@ ] ], [ - "【96기】불패", + "96·불패", 69, 81, 14, @@ -112447,7 +112447,7 @@ ] ], [ - "【96기】대교", + "96·대교", 82, 66, 13, @@ -112478,7 +112478,7 @@ ] ], [ - "【96기】오예", + "96·오예", 66, 13, 83, @@ -112501,7 +112501,7 @@ ] ], [ - "【96기】감흥", + "96·감흥", 69, 13, 87, @@ -112540,7 +112540,7 @@ ] ], [ - "【96기】조승상", + "96·조승상", 70, 78, 13, @@ -112564,7 +112564,7 @@ ] ], [ - "【96기】외심장", + "96·외심장", 68, 13, 81, @@ -112587,7 +112587,7 @@ ] ], [ - "【96기】해원", + "96·해원", 67, 13, 83, @@ -112620,7 +112620,7 @@ ] ], [ - "【96기】늦은건가", + "96·늦은건가", 66, 13, 82, @@ -112643,7 +112643,7 @@ ] ], [ - "【96기】채운 카툰", + "96·채운 카툰", 68, 80, 13, @@ -112666,7 +112666,7 @@ ] ], [ - "【96기】제갈여포", + "96·제갈여포", 76, 13, 75, @@ -112689,7 +112689,7 @@ ] ], [ - "【96기】셀레미", + "96·셀레미", 66, 13, 83, @@ -112712,7 +112712,7 @@ ] ], [ - "【96기】빠나나나", + "96·빠나나나", 66, 13, 82, @@ -112735,7 +112735,7 @@ ] ], [ - "【96기】지각이다~!", + "96·지각이다~!", 80, 13, 69, @@ -112759,7 +112759,7 @@ ] ], [ - "【96기】사스케", + "96·사스케", 75, 13, 72, @@ -112783,7 +112783,7 @@ ] ], [ - "【96기】Navy마초", + "96·Navy마초", 79, 91, 15, @@ -112806,7 +112806,7 @@ ] ], [ - "【96기】페그오", + "96·페그오", 68, 82, 14, @@ -112830,7 +112830,7 @@ ] ], [ - "【96기】알테오젠", + "96·알테오젠", 69, 82, 13, @@ -112859,7 +112859,7 @@ ] ], [ - "【96기】탐구생활", + "96·탐구생활", 15, 94, 76, @@ -112882,7 +112882,7 @@ ] ], [ - "【97기】감흥", + "97·감흥", 75, 16, 87, @@ -112905,7 +112905,7 @@ ] ], [ - "【97기】유르", + "97·유르", 81, 89, 15, @@ -112931,7 +112931,7 @@ ] ], [ - "【97기】병리학적자세", + "97·병리학적자세", 76, 15, 93, @@ -112964,7 +112964,7 @@ ] ], [ - "【97기】임사영", + "97·임사영", 77, 15, 89, @@ -112986,7 +112986,7 @@ ] ], [ - "【97기】강유", + "97·강유", 88, 15, 77, @@ -113009,7 +113009,7 @@ ] ], [ - "【97기】여름비", + "97·여름비", 76, 93, 15, @@ -113032,7 +113032,7 @@ ] ], [ - "【97기】갑옷", + "97·갑옷", 99, 70, 15, @@ -113065,7 +113065,7 @@ ] ], [ - "【97기】라인하르트", + "97·라인하르트", 92, 74, 15, @@ -113090,7 +113090,7 @@ ] ], [ - "【97기】카이스트", + "97·카이스트", 76, 15, 90, @@ -113112,7 +113112,7 @@ ] ], [ - "【97기】슈퍼마리오", + "97·슈퍼마리오", 95, 73, 15, @@ -113135,7 +113135,7 @@ ] ], [ - "【97기】효자 독구", + "97·효자 독구", 16, 74, 93, @@ -113159,7 +113159,7 @@ ] ], [ - "【97기】북오더", + "97·북오더", 78, 15, 88, @@ -113183,7 +113183,7 @@ ] ], [ - "【97기】로젤리나", + "97·로젤리나", 76, 15, 91, @@ -113208,7 +113208,7 @@ ] ], [ - "【97기】외심장", + "97·외심장", 78, 15, 89, @@ -113231,7 +113231,7 @@ ] ], [ - "【97기】이세리 니나", + "97·이세리 니나", 78, 89, 15, @@ -113258,7 +113258,7 @@ ] ], [ - "【97기】펭구 코스프레 주하", + "97·펭구 코스프레 주하", 92, 73, 15, @@ -113281,7 +113281,7 @@ ] ], [ - "【97기】대교", + "97·대교", 94, 72, 15, @@ -113305,7 +113305,7 @@ ] ], [ - "【97기】독우가", + "97·독우가", 96, 72, 15, @@ -113336,7 +113336,7 @@ ] ], [ - "【97기】미스터서울", + "97·미스터서울", 79, 15, 91, @@ -113371,7 +113371,7 @@ ] ], [ - "【97기】독규", + "97·독규", 93, 75, 15, @@ -113406,7 +113406,7 @@ ] ], [ - "【97기】커피한잔", + "97·커피한잔", 90, 83, 15, @@ -113436,7 +113436,7 @@ ] ], [ - "【97기】불패", + "97·불패", 77, 93, 15, @@ -113470,7 +113470,7 @@ ] ], [ - "【97기】정체를 숨긴자", + "97·정체를 숨긴자", 73, 93, 16, @@ -113510,7 +113510,7 @@ ] ], [ - "【97기】m유기", + "97·m유기", 75, 15, 93, @@ -113533,7 +113533,7 @@ ] ], [ - "【97기】어천독", + "97·어천독", 78, 90, 15, @@ -113556,7 +113556,7 @@ ] ], [ - "【97기】뚂뀨", + "97·뚂뀨", 68, 73, 13, @@ -113579,7 +113579,7 @@ ] ], [ - "【97기】실접장", + "97·실접장", 76, 95, 15, @@ -113614,7 +113614,7 @@ ] ], [ - "【97기】ㅊㄹㅊㄹ", + "97·ㅊㄹㅊㄹ", 78, 92, 15, @@ -113643,7 +113643,7 @@ ] ], [ - "【97기】척", + "97·척", 76, 92, 15, @@ -113668,7 +113668,7 @@ ] ], [ - "【97기】챱구", + "97·챱구", 78, 92, 15, @@ -113699,7 +113699,7 @@ ] ], [ - "【97기】NK", + "97·NK", 100, 71, 15, @@ -113729,7 +113729,7 @@ ] ], [ - "【97기】호나", + "97·호나", 77, 89, 15, @@ -113755,7 +113755,7 @@ ] ], [ - "【97기】키레네", + "97·키레네", 80, 88, 15, @@ -113780,7 +113780,7 @@ ] ], [ - "【97기】허달려과장", + "97·허달려과장", 78, 15, 89, @@ -113805,7 +113805,7 @@ ] ], [ - "【97기】장원영", + "97·장원영", 75, 15, 89, @@ -113828,7 +113828,7 @@ ] ], [ - "【97기】또지각이다!", + "97·또지각이다!", 87, 15, 79, @@ -113850,7 +113850,7 @@ ] ], [ - "【97기】아르망디", + "97·아르망디", 77, 90, 16, @@ -113875,7 +113875,7 @@ ] ], [ - "【97기】김야곤", + "97·김야곤", 90, 80, 15, @@ -113905,7 +113905,7 @@ ] ], [ - "【97기】사스케", + "97·사스케", 76, 15, 89, @@ -113929,7 +113929,7 @@ ] ], [ - "【97기】1557", + "97·1557", 78, 86, 17, @@ -113952,7 +113952,7 @@ ] ], [ - "【97기】로비", + "97·로비", 15, 73, 93, @@ -113975,7 +113975,7 @@ ] ], [ - "【97기】Navy마초", + "97·Navy마초", 77, 16, 87, @@ -113997,7 +113997,7 @@ ] ], [ - "【97기】불장", + "97·불장", 77, 86, 15, @@ -114019,7 +114019,7 @@ ] ], [ - "【97기】우유", + "97·우유", 77, 87, 17, @@ -114042,7 +114042,7 @@ ] ], [ - "【97기】지각셀레미", + "97·지각셀레미", 76, 15, 90, @@ -114064,7 +114064,7 @@ ] ], [ - "【97기】바테카", + "97·바테카", 15, 73, 92, @@ -114086,7 +114086,7 @@ ] ], [ - "【98기】흑인", + "98·흑인", 91, 83, 15, @@ -114113,7 +114113,7 @@ ] ], [ - "【98기】쌍화차", + "98·쌍화차", 78, 68, 13, @@ -114136,7 +114136,7 @@ ] ], [ - "【98기】모리아 루루카", + "98·모리아 루루카", 80, 92, 15, @@ -114160,7 +114160,7 @@ ] ], [ - "【98기】삼모야호", + "98·삼모야호", 67, 13, 83, @@ -114193,7 +114193,7 @@ ] ], [ - "【98기】MC배짱", + "98·MC배짱", 70, 81, 14, @@ -114225,7 +114225,7 @@ ] ], [ - "【98기】Hide_D", + "98·Hide_D", 67, 13, 81, @@ -114249,7 +114249,7 @@ ] ], [ - "【98기】감흥", + "98·감흥", 24, 77, 87, @@ -114271,7 +114271,7 @@ ] ], [ - "【98기】호나", + "98·호나", 80, 92, 15, @@ -114294,7 +114294,7 @@ ] ], [ - "【98기】별 수호자 주하", + "98·별 수호자 주하", 81, 68, 13, @@ -114317,7 +114317,7 @@ ] ], [ - "【98기】외심장", + "98·외심장", 81, 15, 92, @@ -114339,7 +114339,7 @@ ] ], [ - "【98기】랜임장", + "98·랜임장", 67, 83, 13, @@ -114371,7 +114371,7 @@ ] ], [ - "【98기】냥냥냥", + "98·냥냥냥", 85, 64, 13, @@ -114395,7 +114395,7 @@ ] ], [ - "【98기】네이", + "98·네이", 103, 70, 15, @@ -114424,7 +114424,7 @@ ] ], [ - "【98기】대교", + "98·대교", 83, 64, 14, @@ -114447,7 +114447,7 @@ ] ], [ - "【98기】냥떠러지", + "98·냥떠러지", 80, 15, 96, @@ -114470,7 +114470,7 @@ ] ], [ - "【98기】비열님", + "98·비열님", 82, 65, 14, @@ -114498,7 +114498,7 @@ ] ], [ - "【98기】태블릿", + "98·태블릿", 69, 13, 84, @@ -114531,7 +114531,7 @@ ] ], [ - "【98기】블라디레나 밀리제", + "98·블라디레나 밀리제", 70, 78, 14, @@ -114554,7 +114554,7 @@ ] ], [ - "【98기】라이덴 슈가", + "98·라이덴 슈가", 68, 83, 13, @@ -114585,7 +114585,7 @@ ] ], [ - "【98기】불여시", + "98·불여시", 67, 13, 82, @@ -114608,7 +114608,7 @@ ] ], [ - "【98기】독구", + "98·독구", 67, 13, 84, @@ -114642,7 +114642,7 @@ ] ], [ - "【98기】크냥", + "98·크냥", 66, 13, 82, @@ -114667,7 +114667,7 @@ ] ], [ - "【98기】뤼엔", + "98·뤼엔", 98, 78, 15, @@ -114695,7 +114695,7 @@ ] ], [ - "【98기】카이스트", + "98·카이스트", 79, 16, 95, @@ -114719,7 +114719,7 @@ ] ], [ - "【98기】독나미", + "98·독나미", 68, 13, 82, @@ -114748,7 +114748,7 @@ ] ], [ - "【98기】척", + "98·척", 79, 98, 15, @@ -114771,7 +114771,7 @@ ] ], [ - "【98기】플로로", + "98·플로로", 82, 92, 15, @@ -114795,7 +114795,7 @@ ] ], [ - "【98기】임사영", + "98·임사영", 67, 13, 81, @@ -114818,7 +114818,7 @@ ] ], [ - "【98기】냥냥 아님", + "98·냥냥 아님", 82, 95, 15, @@ -114848,7 +114848,7 @@ ] ], [ - "【98기】앵벌스 친구 독구", + "98·앵벌스 친구 독구", 100, 72, 15, @@ -114875,7 +114875,7 @@ ] ], [ - "【98기】북오더", + "98·북오더", 71, 82, 13, @@ -114911,7 +114911,7 @@ ] ], [ - "【98기】에이메스", + "98·에이메스", 94, 78, 15, @@ -114934,7 +114934,7 @@ ] ], [ - "【98기】불패", + "98·불패", 66, 85, 13, @@ -114968,7 +114968,7 @@ ] ], [ - "【98기】해부학적자세", + "98·해부학적자세", 80, 93, 15, @@ -114995,7 +114995,7 @@ ] ], [ - "【98기】ㅊㄹㅊㄹ", + "98·ㅊㄹㅊㄹ", 80, 94, 15, @@ -115022,7 +115022,7 @@ ] ], [ - "【98기】장원영", + "98·장원영", 80, 15, 95, @@ -115047,7 +115047,7 @@ ] ], [ - "【98기】독거노인", + "98·독거노인", 88, 60, 13, @@ -115077,7 +115077,7 @@ ] ], [ - "【98기】Navy마초", + "98·Navy마초", 68, 78, 14, @@ -115100,7 +115100,7 @@ ] ], [ - "【98기】TIME", + "98·TIME", 80, 94, 17, @@ -115123,7 +115123,7 @@ ] ], [ - "【98기】강유", + "98·강유", 90, 16, 82, @@ -115145,7 +115145,7 @@ ] ], [ - "【98기】로비", + "98·로비", 13, 63, 85, @@ -115169,7 +115169,7 @@ ] ], [ - "【98기】마카다미아", + "98·마카다미아", 82, 91, 16, @@ -115195,7 +115195,7 @@ ] ], [ - "【98기】미스티", + "98·미스티", 81, 16, 96, @@ -115224,7 +115224,7 @@ ] ], [ - "【98기】또각셀레미", + "98·또각셀레미", 81, 16, 92, @@ -115247,7 +115247,7 @@ ] ], [ - "【98기】한 살 덜 먹은 독구", + "98·한 살 덜 먹은 독구", 15, 77, 97, @@ -115269,7 +115269,7 @@ ] ], [ - "【98기】소세지야채볶음", + "98·소세지야채볶음", 15, 73, 97, @@ -115292,7 +115292,7 @@ ] ], [ - "【99기】이", + "99·이", 80, 92, 16, @@ -115318,7 +115318,7 @@ ] ], [ - "【99기】Navy마초", + "99·Navy마초", 81, 89, 16, @@ -115344,7 +115344,7 @@ ] ], [ - "【99기】유여", + "99·유여", 88, 16, 82, @@ -115366,7 +115366,7 @@ ] ], [ - "【99기】김야곤", + "99·김야곤", 91, 80, 16, @@ -115400,7 +115400,7 @@ ] ], [ - "【99기】와일드플라워", + "99·와일드플라워", 77, 15, 92, @@ -115423,7 +115423,7 @@ ] ], [ - "【99기】무지장", + "99·무지장", 13, 60, 87, @@ -115451,7 +115451,7 @@ ] ], [ - "【99기】바나낫", + "99·바나낫", 78, 96, 15, @@ -115479,7 +115479,7 @@ ] ], [ - "【99기】외심장", + "99·외심장", 76, 97, 15, @@ -115514,7 +115514,7 @@ ] ], [ - "【99기】대교", + "99·대교", 96, 76, 15, @@ -115539,7 +115539,7 @@ ] ], [ - "【99기】야치요", + "99·야치요", 79, 15, 94, @@ -115571,7 +115571,7 @@ ] ], [ - "【99기】커리", + "99·커리", 94, 76, 15, @@ -115594,7 +115594,7 @@ ] ], [ - "【99기】99대장", + "99·99대장", 81, 89, 16, @@ -115623,7 +115623,7 @@ ] ], [ - "【99기】골든부츠 독구", + "99·골든부츠 독구", 15, 73, 97, @@ -115645,7 +115645,7 @@ ] ], [ - "【99기】궁도부", + "99·궁도부", 92, 79, 15, @@ -115668,7 +115668,7 @@ ] ], [ - "【99기】냥냥", + "99·냥냥", 78, 15, 89, @@ -115690,7 +115690,7 @@ ] ], [ - "【99기】임사영", + "99·임사영", 81, 91, 15, @@ -115713,7 +115713,7 @@ ] ], [ - "【99기】NK", + "99·NK", 81, 90, 16, @@ -115736,7 +115736,7 @@ ] ], [ - "【99기】칠무해원", + "99·칠무해원", 82, 91, 15, @@ -115761,7 +115761,7 @@ ] ], [ - "【99기】수장", + "99·수장", 79, 92, 15, @@ -115785,7 +115785,7 @@ ] ], [ - "【99기】ㅁ.ㅁ", + "99·ㅁ.ㅁ", 90, 15, 79, @@ -115811,7 +115811,7 @@ ] ], [ - "【99기】나랑사귀자해원", + "99·나랑사귀자해원", 79, 16, 93, @@ -115843,7 +115843,7 @@ ] ], [ - "【99기】카이스트", + "99·카이스트", 79, 15, 93, @@ -115866,7 +115866,7 @@ ] ], [ - "【99기】불패", + "99·불패", 76, 15, 95, @@ -115894,7 +115894,7 @@ ] ], [ - "【99기】구구가가", + "99·구구가가", 98, 73, 15, @@ -115920,7 +115920,7 @@ ] ], [ - "【99기】셀레미", + "99·셀레미", 78, 16, 94, @@ -115946,7 +115946,7 @@ ] ], [ - "【99기】갑옷", + "99·갑옷", 86, 60, 13, @@ -115976,7 +115976,7 @@ ] ], [ - "【99기】사스케", + "99·사스케", 77, 16, 93, @@ -115999,7 +115999,7 @@ ] ], [ - "【99기】비", + "99·비", 79, 15, 91, @@ -116025,7 +116025,7 @@ ] ], [ - "【99기】북오더", + "99·북오더", 77, 94, 15, @@ -116052,7 +116052,7 @@ ] ], [ - "【99기】구구", + "99·구구", 78, 16, 99, @@ -116087,7 +116087,7 @@ ] ], [ - "【99기】ㅊㄹㅊㄹ", + "99·ㅊㄹㅊㄹ", 78, 94, 15, @@ -116113,7 +116113,7 @@ ] ], [ - "【99기】왜심장", + "99·왜심장", 79, 92, 15, @@ -116147,7 +116147,7 @@ ] ], [ - "【99기】뀨", + "99·뀨", 16, 96, 17, @@ -116169,7 +116169,7 @@ ] ], [ - "【99기】독구", + "99·독구", 15, 100, 70, @@ -116193,7 +116193,7 @@ ] ], [ - "【99기】킬라플로르", + "99·킬라플로르", 78, 92, 15, @@ -116215,7 +116215,7 @@ ] ], [ - "【99기】병리학적자세", + "99·병리학적자세", 79, 15, 96, @@ -116250,7 +116250,7 @@ ] ], [ - "【99기】해원나라여행", + "99·해원나라여행", 91, 76, 16, @@ -116274,7 +116274,7 @@ ] ], [ - "【99기】지에엥", + "99·지에엥", 81, 88, 15, @@ -116296,7 +116296,7 @@ ] ], [ - "【99기】제갈여포", + "99·제갈여포", 80, 16, 93, @@ -116328,7 +116328,7 @@ ] ], [ - "【99기】단단(丹丹)", + "99·단단(丹丹)", 83, 87, 15, @@ -116351,7 +116351,7 @@ ] ], [ - "【99기】모훈사출출", + "99·모훈사출출", 94, 78, 15, @@ -116378,7 +116378,7 @@ ] ], [ - "【99기】강유", + "99·강유", 90, 15, 80, @@ -116400,7 +116400,7 @@ ] ], [ - "【99기】나나야 시키", + "99·나나야 시키", 78, 92, 15, @@ -116427,7 +116427,7 @@ ] ], [ - "【99기】스텝체인", + "99·스텝체인", 81, 88, 16, @@ -116450,7 +116450,7 @@ ] ], [ - "【99기】Star", + "99·Star", 77, 92, 15, @@ -116472,7 +116472,7 @@ ] ], [ - "【99기】최진리", + "99·최진리", 78, 15, 91, @@ -116494,7 +116494,7 @@ ] ], [ - "【99기】척", + "99·척", 79, 89, 15, @@ -116516,7 +116516,7 @@ ] ], [ - "【99기】서희", + "99·서희", 94, 15, 76, @@ -116538,7 +116538,7 @@ ] ], [ - "【99기】뭐야", + "99·뭐야", 80, 90, 15, @@ -116561,7 +116561,7 @@ ] ], [ - "【99기】야유해원", + "99·야유해원", 17, 76, 90, @@ -116583,7 +116583,7 @@ ] ], [ - "【99기】푸른양귀비", + "99·푸른양귀비", 17, 73, 89, diff --git a/hwe/sammo/GeneralPool/SPoolUnderU100.php b/hwe/sammo/GeneralPool/SPoolUnderU100.php index 5e06c48a..6a4becfe 100644 --- a/hwe/sammo/GeneralPool/SPoolUnderU100.php +++ b/hwe/sammo/GeneralPool/SPoolUnderU100.php @@ -9,6 +9,11 @@ use sammo\RandUtil; class SPoolUnderU100 extends AbsFromUserPool { + private const MIN_DEX_WEIGHT = 100000; + private const STAT_BONUS_MIN_TOTAL = 160; + private const STAT_BONUS_MAX_TOTAL = 190; + private const STAT_BONUS_MAX_MULTIPLIER = 1.5; + public function __construct(\MeekroDB $db, RandUtil $rng, array $info, string $validUntil) { $targetInfo = $info; @@ -36,6 +41,32 @@ class SPoolUnderU100 extends AbsFromUserPool return '100기 올스타 클래식'; } + protected static function getCandidateWeight(array $info, int $owner): int|float + { + $dexWeight = max( + self::MIN_DEX_WEIGHT, + array_sum($info['dex'] ?? []) + ); + if ($owner <= 0) { + return $dexWeight; + } + + $statTotal = array_sum([ + (int) ($info['leadership'] ?? 0), + (int) ($info['strength'] ?? 0), + (int) ($info['intel'] ?? 0), + ]); + $normalizedStat = min(1, max( + 0, + ($statTotal - self::STAT_BONUS_MIN_TOTAL) + / (self::STAT_BONUS_MAX_TOTAL - self::STAT_BONUS_MIN_TOTAL) + )); + $statMultiplier = 1 + + (self::STAT_BONUS_MAX_MULTIPLIER - 1) * $normalizedStat; + + return $dexWeight * $statMultiplier; + } + public static function initPool(\MeekroDB $db) { $jsonData = Json::decode(file_get_contents(__DIR__ . '/Pool/UnderS100.json')); diff --git a/src/build_centennial_allstar_pool.php b/src/build_centennial_allstar_pool.php index 96f1e5d8..9764c118 100644 --- a/src/build_centennial_allstar_pool.php +++ b/src/build_centennial_allstar_pool.php @@ -115,7 +115,7 @@ function decodeSourceRow(string $line, int $lineNo): array if ($sourceName === '') { fail("line {$lineNo}: empty general name"); } - $generalName = sprintf('【%d기】%s', $phaseNo, $sourceName); + $generalName = sprintf('%d·%s', $phaseNo, $sourceName); if (mb_strlen($generalName) > 32) { fail("line {$lineNo}: generated name exceeds 32 characters: {$generalName}"); } diff --git a/tests/CentennialAllStarGrowthTest.php b/tests/CentennialAllStarGrowthTest.php index d090fcf4..5b94af27 100644 --- a/tests/CentennialAllStarGrowthTest.php +++ b/tests/CentennialAllStarGrowthTest.php @@ -17,6 +17,40 @@ final class CentennialAllStarGrowthTest extends TestCase self::assertSame(1.0, CentennialAllStarGrowth::progress(180, 210, 1)); } + public function testMAndGGeneralsAdvanceAtNinetyPercentProgress(): void + { + self::assertSame( + CentennialAllStarGrowthService::NPC_PROGRESS_MULTIPLIER, + CentennialAllStarGrowthService::progressMultiplierForNPCType(3) + ); + self::assertSame( + CentennialAllStarGrowthService::NPC_PROGRESS_MULTIPLIER, + CentennialAllStarGrowthService::progressMultiplierForNPCType(4) + ); + self::assertSame(1.0, CentennialAllStarGrowthService::progressMultiplierForNPCType(2)); + self::assertEqualsWithDelta( + 0.36, + CentennialAllStarGrowthService::calculateProgress(180, 186, 1, 0.9), + 0.000001 + ); + self::assertEqualsWithDelta( + 0.9, + CentennialAllStarGrowthService::calculateProgress(180, 195, 1, 0.9), + 0.000001 + ); + self::assertEqualsWithDelta( + 0.9, + CentennialAllStarGrowthService::calculateProgress(180, 210, 1, 0.9), + 0.000001 + ); + } + + public function testProgressMultiplierMustStayWithinUnitInterval(): void + { + $this->expectException(InvalidArgumentException::class); + CentennialAllStarGrowthService::calculateProgress(180, 195, 1, 1.01); + } + public function testLowStatGrowsWhileHigherStatStays(): void { $floor = CentennialAllStarGrowth::statFloor(90, 15, 0.6); diff --git a/tests/CentennialAllStarPoolTest.php b/tests/CentennialAllStarPoolTest.php index e522594d..e74e90c4 100644 --- a/tests/CentennialAllStarPoolTest.php +++ b/tests/CentennialAllStarPoolTest.php @@ -1,6 +1,11 @@ setAccessible(true); + $low = [ + 'leadership' => 80, + 'strength' => 70, + 'intel' => 10, + 'dex' => [0, 0, 0, 0, 0], + ]; + $high = [ + 'leadership' => 95, + 'strength' => 85, + 'intel' => 10, + 'dex' => [0, 0, 0, 0, 0], + ]; + + self::assertSame(100000, $method->invoke(null, $low, 0)); + self::assertSame(100000.0, $method->invoke(null, $low, 1)); + self::assertSame(150000.0, $method->invoke(null, $high, 1)); + self::assertSame(100000, $method->invoke(null, $high, 0)); + } + public function testEveryHistoricalEventSpecialHasAnImplementation(): void { $pool = json_decode( From 3c35539c16abeeecda8ec763c5cec668f8dae477 Mon Sep 17 00:00:00 2001 From: hided62 Date: Tue, 28 Jul 2026 16:04:50 +0000 Subject: [PATCH 05/15] =?UTF-8?q?CreateManyNPC=20=EC=B6=94=EA=B0=80?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- hwe/scenario/scenario_915.json | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/hwe/scenario/scenario_915.json b/hwe/scenario/scenario_915.json index 5238f142..1b699fa1 100644 --- a/hwe/scenario/scenario_915.json +++ b/hwe/scenario/scenario_915.json @@ -24,6 +24,12 @@ ["CreateManyNPC", 100, 0], ["DeleteEvent"] ], + [ + "month", 1000, + ["Date", "==", 181, 1], + ["RaiseNPCNation"], + ["DeleteEvent"] + ], [ "month", 1000, ["Date", "==", 181, 12], From 9a2ac82373afb76d3131fdc13b193e3b56ae1674 Mon Sep 17 00:00:00 2001 From: hided62 Date: Tue, 28 Jul 2026 16:07:21 +0000 Subject: [PATCH 06/15] =?UTF-8?q?=EC=8B=9C=EB=82=98=EB=A6=AC=EC=98=A4=20?= =?UTF-8?q?=EB=AC=B8=EC=A0=9C=EC=A0=90=20=EC=88=98=EC=A0=95?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- hwe/scenario/scenario_915.json | 33 +++++++++++++++++++++++++-------- 1 file changed, 25 insertions(+), 8 deletions(-) diff --git a/hwe/scenario/scenario_915.json b/hwe/scenario/scenario_915.json index 1b699fa1..521f49d8 100644 --- a/hwe/scenario/scenario_915.json +++ b/hwe/scenario/scenario_915.json @@ -10,7 +10,8 @@ "●180년 1월:【100기 이벤트】 역대 장수들이 평범한 능력으로 다시 모여, 지난 전성기의 힘과 서서히 동조하기 시작했다!" ], "const": { - "npcBanMessageProb": 1 + "npcBanMessageProb":0.005, + "defaultMaxGeneral": 800 }, "events": [ [ @@ -31,13 +32,29 @@ ["DeleteEvent"] ], [ - "month", 1000, - ["Date", "==", 181, 12], - ["ChangeCity", "occupied", { - "pop": "+60000", - "agri": "+1200", - "comm": "+1200" - }] + "destroy_nation", 1000, + ["and", + ["Date", ">=", 183, 1], + ["RemainNation", "==", 1] + ], + ["BlockScoutAction"], + ["DeleteEvent"] + ], + [ + "month", 999, + ["Date", "==", 181, 1], + ["OpenNationBetting", 4, 5000], + ["OpenNationBetting", 1, 2000], + ["DeleteEvent"] + ], + [ + "month", 999, + ["and", + ["Date", ">=", 183, 1], + ["RemainNation", "<=", 8] + ], + ["OpenNationBetting", 1, 1000], + ["DeleteEvent"] ], [ "destroy_nation", 1000, From ce807e2564a37dcd51e0b32d4f687650c08b2194 Mon Sep 17 00:00:00 2001 From: hided62 Date: Tue, 28 Jul 2026 16:11:24 +0000 Subject: [PATCH 07/15] =?UTF-8?q?=EC=9C=A0=EB=8B=88=ED=81=AC=20=ED=9A=8D?= =?UTF-8?q?=EB=93=9D=20=ED=99=95=EB=A5=A0=20=EC=A1=B0=EA=B8=88=20=EB=8D=94?= =?UTF-8?q?=20=EC=A6=9D=EA=B0=80?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- hwe/scenario/scenario_915.json | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/hwe/scenario/scenario_915.json b/hwe/scenario/scenario_915.json index 521f49d8..184b9743 100644 --- a/hwe/scenario/scenario_915.json +++ b/hwe/scenario/scenario_915.json @@ -11,7 +11,8 @@ ], "const": { "npcBanMessageProb":0.005, - "defaultMaxGeneral": 800 + "defaultMaxGeneral": 800, + "uniqueTrialCoef": 2 }, "events": [ [ From 883080e275aafcd61d5eccce27f8200163b4d811 Mon Sep 17 00:00:00 2001 From: hided62 Date: Tue, 28 Jul 2026 16:28:13 +0000 Subject: [PATCH 08/15] =?UTF-8?q?feat:=20100=EA=B8=B0=20NPC=20=EB=8F=99?= =?UTF-8?q?=EC=A1=B0=20=EB=B0=8F=20=ED=9B=84=EB=B3=B4=20=EC=B6=94=EC=B2=A8?= =?UTF-8?q?=20=EA=B8=B0=EB=8A=A5=20=EA=B0=9C=EC=84=A0=EA=B3=BC=20=EC=B4=88?= =?UTF-8?q?=EA=B8=B0=20=EB=8A=A5=EB=A0=A5=EC=B9=98=20=EA=B3=84=EC=82=B0=20?= =?UTF-8?q?=EB=A1=9C=EC=A7=81=20=EC=B6=94=EA=B0=80?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- hwe/css/select_general_from_pool.css | 18 ++- hwe/j_get_select_pool.php | 9 +- hwe/j_select_picked_general.php | 55 +++++-- hwe/j_update_picked_general.php | 122 +++++++++++----- hwe/sammo/CentennialAllStarGrowthService.php | 145 ++++++++++++++++++- hwe/select_general_from_pool.php | 119 +++++++++++---- hwe/ts/select_general_from_pool.ts | 70 +++++---- tests/CentennialAllStarGrowthTest.php | 74 ++++++++++ 8 files changed, 499 insertions(+), 113 deletions(-) diff --git a/hwe/css/select_general_from_pool.css b/hwe/css/select_general_from_pool.css index 3af9c79e..c8eb0847 100644 --- a/hwe/css/select_general_from_pool.css +++ b/hwe/css/select_general_from_pool.css @@ -51,6 +51,22 @@ display: none; } +.picture_choice { + margin: 8px auto; +} + +.picture_choice label, +.event_picture label { + display: inline-flex; + align-items: center; + gap: 4px; + margin: 4px 8px; +} + +.picture_choice img { + object-fit: cover; +} + .custom_picture { display: none; } @@ -61,4 +77,4 @@ .custom_stat { display: none; -} \ No newline at end of file +} diff --git a/hwe/j_get_select_pool.php b/hwe/j_get_select_pool.php index 3696f142..3d0d4a79 100644 --- a/hwe/j_get_select_pool.php +++ b/hwe/j_get_select_pool.php @@ -11,6 +11,13 @@ function sortTokens(&$tokens){ } function putInfoText(&$info){ + if (($info['event100Growth'] ?? false) === true) { + $initialStats = CentennialAllStarGrowthService::calculateUserInitialStats($info); + $info['initialLeadership'] = $initialStats['leadership']; + $info['initialStrength'] = $initialStats['strength']; + $info['initialIntel'] = $initialStats['intel']; + } + if(key_exists('specialDomestic', $info)){ $class = buildGeneralSpecialDomesticClass($info['specialDomestic']); $info['specialDomesticName'] = $class->getName(); @@ -91,4 +98,4 @@ Json::die([ 'result'=>true, 'pick'=>$pick, 'validUntil'=>$valid_until -]); \ No newline at end of file +]); diff --git a/hwe/j_select_picked_general.php b/hwe/j_select_picked_general.php index db4d4cac..81bea0cf 100644 --- a/hwe/j_select_picked_general.php +++ b/hwe/j_select_picked_general.php @@ -21,6 +21,7 @@ $intel = Util::getPost( ); $personal = Util::getPost('personal', 'string', null); $use_own_picture = Util::getPost('use_own_picture', 'bool', false); +$pictureSource = Util::getPost('picture_source', 'string', 'selected'); if(!$pick){ @@ -69,16 +70,39 @@ if(!$selectInfo){ } $selectInfo = Json::decode($selectInfo); -$ownerInfo = RootDB::db()->queryFirstRow('SELECT `name`,`picture`,`imgsvr` FROM member WHERE `NO`=%i',$userID); -if(!$ownerInfo){ +$ownerInfo = RootDB::db()->queryFirstRow( + 'SELECT `name`,`picture`,`imgsvr`,`grade` FROM member WHERE `NO`=%i', + $userID +); +if(!$ownerInfo){ Json::die([ 'result'=>false, 'reason'=>'멤버 정보를 가져오지 못했습니다.' - ]); -} - - -$gencount = $db->queryFirstField('SELECT count(`no`) FROM general WHERE npc<2'); + ]); +} +if ($isCentennialAllStar) { + if (!in_array($pictureSource, ['selected', 'own'], true)) { + Json::die([ + 'result' => false, + 'reason' => '올바르지 않은 전콘 선택입니다.', + ]); + } + if ($pictureSource === 'own') { + $canUseOwnPicture = in_array('picture', GameConst::$generalPoolAllowOption, true) + && $env['show_img_level'] >= 1 + && $ownerInfo['grade'] >= 1 + && $ownerInfo['picture'] !== ''; + if (!$canUseOwnPicture) { + Json::die([ + 'result' => false, + 'reason' => '사용할 수 있는 내 전콘이 없습니다.', + ]); + } + } +} + + +$gencount = $db->queryFirstField('SELECT count(`no`) FROM general WHERE npc<2'); if ($gencount >= $maxgeneral) { Json::die([ @@ -102,9 +126,12 @@ if ($isCentennialAllStar) { } $builder = $pickedGeneral->getGeneralBuilder(); +if ($isCentennialAllStar) { + CentennialAllStarGrowthService::prepareInitialUser($builder, $selectInfo); +} foreach(GameConst::$generalPoolAllowOption as $allowOption){ - if($allowOption == 'stat'){ + if($allowOption == 'stat' && !$isCentennialAllStar){ $leadership = Util::valueFit($leadership, GameConst::$defaultStatMin, GameConst::$defaultStatMax); $strength = Util::valueFit($strength, GameConst::$defaultStatMin, GameConst::$defaultStatMax); $intel = Util::valueFit($intel, GameConst::$defaultStatMin, GameConst::$defaultStatMax); @@ -117,8 +144,14 @@ foreach(GameConst::$generalPoolAllowOption as $allowOption){ } $builder->setStat($leadership, $strength, $intel); } - else if($allowOption == 'picture' && $use_own_picture){ - $builder->setPicture($ownerInfo['imgsvr'], $ownerInfo['picture']); + else if( + $allowOption == 'picture' + && ( + (!$isCentennialAllStar && $use_own_picture) + || ($isCentennialAllStar && $pictureSource === 'own') + ) + ){ + $builder->setPicture($ownerInfo['imgsvr'], $ownerInfo['picture']); } else if($allowOption == 'ego'){ if(!$personal || $personal == 'Random'){ @@ -135,7 +168,7 @@ foreach(GameConst::$generalPoolAllowOption as $allowOption){ } $builder->setEgo($personal); } -} +} $userNick = $ownerInfo['name']; diff --git a/hwe/j_update_picked_general.php b/hwe/j_update_picked_general.php index a91c7af2..dc6d1ece 100644 --- a/hwe/j_update_picked_general.php +++ b/hwe/j_update_picked_general.php @@ -7,6 +7,7 @@ include "func.php"; WebUtil::requireAJAX(); $pick = Util::getPost('pick'); +$pictureSource = Util::getPost('picture_source', 'string', 'selected'); if(!$pick){ Json::die([ @@ -33,13 +34,22 @@ if(!$generalID){ } list( - $year, - $month, - $startYear, - $maxgeneral, - $npcmode, - $turnterm -) = $gameStor->getValuesAsArray(['year', 'month', 'startyear', 'maxgeneral', 'npcmode', 'turnterm']); + $year, + $month, + $startYear, + $maxgeneral, + $npcmode, + $turnterm, + $showImgLevel +) = $gameStor->getValuesAsArray([ + 'year', + 'month', + 'startyear', + 'maxgeneral', + 'npcmode', + 'turnterm', + 'show_img_level', +]); if($npcmode!=2){ Json::die([ @@ -56,7 +66,10 @@ if(!$info){ ]); } -$ownerInfo = RootDB::db()->queryFirstRow('SELECT `name`,`picture`,`imgsvr` FROM member WHERE `NO`=%i',$userID); +$ownerInfo = RootDB::db()->queryFirstRow( + 'SELECT `name`,`picture`,`imgsvr`,`grade` FROM member WHERE `NO`=%i', + $userID +); if(!$ownerInfo){ Json::die([ 'result'=>false, @@ -65,6 +78,27 @@ if(!$ownerInfo){ } $info = Json::decode($info); +$isCentennialAllStar = CentennialAllStarGrowthService::isActive(); +if ($isCentennialAllStar) { + if (!in_array($pictureSource, ['current', 'own', 'selected'], true)) { + Json::die([ + 'result' => false, + 'reason' => '올바르지 않은 전콘 선택입니다.', + ]); + } + if ($pictureSource === 'own') { + $canUseOwnPicture = in_array('picture', GameConst::$generalPoolAllowOption, true) + && $showImgLevel >= 1 + && $ownerInfo['grade'] >= 1 + && $ownerInfo['picture'] !== ''; + if (!$canUseOwnPicture) { + Json::die([ + 'result' => false, + 'reason' => '사용할 수 있는 내 전콘이 없습니다.', + ]); + } + } +} $generalObj = General::createObjFromDB($generalID); @@ -102,37 +136,45 @@ $db->update('select_pool',[ 'reserved_until'=>null, ], '(owner=%i or reserved_until < %s) AND general_id is NULL', $userID, $now); -$isCentennialAllStar = CentennialAllStarGrowthService::isActive(); -if ($isCentennialAllStar) { - CentennialAllStarGrowthService::applyTarget($generalObj, $info, [ - 'startyear' => $startYear, - 'year' => $year, - 'month' => $month, - ]); -} else { - if(key_exists('leadership', $info)){ - $generalObj->updateVar('leadership', $info['leadership']); - $generalObj->updateVar('strength', $info['strength']); - $generalObj->updateVar('intel', $info['intel']); - } - if(key_exists('dex', $info)){ - $generalObj->updateVar('dex1', $info['dex'][0]); - $generalObj->updateVar('dex2', $info['dex'][1]); - $generalObj->updateVar('dex3', $info['dex'][2]); - $generalObj->updateVar('dex4', $info['dex'][3]); - $generalObj->updateVar('dex5', $info['dex'][4]); - } - if(key_exists('ego', $info)){ - $generalObj->updateVar('personal', $info['ego']); - } - if(key_exists('specialDomestic', $info)){ - $generalObj->updateVar('special', $info['specialDomestic']); - } - if(key_exists('specialWar', $info)){ - $generalObj->updateVar('special2', $info['specialWar']); - } -} -if(key_exists('picture', $info)){ +if ($isCentennialAllStar) { + CentennialAllStarGrowthService::prepareLegacyUserReselection($generalObj); + CentennialAllStarGrowthService::applyTarget($generalObj, $info, [ + 'startyear' => $startYear, + 'year' => $year, + 'month' => $month, + ]); +} else { + if(key_exists('leadership', $info)){ + $generalObj->updateVar('leadership', $info['leadership']); + $generalObj->updateVar('strength', $info['strength']); + $generalObj->updateVar('intel', $info['intel']); + } + if(key_exists('dex', $info)){ + $generalObj->updateVar('dex1', $info['dex'][0]); + $generalObj->updateVar('dex2', $info['dex'][1]); + $generalObj->updateVar('dex3', $info['dex'][2]); + $generalObj->updateVar('dex4', $info['dex'][3]); + $generalObj->updateVar('dex5', $info['dex'][4]); + } + if(key_exists('ego', $info)){ + $generalObj->updateVar('personal', $info['ego']); + } + if(key_exists('specialDomestic', $info)){ + $generalObj->updateVar('special', $info['specialDomestic']); + } + if(key_exists('specialWar', $info)){ + $generalObj->updateVar('special2', $info['specialWar']); + } +} +if ($isCentennialAllStar) { + if ($pictureSource === 'own') { + $generalObj->updateVar('imgsvr', $ownerInfo['imgsvr']); + $generalObj->updateVar('picture', $ownerInfo['picture']); + } elseif ($pictureSource === 'selected' && key_exists('picture', $info)) { + $generalObj->updateVar('imgsvr', $info['imgsvr']); + $generalObj->updateVar('picture', $info['picture']); + } +} elseif(key_exists('picture', $info)){ $generalObj->updateVar('imgsvr', $info['imgsvr']); $generalObj->updateVar('picture', $info['picture']); } @@ -158,4 +200,4 @@ $generalObj->applyDB($db); Json::die([ 'result'=>true, 'reason'=>'success' -]); +]); diff --git a/hwe/sammo/CentennialAllStarGrowthService.php b/hwe/sammo/CentennialAllStarGrowthService.php index fd7f39a2..d2b1e47e 100644 --- a/hwe/sammo/CentennialAllStarGrowthService.php +++ b/hwe/sammo/CentennialAllStarGrowthService.php @@ -19,15 +19,24 @@ final class CentennialAllStarGrowthService return GameConst::$targetGeneralPool === self::POOL_CLASS; } - public static function initialAux(array $targetInfo): array + public static function initialAux(array $targetInfo, ?array $userInitialStats = null): array { + $granted = array_fill_keys(array_merge(self::STAT_KEYS, self::DEX_KEYS), 0); + if ($userInitialStats !== null) { + foreach (self::STAT_KEYS as $key) { + $initial = (int) ($userInitialStats[$key] ?? GameConst::$defaultStatMin); + $granted[$key] = max(0, $initial - min($initial, GameConst::$defaultStatMin)); + } + } + return [ 'targetId' => (string) ($targetInfo['uniqueName'] ?? ''), - 'granted' => array_fill_keys(array_merge(self::STAT_KEYS, self::DEX_KEYS), 0), + 'granted' => $granted, 'progressMonth' => -1, 'milestone' => 0, 'naturalSpecialDomestic' => null, 'eventSpecialDomestic' => null, + 'userInitialStats' => $userInitialStats, ]; } @@ -36,6 +45,130 @@ final class CentennialAllStarGrowthService $builder->setAuxVar(self::AUX_KEY, self::initialAux($targetInfo)); } + /** + * Builds an ordinary-user stat total while preserving the selected + * candidate's relative strengths as closely as integer stats allow. + * + * @return array{leadership:int,strength:int,intel:int} + */ + public static function calculateUserInitialStats(array $targetInfo): array + { + $targets = []; + $bases = []; + foreach (self::STAT_KEYS as $key) { + $target = min( + GameConst::$defaultStatMax, + max(0, (int) ($targetInfo[$key] ?? 0)) + ); + $targets[$key] = $target; + $bases[$key] = min($target, GameConst::$defaultStatMin); + } + + $targetTotal = array_sum($targets); + $desiredTotal = min(GameConst::$defaultStatTotal, $targetTotal); + $baseTotal = array_sum($bases); + $capacityTotal = $targetTotal - $baseTotal; + if ($capacityTotal <= 0 || $desiredTotal <= $baseTotal) { + return $bases; + } + + $ratio = ($desiredTotal - $baseTotal) / $capacityTotal; + $result = []; + $fractions = []; + foreach (self::STAT_KEYS as $idx => $key) { + $raw = $bases[$key] + ($targets[$key] - $bases[$key]) * $ratio; + $result[$key] = (int) floor($raw); + $fractions[] = [ + 'key' => $key, + 'fraction' => $raw - $result[$key], + 'order' => $idx, + ]; + } + + usort($fractions, static function (array $lhs, array $rhs): int { + $fractionOrder = $rhs['fraction'] <=> $lhs['fraction']; + return $fractionOrder !== 0 ? $fractionOrder : $lhs['order'] <=> $rhs['order']; + }); + $remainder = $desiredTotal - array_sum($result); + foreach ($fractions as $fraction) { + if ($remainder <= 0) { + break; + } + $key = $fraction['key']; + if ($result[$key] >= $targets[$key]) { + continue; + } + $result[$key]++; + $remainder--; + } + + return $result; + } + + public static function prepareInitialUser( + GeneralBuilder $builder, + array $targetInfo + ): void { + $initialStats = self::calculateUserInitialStats($targetInfo); + $builder->setStat( + $initialStats['leadership'], + $initialStats['strength'], + $initialStats['intel'] + ); + $builder->setAuxVar( + self::AUX_KEY, + self::initialAux($targetInfo, $initialStats) + ); + } + + /** + * Old 100th-season characters did not distinguish their form-entered + * initial stats from organic growth. Before their first reselection, treat + * the ordinary creation range as the replaceable initial allocation. + */ + public static function prepareLegacyUserReselection(General $general): void + { + $aux = $general->getAuxVar(self::AUX_KEY); + if (!is_array($aux) || is_array($aux['userInitialStats'] ?? null)) { + return; + } + + $granted = is_array($aux['granted'] ?? null) + ? $aux['granted'] + : array_fill_keys(array_merge(self::STAT_KEYS, self::DEX_KEYS), 0); + $legacyInitialStats = []; + foreach (self::STAT_KEYS as $key) { + $current = (int) $general->getVar($key); + $granted[$key] = self::calculateLegacyUserGrant( + $current, + (int) ($granted[$key] ?? 0) + ); + $beforeEventGrant = max( + 0, + $current - max(0, (int) ($aux['granted'][$key] ?? 0)) + ); + $legacyInitialStats[$key] = min( + $beforeEventGrant, + GameConst::$defaultStatMax + ); + } + $aux['granted'] = $granted; + $aux['userInitialStats'] = $legacyInitialStats; + $general->setAuxVar(self::AUX_KEY, $aux); + } + + public static function calculateLegacyUserGrant(int $current, int $eventGrant): int + { + $eventGrant = max(0, $eventGrant); + $beforeEventGrant = max(0, $current - $eventGrant); + $replaceableInitialGrant = max( + 0, + min($beforeEventGrant, GameConst::$defaultStatMax) + - min($beforeEventGrant, GameConst::$defaultStatMin) + ); + return $eventGrant + $replaceableInitialGrant; + } + public static function calculateProgress( int $startYear, int $year, @@ -87,6 +220,10 @@ final class CentennialAllStarGrowthService ? $aux['granted'] : array_fill_keys(array_merge(self::STAT_KEYS, self::DEX_KEYS), 0); $targetChanged = ($aux['targetId'] ?? '') !== $targetId; + $isUserTarget = is_array($aux['userInitialStats'] ?? null); + $nextUserInitialStats = $targetChanged && $isUserTarget + ? self::calculateUserInitialStats($targetInfo) + : ($aux['userInitialStats'] ?? null); $changed = false; foreach (self::STAT_KEYS as $key) { @@ -99,6 +236,9 @@ final class CentennialAllStarGrowthService GameConst::$defaultStatMin, $progress ); + if ($nextUserInitialStats !== null) { + $floor = max($floor, (int) ($nextUserInitialStats[$key] ?? 0)); + } $current = (int) $general->getVar($key); if ($targetChanged) { $result = CentennialAllStarGrowth::replaceTarget( @@ -178,6 +318,7 @@ final class CentennialAllStarGrowthService $aux['granted'] = $granted; $aux['progressMonth'] = max((int) ($aux['progressMonth'] ?? -1), $progressMonth); $aux['milestone'] = max($previousMilestone, $milestone); + $aux['userInitialStats'] = $nextUserInitialStats; $general->setAuxVar(self::AUX_KEY, $aux); return [ diff --git a/hwe/select_general_from_pool.php b/hwe/select_general_from_pool.php index 285336c8..ca7a459c 100644 --- a/hwe/select_general_from_pool.php +++ b/hwe/select_general_from_pool.php @@ -19,8 +19,16 @@ if ($admin['npcmode'] != 2) { $member = RootDB::db()->queryFirstRow("SELECT no,name,picture,imgsvr,grade from member where no= %i", $userID); -$generalID = $db->queryFirstField('SELECT no FROM general WHERE owner = %i', $userID); +$currentGeneral = $db->queryFirstRow( + 'SELECT no,picture,imgsvr FROM general WHERE owner = %i', + $userID +); +$generalID = $currentGeneral['no'] ?? null; $gencount = $db->queryFirstField('SELECT count(`no`) FROM general WHERE npc<2'); +$isCentennialAllStar = CentennialAllStarGrowthService::isActive(); +$canUseOwnPicture = $admin['show_img_level'] >= 1 + && $member['grade'] >= 1 + && $member['picture'] != ""; $nationList = $db->query('SELECT nation,`name`,color,scout FROM nation'); shuffle($nationList); @@ -54,6 +62,7 @@ foreach (getCharacterList(false) as $id => [$name, $info]) {