From dcbecd28439e1c3ffd37cc35f935c9dd6844f7a0 Mon Sep 17 00:00:00 2001 From: Igor Date: Thu, 3 Sep 2026 19:05:40 +0200 Subject: [PATCH] SPP bot world as of 2026-08-26: merged state of all Cowork sessions (brain, combat data, chat seams 2.0, idiolect, heard/context, headless players, name generator, crests, seeds) --- BOTBRAIN.md | 88 + BOTS.md | 155 + DEBUG.md | 58 + INSTALL.md | 89 + cleanup-docker.ps1 | 29 + docker/Dockerfile | 13 + docker/docker-compose.yml | 57 + docker/entrypoint.sh | 55 + import-crests.py | 127 + nickgen.html | 245 + nickgen.py | 277 + reset-bots.ps1 | 34 + src_mobius/README.md | 14 + .../dist/db_installer/sql/spp_clan_seed.sql | 9017 ++++++ .../dist/db_installer/sql/spp_crest_seed.sql | 322 + .../dist/game/config/Custom/FakePlayers.ini | 141 +- .../dist/game/config/General.ini | 2 +- .../dist/game/data/FakePlayerChatData.xml | 53 +- .../dist/game/data/FakePlayerChatLines.xml | 1586 + .../dist/game/data/FakePlayerCombat.xml | 96 + .../dist/game/data/FakePlayerIntents.xml | 20 + .../dist/game/data/FakePlayerPhrases.xml | 119 + .../dist/game/data/FakePlayerPools.xml | 1038 + .../dist/game/data/FakePlayerProgression.xml | 9345 ++++++ .../dist/game/data/dashboard.html | 186 + .../handlers/chat/channels/ChatGeneral.java | 24 + .../handlers/chat/channels/ChatWhisper.java | 11 +- .../game/data/spawns/Others/FakePlayers.xml | 2 +- .../data/stats/npcs/custom/fpc_trader_00.xml | 26883 ++++++++++++++++ .../game/data/xsd/FakePlayerChatLines.xsd | 33 + .../org/l2jmobius/gameserver/GameServer.java | 1004 +- .../l2jmobius/gameserver/ai/AttackableAI.java | 8 +- .../config/custom/FakePlayersConfig.java | 34 + .../gameserver/entity/actor/Attackable.java | 13 + .../gameserver/entity/actor/Npc.java | 23 +- .../gameserver/entity/actor/Player.java | 18 + .../managers/FakePlayerAiTaskManager.java | 464 + .../managers/FakePlayerBotContext.java | 135 + .../gameserver/managers/FakePlayerBrain.java | 348 + .../managers/FakePlayerChatLines.java | 792 + .../managers/FakePlayerChatManager.java | 593 +- .../managers/FakePlayerCombatData.java | 149 + .../managers/FakePlayerDashboard.java | 299 + .../managers/FakePlayerHeadlessManager.java | 1585 + .../managers/FakePlayerHeardManager.java | 230 + .../managers/FakePlayerIdiolect.java | 319 + .../managers/FakePlayerIntentParser.java | 300 + .../managers/FakePlayerLlmService.java | 311 + .../managers/FakePlayerMemoryManager.java | 231 + .../FakePlayerProgressionManager.java | 1312 + .../managers/FakePlayerRumorManager.java | 372 + .../clientpackets/RequestJoinParty.java | 12 +- .../network/serverpackets/FakePlayerInfo.java | 2 +- .../util/FakePlayerNameGenerator.java | 526 + start.ps1 | 108 + 55 files changed, 58741 insertions(+), 566 deletions(-) create mode 100644 BOTBRAIN.md create mode 100644 BOTS.md create mode 100644 DEBUG.md create mode 100644 INSTALL.md create mode 100644 cleanup-docker.ps1 create mode 100644 docker/Dockerfile create mode 100644 docker/docker-compose.yml create mode 100644 docker/entrypoint.sh create mode 100644 import-crests.py create mode 100644 nickgen.html create mode 100644 nickgen.py create mode 100644 reset-bots.ps1 create mode 100644 src_mobius/README.md create mode 100644 src_mobius/mobius/L2J_Mobius_CT_0_Interlude/dist/db_installer/sql/spp_clan_seed.sql create mode 100644 src_mobius/mobius/L2J_Mobius_CT_0_Interlude/dist/db_installer/sql/spp_crest_seed.sql create mode 100644 src_mobius/mobius/L2J_Mobius_CT_0_Interlude/dist/game/data/FakePlayerChatLines.xml create mode 100644 src_mobius/mobius/L2J_Mobius_CT_0_Interlude/dist/game/data/FakePlayerCombat.xml create mode 100644 src_mobius/mobius/L2J_Mobius_CT_0_Interlude/dist/game/data/FakePlayerIntents.xml create mode 100644 src_mobius/mobius/L2J_Mobius_CT_0_Interlude/dist/game/data/FakePlayerPhrases.xml create mode 100644 src_mobius/mobius/L2J_Mobius_CT_0_Interlude/dist/game/data/FakePlayerPools.xml create mode 100644 src_mobius/mobius/L2J_Mobius_CT_0_Interlude/dist/game/data/FakePlayerProgression.xml create mode 100644 src_mobius/mobius/L2J_Mobius_CT_0_Interlude/dist/game/data/dashboard.html create mode 100644 src_mobius/mobius/L2J_Mobius_CT_0_Interlude/dist/game/data/stats/npcs/custom/fpc_trader_00.xml create mode 100644 src_mobius/mobius/L2J_Mobius_CT_0_Interlude/dist/game/data/xsd/FakePlayerChatLines.xsd create mode 100644 src_mobius/mobius/L2J_Mobius_CT_0_Interlude/java/org/l2jmobius/gameserver/managers/FakePlayerAiTaskManager.java create mode 100644 src_mobius/mobius/L2J_Mobius_CT_0_Interlude/java/org/l2jmobius/gameserver/managers/FakePlayerBotContext.java create mode 100644 src_mobius/mobius/L2J_Mobius_CT_0_Interlude/java/org/l2jmobius/gameserver/managers/FakePlayerBrain.java create mode 100644 src_mobius/mobius/L2J_Mobius_CT_0_Interlude/java/org/l2jmobius/gameserver/managers/FakePlayerChatLines.java create mode 100644 src_mobius/mobius/L2J_Mobius_CT_0_Interlude/java/org/l2jmobius/gameserver/managers/FakePlayerCombatData.java create mode 100644 src_mobius/mobius/L2J_Mobius_CT_0_Interlude/java/org/l2jmobius/gameserver/managers/FakePlayerDashboard.java create mode 100644 src_mobius/mobius/L2J_Mobius_CT_0_Interlude/java/org/l2jmobius/gameserver/managers/FakePlayerHeadlessManager.java create mode 100644 src_mobius/mobius/L2J_Mobius_CT_0_Interlude/java/org/l2jmobius/gameserver/managers/FakePlayerHeardManager.java create mode 100644 src_mobius/mobius/L2J_Mobius_CT_0_Interlude/java/org/l2jmobius/gameserver/managers/FakePlayerIdiolect.java create mode 100644 src_mobius/mobius/L2J_Mobius_CT_0_Interlude/java/org/l2jmobius/gameserver/managers/FakePlayerIntentParser.java create mode 100644 src_mobius/mobius/L2J_Mobius_CT_0_Interlude/java/org/l2jmobius/gameserver/managers/FakePlayerLlmService.java create mode 100644 src_mobius/mobius/L2J_Mobius_CT_0_Interlude/java/org/l2jmobius/gameserver/managers/FakePlayerMemoryManager.java create mode 100644 src_mobius/mobius/L2J_Mobius_CT_0_Interlude/java/org/l2jmobius/gameserver/managers/FakePlayerProgressionManager.java create mode 100644 src_mobius/mobius/L2J_Mobius_CT_0_Interlude/java/org/l2jmobius/gameserver/managers/FakePlayerRumorManager.java create mode 100644 src_mobius/mobius/L2J_Mobius_CT_0_Interlude/java/org/l2jmobius/gameserver/util/FakePlayerNameGenerator.java create mode 100644 start.ps1 diff --git a/BOTBRAIN.md b/BOTBRAIN.md new file mode 100644 index 0000000..5714f19 --- /dev/null +++ b/BOTBRAIN.md @@ -0,0 +1,88 @@ +# Что взять у чужих ботов (разбор исходников) + +Скачано и просмотрено: **L2jRoboto** (серверные фантомы, GPL-3), **SmartBot** (наш прошлый референс, GPL-3), **L2Bot2.0** (клиентская фармилка, C#, инъекция в клиент), **L2NET** (клиентский бот со своим скриптовым движком). Ничего не копируем построчно — берём модель поведения (см. «Лицензии» внизу). + +## Кто чем полезен + +**L2jRoboto** — ближе всего к нашей задаче (он тоже поднимает Player на сервере). Полезное: + +- на каждый класс свой AI-класс со своим набором заклинаний: `DuelistAI`, `CardinalAI`, `SaggitariusAI`, `SoultakerAI`, ~20 классов; +- заклинания описаны как данные с приоритетом: `OffensiveSpell(345, 1)`, `HealingSpell(1218, TARGET_ONE, 70, 3)` — «лечить, когда цель ниже 70% HP», приоритет 3; +- отдельные списки: атакующие / лечащие / self-support / бафы; выбирается первое доступное по приоритету; +- шоты и стрелы подбираются по уровню (таблица уровень → грейд) и авто-подкачиваются; +- смерть: N тиков лежит, потом «в деревню»; +- ограничение: цель выбирается случайно в радиусе, никакой оценки опасности; фактически это красивая массовка. + +**L2Bot2.0** — настоящая фармилка, и вот тут «понимание игры». Полезное: + +- **конечный автомат состояний**: `Dead → Idle → FindTarget → MoveToTarget → Attack → Rest → MoveToSpot` с явными условиями переходов; +- **выбор моба по правилам**: списки включённых/исключённых id, ограничение по разнице уровней (`MobLevelLowerLimit/UpperLimit`), проверка перепада высоты (`MobsMaxDeltaZ`, чтобы не бить недосягаемых), проверка «внутри зоны фарма»; +- **скиллы по условиям**: `SkillCondition { id, MaxTargetPercentHp, MinPlayerPercentMp, MaxPlayerPercentHp }` — то есть «добивание только когда цель ниже X%», «не кастовать, если мало МП»; +- **отдых**: сесть при HP/MP ниже порога, встать при достижении верхнего порога — сидя реген в разы быстрее; +- **дистанция боя** зависит от оружия (лук/ближний) и от дальности выбранного скилла; +- **приоритет спойла** и свипа, счётчики попыток; +- **подбор лута** с фильтрами и радиусом; +- **возврат на спот**, если ушёл далеко. + +**L2NET** — интересен своим скриптовым движком (условия/циклы поверх пакетов), но для нас это оверкилл. + +## Чего не хватает нашим ботам (итог) + +| Механика | У нас | Откуда берём | +|---|---|---| +| Скиллы по условиям (HP цели, МП, приоритет) | нет, только автоатака | L2Bot2 SkillCondition + Roboto Spell-списки | +| Наборы скиллов по классам | нет | Roboto (AI на класс) | +| Отдых сидя при низком HP/MP | нет | L2Bot2 RestState | +| Выбор моба по уровню/высоте/зоне | берём ближайшего | L2Bot2 Helper.GetMobsToAttackByConfig | +| Дистанция боя по оружию и скиллу | нет | L2Bot2 GetAttackDistanceByConfig | +| Самобаф и поддержание бафов | нет | Roboto applyDefaultBuffs | +| Шоты по грейду + автопополнение | грейд есть, автопополнения нет | Roboto handleShots | +| Бегство при низком HP, страх ПК | нет | своё | +| Роли в пати (хил/баф/танк/спойл) | нет | Roboto (IHealer) + L2Bot2 (spoil/sweep) | + +## План: BotBrain + +Дерево приоритетов, каждый тик сверху вниз, первое сработавшее выигрывает: + +1. **Мёртв** → лежать, через N сек в деревню, вернуться на спот. +2. **Выживание** → HP < 30%: хилка/скилл лечения; HP < 15% и рядом враг: бежать в город/к стражам. +3. **Обслуживание** → нет бафов: бафнуть; нет шотов: докупить; HP/MP < порога и никого рядом: сесть отдыхать. +4. **Роль в пати** → хилер лечит самого раненого, бафер обновляет бафы, танк держит агро. +5. **Бой** → скилл по условиям (дебафф → бурст → добивание), иначе автоатака; держать дистанцию по оружию. +6. **Лут** → подобрать свой дроп рядом. +7. **Фарм** → выбрать моба (уровень ±, высота, зона), подойти, атаковать. +8. **Безделье** → маршрут по зоне, болтовня, торговля. + +Наборы скиллов держим **данными** (XML), а не кодом: `` — можно править без пересборки, как швы. + +## Что уже сделано (первая итерация) + +**`FakePlayerBrain`** — дерево приоритетов, работает раньше «бытовой» логики (торговли, маршрутов), поэтому бот не пойдёт торговать, пока его бьют: + +1. **Выживание**: HP < 55% — лечащий скилл; < 40% — хилка (раз в 15 сек); < 25% и рядом враг — бегство в противоположную сторону на 12 секунд. +2. **Обслуживание**: HP < 45% или MP < 35% и никого рядом — сесть отдыхать (встаёт на 85% HP / 75% MP); раз в 3 минуты обновить самобафы. +3. **Роль в пати**: хилер лечит самого раненого соклановца в радиусе 900, если у того ниже 75% HP. +4. **Бой**: скилл выбирается по условиям из XML (приоритет, `maxTargetHp` для добивания, `minMp`), проверяется кулдаун, МП и дальность каста; лучники и маги **отходят**, если враг ближе 250, бойцы наоборот сближаются. +5. **Фарм**: цель выбирается с умом — разница уровней не больше 8, перепад высоты меньше 200 (чтобы не долбиться в недосягаемого), не рейд, **не чужая цель**. + +**`data/FakePlayerCombat.xml`** — наборы скиллов по классам (13 профилей + дефолт), правится без пересборки: + +```xml + + + + + +``` + +`role` (fighter / archer / mage / healer / support) задаёт дистанцию боя и приоритеты. + +**Проверка**: `do=brain&name=Ник` — покажет роль, HP/MP и какие скиллы из профиля бот реально выучил (`+` есть, `-` нет). Плюс `do=gear` — что надето и штраф экспертизы. + +**Не проверено вживую**: песочница в этот раз убивала процессы, поэтому сборка чистая (BUILD SUCCESSFUL), но запуск с ботами не прогнан. Первым делом посмотри `logs -f game` на строку `FakePlayerCombatData: Loaded combat profiles for 13 classes.` + +**Следующий заход**: роли танка и спойлера, покупка расходников у НПС, бегство к стражам от ПК, смена профессии на 20/40. + +## Лицензии + +L2jRoboto и SmartBot под GPL-3, L2Bot2.0 — тоже открытый. Мы **не копируем их код**, а реализуем поведение заново поверх Mobius. Это важно, если когда-нибудь захочешь выложить пак: копирование GPL-кода потребовало бы открыть исходники всей сборки. diff --git a/BOTS.md b/BOTS.md new file mode 100644 index 0000000..7b95cb0 --- /dev/null +++ b/BOTS.md @@ -0,0 +1,155 @@ +# Боты: что сделано и как этим пользоваться + +Сборка от 2026-08-25 (пак `server_interlude.zip`). Население 1–76 с настоящей прокачкой, всё включено по умолчанию. + +## Что в паке + +**Геодата** — 172 региона `.l2j` уже лежат в `game\data\geodata`, `PathFinding = 2` включён. Боты и мобы обходят стены и ходят по реальному рельефу. + +**5000 персонажей, уровни 1–76, 34 зоны** (замер: ~22% одного слабого ядра на все 5000, масштаб почти бесплатный) — от стартовых полей всех рас (Talking Island, Elven Forest, Shadow Land, Orc Lands, Dwarven Valley) через Wasteland, Cruma, Execution Grounds, Sea of Spores, Plains of Glory до Blazing Swamp, Wall of Argos, Ketra и Varka. У каждого — ник, пол, внешность, класс из 11 архетипов (гладиатор, паладин, разрушитель, кинжальщики, лучники, три школы магов, бишоп) и шмот по грейду. Стартовые уровни раскиданы по всей кривой, так что мир населён сразу. + +**Настоящая прокачка.** Боты получают опыт с реально убитых мобов (реальные exp-значения мобов из датапака, рейт `FakePlayerXpRate`, по умолчанию x3). Уровень и опыт хранятся в таблице `fake_player_progress` и переживают рестарт. 8 тиров (1–14, 15–24, 25–34, 35–44, 45–54, 55–63, 64–71, 72–76): при переходе тира бот пишет в чат «апнулся, ушёл за шмотом», исчезает и через 1–3 минуты появляется в зоне своего нового уровня — с новой профой (варриор → глад → дуэлист) и новым грейдом шмота (NG → D → C → B → A → S). Кап 76. То есть встреченный на Talking Island новичок через пару дней реально будет фармить в Cruma, а потом в Blazing Swamp. + +**Четыре характера** (параметр `fpcPersonality`): + +- `ganker` (~25%) — фармит и нападает на игроков в радиусе 1000, кидает дерзкую реплику. Ганкают на любом уровне, включая стартовые поля — но только там, куда бот такого уровня и расы мог реально прийти. +- `pkk` (~10%) — охотник на ПК: белых не трогает, но нападает на фиолетовых (PvP-флаг) и красных (карма). Убил ганкера у новичков — жди комментарий про правосудие. +- `helper` (~15%) — видит твой бой — прибегает и помогает, комментирует. +- `neutral` (~50%) — мирно фармит и болтает. Все, кроме ганкеров, тоже сами бьют мобов (иначе бы не качались). + +**Правдоподобность появления**: стартовые локации расовые — на Talking Island качаются только люди, в Elven Forest эльфы, у орков орки и т.д. (бот другой расы «не мог туда прийти»). С 15-го уровня все смешиваются на континенте. Уровень бота всегда соответствует зоне. + +**Торговля.** Периодически бот «уходит в город» (по уровню и расе: новички — в свою деревню, 40+ — Гиран/Орен/Аден...), садится и открывает лавку: скупку — если ему «нужно что-то», или продажу — если перед этим успешно нафармил. Раз в 3 минуты кричит зазывалку в торговый канал (текст генерирует LLM). Через час лавка закрывается, бот возвращается на спот, следующая торговля через ~2–2.5 часа. Настройки в `FakePlayers.ini`: `FakePlayerTrading`, `FakePlayerTradeDuration`, `FakePlayerTradeCooldown`, `FakePlayerTradeShoutInterval`, `FakePlayerTradeChance`. Лавки декоративные: купить/продать им ничего нельзя (это NPC без настоящего инвентаря) — но выглядят и кричат как живые. + +**Мир живёт без тебя**: `GridsAlwaysOn = True` — AI работает во всех регионах, боты фармят и качаются, даже когда тебя нет рядом. Это дороже по CPU; если сервер начнёт тормозить — выключи в `General.ini`, тогда качаться будут только зоны рядом с тобой. + +**LLM-чат через Ollama.** Боты пишут по-русски: тонт при ганге, комментарий при помощи, бытовой трёп когда ты рядом, ответ если ты что-то сказал в общий чат возле них (шанс 40%), ответ в личку (шёпот `"ник текст`). Если Ollama не запущена — молча откатываются на шаблонные ответы из `FakePlayerChatData.xml`, сервер работает как обычно. + +## Рынок, титулы, гербы + +**Лавки торгуют настоящим лутом.** Боты подбирают дроп со своих убийств (свой лут, чужой не трогают) и идут в город, только когда действительно есть что продать; в лавку выставляются реальные вещи из инвентаря по цене от справочной ±. Никаких выданных из воздуха товаров и никакого лимита — торгуют те, кто нафармил. + +**Название лавки собирается из частей** (пулы `store_goods` / `store_price` / `store_mood`): «соски дёшево налетай», «C грейд по рынку», «дроп оптом не торгуюсь» — тон зависит от характера. Подпись теперь реально видна: раньше не хватало broadcast'а `PrivateStoreMsgSell`. + +**Титулы вместо PK/PKK.** Над ником — то, что пишут живые игроки: «ищу клан», «куплю адену», «afk», «Гиран», «рб хантер», у большинства пусто. Характер больше нигде не светится. + +**Гербы кланов и альянсов** генерируются процедурно (DXT1 DDS 16×12 и 8×12, как требует клиент — 224 и 176 байт при лимитах 256/192): шесть геральдических стилей (полосы, четверти, шеврон, рамка, диагональ, шахматка) и восемь палитр, детерминированно от названия клана. 150 кланов сведены в ~19 альянсов, у каждого свой герб. Сид `db_installer\sql\spp_crest_seed.sql` применяется автоматически (entrypoint теперь накатывает все `spp_*.sql`). + +## Мир только из headless-игроков (текущая схема) + +NPC-боты выключены (`FakePlayerProgression = False`), население — 500 headless-игроков (`FakePlayerHeadlessCount`), выбранных случайно из тех же 5000 сид-персонажей, то есть с разбросом по всем уровням 1–76. Каждый расселяется в зону по своему уровню и расе (та же таблица зон, что была у NPC — она грузится всегда, даже когда NPC-население отключено). Стоковый бот Evi из поставки Mobius отключён. + +Хочешь другое число — правь `FakePlayerHeadlessCount` и пересобирай образ. Замер: 500 headless на слабом ядре песочницы — 3.2% CPU, +0.5 ГБ RAM; на нормальной машине запас большой, но помни, что Player в бою дороже NPC. + +Вернуть гибрид (NPC-статисты + элитные headless) — поставить `FakePlayerProgression = True` и уменьшить `FakePlayerHeadlessCount`: тогда headless берут только «хвост» сид-персонажей, а остальные живут как NPC. + +## Headless-игроки (настоящая пати) — прототип + +`FakePlayerHeadlessCount` в `FakePlayers.ini` (по умолчанию 30) поднимает N ботов не как NPC, а как настоящие `Player`-инстансы без клиента — поднятые из тех же сид-персонажей (берутся старшие charId, прогрессия их не трогает). Они фармят у Гирана. Ключевое: **их можно позвать в настоящую пати** — жмёшь invite, бот через 1–2 сек сам принимает, появляется окно группы, идёт опыт, боты держатся рядом с лидером и ассистят его цель; после смерти встают через 15 сек. + +Это цена «быть настоящим игроком»: для движка они игроки, потому что это класс `Player`, а не NPC с флагом. + +**Весь функционал NPC-ботов перенесён на headless.** Они берут свою личность из того же сида (`FakePlayerProgression.xml`): характер (ganker/pkk/helper/neutral), раса, клан, домашняя зона. И дальше умеют всё то же самое: + +- **речь**: те же швы + LLM с той же персоной; тонты при ганге, реплики ПКК, ассист, бытовой трёп, левел-ап, прощание при переезде; +- **понимание**: шёпот и общий чат проходят через тот же разбор интентов — оскорбил ганкера, он нападёт; попросил помощи, побежит; спросил «что нового» — расскажет слух; +- **память и слухи**: помнят, кто их убивал и кто помогал; смерть headless-бота видят соседние боты и разносят историю с искажением; +- **прогрессия настоящая**: они получают реальный опыт с мобов (они же игроки), при переходе тира сами прощаются и телепортируются в зону своего уровня — по той же таблице зон, что у NPC; +- **пати между собой**: соклановцы поблизости собираются в **настоящие** L2-пати (не имитация); +- **дашборд**: видны на карте отдельным значком (★, обведены золотым), фильтруются как обычные боты. + +**Что они умеют как игроки** (добавлено после первого прототипа): + +- **клан**: при спавне восстанавливается членство из БД — крест над ником, участие в клановых войнах; +- **торговля**: раз в 0.5–1.5 часа бот телепортируется на площадь Гирана, получает товар (соски, D-грейд), выставляет **настоящую приватную лавку** с ценником и садится на 20–60 минут. У такой лавки реально можно купить — это полноценный `PrivateStoreType.SELL`, а не декорация как у NPC-торговцев; +- **PvP**: если рядом игрок или другой headless из клана-врага — атакует, со всеми штатными последствиями (флаг, карма, PvP-счётчик). + +**Замер (песочница, 2 слабых ядра, без геодаты, изолированно от NPC-ботов):** + +| headless | CPU | RAM | +|---|---|---| +| 0 | 1.3% | 1.81 ГБ | +| 500 | 3.2% | 2.29 ГБ | + +То есть ~1 МБ и почти ноль CPU на одного простаивающего headless-игрока. Но честные оговорки: замер без геодаты (pathfinding выключен) и в основном на фарме — активный бой у Player-инстанса дороже NPC (пересчёт статов, тики эффектов, апдейты пати, броадкаст пакетов), так что под нагрузкой с геодатой цена вырастет. Вывод: **30–100 headless-игроков рядом с 5000 NPC — комфортно; тысячи headless — нет** (это подтверждает гибридную архитектуру). И: авто-принятие пати написано по образцу штатного accept, но вживую с клиентом я его не проверял — это прототип, первым делом протести окно группы у себя. + +## Речь, память, слухи + +**Композитные фразы.** Реплика собирается из кусочков, а характер решает, какие кусочки вообще войдут: + +- `game\data\FakePlayerPools.xml` — 26 пулов по 12 кусочков (приветствия, обращение по нику, слово-паразит, угроза, насмешка, похвальба, предложение помощи, зов в пати, бытовуха, жалоба, встречный вопрос, хвосты-смешки и т.п.). Пул с суффиксом характера (`hello.helper`, `threat.pkk`) перекрывает базовый. +- `game\data\FakePlayerPhrases.xml` — шаблоны сборки: ``. То есть ганкер никогда не здоровается, а сразу насмехается; хелпер здоровается развёрнуто и добавляет встречный вопрос; ПКК отвечает сухо. + +Из тех же частей выходит «прив, {player} чё как» у дружелюбного и «слышь {player} ща будет больно кек» у пкшера. Если для ключа шаблона нет — используется плоский шов из `FakePlayerChatLines.xml`, так что старые ключи продолжают работать. Проверить руками: на дашборде блок «Генератор фраз» — вводишь ключ и характер, получаешь 8 разных сборок. + +**Плоские швы** (`game\data\FakePlayerChatLines.xml`): 194 реплики в 14 событийных швах со слотами `{target}/{player}/{boss}/{town}/{level}/{msg}` — редактируются без пересборки. Анти-повтор: каждый бот помнит свои последние 12 реплик и не повторяется. + +**Память** (`fake_player_memory`): бот помнит, кто его убивал (обида) и кто помогал добить его моба (благодарность). При встрече узнаёт («опа, а вот и обидчик»), LLM-разговоры тоже пишутся в память. + +**Слухи** — порт системы из «Округи»: смерть бота видят соседние боты (свидетели), истории гуляют между ботами при встречах с искажением (уверенность падает, пересказы копятся, масштаб растёт: «гангнул» → «вырезал всех на точке» → «пол сервера в страхе держит»). Рассказывая тебе, бот выдаёт источник хеджем: «сам видел как ты…» / «говорят ты…» / «брешут будто ты…» / «уже легенды ходят как ты…». Стоя рядом с двумя ботами, можно подслушать сплетню о себе. Всё в `fake_player_rumor`, переживает рестарт, и всё это скармливается LLM в персону (с пометкой «пересказ N раз, можешь ошибаться»). + +## Группы, рейды, олимпиада + +**Сквады.** Ганкеры и охотники на ПК ходят группами по 2–4 (свой клан, свой уровень, своя раса): лидер ведёт маршрут, остальные держатся рядом и вместе входят в бой (соседние фейки и так ассистят друг другу в радиусе 600). Итого ~500 бродячих групп: ганг встречается пати, и ответка от ПКК тоже приходит пати. + +**Рейды на боссов.** Каждые 30–90 минут собирается пати из 5 ботов 60+ и идёт убивать живого рейд-боссa (55–80 lvl): телепорт к боссу («со стороны» выглядит как приход группы), боевой клич в чат, бой до смерти босса или 25 минут, потом расходятся по спотам. В логе: `Raid event started/finished`. Гранд-боссы (Баюм и т.п.) не трогаются. + +**Олимпиада — иллюзия, честно.** Настоящие бои олимпиады требуют персонажей-игроков, NPC-боты в них участвовать не могут — это фундаментальное ограничение. Что сделано вместо: 60 ботов записаны в нобли с очками/статистикой боёв, 12 из них — действующие Герои (по классам). Списки ноблей и героев в игре настоящие. Чего нет: самих матчей и ротации героев по месяцам (могу добавить «виртуальную ротацию» очков позже). + +## Кланы, войны, холлы, замки (pre-seed) + +12 бот-кланов в базе (RedSyndicate и GopStop — пкшеры, KarmaPolice и NightWatch — охотники на ПК, Academka — новички, IronPact/OldSchool — хай-энд...). ~85% ботов состоят в кланах и носят клан-теги; все 200 существуют и как офлайн-персонажи, так что списки членов кланов в игре настоящие. Между кланами прописано 8 взаимных войн. 30 из 34 аукционных клан-холлов заняты бот-кланами (аренда оплачена), 4 свободны для тебя. Замки Глудио, Дион, Гиран и Аден принадлежат бот-кланам (кресты над городами). + +**Война с бот-кланом работает по-настоящему**: объяви войну (например, RedSyndicate) — и каждый бот этого клана при встрече будет нападать на членов твоего клана, с боевыми выкриками. Осады замков ботами пока не отыгрываются. + +Сид идемпотентный (`db_installer\sql\spp_clan_seed.sql`), применяется автоматически при старте login-контейнера; занятые игроком холлы не трогает. + +## Включение Ollama + +1. Поставь Ollama: https://ollama.com/download +2. `ollama pull gemma3` +3. Ollama должна слушать на 127.0.0.1:11434 (по умолчанию так и есть). + +Всё. Сервер сам начнёт ходить в неё. Модель, язык, тайминги и шансы — в `game\config\Custom\FakePlayers.ini`, секция «SPP additions». + +## Настройка + +`game\config\Custom\FakePlayers.ini`: + +- `FakePlayerXpRate = 3` — скорость прокачки ботов (реальный опыт мобов × рейт). +- `FakePlayerProgression = True` — вся система прокачки; False = статичное население. +- `FakePlayerAggroPlayers = True` — ганкеры нападают на игроков. False = мирные боты. +- `FakePlayerAmbientChatChance / CombatChatChance / LocalChatReplyChance` — болтливость. +- `FakePlayerLlmModel` — любая модель Ollama (gemma3, qwen3, llama3.1...). + +Сбросить прогресс всех ботов: `DROP TABLE fake_player_progress;` в базе — при следующем старте пересоздастся со стартовыми уровнями. + +Своих персонажей добавлять в `game\data\FakePlayerProgression.xml` (секция `character`: id, имя, характер, стартовый уровень) — но для нового id нужны и 8 тир-шаблонов в `game\data\stats\npcs\custom\fpc_spp_*.xml` (id = 82000 + (charId−1)×8 + тир). Проще попросить меня перегенерировать население с нужными параметрами. + +## Что изменено в исходниках (src_mobius_interlude.zip) + +Новые файлы: + +- `gameserver/managers/FakePlayerLlmService.java` — асинхронный клиент Ollama (без зависимостей, семафор на 2 запроса, санитизация ответов). +- `gameserver/managers/FakePlayerAiTaskManager.java` — «мозг»: тик раз в 5 сек, тонты при ганге, ассист и фарм для не-агрессивных, бытовой чат. +- `gameserver/managers/FakePlayerProgressionManager.java` — прокачка: опыт с киллов, тиры, миграция между зонами, движение по точкам зоны, персист в БД. + +Правки: + +- `FakePlayerChatManager.java` — LLM-путь с фолбэком на паттерны, `manageLocalChat`/`manageEventChat`/`broadcastToNearby`, персона бота из шаблона. +- `FakePlayersConfig.java` — новые ключи конфига. +- `Attackable.java` — хук начисления опыта боту при убийстве моба. +- `GameServer.java` — старт менеджеров. +- `data/scripts/handlers/chat/channels/ChatGeneral.java` — реакция ботов на общий чат. + +Данные генерируются скриптом (1600 шаблонов в `fpc_spp_00..07.xml`, зоны/опыт/персонажи в `FakePlayerProgression.xml`). Таблица опыта построена из реальных exp-значений мобов датапака: уровень ≈ 60 убитых мобов своего уровня. + +Пересборка: `ant` из корня `L2J_Mobius_CT_0_Interlude` (нужны JDK 25 и Ant). + +## Проверено в песочнице + +Полный цикл на тестовом рейте x1000: за 2,5 минуты 192 из 200 ботов получили опыт с реальных киллов, +2066 уровней суммарно, миграции между зонами и сохранение в БД отработали, 0 исключений в логе. + +## Ограничения текущей версии + +Уровень бота в бою определяется тиром (статы шаблона), а не точным уровнем из БД — внутри тира бот дерётся одинаково. Хилеры-helper-ы бьют моба, а не хилят тебя. Ганкеры бросают погоню, если ты убежал далеко от их зоны. Пати с ботами собрать нельзя — они NPC; управляемые пати-боты — следующий большой этап. diff --git a/DEBUG.md b/DEBUG.md new file mode 100644 index 0000000..b59ceab --- /dev/null +++ b/DEBUG.md @@ -0,0 +1,58 @@ +# Дебаг-команды для headless-ботов + +Два способа: кнопки на дашборде **http://127.0.0.1:7780/** (панель «Дебаг-команды») или напрямую в браузере / PowerShell. + +Формат: `http://127.0.0.1:7780/api/cmd?do=КОМАНДА&name=НИК_БОТА&arg=АРГУМЕНТ` +`name` пустой — берётся случайный живой бот. В дашборде клик по боту в списке подставляет его ник автоматически. + +## Уровень и переезд + +| Команда | Что делает | +|---|---| +| `do=levelup` | **+1 уровень** боту. На следующем тике (до 3 сек) бот сам порадуется в чат, а при переходе тира — попрощается и уедет в новую зону | +| `do=migrate` | немедленный переезд в зону по своему уровню, с прощальной фразой | + +Пример: `http://127.0.0.1:7780/api/cmd?do=levelup&name=Eladrael` +Нажать 8 раз подряд — увидишь пересечение границы тира и переезд. + +## Торговля + +| Команда | Что делает | +|---|---| +| `do=trade` | бот телепортируется в центр Гирана и **открывает настоящую лавку** (можно подойти и купить) | +| `do=tradeall&arg=10` | открыть лавки сразу у 10 ботов (до 50) — рынок за 5 секунд | +| `do=closeshop` | закрыть лавку | + +## Взаимодействие с тобой + +| Команда | Что делает | +|---|---| +| `do=come&arg=ТвойНик` | телепортировать бота к тебе | +| `do=party&arg=ТвойНик` | бот телепортируется и вступает в **настоящую пати** с тобой | +| `do=gank&arg=ТвойНик` | бот прыгает к тебе и атакует с дерзкой фразой (проверка PvP) | +| `do=clanwar&arg=ТвойНик` | объявить войну между кланом бота и твоим кланом (нужны кланы у обоих) | + +## Речь, память, смерть + +| Команда | Что делает | +|---|---| +| `do=say` | бот говорит случайную реплику из шва `ambient` (или LLM, если Ollama запущена) | +| `do=say&arg=текст` | бот говорит ровно этот текст | +| `do=rumor&arg=ТвойНик` | вложить боту слух про тебя — потом при встрече он его выдаст («говорят ты…») | +| `do=kill` | убить бота: он ложится, через ~15 сек **встаёт в ближайшем городе** и через минуту возвращается на спот | +| `do=list` | первые 25 ботов: ник, уровень, характер, зона, статус | + +## Проверка разговоров без игры + +На дашборде секция «Тестер диалога»: пишешь фразу (можно транслитом — `IIoMoruTe`, `privet`), видишь нормализацию → интент → шов → ответ, справа подсвечивается выбранная строка в списке вариантов шва. + +В игре: шёпот боту (`"Ник текст`) — теперь работает, «Offline mode» исправлено. + +## Быстрый сценарий проверки всего + +1. `do=tradeall&arg=15` → идёшь в Гиран, там 15 лавок, заходишь в любую и покупаешь. +2. `do=party&arg=ТвойНик` → окно пати, бот рядом, бьёт твои цели. +3. `do=gank&arg=ТвойНик` → PvP, флаг, бот кричит. +4. `do=kill` → смотришь, что бот встал в городе. +5. `do=levelup` несколько раз → реакция в чат и переезд. +6. Шёпот боту «помоги» → он бежит; «ты бот?» → отнекивается. diff --git a/INSTALL.md b/INSTALL.md new file mode 100644 index 0000000..6b814c1 --- /dev/null +++ b/INSTALL.md @@ -0,0 +1,89 @@ +# L2 Interlude SPP — установка + +Сервер: L2J Mobius CT_0 Interlude + SPP-моды (200 ботов с прокачкой, LLM-чат, геодата — см. BOTS.md). + +Два способа запуска: **Docker** (проще, всё в одной команде) или **нативно** (JDK + MariaDB в систему). + +## Файлы + +- `server_interlude.zip` — готовый сервер с геодатой. Распакуй в `I:\coding\l2sp\server\`. +- `src_mobius_interlude.zip` — исходники (для доработок). +- `docker\` — Dockerfile, docker-compose.yml, entrypoint.sh. + +--- + +## Вариант А: Docker + +Нужен Docker Desktop (https://docker.com, с WSL2). Дальше: + +1. Распакуй `server_interlude.zip` → папка с `game`, `login`, `libs`, `db_installer`. +2. Скопируй папку `docker` из `I:\coding\l2sp\docker` внутрь распакованной папки сервера (рядом с `game`). +3. Из папки сервера: + +``` +docker compose -f docker/docker-compose.yml up --build +``` + +Первый запуск: соберётся образ, поднимется MariaDB, login сам зальёт базу, game дождётся схемы и стартует. Готово, когда в логах `Registered on login as Server`. Дальше — шаги «Клиент» и «Аккаунт» ниже (порты 2106 и 7777 проброшены на localhost, для клиента разницы с нативным запуском нет). + +Нюансы: пароль БД зашит `l2j` (менять не нужно, наружу не торчит); Ollama контейнер видит на хосте через `host.docker.internal` — просто поставь её на Windows как обычно; правки конфигов в папке сервера применяются после `docker compose ... up --build`; база живёт в volume `l2db` (`docker volume rm` — полный сброс). Файлы docker/ не тестировались в бою (в моей песочнице нет Docker) — если что-то упадёт при сборке, кидай вывод. + +--- + +## Вариант Б: нативно (Windows) + +### Шаг 1. JDK 25 + +Temurin JDK 25 (Windows x64 MSI): https://adoptium.net/temurin/releases/?version=25 +При установке включи «Add to PATH» и «Set JAVA_HOME» — лаунчеры .vbs берут Java из JAVA_HOME. + +### Шаг 2. MariaDB + +MariaDB (Windows x64 MSI): https://mariadb.org/download/ — задай пароль root, порт 3306. + +### Шаг 3. База данных + +``` +mysql -uroot -p -e "CREATE DATABASE l2jmobiusinterlude" +cd I:\coding\l2sp\server\db_installer +for %f in (sql\login\*.sql) do mysql -uroot -p"ПАРОЛЬ" l2jmobiusinterlude < "%f" +for %f in (sql\game\*.sql) do mysql -uroot -p"ПАРОЛЬ" l2jmobiusinterlude < "%f" +``` + +(`mysql.exe` — в `C:\Program Files\MariaDB *\bin`. Либо GUI: `db_installer\DatabaseInstaller.vbs`.) + +### Шаг 4. Конфиги + +Пароль root в строку `Password =` в двух файлах: + +- `server\login\config\Database.ini` +- `server\game\config\Database.ini` + +Остальное уже настроено под localhost. + +### Шаг 5. Запуск (порядок важен) + +1. `server\login\LoginServer.vbs` — ждать `Login Server ready`. +2. `server\game\GameServer.vbs` — ждать `Registered on login`. Первый старт с геодатой — около минуты, нужно ~4 ГБ RAM (прописано в `game\java.cfg`). + +--- + +## Клиент + +Клиент Lineage 2 Interlude (protocol 746) с патченным под L2J `system` (сборки для приватов обычно такие; чистый официальный клиент не подключится — нужен «Interlude L2J patch»). В `system\l2.ini`: `ServerAddr=127.0.0.1` (если зашифрован — L2FileEdit). Запуск: `system\l2.exe`. + +## Аккаунт и админка + +Логин/пароль вводишь любые — аккаунт создастся сам. Админка после первого входа: + +``` +mysql -uroot -p l2jmobiusinterlude -e "UPDATE accounts SET accessLevel=100 WHERE login='ТВОЙ_ЛОГИН'" +``` + +(в Docker: `docker compose -f docker/docker-compose.yml exec db mariadb -uroot -pl2j l2jmobiusinterlude -e "UPDATE accounts SET accessLevel=100 WHERE login='ТВОЙ_ЛОГИН'"`) + +Перезайти. `//admin` — панель. + +## Боты + +Всё включено из коробки: 200 персонажей 1–76 с настоящей прокачкой, LLM-чат (нужна Ollama + `ollama pull gemma3`, иначе шаблонные фразы). Настройки — `game\config\Custom\FakePlayers.ini`, детали — `BOTS.md`. diff --git a/cleanup-docker.ps1 b/cleanup-docker.ps1 new file mode 100644 index 0000000..3d70384 --- /dev/null +++ b/cleanup-docker.ps1 @@ -0,0 +1,29 @@ +# Освобождает место, которое занял Docker, НЕ трогая базу сервера (том docker_l2db). +# Запуск: powershell -ExecutionPolicy Bypass -File cleanup-docker.ps1 + +Write-Host "Было занято:" -ForegroundColor Cyan +docker system df + +Write-Host "`nЧищу кэш сборок..." -ForegroundColor Yellow +docker builder prune -af + +Write-Host "`nЧищу неиспользуемые образы (том с базой не трогаю)..." -ForegroundColor Yellow +docker image prune -af + +Write-Host "`nЧищу остановленные контейнеры..." -ForegroundColor Yellow +docker container prune -f + +Write-Host "`nСтало:" -ForegroundColor Cyan +docker system df + +Write-Host "`nТома (базa должна остаться):" -ForegroundColor Cyan +docker volume ls + +Write-Host @" + +Место освобождено внутри виртуального диска Docker, но сам файл vhdx на C: не +сжимается автоматически. Чтобы вернуть место Windows: + 1) wsl --shutdown + 2) Optimize-VHD -Path "$env:LOCALAPPDATA\Docker\wsl\disk\docker_data.vhdx" -Mode Full + (нужен Hyper-V; если команды нет - Docker Desktop -> Settings -> Resources -> Disk -> Clean up) +"@ -ForegroundColor DarkGray diff --git a/docker/Dockerfile b/docker/Dockerfile new file mode 100644 index 0000000..a663308 --- /dev/null +++ b/docker/Dockerfile @@ -0,0 +1,13 @@ +# Лёгкий образ: только среда запуска. Файлы сервера НЕ копируются внутрь — +# папка server/ монтируется при старте (см. docker-compose.yml). +# Благодаря этому пересборка образа почти никогда не нужна, а обновление +# сервера = замена файлов на диске + docker compose restart. +FROM eclipse-temurin:25-jdk-noble + +RUN apt-get update && apt-get install -y --no-install-recommends mariadb-client && rm -rf /var/lib/apt/lists/* + +WORKDIR /opt/l2 +COPY entrypoint.sh /entrypoint.sh +RUN chmod +x /entrypoint.sh && sed -i 's/\r$//' /entrypoint.sh + +ENTRYPOINT ["/entrypoint.sh"] diff --git a/docker/docker-compose.yml b/docker/docker-compose.yml new file mode 100644 index 0000000..ab18d31 --- /dev/null +++ b/docker/docker-compose.yml @@ -0,0 +1,57 @@ +# Папка server/ монтируется в контейнеры, а не копируется в образ: +# образ ~200 МБ вместо 900 МБ, сборка нужна только при правке entrypoint.sh, +# обновление сервера = положить новые файлы и сделать restart. +services: + db: + image: mariadb:11.4 + environment: + MARIADB_ROOT_PASSWORD: l2j + MARIADB_DATABASE: l2jmobiusinterlude + volumes: + - l2db:/var/lib/mysql + healthcheck: + test: ["CMD", "healthcheck.sh", "--connect", "--innodb_initialized"] + interval: 5s + timeout: 5s + retries: 20 + + login: + build: + context: . + dockerfile: Dockerfile + image: l2-spp + command: ["login"] + environment: + DB_HOST: db + DB_PASS: l2j + volumes: + - ..:/opt/l2 + depends_on: + db: + condition: service_healthy + ports: + - "2106:2106" + restart: unless-stopped + + game: + image: l2-spp + command: ["game"] + environment: + DB_HOST: db + DB_PASS: l2j + # Ollama на хосте (Windows). Если не запущена - боты говорят шаблонами. + FAKE_LLM_URL: http://host.docker.internal:11434/api/generate + volumes: + - ..:/opt/l2 + depends_on: + db: + condition: service_healthy + login: + condition: service_started + ports: + - "7777:7777" + - "7780:7780" + restart: unless-stopped + +volumes: + l2db: diff --git a/docker/entrypoint.sh b/docker/entrypoint.sh new file mode 100644 index 0000000..84d96c3 --- /dev/null +++ b/docker/entrypoint.sh @@ -0,0 +1,55 @@ +#!/bin/bash +set -e + +ROLE="$1" # login | game +DB_HOST="${DB_HOST:-db}" +DB_PASS="${DB_PASS:-l2j}" +DB_NAME="l2jmobiusinterlude" +FAKE_LLM_URL="${FAKE_LLM_URL:-http://host.docker.internal:11434/api/generate}" + +M() { mariadb -h "$DB_HOST" -uroot -p"$DB_PASS" "$@"; } + +# MOUNTED: файлы сервера примонтированы с диска, а не вшиты в образ. +echo "[entrypoint] waiting for database at $DB_HOST..." +until M -e "SELECT 1" >/dev/null 2>&1; do sleep 2; done + +# Patch configs for the container network. +for f in /opt/l2/login/config/Database.ini /opt/l2/game/config/Database.ini; do + sed -i "s|jdbc:mysql://localhost|jdbc:mysql://$DB_HOST|" "$f" + sed -i "s|^Password *=.*|Password = $DB_PASS|" "$f" +done +sed -i "s|^LoginHostname *=.*|LoginHostname = 0.0.0.0|" /opt/l2/login/config/Server.ini +sed -i "s|^LoginHost *=.*|LoginHost = login|" /opt/l2/game/config/Server.ini +sed -i "s|^FakePlayerLlmUrl *=.*|FakePlayerLlmUrl = $FAKE_LLM_URL|" /opt/l2/game/config/Custom/FakePlayers.ini +# Client-facing IP: everything is published on localhost of the host machine. +cp -f /opt/l2/game/config/default-ipconfig.xml /opt/l2/game/config/ipconfig.xml + +if [ "$ROLE" = "login" ]; then + TABLES=$(M -N -e "SELECT COUNT(*) FROM information_schema.tables WHERE table_schema='$DB_NAME'") + if [ "$TABLES" -eq 0 ]; then + echo "[entrypoint] empty database, importing sql..." + for f in /opt/l2/db_installer/sql/login/*.sql /opt/l2/db_installer/sql/game/*.sql; do + M "$DB_NAME" < "$f" + done + echo "[entrypoint] import done." + fi + for seed in /opt/l2/db_installer/sql/spp_*.sql; do + [ -f "$seed" ] || continue + M "$DB_NAME" < "$seed" && echo "[entrypoint] applied $(basename "$seed")" + done + cd /opt/l2/login + exec java -Xmx256m -cp "../libs/*" org.l2jmobius.loginserver.LoginServer +fi + +if [ "$ROLE" = "game" ]; then + # Wait until login finished the import. + until [ "$(M -N -e "SELECT COUNT(*) FROM information_schema.tables WHERE table_schema='$DB_NAME'")" -gt 50 ]; do + echo "[entrypoint] waiting for database schema..." + sleep 3 + done + cd /opt/l2/game + exec java $(cat java.cfg) -cp "../libs/*" org.l2jmobius.gameserver.GameServer +fi + +echo "Usage: entrypoint.sh login|game" >&2 +exit 1 diff --git a/import-crests.py b/import-crests.py new file mode 100644 index 0000000..2f4942c --- /dev/null +++ b/import-crests.py @@ -0,0 +1,127 @@ +#!/usr/bin/env python3 +""" +Импорт своего пака гербов в бот-кланы. + +Использование: + python import-crests.py C:\\путь\\к\\папке_с_гербами + python import-crests.py C:\\путь --ally (только альянсовые, 8x16) + +Принимает PNG / BMP / DDS. Всё, что не 16x16 (клан) или 8x16 (альянс), +масштабируется автоматически. Результат: server/db_installer/sql/spp_crest_seed.sql +Дальше: docker compose ... up -d --build и reset-bots.ps1 + +Требует: pip install pillow +""" +import sys, os, glob, struct, re, hashlib, random + +try: + from PIL import Image +except ImportError: + print("Нужен Pillow: pip install pillow"); sys.exit(1) + +HERE = os.path.dirname(os.path.abspath(__file__)) +SEED_CLAN = os.path.join(HERE, "server", "db_installer", "sql", "spp_clan_seed.sql") +SEED_OUT = os.path.join(HERE, "server", "db_installer", "sql", "spp_crest_seed.sql") + +def dds_header(w, h, linear): + hdr = bytearray(128) + hdr[0:4] = b'DDS ' + struct.pack_into('> 3) << 11) | ((c[1] >> 2) << 5) | (c[2] >> 3) + +def encode_dxt1(img): + """Простое DXT1-сжатие: в каждом блоке 4x4 берём две крайние по яркости краски.""" + w, h = img.size + px = img.convert("RGB").load() + body = b'' + for by in range(h // 4): + for bx in range(w // 4): + cells = [px[bx * 4 + c, by * 4 + r] for r in range(4) for c in range(4)] + lum = [0.299 * c[0] + 0.587 * c[1] + 0.114 * c[2] for c in cells] + cmax = cells[lum.index(max(lum))] + cmin = cells[lum.index(min(lum))] + c0, c1 = to565(cmax), to565(cmin) + if c0 <= c1: + c0 = min(0xFFFF, c1 + 1) + idx = 0 + for i, cell in enumerate(cells): + l = 0.299 * cell[0] + 0.587 * cell[1] + 0.114 * cell[2] + lo, hi = min(lum), max(lum) + t = 0 if hi == lo else (l - lo) / (hi - lo) + sel = 0 if t > 0.83 else (2 if t > 0.5 else (3 if t > 0.17 else 1)) + idx |= (sel & 3) << (i * 2) + body += struct.pack(' пересобираю") + return None + img = Image.open(path) + if img.size != (w, h): + img = img.resize((w, h), Image.LANCZOS) + return encode_dxt1(img) + +def main(): + if len(sys.argv) < 2: + print(__doc__); sys.exit(1) + folder = sys.argv[1] + files = [] + for ext in ("png", "bmp", "dds", "jpg", "gif"): + files += sorted(glob.glob(os.path.join(folder, "**", "*." + ext), recursive=True)) + if not files: + print("В папке нет картинок"); sys.exit(1) + print(f"Найдено файлов: {len(files)}") + + clans = re.findall(r"INSERT IGNORE INTO clan_data \(clan_id, clan_name.*?VALUES \((\d+), '([^']+)'", + open(SEED_CLAN, encoding="utf-8").read()) + print(f"Кланов в сиде: {len(clans)}") + + out = ["-- SPP crests: imported from " + folder.replace("\\", "/"), + "DELETE FROM crests WHERE crest_id BETWEEN 9000 AND 9999;"] + crest_id = 9000 + rnd = random.Random(1) + ally_size = 8 + allies = [clans[i:i + ally_size] for i in range(0, len(clans), ally_size)] + A = ["Free","Iron","Silver","Northern","Old","Wild","Royal","United","Dark","Golden","Storm","Silent"] + B = ["Union","League","Pact","Alliance","Circle","Banner","Order","Coalition"] + ok = 0 + for ai, group in enumerate(allies): + if len(group) < 3: + continue + name = A[ai % len(A)] + B[(ai // len(A)) % len(B)] + ally_src = files[ai % len(files)] + ally_data = load_crest(ally_src, 8, 16) or encode_dxt1(Image.open(ally_src).resize((8, 16))) + ally_id = crest_id; crest_id += 1 + out.append(f"INSERT INTO crests (crest_id, data, type) VALUES ({ally_id}, 0x{ally_data.hex()}, 3);") + leader = int(group[0][0]) + for cid, cname in group: + src = files[hash(cname) % len(files)] + data = load_crest(src, 16, 16) + if data is None: + data = encode_dxt1(Image.open(src).convert("RGB").resize((16, 16), Image.LANCZOS)) + cc = crest_id; crest_id += 1 + out.append(f"INSERT INTO crests (crest_id, data, type) VALUES ({cc}, 0x{data.hex()}, 1);") + out.append(f"UPDATE clan_data SET crest_id={cc}, ally_id={leader}, ally_name='{name}', ally_crest_id={ally_id} WHERE clan_id={cid};") + ok += 1 + open(SEED_OUT, "w", encoding="utf-8").write("\n".join(out) + "\n") + print(f"Готово: {ok} клановых гербов -> {SEED_OUT}") + print("Дальше: docker compose -f server\\docker\\docker-compose.yml up --build -d и reset-bots.ps1") + +if __name__ == "__main__": + main() diff --git a/nickgen.html b/nickgen.html new file mode 100644 index 0000000..797930c --- /dev/null +++ b/nickgen.html @@ -0,0 +1,245 @@ + + + + +NickGen — генератор ников + + + +

NickGen — генератор ников для ботов

+ +
+ +
Части 1/2/3: + +
+ + + + + + + +
+ +
+
+ + + + diff --git a/nickgen.py b/nickgen.py new file mode 100644 index 0000000..d6a9518 --- /dev/null +++ b/nickgen.py @@ -0,0 +1,277 @@ +#!/usr/bin/env python3 +"""Генератор ников для ботов — порт nickgen.html (логика 1:1). + +Режимы: + python nickgen.py --print 30 [--seed 42] напечатать N ников + python nickgen.py [--seed 42] dry-run: показать, что изменится + python nickgen.py --apply [--seed 42] переписать имена в сидах: + server/game/data/FakePlayerProgression.xml () + server/db_installer/sql/spp_clan_seed.sql (characters.char_name) + +Соответствие: character id=N в XML <-> charId 270001000+N в SQL, имена ставятся +из одного списка, так что XML и БД остаются согласованы. После --apply ники в +работающей БД не изменятся (INSERT IGNORE) — нужен reset-bots.ps1 и пересборка +образа. +""" +import argparse +import random +import re +import sys +from pathlib import Path + +ROOT = Path(__file__).resolve().parent +XML_PATH = ROOT / 'server' / 'game' / 'data' / 'FakePlayerProgression.xml' +SQL_PATH = ROOT / 'server' / 'db_installer' / 'sql' / 'spp_clan_seed.sql' +CHAR_ID_BASE = 270001000 + +# --- Пулы слов (как в nickgen.html) ------------------------------------------ +RU_ADJ = ['злой', 'добрый', 'старый', 'дикий', 'мелкий', 'жирный', 'хитрый', 'бешеный', 'мамкин', 'просто', + 'лысый', 'грозный', 'тихий', 'сонный', 'голодный', 'кривой', 'ржавый', 'бодрый', 'унылый', 'модный', + 'четкий', 'дерзкий', 'борзый', 'лютый', 'шустрый', 'реальный', 'угарный', 'наглый'] +RU_NOUN = ['гном', 'пес', 'кот', 'волк', 'сухарь', 'травка', 'пельмень', 'колбаса', 'мармелад', 'чума', + 'ведьмак', 'сквозняк', 'холодок', 'бомж', 'топор', 'кабан', 'хомяк', 'огурец', 'батон', 'чеснок', + 'валенок', 'тапок', 'кефир', 'компот', 'барсук', 'ежик', 'мухомор', 'лопата', 'кирпич', 'шашлык', + 'беляш', 'танкист', 'дед', 'сосед', 'медоед', 'каратель', 'монах', + 'гопник', 'чебурек', 'шаурма', 'семки', 'пацан', 'браток', 'кент', 'батя', 'гараж', 'подъезд', + 'чушпан', 'задрот', 'нуб', 'читер', 'красавчик', 'нагибатор', 'убиватор', 'терминатор'] +RU_NAME = ['олег', 'вася', 'дашка', 'ленка', 'федор', 'санек', 'толик', 'серега', 'витек', 'петруха', + 'колян', 'димон', 'настя', 'машка', 'гриша', 'степан', 'юрец', 'макс', + 'жека', 'вован', 'толян', 'саня', 'диман', 'леха', 'андрюха', 'кирюха', 'паша', 'стас', + 'руслан', 'тимур', 'натаха', 'светка', 'танюха', 'ирка', 'вовчик', 'петрович', 'палыч'] +RU_SURNAME = ['пупкин', 'сидоров', 'петров', 'иванов', 'смирнов', 'кузнецов', 'козлов', 'волков', 'зайцев', 'медведев'] +PREFIXES = ['MC', 'Dj', 'Mr'] +EN_ADJ = ['Dark', 'Shadow', 'Storm', 'Night', 'Blood', 'Ghost', 'Crazy', 'Old', 'Swift', 'Silent', + 'Grim', 'Mad', 'Evil', 'Frost', 'Iron', 'Black', 'Wild', 'Lone', 'Sweet', 'True'] +EN_NOUN = ['Slayer', 'Reaper', 'Hunter', 'Killer', 'Knight', 'Rogue', 'Monk', 'Rider', 'Arrow', 'Blade', + 'Master', 'Lord', 'King', 'Sniper', 'Mage', 'Angel', 'Demon', 'Raven', 'Wolf', 'Dragon', + 'Fire', 'Ice', 'Death', 'Star', 'Dream', 'Soul', 'Fang', 'Claw', 'Bishop', 'Titan'] + +# --- Транслит: кириллица -> латиница ----------------------------------------- +TRANSLIT = {'а': 'a', 'б': 'b', 'в': 'v', 'г': 'g', 'д': 'd', 'е': 'e', 'ё': 'e', 'ж': 'zh', 'з': 'z', + 'и': 'i', 'й': 'j', 'к': 'k', 'л': 'l', 'м': 'm', 'н': 'n', 'о': 'o', 'п': 'p', 'р': 'r', + 'с': 's', 'т': 't', 'у': 'u', 'ф': 'f', 'х': 'h', 'ц': 'c', 'ч': 'ch', 'ш': 'sh', 'щ': 'sch', + 'ъ': '', 'ы': 'y', 'ь': '', 'э': 'e', 'ю': 'yu', 'я': 'ya'} + +# --- Псевдокириллица: латинские двойники (KpucuK, TpaBka, IIeJIbMeHb) --------- +# None = нет похожего символа, берётся транслит буквы. +FAKE_CYR = {'а': 'a', 'б': '6', 'в': 'B', 'г': 'r', 'д': None, 'е': 'e', 'ё': 'e', 'ж': None, 'з': '3', + 'и': 'u', 'й': 'u', 'к': 'K', 'л': 'JI', 'м': 'M', 'н': 'H', 'о': 'o', 'п': 'II', 'р': 'p', + 'с': 'c', 'т': 'T', 'у': 'y', 'ф': None, 'х': 'x', 'ц': None, 'ч': '4', 'ш': 'LLI', 'щ': None, + 'ъ': '', 'ы': 'bI', 'ь': 'b', 'э': '3', 'ю': 'IO', 'я': '9I'} + +# --- l33t для латинских слов (Ki4iga, OlegBI4) -------------------------------- +LEET = {'e': '3', 'o': '0', 'a': '4', 'i': '1', 's': '5'} + +VALID = re.compile(r'^[A-Za-z0-9]{3,16}$') +RU_RE = re.compile(r'[а-яё]') + + +class NickGen: + def __init__(self, seed=None, translit=True, fake_cyr=True, leet=True, digits=True, wrap=True, + weights=(25, 55, 20)): + self.r = random.Random(seed) + self.translit = translit + self.fake_cyr = fake_cyr + self.leet = leet + self.digits = digits + self.wrap = wrap + self.weights = weights + + def chance(self, pct): + return self.r.randrange(100) < pct + + def pick(self, arr): + return arr[self.r.randrange(len(arr))] + + def translit_word(self, w): + out = '' + for ch in w: + t = TRANSLIT.get(ch, ch) + if ch == 'й' and self.chance(50): + t = 'y' + if ch == 'в' and self.chance(15): + t = 'w' # Wowan-стиль + if ch == 'х': + t = 'x' if self.chance(40) else ('kh' if self.chance(30) else 'h') # Xyligan-стиль + out += t + return out[:1].upper() + out[1:] + + def fake_cyr_word(self, w): + out = '' + for ch in w: + f = FAKE_CYR.get(ch, ch) + out += f if f is not None else TRANSLIT.get(ch, ch) + return out + + def leet_word(self, w): + out, used = '', 0 + for ch in w: + l = LEET.get(ch.lower()) + if l and used < 2 and self.chance(45): + out += l + used += 1 + else: + out += ch + return out + + def build_parts(self, lang, n): + """-> список пар (слово, is_surname).""" + w = lambda x: (x, False) + s = lambda x: (x, True) + if lang == 'ru': + if n == 1: + v = self.r.randrange(100) + if v < 45: + return [w(self.pick(RU_NOUN))] + if v < 80: + return [w(self.pick(RU_NAME))] + return [s(self.pick(RU_SURNAME))] + if n == 2: + v = self.r.randrange(4) + if v == 0: + return [w(self.pick(RU_ADJ)), w(self.pick(RU_NOUN))] + if v == 1: + return [w(self.pick(RU_ADJ)), w(self.pick(RU_NAME))] + if v == 2: + return [w(self.pick(RU_NOUN)), w(self.pick(RU_NOUN))] + return [w(self.pick(RU_NAME)), s(self.pick(RU_SURNAME))] # VasyaPupkin + if self.chance(50): + return [w(self.pick(RU_ADJ)), w(self.pick(RU_NOUN)), w(self.pick(RU_NOUN))] + return [w(self.pick(RU_ADJ)), w(self.pick(RU_NAME)), s(self.pick(RU_SURNAME))] + if n == 1: + return [w(self.pick(EN_NOUN))] + if n == 2: + return [w(self.pick(EN_ADJ)), w(self.pick(EN_NOUN))] + first = self.pick(EN_ADJ) + second = self.pick([x for x in EN_ADJ if x != first]) if self.chance(50) else self.pick(EN_NOUN) + return [w(first), w(second), w(self.pick(EN_NOUN))] + + def generate_one(self): + total = max(sum(self.weights), 1) + roll = self.r.randrange(total) + n = 1 if roll < self.weights[0] else 2 if roll < self.weights[0] + self.weights[1] else 3 + + lang = 'ru' if self.chance(70) else 'en' + parts = self.build_parts(lang, n) + # редкая смесь языков в 2-3-частных никах + if n > 1 and self.chance(15): + parts[-1] = (self.pick(EN_NOUN), False) if lang == 'ru' else (self.translit_word(self.pick(RU_NOUN)), False) + + modes = ([['translit'], []][not self.translit]) + ([['fakeCyr'], []][not self.fake_cyr]) + ru_mode = self.pick(modes) if modes else 'translit' + + rendered = [] + for w, is_surname in parts: + if RU_RE.search(w): + if ru_mode == 'fakeCyr': + rendered.append(self.fake_cyr_word(w)) + else: + t = self.translit_word(w) + # фамилии на -ov: SmirnOFF / Smirnoff + if is_surname and t.lower().endswith('ov') and self.chance(50): + t = t[:-2] + ('OFF' if self.chance(40) else 'off') + rendered.append(t) + else: + rendered.append(self.leet_word(w) if self.leet and self.chance(20) else w) + nick = ''.join(rendered) + + # декорации (стиль сида: dashka, ZloyPES, HolodOK, OldRogue38, MCVovan95, xXDarkSlayerXx) + if ru_mode == 'translit': + if self.chance(12): + nick = nick.lower() + elif self.chance(12) and len(nick) > 4: + k = 2 + self.r.randrange(2) + nick = nick[:-k] + nick[-k:].upper() + if self.digits and self.chance(28) and len(nick) <= 14: + v = self.r.randrange(100) + if v < 45: + suf = str(1 + self.r.randrange(9)) if self.chance(50) else str(10 + self.r.randrange(90)) + elif v < 80: + suf = '%02d' % ((85 + self.r.randrange(23)) % 100) # год рождения 85..07 + else: + suf = str(1985 + self.r.randrange(23)) # 1985..2007 + if len(nick) + len(suf) <= 16: + nick += suf + if self.chance(4) and len(nick) <= 13: + nick += 'RUS' + prefixed = False + if self.chance(6) and len(nick) <= 14: + nick = self.pick(PREFIXES) + nick + prefixed = True + if self.wrap and not prefixed and self.chance(4) and len(nick) <= 12: + nick = 'xX' + nick + 'Xx' + return nick + + def batch(self, count, taken=None): + taken = taken if taken is not None else set() + out = [] + guard = count * 200 + while len(out) < count and guard > 0: + guard -= 1 + nick = self.generate_one() + if VALID.match(nick) and nick.lower() not in taken: + taken.add(nick.lower()) + out.append(nick) + if len(out) < count: + raise RuntimeError(f'Не хватило уникальных имён: {len(out)}/{count}. Расширь пулы слов.') + return out + + +# --- Перезапись сидов --------------------------------------------------------- +XML_RE = re.compile(r'(= 270001000; +DELETE FROM heroes WHERE charId >= 270001000; +DELETE FROM seven_signs WHERE charId >= 270001000; +DROP TABLE IF EXISTS fake_player_progress; +DROP TABLE IF EXISTS fake_player_memory; +DROP TABLE IF EXISTS fake_player_rumor; +"@ + +Write-Host "Стираю бот-данные..." +$sql | docker compose -f $Compose exec -T db mariadb -uroot -pl2j l2jmobiusinterlude +if ($LASTEXITCODE -ne 0) { Write-Host "Ошибка SQL — сервер запущен? (docker compose up)" -ForegroundColor Red; exit 1 } + +Write-Host "Перезапускаю сервер (логин зальёт свежий сид)..." +docker compose -f $Compose restart login +Start-Sleep -Seconds 8 +docker compose -f $Compose restart game + +Write-Host "Готово. Гейм-сервер поднимется ~1 мин, боты пересозданы со стартовых уровней." -ForegroundColor Green diff --git a/src_mobius/README.md b/src_mobius/README.md new file mode 100644 index 0000000..604cc76 --- /dev/null +++ b/src_mobius/README.md @@ -0,0 +1,14 @@ +# src_mobius — рабочие исходники сервера + +Рабочая копия исходников L2J Mobius CT_0 Interlude. **Все правки кода и данных ботов делаются здесь** — это источник истины. + +Структура (только то, что нужно для разработки): + +- `mobius/L2J_Mobius_CT_0_Interlude/java/` — полные исходники сервера (1630 файлов). Всё по фейк-игрокам: `java/org/l2jmobius/gameserver/managers/FakePlayer*.java` +- `mobius/L2J_Mobius_CT_0_Interlude/dist/game/data/` — данные чат-системы: `FakePlayerChatLines.xml` (швы+правила), `FakePlayerPools.xml` (рекурсивные пулы), `FakePlayerIntents.xml` (лексикон понимания), xsd +- `mobius/L2J_Mobius_CT_0_Interlude/dist/libs/` — jar-зависимости для сборки +- `build.xml` — ant-сборка (Java 25) + +Деплой: собранный `GameServer.jar` → `../server/libs/`, XML-данные → `../server/game/data/`. Бэкапы jar лежат в `../server/backup/`. + +`../src_mobius_interlude.zip` — замороженный архив (состояние на момент переезда сюда), больше не обновляется. Полный датапак (config, скрипты и т.д.) при необходимости достаётся из него. diff --git a/src_mobius/mobius/L2J_Mobius_CT_0_Interlude/dist/db_installer/sql/spp_clan_seed.sql b/src_mobius/mobius/L2J_Mobius_CT_0_Interlude/dist/db_installer/sql/spp_clan_seed.sql new file mode 100644 index 0000000..73e7c13 --- /dev/null +++ b/src_mobius/mobius/L2J_Mobius_CT_0_Interlude/dist/db_installer/sql/spp_clan_seed.sql @@ -0,0 +1,9017 @@ +-- SPP clan pre-seed, idempotent. +INSERT IGNORE INTO accounts (login, password, accessLevel) VALUES ('sppbots', 'x', 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270001001, 'sppbots', 'MrVasyaKozlOFF', 6038, 6, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 0, 0, 300000055, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270001002, 'sppbots', 'TihiyPacan', 19423, 8, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 25, 25, 300000017, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270001003, 'sppbots', 'xXFangXx', 4555766, 30, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 11, 11, 300000028, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270001004, 'sppbots', '4eTKuuToJIuK00', 30764519, 47, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 27, 27, 300000030, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270001005, 'sppbots', 'FrostKing', 8740372, 35, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 4, 4, 300000023, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270001006, 'sppbots', 'Sniper89', 308441375, 67, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 110, 110, 300000043, 'PKK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270001007, 'sppbots', 'King18', 363, 3, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 10, 10, 300000051, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270001008, 'sppbots', 'MonaxGarazh', 126509030, 60, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 117, 117, 300000122, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270001009, 'sppbots', 'FrostMage', 5231213, 31, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 4, 4, 300000008, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270001010, 'sppbots', 'KolyanD3m0n', 3407873, 28, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 7, 7, 300000090, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270001011, 'sppbots', 'pzhaBbIufedop', 68, 2, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 25, 25, 300000053, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270001012, 'sppbots', 'ModnyyBomzh18', 25524751, 45, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 12, 12, 0, 'PKK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270001013, 'sppbots', 'ceMKu', 1242536, 22, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 53, 53, 0, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270001014, 'sppbots', 'MelkiyWovAN5', 68, 2, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 38, 38, 300000005, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270001015, 'sppbots', 'DjBelyashRavEN', 474205751, 71, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 93, 93, 300000137, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270001016, 'sppbots', 'ded4', 804219972, 75, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 97, 97, 300000002, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270001017, 'sppbots', 'KentCheburEK1997', 931275828, 76, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 94, 94, 300000142, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270001018, 'sppbots', 'W1ldUbiv4tor', 6038, 6, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 18, 18, 300000058, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270001019, 'sppbots', 'Blo0dMonk', 2884, 5, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 53, 53, 300000054, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270001020, 'sppbots', 'Sanya', 191452, 14, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 10, 10, 300000044, 'PKK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270001021, 'sppbots', 'DarkHunter76', 48229, 10, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 0, 0, 300000045, 'PKK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270001022, 'sppbots', 'SeregaVolkOFF', 675590, 19, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 44, 44, 0, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270001023, 'sppbots', 'Dream1', 1242536, 22, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 15, 15, 300000078, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270001024, 'sppbots', 'GhostBlade', 57383682, 53, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 16, 16, 300000021, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270001025, 'sppbots', 'IrkaZaycev', 36806133, 49, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 5, 5, 300000115, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270001026, 'sppbots', 'MedveDEV', 331864, 16, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 0, 0, 300000073, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270001027, 'sppbots', 'W0lf', 68, 2, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 0, 0, 300000025, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270001028, 'sppbots', 'blackdream', 12395149, 38, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 26, 26, 300000093, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270001029, 'sppbots', 'dedKa6aH', 48229, 10, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 0, 0, 300000070, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270001030, 'sppbots', 'BlackHunt3r84', 71201, 11, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 53, 53, 300000064, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270001031, 'sppbots', 'Rider', 12395149, 38, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 22, 22, 300000093, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270001032, 'sppbots', 'KpuBou6oMzhKefup', 7729999, 34, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 39, 39, 300000095, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270001033, 'sppbots', 'caH9I', 63907585, 54, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 5, 5, 300000014, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270001034, 'sppbots', 'RealnyjSanya89', 804219972, 75, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 113, 113, 0, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270001035, 'sppbots', 'DarkMadSlayer', 6812472, 33, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 4, 4, 300000019, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270001036, 'sppbots', 'DjPashaClAWRUS', 25524751, 45, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 5, 5, 300000107, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270001037, 'sppbots', 'SvetkaMastER', 5981539, 32, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 54, 54, 0, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270001038, 'sppbots', 'LoneArrow', 18995573, 42, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 16, 16, 300000103, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270001039, 'sppbots', 'Zadrot1995', 539995, 18, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 18, 18, 300000078, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270001040, 'sppbots', 'TrueN1ghtDeath', 70852742, 55, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 94, 94, 300000119, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270001041, 'sppbots', 'SwiftB1sh0p', 212716741, 64, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 88, 88, 300000137, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270001042, 'sppbots', 'Zaycev', 254327, 15, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 38, 38, 300000018, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270001043, 'sppbots', 'Petrov', 126509030, 60, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 110, 110, 300000025, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270001044, 'sppbots', 'GrimMageSniper9', 1023775, 21, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 53, 53, 0, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270001045, 'sppbots', 'TaIIoK', 102265326, 58, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 88, 88, 300000123, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270001046, 'sppbots', 'evilblooddragon', 68, 2, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 0, 0, 300000053, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270001047, 'sppbots', 'TrueDragon1987', 3407873, 28, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 54, 54, 300000088, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270001048, 'sppbots', 'kolbasakaban', 15422851, 40, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 27, 27, 300000043, 'PKK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270001049, 'sppbots', 'xXTravkaXx', 102265326, 58, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 108, 108, 300000125, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270001050, 'sppbots', 'BlackShadowFang', 8740372, 35, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 7, 7, 300000046, 'PKK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270001051, 'sppbots', 'HarJIbIuFire', 363, 3, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 53, 53, 300000039, 'PKK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270001052, 'sppbots', 'KpuBouHacT9I', 114038008, 59, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 97, 97, 300000129, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270001053, 'sppbots', 'StormChushPAN', 5981539, 32, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 39, 39, 300000099, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270001054, 'sppbots', 'Medoed', 539995, 18, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 25, 25, 0, 'PKK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270001055, 'sppbots', 'KuzneCOVRUS', 15422851, 40, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 2, 2, 300000109, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270001056, 'sppbots', 'TimurSidoroff02', 126509030, 60, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 92, 92, 300000121, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270001057, 'sppbots', 'Sidorov', 1495531, 23, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 11, 11, 300000072, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270001058, 'sppbots', '4yMaKpacaB4uK63', 191452, 14, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 18, 18, 0, 'PKK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270001059, 'sppbots', 'xXSwiftLoneIceXx', 363, 3, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 25, 25, 300000059, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270001060, 'sppbots', 'SaNEK2007', 146307211, 61, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 94, 94, 300000006, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270001061, 'sppbots', 'xXFrostMonkXx', 254327, 15, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 44, 44, 0, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270001062, 'sppbots', 'SwiftDragonAngel', 1786365, 24, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 7, 7, 300000049, 'PKK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270001063, 'sppbots', 'sweetgh0stsoul', 2925229, 27, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 54, 54, 300000048, 'PKK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270001064, 'sppbots', 'NaglyjIrkaKozlov', 71201, 11, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 53, 53, 300000063, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270001065, 'sppbots', 'KiryukhaPupkin85', 6038, 6, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 10, 10, 300000057, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270001066, 'sppbots', 'KrivoyTravka', 675590, 19, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 0, 0, 300000038, 'PKK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270001067, 'sppbots', 'claw43', 101676, 12, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 53, 53, 0, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270001068, 'sppbots', 'ModnyyIrka', 6812472, 33, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 11, 11, 0, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270001069, 'sppbots', 'dep3Kuucoced4yMa', 675590, 19, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 44, 44, 0, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270001070, 'sppbots', 'L0neMaster', 1168, 4, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 38, 38, 0, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270001071, 'sppbots', 'pashasidorov', 28049509, 46, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 36, 36, 300000105, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270001072, 'sppbots', 'RealnyyMaKS', 539995, 18, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 0, 0, 300000014, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270001073, 'sppbots', 'SilentRogue', 804219972, 75, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 113, 113, 300000050, 'PKK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270001074, 'sppbots', 'caHeK3', 33679907, 48, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 16, 16, 300000118, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270001075, 'sppbots', '6eLLIeHbIuM0nk40', 2118860, 25, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 1, 1, 300000087, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270001076, 'sppbots', 'LLIaLLIJIbIK', 191452, 14, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 0, 0, 300000029, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270001077, 'sppbots', 'BloodMonkRaven', 426284, 17, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 31, 31, 0, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270001078, 'sppbots', 'Bac9IBoJIKoB', 70852742, 55, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 92, 92, 0, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270001079, 'sppbots', 'TrueMonkLoRD', 0, 1, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 0, 0, 300000054, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270001080, 'sppbots', 'Angel', 696376867, 74, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 93, 93, 300000039, 'PKK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270001081, 'sppbots', 'Bac9IIIeTpoB', 141192, 13, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 53, 53, 300000062, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270001082, 'sppbots', 'PodezdKolbasa', 237351413, 65, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 92, 92, 0, 'PKK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270001083, 'sppbots', 'SnipER', 1495531, 23, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 26, 26, 300000075, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270001084, 'sppbots', 'LoneFang', 189363788, 63, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 92, 92, 300000121, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270001085, 'sppbots', 'SilentClaw', 11287, 7, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 0, 0, 0, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270001086, 'sppbots', 'duKuuTpaBKacoced', 189363788, 63, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 88, 88, 0, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270001087, 'sppbots', 'Tanyuha', 146307211, 61, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 97, 97, 300000046, 'PKK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270001088, 'sppbots', 'NightFaNG', 40153995, 50, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 36, 36, 300000111, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270001089, 'sppbots', 'barsuk', 5981539, 32, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 7, 7, 300000097, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270001090, 'sppbots', 'Star', 2118860, 25, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 7, 7, 300000086, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270001091, 'sppbots', 'IronChiter', 18995573, 42, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 36, 36, 0, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270001092, 'sppbots', 'dep3Kuuy6uBaTop', 21007103, 43, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 46, 46, 300000104, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270001093, 'sppbots', 'ruslansidoroff9', 18995573, 42, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 16, 16, 300000101, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270001094, 'sppbots', 'IOpecMedBedeB', 271973532, 66, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 117, 117, 300000002, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270001095, 'sppbots', 'GhostBlackBl4de', 254327, 15, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 0, 0, 300000021, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270001096, 'sppbots', 'bodryytankist03', 0, 1, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 44, 44, 300000052, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270001097, 'sppbots', 'BloodKing93', 5231213, 31, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 4, 4, 300000087, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270001098, 'sppbots', 'Gh05tMage', 2118860, 25, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 7, 7, 300000027, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270001099, 'sppbots', 'RealnyjYurec', 12395149, 38, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 45, 45, 300000096, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270001100, 'sppbots', 'IronBishop', 17137002, 41, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 16, 16, 0, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270001101, 'sppbots', '3adpoTToIIop', 539995, 18, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 0, 0, 300000078, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270001102, 'sppbots', 'Killer', 189363788, 63, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 117, 117, 0, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270001103, 'sppbots', 'ZloyGrisha', 532692055, 72, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 103, 103, 300000041, 'PKK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270001104, 'sppbots', 'ToJIuKcMupHoB05', 15422851, 40, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 40, 40, 300000109, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270001105, 'sppbots', 'MCKent4rrOW85', 308441375, 67, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 92, 92, 300000132, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270001106, 'sppbots', 'IIecBoJIK', 3949727, 29, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 1, 1, 300000081, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270001107, 'sppbots', 'TpaBKa72', 0, 1, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 53, 53, 300000035, 'PKK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270001108, 'sppbots', 'VedmakKefirRUS', 1168, 4, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 0, 0, 300000054, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270001109, 'sppbots', 'MCpzhaBbIuFang', 1023775, 21, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 4, 4, 300000077, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270001110, 'sppbots', 'Wolkoff', 8740372, 35, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 15, 15, 300000095, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270001111, 'sppbots', 'BlackClaw', 931275828, 76, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 97, 97, 300000148, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270001112, 'sppbots', 'ZlojKaratel', 33679907, 48, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 24, 24, 300000005, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270001113, 'sppbots', 'Pupkin', 835854, 20, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 35, 35, 300000079, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270001114, 'sppbots', 'BlackDemon99RUS', 28049509, 46, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 46, 46, 300000047, 'PKK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270001115, 'sppbots', 'VowchikIvanov', 2884, 5, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 0, 0, 300000054, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270001116, 'sppbots', 'cr4zycheburek', 835854, 20, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 45, 45, 300000011, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270001117, 'sppbots', 'StasMedvedev', 6038, 6, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 10, 10, 0, 'PKK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270001118, 'sppbots', 'TanyuhaKozloff', 5981539, 32, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 15, 15, 300000001, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270001119, 'sppbots', 'MadWildFire', 4555766, 30, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 54, 54, 0, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270001120, 'sppbots', 'MeJIKuuMaster96', 696376867, 74, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 103, 103, 300000141, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270001121, 'sppbots', 'lysyjslayer04', 6038, 6, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 10, 10, 300000049, 'PKK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270001122, 'sppbots', 'FedorDream', 0, 1, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 25, 25, 300000001, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270001123, 'sppbots', 'TolyanRUS', 254327, 15, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 0, 0, 300000008, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270001124, 'sppbots', 'Lord', 1495531, 23, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 11, 11, 300000079, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270001125, 'sppbots', 'ShadowMadFang96', 1495531, 23, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 22, 22, 300000032, 'PKK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270001126, 'sppbots', 'DjDikijVitek87', 36806133, 49, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 2, 2, 300000111, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270001127, 'sppbots', 'Demon', 19423, 8, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 44, 44, 0, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270001128, 'sppbots', 'realnyjvowchik02', 48229, 10, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 18, 18, 300000067, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270001129, 'sppbots', 'Raven', 102265326, 58, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 113, 113, 300000005, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270001130, 'sppbots', 'Stas', 532692055, 72, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 113, 113, 300000146, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270001131, 'sppbots', 'Monk', 4555766, 30, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 7, 7, 0, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270001132, 'sppbots', 'Sil3ntFire', 0, 1, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 53, 53, 300000059, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270001133, 'sppbots', 'y6uBaTop3adpoT', 21007103, 43, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 16, 16, 300000105, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270001134, 'sppbots', 'JIIOTbIuBoJIK', 2118860, 25, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 35, 35, 300000088, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270001135, 'sppbots', 'Sniper43', 146307211, 61, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 94, 94, 300000122, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270001136, 'sppbots', 'Nagibator', 57383682, 53, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 55, 55, 0, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270001137, 'sppbots', '6eJI9ILLITaIIoK', 146307211, 61, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 92, 92, 300000016, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270001138, 'sppbots', 'DarkNightStar', 191452, 14, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 31, 31, 300000069, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270001139, 'sppbots', 'StormValenok', 36806133, 49, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 27, 27, 300000118, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270001140, 'sppbots', 'TaHIOxa', 1242536, 22, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 22, 22, 300000079, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270001141, 'sppbots', 'GhostBishop1985', 57383682, 53, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 27, 27, 300000115, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270001142, 'sppbots', 'BaTON99', 13844879, 39, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 39, 39, 300000020, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270001143, 'sppbots', 'ezhuKBaJIeHoK', 91162131, 57, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 117, 117, 0, 'PKK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270001144, 'sppbots', 'StormArrow', 426284, 17, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 0, 0, 300000075, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270001145, 'sppbots', 'lysyjgrisha10', 68, 2, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 18, 18, 0, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270001146, 'sppbots', 'KiryuxaMedvedev', 33679907, 48, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 8, 8, 300000111, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270001147, 'sppbots', 'CrazyAngel1', 102265326, 58, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 117, 117, 0, 'PKK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270001148, 'sppbots', 'ModHbIudaLLIKa', 2925229, 27, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 54, 54, 0, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270001149, 'sppbots', 'shadowhunt3r', 48229, 10, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 0, 0, 300000012, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270001150, 'sppbots', 'OlegStAR', 8740372, 35, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 15, 15, 300000095, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270001151, 'sppbots', 'Kolyan', 0, 1, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 0, 0, 300000025, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270001152, 'sppbots', 'ToporXomyak91', 606319094, 73, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 113, 113, 300000146, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270001153, 'sppbots', 'MrMedoedToIIop', 102265326, 58, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 103, 103, 300000125, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270001154, 'sppbots', 'SonnyyVovchik', 17137002, 41, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 40, 40, 300000107, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270001155, 'sppbots', 'BedbMaKcoced97', 1495531, 23, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 4, 4, 300000079, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270001156, 'sppbots', 'MaksPupkin', 387197529, 69, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 94, 94, 300000132, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270001157, 'sppbots', 'pycJIaH', 189363788, 63, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 90, 90, 300000020, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270001158, 'sppbots', 'MCSh4dowSniper', 31378, 9, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 0, 0, 300000066, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270001159, 'sppbots', 'KoTSoul03', 80700339, 56, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 94, 94, 300000002, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270001160, 'sppbots', 'Maks', 696376867, 74, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 90, 90, 300000015, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270001161, 'sppbots', 'MadArrow', 5981539, 32, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 7, 7, 300000096, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270001162, 'sppbots', 'TrueDre4m', 80700339, 56, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 102, 102, 300000122, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270001163, 'sppbots', 'MaKc', 1168, 4, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 0, 0, 300000036, 'PKK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270001164, 'sppbots', 'DarkLord', 835854, 20, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 35, 35, 300000038, 'PKK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270001165, 'sppbots', 'MarmeladKompot6', 2884, 5, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 53, 53, 0, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270001166, 'sppbots', 'staryjsanya5', 5231213, 31, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 1, 1, 300000050, 'PKK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270001167, 'sppbots', 'BorzyjSuxar', 7729999, 34, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 4, 4, 300000096, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270001168, 'sppbots', 'toporpacan', 363, 3, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 25, 25, 0, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270001169, 'sppbots', 'cTapbIuzheKa', 15422851, 40, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 36, 36, 0, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270001170, 'sppbots', 'SilentKnight1993', 804219972, 75, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 108, 108, 0, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270001171, 'sppbots', 'MaLLIKa04', 835854, 20, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 4, 4, 300000004, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270001172, 'sppbots', 'Rav3n', 11287, 7, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 0, 0, 300000060, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270001173, 'sppbots', 'MrSoul', 191452, 14, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 0, 0, 300000007, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270001174, 'sppbots', 'KupIOxacudopoB', 429632402, 70, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 108, 108, 300000133, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270001175, 'sppbots', 'BuTeK', 191452, 14, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 53, 53, 0, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270001176, 'sppbots', 'SvetkaZajcew', 191452, 14, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 0, 0, 300000063, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270001177, 'sppbots', 'MCDedKefir', 31378, 9, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 0, 0, 300000026, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270001178, 'sppbots', '6paToK', 835854, 20, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 7, 7, 300000042, 'PKK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270001179, 'sppbots', 'DjShadowDeath2', 1168, 4, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 10, 10, 300000054, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270001180, 'sppbots', 'NastyaSmirnow', 114038008, 59, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 113, 113, 300000128, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270001181, 'sppbots', 'CrazyMageRaVEN', 2925229, 27, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 45, 45, 300000084, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270001182, 'sppbots', 'SwiftKent', 11287, 7, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 0, 0, 300000055, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270001183, 'sppbots', '6op3bIufedop', 91162131, 57, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 88, 88, 300000124, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270001184, 'sppbots', 'JIIOTbIuTaIIoK', 539995, 18, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 25, 25, 300000026, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270001185, 'sppbots', 'coHHbIuKoTKa6aH', 91162131, 57, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 102, 102, 300000122, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270001186, 'sppbots', 'IIaLLIaBoJIKoB3', 931275828, 76, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 93, 93, 300000149, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270001187, 'sppbots', 'Knight', 6038, 6, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 0, 0, 0, 'PKK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270001188, 'sppbots', 'NightSoulSniper', 28049509, 46, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 27, 27, 0, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270001189, 'sppbots', 'DragonRUS', 835854, 20, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 1, 1, 300000078, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270001190, 'sppbots', 'EvilFang', 70852742, 55, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 97, 97, 300000115, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270001191, 'sppbots', 'TepMuHaTop4', 18995573, 42, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 9, 9, 300000103, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270001192, 'sppbots', 'TerminatorTravka', 114038008, 59, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 88, 88, 300000003, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270001193, 'sppbots', 'StormChiter48', 474205751, 71, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 92, 92, 300000134, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270001194, 'sppbots', 'Topor', 31378, 9, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 31, 31, 300000062, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270001195, 'sppbots', 'coHHbIuIIaJIbI4', 308441375, 67, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 117, 117, 300000134, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270001196, 'sppbots', 'SosedRider03', 11287, 7, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 18, 18, 300000053, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270001197, 'sppbots', 'TapokRider', 363, 3, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 10, 10, 300000011, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270001198, 'sppbots', 'bodryydeath', 363, 3, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 0, 0, 300000060, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270001199, 'sppbots', 'pzhaBbIuDragon', 40153995, 50, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 8, 8, 300000115, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270001200, 'sppbots', 'JIIOTbIuKing2', 1023775, 21, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 26, 26, 300000080, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270001201, 'sppbots', 'MrKpuBouKeHT', 80700339, 56, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 93, 93, 300000017, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270001202, 'sppbots', 'MCEzhikOgurec7', 1495531, 23, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 11, 11, 300000077, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270001203, 'sppbots', 'BloodReaper', 23180442, 44, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 9, 9, 300000110, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270001204, 'sppbots', 'BlackSoul12', 114038008, 59, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 97, 97, 300000125, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270001205, 'sppbots', 'NaglyySkvoznyAK', 30764519, 47, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 36, 36, 300000108, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270001206, 'sppbots', 'IIeJIbMeHb6paToK', 3407873, 28, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 39, 39, 300000089, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270001207, 'sppbots', 'loneic3', 146307211, 61, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 93, 93, 300000127, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270001208, 'sppbots', 'MaMKuHStar', 11066012, 37, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 54, 54, 300000034, 'PKK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270001209, 'sppbots', 'duMaHIIyIIKuH', 429632402, 70, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 90, 90, 300000011, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270001210, 'sppbots', 'TimurMedvedev', 237351413, 65, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 90, 90, 300000134, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270001211, 'sppbots', 'IIpocToroIIHuK', 675590, 19, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 10, 10, 0, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270001212, 'sppbots', 'BlackRogueWolf38', 101676, 12, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 31, 31, 300000063, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270001213, 'sppbots', 'rpo3HbIurapazh90', 237351413, 65, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 90, 90, 300000005, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270001214, 'sppbots', 'sanyasmirnov', 1242536, 22, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 22, 22, 300000003, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270001215, 'sppbots', 'FrostKnight', 141192, 13, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 0, 0, 300000067, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270001216, 'sppbots', 'EvilAngelMage', 2884, 5, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 53, 53, 300000025, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270001217, 'sppbots', 'BoB4uKKo3JIoB', 126509030, 60, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 93, 93, 300000029, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270001218, 'sppbots', 'TixijZheka8', 189363788, 63, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 88, 88, 300000124, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270001219, 'sppbots', 'fedopIIyIIKuH74', 675590, 19, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 31, 31, 300000040, 'PKK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270001220, 'sppbots', 'MadTrueBishop', 28049509, 46, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 55, 55, 300000109, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270001221, 'sppbots', '3adpoTMoHax41', 141192, 13, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 18, 18, 0, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270001222, 'sppbots', 'CheburekWalenok', 474205751, 71, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 93, 93, 300000132, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270001223, 'sppbots', 'GolodnyyZadrot94', 271973532, 66, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 93, 93, 300000026, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270001224, 'sppbots', 'StepanMage', 804219972, 75, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 88, 88, 300000141, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270001225, 'sppbots', 'Shad0wChesnok', 474205751, 71, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 92, 92, 0, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270001226, 'sppbots', 'MeJIKuuKoT58', 363, 3, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 10, 10, 300000059, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270001227, 'sppbots', 'LLIycTpbIuBac9I', 254327, 15, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 38, 38, 300000040, 'PKK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270001228, 'sppbots', '5oul', 12395149, 38, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 22, 22, 300000095, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270001229, 'sppbots', 'ToJIuKcMupHoB', 70852742, 55, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 92, 92, 300000118, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270001230, 'sppbots', 'DjOldR4v3n4', 25524751, 45, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 2, 2, 300000102, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270001231, 'sppbots', 'xXCr4zyReaperXx', 31378, 9, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 18, 18, 300000069, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270001232, 'sppbots', 'ShadowMaster75', 675590, 19, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 44, 44, 300000076, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270001233, 'sppbots', 'Killer2', 8740372, 35, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 26, 26, 300000100, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270001234, 'sppbots', '4eTKuu6oMzh', 532692055, 72, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 103, 103, 300000149, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270001235, 'sppbots', 'xXLordXx', 71201, 11, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 0, 0, 300000062, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270001236, 'sppbots', 'xXChuma1996Xx', 2497059, 26, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 45, 45, 300000012, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270001237, 'sppbots', 'ChumaMarmelad', 114038008, 59, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 110, 110, 300000125, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270001238, 'sppbots', 'Death57', 474205751, 71, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 113, 113, 300000138, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270001239, 'sppbots', 'SilentKillerIce', 1242536, 22, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 7, 7, 300000071, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270001240, 'sppbots', 'Petruha', 23180442, 44, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 27, 27, 300000109, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270001241, 'sppbots', 'MadRaven', 57383682, 53, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 27, 27, 300000120, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270001242, 'sppbots', 'GrimLord', 48229, 10, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 18, 18, 300000003, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270001243, 'sppbots', 'TuMypuBaHoB', 0, 1, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 0, 0, 300000051, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270001244, 'sppbots', 'ChiterVolk', 30764519, 47, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 2, 2, 300000107, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270001245, 'sppbots', 'ShaurmaShaurma', 15422851, 40, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 36, 36, 300000107, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270001246, 'sppbots', 'yHbIJIbIuezhuK', 13844879, 39, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 26, 26, 300000012, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270001247, 'sppbots', 'xXUnylyjIceXx', 48229, 10, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 38, 38, 300000068, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270001248, 'sppbots', 'Lord20', 387197529, 69, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 110, 110, 300000136, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270001249, 'sppbots', 'TankistVolk', 114038008, 59, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 94, 94, 300000128, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270001250, 'sppbots', 'PalyCH', 429632402, 70, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 90, 90, 300000131, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270001251, 'sppbots', 'FrostMONK', 7729999, 34, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 54, 54, 0, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270001252, 'sppbots', 'rpo3HbIucBeTKa', 1023775, 21, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 45, 45, 0, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270001253, 'sppbots', 'MeJIKuuKing98', 363, 3, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 0, 0, 300000053, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270001254, 'sppbots', 'JIIOTbIuIIacaH', 3407873, 28, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 4, 4, 0, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270001255, 'sppbots', 'SonnyyNub', 1786365, 24, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 1, 1, 300000086, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270001256, 'sppbots', 'groznyjwovan', 539995, 18, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 53, 53, 300000075, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270001257, 'sppbots', 'do6pbIuKoJI6aca', 191452, 14, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 53, 53, 300000070, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270001258, 'sppbots', 'Storm1r0nTitan', 28049509, 46, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 40, 40, 300000016, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270001259, 'sppbots', 'Vedmak', 2925229, 27, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 54, 54, 300000082, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270001260, 'sppbots', 'BomzhBatya', 426284, 17, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 0, 0, 300000076, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270001261, 'sppbots', 'LysyyXomyak05', 1786365, 24, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 22, 22, 300000082, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270001262, 'sppbots', 'do6pbIuupKaMonk', 2118860, 25, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 22, 22, 300000001, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270001263, 'sppbots', 'Titan16', 19423, 8, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 0, 0, 300000061, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270001264, 'sppbots', 'SweetDream', 80700339, 56, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 103, 103, 300000008, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270001265, 'sppbots', 'ZhekaRaVEN', 532692055, 72, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 113, 113, 300000150, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270001266, 'sppbots', 'UnylyjKiryukHA', 40153995, 50, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 9, 9, 300000031, 'PKK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270001267, 'sppbots', 'y6uBaTopKupIIu4', 57383682, 53, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 55, 55, 300000115, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270001268, 'sppbots', 'RuslanPetrOFF', 931275828, 76, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 110, 110, 300000146, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270001269, 'sppbots', 'MrZlojVasya8', 931275828, 76, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 110, 110, 300000145, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270001270, 'sppbots', 'XitryjPalych', 835854, 20, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 26, 26, 300000076, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270001271, 'sppbots', 'DjLord', 23180442, 44, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 2, 2, 300000003, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270001272, 'sppbots', 'DarkBlackTitan85', 141192, 13, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 44, 44, 300000064, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270001273, 'sppbots', 'UgarnyjNubDemon', 2925229, 27, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 1, 1, 300000007, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270001274, 'sppbots', 'BlackLon3Chuma', 167243291, 62, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 103, 103, 300000127, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270001275, 'sppbots', 'ShadowSniper58', 31378, 9, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 38, 38, 300000038, 'PKK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270001276, 'sppbots', 'TihiyKaraTEL95', 254327, 15, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 0, 0, 0, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270001277, 'sppbots', 'OldChesnok8', 0, 1, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 38, 38, 300000024, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270001278, 'sppbots', 'roJIodHbIuBac9I', 31378, 9, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 10, 10, 300000070, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270001279, 'sppbots', 'coHHbIuTaIIoK', 191452, 14, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 0, 0, 300000012, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270001280, 'sppbots', 'ModnyyTerminator', 5231213, 31, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 26, 26, 0, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270001281, 'sppbots', 'JIbIcbIuIIaJIbI4', 191452, 14, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 53, 53, 0, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270001282, 'sppbots', 'Gh0stD3m0n', 532692055, 72, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 94, 94, 300000148, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270001283, 'sppbots', 'SvetkaZayCEV', 114038008, 59, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 108, 108, 300000130, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270001284, 'sppbots', 'SkvoznyakChuma', 539995, 18, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 25, 25, 0, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270001285, 'sppbots', '3JIouKa6aH75', 835854, 20, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 7, 7, 300000071, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270001286, 'sppbots', 'King', 2884, 5, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 10, 10, 300000027, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270001287, 'sppbots', 'Blo0dWolf00', 5981539, 32, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 7, 7, 300000002, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270001288, 'sppbots', 'RealnyyKiryuha94', 254327, 15, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 53, 53, 300000033, 'PKK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270001289, 'sppbots', 'Frost1c3', 48229, 10, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 44, 44, 300000063, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270001290, 'sppbots', 'TrueHunter61', 1242536, 22, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 7, 7, 300000080, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270001291, 'sppbots', 'Haru6aTop4yMa', 11287, 7, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 0, 0, 300000060, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270001292, 'sppbots', 'BratokPESRUS', 12395149, 38, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 1, 1, 300000096, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270001293, 'sppbots', 'MCduKuucTac50ul', 2497059, 26, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 39, 39, 300000082, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270001294, 'sppbots', 'LoneHunter', 141192, 13, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 38, 38, 0, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270001295, 'sppbots', 'GrimFrostSniper', 1168, 4, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 0, 0, 300000056, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270001296, 'sppbots', 'Semki', 36806133, 49, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 27, 27, 0, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270001297, 'sppbots', 'zhupHbIurapazh', 31378, 9, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 38, 38, 300000068, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270001298, 'sppbots', 'MrduMaH', 101676, 12, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 10, 10, 300000024, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270001299, 'sppbots', 'RealnyjBaton98', 1786365, 24, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 1, 1, 0, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270001300, 'sppbots', 'Sniper5', 6038, 6, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 0, 0, 300000004, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270001301, 'sppbots', 'WildDed', 675590, 19, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 0, 0, 0, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270001302, 'sppbots', '6op3bIucTac97', 91162131, 57, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 113, 113, 300000121, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270001303, 'sppbots', 'WildWolf95', 71201, 11, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 44, 44, 300000068, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270001304, 'sppbots', 'MedwedEV06', 51262204, 52, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 40, 40, 300000115, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270001305, 'sppbots', 'FedorRUS', 675590, 19, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 10, 10, 300000011, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270001306, 'sppbots', 'FrostW0lf', 13844879, 39, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 7, 7, 300000095, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270001307, 'sppbots', 'KpuBoufedop85', 45524865, 51, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 46, 46, 300000002, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270001308, 'sppbots', 'GroznyyChuma61', 254327, 15, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 0, 0, 0, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270001309, 'sppbots', 'fedop', 1786365, 24, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 4, 4, 0, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270001310, 'sppbots', 'RiderRUS', 254327, 15, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 44, 44, 300000064, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270001311, 'sppbots', 'KaratelPacan36', 3949727, 29, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 22, 22, 300000087, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270001312, 'sppbots', 'peaJIbHbIuHaTaxa', 4555766, 30, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 26, 26, 300000001, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270001313, 'sppbots', 'truemonk2', 63907585, 54, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 16, 16, 300000119, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270001314, 'sppbots', 'ceperaFire', 254327, 15, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 10, 10, 0, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270001315, 'sppbots', 'LysyjSemki', 146307211, 61, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 88, 88, 300000130, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270001316, 'sppbots', 'ChetkijKot', 426284, 17, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 10, 10, 300000002, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270001317, 'sppbots', 'chetkijkirpich', 804219972, 75, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 102, 102, 300000147, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270001318, 'sppbots', 'NagibatorTapok', 6038, 6, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 10, 10, 300000060, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270001319, 'sppbots', 'JIeHKa', 51262204, 52, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 55, 55, 300000113, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270001320, 'sppbots', 'duKuuSoul', 31378, 9, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 0, 0, 300000070, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270001321, 'sppbots', 'WildKillerSn1per', 25524751, 45, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 9, 9, 300000104, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270001322, 'sppbots', 'GhostTitan', 68, 2, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 38, 38, 300000056, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270001323, 'sppbots', 'ArrOW06', 3407873, 28, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 39, 39, 0, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270001324, 'sppbots', 'LLIycTpbIu6apcyK', 18995573, 42, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 9, 9, 300000109, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270001325, 'sppbots', 'zhupHbIuBac9I', 114038008, 59, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 90, 90, 300000129, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270001326, 'sppbots', 'HitryyTerminator', 474205751, 71, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 113, 113, 300000132, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270001327, 'sppbots', 'zheKauBaHoB', 114038008, 59, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 88, 88, 300000129, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270001328, 'sppbots', 'MuhomorSosed', 28049509, 46, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 2, 2, 300000104, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270001329, 'sppbots', 'DerzkijKiryuxa', 2884, 5, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 0, 0, 300000053, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270001330, 'sppbots', 'xXSwiftKillerXx', 331864, 16, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 0, 0, 300000019, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270001331, 'sppbots', 'Fr05tBlade2', 931275828, 76, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 113, 113, 300000148, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270001332, 'sppbots', 'StormKnight', 387197529, 69, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 92, 92, 300000013, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270001333, 'sppbots', '6op3bIucaH9I', 57383682, 53, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 46, 46, 300000115, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270001334, 'sppbots', '6eLLIeHbIuzheKa', 2925229, 27, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 54, 54, 300000087, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270001335, 'sppbots', 'ProstoShashlyk', 51262204, 52, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 5, 5, 300000011, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270001336, 'sppbots', 'yrapHbIufedopRUS', 30764519, 47, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 55, 55, 300000109, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270001337, 'sppbots', 'MeJIKuuMaster', 126509030, 60, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 117, 117, 0, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270001338, 'sppbots', 'BodryyKot', 4555766, 30, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 45, 45, 300000085, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270001339, 'sppbots', 'LenkaSidoroff5', 2118860, 25, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 11, 11, 300000038, 'PKK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270001340, 'sppbots', 'nub', 6038, 6, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 31, 31, 300000051, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270001341, 'sppbots', 'Sweet5TAR1', 5231213, 31, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 35, 35, 300000016, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270001342, 'sppbots', 'IIyIIKuH', 68, 2, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 18, 18, 300000051, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270001343, 'sppbots', 'realnyjstepan15', 2884, 5, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 31, 31, 300000013, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270001344, 'sppbots', 'BloodArrow', 146307211, 61, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 88, 88, 300000018, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270001345, 'sppbots', 'Yurec', 1786365, 24, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 35, 35, 300000086, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270001346, 'sppbots', 'muhomor', 539995, 18, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 0, 0, 300000032, 'PKK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270001347, 'sppbots', '3JIou4uTep', 71201, 11, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 53, 53, 300000062, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270001348, 'sppbots', 'MCKrivojOleg', 40153995, 50, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 16, 16, 300000003, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270001349, 'sppbots', 'OldFangKhomyak', 271973532, 66, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 93, 93, 300000139, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270001350, 'sppbots', 'SwiftBlade', 80700339, 56, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 110, 110, 300000015, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270001351, 'sppbots', 'MadKn1ght99', 426284, 17, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 0, 0, 300000074, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270001352, 'sppbots', 'Hunter', 191452, 14, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 38, 38, 300000001, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270001353, 'sppbots', 'Irka', 51262204, 52, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 16, 16, 300000118, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270001354, 'sppbots', 'ZhekaSmirnoff', 15422851, 40, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 27, 27, 300000110, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270001355, 'sppbots', 'truesn1p3rhunter', 2497059, 26, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 1, 1, 0, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270001356, 'sppbots', 'SilentWolf', 12395149, 38, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 54, 54, 0, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270001357, 'sppbots', 'Reap3r1993', 18995573, 42, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 46, 46, 300000013, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270001358, 'sppbots', 'HitryjBlad3', 11066012, 37, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 11, 11, 300000042, 'PKK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270001359, 'sppbots', 'ZhirnyjKOT1995', 80700339, 56, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 94, 94, 300000024, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270001360, 'sppbots', 'DikijDed', 2118860, 25, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 4, 4, 300000086, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270001361, 'sppbots', 'WovanSidorow', 11066012, 37, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 4, 4, 300000099, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270001362, 'sppbots', 'ceMKu1989', 426284, 17, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 25, 25, 300000080, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270001363, 'sppbots', 'IronBlade', 11287, 7, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 10, 10, 300000012, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270001364, 'sppbots', 'MrBloodLord', 0, 1, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 0, 0, 300000044, 'PKK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270001365, 'sppbots', 'DarkBlade', 191452, 14, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 0, 0, 300000070, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270001366, 'sppbots', '0ldK1ll3rTitan', 80700339, 56, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 102, 102, 300000026, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270001367, 'sppbots', 'IIeccKBo3H9IK', 68, 2, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 0, 0, 300000041, 'PKK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270001368, 'sppbots', 'Mage2003', 426284, 17, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 0, 0, 300000072, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270001369, 'sppbots', 'Ded', 835854, 20, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 15, 15, 300000080, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270001370, 'sppbots', 'stormironsoul', 68, 2, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 10, 10, 300000002, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270001371, 'sppbots', 'coHHbIuFire', 25524751, 45, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 36, 36, 0, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270001372, 'sppbots', 'EvilRogue', 271973532, 66, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 113, 113, 0, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270001373, 'sppbots', 'OldSilentFang', 12395149, 38, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 26, 26, 300000097, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270001374, 'sppbots', 'Kefup', 835854, 20, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 22, 22, 300000078, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270001375, 'sppbots', 'MadIce', 7729999, 34, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 54, 54, 300000097, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270001376, 'sppbots', 'KpacaB4uK', 1168, 4, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 10, 10, 300000059, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270001377, 'sppbots', 'Fro5tCl4w20RUS', 51262204, 52, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 40, 40, 300000035, 'PKK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270001378, 'sppbots', 'LoneRider', 141192, 13, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 38, 38, 300000065, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270001379, 'sppbots', 'SilentSkvoznyak', 532692055, 72, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 88, 88, 300000146, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270001380, 'sppbots', 'IIaLLIa1994', 51262204, 52, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 9, 9, 300000008, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270001381, 'sppbots', 'FrostM45terRUS', 114038008, 59, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 92, 92, 300000126, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270001382, 'sppbots', 'yHbIJIbIu6apcyK', 68, 2, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 53, 53, 300000060, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270001383, 'sppbots', 'ToJIuK3auceB', 606319094, 73, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 110, 110, 300000148, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270001384, 'sppbots', 'TikhiySkvoznyak', 36806133, 49, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 36, 36, 0, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270001385, 'sppbots', 'xXRavenXx', 426284, 17, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 25, 25, 300000011, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270001386, 'sppbots', 'GopnikLopata', 141192, 13, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 0, 0, 300000067, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270001387, 'sppbots', 'Valenok', 6038, 6, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 0, 0, 300000053, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270001388, 'sppbots', 'DikijBatyaTopOR', 271973532, 66, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 97, 97, 300000134, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270001389, 'sppbots', 'KpuBourHoMHy6', 363, 3, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 0, 0, 300000012, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270001390, 'sppbots', 'TaHKucT6', 3407873, 28, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 26, 26, 300000089, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270001391, 'sppbots', 'BatyaKirpich', 6038, 6, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 38, 38, 300000051, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270001392, 'sppbots', 'IIode3d97', 675590, 19, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 18, 18, 0, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270001393, 'sppbots', 'andryuhasidorov', 539995, 18, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 53, 53, 300000072, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270001394, 'sppbots', 'ZlojNub', 12395149, 38, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 45, 45, 300000093, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270001395, 'sppbots', 'ProstoZadrot', 91162131, 57, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 103, 103, 300000123, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270001396, 'sppbots', 'BarsukGopnik1995', 254327, 15, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 0, 0, 0, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270001397, 'sppbots', 'Dobryy5lay3r25', 0, 1, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 53, 53, 300000020, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270001398, 'sppbots', 'Knight89', 4555766, 30, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 35, 35, 300000083, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270001399, 'sppbots', 'SanekMedvedev', 3407873, 28, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 26, 26, 300000082, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270001400, 'sppbots', 'TrueGhostWolf', 606319094, 73, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 88, 88, 300000147, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270001401, 'sppbots', 'Ivanov', 5231213, 31, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 45, 45, 300000081, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270001402, 'sppbots', '6aToHrapazh1995', 48229, 10, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 44, 44, 300000015, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270001403, 'sppbots', 'BlackRider89', 1786365, 24, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 11, 11, 300000014, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270001404, 'sppbots', '4uTep', 11066012, 37, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 39, 39, 300000095, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270001405, 'sppbots', '6paToKHaru6aTop', 5981539, 32, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 54, 54, 0, 'PKK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270001406, 'sppbots', '6op3bIuDr34m', 11066012, 37, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 22, 22, 300000009, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270001407, 'sppbots', 'MedoedBlade93', 191452, 14, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 10, 10, 300000038, 'PKK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270001408, 'sppbots', 'ChetkijKompot', 141192, 13, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 53, 53, 300000069, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270001409, 'sppbots', 'TankiST', 30764519, 47, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 12, 12, 300000102, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270001410, 'sppbots', 'Zajcev5', 7729999, 34, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 45, 45, 300000010, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270001411, 'sppbots', 'ModHbIucTac41', 8740372, 35, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 26, 26, 0, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270001412, 'sppbots', 'Oleg1990', 146307211, 61, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 90, 90, 300000047, 'PKK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270001413, 'sppbots', 'LysyjAndryuha86', 606319094, 73, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 88, 88, 0, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270001414, 'sppbots', 'UgarnyyLenka', 675590, 19, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 0, 0, 300000072, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270001415, 'sppbots', 'LenkaVolkov96', 30764519, 47, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 12, 12, 300000008, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270001416, 'sppbots', 'ChetkijDedNub1', 19423, 8, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 10, 10, 300000029, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270001417, 'sppbots', 'sanekpupkin', 1242536, 22, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 11, 11, 300000078, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270001418, 'sppbots', 'TuMyp', 331864, 16, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 38, 38, 300000016, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270001419, 'sppbots', 'PalychKuznecow', 532692055, 72, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 94, 94, 0, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270001420, 'sppbots', 'aHdpIOxa', 931275828, 76, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 94, 94, 300000144, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270001421, 'sppbots', 'SidorOFF98', 57383682, 53, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 40, 40, 300000114, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270001422, 'sppbots', 'cyxapb', 6038, 6, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 31, 31, 0, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270001423, 'sppbots', 'ShadowKnight', 167243291, 62, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 102, 102, 0, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270001424, 'sppbots', 'rider93', 13844879, 39, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 7, 7, 300000002, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270001425, 'sppbots', 'Ubivator3', 63907585, 54, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 27, 27, 300000111, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270001426, 'sppbots', 'rpuLLIa', 71201, 11, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 38, 38, 300000068, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270001427, 'sppbots', 'IIeTpyxaMedBedeB', 33679907, 48, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 5, 5, 300000028, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270001428, 'sppbots', 'Night5ha5hlyk', 2884, 5, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 10, 10, 300000059, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270001429, 'sppbots', 'StormKing92', 2118860, 25, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 7, 7, 300000089, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270001430, 'sppbots', 'xuTpbIuKoJI9IH2', 28049509, 46, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 8, 8, 0, 'PKK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270001431, 'sppbots', 'melkijkholodok46', 36806133, 49, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 16, 16, 300000032, 'PKK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270001432, 'sppbots', 'IIaJIbI4', 429632402, 70, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 102, 102, 300000134, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270001433, 'sppbots', 'GroznyyLenka', 6038, 6, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 10, 10, 300000057, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270001434, 'sppbots', 'MarmeladSosed', 33679907, 48, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 2, 2, 300000049, 'PKK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270001435, 'sppbots', 'GhostCrazyLord', 1023775, 21, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 7, 7, 300000027, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270001436, 'sppbots', '6aT9I01', 6038, 6, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 10, 10, 300000025, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270001437, 'sppbots', 'ModHbIuIIode3d01', 5231213, 31, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 45, 45, 300000089, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270001438, 'sppbots', 'zheKa3auceB', 17137002, 41, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 27, 27, 300000107, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270001439, 'sppbots', 'MelkijHomyak32', 237351413, 65, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 117, 117, 300000140, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270001440, 'sppbots', 'FrostArrow', 835854, 20, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 4, 4, 300000074, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270001441, 'sppbots', 'rapazhHy697', 57383682, 53, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 12, 12, 300000119, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270001442, 'sppbots', 'TikhijSanek', 931275828, 76, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 90, 90, 300000143, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270001443, 'sppbots', 'xuTpbIuKapaTeJIb', 2497059, 26, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 11, 11, 300000045, 'PKK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270001444, 'sppbots', 'VolkOFF', 331864, 16, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 25, 25, 300000072, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270001445, 'sppbots', 'BloodFire', 212716741, 64, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 97, 97, 300000133, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270001446, 'sppbots', 'BoJIK', 68, 2, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 0, 0, 300000056, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270001447, 'sppbots', 'BaJIeHoKcoced', 426284, 17, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 31, 31, 300000075, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270001448, 'sppbots', 'ToJIuKIIyIIKuH', 11287, 7, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 38, 38, 300000055, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270001449, 'sppbots', 'Death', 63907585, 54, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 12, 12, 300000116, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270001450, 'sppbots', 'MaLLIKa', 2925229, 27, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 7, 7, 300000026, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270001451, 'sppbots', '4e6ypeKKupIIu48', 189363788, 63, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 97, 97, 300000008, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270001452, 'sppbots', 'IronM0nk93RUS', 331864, 16, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 0, 0, 300000075, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270001453, 'sppbots', 'BlackSoul85', 101676, 12, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 31, 31, 300000019, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270001454, 'sppbots', 'CrazyRogue', 1023775, 21, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 22, 22, 300000022, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270001455, 'sppbots', 'UgarnyyClaw', 331864, 16, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 10, 10, 300000017, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270001456, 'sppbots', 'KupIIu46paToK', 101676, 12, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 25, 25, 300000025, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270001457, 'sppbots', 'BloodIce7', 114038008, 59, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 102, 102, 300000122, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270001458, 'sppbots', 'mamkinserega91', 70852742, 55, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 102, 102, 300000114, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270001459, 'sppbots', 'MCstormghostfire', 4555766, 30, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 39, 39, 300000088, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270001460, 'sppbots', 'Vovan02', 114038008, 59, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 92, 92, 300000126, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270001461, 'sppbots', 'BlackReaperKiNG', 931275828, 76, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 92, 92, 300000150, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270001462, 'sppbots', 'Oleg', 271973532, 66, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 93, 93, 300000013, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270001463, 'sppbots', 'zheKa7', 11066012, 37, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 22, 22, 300000098, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270001464, 'sppbots', 'staryyirka', 17137002, 41, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 27, 27, 300000015, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270001465, 'sppbots', 'Volk', 931275828, 76, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 113, 113, 300000013, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270001466, 'sppbots', '6op3bIuBoB4uK', 68, 2, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 31, 31, 300000057, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270001467, 'sppbots', 'IIecTpaBKa', 114038008, 59, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 94, 94, 0, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270001468, 'sppbots', 'BomzhBratokRUS', 23180442, 44, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 5, 5, 300000110, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270001469, 'sppbots', 'ProstoPaSHA', 363, 3, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 18, 18, 300000056, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270001470, 'sppbots', 'PalychSidoroff93', 308441375, 67, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 92, 92, 300000136, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270001471, 'sppbots', 'BlackSoul', 18995573, 42, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 2, 2, 300000002, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270001472, 'sppbots', 'BatonMarmelad', 5981539, 32, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 22, 22, 300000047, 'PKK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270001473, 'sppbots', 'chushpan', 0, 1, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 10, 10, 300000047, 'PKK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270001474, 'sppbots', 'SvetkaRiDERRUS', 40153995, 50, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 9, 9, 300000115, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270001475, 'sppbots', 'Rider52', 6812472, 33, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 45, 45, 300000093, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270001476, 'sppbots', 'IronTitan', 12395149, 38, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 22, 22, 0, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270001477, 'sppbots', 'EvilDr3am', 5981539, 32, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 22, 22, 300000100, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270001478, 'sppbots', 'OldL0neTitan1995', 114038008, 59, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 110, 110, 300000043, 'PKK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270001479, 'sppbots', 'rzhavyystepan', 2925229, 27, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 1, 1, 300000088, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270001480, 'sppbots', 'xXduMaHXx', 675590, 19, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 18, 18, 300000010, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270001481, 'sppbots', 'EvilLord2', 11287, 7, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 31, 31, 300000060, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270001482, 'sppbots', 'True4rr0wSt4r78', 71201, 11, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 0, 0, 300000023, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270001483, 'sppbots', '3adpoTTaIIoK', 429632402, 70, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 113, 113, 300000135, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270001484, 'sppbots', 'MedoedxoJIodoK', 19423, 8, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 0, 0, 300000067, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270001485, 'sppbots', 'FrostAng3l', 363, 3, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 38, 38, 300000052, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270001486, 'sppbots', 'BoBaHMaster', 6812472, 33, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 7, 7, 0, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270001487, 'sppbots', 'W1ldRider06', 9850111, 36, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 45, 45, 300000098, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270001488, 'sppbots', 'semkisemki95', 346825235, 68, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 110, 110, 300000023, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270001489, 'sppbots', 'TimurKozlov', 19423, 8, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 0, 0, 300000065, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270001490, 'sppbots', 'yrapHbIuJIexa02', 1242536, 22, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 35, 35, 300000074, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270001491, 'sppbots', 'Tuxuu4ecHoK', 696376867, 74, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 92, 92, 300000142, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270001492, 'sppbots', 'xXKupIOxa48Xx', 57383682, 53, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 9, 9, 300000041, 'PKK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270001493, 'sppbots', 'tihiypetrowich92', 1242536, 22, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 35, 35, 300000010, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270001494, 'sppbots', 'KolbasaWolf', 4555766, 30, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 35, 35, 300000019, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270001495, 'sppbots', 'WildClawAngel', 11066012, 37, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 1, 1, 300000097, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270001496, 'sppbots', 'ToporChitER86', 21007103, 43, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 2, 2, 300000101, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270001497, 'sppbots', 'LLIycTpbIuJIeHKa', 30764519, 47, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 5, 5, 300000028, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270001498, 'sppbots', 'Chuma', 2884, 5, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 53, 53, 0, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270001499, 'sppbots', 'DarkRogue', 12395149, 38, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 4, 4, 300000099, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270001500, 'sppbots', '4yLLIIIaH', 146307211, 61, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 97, 97, 300000129, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270001501, 'sppbots', 'MCOldMaster', 30764519, 47, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 2, 2, 300000102, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270001502, 'sppbots', 'zhupHbIuduMaH', 15422851, 40, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 55, 55, 300000106, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270001503, 'sppbots', 'Marmelad', 331864, 16, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 10, 10, 300000071, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270001504, 'sppbots', 'duMoHcudopoB', 48229, 10, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 18, 18, 300000062, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270001505, 'sppbots', 'PalychVolkov', 539995, 18, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 25, 25, 300000071, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270001506, 'sppbots', 'xXNightFireXx', 15422851, 40, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 2, 2, 300000106, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270001507, 'sppbots', 'mamkintapok', 80700339, 56, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 97, 97, 300000009, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270001508, 'sppbots', 'ModnyySerega', 835854, 20, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 4, 4, 300000079, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270001509, 'sppbots', 'Lord1985', 1495531, 23, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 22, 22, 300000050, 'PKK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270001510, 'sppbots', 'KrivojStar', 12395149, 38, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 39, 39, 300000097, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270001511, 'sppbots', 'NubBoMZH', 387197529, 69, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 113, 113, 300000049, 'PKK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270001512, 'sppbots', 'Kuznecoff', 48229, 10, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 10, 10, 300000063, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270001513, 'sppbots', 'St4r', 8740372, 35, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 54, 54, 300000098, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270001514, 'sppbots', 'ModnyjSosed', 835854, 20, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 4, 4, 300000001, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270001515, 'sppbots', 'UgarnyyKnight', 675590, 19, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 10, 10, 300000017, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270001516, 'sppbots', 'HacT9I', 167243291, 62, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 113, 113, 0, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270001517, 'sppbots', 'duMoHIIeTpoB', 2497059, 26, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 7, 7, 0, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270001518, 'sppbots', 'PacanMuhomor26', 30764519, 47, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 40, 40, 300000106, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270001519, 'sppbots', 'SwiftReaper', 63907585, 54, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 2, 2, 300000114, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270001520, 'sppbots', 'DjDikijVasya07', 28049509, 46, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 36, 36, 0, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270001521, 'sppbots', 'Bratok87', 31378, 9, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 53, 53, 300000014, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270001522, 'sppbots', 'duKuuJIexa', 71201, 11, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 0, 0, 300000014, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270001523, 'sppbots', 'NightKing', 191452, 14, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 0, 0, 300000068, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270001524, 'sppbots', 'IronDarkSuhar', 0, 1, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 0, 0, 300000059, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270001525, 'sppbots', 'LysyjMaksPetrow', 331864, 16, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 31, 31, 300000071, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270001526, 'sppbots', 'OldIce1993', 1786365, 24, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 53, 53, 300000090, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270001527, 'sppbots', 'Dragon', 346825235, 68, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 110, 110, 300000015, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270001528, 'sppbots', 'Vasya', 114038008, 59, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 108, 108, 300000121, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270001529, 'sppbots', 'ceMKucyxapb', 5231213, 31, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 1, 1, 300000039, 'PKK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270001530, 'sppbots', 'DarkReaPER', 387197529, 69, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 97, 97, 300000133, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270001531, 'sppbots', 'Khomyak', 23180442, 44, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 46, 46, 0, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270001532, 'sppbots', 'VovcHIK', 31378, 9, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 0, 0, 300000065, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270001533, 'sppbots', 'MrKnight', 7729999, 34, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 22, 22, 300000100, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270001534, 'sppbots', 'MadMageDeath', 2497059, 26, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 7, 7, 300000086, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270001535, 'sppbots', 'zheKaIIyIIKuH', 40153995, 50, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 40, 40, 300000120, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270001536, 'sppbots', 'StormGhostKiller', 331864, 16, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 18, 18, 300000072, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270001537, 'sppbots', 'Arrow', 31378, 9, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 25, 25, 300000061, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270001538, 'sppbots', 'GhostAng3L', 331864, 16, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 0, 0, 300000014, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270001539, 'sppbots', 'groznyjfedor42', 5981539, 32, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 7, 7, 300000096, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270001540, 'sppbots', 'DashkaKuznecov6', 308441375, 67, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 97, 97, 300000131, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270001541, 'sppbots', 'Chesnok', 25524751, 45, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 27, 27, 300000102, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270001542, 'sppbots', 'KefupBaJIeHoK95', 532692055, 72, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 108, 108, 300000002, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270001543, 'sppbots', 'HacT9IKo3JIoB87', 12395149, 38, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 45, 45, 0, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270001544, 'sppbots', 'BoBaH', 254327, 15, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 0, 0, 0, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270001545, 'sppbots', 'StormR34per', 237351413, 65, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 113, 113, 300000140, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270001546, 'sppbots', 'LoneTankist1994', 606319094, 73, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 92, 92, 300000141, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270001547, 'sppbots', 'xuTpbIu6aT9I', 11066012, 37, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 7, 7, 300000091, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270001548, 'sppbots', 'UgarnyyDeath', 71201, 11, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 10, 10, 300000006, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270001549, 'sppbots', 'LoneAngel', 33679907, 48, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 16, 16, 300000113, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270001550, 'sppbots', 'CrazySniper97', 191452, 14, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 53, 53, 300000066, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270001551, 'sppbots', 'Tanyuxa', 11287, 7, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 10, 10, 300000029, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270001552, 'sppbots', 'Gnom', 102265326, 58, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 97, 97, 0, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270001553, 'sppbots', 'Krasawchik9', 51262204, 52, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 55, 55, 300000116, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270001554, 'sppbots', 'StormKiller90', 191452, 14, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 0, 0, 300000068, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270001555, 'sppbots', 'TpaBKa', 254327, 15, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 10, 10, 300000065, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270001556, 'sppbots', 'JIoIIaTaRUS', 1786365, 24, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 7, 7, 300000088, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270001557, 'sppbots', 'EvilLoneKnight8', 2118860, 25, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 7, 7, 300000086, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270001558, 'sppbots', 'SilentIce', 363, 3, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 53, 53, 0, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270001559, 'sppbots', 'TravkaGarazhRUS', 212716741, 64, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 92, 92, 300000140, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270001560, 'sppbots', 'nightcrazystar1', 101676, 12, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 0, 0, 300000065, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270001561, 'sppbots', 'MedBedeB', 804219972, 75, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 110, 110, 300000143, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270001562, 'sppbots', 'BloodRogue', 9850111, 36, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 7, 7, 0, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270001563, 'sppbots', '4ecHoKcoced', 237351413, 65, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 103, 103, 0, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270001564, 'sppbots', 'JIeHKa90', 71201, 11, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 31, 31, 300000067, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270001565, 'sppbots', 'Karatel95', 1242536, 22, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 7, 7, 300000071, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270001566, 'sppbots', 'HitryyKiryuxa', 11066012, 37, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 4, 4, 300000095, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270001567, 'sppbots', 'MadBlackMonk', 141192, 13, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 44, 44, 300000013, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270001568, 'sppbots', 'MadKn1ght', 2884, 5, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 0, 0, 300000057, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270001569, 'sppbots', 'MadKirpich6', 532692055, 72, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 103, 103, 300000142, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270001570, 'sppbots', 'DarkRiderLordRUS', 212716741, 64, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 94, 94, 300000035, 'PKK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270001571, 'sppbots', 'yHbIJIbIuDrag0n', 5231213, 31, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 22, 22, 300000090, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270001572, 'sppbots', 'NightK4b4n', 0, 1, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 0, 0, 300000023, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270001573, 'sppbots', 'caHeKBoJIKoB96', 6812472, 33, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 1, 1, 300000092, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270001574, 'sppbots', 'SilentWalenok', 1786365, 24, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 22, 22, 0, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270001575, 'sppbots', 'TrueFangRUS', 387197529, 69, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 113, 113, 300000021, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270001576, 'sppbots', 'Lord89', 675590, 19, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 0, 0, 300000020, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270001577, 'sppbots', 'SwiftLord', 308441375, 67, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 102, 102, 300000133, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270001578, 'sppbots', 'BaJIeHoK4yMa', 5981539, 32, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 22, 22, 300000025, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270001579, 'sppbots', 'Dj3auceB02', 3407873, 28, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 54, 54, 300000089, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270001580, 'sppbots', 'EvilKnight1994', 23180442, 44, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 55, 55, 300000103, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270001581, 'sppbots', '4eTKuuHy6', 11066012, 37, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 7, 7, 0, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270001582, 'sppbots', 'DobryySerega', 36806133, 49, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 27, 27, 300000045, 'PKK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270001583, 'sppbots', 'BeshenyyTanyukHA', 3407873, 28, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 4, 4, 300000082, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270001584, 'sppbots', 'ShadowRaven2003', 4555766, 30, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 7, 7, 300000083, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270001585, 'sppbots', 'Djlenka', 2497059, 26, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 54, 54, 300000036, 'PKK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270001586, 'sppbots', 'Sosed5n1per2004', 30764519, 47, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 9, 9, 300000106, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270001587, 'sppbots', 'DashkaPupkin1996', 6038, 6, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 38, 38, 300000008, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270001588, 'sppbots', '4eTKuuKupIIu42', 1495531, 23, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 4, 4, 300000080, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270001589, 'sppbots', 'TrueLopata', 5981539, 32, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 11, 11, 300000091, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270001590, 'sppbots', 'EvilMonkStar90', 8740372, 35, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 45, 45, 300000093, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270001591, 'sppbots', 'TaHIOxa3auceB', 835854, 20, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 11, 11, 300000007, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270001592, 'sppbots', 'Rogue', 1023775, 21, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 26, 26, 0, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270001593, 'sppbots', 'IronFire', 387197529, 69, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 94, 94, 300000134, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270001594, 'sppbots', 'ModnyyVoWANRUS', 212716741, 64, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 110, 110, 300000022, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270001595, 'sppbots', 'BomzhKrasawchik', 71201, 11, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 18, 18, 300000003, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270001596, 'sppbots', 'TrueFire', 308441375, 67, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 90, 90, 300000133, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270001597, 'sppbots', 'SonnyyPetrukha', 9850111, 36, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 26, 26, 300000097, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270001598, 'sppbots', 'Hunt3rRUS', 126509030, 60, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 93, 93, 0, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270001599, 'sppbots', 'KeHT', 21007103, 43, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 2, 2, 300000110, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270001600, 'sppbots', 'VasyaKuznecov', 141192, 13, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 38, 38, 300000047, 'PKK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270001601, 'sppbots', 'sweetgho5thunter', 426284, 17, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 53, 53, 300000076, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270001602, 'sppbots', '3auceB', 254327, 15, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 10, 10, 300000064, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270001603, 'sppbots', 'KoT', 387197529, 69, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 88, 88, 300000135, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270001604, 'sppbots', 'XolodokMedoed', 2884, 5, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 38, 38, 300000056, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270001605, 'sppbots', 'LLIycTpbIuzheKa', 606319094, 73, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 110, 110, 300000147, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270001606, 'sppbots', 'cTapbIucTeIIaH', 71201, 11, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 53, 53, 0, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270001607, 'sppbots', 'KpuBouLLIaypMa91', 931275828, 76, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 93, 93, 300000037, 'PKK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270001608, 'sppbots', 'Fang95', 11066012, 37, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 35, 35, 300000100, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270001609, 'sppbots', 'ToJIuKcMupHoB95', 2497059, 26, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 22, 22, 0, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270001610, 'sppbots', 'Sw33tSlayer', 19423, 8, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 0, 0, 300000063, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270001611, 'sppbots', 'do6pbIuToJI9IH', 237351413, 65, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 110, 110, 0, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270001612, 'sppbots', 'ugarnyjdiman03', 28049509, 46, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 9, 9, 300000109, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270001613, 'sppbots', 'Titan', 70852742, 55, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 90, 90, 300000111, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270001614, 'sppbots', 'KupIOxa', 189363788, 63, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 117, 117, 0, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270001615, 'sppbots', 'KpuBouTaIIoK', 4555766, 30, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 54, 54, 300000081, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270001616, 'sppbots', 'evilmasterdemon', 11287, 7, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 53, 53, 300000053, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270001617, 'sppbots', 'SeregaSmirnov', 18995573, 42, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 5, 5, 300000104, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270001618, 'sppbots', 'ghostsniper', 426284, 17, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 18, 18, 300000071, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270001619, 'sppbots', 'IIaLLIaIIyIIKuH', 254327, 15, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 10, 10, 300000001, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270001620, 'sppbots', 'duKuuKa6aHMedoed', 363, 3, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 44, 44, 300000031, 'PKK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270001621, 'sppbots', 'SweetKnight', 114038008, 59, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 92, 92, 300000123, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270001622, 'sppbots', 'DobryjPacan', 212716741, 64, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 113, 113, 300000132, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270001623, 'sppbots', 'medvedew', 23180442, 44, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 5, 5, 300000104, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270001624, 'sppbots', 'TrueD3ath', 36806133, 49, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 46, 46, 300000119, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270001625, 'sppbots', 'GhostDreamStar', 8740372, 35, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 1, 1, 0, 'PKK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270001626, 'sppbots', 'loneslayer', 5231213, 31, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 26, 26, 300000034, 'PKK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270001627, 'sppbots', 'DjIronHunter', 167243291, 62, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 103, 103, 300000122, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270001628, 'sppbots', 'GhostBishopRUS', 1786365, 24, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 4, 4, 300000005, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270001629, 'sppbots', 'Cheburek', 36806133, 49, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 40, 40, 300000044, 'PKK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270001630, 'sppbots', '4yMa', 1495531, 23, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 4, 4, 0, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270001631, 'sppbots', 'DikiyTimur', 146307211, 61, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 117, 117, 0, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270001632, 'sppbots', 'King71', 539995, 18, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 0, 0, 300000018, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270001633, 'sppbots', 'MCLoneDream91', 91162131, 57, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 110, 110, 300000123, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270001634, 'sppbots', 'BratokPodEZD', 804219972, 75, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 113, 113, 300000033, 'PKK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270001635, 'sppbots', 'roIIHuK', 539995, 18, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 0, 0, 0, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270001636, 'sppbots', 'oJIerMedBedeB', 31378, 9, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 53, 53, 300000066, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270001637, 'sppbots', 'L0n3Mage', 28049509, 46, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 46, 46, 300000022, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270001638, 'sppbots', 'TolyanKuznecoff', 212716741, 64, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 88, 88, 300000032, 'PKK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270001639, 'sppbots', 'Gr1mClaw', 4555766, 30, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 1, 1, 300000024, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270001640, 'sppbots', 'GnomRogu33', 4555766, 30, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 1, 1, 300000082, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270001641, 'sppbots', 'NightKompot', 126509030, 60, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 97, 97, 300000125, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270001642, 'sppbots', 'SweetBarsuk', 1168, 4, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 31, 31, 300000004, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270001643, 'sppbots', 'Dashka', 191452, 14, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 53, 53, 300000005, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270001644, 'sppbots', 'UgarnyyTapOK', 191452, 14, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 18, 18, 300000032, 'PKK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270001645, 'sppbots', 'caHeK3auceB', 271973532, 66, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 103, 103, 300000137, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270001646, 'sppbots', 'ModnyyWedMAK89', 25524751, 45, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 55, 55, 300000009, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270001647, 'sppbots', 'bishop', 308441375, 67, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 117, 117, 300000133, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270001648, 'sppbots', 'coced88', 363, 3, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 44, 44, 300000055, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270001649, 'sppbots', 'GhostStar07', 696376867, 74, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 110, 110, 0, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270001650, 'sppbots', '6odpbIuAngel', 6038, 6, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 0, 0, 0, 'PKK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270001651, 'sppbots', 'peaJIbHbIuduMaH', 15422851, 40, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 46, 46, 0, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270001652, 'sppbots', 'caH9I1990', 15422851, 40, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 8, 8, 300000027, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270001653, 'sppbots', '6eLLIeHbIuDr4gon', 1168, 4, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 44, 44, 300000053, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270001654, 'sppbots', 'ChetkiySuxar', 539995, 18, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 44, 44, 0, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270001655, 'sppbots', 'LoneOldRiderRUS', 346825235, 68, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 117, 117, 300000139, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270001656, 'sppbots', 'PetrovichPupkin', 23180442, 44, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 2, 2, 300000103, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270001657, 'sppbots', 'KoTTaHKucT', 28049509, 46, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 16, 16, 300000104, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270001658, 'sppbots', 'DjMadKnight', 5231213, 31, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 45, 45, 300000084, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270001659, 'sppbots', 'MCGrimRider2000', 101676, 12, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 10, 10, 300000070, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270001660, 'sppbots', 'BaJIeHoK6oMzh', 6038, 6, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 25, 25, 300000004, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270001661, 'sppbots', '5had0wKing', 48229, 10, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 0, 0, 300000067, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270001662, 'sppbots', 'cTapbIupycJIaH89', 71201, 11, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 0, 0, 300000061, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270001663, 'sppbots', 'BorzyyVasya', 51262204, 52, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 12, 12, 300000117, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270001664, 'sppbots', 'coHHbIuBoB4uK8', 191452, 14, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 44, 44, 300000043, 'PKK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270001665, 'sppbots', 'DjIIyIIKuH', 2925229, 27, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 1, 1, 300000089, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270001666, 'sppbots', 'cBeTKaBoJIKoB', 3407873, 28, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 15, 15, 300000020, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270001667, 'sppbots', 'BodryjShaurma', 19423, 8, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 0, 0, 300000029, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270001668, 'sppbots', 'IrkaKuznecoff', 51262204, 52, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 8, 8, 300000111, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270001669, 'sppbots', 'DarkRider', 2118860, 25, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 26, 26, 300000030, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270001670, 'sppbots', 'blooddemon', 3949727, 29, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 4, 4, 300000008, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270001671, 'sppbots', 'DjMadBishop', 2884, 5, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 25, 25, 300000057, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270001672, 'sppbots', 'xXdashkaXx', 23180442, 44, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 40, 40, 0, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270001673, 'sppbots', 'LLIaypMaxoJIodoK', 51262204, 52, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 2, 2, 300000023, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270001674, 'sppbots', 'xXSweetTitanXx', 331864, 16, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 0, 0, 300000073, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270001675, 'sppbots', 'Wolf', 696376867, 74, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 90, 90, 300000141, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270001676, 'sppbots', 'stormhunter', 6038, 6, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 31, 31, 300000054, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270001677, 'sppbots', 'SeregaPupkin', 80700339, 56, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 117, 117, 0, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270001678, 'sppbots', 'IronDarkRogueRUS', 4555766, 30, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 39, 39, 300000088, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270001679, 'sppbots', 'GroznyjIrkaStar', 804219972, 75, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 117, 117, 300000031, 'PKK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270001680, 'sppbots', 'Pes', 346825235, 68, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 103, 103, 300000136, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270001681, 'sppbots', 'TolyanFang', 63907585, 54, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 40, 40, 300000016, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270001682, 'sppbots', '3adpoT6aToH3', 363, 3, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 0, 0, 300000056, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270001683, 'sppbots', 'caHeKMaster', 346825235, 68, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 93, 93, 0, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270001684, 'sppbots', 'cKBo3H9IKMyxoMop', 0, 1, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 25, 25, 300000011, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270001685, 'sppbots', 'ModnyjPasha', 45524865, 51, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 5, 5, 300000012, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270001686, 'sppbots', 'JIbIcbIuMast3r', 5981539, 32, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 22, 22, 300000092, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270001687, 'sppbots', 'KoJI6aca', 254327, 15, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 53, 53, 300000067, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270001688, 'sppbots', 'Blade', 101676, 12, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 10, 10, 300000010, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270001689, 'sppbots', 'SonnyjMonahPacan', 532692055, 72, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 117, 117, 300000143, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270001690, 'sppbots', 'Blo0dShadowTapok', 308441375, 67, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 90, 90, 300000026, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270001691, 'sppbots', 'Reaper', 254327, 15, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 25, 25, 300000061, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270001692, 'sppbots', 'MoHax', 3407873, 28, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 35, 35, 300000042, 'PKK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270001693, 'sppbots', 'Kent', 2925229, 27, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 11, 11, 300000084, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270001694, 'sppbots', 'King70', 57383682, 53, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 5, 5, 300000040, 'PKK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270001695, 'sppbots', 'MadDragonChesnok', 5231213, 31, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 4, 4, 0, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270001696, 'sppbots', 'JIoIIaTaTpaBKa', 114038008, 59, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 113, 113, 300000124, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270001697, 'sppbots', 'OldFireMage', 11066012, 37, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 1, 1, 300000026, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270001698, 'sppbots', 'SweetFang', 21007103, 43, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 40, 40, 300000110, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270001699, 'sppbots', 'xXTuMypcudopoBXx', 68, 2, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 18, 18, 300000052, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270001700, 'sppbots', 'NaglyjTanyukHA', 696376867, 74, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 102, 102, 300000150, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270001701, 'sppbots', '0ldSniper31RUS', 25524751, 45, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 16, 16, 300000107, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270001702, 'sppbots', 'shadowslayer43', 36806133, 49, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 2, 2, 300000111, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270001703, 'sppbots', 'smirnoff', 6038, 6, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 18, 18, 300000055, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270001704, 'sppbots', 'BlackLord', 45524865, 51, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 36, 36, 300000113, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270001705, 'sppbots', 'IIecAngel', 21007103, 43, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 40, 40, 0, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270001706, 'sppbots', 'RzhavyjTapokRUS', 2925229, 27, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 15, 15, 300000089, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270001707, 'sppbots', 'master', 1495531, 23, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 4, 4, 300000013, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270001708, 'sppbots', '4ecHoK', 1495531, 23, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 15, 15, 300000074, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270001709, 'sppbots', 'MaMKuHTepMuHaTop', 114038008, 59, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 110, 110, 300000009, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270001710, 'sppbots', 'Tapok2001', 1495531, 23, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 53, 53, 300000074, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270001711, 'sppbots', 'LyutyyKolyan', 212716741, 64, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 94, 94, 300000140, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270001712, 'sppbots', 'aHdpIOxaMedBedeB', 7729999, 34, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 26, 26, 300000100, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270001713, 'sppbots', 'IIeTpyxa3auceB', 15422851, 40, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 55, 55, 300000110, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270001714, 'sppbots', 'orypec', 1242536, 22, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 11, 11, 300000077, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270001715, 'sppbots', '3JIouToJIuK', 675590, 19, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 0, 0, 300000025, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270001716, 'sppbots', 'TolikKozlov', 13844879, 39, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 54, 54, 300000099, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270001717, 'sppbots', 'vovan', 126509030, 60, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 90, 90, 300000018, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270001718, 'sppbots', 'ToporXomyak', 675590, 19, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 0, 0, 0, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270001719, 'sppbots', 'DarkDream', 4555766, 30, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 7, 7, 0, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270001720, 'sppbots', 'ModHbIucaHeK', 189363788, 63, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 110, 110, 300000126, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270001721, 'sppbots', 'RzhavyyShaurma', 804219972, 75, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 108, 108, 0, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270001722, 'sppbots', 'BlackBlo0dDream', 68, 2, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 0, 0, 300000006, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270001723, 'sppbots', 'zheKa', 13844879, 39, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 39, 39, 300000092, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270001724, 'sppbots', 'WildCrazyArrow', 2497059, 26, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 35, 35, 0, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270001725, 'sppbots', '4yLLIIIaH4ecHoK', 40153995, 50, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 8, 8, 300000115, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270001726, 'sppbots', 'KholodokBelyash', 7729999, 34, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 15, 15, 300000094, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270001727, 'sppbots', 'KhitryyUbivator', 45524865, 51, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 40, 40, 300000116, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270001728, 'sppbots', 'WildDeath', 30764519, 47, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 8, 8, 300000109, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270001729, 'sppbots', 'BorzyyPetruxa', 191452, 14, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 10, 10, 300000062, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270001730, 'sppbots', 'caH9IBoJIKoB', 12395149, 38, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 7, 7, 300000100, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270001731, 'sppbots', 'ShadowLoneDragon', 31378, 9, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 25, 25, 300000064, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270001732, 'sppbots', 'xoJIodoKcoced03', 1495531, 23, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 1, 1, 300000043, 'PKK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270001733, 'sppbots', 'MamkinPashaRider', 6812472, 33, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 15, 15, 300000096, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270001734, 'sppbots', 'RzhavyyKiryuxa', 1786365, 24, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 26, 26, 300000082, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270001735, 'sppbots', 'xXStormLORDXx', 5231213, 31, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 54, 54, 300000002, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270001736, 'sppbots', 'HaTaxaSniper', 51262204, 52, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 46, 46, 300000118, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270001737, 'sppbots', 'zheKaBoJIKoB', 2118860, 25, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 15, 15, 300000085, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270001738, 'sppbots', 'TuxuuduMaH', 19423, 8, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 18, 18, 300000003, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270001739, 'sppbots', '3v1lStormRogue', 19423, 8, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 18, 18, 300000068, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270001740, 'sppbots', 'MCPasHA95', 2884, 5, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 0, 0, 300000055, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270001741, 'sppbots', 'zheKacudopoB94', 9850111, 36, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 15, 15, 300000099, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270001742, 'sppbots', 'Tapok', 48229, 10, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 38, 38, 300000061, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270001743, 'sppbots', 'IronDream', 21007103, 43, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 46, 46, 300000108, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270001744, 'sppbots', 'DarkBlo0dHunter', 8740372, 35, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 35, 35, 0, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270001745, 'sppbots', 'FrostXomYAK', 1495531, 23, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 1, 1, 300000029, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270001746, 'sppbots', 'ZadrotKrasavchIK', 3407873, 28, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 22, 22, 300000047, 'PKK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270001747, 'sppbots', 'CrazyHomyak', 363, 3, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 10, 10, 300000053, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270001748, 'sppbots', 'ugarnyydimon', 167243291, 62, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 103, 103, 300000006, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270001749, 'sppbots', 'Mrsilentking', 3949727, 29, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 39, 39, 300000028, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270001750, 'sppbots', 'HaTaxaBoJIKoBRUS', 33679907, 48, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 5, 5, 0, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270001751, 'sppbots', 'MC6op3bIuduMaH', 835854, 20, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 39, 39, 300000071, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270001752, 'sppbots', 'NightMonk', 606319094, 73, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 93, 93, 0, 'PKK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270001753, 'sppbots', 'MonaxMedoed', 5981539, 32, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 35, 35, 300000091, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270001754, 'sppbots', 'W1ldSoul', 23180442, 44, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 24, 24, 300000017, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270001755, 'sppbots', 'StormDemon', 5231213, 31, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 39, 39, 300000021, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270001756, 'sppbots', 'LoneRaven', 532692055, 72, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 92, 92, 300000147, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270001757, 'sppbots', '6op3bIuIIeTpoBu4', 21007103, 43, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 24, 24, 300000109, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270001758, 'sppbots', 'KupIIu4KoMIIoT', 1023775, 21, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 26, 26, 300000076, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270001759, 'sppbots', 'timur', 2497059, 26, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 22, 22, 300000083, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270001760, 'sppbots', 'GhostMonakh', 13844879, 39, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 39, 39, 300000098, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270001761, 'sppbots', 'KabanXomyak', 9850111, 36, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 22, 22, 300000098, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270001762, 'sppbots', 'BaJIeHoKKnight', 9850111, 36, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 11, 11, 300000098, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270001763, 'sppbots', 'DarkDreamRUS', 2118860, 25, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 4, 4, 0, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270001764, 'sppbots', 'Fedor', 15422851, 40, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 8, 8, 300000102, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270001765, 'sppbots', '6odpbIuMaLLIKa7', 9850111, 36, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 45, 45, 300000004, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270001766, 'sppbots', 'TikhiyChitER', 12395149, 38, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 7, 7, 300000016, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270001767, 'sppbots', 'xXSwiftMonkXx', 12395149, 38, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 35, 35, 300000091, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270001768, 'sppbots', 'SonnyyMashka', 28049509, 46, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 24, 24, 0, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270001769, 'sppbots', 'Kot04', 539995, 18, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 53, 53, 300000076, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270001770, 'sppbots', 'Lenka23', 363, 3, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 0, 0, 300000057, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270001771, 'sppbots', 'KoJI6acaTaIIoK96', 3949727, 29, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 35, 35, 300000088, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270001772, 'sppbots', 'ShashlykSemki97', 28049509, 46, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 16, 16, 300000107, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270001773, 'sppbots', 'GrimKiller', 146307211, 61, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 117, 117, 300000006, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270001774, 'sppbots', 'TaHKucT', 363, 3, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 0, 0, 300000055, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270001775, 'sppbots', 'ChetkiyMage', 1786365, 24, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 7, 7, 300000012, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270001776, 'sppbots', 'Karatel1994', 71201, 11, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 25, 25, 300000063, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270001777, 'sppbots', 'PashaMedvedEV', 33679907, 48, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 24, 24, 300000112, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270001778, 'sppbots', 'LyutyjAndryuxa', 6038, 6, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 0, 0, 300000051, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270001779, 'sppbots', 'MeJIKuuKoTTaIIoK', 1023775, 21, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 35, 35, 0, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270001780, 'sppbots', 'Titan83', 45524865, 51, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 27, 27, 300000119, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270001781, 'sppbots', 'Medoed94', 19423, 8, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 38, 38, 300000022, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270001782, 'sppbots', 'Leha', 7729999, 34, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 1, 1, 300000100, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270001783, 'sppbots', 'IronEvilStar', 0, 1, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 10, 10, 300000054, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270001784, 'sppbots', 'SanyaSidorov', 5231213, 31, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 45, 45, 300000019, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270001785, 'sppbots', 'Dem0n1992', 191452, 14, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 10, 10, 300000005, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270001786, 'sppbots', 'BeshenyjMaster', 931275828, 76, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 113, 113, 300000143, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270001787, 'sppbots', 'SosedPodezd7', 126509030, 60, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 103, 103, 0, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270001788, 'sppbots', 'yrapHbIuduMoH54', 8740372, 35, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 7, 7, 300000098, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270001789, 'sppbots', 'NightIce2003', 48229, 10, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 53, 53, 300000069, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270001790, 'sppbots', 'cTeIIaHSoul', 126509030, 60, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 108, 108, 300000129, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270001791, 'sppbots', 'xXGrimFang1994Xx', 6812472, 33, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 22, 22, 300000023, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270001792, 'sppbots', 'BlackBi5h0p70', 532692055, 72, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 93, 93, 0, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270001793, 'sppbots', 'Vovchik6', 1023775, 21, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 53, 53, 300000079, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270001794, 'sppbots', 'DobryyKolyan', 68, 2, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 25, 25, 300000021, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270001795, 'sppbots', 'CrazyKingPelmen', 2884, 5, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 10, 10, 0, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270001796, 'sppbots', 'KoTKoJI6aca', 1168, 4, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 31, 31, 0, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270001797, 'sppbots', 'duMoHcudopoB85', 696376867, 74, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 102, 102, 300000005, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270001798, 'sppbots', 'wildarrow', 387197529, 69, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 92, 92, 300000133, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270001799, 'sppbots', 'IronRaven', 141192, 13, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 0, 0, 300000065, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270001800, 'sppbots', 'DjTapok', 13844879, 39, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 26, 26, 300000099, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270001801, 'sppbots', 'MadMage', 33679907, 48, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 8, 8, 300000118, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270001802, 'sppbots', 'ruslan', 40153995, 50, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 16, 16, 300000003, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270001803, 'sppbots', 'SosedShashlyk8', 2925229, 27, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 1, 1, 300000089, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270001804, 'sppbots', 'OgurecKefir', 606319094, 73, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 90, 90, 300000142, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270001805, 'sppbots', 'BloodHunterFang', 237351413, 65, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 93, 93, 300000133, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270001806, 'sppbots', 'StormSlayer69', 387197529, 69, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 113, 113, 300000033, 'PKK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270001807, 'sppbots', 'IIpocToMaKc', 835854, 20, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 53, 53, 300000078, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270001808, 'sppbots', 'JIIOTbIuReaper', 1495531, 23, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 45, 45, 300000080, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270001809, 'sppbots', 'RealnyjTanyuxa', 2925229, 27, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 15, 15, 0, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270001810, 'sppbots', 'OldWolf06', 835854, 20, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 35, 35, 300000080, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270001811, 'sppbots', 'cTapbIuTuMyp82', 675590, 19, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 44, 44, 300000077, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270001812, 'sppbots', 'IronMonk', 189363788, 63, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 113, 113, 0, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270001813, 'sppbots', '4eTKuuduMoH83', 114038008, 59, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 97, 97, 300000047, 'PKK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270001814, 'sppbots', 'KupIIu4', 254327, 15, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 18, 18, 0, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270001815, 'sppbots', 'GhostPelmen', 931275828, 76, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 113, 113, 300000029, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270001816, 'sppbots', 'OgurecSosed', 36806133, 49, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 5, 5, 300000029, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270001817, 'sppbots', 'xXuBaHoB05Xx', 346825235, 68, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 113, 113, 300000133, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270001818, 'sppbots', 'ModnyjRuslan', 28049509, 46, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 27, 27, 300000104, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270001819, 'sppbots', 'GhostDemON', 57383682, 53, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 36, 36, 300000007, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270001820, 'sppbots', 'SonnyjGarazh', 9850111, 36, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 39, 39, 300000004, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270001821, 'sppbots', 'xXShadowTitanXx', 429632402, 70, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 103, 103, 300000021, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270001822, 'sppbots', 'TerminatorMedoed', 63907585, 54, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 24, 24, 300000039, 'PKK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270001823, 'sppbots', 'Mrdo6pbIudaLLIKa', 30764519, 47, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 5, 5, 300000025, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270001824, 'sppbots', 'MashkaPupkin', 191452, 14, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 31, 31, 300000070, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270001825, 'sppbots', 'DjSemkiBlade', 91162131, 57, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 110, 110, 300000125, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270001826, 'sppbots', 'silentking94', 40153995, 50, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 9, 9, 300000115, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270001827, 'sppbots', 'PalychSmirnoff', 606319094, 73, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 94, 94, 300000143, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270001828, 'sppbots', '4yLLIIIaH95', 331864, 16, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 0, 0, 300000072, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270001829, 'sppbots', 'MaKcMedBedeB7', 1023775, 21, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 11, 11, 300000079, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270001830, 'sppbots', 'swiftf1re49', 346825235, 68, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 113, 113, 0, 'PKK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270001831, 'sppbots', 'HaTaxaBoJIKoB', 13844879, 39, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 39, 39, 300000092, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270001832, 'sppbots', 'ShashlykGnom', 191452, 14, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 25, 25, 0, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270001833, 'sppbots', 'HaTaxaKy3HecoB', 15422851, 40, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 24, 24, 300000106, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270001834, 'sppbots', 'DjTimurKuznecov', 1495531, 23, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 11, 11, 300000076, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270001835, 'sppbots', 'kiryuxaivanow', 1242536, 22, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 22, 22, 300000077, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270001836, 'sppbots', 'LysyyDimanZaycev', 1786365, 24, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 7, 7, 300000039, 'PKK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270001837, 'sppbots', 'Grisha', 2118860, 25, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 22, 22, 300000082, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270001838, 'sppbots', 'Diman1998', 606319094, 73, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 108, 108, 300000142, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270001839, 'sppbots', 'vovchik98', 68, 2, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 0, 0, 300000057, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270001840, 'sppbots', 'NightDeaTH04', 91162131, 57, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 113, 113, 300000128, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270001841, 'sppbots', 'BomzhTerminator', 19423, 8, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 0, 0, 300000065, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270001842, 'sppbots', 'duMaH', 11287, 7, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 0, 0, 300000057, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270001843, 'sppbots', 'Haru6aTop', 2118860, 25, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 22, 22, 300000087, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270001844, 'sppbots', 'cTacIIyIIKuH5', 141192, 13, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 10, 10, 300000064, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270001845, 'sppbots', 'staryjtopor', 212716741, 64, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 113, 113, 300000138, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270001846, 'sppbots', 'Ice', 0, 1, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 10, 10, 300000057, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270001847, 'sppbots', 'duKuuIOpecLord', 80700339, 56, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 102, 102, 300000042, 'PKK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270001848, 'sppbots', 'SeregaPetroffRUS', 2118860, 25, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 7, 7, 300000084, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270001849, 'sppbots', 'TrueSniper', 51262204, 52, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 55, 55, 300000117, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270001850, 'sppbots', 'witekr4v3n', 6812472, 33, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 35, 35, 300000096, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270001851, 'sppbots', 'ChesnokPacan', 71201, 11, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 18, 18, 300000067, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270001852, 'sppbots', 'BloodKnightRUS', 28049509, 46, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 2, 2, 300000104, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270001853, 'sppbots', 'BlackArrow', 19423, 8, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 10, 10, 300000003, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270001854, 'sppbots', 'SkvoznyakBaton', 189363788, 63, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 90, 90, 300000022, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270001855, 'sppbots', 'dep3KuuHunter02', 308441375, 67, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 94, 94, 300000027, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270001856, 'sppbots', 'OlegSmirnov', 5981539, 32, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 35, 35, 300000092, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270001857, 'sppbots', 'Sanek1989', 429632402, 70, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 93, 93, 0, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270001858, 'sppbots', 'KrasavchikTopor', 346825235, 68, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 97, 97, 300000011, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270001859, 'sppbots', 'duMoH', 141192, 13, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 10, 10, 300000066, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270001860, 'sppbots', 'SweetBelyash3', 70852742, 55, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 103, 103, 300000009, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270001861, 'sppbots', 'MadWolf98', 15422851, 40, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 24, 24, 300000005, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270001862, 'sppbots', 'cTaccudopoB2', 1242536, 22, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 1, 1, 300000049, 'PKK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270001863, 'sppbots', 'ceperaWolf', 167243291, 62, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 103, 103, 300000122, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270001864, 'sppbots', 'CrazyBl4ckReapER', 387197529, 69, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 88, 88, 300000138, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270001865, 'sppbots', 'SemkiHolodok', 835854, 20, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 26, 26, 300000036, 'PKK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270001866, 'sppbots', 'MadBlade88RUS', 48229, 10, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 18, 18, 300000007, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270001867, 'sppbots', 'Hy6', 606319094, 73, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 108, 108, 300000148, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270001868, 'sppbots', 'do6pbIuToJIuK', 254327, 15, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 0, 0, 300000062, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270001869, 'sppbots', 'duKuucaH9I42', 33679907, 48, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 36, 36, 300000115, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270001870, 'sppbots', 'WildHunter24', 28049509, 46, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 46, 46, 300000101, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270001871, 'sppbots', 'ceMKurapazh7', 12395149, 38, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 45, 45, 300000094, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270001872, 'sppbots', 'KpuBoucoced92', 426284, 17, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 31, 31, 300000079, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270001873, 'sppbots', 'BlackDemonDragon', 70852742, 55, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 113, 113, 300000111, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270001874, 'sppbots', 'FrostLord', 363, 3, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 0, 0, 300000051, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270001875, 'sppbots', 'zadrotfire88', 429632402, 70, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 113, 113, 0, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270001876, 'sppbots', 'JIIOTbIuIIode3d', 13844879, 39, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 54, 54, 300000093, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270001877, 'sppbots', 'IronTravka', 63907585, 54, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 12, 12, 300000116, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270001878, 'sppbots', 'tapokchushpan', 363, 3, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 18, 18, 300000060, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270001879, 'sppbots', 'EvilMage', 2497059, 26, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 11, 11, 0, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270001880, 'sppbots', 'GrimFang', 363, 3, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 0, 0, 300000020, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270001881, 'sppbots', 'Vedmak20', 931275828, 76, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 88, 88, 0, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270001882, 'sppbots', 'BuTeK3auceB', 308441375, 67, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 108, 108, 300000046, 'PKK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270001883, 'sppbots', 'CrazyAnGEL', 0, 1, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 18, 18, 300000059, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270001884, 'sppbots', 'Sw3etKillerMonk', 70852742, 55, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 90, 90, 300000118, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270001885, 'sppbots', 'MaLLIKa3auceB', 15422851, 40, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 55, 55, 300000108, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270001886, 'sppbots', 'coHHbIuMaKc', 6038, 6, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 44, 44, 300000046, 'PKK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270001887, 'sppbots', 'MrMelkiySemki', 2118860, 25, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 54, 54, 300000086, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270001888, 'sppbots', 'TaHKucTKing', 141192, 13, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 10, 10, 300000067, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270001889, 'sppbots', 'coHHbIucTeIIaH', 474205751, 71, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 97, 97, 300000135, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270001890, 'sppbots', 'IIpocTo6oMzh', 1168, 4, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 18, 18, 300000056, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270001891, 'sppbots', 'Bac9IKy3HecoB', 15422851, 40, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 46, 46, 300000109, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270001892, 'sppbots', 'StormSuhar', 4555766, 30, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 39, 39, 300000009, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270001893, 'sppbots', '4uTepcyxapb', 0, 1, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 0, 0, 300000041, 'PKK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270001894, 'sppbots', 'BlackICE', 48229, 10, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 0, 0, 300000046, 'PKK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270001895, 'sppbots', 'IIaJIbI4Fang', 102265326, 58, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 94, 94, 300000126, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270001896, 'sppbots', 'pzhaBbIuHacT9I', 25524751, 45, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 27, 27, 0, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270001897, 'sppbots', 'IOpecIIeTpoB', 23180442, 44, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 16, 16, 300000020, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270001898, 'sppbots', 'KoJI9IHcMupHoB', 23180442, 44, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 16, 16, 300000108, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270001899, 'sppbots', 'duMaHBoJIKoB', 2925229, 27, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 11, 11, 300000011, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270001900, 'sppbots', 'DikiyTanyuxa', 12395149, 38, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 1, 1, 300000091, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270001901, 'sppbots', 'xXBishopXx', 346825235, 68, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 88, 88, 300000134, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270001902, 'sppbots', 'tolik', 254327, 15, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 38, 38, 300000067, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270001903, 'sppbots', 'Petroff', 1495531, 23, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 35, 35, 0, 'PKK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270001904, 'sppbots', 'rpuLLIaKy3HecoB', 18995573, 42, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 40, 40, 300000104, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270001905, 'sppbots', 'MadAngel07', 141192, 13, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 0, 0, 300000043, 'PKK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270001906, 'sppbots', 'ChetkiyKn1ght', 1168, 4, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 0, 0, 300000044, 'PKK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270001907, 'sppbots', 'fedopKo3JIoB5', 2497059, 26, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 7, 7, 300000034, 'PKK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270001908, 'sppbots', 'GnomBatya82', 1023775, 21, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 7, 7, 300000074, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270001909, 'sppbots', '6eJI9ILLIcyxapb', 40153995, 50, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 27, 27, 300000120, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270001910, 'sppbots', 'yrapHbIucaHeK86', 48229, 10, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 31, 31, 300000068, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270001911, 'sppbots', 'MrDarkBlad301', 539995, 18, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 10, 10, 300000080, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270001912, 'sppbots', 'ShustryyYurec90', 3949727, 29, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 7, 7, 300000082, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270001913, 'sppbots', 'Hunter91', 48229, 10, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 44, 44, 300000067, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270001914, 'sppbots', 'StasKozloff89', 45524865, 51, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 46, 46, 300000012, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270001915, 'sppbots', 'pycJIaHuBaHoB', 25524751, 45, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 2, 2, 300000104, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270001916, 'sppbots', '3JIoupycJIaHLord', 696376867, 74, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 103, 103, 0, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270001917, 'sppbots', 'duKuuIIec', 1495531, 23, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 1, 1, 300000072, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270001918, 'sppbots', 'Swift5l4yer2002', 167243291, 62, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 110, 110, 300000023, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270001919, 'sppbots', 'WildM45ter67', 6038, 6, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 0, 0, 300000051, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270001920, 'sppbots', 'rpuLLIaKo3JIoB', 1495531, 23, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 53, 53, 300000029, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270001921, 'sppbots', 'KirpichSosed2001', 189363788, 63, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 113, 113, 300000024, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270001922, 'sppbots', 'SanyaHunter1996', 8740372, 35, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 4, 4, 300000095, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270001923, 'sppbots', 'StormDream', 363, 3, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 0, 0, 300000033, 'PKK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270001924, 'sppbots', 'DobryySvetka86', 5981539, 32, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 15, 15, 300000021, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270001925, 'sppbots', 'DobryyMedoedMage', 2925229, 27, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 7, 7, 300000023, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270001926, 'sppbots', 'SwiftStarDr3am24', 2925229, 27, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 39, 39, 300000090, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270001927, 'sppbots', 'Mage', 11066012, 37, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 1, 1, 300000098, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270001928, 'sppbots', 'Ice1990', 426284, 17, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 0, 0, 300000073, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270001929, 'sppbots', 'Fro5tSlayer2', 70852742, 55, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 117, 117, 300000117, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270001930, 'sppbots', 'xXDream93Xx', 1495531, 23, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 7, 7, 300000074, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270001931, 'sppbots', 'KpacaB4uKCl4w', 835854, 20, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 15, 15, 300000077, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270001932, 'sppbots', 'kirpich', 1023775, 21, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 53, 53, 300000079, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270001933, 'sppbots', 'MrBorzyyChiter', 254327, 15, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 0, 0, 300000020, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270001934, 'sppbots', 'xoM9IK4yLLIIIaH', 31378, 9, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 53, 53, 300000067, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270001935, 'sppbots', 'peaJIbHbIuMonk', 1242536, 22, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 11, 11, 300000080, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270001936, 'sppbots', 'TapokVedmak', 141192, 13, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 0, 0, 300000067, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270001937, 'sppbots', 'cudopoB', 70852742, 55, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 94, 94, 300000118, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270001938, 'sppbots', 'Sanek79', 254327, 15, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 0, 0, 300000067, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270001939, 'sppbots', 'CrazyGrimKiller', 23180442, 44, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 27, 27, 300000108, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270001940, 'sppbots', 'peaJIbHbIucyxapb', 8740372, 35, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 22, 22, 300000023, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270001941, 'sppbots', 'yHbIJIbIuMaLLIKa', 13844879, 39, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 35, 35, 300000098, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270001942, 'sppbots', 'frostdeath', 63907585, 54, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 16, 16, 300000118, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270001943, 'sppbots', 'duMoHcMupHoB90', 68, 2, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 10, 10, 300000060, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270001944, 'sppbots', 'VasyaKozlov', 141192, 13, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 0, 0, 300000037, 'PKK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270001945, 'sppbots', 'golodnyjmast3r', 212716741, 64, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 113, 113, 300000132, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270001946, 'sppbots', 'BoBaH2002', 51262204, 52, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 2, 2, 300000114, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270001947, 'sppbots', 'MelkijPasha06', 6812472, 33, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 26, 26, 300000100, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270001948, 'sppbots', 'UgarnyjPES', 11287, 7, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 10, 10, 0, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270001949, 'sppbots', 'SonnyyChiter', 363, 3, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 38, 38, 300000051, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270001950, 'sppbots', 'do6pbIuxoJIodoK', 101676, 12, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 18, 18, 0, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270001951, 'sppbots', 'Sw1ftGhostM0nk01', 2925229, 27, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 7, 7, 300000041, 'PKK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270001952, 'sppbots', 'BloodAngel', 63907585, 54, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 2, 2, 300000111, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270001953, 'sppbots', 'derzkiypodezd', 25524751, 45, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 2, 2, 300000024, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270001954, 'sppbots', 'Cr4zyBlade8', 31378, 9, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 0, 0, 300000070, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270001955, 'sppbots', 'cTeIIaHuBaHoB', 13844879, 39, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 15, 15, 300000095, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270001956, 'sppbots', 'TuxuucaHeK', 91162131, 57, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 88, 88, 300000028, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270001957, 'sppbots', 'StormLord', 2925229, 27, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 11, 11, 300000086, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270001958, 'sppbots', 'shadowrider', 45524865, 51, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 46, 46, 300000111, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270001959, 'sppbots', 'BodryyLexaZajcev', 11287, 7, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 10, 10, 300000057, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270001960, 'sppbots', 'IOpecKy3HecoB', 5231213, 31, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 11, 11, 300000088, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270001961, 'sppbots', 'MaMKuHcaH9IRUS', 12395149, 38, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 11, 11, 300000029, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270001962, 'sppbots', 'Mr4yMaMyxoMop', 30764519, 47, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 12, 12, 300000103, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270001963, 'sppbots', 'PelmenNagibator', 45524865, 51, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 12, 12, 300000118, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270001964, 'sppbots', 'SweetHunter', 331864, 16, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 10, 10, 300000028, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270001965, 'sppbots', 'yrapHbIuFire', 51262204, 52, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 27, 27, 300000113, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270001966, 'sppbots', '6eLLIeHbIu6apcyK', 6038, 6, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 0, 0, 300000060, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270001967, 'sppbots', 'uBaHoB', 254327, 15, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 10, 10, 300000068, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270001968, 'sppbots', 'SwiftFangBishop', 4555766, 30, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 4, 4, 0, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270001969, 'sppbots', 'DjSwiftMonk', 57383682, 53, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 36, 36, 300000116, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270001970, 'sppbots', 'SweetLopata44RUS', 696376867, 74, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 117, 117, 0, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270001971, 'sppbots', 'Bi5hop', 21007103, 43, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 46, 46, 300000110, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270001972, 'sppbots', 'OldValenok', 11287, 7, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 38, 38, 300000056, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270001973, 'sppbots', 'BratokGopnik', 18995573, 42, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 9, 9, 300000110, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270001974, 'sppbots', 'BodryyNataXA', 346825235, 68, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 94, 94, 300000135, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270001975, 'sppbots', 'WovchikPetrov', 2118860, 25, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 35, 35, 300000081, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270001976, 'sppbots', '51lentPodezd', 1168, 4, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 31, 31, 0, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270001977, 'sppbots', 'TaHKucT4yLLIIIaH', 19423, 8, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 0, 0, 300000014, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270001978, 'sppbots', '4uTep6apcyK', 31378, 9, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 31, 31, 300000069, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270001979, 'sppbots', 'MaMKuHHacT9I', 539995, 18, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 0, 0, 300000003, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270001980, 'sppbots', 'Bratok4', 539995, 18, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 25, 25, 300000075, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270001981, 'sppbots', 'PodezdPes', 17137002, 41, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 46, 46, 300000105, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270001982, 'sppbots', '6eJI9ILLIMoHax56', 28049509, 46, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 27, 27, 300000104, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270001983, 'sppbots', 'oJIer', 1023775, 21, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 1, 1, 300000015, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270001984, 'sppbots', '6oMzhFire', 1023775, 21, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 11, 11, 300000072, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270001985, 'sppbots', 'OldDemon99', 363, 3, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 53, 53, 300000041, 'PKK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270001986, 'sppbots', 'SilentReaper93', 70852742, 55, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 108, 108, 300000117, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270001987, 'sppbots', 'EvilArrow', 675590, 19, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 53, 53, 300000021, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270001988, 'sppbots', 'ChiterKirpich13', 6812472, 33, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 54, 54, 300000095, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270001989, 'sppbots', 'DjcTeIIaHIIeTpoB', 2925229, 27, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 7, 7, 300000085, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270001990, 'sppbots', 'R4ven9', 835854, 20, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 22, 22, 300000017, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270001991, 'sppbots', 'Fire47', 9850111, 36, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 54, 54, 300000009, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270001992, 'sppbots', 'EvilMage84', 474205751, 71, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 94, 94, 300000135, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270001993, 'sppbots', 'DjKapaTeJIb', 28049509, 46, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 55, 55, 300000110, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270001994, 'sppbots', 'LLIycTpbIucaHeK', 68, 2, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 53, 53, 0, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270001995, 'sppbots', 'MCSwiftCl4w95', 387197529, 69, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 110, 110, 300000135, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270001996, 'sppbots', 'LyutyyBratok10', 237351413, 65, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 102, 102, 0, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270001997, 'sppbots', 'ShadowTit4n89RUS', 63907585, 54, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 9, 9, 0, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270001998, 'sppbots', 'Muxomor', 429632402, 70, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 102, 102, 300000003, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270001999, 'sppbots', 'BloodAngel1988', 11287, 7, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 0, 0, 300000057, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270002000, 'sppbots', 'IronIce', 101676, 12, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 25, 25, 300000014, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270002001, 'sppbots', 'DarkSoul54', 11287, 7, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 0, 0, 300000036, 'PKK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270002002, 'sppbots', 'GhostCl4wMaster', 8740372, 35, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 26, 26, 300000098, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270002003, 'sppbots', 'StormMaster9', 191452, 14, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 25, 25, 0, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270002004, 'sppbots', 'ToIIopIIec', 539995, 18, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 10, 10, 300000017, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270002005, 'sppbots', 'DjPetrovichRiDER', 271973532, 66, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 97, 97, 300000029, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270002006, 'sppbots', 'PetrOFF1', 387197529, 69, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 92, 92, 300000133, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270002007, 'sppbots', 'xoJIodoKMyxoMop', 835854, 20, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 26, 26, 300000077, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270002008, 'sppbots', 'NightOldF1re6', 5981539, 32, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 35, 35, 300000096, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270002009, 'sppbots', 'MaLLIKa3auceB81', 3407873, 28, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 54, 54, 300000087, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270002010, 'sppbots', 'xoJIodoK4uTep', 387197529, 69, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 117, 117, 300000138, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270002011, 'sppbots', 'BodryyDED', 11287, 7, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 0, 0, 300000060, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270002012, 'sppbots', 'KoJI9IHcudopoB', 9850111, 36, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 54, 54, 300000092, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270002013, 'sppbots', 'MadDragon', 3949727, 29, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 11, 11, 300000083, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270002014, 'sppbots', 'yHbIJIbIuHacT9I', 387197529, 69, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 102, 102, 0, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270002015, 'sppbots', 'TapokValenok85', 331864, 16, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 18, 18, 300000022, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270002016, 'sppbots', 'EzhikSuhar', 835854, 20, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 15, 15, 300000072, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270002017, 'sppbots', 'ZlojToLIK', 25524751, 45, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 12, 12, 300000007, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270002018, 'sppbots', 'GopnikXoloDOK', 931275828, 76, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 108, 108, 300000142, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270002019, 'sppbots', 'PacanGnom', 31378, 9, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 0, 0, 300000031, 'PKK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270002020, 'sppbots', 'NightSlayer', 1786365, 24, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 39, 39, 300000013, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270002021, 'sppbots', 'GopnikSukharRUS', 237351413, 65, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 113, 113, 300000135, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270002022, 'sppbots', 'GrimMonk', 51262204, 52, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 24, 24, 300000042, 'PKK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270002023, 'sppbots', 'RealnyjWolf', 11287, 7, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 44, 44, 300000060, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270002024, 'sppbots', 'LysyyEzhik31', 387197529, 69, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 108, 108, 300000135, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270002025, 'sppbots', 'VasyaVolkov', 2884, 5, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 25, 25, 300000023, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270002026, 'sppbots', '5t0rmGhostTitan', 1786365, 24, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 35, 35, 300000085, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270002027, 'sppbots', 'TrueMonk', 126509030, 60, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 94, 94, 300000128, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270002028, 'sppbots', 'DerzkiyDed', 5981539, 32, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 4, 4, 300000026, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270002029, 'sppbots', 'NightWildTitan91', 33679907, 48, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 46, 46, 300000119, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270002030, 'sppbots', 'TolyanIvanoff89', 48229, 10, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 10, 10, 300000041, 'PKK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270002031, 'sppbots', '6eLLIeHbIu3adpoT', 474205751, 71, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 113, 113, 300000132, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270002032, 'sppbots', 'OldL0rd87', 346825235, 68, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 110, 110, 0, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270002033, 'sppbots', 'do6pbIuIIaLLIa', 71201, 11, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 53, 53, 300000064, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270002034, 'sppbots', 'KoMIIoT', 23180442, 44, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 9, 9, 300000047, 'PKK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270002035, 'sppbots', 'RzhavyjSuxarLord', 28049509, 46, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 8, 8, 300000103, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270002036, 'sppbots', 'upKacMupHoB', 189363788, 63, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 102, 102, 0, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270002037, 'sppbots', 'MaKcMedBedeB07', 804219972, 75, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 108, 108, 300000141, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270002038, 'sppbots', 'seregadeath', 23180442, 44, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 16, 16, 300000109, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270002039, 'sppbots', 'MapMeJIad', 426284, 17, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 10, 10, 300000078, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270002040, 'sppbots', 'StormMonk99', 80700339, 56, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 110, 110, 300000129, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270002041, 'sppbots', 'MadReaper', 5981539, 32, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 11, 11, 300000100, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270002042, 'sppbots', 'GhostDragon7', 31378, 9, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 0, 0, 300000070, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270002043, 'sppbots', 'RealnyjChushpAN', 931275828, 76, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 88, 88, 300000147, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270002044, 'sppbots', 'timurzaycew', 5231213, 31, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 39, 39, 300000010, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270002045, 'sppbots', 'Fang2001', 28049509, 46, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 16, 16, 300000110, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270002046, 'sppbots', 'SvetkaSmirnoff', 4555766, 30, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 11, 11, 300000084, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270002047, 'sppbots', 'rHoMrapazh9', 271973532, 66, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 103, 103, 300000131, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270002048, 'sppbots', 'ChushpanKirpich', 33679907, 48, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 40, 40, 0, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270002049, 'sppbots', 'dep3KuuKiller', 429632402, 70, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 110, 110, 300000140, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270002050, 'sppbots', 'DarkTitan', 191452, 14, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 25, 25, 300000069, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270002051, 'sppbots', 'Podezd', 57383682, 53, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 12, 12, 300000112, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270002052, 'sppbots', 'GroznyjStepan', 1495531, 23, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 26, 26, 300000001, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270002053, 'sppbots', 'daLLIKaBoJIKoB', 1168, 4, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 0, 0, 300000055, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270002054, 'sppbots', 'FrostAng3l76', 426284, 17, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 0, 0, 0, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270002055, 'sppbots', 'TepMuHaTop27', 429632402, 70, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 97, 97, 300000131, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270002056, 'sppbots', 'ChushpanBratok', 1242536, 22, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 45, 45, 0, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270002057, 'sppbots', 'KolbasaBishop88', 6038, 6, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 31, 31, 300000057, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270002058, 'sppbots', 'MrStas', 33679907, 48, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 5, 5, 0, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270002059, 'sppbots', 'NagibatorBatya', 33679907, 48, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 40, 40, 300000118, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270002060, 'sppbots', 'rapazhKapaTeJIb', 36806133, 49, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 2, 2, 0, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270002061, 'sppbots', 'lyutyjlenkaangel', 101676, 12, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 10, 10, 300000061, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270002062, 'sppbots', 'BatyaVolk2', 7729999, 34, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 1, 1, 300000099, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270002063, 'sppbots', 'LyutyjMedoed', 1023775, 21, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 7, 7, 300000071, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270002064, 'sppbots', 'ShadowKing', 71201, 11, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 53, 53, 300000039, 'PKK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270002065, 'sppbots', 'OldTopor', 5231213, 31, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 54, 54, 300000012, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270002066, 'sppbots', 'ProstoBarsuk', 6038, 6, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 44, 44, 0, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270002067, 'sppbots', 'BaJIeHoK', 2118860, 25, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 54, 54, 300000084, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270002068, 'sppbots', 'pupkin94', 835854, 20, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 11, 11, 300000071, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270002069, 'sppbots', 'xX1ronDemon8Xx', 835854, 20, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 39, 39, 300000036, 'PKK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270002070, 'sppbots', 'TravkaLopata', 80700339, 56, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 117, 117, 0, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270002071, 'sppbots', 'KabanHunt3r', 167243291, 62, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 110, 110, 300000129, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270002072, 'sppbots', '0ldLord8', 346825235, 68, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 94, 94, 300000134, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270002073, 'sppbots', 'SwiftRidER', 191452, 14, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 0, 0, 300000061, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270002074, 'sppbots', 'LyutyyPodezd', 2925229, 27, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 35, 35, 300000083, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270002075, 'sppbots', 'ShustryyPalych', 33679907, 48, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 5, 5, 300000029, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270002076, 'sppbots', 'BlackWolf', 102265326, 58, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 110, 110, 300000129, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270002077, 'sppbots', 'MamkinChuma7', 191452, 14, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 10, 10, 0, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270002078, 'sppbots', 'BatonArrow', 11287, 7, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 0, 0, 300000052, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270002079, 'sppbots', 'StormTitan', 19423, 8, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 10, 10, 300000062, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270002080, 'sppbots', 'SilentSoul', 2925229, 27, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 1, 1, 300000089, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270002081, 'sppbots', 'OldHunter1996', 146307211, 61, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 108, 108, 300000123, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270002082, 'sppbots', 'silentking62', 12395149, 38, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 54, 54, 300000003, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270002083, 'sppbots', 'TrueWolf', 33679907, 48, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 16, 16, 300000032, 'PKK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270002084, 'sppbots', 'ceperacMupHoB', 17137002, 41, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 2, 2, 300000021, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270002085, 'sppbots', 'SwiftKnight', 2925229, 27, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 22, 22, 300000021, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270002086, 'sppbots', 'mamkinkolbasakot', 146307211, 61, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 113, 113, 300000044, 'PKK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270002087, 'sppbots', 'DerzkijKaban', 363, 3, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 10, 10, 300000051, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270002088, 'sppbots', 'zheKauBaHoB6', 45524865, 51, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 2, 2, 300000032, 'PKK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270002089, 'sppbots', 'DjMadEvilFire', 48229, 10, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 0, 0, 300000066, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270002090, 'sppbots', 'SweetMonk', 126509030, 60, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 94, 94, 300000034, 'PKK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270002091, 'sppbots', 'DjBuTeK', 0, 1, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 10, 10, 300000060, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270002092, 'sppbots', '4eTKuuBac9I', 2884, 5, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 10, 10, 300000060, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270002093, 'sppbots', 'LLIycTpbIuKoT93', 102265326, 58, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 92, 92, 300000027, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270002094, 'sppbots', 'TrueSlayer3', 387197529, 69, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 97, 97, 300000140, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270002095, 'sppbots', 'TaHKucT3adpoT', 539995, 18, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 44, 44, 300000010, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270002096, 'sppbots', '6odpbIuBoBaHMonk', 539995, 18, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 10, 10, 300000021, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270002097, 'sppbots', 'TaIIoK2005RUS', 426284, 17, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 10, 10, 300000073, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270002098, 'sppbots', 'ShashlykBratok', 2884, 5, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 44, 44, 300000052, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270002099, 'sppbots', 'bloodkingwolf8', 114038008, 59, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 102, 102, 300000128, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270002100, 'sppbots', 'IIeTpoBu4uBaHoB', 212716741, 64, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 108, 108, 300000001, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270002101, 'sppbots', 'MCcrazyrogue', 1242536, 22, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 15, 15, 300000036, 'PKK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270002102, 'sppbots', 'IronSweetDeath6', 25524751, 45, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 46, 46, 300000106, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270002103, 'sppbots', 'Ko3JIoB', 426284, 17, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 0, 0, 300000080, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270002104, 'sppbots', 'TrueDragonRUS', 931275828, 76, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 93, 93, 300000150, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270002105, 'sppbots', 'RealnyyVitEK', 3949727, 29, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 22, 22, 300000087, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270002106, 'sppbots', 'Slayer6', 931275828, 76, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 90, 90, 0, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270002107, 'sppbots', 'OldBi5HOP', 19423, 8, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 38, 38, 300000068, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270002108, 'sppbots', 'Cr4zyBishop', 48229, 10, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 31, 31, 300000070, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270002109, 'sppbots', 'PodEZD78', 1495531, 23, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 22, 22, 0, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270002110, 'sppbots', 'duKuuRider', 13844879, 39, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 1, 1, 300000098, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270002111, 'sppbots', 'KentDream92', 189363788, 63, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 103, 103, 0, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270002112, 'sppbots', 'DjDerzkijKing', 13844879, 39, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 26, 26, 300000098, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270002113, 'sppbots', 'EvilRiderFire93', 11066012, 37, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 54, 54, 300000093, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270002114, 'sppbots', 'IIeTpyxa', 25524751, 45, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 5, 5, 300000107, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270002115, 'sppbots', 'BloodWildTitan94', 0, 1, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 0, 0, 300000017, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270002116, 'sppbots', 'Gr1mW0lfFire30', 331864, 16, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 0, 0, 300000076, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270002117, 'sppbots', 'IIec6aToH1', 6812472, 33, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 54, 54, 300000092, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270002118, 'sppbots', 'GroznyjNubMonakh', 33679907, 48, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 16, 16, 300000113, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270002119, 'sppbots', 'IIaJIbI42004', 804219972, 75, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 88, 88, 300000149, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270002120, 'sppbots', '4eTKuuupKa07', 675590, 19, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 53, 53, 300000071, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270002121, 'sppbots', 'DobryjBatonBomzh', 57383682, 53, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 16, 16, 300000113, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270002122, 'sppbots', 'ModHbIuClaw98', 33679907, 48, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 2, 2, 300000117, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270002123, 'sppbots', 'LoneReaper', 331864, 16, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 38, 38, 0, 'PKK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270002124, 'sppbots', 'LyutyjKirpich', 804219972, 75, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 102, 102, 0, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270002125, 'sppbots', 'DarkVolk10', 101676, 12, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 38, 38, 300000021, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270002126, 'sppbots', 'MeJIKuuKefupded', 91162131, 57, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 94, 94, 300000126, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270002127, 'sppbots', 'PetrukhaKozloff', 1168, 4, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 0, 0, 300000004, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270002128, 'sppbots', 'zhupHbIuKoJI6aca', 19423, 8, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 0, 0, 300000062, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270002129, 'sppbots', 'VovanSmirnOV65', 189363788, 63, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 117, 117, 300000122, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270002130, 'sppbots', 'Ky3HecoBRUS', 532692055, 72, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 90, 90, 300000014, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270002131, 'sppbots', 'SwiftDrag0n', 191452, 14, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 18, 18, 300000068, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270002132, 'sppbots', 'xXEvilKingXx', 21007103, 43, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 8, 8, 300000013, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270002133, 'sppbots', 'StasPupkin3', 167243291, 62, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 88, 88, 300000128, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270002134, 'sppbots', 'JIbIcbIuKoMIIoT', 804219972, 75, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 93, 93, 300000047, 'PKK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270002135, 'sppbots', 'CrazySkvoznyak17', 114038008, 59, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 90, 90, 300000122, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270002136, 'sppbots', 'MaMKuHKoMIIoT3', 23180442, 44, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 40, 40, 0, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270002137, 'sppbots', 'SweetKingMaster', 3407873, 28, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 4, 4, 300000083, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270002138, 'sppbots', 'WovanVolkov', 114038008, 59, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 103, 103, 300000125, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270002139, 'sppbots', 'OldArrow', 18995573, 42, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 27, 27, 300000005, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270002140, 'sppbots', 'ShadowBlade', 6038, 6, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 53, 53, 300000058, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270002141, 'sppbots', 'StormClaw', 17137002, 41, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 5, 5, 300000108, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270002142, 'sppbots', 'SweetIceRUS', 21007103, 43, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 27, 27, 300000029, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270002143, 'sppbots', 'Tru3Vedmak1993', 6038, 6, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 18, 18, 300000030, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270002144, 'sppbots', '6apcyK', 474205751, 71, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 94, 94, 300000138, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270002145, 'sppbots', 'BorzyjVasya', 6812472, 33, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 11, 11, 300000092, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270002146, 'sppbots', 'BorzyjSvetka', 31378, 9, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 10, 10, 300000021, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270002147, 'sppbots', '3JIouy6uBaTop29', 387197529, 69, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 102, 102, 0, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270002148, 'sppbots', 'MrKaban89', 3407873, 28, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 54, 54, 300000088, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270002149, 'sppbots', 'ShadowCl4w', 40153995, 50, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 36, 36, 0, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270002150, 'sppbots', 'DerzkijTankist7', 474205751, 71, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 113, 113, 300000139, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270002151, 'sppbots', 'EvilDream', 308441375, 67, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 90, 90, 0, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270002152, 'sppbots', 'CrazyWolfDed', 191452, 14, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 0, 0, 300000066, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270002153, 'sppbots', 'Ka6aH', 1242536, 22, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 53, 53, 300000024, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270002154, 'sppbots', 'XolodokBaton', 4555766, 30, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 4, 4, 300000022, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270002155, 'sppbots', 'ZhekaKozloff96', 19423, 8, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 53, 53, 300000062, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270002156, 'sppbots', 'BodryyPelmen', 91162131, 57, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 90, 90, 0, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270002157, 'sppbots', 'Gh0stRider', 675590, 19, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 25, 25, 300000072, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270002158, 'sppbots', 'daLLIKa90', 539995, 18, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 10, 10, 300000072, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270002159, 'sppbots', 'TaHIOxaRaven', 11287, 7, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 0, 0, 0, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270002160, 'sppbots', 'roJIodHbIu4yMa', 2118860, 25, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 26, 26, 300000082, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270002161, 'sppbots', 'BeshenyyBomZH', 331864, 16, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 10, 10, 300000076, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270002162, 'sppbots', 'xXBoBaHXx', 237351413, 65, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 102, 102, 300000135, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270002163, 'sppbots', 'Hunter89', 15422851, 40, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 46, 46, 300000103, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270002164, 'sppbots', 'OldDream', 3949727, 29, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 39, 39, 300000043, 'PKK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270002165, 'sppbots', 'Pelmen', 1495531, 23, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 22, 22, 300000079, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270002166, 'sppbots', 'EvilAngelRogue', 675590, 19, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 0, 0, 0, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270002167, 'sppbots', 'Tolyan', 6038, 6, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 0, 0, 300000058, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270002168, 'sppbots', 'Lexa', 9850111, 36, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 15, 15, 300000097, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270002169, 'sppbots', 'TepMuHaTop89', 101676, 12, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 0, 0, 300000063, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270002170, 'sppbots', 'Mrlexamonk', 331864, 16, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 53, 53, 300000073, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270002171, 'sppbots', 'ZadrotSkvoznyAK', 2118860, 25, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 4, 4, 300000088, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270002172, 'sppbots', 'UnylyyBelyash', 19423, 8, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 31, 31, 300000065, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270002173, 'sppbots', 'Suxar', 212716741, 64, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 97, 97, 300000009, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270002174, 'sppbots', 'upKaBoJIKoB', 6812472, 33, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 54, 54, 0, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270002175, 'sppbots', 'IIeTpyxaKo3JIoB', 48229, 10, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 0, 0, 300000011, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270002176, 'sppbots', 'gh0stsniper2007', 126509030, 60, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 103, 103, 300000121, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270002177, 'sppbots', 'cTapbIuRaven', 931275828, 76, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 93, 93, 300000146, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270002178, 'sppbots', 'DjDarkTitan95', 141192, 13, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 44, 44, 300000067, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270002179, 'sppbots', 'MadDeath', 102265326, 58, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 110, 110, 300000130, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270002180, 'sppbots', 'Natakha', 68, 2, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 18, 18, 300000055, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270002181, 'sppbots', 'RuslanMedvedew', 6038, 6, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 44, 44, 300000012, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270002182, 'sppbots', 'GnomReaper', 675590, 19, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 31, 31, 300000020, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270002183, 'sppbots', 'MrLoneMonk8', 8740372, 35, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 26, 26, 300000100, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270002184, 'sppbots', 'Fang', 91162131, 57, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 92, 92, 300000123, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270002185, 'sppbots', 'Petroff6', 191452, 14, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 10, 10, 300000014, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270002186, 'sppbots', 'UnylyjStepan', 426284, 17, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 31, 31, 300000071, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270002187, 'sppbots', 'DarkD3m0n', 6038, 6, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 0, 0, 300000042, 'PKK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270002188, 'sppbots', 'BodryyRuslan90', 6812472, 33, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 54, 54, 300000096, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270002189, 'sppbots', 'StormRogue', 3949727, 29, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 15, 15, 300000044, 'PKK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270002190, 'sppbots', 'Ivanov2003', 6812472, 33, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 15, 15, 300000043, 'PKK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270002191, 'sppbots', 'JIoIIaTa96', 13844879, 39, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 39, 39, 300000100, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270002192, 'sppbots', 'yurecsidorov', 11287, 7, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 0, 0, 300000054, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270002193, 'sppbots', 'lopata9', 48229, 10, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 44, 44, 300000070, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270002194, 'sppbots', 'Fire1993', 102265326, 58, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 88, 88, 300000016, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270002195, 'sppbots', 'Gh05tCrazyKnight', 1495531, 23, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 7, 7, 300000074, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270002196, 'sppbots', 'IIpocToBedbMaK', 2497059, 26, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 22, 22, 300000018, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270002197, 'sppbots', 'dobryymashka2006', 2884, 5, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 0, 0, 300000019, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270002198, 'sppbots', 'IIacaH', 18995573, 42, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 40, 40, 300000108, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270002199, 'sppbots', 'N1ghtMonk93', 80700339, 56, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 108, 108, 0, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270002200, 'sppbots', 'dep3Kuu6paToK', 11066012, 37, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 45, 45, 300000098, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270002201, 'sppbots', 'WildFang', 6812472, 33, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 39, 39, 300000093, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270002202, 'sppbots', 'MCBaJIeHoKIIacaH', 474205751, 71, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 92, 92, 300000131, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270002203, 'sppbots', 'DarkKING1993', 3407873, 28, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 35, 35, 300000027, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270002204, 'sppbots', 'IIpocTo4yMa', 4555766, 30, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 26, 26, 300000083, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270002205, 'sppbots', 'ModnyyBlade', 212716741, 64, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 92, 92, 300000131, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270002206, 'sppbots', 'SemkiGopnik', 12395149, 38, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 1, 1, 300000091, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270002207, 'sppbots', 'rpo3HbIuKeHT5', 2497059, 26, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 7, 7, 300000085, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270002208, 'sppbots', 'JIeHKaReaper9', 101676, 12, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 0, 0, 300000069, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270002209, 'sppbots', '4eTKuuToIIop', 28049509, 46, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 5, 5, 300000042, 'PKK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270002210, 'sppbots', 'Tru3De4th', 11066012, 37, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 26, 26, 300000093, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270002211, 'sppbots', 'ShadowWolf', 429632402, 70, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 88, 88, 300000048, 'PKK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270002212, 'sppbots', 'duKuuIIaJIbI4', 675590, 19, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 44, 44, 300000077, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270002213, 'sppbots', 'xXIronSosed98Xx', 31378, 9, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 0, 0, 300000063, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270002214, 'sppbots', 'LoneSoulKiller', 1168, 4, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 0, 0, 0, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270002215, 'sppbots', 'BloodDreamLord', 835854, 20, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 7, 7, 300000022, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270002216, 'sppbots', 'BlackMonk10', 346825235, 68, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 108, 108, 300000043, 'PKK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270002217, 'sppbots', 'SemkiMaster', 146307211, 61, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 90, 90, 300000126, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270002218, 'sppbots', 'FrostKolbASA', 191452, 14, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 31, 31, 300000037, 'PKK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270002219, 'sppbots', 'DarkSilentMaster', 12395149, 38, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 4, 4, 0, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270002220, 'sppbots', 'SvetkaSidorow', 28049509, 46, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 40, 40, 300000105, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270002221, 'sppbots', 'DashkaIvanOFFRUS', 23180442, 44, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 2, 2, 300000103, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270002222, 'sppbots', 'BoJIKoB42', 1242536, 22, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 22, 22, 300000078, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270002223, 'sppbots', 'cTeIIaHRaven', 11066012, 37, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 26, 26, 300000093, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270002224, 'sppbots', 'Swe3tArrowKing', 426284, 17, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 25, 25, 300000074, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270002225, 'sppbots', 'OldShaurma', 2118860, 25, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 7, 7, 300000086, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270002226, 'sppbots', '4eTKuuIIaJIbI4', 6038, 6, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 10, 10, 300000055, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270002227, 'sppbots', 'Skvoznyak45RUS', 387197529, 69, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 92, 92, 300000139, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270002228, 'sppbots', 'MashkaPetrOFF', 45524865, 51, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 2, 2, 300000018, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270002229, 'sppbots', 'MamkinSosed56', 1242536, 22, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 26, 26, 300000008, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270002230, 'sppbots', 'DerzkijDashka04', 141192, 13, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 25, 25, 300000063, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270002231, 'sppbots', 'yrapHbIuLord04', 11287, 7, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 38, 38, 300000035, 'PKK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270002232, 'sppbots', 'roJIodHbIu6aToH', 1242536, 22, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 11, 11, 300000019, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270002233, 'sppbots', 'Lord5', 101676, 12, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 53, 53, 300000007, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270002234, 'sppbots', 'JIbIcbIuRider', 28049509, 46, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 5, 5, 300000101, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270002235, 'sppbots', 'Hunter86', 33679907, 48, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 36, 36, 300000116, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270002236, 'sppbots', 'DimanPetrOFF', 9850111, 36, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 26, 26, 300000096, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270002237, 'sppbots', 'M4ge', 114038008, 59, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 90, 90, 300000006, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270002238, 'sppbots', 'JIIOTbIurpuLLIa', 1242536, 22, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 15, 15, 300000073, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270002239, 'sppbots', 'xXZloyYurec88Xx', 4555766, 30, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 7, 7, 300000086, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270002240, 'sppbots', 'GrimSilentArrow', 80700339, 56, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 108, 108, 0, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270002241, 'sppbots', '6eJI9ILLI3', 606319094, 73, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 103, 103, 0, 'PKK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270002242, 'sppbots', 'IIode3d6paToK57', 167243291, 62, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 93, 93, 300000127, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270002243, 'sppbots', 'Ezhik', 11287, 7, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 53, 53, 300000050, 'PKK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270002244, 'sppbots', 'Fire', 6812472, 33, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 1, 1, 300000097, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270002245, 'sppbots', 'DobryyKiller87', 9850111, 36, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 11, 11, 300000098, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270002246, 'sppbots', 'MaLLIKaKy3HecoB', 21007103, 43, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 27, 27, 300000106, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270002247, 'sppbots', 'MamkinTimUR1990', 1023775, 21, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 1, 1, 300000075, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270002248, 'sppbots', 'GrimMonk96', 426284, 17, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 44, 44, 300000075, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270002249, 'sppbots', 'LysyjGrisha', 91162131, 57, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 97, 97, 0, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270002250, 'sppbots', 'oJIerTitanRUS', 2884, 5, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 10, 10, 300000059, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270002251, 'sppbots', 'IrkaPupkin98', 146307211, 61, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 90, 90, 300000123, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270002252, 'sppbots', 'TrueKent95', 15422851, 40, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 8, 8, 0, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270002253, 'sppbots', 'xXNightIceXx', 17137002, 41, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 12, 12, 300000101, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270002254, 'sppbots', 'PacanChushpAN92', 426284, 17, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 38, 38, 300000004, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270002255, 'sppbots', 'Chesnok2004', 63907585, 54, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 12, 12, 300000040, 'PKK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270002256, 'sppbots', 'Ky3HecoB', 101676, 12, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 53, 53, 300000065, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270002257, 'sppbots', 'KapaTeJIb1990', 212716741, 64, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 108, 108, 0, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270002258, 'sppbots', 'Baton3', 8740372, 35, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 35, 35, 300000027, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270002259, 'sppbots', 'D4rkSlayer8', 2497059, 26, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 54, 54, 300000026, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270002260, 'sppbots', 'sweetk1ller81', 80700339, 56, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 92, 92, 0, 'PKK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270002261, 'sppbots', 'zlojdedshaurma39', 126509030, 60, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 92, 92, 300000125, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270002262, 'sppbots', 'roJIodHbIuKa6aH', 254327, 15, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 44, 44, 300000027, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270002263, 'sppbots', 'Petrovich', 33679907, 48, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 8, 8, 300000015, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270002264, 'sppbots', 'xXSwetka5Xx', 3407873, 28, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 7, 7, 300000090, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270002265, 'sppbots', 'OldAnGEL', 696376867, 74, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 88, 88, 300000149, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270002266, 'sppbots', 'OldSoul', 68, 2, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 38, 38, 300000052, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270002267, 'sppbots', 'KpacaB4uKBoJIK', 9850111, 36, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 7, 7, 300000097, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270002268, 'sppbots', 'Kozloff6', 331864, 16, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 0, 0, 300000024, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270002269, 'sppbots', 'GopnikBishop', 1023775, 21, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 15, 15, 0, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270002270, 'sppbots', 'cocedSoul', 17137002, 41, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 8, 8, 300000105, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270002271, 'sppbots', 'WalenokVolk22', 63907585, 54, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 27, 27, 300000018, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270002272, 'sppbots', 'MashkaMedvedev', 36806133, 49, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 16, 16, 300000113, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270002273, 'sppbots', 'GrishaRogue', 1786365, 24, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 22, 22, 300000015, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270002274, 'sppbots', 'EvilRider', 539995, 18, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 10, 10, 300000075, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270002275, 'sppbots', 'Tolik8', 2925229, 27, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 4, 4, 300000083, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270002276, 'sppbots', 'xXTaIIoKXx', 114038008, 59, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 90, 90, 300000122, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270002277, 'sppbots', 'silentp0dezd', 387197529, 69, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 113, 113, 300000021, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270002278, 'sppbots', 'naglyymashka95', 254327, 15, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 38, 38, 300000070, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270002279, 'sppbots', 'IronShaurmaRUS', 141192, 13, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 38, 38, 0, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270002280, 'sppbots', 'KefupMapMeJIad07', 12395149, 38, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 4, 4, 300000091, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270002281, 'sppbots', 'MadDrag0n', 45524865, 51, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 5, 5, 300000115, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270002282, 'sppbots', 'BratokChuma', 254327, 15, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 0, 0, 300000050, 'PKK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270002283, 'sppbots', 'EvilDream3', 11066012, 37, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 35, 35, 300000100, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270002284, 'sppbots', 'Kefup6apcyK', 2497059, 26, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 1, 1, 300000088, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270002285, 'sppbots', 'MaMKuHClaw', 5231213, 31, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 35, 35, 300000045, 'PKK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270002286, 'sppbots', 'W1ldL0rd88', 8740372, 35, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 22, 22, 300000094, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270002287, 'sppbots', 'MarmelAD4', 6812472, 33, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 26, 26, 300000044, 'PKK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270002288, 'sppbots', 'MonahCheburek32', 387197529, 69, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 93, 93, 300000134, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270002289, 'sppbots', '4eTKuucKBo3H9IK', 1023775, 21, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 4, 4, 300000071, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270002290, 'sppbots', 'Bratok', 28049509, 46, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 36, 36, 300000110, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270002291, 'sppbots', 'MrSanyaKozlOFF', 2884, 5, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 18, 18, 300000054, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270002292, 'sppbots', 'BedbMaKRavenRUS', 426284, 17, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 38, 38, 300000016, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270002293, 'sppbots', 'xXK1lLER02Xx', 15422851, 40, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 24, 24, 300000038, 'PKK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270002294, 'sppbots', 'NightK1ng', 426284, 17, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 0, 0, 300000027, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270002295, 'sppbots', 'IvanOFF', 80700339, 56, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 90, 90, 300000128, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270002296, 'sppbots', 'borzyjtitan', 68, 2, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 25, 25, 300000056, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270002297, 'sppbots', 'unylyyvalenok', 48229, 10, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 25, 25, 300000063, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270002298, 'sppbots', 'ShadowBishop', 28049509, 46, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 12, 12, 300000107, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270002299, 'sppbots', 'KrasavchikKiller', 1495531, 23, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 15, 15, 300000079, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270002300, 'sppbots', 'dep3KuuMaKc12', 3407873, 28, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 15, 15, 300000002, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270002301, 'sppbots', 'ZloyHunter', 8740372, 35, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 1, 1, 300000034, 'PKK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270002302, 'sppbots', 'WildDragon1991', 15422851, 40, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 40, 40, 300000102, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270002303, 'sppbots', 'TihijChiterPacan', 30764519, 47, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 12, 12, 300000109, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270002304, 'sppbots', 'ZhekaPetrOFF', 31378, 9, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 53, 53, 300000038, 'PKK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270002305, 'sppbots', 'SwiftHunter03', 6038, 6, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 0, 0, 300000052, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270002306, 'sppbots', 'FedorPetrov', 30764519, 47, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 40, 40, 300000007, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270002307, 'sppbots', 'GarAZH', 71201, 11, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 53, 53, 300000066, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270002308, 'sppbots', 'SwiftTrueF4ng', 931275828, 76, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 110, 110, 300000004, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270002309, 'sppbots', 'KolyanZaycEV47', 1786365, 24, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 7, 7, 300000022, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270002310, 'sppbots', 'SweetBladeR4ven', 3407873, 28, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 45, 45, 300000081, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270002311, 'sppbots', 'ModnyyWasya', 606319094, 73, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 110, 110, 300000146, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270002312, 'sppbots', 'dep3KuuIIaLLIa', 102265326, 58, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 97, 97, 300000035, 'PKK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270002313, 'sppbots', 'SwiftChushpan', 6038, 6, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 0, 0, 300000056, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270002314, 'sppbots', 'golodnyyserega', 1168, 4, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 31, 31, 0, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270002315, 'sppbots', '3JIouMaKc2004', 1786365, 24, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 7, 7, 300000082, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270002316, 'sppbots', 'bodryypetrovich', 1023775, 21, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 35, 35, 300000071, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270002317, 'sppbots', '6odpbIuBac9I', 101676, 12, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 0, 0, 300000061, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270002318, 'sppbots', 'xXFireXx', 31378, 9, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 10, 10, 300000061, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270002319, 'sppbots', 'SilentFrostFang', 8740372, 35, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 22, 22, 300000014, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270002320, 'sppbots', 'ShadowFrostKing', 31378, 9, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 0, 0, 300000062, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270002321, 'sppbots', 'TuxuuToIIopKeHT', 532692055, 72, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 94, 94, 300000149, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270002322, 'sppbots', 'MadRiderShaurma', 7729999, 34, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 15, 15, 300000096, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270002323, 'sppbots', 'WildWolfTitanRUS', 19423, 8, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 10, 10, 0, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270002324, 'sppbots', 'Reaper2005', 48229, 10, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 10, 10, 0, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270002325, 'sppbots', 'y6uBaTopKeHT', 2118860, 25, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 39, 39, 300000041, 'PKK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270002326, 'sppbots', 'D4rkTravka', 931275828, 76, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 102, 102, 300000040, 'PKK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270002327, 'sppbots', 'HaTaxa', 2497059, 26, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 26, 26, 300000085, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270002328, 'sppbots', 'LoneEvilKing9', 17137002, 41, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 16, 16, 300000040, 'PKK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270002329, 'sppbots', 'SkvoznyakLord', 1495531, 23, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 53, 53, 300000074, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270002330, 'sppbots', 'BlackSlayer02', 33679907, 48, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 9, 9, 300000029, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270002331, 'sppbots', 'IIaLLIaKo3JIoB', 429632402, 70, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 102, 102, 300000006, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270002332, 'sppbots', 'SilentFangRUS', 45524865, 51, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 46, 46, 0, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270002333, 'sppbots', 'xXWildR1derXx', 426284, 17, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 0, 0, 300000080, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270002334, 'sppbots', 'DikijChushpan', 19423, 8, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 0, 0, 0, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270002335, 'sppbots', '3JIou6aT9I39', 539995, 18, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 53, 53, 300000029, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270002336, 'sppbots', 'NagibatorKing96', 19423, 8, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 0, 0, 300000007, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270002337, 'sppbots', 'LysyyMuxomor', 426284, 17, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 53, 53, 300000071, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270002338, 'sppbots', 'TolikVolkoff', 11066012, 37, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 45, 45, 300000092, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270002339, 'sppbots', 'dep3KuuxoM9IK', 102265326, 58, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 94, 94, 300000023, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270002340, 'sppbots', 'Terminator', 1168, 4, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 0, 0, 300000054, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270002341, 'sppbots', 'yrapHbIurHoM', 13844879, 39, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 26, 26, 300000096, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270002342, 'sppbots', 'LoneShashlykRUS', 426284, 17, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 0, 0, 300000029, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270002343, 'sppbots', 'MoHaxStar1998', 191452, 14, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 44, 44, 300000017, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270002344, 'sppbots', 'ModHbIuW0lf', 80700339, 56, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 102, 102, 300000002, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270002345, 'sppbots', 'DjShadowDragON', 13844879, 39, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 7, 7, 300000002, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270002346, 'sppbots', 'cTac', 21007103, 43, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 9, 9, 300000008, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270002347, 'sppbots', 'WildR4ven', 1023775, 21, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 45, 45, 0, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270002348, 'sppbots', '6eLLIeHbIuduMaH', 2925229, 27, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 22, 22, 300000081, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270002349, 'sppbots', 'xuTpbIuHy6', 28049509, 46, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 12, 12, 300000109, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270002350, 'sppbots', 'GroznyyVovchik', 426284, 17, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 0, 0, 300000074, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270002351, 'sppbots', 'SwiftRogueArrow', 114038008, 59, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 113, 113, 300000122, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270002352, 'sppbots', 'cTeIIaH', 8740372, 35, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 7, 7, 300000096, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270002353, 'sppbots', 'MrcaHeKKy3HecoB', 1168, 4, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 0, 0, 300000060, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270002354, 'sppbots', 'CrazyR3ap3r', 2884, 5, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 0, 0, 300000053, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270002355, 'sppbots', 'MCcBeTKa', 4555766, 30, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 1, 1, 300000084, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270002356, 'sppbots', 'JIoIIaTaTaHKucT', 23180442, 44, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 5, 5, 300000102, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270002357, 'sppbots', 'BomzhKirpich', 71201, 11, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 44, 44, 300000040, 'PKK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270002358, 'sppbots', 'D3m0n40', 11287, 7, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 18, 18, 300000053, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270002359, 'sppbots', 'nastya3', 13844879, 39, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 45, 45, 300000047, 'PKK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270002360, 'sppbots', 'MadKing', 51262204, 52, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 27, 27, 300000017, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270002361, 'sppbots', 'Dr3am', 237351413, 65, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 93, 93, 300000004, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270002362, 'sppbots', 'xXMadMageXx', 8740372, 35, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 7, 7, 300000029, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270002363, 'sppbots', 'EvilMasterIce', 675590, 19, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 25, 25, 300000073, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270002364, 'sppbots', 'TerminatorBarsuk', 308441375, 67, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 90, 90, 300000137, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270002365, 'sppbots', '6aT9IKapaTeJIb', 212716741, 64, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 108, 108, 300000020, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270002366, 'sppbots', 'CrazyMAGE', 19423, 8, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 38, 38, 300000069, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270002367, 'sppbots', 'SweetFiRE', 212716741, 64, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 94, 94, 300000140, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270002368, 'sppbots', '4uTeporypec', 11066012, 37, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 7, 7, 300000045, 'PKK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270002369, 'sppbots', 'cKBo3H9IK', 126509030, 60, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 97, 97, 0, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270002370, 'sppbots', 'NightDarkPacAN95', 2118860, 25, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 45, 45, 300000081, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270002371, 'sppbots', 'do6pbIuBlade', 308441375, 67, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 90, 90, 300000028, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270002372, 'sppbots', '5tormNub', 102265326, 58, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 113, 113, 300000130, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270002373, 'sppbots', 'TrueH0l0dok', 48229, 10, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 0, 0, 300000022, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270002374, 'sppbots', 'xXGaraZHXx', 2925229, 27, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 11, 11, 0, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270002375, 'sppbots', 'DjIIpocToDemon', 126509030, 60, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 88, 88, 300000130, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270002376, 'sppbots', 'CrazyUbiwator', 101676, 12, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 10, 10, 300000066, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270002377, 'sppbots', '4eTKuuHaTaxa91', 675590, 19, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 0, 0, 0, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270002378, 'sppbots', '6odpbIuKoT', 539995, 18, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 25, 25, 300000080, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270002379, 'sppbots', 'Kirpich1999', 141192, 13, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 0, 0, 300000063, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270002380, 'sppbots', 'MCUgarnyjZadrot', 6038, 6, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 0, 0, 300000057, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270002381, 'sppbots', 'JIoIIaTa40', 271973532, 66, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 102, 102, 300000136, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270002382, 'sppbots', 'StormKing', 346825235, 68, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 94, 94, 300000024, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270002383, 'sppbots', 'UgarnyyUbiwator', 931275828, 76, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 94, 94, 0, 'PKK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270002384, 'sppbots', 'ShustryyKefir98', 68, 2, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 10, 10, 300000053, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270002385, 'sppbots', 'IIeTpoB', 141192, 13, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 31, 31, 300000026, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270002386, 'sppbots', 'WildBishopMonk7', 1242536, 22, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 22, 22, 0, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270002387, 'sppbots', 'Vowchik86', 6812472, 33, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 26, 26, 0, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270002388, 'sppbots', 'NightKnightM4g3', 11066012, 37, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 26, 26, 0, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270002389, 'sppbots', 'Cl4w', 212716741, 64, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 102, 102, 300000003, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270002390, 'sppbots', 'StormStarIce', 13844879, 39, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 54, 54, 300000097, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270002391, 'sppbots', 'SilentKing', 11287, 7, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 53, 53, 0, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270002392, 'sppbots', 'SkvoznyakNUB', 101676, 12, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 18, 18, 300000008, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270002393, 'sppbots', '6apcyK7', 114038008, 59, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 94, 94, 300000128, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270002394, 'sppbots', 'ShaurmaTravka', 40153995, 50, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 9, 9, 300000028, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270002395, 'sppbots', 'BarsukHolodokRUS', 804219972, 75, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 113, 113, 300000016, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270002396, 'sppbots', 'GolodnyjFedor', 0, 1, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 0, 0, 300000060, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270002397, 'sppbots', 'xXBatyaXx', 126509030, 60, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 94, 94, 300000029, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270002398, 'sppbots', 'prostoandryuha', 191452, 14, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 10, 10, 300000067, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270002399, 'sppbots', 'MCSilentTitan', 9850111, 36, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 35, 35, 300000047, 'PKK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270002400, 'sppbots', 'JIbIcbIucBeTKa', 7729999, 34, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 7, 7, 300000091, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270002401, 'sppbots', 'StasVolkov', 835854, 20, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 15, 15, 0, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270002402, 'sppbots', 'TimUR50', 126509030, 60, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 113, 113, 300000129, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270002403, 'sppbots', 'GnomMarmelad', 146307211, 61, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 108, 108, 300000123, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270002404, 'sppbots', 'MaMKuHMage', 15422851, 40, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 2, 2, 300000101, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270002405, 'sppbots', 'Shad0wEvilFire', 7729999, 34, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 54, 54, 300000093, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270002406, 'sppbots', 'LoneBlade', 2884, 5, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 0, 0, 300000027, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270002407, 'sppbots', 'KoTKapaTeJIb1998', 1023775, 21, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 22, 22, 300000072, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270002408, 'sppbots', 'M0nk', 2497059, 26, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 22, 22, 300000090, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270002409, 'sppbots', 'SweetStormSniper', 33679907, 48, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 40, 40, 300000111, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270002410, 'sppbots', 'pzhaBbIuTpaBKa', 19423, 8, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 0, 0, 300000065, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270002411, 'sppbots', 'Mrrpo3HbIuIOpec', 308441375, 67, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 102, 102, 300000011, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270002412, 'sppbots', 'duKuucKBo3H9IK', 696376867, 74, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 90, 90, 300000143, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270002413, 'sppbots', 'PalychRUS', 474205751, 71, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 92, 92, 0, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270002414, 'sppbots', 'NightRider', 3407873, 28, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 7, 7, 300000023, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270002415, 'sppbots', 'uBaHoB5', 17137002, 41, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 40, 40, 300000104, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270002416, 'sppbots', 'stormbishop77', 2118860, 25, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 1, 1, 300000019, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270002417, 'sppbots', 'aHdpIOxaIIyIIKuH', 1168, 4, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 44, 44, 300000052, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270002418, 'sppbots', 'IIaLLIaMedBedeB', 1495531, 23, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 11, 11, 300000073, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270002419, 'sppbots', 'Mr4ecHoK', 675590, 19, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 0, 0, 300000073, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270002420, 'sppbots', 'gopnikkefir', 2925229, 27, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 7, 7, 300000044, 'PKK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270002421, 'sppbots', 'KpuBouToJI9IH80', 6038, 6, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 0, 0, 300000055, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270002422, 'sppbots', 'MaKccMupHoB99', 0, 1, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 10, 10, 300000056, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270002423, 'sppbots', 'coHHbIuMaLLIKa', 2925229, 27, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 39, 39, 300000008, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270002424, 'sppbots', 'KolyanPupkin7', 331864, 16, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 25, 25, 300000080, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270002425, 'sppbots', 'GrimHunter74', 3949727, 29, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 11, 11, 300000082, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270002426, 'sppbots', 'MedvedEV55', 17137002, 41, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 40, 40, 300000110, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270002427, 'sppbots', '4eTKuu4e6ypeK', 141192, 13, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 25, 25, 0, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270002428, 'sppbots', 'UgarnyyHomyak', 308441375, 67, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 93, 93, 300000134, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270002429, 'sppbots', 'ceperaBoJIKoB03', 23180442, 44, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 2, 2, 300000104, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270002430, 'sppbots', 'duMoHcMupHoB41', 696376867, 74, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 93, 93, 300000147, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270002431, 'sppbots', 'IIec23', 346825235, 68, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 92, 92, 300000138, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270002432, 'sppbots', 'JIIOTbIuKoT', 91162131, 57, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 113, 113, 300000024, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270002433, 'sppbots', 'ezhuKcyxapb93', 189363788, 63, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 110, 110, 300000001, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270002434, 'sppbots', 'DedChushpan1995', 2884, 5, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 53, 53, 300000052, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270002435, 'sppbots', 'Slayer9', 40153995, 50, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 2, 2, 300000120, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270002436, 'sppbots', 'PacanChuma8', 51262204, 52, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 46, 46, 300000112, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270002437, 'sppbots', 'peaJIbHbIuAngel', 114038008, 59, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 103, 103, 300000026, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270002438, 'sppbots', 'MaMKuHToJI9IH', 212716741, 64, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 108, 108, 300000028, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270002439, 'sppbots', 'KrivojVasyaBlade', 363, 3, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 53, 53, 300000026, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270002440, 'sppbots', 'DjD3ath', 1168, 4, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 0, 0, 300000057, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270002441, 'sppbots', 'KotKhomyak', 31378, 9, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 10, 10, 0, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270002442, 'sppbots', 'OldSlayerRUS', 9850111, 36, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 54, 54, 300000095, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270002443, 'sppbots', 'lenka', 696376867, 74, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 93, 93, 300000142, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270002444, 'sppbots', 'AndryuhaBi5h0p3', 12395149, 38, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 7, 7, 300000098, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270002445, 'sppbots', 'WildTitan', 1023775, 21, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 45, 45, 300000072, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270002446, 'sppbots', 'Claw', 57383682, 53, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 24, 24, 300000044, 'PKK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270002447, 'sppbots', 'cBeTKa', 6038, 6, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 18, 18, 300000013, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270002448, 'sppbots', 'StormDeath', 1495531, 23, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 7, 7, 300000035, 'PKK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270002449, 'sppbots', 'CrazyRider', 2884, 5, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 0, 0, 300000058, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270002450, 'sppbots', 'golodnyygrisha', 21007103, 43, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 16, 16, 300000020, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270002451, 'sppbots', 'rpuLLIa3auceB', 212716741, 64, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 94, 94, 300000014, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270002452, 'sppbots', 'Svetka', 2497059, 26, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 35, 35, 300000085, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270002453, 'sppbots', 'aHdpIOxaBoJIKoB', 2497059, 26, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 4, 4, 300000046, 'PKK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270002454, 'sppbots', 'coHHbIuDemon', 6812472, 33, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 7, 7, 300000091, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270002455, 'sppbots', 'rpo3HbIuzheKa', 102265326, 58, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 97, 97, 300000124, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270002456, 'sppbots', '5wiftChuma', 71201, 11, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 38, 38, 300000062, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270002457, 'sppbots', 'yrapHbIuezhuK', 2884, 5, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 53, 53, 300000054, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270002458, 'sppbots', 'MCstas', 51262204, 52, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 9, 9, 0, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270002459, 'sppbots', 'FrostKingM0nk43', 15422851, 40, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 36, 36, 300000103, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270002460, 'sppbots', '4eTKuuMaLLIKa', 931275828, 76, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 117, 117, 300000009, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270002461, 'sppbots', 'MCrpo3HbIuduMaH', 114038008, 59, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 103, 103, 0, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270002462, 'sppbots', 'NubTopor', 30764519, 47, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 16, 16, 300000102, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270002463, 'sppbots', 'Kot88', 191452, 14, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 0, 0, 300000028, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270002464, 'sppbots', 'xoM9IK6apcyK2006', 28049509, 46, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 24, 24, 300000015, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270002465, 'sppbots', 'Zheka86', 3949727, 29, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 7, 7, 300000085, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270002466, 'sppbots', 'DarkBlackAngel', 1242536, 22, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 1, 1, 300000071, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270002467, 'sppbots', 'ModHbIucepera', 13844879, 39, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 11, 11, 300000092, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270002468, 'sppbots', 'Bishop1986', 17137002, 41, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 16, 16, 300000107, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270002469, 'sppbots', 'BloodDragon9', 19423, 8, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 18, 18, 300000069, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270002470, 'sppbots', 'BeshenyjGnom', 271973532, 66, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 108, 108, 300000007, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270002471, 'sppbots', 'DjMedoedPacan', 8740372, 35, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 35, 35, 300000098, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270002472, 'sppbots', 'muhomormonakh', 308441375, 67, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 103, 103, 0, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270002473, 'sppbots', 'xXMaKcXx', 63907585, 54, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 36, 36, 300000118, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270002474, 'sppbots', 'L0n3NightRider98', 167243291, 62, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 117, 117, 300000046, 'PKK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270002475, 'sppbots', 'LysyyPalych', 114038008, 59, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 103, 103, 300000126, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270002476, 'sppbots', 'SweetRiderStar', 271973532, 66, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 90, 90, 300000030, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270002477, 'sppbots', 'CrazyWildMage', 30764519, 47, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 36, 36, 300000104, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270002478, 'sppbots', '6oMzh', 21007103, 43, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 8, 8, 300000037, 'PKK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270002479, 'sppbots', 'DjKaban', 25524751, 45, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 9, 9, 300000108, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270002480, 'sppbots', '3JIouMaster63', 474205751, 71, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 108, 108, 300000135, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270002481, 'sppbots', 'DjMonk8', 9850111, 36, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 54, 54, 300000100, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270002482, 'sppbots', 'KoJI6acaRUS', 25524751, 45, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 5, 5, 300000105, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270002483, 'sppbots', 'KrivojChebuREK', 6812472, 33, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 7, 7, 300000093, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270002484, 'sppbots', 'upKaIIeTpoB', 387197529, 69, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 113, 113, 300000015, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270002485, 'sppbots', 'MukhomorBlade', 539995, 18, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 31, 31, 0, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270002486, 'sppbots', 'TravkaBatya2002', 1168, 4, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 38, 38, 0, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270002487, 'sppbots', '6eLLIeHbIuBoB4uK', 331864, 16, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 53, 53, 300000077, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270002488, 'sppbots', 'JIexa', 6038, 6, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 31, 31, 300000054, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270002489, 'sppbots', 'MCNightReaper', 0, 1, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 10, 10, 300000057, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270002490, 'sppbots', 'Ka6aH4e6ypeK99', 237351413, 65, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 94, 94, 300000003, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270002491, 'sppbots', 'KrivoyShashlYK', 6038, 6, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 0, 0, 0, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270002492, 'sppbots', 'ShadowSoul', 1786365, 24, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 4, 4, 300000083, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270002493, 'sppbots', 'SonnyyMashkaRUS', 539995, 18, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 38, 38, 0, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270002494, 'sppbots', 'TixijDimonDream', 6038, 6, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 0, 0, 300000053, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270002495, 'sppbots', 'cyxapb6aT9I1997', 1168, 4, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 10, 10, 0, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270002496, 'sppbots', 'LoneBishop', 80700339, 56, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 97, 97, 300000122, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270002497, 'sppbots', 'FrostRider', 80700339, 56, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 93, 93, 300000020, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270002498, 'sppbots', 'IrkaSmirnov', 346825235, 68, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 97, 97, 300000138, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270002499, 'sppbots', 'coced', 1023775, 21, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 35, 35, 300000078, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270002500, 'sppbots', 'mamkinogurec', 5981539, 32, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 11, 11, 300000100, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270002501, 'sppbots', 'ZhirnyyBratok', 1023775, 21, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 11, 11, 0, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270002502, 'sppbots', 'Monk6', 40153995, 50, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 27, 27, 0, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270002503, 'sppbots', 'SilentWolf03', 11066012, 37, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 7, 7, 300000099, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270002504, 'sppbots', 'ProstoKrasavchik', 254327, 15, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 0, 0, 0, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270002505, 'sppbots', 'StormFireLord', 271973532, 66, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 90, 90, 300000139, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270002506, 'sppbots', 'StormHunt3r', 101676, 12, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 53, 53, 300000065, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270002507, 'sppbots', 'derzkiydimon6RUS', 40153995, 50, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 12, 12, 300000111, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270002508, 'sppbots', 'tolyanivanov92', 931275828, 76, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 102, 102, 300000005, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270002509, 'sppbots', 'Sanek', 308441375, 67, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 94, 94, 300000134, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270002510, 'sppbots', 'xXGolodnyjClawXx', 429632402, 70, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 102, 102, 0, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270002511, 'sppbots', 'Mr3auceB', 1786365, 24, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 15, 15, 300000002, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270002512, 'sppbots', 'WildDream', 5231213, 31, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 7, 7, 300000083, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270002513, 'sppbots', 'TerminatorSosed', 696376867, 74, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 108, 108, 300000014, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270002514, 'sppbots', 'MrHunt3r', 17137002, 41, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 40, 40, 0, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270002515, 'sppbots', 'JIbIcbIuupKa04', 835854, 20, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 53, 53, 300000031, 'PKK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270002516, 'sppbots', 'Andryukha1995', 15422851, 40, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 40, 40, 300000103, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270002517, 'sppbots', 'SweetNightFang', 19423, 8, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 10, 10, 300000070, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270002518, 'sppbots', 'xuTpbIuxoJIodoK', 36806133, 49, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 27, 27, 0, 'PKK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270002519, 'sppbots', 'ModnyjShashLYK96', 363, 3, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 0, 0, 300000053, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270002520, 'sppbots', 'XolodokSemki', 2925229, 27, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 22, 22, 0, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270002521, 'sppbots', 'JIoIIaTa', 0, 1, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 0, 0, 0, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270002522, 'sppbots', 'Dr4gon', 474205751, 71, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 102, 102, 300000024, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270002523, 'sppbots', 'DjDimanIvanov65', 23180442, 44, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 5, 5, 0, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270002524, 'sppbots', 'GrimM4ge32RUS', 23180442, 44, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 8, 8, 300000102, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270002525, 'sppbots', 'MashkaSmirnov', 363, 3, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 10, 10, 300000030, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270002526, 'sppbots', 'NaglyjIrka', 63907585, 54, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 12, 12, 300000015, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270002527, 'sppbots', 'MCCheburek97', 474205751, 71, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 97, 97, 300000131, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270002528, 'sppbots', 'fedopIIeTpoB88', 11066012, 37, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 22, 22, 300000094, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270002529, 'sppbots', 'FedorSmirnov9', 7729999, 34, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 15, 15, 0, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270002530, 'sppbots', 'NatahaSmirnoff99', 2925229, 27, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 15, 15, 300000009, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270002531, 'sppbots', 'DobryjKot', 606319094, 73, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 108, 108, 0, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270002532, 'sppbots', 'StepanPetrow87', 101676, 12, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 0, 0, 300000034, 'PKK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270002533, 'sppbots', 'daLLIKacMupHoB', 28049509, 46, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 24, 24, 300000004, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270002534, 'sppbots', 'TuxuucTeIIaH', 101676, 12, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 0, 0, 300000067, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270002535, 'sppbots', 'M0nkRUS', 539995, 18, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 31, 31, 300000075, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270002536, 'sppbots', 'HitryjUbivator03', 80700339, 56, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 88, 88, 300000042, 'PKK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270002537, 'sppbots', 'ProstoEzhik', 363, 3, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 10, 10, 300000059, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270002538, 'sppbots', 'StaryyPetruha', 71201, 11, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 10, 10, 300000064, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270002539, 'sppbots', 'Monakh', 8740372, 35, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 26, 26, 300000028, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270002540, 'sppbots', '6paToKrapazh', 696376867, 74, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 90, 90, 300000149, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270002541, 'sppbots', 'KaratelSosed', 3407873, 28, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 1, 1, 300000084, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270002542, 'sppbots', 'Demon29', 33679907, 48, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 2, 2, 0, 'PKK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270002543, 'sppbots', 'KentPacan2001', 91162131, 57, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 102, 102, 300000002, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270002544, 'sppbots', 'SilentDream', 696376867, 74, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 103, 103, 300000143, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270002545, 'sppbots', 'zhirnyjubivator', 48229, 10, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 0, 0, 300000067, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270002546, 'sppbots', 'Hunter99', 68, 2, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 38, 38, 300000012, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270002547, 'sppbots', 'BloodClaw', 11066012, 37, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 22, 22, 300000009, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270002548, 'sppbots', 'TrueBl4deGarazh', 1168, 4, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 0, 0, 300000052, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270002549, 'sppbots', 'vitekivanow97', 426284, 17, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 44, 44, 300000036, 'PKK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270002550, 'sppbots', 'MaksPupkin2', 12395149, 38, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 26, 26, 300000093, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270002551, 'sppbots', 'LysyyShaurma01', 4555766, 30, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 22, 22, 300000046, 'PKK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270002552, 'sppbots', 'LenkaDragon', 7729999, 34, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 4, 4, 300000093, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270002553, 'sppbots', 'VovanKuznecov', 18995573, 42, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 27, 27, 300000102, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270002554, 'sppbots', 'MCIce', 126509030, 60, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 94, 94, 300000002, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270002555, 'sppbots', 'MrDobryyLehaSoul', 48229, 10, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 31, 31, 300000040, 'PKK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270002556, 'sppbots', 'rpo3HbIuIIacaH', 2884, 5, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 10, 10, 300000058, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270002557, 'sppbots', 'orypec3adpoT', 141192, 13, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 0, 0, 300000063, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270002558, 'sppbots', 'GhostS0ul', 21007103, 43, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 40, 40, 300000108, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270002559, 'sppbots', 'MeJIKuuIIeTpyxa', 167243291, 62, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 92, 92, 300000129, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270002560, 'sppbots', '6op3bIuupKa', 189363788, 63, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 103, 103, 300000122, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270002561, 'sppbots', 'cTapbIuoJIer', 2884, 5, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 44, 44, 300000053, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270002562, 'sppbots', 'PodezdKent', 606319094, 73, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 94, 94, 300000147, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270002563, 'sppbots', 'DarkDragon', 8740372, 35, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 26, 26, 300000093, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270002564, 'sppbots', 'IIaJIbI4MedBedeB', 30764519, 47, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 40, 40, 300000029, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270002565, 'sppbots', 'IIecKoT', 141192, 13, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 0, 0, 300000005, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270002566, 'sppbots', 'TaHKucTTpaBKa', 11066012, 37, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 7, 7, 300000040, 'PKK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270002567, 'sppbots', 'KpacaB4uKxoM9IK', 0, 1, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 10, 10, 300000055, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270002568, 'sppbots', 'DikiyPetrovich2', 21007103, 43, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 24, 24, 300000103, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270002569, 'sppbots', 'IIpocToKoJI9IH', 80700339, 56, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 93, 93, 300000125, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270002570, 'sppbots', 'UnylyjKrasavchik', 0, 1, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 0, 0, 0, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270002571, 'sppbots', 'BatyaTitan', 532692055, 72, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 90, 90, 300000146, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270002572, 'sppbots', 'M4geRUS', 80700339, 56, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 113, 113, 300000125, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270002573, 'sppbots', 'FrostSnipER', 48229, 10, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 18, 18, 300000042, 'PKK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270002574, 'sppbots', 'Soul2002', 25524751, 45, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 40, 40, 300000103, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270002575, 'sppbots', 'aHdpIOxauBaHoB', 71201, 11, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 10, 10, 0, 'PKK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270002576, 'sppbots', 'IOpeccudopoB', 68, 2, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 38, 38, 300000059, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270002577, 'sppbots', 'D4rkFire', 2497059, 26, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 35, 35, 300000083, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270002578, 'sppbots', 'MaMKuHduMoH', 28049509, 46, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 2, 2, 300000024, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270002579, 'sppbots', 'LLIycTpbIucyxapb', 2884, 5, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 25, 25, 300000052, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270002580, 'sppbots', 'BloodTrueRid3r', 9850111, 36, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 1, 1, 300000100, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270002581, 'sppbots', 'caHeK45', 33679907, 48, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 8, 8, 300000117, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270002582, 'sppbots', 'GhostCheburek77', 1168, 4, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 25, 25, 300000054, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270002583, 'sppbots', 'yrapHbIucepera', 141192, 13, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 53, 53, 300000001, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270002584, 'sppbots', 'Kozlow3', 1495531, 23, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 53, 53, 300000080, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270002585, 'sppbots', 'T1tan', 532692055, 72, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 94, 94, 300000144, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270002586, 'sppbots', 'FrostAngel04', 1786365, 24, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 11, 11, 300000005, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270002587, 'sppbots', 'LLIaLLIJIbIK2005', 1168, 4, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 0, 0, 300000058, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270002588, 'sppbots', 'SonnyyPalychStar', 2925229, 27, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 4, 4, 300000082, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270002589, 'sppbots', 'Sw1ftRider8', 36806133, 49, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 24, 24, 300000010, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270002590, 'sppbots', 'KupIOxaKiller', 11066012, 37, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 7, 7, 300000094, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270002591, 'sppbots', 'Titan01', 57383682, 53, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 24, 24, 300000114, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270002592, 'sppbots', 'LyutyjPetruha91', 11287, 7, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 31, 31, 300000058, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270002593, 'sppbots', 'Soul', 191452, 14, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 10, 10, 300000061, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270002594, 'sppbots', 'NaglyjBishop', 7729999, 34, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 11, 11, 300000091, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270002595, 'sppbots', 'BarsukLopATA30', 3949727, 29, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 54, 54, 300000084, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270002596, 'sppbots', 'OldBlackM0nk', 28049509, 46, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 16, 16, 0, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270002597, 'sppbots', 'zlojpalych04', 346825235, 68, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 92, 92, 300000135, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270002598, 'sppbots', 'Bl4ckBloodClaw', 532692055, 72, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 97, 97, 300000028, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270002599, 'sppbots', 'Kozlov', 141192, 13, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 10, 10, 300000066, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270002600, 'sppbots', 'KpuBouded', 126509030, 60, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 92, 92, 300000129, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270002601, 'sppbots', 'Slayer', 387197529, 69, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 88, 88, 300000134, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270002602, 'sppbots', 'M4dEvilMonk', 33679907, 48, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 55, 55, 300000120, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270002603, 'sppbots', 'BloodTerminator', 80700339, 56, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 90, 90, 300000125, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270002604, 'sppbots', 'MCBloodSlayer', 18995573, 42, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 8, 8, 0, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270002605, 'sppbots', 'SonnyyTolyan57', 1023775, 21, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 45, 45, 300000071, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270002606, 'sppbots', 'ogurecbelyash', 9850111, 36, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 39, 39, 300000098, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270002607, 'sppbots', 'knight73', 1786365, 24, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 53, 53, 300000049, 'PKK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270002608, 'sppbots', 'KotLopata59', 51262204, 52, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 36, 36, 300000041, 'PKK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270002609, 'sppbots', 'SwiftLord93', 5981539, 32, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 39, 39, 300000030, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270002610, 'sppbots', 'ShashlykArrow', 2925229, 27, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 7, 7, 300000083, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270002611, 'sppbots', 'VedmakShaurma', 146307211, 61, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 102, 102, 300000129, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270002612, 'sppbots', 'PesNagibator51', 30764519, 47, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 5, 5, 300000009, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270002613, 'sppbots', 'MadSkvoznyak', 141192, 13, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 25, 25, 300000027, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270002614, 'sppbots', 'DobryyTolyan', 2118860, 25, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 35, 35, 300000081, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270002615, 'sppbots', 'KupIIu4TaIIoK', 387197529, 69, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 88, 88, 300000131, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270002616, 'sppbots', 'MadFang97', 11287, 7, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 53, 53, 300000009, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270002617, 'sppbots', 'IrkaKozlov', 539995, 18, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 44, 44, 300000080, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270002618, 'sppbots', 'Claw92', 8740372, 35, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 35, 35, 300000095, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270002619, 'sppbots', '4eTKuuoJIerClaw', 363, 3, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 0, 0, 300000009, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270002620, 'sppbots', 'roJIodHbIucepera', 2884, 5, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 25, 25, 300000051, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270002621, 'sppbots', 'ChiterMuhomor80', 31378, 9, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 0, 0, 300000026, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270002622, 'sppbots', 'nataha93', 1023775, 21, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 15, 15, 300000079, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270002623, 'sppbots', 'K1ng', 1786365, 24, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 39, 39, 300000088, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270002624, 'sppbots', 'UgarnyjIrka19', 191452, 14, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 25, 25, 300000063, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270002625, 'sppbots', '6odpbIuupKaL0rd', 1023775, 21, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 4, 4, 300000076, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270002626, 'sppbots', 'ChesnokReaper', 254327, 15, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 44, 44, 300000005, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270002627, 'sppbots', '3JIouTaHIOxa', 30764519, 47, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 55, 55, 300000001, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270002628, 'sppbots', 'TepMuHaTop6aToH', 2925229, 27, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 45, 45, 300000035, 'PKK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270002629, 'sppbots', 'IIacaH7', 696376867, 74, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 97, 97, 300000146, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270002630, 'sppbots', 'ToIIop', 308441375, 67, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 93, 93, 300000134, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270002631, 'sppbots', 'PetrUXA', 70852742, 55, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 110, 110, 300000116, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270002632, 'sppbots', 'ev1lmonk', 63907585, 54, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 9, 9, 300000001, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270002633, 'sppbots', 'MeJIKuuJIeHKa', 5981539, 32, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 7, 7, 300000098, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270002634, 'sppbots', 'WildFaNG97', 2925229, 27, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 7, 7, 300000081, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270002635, 'sppbots', 'N1ghtMAG3', 675590, 19, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 31, 31, 300000007, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270002636, 'sppbots', 'VovanSidorOFF86', 102265326, 58, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 90, 90, 300000125, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270002637, 'sppbots', 'cBeTKaIIyIIKuH', 2925229, 27, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 15, 15, 0, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270002638, 'sppbots', 'WowanIvanov86', 1168, 4, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 10, 10, 300000055, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270002639, 'sppbots', 'StaryyNatakha', 363, 3, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 38, 38, 300000027, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270002640, 'sppbots', 'IIaLLIaBoJIKoB', 675590, 19, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 18, 18, 0, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270002641, 'sppbots', 'dep3KuuKupIOxa01', 539995, 18, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 31, 31, 300000076, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270002642, 'sppbots', 'dedTpaBKa07', 0, 1, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 0, 0, 300000060, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270002643, 'sppbots', 'OldIce', 15422851, 40, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 16, 16, 300000102, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270002644, 'sppbots', 'caHeK', 40153995, 50, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 46, 46, 300000118, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270002645, 'sppbots', 'Swe3tFaNG', 70852742, 55, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 97, 97, 300000120, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270002646, 'sppbots', 'BlackMage', 6812472, 33, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 4, 4, 0, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270002647, 'sppbots', 'xXFrostBishopXx', 141192, 13, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 0, 0, 300000065, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270002648, 'sppbots', '6aToH', 3949727, 29, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 11, 11, 300000084, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270002649, 'sppbots', 'DjAndryuha', 308441375, 67, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 97, 97, 300000027, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270002650, 'sppbots', 'TrueBloodFang', 1786365, 24, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 15, 15, 300000084, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270002651, 'sppbots', 'BlackClaw1993', 1168, 4, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 0, 0, 300000059, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270002652, 'sppbots', 'rpo3HbIucBeTKa66', 0, 1, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 0, 0, 300000060, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270002653, 'sppbots', 'MCGarazhBaton', 2925229, 27, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 26, 26, 300000083, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270002654, 'sppbots', 'tolyanvolkow', 804219972, 75, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 102, 102, 300000143, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270002655, 'sppbots', 'daLLIKauBaHoB', 191452, 14, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 0, 0, 300000068, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270002656, 'sppbots', 'TolikSmirnOFF', 696376867, 74, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 110, 110, 300000012, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270002657, 'sppbots', 'oJIerKy3HecoB', 51262204, 52, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 2, 2, 300000004, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270002658, 'sppbots', '6eLLIeHbIuKoT1', 48229, 10, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 0, 0, 300000067, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270002659, 'sppbots', 'Ugarnyy50ul', 0, 1, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 0, 0, 300000020, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270002660, 'sppbots', 'LoneClaw95', 212716741, 64, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 93, 93, 300000131, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270002661, 'sppbots', 'PalychKuznecoff', 606319094, 73, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 92, 92, 300000144, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270002662, 'sppbots', 'Slayer64', 126509030, 60, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 93, 93, 300000121, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270002663, 'sppbots', 'TixijVasya', 7729999, 34, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 54, 54, 300000094, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270002664, 'sppbots', 'IIaJIbI4IIyIIKuH', 11287, 7, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 10, 10, 0, 'PKK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270002665, 'sppbots', 'Iwanow', 1242536, 22, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 4, 4, 300000078, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270002666, 'sppbots', 'Nataxa', 675590, 19, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 18, 18, 300000044, 'PKK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270002667, 'sppbots', 'HitryyAngel', 13844879, 39, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 4, 4, 300000028, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270002668, 'sppbots', 'BlackKiller93', 1023775, 21, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 15, 15, 0, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270002669, 'sppbots', 'Ka6aH5', 2884, 5, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 10, 10, 300000060, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270002670, 'sppbots', 'BorzyjChesnok05', 70852742, 55, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 97, 97, 300000118, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270002671, 'sppbots', 'ShustryjSn1per', 6812472, 33, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 45, 45, 300000098, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270002672, 'sppbots', 'UnylyyZhEKA', 1242536, 22, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 39, 39, 300000076, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270002673, 'sppbots', 'caH9IKy3HecoB', 45524865, 51, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 16, 16, 300000005, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270002674, 'sppbots', 'roIIHuK94', 167243291, 62, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 108, 108, 300000049, 'PKK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270002675, 'sppbots', 'IronL0rd91', 474205751, 71, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 93, 93, 300000138, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270002676, 'sppbots', 'GrimStormAngel', 331864, 16, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 38, 38, 0, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270002677, 'sppbots', 'BlackSwiftSoul', 189363788, 63, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 97, 97, 300000121, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270002678, 'sppbots', 'EvilMonk', 474205751, 71, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 113, 113, 300000131, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270002679, 'sppbots', 'yrapHbIuDemon', 17137002, 41, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 36, 36, 300000104, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270002680, 'sppbots', 'cTapbIupycJIaH', 63907585, 54, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 36, 36, 300000048, 'PKK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270002681, 'sppbots', 'SwiftBarsuk', 0, 1, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 31, 31, 300000049, 'PKK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270002682, 'sppbots', 'lyutyjbarsukstar', 18995573, 42, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 8, 8, 300000108, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270002683, 'sppbots', 'duKuuSniper', 45524865, 51, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 2, 2, 300000029, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270002684, 'sppbots', '3auceB05', 71201, 11, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 0, 0, 300000064, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270002685, 'sppbots', 'xXOldDeMONXx', 51262204, 52, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 40, 40, 300000116, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270002686, 'sppbots', 'Oleg90', 331864, 16, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 25, 25, 300000071, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270002687, 'sppbots', 'GopnikBaTON', 17137002, 41, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 36, 36, 0, 'PKK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270002688, 'sppbots', 'StormKing02', 63907585, 54, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 5, 5, 300000118, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270002689, 'sppbots', 'MrSoul1986', 101676, 12, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 53, 53, 300000066, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270002690, 'sppbots', 'MelkijChushpan', 15422851, 40, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 12, 12, 300000104, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270002691, 'sppbots', 'IIeTpyxacMupHoB', 68, 2, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 38, 38, 300000035, 'PKK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270002692, 'sppbots', 'XitryyRider8', 33679907, 48, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 9, 9, 300000025, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270002693, 'sppbots', 'TaHIOxacMupHoB', 68, 2, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 18, 18, 300000051, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270002694, 'sppbots', 'coHHbIuDream17', 2497059, 26, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 54, 54, 300000082, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270002695, 'sppbots', '6aT9I', 3949727, 29, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 26, 26, 300000002, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270002696, 'sppbots', 'WildSwiftDream', 191452, 14, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 10, 10, 300000061, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270002697, 'sppbots', '3auceB1990', 51262204, 52, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 5, 5, 0, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270002698, 'sppbots', 'do6pbIuKupIIu4', 13844879, 39, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 26, 26, 300000099, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270002699, 'sppbots', 'Blood50sed28', 3407873, 28, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 11, 11, 300000086, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270002700, 'sppbots', 'WitekIvanOFF', 15422851, 40, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 5, 5, 300000101, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270002701, 'sppbots', 'LoneSniperLord', 191452, 14, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 18, 18, 300000029, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270002702, 'sppbots', 'LoneIce90', 931275828, 76, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 92, 92, 300000143, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270002703, 'sppbots', 'KeHTTpaBKa', 11287, 7, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 0, 0, 300000060, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270002704, 'sppbots', 'ToJI9IHuBaHoB', 68, 2, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 31, 31, 300000029, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270002705, 'sppbots', 'BloodBladeBlade', 5981539, 32, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 4, 4, 300000100, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270002706, 'sppbots', 'MedoedRid3r', 212716741, 64, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 92, 92, 0, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270002707, 'sppbots', 'ProstoHunTER7', 6038, 6, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 10, 10, 300000056, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270002708, 'sppbots', 'DikijVitekPetrov', 675590, 19, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 38, 38, 300000080, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270002709, 'sppbots', 'RzhawyjSanya', 426284, 17, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 0, 0, 300000080, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270002710, 'sppbots', 'EzhikKent', 18995573, 42, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 27, 27, 0, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270002711, 'sppbots', 'Petrow', 51262204, 52, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 9, 9, 300000022, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270002712, 'sppbots', 'BeshenyyTopor', 6812472, 33, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 45, 45, 300000099, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270002713, 'sppbots', 'NightR3aper', 18995573, 42, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 46, 46, 300000005, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270002714, 'sppbots', 'BlackFrostBi5h0p', 80700339, 56, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 90, 90, 300000121, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270002715, 'sppbots', 'DarkFIRE', 71201, 11, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 10, 10, 300000068, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270002716, 'sppbots', 'LyutyyMarmelad', 9850111, 36, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 15, 15, 300000097, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270002717, 'sppbots', 'ModHbIuKefup04', 6038, 6, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 44, 44, 0, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270002718, 'sppbots', 'NubXolodok', 146307211, 61, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 93, 93, 300000010, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270002719, 'sppbots', 'Shad0wWolfHunter', 426284, 17, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 0, 0, 300000078, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270002720, 'sppbots', 'ZlojGrisha', 71201, 11, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 0, 0, 300000067, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270002721, 'sppbots', 'StormMage', 0, 1, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 10, 10, 300000058, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270002722, 'sppbots', 'wildhunt3r', 1495531, 23, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 7, 7, 300000077, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270002723, 'sppbots', '3JIouToIIop', 4555766, 30, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 39, 39, 300000089, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270002724, 'sppbots', 'SwiftIce4', 91162131, 57, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 92, 92, 300000020, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270002725, 'sppbots', 'MrShashlyk', 33679907, 48, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 12, 12, 300000115, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270002726, 'sppbots', 'Smirnov', 1168, 4, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 31, 31, 300000059, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270002727, 'sppbots', 'Volkov', 1168, 4, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 10, 10, 300000060, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270002728, 'sppbots', '1c31985', 19423, 8, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 31, 31, 300000070, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270002729, 'sppbots', 'GhostKnightAnGEL', 6812472, 33, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 11, 11, 300000015, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270002730, 'sppbots', 'PalychZaycev05', 146307211, 61, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 108, 108, 0, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270002731, 'sppbots', 'EvilArr0w1987RUS', 45524865, 51, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 24, 24, 300000115, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270002732, 'sppbots', 'pzhaBbIurHoM', 0, 1, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 31, 31, 300000060, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270002733, 'sppbots', 'ShashlykKot', 331864, 16, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 0, 0, 300000025, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270002734, 'sppbots', 'roJIodHbIucaHeK', 6812472, 33, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 45, 45, 300000005, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270002735, 'sppbots', 'MrMedwedev7', 23180442, 44, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 8, 8, 300000108, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270002736, 'sppbots', 'DjModnyyKent', 3949727, 29, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 45, 45, 300000029, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270002737, 'sppbots', 'WildAngel', 102265326, 58, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 113, 113, 300000122, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270002738, 'sppbots', '5t0rmDr4gon2', 237351413, 65, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 117, 117, 300000138, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270002739, 'sppbots', 'Shaurma9', 5981539, 32, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 7, 7, 300000094, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270002740, 'sppbots', 'BorzyjAngel74', 68, 2, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 10, 10, 300000058, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270002741, 'sppbots', 'King2002', 102265326, 58, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 94, 94, 300000031, 'PKK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270002742, 'sppbots', 'oldmasterclaw', 675590, 19, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 53, 53, 300000075, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270002743, 'sppbots', 'NightAngel', 126509030, 60, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 97, 97, 300000018, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270002744, 'sppbots', 'xXHy6IIec01Xx', 532692055, 72, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 113, 113, 300000022, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270002745, 'sppbots', 'M4dKnightRUS', 8740372, 35, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 26, 26, 300000091, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270002746, 'sppbots', 'StasPetroffRUS', 23180442, 44, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 24, 24, 300000104, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270002747, 'sppbots', 'do6pbIuupKa', 11287, 7, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 44, 44, 300000053, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270002748, 'sppbots', 'rpuLLIaIIyIIKuH', 2884, 5, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 0, 0, 300000051, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270002749, 'sppbots', 'LLIycTpbIuM4ge', 804219972, 75, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 94, 94, 300000149, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270002750, 'sppbots', 'cTacClaw', 11066012, 37, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 39, 39, 300000007, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270002751, 'sppbots', 'BedbMaK6eJI9ILLI', 804219972, 75, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 108, 108, 300000010, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270002752, 'sppbots', '3JIourapazh', 68, 2, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 10, 10, 300000027, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270002753, 'sppbots', 'MrBoJIK', 606319094, 73, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 97, 97, 300000150, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270002754, 'sppbots', 'FrostRaven', 835854, 20, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 11, 11, 300000048, 'PKK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270002755, 'sppbots', 'KolyanVolkoffRUS', 1495531, 23, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 22, 22, 300000080, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270002756, 'sppbots', '3adpoTFire', 68, 2, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 0, 0, 300000010, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270002757, 'sppbots', 'FrostDreamArrow', 11287, 7, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 18, 18, 300000052, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270002758, 'sppbots', 'ModnyjBaton', 101676, 12, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 44, 44, 300000066, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270002759, 'sppbots', 'TapokVoLK', 146307211, 61, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 97, 97, 300000126, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270002760, 'sppbots', 'DjGrimClaw', 804219972, 75, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 90, 90, 300000020, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270002761, 'sppbots', 'DarkIce', 5231213, 31, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 22, 22, 300000032, 'PKK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270002762, 'sppbots', 'BorzyjSkwoznyak', 2884, 5, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 18, 18, 300000052, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270002763, 'sppbots', 'DjWild4ng3l', 63907585, 54, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 12, 12, 300000117, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270002764, 'sppbots', 'GrimReaper', 45524865, 51, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 8, 8, 0, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270002765, 'sppbots', 'LoneAngelSlayer', 9850111, 36, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 22, 22, 0, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270002766, 'sppbots', 'Ko3JIoB01', 2925229, 27, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 35, 35, 300000082, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270002767, 'sppbots', 'LLIaLLIJIbIK07', 675590, 19, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 53, 53, 300000034, 'PKK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270002768, 'sppbots', 'FrostD34th', 2884, 5, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 10, 10, 300000007, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270002769, 'sppbots', 'JIbIcbIuaHdpIOxa', 31378, 9, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 31, 31, 300000070, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270002770, 'sppbots', '6odpbIuKiller05', 1495531, 23, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 15, 15, 300000020, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270002771, 'sppbots', 'TrueL0rdBarsuk88', 15422851, 40, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 40, 40, 300000110, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270002772, 'sppbots', 'DarkKingRUS', 45524865, 51, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 36, 36, 0, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270002773, 'sppbots', 'cTapbIuIOpec1', 363, 3, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 31, 31, 300000059, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270002774, 'sppbots', 'XitryjSanya', 331864, 16, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 25, 25, 300000074, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270002775, 'sppbots', 'HitryyGarazh', 146307211, 61, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 103, 103, 0, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270002776, 'sppbots', 'xoM9IKKa6aH', 429632402, 70, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 103, 103, 300000139, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270002777, 'sppbots', 'StormDre4mRogue', 91162131, 57, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 93, 93, 300000125, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270002778, 'sppbots', '4ecHoKIIacaH', 91162131, 57, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 103, 103, 0, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270002779, 'sppbots', 'IronAngel', 48229, 10, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 10, 10, 300000067, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270002780, 'sppbots', 'EzhikVolk', 36806133, 49, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 46, 46, 300000014, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270002781, 'sppbots', 'NightHunter', 189363788, 63, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 103, 103, 300000126, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270002782, 'sppbots', 'TaHKucTBedbMaK89', 57383682, 53, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 12, 12, 300000113, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270002783, 'sppbots', '6aT9I4e6ypeK', 539995, 18, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 18, 18, 300000071, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270002784, 'sppbots', '5t0rmCl4w', 17137002, 41, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 24, 24, 300000106, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270002785, 'sppbots', 'GrimWolf', 36806133, 49, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 27, 27, 300000115, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270002786, 'sppbots', 'GrimAngel', 426284, 17, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 0, 0, 300000079, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270002787, 'sppbots', 'MapMeJIad6paToK', 804219972, 75, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 88, 88, 300000012, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270002788, 'sppbots', 'OldM4g3', 57383682, 53, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 5, 5, 300000029, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270002789, 'sppbots', 'MadBlade', 11287, 7, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 44, 44, 300000051, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270002790, 'sppbots', 'TrueKompot1', 696376867, 74, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 88, 88, 300000142, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270002791, 'sppbots', 'Mage2007RUS', 3407873, 28, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 45, 45, 300000006, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270002792, 'sppbots', 'yurecsmirnov1998', 1786365, 24, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 35, 35, 300000090, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270002793, 'sppbots', 'MrWildIceBlade', 7729999, 34, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 39, 39, 300000021, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270002794, 'sppbots', 'Hy6KpacaB4uK', 7729999, 34, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 26, 26, 300000100, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270002795, 'sppbots', 'KoT6', 102265326, 58, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 94, 94, 300000040, 'PKK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270002796, 'sppbots', 'DjStormDream92', 237351413, 65, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 103, 103, 300000041, 'PKK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270002797, 'sppbots', 'LoneRogu3', 17137002, 41, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 40, 40, 300000110, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270002798, 'sppbots', 'ModHbIurHoM', 17137002, 41, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 12, 12, 300000018, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270002799, 'sppbots', '3JIouSniper', 31378, 9, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 0, 0, 300000066, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270002800, 'sppbots', 'WildSniper', 0, 1, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 0, 0, 300000006, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270002801, 'sppbots', 'GhostDeathClaw', 13844879, 39, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 7, 7, 300000018, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270002802, 'sppbots', 'DjEvilTitan', 36806133, 49, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 27, 27, 300000119, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270002803, 'sppbots', 'LysyyMedoedRogue', 11066012, 37, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 7, 7, 300000094, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270002804, 'sppbots', 'ProstoFire', 1495531, 23, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 1, 1, 300000076, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270002805, 'sppbots', 'NastyaKuznecoff', 675590, 19, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 0, 0, 300000009, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270002806, 'sppbots', 'BlackKnightRUS', 167243291, 62, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 108, 108, 300000127, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270002807, 'sppbots', 'NightRogueLord', 237351413, 65, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 103, 103, 300000132, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270002808, 'sppbots', 'SvetkaPupkin', 1242536, 22, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 35, 35, 300000074, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270002809, 'sppbots', 'natakhapetroff', 539995, 18, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 31, 31, 300000072, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270002810, 'sppbots', 'AndryuhaIwanov5', 429632402, 70, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 88, 88, 300000131, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270002811, 'sppbots', 'MCSwiftZadrot', 45524865, 51, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 55, 55, 0, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270002812, 'sppbots', 'Nastya', 18995573, 42, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 8, 8, 300000016, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270002813, 'sppbots', 'OlegMedvedev', 48229, 10, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 0, 0, 300000066, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270002814, 'sppbots', 'ZadrotShaurma', 101676, 12, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 0, 0, 300000065, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270002815, 'sppbots', 'OldReaper', 17137002, 41, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 5, 5, 300000109, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270002816, 'sppbots', 'KentReaper02', 80700339, 56, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 110, 110, 0, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270002817, 'sppbots', 'Zajcev', 25524751, 45, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 27, 27, 300000102, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270002818, 'sppbots', 'EzhikBratok', 254327, 15, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 53, 53, 300000031, 'PKK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270002819, 'sppbots', 'Ky3HecoB4', 6038, 6, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 44, 44, 300000030, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270002820, 'sppbots', 'WedmakKent1993', 331864, 16, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 0, 0, 300000071, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270002821, 'sppbots', 'oldfire98', 40153995, 50, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 24, 24, 0, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270002822, 'sppbots', 'ChiterBatya', 19423, 8, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 44, 44, 0, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270002823, 'sppbots', 'DjTrueSoul', 23180442, 44, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 2, 2, 300000101, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270002824, 'sppbots', 'MrReaper', 363, 3, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 0, 0, 300000028, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270002825, 'sppbots', 'ZhekaPetrov6', 2118860, 25, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 1, 1, 300000089, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270002826, 'sppbots', 'SilentDragon', 191452, 14, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 44, 44, 300000008, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270002827, 'sppbots', 'Tanyuha9', 2925229, 27, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 54, 54, 300000086, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270002828, 'sppbots', 'GhostDeath17', 1168, 4, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 0, 0, 300000057, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270002829, 'sppbots', 'SilentWolf5', 346825235, 68, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 103, 103, 300000006, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270002830, 'sppbots', 'LLIycTpbIuKa6aH', 0, 1, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 10, 10, 300000059, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270002831, 'sppbots', 'KapaTeJIb', 63907585, 54, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 36, 36, 300000113, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270002832, 'sppbots', 'ModnyjDimon', 13844879, 39, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 7, 7, 300000091, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270002833, 'sppbots', 'GhostMonk', 30764519, 47, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 5, 5, 300000007, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270002834, 'sppbots', 'KeHTded', 146307211, 61, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 97, 97, 300000005, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270002835, 'sppbots', 'GrimFire', 101676, 12, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 38, 38, 300000070, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270002836, 'sppbots', 'DobryyNagibator', 11287, 7, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 0, 0, 300000017, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270002837, 'sppbots', 'rpuLLIaIIeTpoB7', 21007103, 43, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 16, 16, 0, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270002838, 'sppbots', '1ronSweetDeath', 363, 3, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 10, 10, 300000048, 'PKK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270002839, 'sppbots', 'Valenok69', 675590, 19, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 25, 25, 300000080, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270002840, 'sppbots', 'HarJIbIucBeTKa5', 2497059, 26, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 4, 4, 300000027, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270002841, 'sppbots', 'ShashlykKent', 45524865, 51, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 2, 2, 0, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270002842, 'sppbots', 'Mrcepera', 189363788, 63, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 97, 97, 300000030, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270002843, 'sppbots', 'GrisHA8', 2884, 5, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 18, 18, 300000009, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270002844, 'sppbots', 'TixiyNub1', 11066012, 37, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 26, 26, 300000099, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270002845, 'sppbots', 'HitryySniper', 606319094, 73, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 93, 93, 300000141, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270002846, 'sppbots', 'GrimHunterArrow', 11287, 7, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 10, 10, 300000052, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270002847, 'sppbots', 'MyxoMopTaIIoK', 254327, 15, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 53, 53, 300000045, 'PKK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270002848, 'sppbots', 'krasavchikRUS', 363, 3, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 10, 10, 300000056, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270002849, 'sppbots', 'ToIIop89', 57383682, 53, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 12, 12, 300000019, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270002850, 'sppbots', 'ezhuKClaw2006', 13844879, 39, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 45, 45, 300000096, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270002851, 'sppbots', 'Bl4ckIce', 2497059, 26, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 7, 7, 300000083, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270002852, 'sppbots', 'Vovan62', 1242536, 22, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 11, 11, 0, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270002853, 'sppbots', '1ronIce', 36806133, 49, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 8, 8, 300000002, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270002854, 'sppbots', 'MrNubMageRUS', 48229, 10, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 38, 38, 300000070, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270002855, 'sppbots', 'duKuucTeIIaH', 1242536, 22, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 35, 35, 300000030, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270002856, 'sppbots', 'CrazyWolf', 71201, 11, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 0, 0, 300000068, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270002857, 'sppbots', 'Mage72', 25524751, 45, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 5, 5, 300000102, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270002858, 'sppbots', 'ChumaZadROT', 31378, 9, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 38, 38, 300000068, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270002859, 'sppbots', 'BoBaHIIyIIKuHRUS', 2497059, 26, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 35, 35, 0, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270002860, 'sppbots', 'Bl4ckOgurec', 6812472, 33, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 4, 4, 300000015, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270002861, 'sppbots', 'LyutyyMonaxNub5', 387197529, 69, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 90, 90, 300000014, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270002862, 'sppbots', 'IIeTpyxaKy3HecoB', 1786365, 24, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 7, 7, 300000044, 'PKK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270002863, 'sppbots', 'RaVEN29', 6812472, 33, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 35, 35, 300000100, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270002864, 'sppbots', 'BloodKING91', 835854, 20, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 53, 53, 300000072, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270002865, 'sppbots', 'Reaper06', 1242536, 22, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 53, 53, 300000074, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270002866, 'sppbots', 'xXIronBishopXx', 36806133, 49, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 27, 27, 300000119, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270002867, 'sppbots', 'xuTpbIuJIexa', 25524751, 45, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 27, 27, 300000110, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270002868, 'sppbots', 'xXgrimclawfireXx', 167243291, 62, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 113, 113, 300000127, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270002869, 'sppbots', 'StormBishopStar', 1495531, 23, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 11, 11, 300000072, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270002870, 'sppbots', 'PalychZaycev', 0, 1, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 0, 0, 300000057, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270002871, 'sppbots', 'LLIycTpbIuBoB4uK', 6812472, 33, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 22, 22, 0, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270002872, 'sppbots', 'xXRaven97Xx', 2884, 5, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 10, 10, 300000058, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270002873, 'sppbots', 'upKaTitan', 30764519, 47, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 40, 40, 300000005, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270002874, 'sppbots', 'yHbIJIbIuToJIuK', 6812472, 33, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 39, 39, 0, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270002875, 'sppbots', 'MCJIbIcbIucaH9I', 426284, 17, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 10, 10, 300000038, 'PKK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270002876, 'sppbots', 'GhostClaw', 189363788, 63, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 88, 88, 300000036, 'PKK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270002877, 'sppbots', 'ShadowR1der', 146307211, 61, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 88, 88, 300000128, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270002878, 'sppbots', 'pzhaBbIuToJI9IH', 3407873, 28, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 54, 54, 300000004, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270002879, 'sppbots', 'BloodKompot', 71201, 11, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 0, 0, 300000018, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270002880, 'sppbots', '3adpoTxoJIodoK', 19423, 8, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 0, 0, 300000070, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270002881, 'sppbots', 'ModHbIuduMaH', 48229, 10, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 31, 31, 0, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270002882, 'sppbots', 'shustryyserega93', 36806133, 49, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 36, 36, 300000111, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270002883, 'sppbots', '5w1ftAngel1987', 57383682, 53, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 46, 46, 300000115, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270002884, 'sppbots', 'unylyyvedmakpes', 19423, 8, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 10, 10, 0, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270002885, 'sppbots', 'BoBaHuBaHoB', 146307211, 61, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 103, 103, 300000013, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270002886, 'sppbots', 'MCGopnikChiter', 30764519, 47, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 46, 46, 300000108, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270002887, 'sppbots', 'WildM0nk5t4r', 4555766, 30, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 7, 7, 300000050, 'PKK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270002888, 'sppbots', 'Wolf93', 1168, 4, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 0, 0, 300000011, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270002889, 'sppbots', 'BorzyySvetkaKing', 114038008, 59, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 113, 113, 300000128, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270002890, 'sppbots', 'Bish0p', 11287, 7, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 25, 25, 300000058, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270002891, 'sppbots', 'DjKnight', 91162131, 57, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 90, 90, 300000121, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270002892, 'sppbots', 'cepera', 237351413, 65, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 93, 93, 300000135, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270002893, 'sppbots', 'rpuLLIaBoJIKoB6', 11066012, 37, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 15, 15, 300000017, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270002894, 'sppbots', 'caHeKSlayerRUS', 2925229, 27, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 11, 11, 300000014, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270002895, 'sppbots', 'MadWolf2000', 25524751, 45, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 2, 2, 300000032, 'PKK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270002896, 'sppbots', 'PodezdKaratel', 9850111, 36, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 1, 1, 300000025, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270002897, 'sppbots', 'ModnyyZadrotKot', 474205751, 71, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 108, 108, 300000009, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270002898, 'sppbots', 'xXxuTpbIu6aToHXx', 835854, 20, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 53, 53, 300000073, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270002899, 'sppbots', 'GrishaZajcev', 804219972, 75, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 113, 113, 300000142, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270002900, 'sppbots', 'TrueDrag0n', 15422851, 40, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 5, 5, 300000024, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270002901, 'sppbots', 'Kefuprapazh97', 2925229, 27, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 7, 7, 300000019, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270002902, 'sppbots', 'TapokTapok', 331864, 16, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 10, 10, 0, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270002903, 'sppbots', 'TixiyKot', 57383682, 53, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 36, 36, 300000007, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270002904, 'sppbots', 'CrazyKiller', 2884, 5, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 25, 25, 300000026, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270002905, 'sppbots', 'W1ldBlade1991', 31378, 9, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 25, 25, 300000025, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270002906, 'sppbots', 'DjStaryyKiller', 28049509, 46, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 40, 40, 300000105, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270002907, 'sppbots', 'MrDream87', 17137002, 41, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 55, 55, 0, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270002908, 'sppbots', 'Dream', 12395149, 38, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 7, 7, 300000096, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270002909, 'sppbots', 'GhostMag393', 28049509, 46, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 27, 27, 0, 'PKK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270002910, 'sppbots', 'BloodBish0p', 102265326, 58, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 97, 97, 300000123, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270002911, 'sppbots', 'xXLexaPetrow1Xx', 11066012, 37, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 39, 39, 300000023, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270002912, 'sppbots', 'FrostTapok2003', 15422851, 40, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 8, 8, 300000109, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270002913, 'sppbots', 'MelkijPetrovich', 2884, 5, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 25, 25, 300000055, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270002914, 'sppbots', 'LLIycTpbIuIOpec', 30764519, 47, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 16, 16, 300000101, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270002915, 'sppbots', 'stormcheburek', 21007103, 43, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 5, 5, 300000105, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270002916, 'sppbots', 'dep3KuuJIeHKaRUS', 426284, 17, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 18, 18, 300000049, 'PKK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270002917, 'sppbots', 'BlackRiderKn1ght', 8740372, 35, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 26, 26, 300000096, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270002918, 'sppbots', 'zheKaSoul', 1495531, 23, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 53, 53, 0, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270002919, 'sppbots', 'MrFire', 3949727, 29, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 11, 11, 300000084, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270002920, 'sppbots', 'y6uBaTop', 212716741, 64, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 113, 113, 300000140, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270002921, 'sppbots', 'DobryjLopata1987', 9850111, 36, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 35, 35, 300000092, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270002922, 'sppbots', 'IIode3dBaJIeHoK', 363, 3, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 0, 0, 300000053, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270002923, 'sppbots', 'IronWolf', 68, 2, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 18, 18, 300000052, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270002924, 'sppbots', 'FrostBlade', 19423, 8, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 10, 10, 0, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270002925, 'sppbots', 'FrostSilentMage', 15422851, 40, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 16, 16, 300000107, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270002926, 'sppbots', 'coHHbIuKeHT', 212716741, 64, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 88, 88, 300000131, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270002927, 'sppbots', 'IIode3d4ecHoK42', 91162131, 57, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 113, 113, 300000130, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270002928, 'sppbots', 'BeshenyyNataxa', 2925229, 27, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 4, 4, 300000089, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270002929, 'sppbots', 'swiftsoul5', 141192, 13, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 0, 0, 300000014, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270002930, 'sppbots', 'SweetSilentLord', 70852742, 55, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 92, 92, 300000117, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270002931, 'sppbots', 'GhostR0gu302', 1786365, 24, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 4, 4, 300000089, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270002932, 'sppbots', 'IronTopor', 19423, 8, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 53, 53, 300000037, 'PKK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270002933, 'sppbots', '3JIouupKa', 11066012, 37, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 7, 7, 300000099, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270002934, 'sppbots', 'LLIycTpbIuezhuK', 45524865, 51, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 8, 8, 300000118, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270002935, 'sppbots', 'JIbIcbIucyxapb59', 11066012, 37, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 35, 35, 300000096, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270002936, 'sppbots', 'lenkasidorov03', 606319094, 73, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 108, 108, 300000017, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270002937, 'sppbots', 'LysyjWasyaZajcev', 675590, 19, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 10, 10, 300000005, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270002938, 'sppbots', 'SonnyjMonah', 30764519, 47, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 24, 24, 300000101, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270002939, 'sppbots', 'Ubivator', 675590, 19, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 10, 10, 300000005, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270002940, 'sppbots', 'duMaHKo3JIoB95', 1242536, 22, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 35, 35, 300000019, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270002941, 'sppbots', 'ShustryjM4ge', 0, 1, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 0, 0, 0, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270002942, 'sppbots', 'UgarnyyRaven', 70852742, 55, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 88, 88, 300000117, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270002943, 'sppbots', 'KrivoyDashka03', 212716741, 64, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 102, 102, 300000132, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270002944, 'sppbots', 'xXDarkRiderXx', 426284, 17, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 0, 0, 300000028, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270002945, 'sppbots', 'Mrprostopasha', 19423, 8, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 10, 10, 300000062, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270002946, 'sppbots', '1r0nReaper', 9850111, 36, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 39, 39, 0, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270002947, 'sppbots', 'TaIIoKTaHKucT', 57383682, 53, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 24, 24, 300000113, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270002948, 'sppbots', 'VovchikSidoROV4', 254327, 15, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 25, 25, 300000026, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270002949, 'sppbots', 'shadowkn1ght', 11287, 7, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 0, 0, 300000009, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270002950, 'sppbots', 'upKaMedBedeB', 331864, 16, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 44, 44, 300000080, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270002951, 'sppbots', 'dep3Kuu6apcyKHy6', 387197529, 69, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 102, 102, 300000011, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270002952, 'sppbots', 'IIpocToaHdpIOxa', 1242536, 22, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 22, 22, 300000023, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270002953, 'sppbots', 'Blade98RUS', 141192, 13, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 18, 18, 0, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270002954, 'sppbots', 'DjArrow', 70852742, 55, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 93, 93, 300000115, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270002955, 'sppbots', 'Cr4zyLord', 804219972, 75, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 94, 94, 0, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270002956, 'sppbots', 'FrostSoul', 532692055, 72, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 93, 93, 300000141, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270002957, 'sppbots', 'ShadowKiller', 31378, 9, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 38, 38, 300000066, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270002958, 'sppbots', 'DjIIaLLIa', 346825235, 68, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 108, 108, 300000133, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270002959, 'sppbots', 'BodryyKhomyak', 68, 2, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 53, 53, 300000055, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270002960, 'sppbots', 'rpo3HbIuzheKa26', 308441375, 67, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 117, 117, 300000024, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270002961, 'sppbots', 'Mrborzyjnastya', 675590, 19, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 0, 0, 0, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270002962, 'sppbots', 'ModnyjVoLK', 606319094, 73, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 103, 103, 300000143, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270002963, 'sppbots', 'Dragon03', 51262204, 52, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 16, 16, 0, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270002964, 'sppbots', 'RzhavyjSanya', 931275828, 76, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 88, 88, 300000040, 'PKK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270002965, 'sppbots', 'BatonHunter', 6038, 6, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 38, 38, 300000049, 'PKK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270002966, 'sppbots', 'MadMonk55', 48229, 10, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 10, 10, 300000063, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270002967, 'sppbots', 'KabanTerminator', 102265326, 58, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 88, 88, 300000124, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270002968, 'sppbots', 'SwiftSlayer', 63907585, 54, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 46, 46, 300000113, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270002969, 'sppbots', 'MrBoB4uK86', 45524865, 51, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 55, 55, 300000113, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270002970, 'sppbots', 'GroznyjStas93', 3407873, 28, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 4, 4, 300000035, 'PKK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270002971, 'sppbots', 'dep3KuuKefup', 146307211, 61, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 90, 90, 300000005, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270002972, 'sppbots', 'ironkn1ght', 48229, 10, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 18, 18, 300000010, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270002973, 'sppbots', 'zhupHbIuBoBaH', 9850111, 36, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 11, 11, 300000091, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270002974, 'sppbots', 'TrueKnightMaster', 675590, 19, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 18, 18, 300000015, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270002975, 'sppbots', 'kuznecov', 6812472, 33, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 45, 45, 300000017, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270002976, 'sppbots', 'OlegPetroff', 30764519, 47, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 55, 55, 300000030, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270002977, 'sppbots', 'SanyaIvanow', 45524865, 51, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 24, 24, 300000004, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270002978, 'sppbots', 'tankistraven04', 21007103, 43, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 16, 16, 300000049, 'PKK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270002979, 'sppbots', 'ZhirnyjZheKA42', 5981539, 32, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 54, 54, 300000098, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270002980, 'sppbots', 'Blade36', 3949727, 29, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 15, 15, 300000084, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270002981, 'sppbots', 'SweetSniper1999', 141192, 13, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 0, 0, 300000061, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270002982, 'sppbots', 'SosedUbivator', 6812472, 33, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 11, 11, 300000099, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270002983, 'sppbots', 'kiryuxakozlov92', 606319094, 73, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 93, 93, 300000145, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270002984, 'sppbots', 'NightTitan73', 167243291, 62, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 88, 88, 0, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270002985, 'sppbots', 'StaryyBaton', 6812472, 33, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 15, 15, 300000094, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270002986, 'sppbots', '6eLLIeHbIuJIeHKa', 5231213, 31, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 4, 4, 300000083, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270002987, 'sppbots', 'dikijdimon', 36806133, 49, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 12, 12, 300000117, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270002988, 'sppbots', 'NightBishop96', 68, 2, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 0, 0, 300000002, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270002989, 'sppbots', 'FedorKozLOWRUS', 51262204, 52, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 9, 9, 300000120, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270002990, 'sppbots', 'garazhded', 126509030, 60, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 93, 93, 300000128, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270002991, 'sppbots', 'oJIerKing9', 11287, 7, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 53, 53, 300000053, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270002992, 'sppbots', 'StaryjXomyakRUS', 70852742, 55, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 88, 88, 300000049, 'PKK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270002993, 'sppbots', 'MadMonk', 254327, 15, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 0, 0, 300000068, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270002994, 'sppbots', 'BodryyMage67', 23180442, 44, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 8, 8, 300000036, 'PKK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270002995, 'sppbots', 'LoneDreAM', 30764519, 47, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 12, 12, 300000008, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270002996, 'sppbots', '6paToKStar', 696376867, 74, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 110, 110, 300000016, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270002997, 'sppbots', 'JIbIcbIuMyxoMop', 189363788, 63, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 113, 113, 300000130, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270002998, 'sppbots', 'MashKA81', 3407873, 28, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 45, 45, 0, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270002999, 'sppbots', 'ChiterVedmak', 36806133, 49, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 36, 36, 300000113, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270003000, 'sppbots', 'LoneShadowRogue', 2884, 5, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 53, 53, 300000004, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270003001, 'sppbots', 'MamkinChuma96', 9850111, 36, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 7, 7, 300000095, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270003002, 'sppbots', 'BloodKnightV0lk', 308441375, 67, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 90, 90, 300000018, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270003003, 'sppbots', 'gh0stking', 15422851, 40, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 8, 8, 300000105, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270003004, 'sppbots', 'OldShadowDr4gon', 167243291, 62, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 94, 94, 300000123, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270003005, 'sppbots', 'MrMashkaPetrov', 114038008, 59, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 93, 93, 300000128, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270003006, 'sppbots', 'StepanPupkin', 28049509, 46, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 24, 24, 300000103, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270003007, 'sppbots', 'BlackBlad3', 3407873, 28, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 4, 4, 300000082, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270003008, 'sppbots', 'IIpocToBlade95', 1242536, 22, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 7, 7, 300000025, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270003009, 'sppbots', 'SilentTitan', 3407873, 28, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 35, 35, 300000008, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270003010, 'sppbots', 'Djcoced1998RUS', 539995, 18, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 38, 38, 300000072, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270003011, 'sppbots', 'LysyjPodezdNub', 429632402, 70, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 117, 117, 300000138, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270003012, 'sppbots', 'UnylyjVedMAK', 7729999, 34, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 45, 45, 300000096, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270003013, 'sppbots', 'UgarnyyOleg', 8740372, 35, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 35, 35, 300000100, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270003014, 'sppbots', 'KolyanIwanoff', 71201, 11, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 31, 31, 300000070, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270003015, 'sppbots', 'NightKnight', 167243291, 62, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 88, 88, 0, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270003016, 'sppbots', 'cyxapbBoJIK', 91162131, 57, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 88, 88, 300000127, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270003017, 'sppbots', 'Ice86', 33679907, 48, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 24, 24, 300000024, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270003018, 'sppbots', 'WildOgur3c', 804219972, 75, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 97, 97, 300000149, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270003019, 'sppbots', 'coHHbIuBishop', 237351413, 65, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 102, 102, 300000133, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270003020, 'sppbots', 'pacan', 1495531, 23, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 11, 11, 300000079, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270003021, 'sppbots', 'IronBlackDream', 28049509, 46, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 46, 46, 300000109, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270003022, 'sppbots', 'ZloyHomyakRider', 8740372, 35, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 39, 39, 0, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270003023, 'sppbots', 'yrapHbIuoJIer', 2925229, 27, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 35, 35, 300000085, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270003024, 'sppbots', 'ZlojSeregaRogue', 696376867, 74, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 117, 117, 0, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270003025, 'sppbots', 'JIoIIaTaIIode3d', 141192, 13, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 25, 25, 300000061, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270003026, 'sppbots', 'TihiyKolbasa', 9850111, 36, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 35, 35, 300000094, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270003027, 'sppbots', 'SweetBlade', 308441375, 67, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 93, 93, 300000138, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270003028, 'sppbots', 'dep3KuuzheKa', 6812472, 33, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 4, 4, 0, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270003029, 'sppbots', 'KpuBouHaru6aTop', 45524865, 51, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 2, 2, 0, 'PKK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270003030, 'sppbots', 'MaMKuH6paToK', 191452, 14, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 0, 0, 300000017, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270003031, 'sppbots', 'LonePac4n', 13844879, 39, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 45, 45, 300000094, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270003032, 'sppbots', 'GhostT0P0R', 675590, 19, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 0, 0, 300000079, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270003033, 'sppbots', 'Gopnik', 1023775, 21, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 22, 22, 300000077, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270003034, 'sppbots', 'SwiftRogue', 532692055, 72, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 97, 97, 0, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270003035, 'sppbots', 'Xomyak', 70852742, 55, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 108, 108, 300000112, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270003036, 'sppbots', 'DjcudopoB2004', 271973532, 66, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 92, 92, 300000138, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270003037, 'sppbots', 'SonnyjPalYCH7RUS', 931275828, 76, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 102, 102, 0, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270003038, 'sppbots', 'xXTrueIce03Xx', 4555766, 30, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 26, 26, 300000089, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270003039, 'sppbots', 'StormSniperFang', 804219972, 75, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 102, 102, 300000141, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270003040, 'sppbots', 'SwiftStarDragon', 71201, 11, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 31, 31, 300000061, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270003041, 'sppbots', 'StormSlayerWoLF', 57383682, 53, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 16, 16, 0, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270003042, 'sppbots', 'SweetTrueKnight', 1242536, 22, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 4, 4, 300000001, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270003043, 'sppbots', 'Mrmodnyjtimur', 31378, 9, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 0, 0, 300000008, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270003044, 'sppbots', 'OldClaw99', 835854, 20, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 1, 1, 300000024, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270003045, 'sppbots', 'BlackSniper', 11287, 7, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 0, 0, 300000040, 'PKK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270003046, 'sppbots', 'IronSniper85', 532692055, 72, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 97, 97, 300000003, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270003047, 'sppbots', 'LLIaypMa', 6038, 6, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 0, 0, 300000016, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270003048, 'sppbots', 'JIIOTbIuBac9I', 5981539, 32, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 26, 26, 300000098, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270003049, 'sppbots', 'KpuBouIIaLLIa', 12395149, 38, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 11, 11, 300000096, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270003050, 'sppbots', 'pzhaBbIuTuMyp96', 539995, 18, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 18, 18, 300000012, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270003051, 'sppbots', 'Sh4d0wDemon18', 189363788, 63, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 97, 97, 300000122, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270003052, 'sppbots', 'Ogurec', 9850111, 36, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 7, 7, 300000095, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270003053, 'sppbots', 'IIeTpoBu477', 2925229, 27, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 22, 22, 300000089, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270003054, 'sppbots', 'CrazyIce', 141192, 13, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 25, 25, 300000006, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270003055, 'sppbots', 'MrModHbIuIOpec', 2497059, 26, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 26, 26, 300000049, 'PKK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270003056, 'sppbots', 'walenok', 12395149, 38, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 7, 7, 300000094, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270003057, 'sppbots', 'MaksSidorov1990', 363, 3, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 10, 10, 300000053, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270003058, 'sppbots', 'WildKiller99', 532692055, 72, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 113, 113, 300000146, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270003059, 'sppbots', 'IIecBedbMaK', 101676, 12, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 25, 25, 300000024, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270003060, 'sppbots', 'daLLIKaIIeTpoB', 331864, 16, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 0, 0, 300000035, 'PKK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270003061, 'sppbots', 'LenkaSidorOFFRUS', 31378, 9, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 0, 0, 300000020, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270003062, 'sppbots', 'OldBlackKiller', 19423, 8, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 0, 0, 300000068, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270003063, 'sppbots', '4yMa04', 539995, 18, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 0, 0, 300000040, 'PKK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270003064, 'sppbots', 'GolodnyyOgurec', 331864, 16, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 44, 44, 300000080, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270003065, 'sppbots', 'TuxuuBoB4uK', 1242536, 22, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 7, 7, 300000015, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270003066, 'sppbots', 'MyxoMop', 126509030, 60, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 90, 90, 300000026, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270003067, 'sppbots', 'NaglyjAndryuha', 426284, 17, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 10, 10, 300000077, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270003068, 'sppbots', 'ChetkiyFedorRUS', 191452, 14, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 10, 10, 300000015, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270003069, 'sppbots', 'pzhaBbIuAngel03', 2884, 5, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 0, 0, 300000052, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270003070, 'sppbots', 'ShustryyKolyan', 3407873, 28, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 39, 39, 300000030, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270003071, 'sppbots', 'Batya', 346825235, 68, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 97, 97, 0, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270003072, 'sppbots', '4eTKuuBoB4uK05', 21007103, 43, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 5, 5, 300000008, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270003073, 'sppbots', 'MyxoMop73', 3407873, 28, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 35, 35, 300000010, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270003074, 'sppbots', 'NatahaIvanov89', 13844879, 39, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 22, 22, 300000093, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270003075, 'sppbots', 'IIeTpyxaIIyIIKuH', 101676, 12, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 44, 44, 300000063, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270003076, 'sppbots', 'xuTpbIucTeIIaH', 254327, 15, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 0, 0, 300000027, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270003077, 'sppbots', 'MrNaglyyPelmen', 18995573, 42, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 5, 5, 300000110, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270003078, 'sppbots', 'MCPalychDeath', 146307211, 61, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 88, 88, 300000127, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270003079, 'sppbots', 'duKuuIIacaH6', 71201, 11, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 18, 18, 300000067, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270003080, 'sppbots', 'FrostRogu3', 102265326, 58, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 90, 90, 300000030, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270003081, 'sppbots', 'DarkSoulBatya', 3949727, 29, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 15, 15, 300000042, 'PKK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270003082, 'sppbots', 'KrivoyKiryukha', 9850111, 36, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 39, 39, 300000044, 'PKK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270003083, 'sppbots', 'Monk42', 80700339, 56, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 92, 92, 300000001, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270003084, 'sppbots', 'ChushpanPelmen', 271973532, 66, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 113, 113, 300000140, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270003085, 'sppbots', 'SilentStarSnip3r', 71201, 11, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 18, 18, 300000061, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270003086, 'sppbots', 'ZlojYurec', 2497059, 26, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 39, 39, 300000081, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270003087, 'sppbots', 'DjxuTpbIucaHeK', 835854, 20, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 1, 1, 300000075, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270003088, 'sppbots', 'xXderzkiyriderXx', 91162131, 57, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 92, 92, 0, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270003089, 'sppbots', 'IronDreAMRUS', 13844879, 39, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 35, 35, 0, 'PKK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270003090, 'sppbots', '6eLLIeHbIu6aToH', 7729999, 34, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 4, 4, 300000098, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270003091, 'sppbots', '4eTKuuKoJI9IHRUS', 13844879, 39, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 45, 45, 300000018, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270003092, 'sppbots', 'KupIOxa3auceB', 254327, 15, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 18, 18, 300000030, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270003093, 'sppbots', 'BoB4uKKo3JIoB9', 606319094, 73, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 88, 88, 300000141, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270003094, 'sppbots', 'TapokBarsuk', 101676, 12, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 10, 10, 300000068, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270003095, 'sppbots', 'xuTpbIuMage', 80700339, 56, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 110, 110, 300000126, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270003096, 'sppbots', 'Raven86', 1786365, 24, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 1, 1, 300000083, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270003097, 'sppbots', 'MrF1r32000', 9850111, 36, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 4, 4, 300000029, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270003098, 'sppbots', 'ChetkijChitERRUS', 2925229, 27, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 4, 4, 300000082, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270003099, 'sppbots', 'SanekKuznecoff', 5231213, 31, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 4, 4, 300000086, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270003100, 'sppbots', 'DerzkiySvetKA9', 363, 3, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 18, 18, 300000053, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270003101, 'sppbots', 'pycJIaHcudopoB', 91162131, 57, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 94, 94, 300000006, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270003102, 'sppbots', 'OldKompot', 1023775, 21, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 7, 7, 300000079, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270003103, 'sppbots', 'yHbIJIbIuduMoH', 2497059, 26, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 7, 7, 300000044, 'PKK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270003104, 'sppbots', 'SwiftDemon', 141192, 13, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 25, 25, 300000069, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270003105, 'sppbots', 'KompOT72', 9850111, 36, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 15, 15, 300000092, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270003106, 'sppbots', 'truetitan96', 237351413, 65, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 97, 97, 300000010, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270003107, 'sppbots', '4eTKuurapazh', 804219972, 75, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 110, 110, 300000036, 'PKK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270003108, 'sppbots', 'zhupHbIuIIaJIbI4', 675590, 19, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 0, 0, 0, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270003109, 'sppbots', '6op3bIuMyxoMop07', 71201, 11, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 31, 31, 300000023, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270003110, 'sppbots', 'kefirm4g3', 0, 1, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 53, 53, 300000058, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270003111, 'sppbots', 'GhostRaven39', 1242536, 22, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 4, 4, 300000026, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270003112, 'sppbots', 'FrostTankist', 31378, 9, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 10, 10, 300000064, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270003113, 'sppbots', '0ldClaw', 2925229, 27, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 35, 35, 300000086, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270003114, 'sppbots', 'cKBo3H9IKroIIHuK', 1168, 4, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 18, 18, 300000036, 'PKK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270003115, 'sppbots', 'do6pbIuDream', 33679907, 48, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 46, 46, 300000120, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270003116, 'sppbots', '5weetReaper95', 141192, 13, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 0, 0, 0, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270003117, 'sppbots', 'chumachuma', 0, 1, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 0, 0, 300000055, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270003118, 'sppbots', 'DjroIIHuK', 70852742, 55, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 93, 93, 300000112, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270003119, 'sppbots', 'cheburekk1ng', 68, 2, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 10, 10, 300000052, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270003120, 'sppbots', 'pycJIaHRUS', 102265326, 58, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 117, 117, 300000004, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270003121, 'sppbots', 'GhostFang18', 1786365, 24, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 39, 39, 300000041, 'PKK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270003122, 'sppbots', 'EzhikBlade', 19423, 8, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 53, 53, 300000070, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270003123, 'sppbots', 'TuxuuKefupTpaBKa', 271973532, 66, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 97, 97, 0, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270003124, 'sppbots', 'xXBarsukXx', 21007103, 43, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 55, 55, 300000108, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270003125, 'sppbots', '5h4dowBlackFire', 2497059, 26, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 1, 1, 300000086, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270003126, 'sppbots', 'EvilHunTER', 474205751, 71, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 97, 97, 300000131, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270003127, 'sppbots', 'xoM9IKxoM9IK91', 254327, 15, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 0, 0, 300000012, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270003128, 'sppbots', 'Topor94', 141192, 13, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 0, 0, 300000066, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270003129, 'sppbots', 'MadDemon3', 2925229, 27, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 35, 35, 300000027, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270003130, 'sppbots', 'ceMKu6aT9IRUS', 15422851, 40, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 46, 46, 300000103, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270003131, 'sppbots', 'MCMonk85', 1495531, 23, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 15, 15, 0, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270003132, 'sppbots', 'KabanShashlykRUS', 1242536, 22, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 26, 26, 300000071, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270003133, 'sppbots', 'xomyak9', 114038008, 59, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 108, 108, 300000031, 'PKK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270003134, 'sppbots', 'BlackDemon94', 45524865, 51, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 55, 55, 300000117, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270003135, 'sppbots', 'DobryyBishop', 5981539, 32, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 39, 39, 300000019, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270003136, 'sppbots', 'IrkaVolkOFF', 57383682, 53, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 46, 46, 300000113, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270003137, 'sppbots', 'MaMKuHduMoH87', 346825235, 68, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 90, 90, 300000132, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270003138, 'sppbots', 'RealnyjAndryuxa', 0, 1, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 18, 18, 300000056, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270003139, 'sppbots', 'xoJIodoKrHoM', 1495531, 23, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 26, 26, 300000013, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270003140, 'sppbots', 'KhitryyTankIST', 346825235, 68, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 113, 113, 300000136, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270003141, 'sppbots', 'frosthunter', 539995, 18, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 0, 0, 300000049, 'PKK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270003142, 'sppbots', 'KotSkvoznyak85', 189363788, 63, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 93, 93, 300000128, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270003143, 'sppbots', 'DarkDream94', 15422851, 40, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 27, 27, 300000042, 'PKK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270003144, 'sppbots', '6odpbIucTac', 17137002, 41, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 24, 24, 300000102, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270003145, 'sppbots', 'BorzyjToporTopor', 15422851, 40, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 9, 9, 300000044, 'PKK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270003146, 'sppbots', 'OlegZaycew56', 11287, 7, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 0, 0, 300000059, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270003147, 'sppbots', 'PodezdBishop', 0, 1, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 0, 0, 300000009, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270003148, 'sppbots', 'HarJIbIuKoT', 191452, 14, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 10, 10, 300000064, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270003149, 'sppbots', 'ChetkiyIrka', 25524751, 45, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 36, 36, 300000038, 'PKK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270003150, 'sppbots', 'BloodRider', 363, 3, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 31, 31, 300000059, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270003151, 'sppbots', 'WildGhostRaven', 51262204, 52, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 16, 16, 300000114, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270003152, 'sppbots', 'SonnyyDimon', 102265326, 58, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 102, 102, 300000028, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270003153, 'sppbots', 'MCTitan', 363, 3, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 10, 10, 300000050, 'PKK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270003154, 'sppbots', 'xuTpbIu4uTepFang', 363, 3, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 0, 0, 300000027, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270003155, 'sppbots', 'duKuuBuTeK', 102265326, 58, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 92, 92, 300000013, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270003156, 'sppbots', 'KoJI9IH', 271973532, 66, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 108, 108, 300000025, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270003157, 'sppbots', 'ToJIuKIIeTpoB', 1023775, 21, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 26, 26, 300000080, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270003158, 'sppbots', 'BlackGhostDed', 126509030, 60, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 92, 92, 300000044, 'PKK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270003159, 'sppbots', 'KpuBouBedbMaK90', 146307211, 61, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 117, 117, 300000123, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270003160, 'sppbots', 'GrimMage', 696376867, 74, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 113, 113, 300000050, 'PKK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270003161, 'sppbots', 'Sn1p3r', 426284, 17, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 0, 0, 300000047, 'PKK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270003162, 'sppbots', 'MadGarazh89', 363, 3, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 53, 53, 300000060, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270003163, 'sppbots', 'GnomUbivator', 40153995, 50, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 27, 27, 300000114, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270003164, 'sppbots', 'EvilGopnik', 6038, 6, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 10, 10, 0, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270003165, 'sppbots', 'Pasha3', 7729999, 34, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 1, 1, 0, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270003166, 'sppbots', 'NightSniper88', 15422851, 40, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 16, 16, 300000105, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270003167, 'sppbots', 'StaryyTankist', 6038, 6, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 18, 18, 300000007, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270003168, 'sppbots', 'HacT9IIIyIIKuH03', 539995, 18, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 44, 44, 300000077, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270003169, 'sppbots', 'LoneSt4r', 45524865, 51, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 36, 36, 300000038, 'PKK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270003170, 'sppbots', 'LopataKent', 23180442, 44, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 27, 27, 300000105, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270003171, 'sppbots', 'GroznyjZheka90', 696376867, 74, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 108, 108, 300000142, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270003172, 'sppbots', 'MCGr1mClawRUS', 2497059, 26, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 22, 22, 300000030, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270003173, 'sppbots', 'ValenokKot', 1242536, 22, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 7, 7, 300000079, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270003174, 'sppbots', 'MadDeath91', 70852742, 55, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 97, 97, 300000014, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270003175, 'sppbots', 'IronDemon', 1168, 4, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 31, 31, 300000051, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270003176, 'sppbots', 'xXHacT9IXx', 539995, 18, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 0, 0, 300000001, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270003177, 'sppbots', 'MCMaster8', 1495531, 23, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 39, 39, 300000077, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270003178, 'sppbots', 'PetrowiCH', 80700339, 56, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 110, 110, 300000123, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270003179, 'sppbots', 'MaMKuHKupIIu488', 25524751, 45, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 27, 27, 300000105, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270003180, 'sppbots', 'MaKcIIeTpoB', 19423, 8, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 10, 10, 300000070, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270003181, 'sppbots', 'NightBlade', 11066012, 37, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 26, 26, 300000093, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270003182, 'sppbots', 'MCNightGrimDemon', 17137002, 41, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 27, 27, 300000108, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270003183, 'sppbots', 'DjUgarnyyDimon', 11066012, 37, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 39, 39, 0, 'PKK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270003184, 'sppbots', 'Shaurma', 17137002, 41, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 46, 46, 300000005, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270003185, 'sppbots', 'DobryjLeha50', 6812472, 33, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 26, 26, 300000094, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270003186, 'sppbots', 'MCKiryuhaPetrov', 101676, 12, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 0, 0, 300000017, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270003187, 'sppbots', 'MCShaurmaGnom', 21007103, 43, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 16, 16, 0, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270003188, 'sppbots', 'ZhirnyyVovchik', 474205751, 71, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 103, 103, 0, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270003189, 'sppbots', 'MCBarsukShashlyk', 254327, 15, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 38, 38, 300000062, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270003190, 'sppbots', 'daLLIKa', 45524865, 51, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 55, 55, 300000120, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270003191, 'sppbots', 'petrovich97', 2884, 5, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 10, 10, 300000052, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270003192, 'sppbots', 'lyutyjirka95', 474205751, 71, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 97, 97, 300000134, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270003193, 'sppbots', 'Hy6TepMuHaTop', 2925229, 27, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 7, 7, 0, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270003194, 'sppbots', 'CrazyBlackPodezd', 539995, 18, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 0, 0, 300000076, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270003195, 'sppbots', 'ToJIuKKo3JIoB', 9850111, 36, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 15, 15, 300000094, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270003196, 'sppbots', 'ModHbIuKapaTeJIb', 71201, 11, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 10, 10, 300000066, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270003197, 'sppbots', 'LLIaypMaM45ter', 1023775, 21, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 26, 26, 300000028, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270003198, 'sppbots', '4ecHoKKupIIu4', 19423, 8, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 44, 44, 300000040, 'PKK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270003199, 'sppbots', 'sonnyynastya', 91162131, 57, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 110, 110, 0, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270003200, 'sppbots', 'shadowraven', 363, 3, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 0, 0, 300000051, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270003201, 'sppbots', 'Gr1mGnom', 331864, 16, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 0, 0, 300000077, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270003202, 'sppbots', 'LyutyyChiter', 1168, 4, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 0, 0, 300000025, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270003203, 'sppbots', 'W1ldKill3rRider', 1168, 4, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 31, 31, 300000006, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270003204, 'sppbots', 'roJIodHbIuBoBaH', 931275828, 76, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 88, 88, 300000148, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270003205, 'sppbots', 'TuMypcudopoB', 426284, 17, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 0, 0, 300000076, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270003206, 'sppbots', 'GhostNub', 71201, 11, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 0, 0, 300000044, 'PKK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270003207, 'sppbots', 'KompotMonah', 254327, 15, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 0, 0, 300000070, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270003208, 'sppbots', 'ModHbIuBuTeK', 1242536, 22, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 11, 11, 300000002, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270003209, 'sppbots', 'KolyanKuznecov', 31378, 9, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 0, 0, 300000063, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270003210, 'sppbots', 'JIIOTbIuMaLLIKa', 2884, 5, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 44, 44, 300000023, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270003211, 'sppbots', 'ZhirnyyRider7', 3407873, 28, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 15, 15, 300000088, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270003212, 'sppbots', 'MCcoHHbIu6oMzh', 5981539, 32, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 15, 15, 300000007, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270003213, 'sppbots', 'Hy6MapMeJIad', 19423, 8, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 31, 31, 0, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270003214, 'sppbots', 'CrazyMonk', 308441375, 67, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 113, 113, 300000136, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270003215, 'sppbots', 'dep3KuucTeIIaH', 931275828, 76, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 93, 93, 300000016, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270003216, 'sppbots', 'andryuhaclaw3', 2925229, 27, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 15, 15, 300000024, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270003217, 'sppbots', 'ZhirnyySanek', 101676, 12, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 18, 18, 300000066, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270003218, 'sppbots', 'BoBaHIIeTpoB', 0, 1, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 10, 10, 300000008, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270003219, 'sppbots', 'ProstoLeha', 45524865, 51, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 2, 2, 300000006, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270003220, 'sppbots', 'KeHT4uTep', 68, 2, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 0, 0, 300000056, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270003221, 'sppbots', 'UnylyyTimurD34th', 0, 1, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 0, 0, 300000059, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270003222, 'sppbots', 'Kaban', 931275828, 76, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 102, 102, 300000150, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270003223, 'sppbots', 'ModnyjKot', 254327, 15, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 0, 0, 300000044, 'PKK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270003224, 'sppbots', 'JIexaBoJIKoB3', 2884, 5, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 0, 0, 0, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270003225, 'sppbots', 'OldKiller', 12395149, 38, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 7, 7, 300000048, 'PKK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270003226, 'sppbots', 'GhostReaper8', 1495531, 23, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 1, 1, 0, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270003227, 'sppbots', 'MeJIKuufedop', 532692055, 72, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 113, 113, 300000013, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270003228, 'sppbots', 'BodryySemkiNub', 15422851, 40, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 36, 36, 0, 'PKK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270003229, 'sppbots', 'MoHax26', 8740372, 35, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 22, 22, 300000017, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270003230, 'sppbots', 'Fang87', 835854, 20, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 35, 35, 300000077, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270003231, 'sppbots', 'fedopMedBedeB', 6812472, 33, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 15, 15, 300000001, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270003232, 'sppbots', 'SilentDarkLopata', 363, 3, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 10, 10, 0, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270003233, 'sppbots', 'Raven5', 2925229, 27, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 11, 11, 300000090, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270003234, 'sppbots', 'DarkMadMage9', 40153995, 50, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 40, 40, 300000119, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270003235, 'sppbots', 'KeHTHaru6aTop', 23180442, 44, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 16, 16, 300000002, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270003236, 'sppbots', 'nightfire', 68, 2, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 10, 10, 300000059, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270003237, 'sppbots', 'ModnyySosed', 114038008, 59, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 103, 103, 300000130, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270003238, 'sppbots', 'Sanek86', 539995, 18, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 53, 53, 300000080, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270003239, 'sppbots', 'DjTuxuuArrow00', 13844879, 39, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 45, 45, 300000099, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270003240, 'sppbots', 'HaTaxaIIeTpoB', 1023775, 21, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 39, 39, 300000073, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270003241, 'sppbots', 'VovchikZaycev00', 19423, 8, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 0, 0, 300000067, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270003242, 'sppbots', 'DjOldRiderRUS', 8740372, 35, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 4, 4, 300000091, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270003243, 'sppbots', 'Ice93', 3407873, 28, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 39, 39, 300000087, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270003244, 'sppbots', 'peaJIbHbIurHoM', 23180442, 44, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 16, 16, 300000047, 'PKK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270003245, 'sppbots', 'PacanSlayer', 114038008, 59, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 94, 94, 300000004, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270003246, 'sppbots', 'xXuBaHoBXx', 19423, 8, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 38, 38, 300000028, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270003247, 'sppbots', 'BorzyjKompot', 3949727, 29, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 26, 26, 300000086, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270003248, 'sppbots', 'MrIIode3dded1997', 331864, 16, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 10, 10, 300000073, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270003249, 'sppbots', 'HitryjPalych', 71201, 11, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 44, 44, 300000006, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270003250, 'sppbots', 'IIec6oMzhRUS', 363, 3, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 38, 38, 300000055, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270003251, 'sppbots', 'DikiyKompotNub', 2118860, 25, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 11, 11, 300000002, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270003252, 'sppbots', 'BedbMaKKoJI6aca', 7729999, 34, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 22, 22, 300000100, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270003253, 'sppbots', 'rapazhWolf', 1023775, 21, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 1, 1, 300000010, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270003254, 'sppbots', 'DimonZajcev', 331864, 16, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 53, 53, 300000019, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270003255, 'sppbots', 'FedorKuznecOFF', 532692055, 72, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 117, 117, 0, 'PKK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270003256, 'sppbots', 'FrostFang', 1495531, 23, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 7, 7, 300000020, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270003257, 'sppbots', 'IronSoul94', 71201, 11, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 0, 0, 300000069, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270003258, 'sppbots', 'BlackBishop', 126509030, 60, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 94, 94, 300000130, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270003259, 'sppbots', 'pzhaBbIuJIeHKa', 426284, 17, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 25, 25, 300000021, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270003260, 'sppbots', 'RealnyyKot1985', 606319094, 73, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 94, 94, 300000142, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270003261, 'sppbots', 'cepera8', 15422851, 40, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 9, 9, 300000101, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270003262, 'sppbots', 'TikhijIce', 1242536, 22, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 53, 53, 300000079, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270003263, 'sppbots', '4e6ypeK1993', 426284, 17, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 31, 31, 300000028, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270003264, 'sppbots', 'Palych5', 13844879, 39, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 39, 39, 300000095, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270003265, 'sppbots', '4eTKuurpuLLIa', 5981539, 32, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 22, 22, 300000020, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270003266, 'sppbots', 'MrTankistWalenok', 539995, 18, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 31, 31, 300000048, 'PKK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270003267, 'sppbots', 'ShadowSemki', 13844879, 39, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 35, 35, 300000001, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270003268, 'sppbots', 'SweetM4dSlayer', 1242536, 22, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 11, 11, 300000080, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270003269, 'sppbots', '6odpbIuKoT6', 532692055, 72, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 110, 110, 300000142, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270003270, 'sppbots', 'melkijpes', 80700339, 56, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 108, 108, 300000023, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270003271, 'sppbots', 'MadKnight', 70852742, 55, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 117, 117, 0, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270003272, 'sppbots', 'JIoIIaTaKoMIIoT', 114038008, 59, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 103, 103, 300000127, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270003273, 'sppbots', 'MCFrostLord', 33679907, 48, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 36, 36, 300000027, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270003274, 'sppbots', 'HaTaxaMedBedeB', 8740372, 35, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 4, 4, 300000005, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270003275, 'sppbots', 'BoB4uKIIeTpoB5', 1023775, 21, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 22, 22, 300000073, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270003276, 'sppbots', 'pashaknight01', 30764519, 47, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 5, 5, 300000002, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270003277, 'sppbots', 'Soul1988', 237351413, 65, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 117, 117, 0, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270003278, 'sppbots', 'IronBratok96', 1168, 4, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 0, 0, 300000054, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270003279, 'sppbots', 'BloodL0rd', 331864, 16, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 0, 0, 0, 'PKK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270003280, 'sppbots', 'yrapHbIuRogue', 429632402, 70, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 110, 110, 300000138, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270003281, 'sppbots', 'SeregaSidorov', 80700339, 56, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 110, 110, 300000125, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270003282, 'sppbots', 'duMoHMedBedeB', 1242536, 22, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 35, 35, 300000074, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270003283, 'sppbots', 'NatakhaPupkin', 331864, 16, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 0, 0, 300000038, 'PKK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270003284, 'sppbots', 'cTapbIuy6uBaTop', 40153995, 50, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 27, 27, 300000117, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270003285, 'sppbots', 'coHHbIuTitanRUS', 835854, 20, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 45, 45, 300000078, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270003286, 'sppbots', 'GhostDarkTankist', 4555766, 30, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 7, 7, 300000049, 'PKK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270003287, 'sppbots', 'MCIIpocToM0nk', 101676, 12, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 31, 31, 300000027, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270003288, 'sppbots', 'xXRider1998Xx', 9850111, 36, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 7, 7, 300000096, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270003289, 'sppbots', 'PetruxaSidorOFF', 51262204, 52, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 16, 16, 300000119, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270003290, 'sppbots', '5ilentKing', 606319094, 73, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 108, 108, 300000145, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270003291, 'sppbots', 'WildBishop', 36806133, 49, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 16, 16, 300000115, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270003292, 'sppbots', 'Bratok90', 346825235, 68, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 102, 102, 300000001, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270003293, 'sppbots', 'JIexa11', 1786365, 24, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 35, 35, 300000035, 'PKK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270003294, 'sppbots', 'HacT9IuBaHoB40', 606319094, 73, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 102, 102, 300000148, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270003295, 'sppbots', '6apcyKSoul', 1023775, 21, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 53, 53, 0, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270003296, 'sppbots', 'xXVolkGarazhXx', 2118860, 25, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 15, 15, 300000083, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270003297, 'sppbots', 'HarJIbIuIIaJIbI4', 21007103, 43, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 2, 2, 300000106, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270003298, 'sppbots', 'oJIerIIyIIKuH', 31378, 9, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 0, 0, 300000061, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270003299, 'sppbots', 'xX3JIouJIeHKaXx', 80700339, 56, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 102, 102, 300000043, 'PKK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270003300, 'sppbots', 'xXBlackArROWXx', 101676, 12, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 25, 25, 300000069, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270003301, 'sppbots', 'Trawka23', 8740372, 35, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 26, 26, 300000050, 'PKK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270003302, 'sppbots', 'NubFang', 5231213, 31, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 11, 11, 300000088, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270003303, 'sppbots', 'sonnyyezhik', 675590, 19, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 31, 31, 0, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270003304, 'sppbots', 'lysyjkentkot87', 12395149, 38, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 26, 26, 300000091, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270003305, 'sppbots', 'ChiterTerminator', 28049509, 46, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 5, 5, 300000103, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270003306, 'sppbots', 'WildTrueHunter', 23180442, 44, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 46, 46, 300000106, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270003307, 'sppbots', 'pycJIaHKing89', 1786365, 24, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 26, 26, 300000017, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270003308, 'sppbots', 'OlegSmirnOFF', 1023775, 21, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 1, 1, 300000023, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270003309, 'sppbots', 'SilentFang5', 51262204, 52, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 24, 24, 300000113, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270003310, 'sppbots', 'ShustryjNatakha', 146307211, 61, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 97, 97, 300000125, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270003311, 'sppbots', 'SonnyyNastya20', 17137002, 41, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 8, 8, 0, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270003312, 'sppbots', 'mashkapupkin91', 387197529, 69, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 88, 88, 300000009, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270003313, 'sppbots', 'OldTitan', 429632402, 70, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 103, 103, 300000139, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270003314, 'sppbots', 'IOpecIIyIIKuH', 191452, 14, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 10, 10, 0, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270003315, 'sppbots', 'DjCr4zyFire36', 17137002, 41, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 27, 27, 300000107, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270003316, 'sppbots', 'Hunter32', 237351413, 65, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 117, 117, 0, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270003317, 'sppbots', 'Ko3JIoB1988RUS', 1023775, 21, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 35, 35, 300000071, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270003318, 'sppbots', 'PetrovichKiller', 1023775, 21, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 15, 15, 300000075, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270003319, 'sppbots', 'MaksPetrov15', 4555766, 30, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 7, 7, 300000047, 'PKK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270003320, 'sppbots', 'BlackDeath', 23180442, 44, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 2, 2, 300000101, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270003321, 'sppbots', 'NightGh0stIc3', 9850111, 36, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 35, 35, 300000100, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270003322, 'sppbots', 'KhitryyAngel5', 254327, 15, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 10, 10, 300000031, 'PKK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270003323, 'sppbots', 'Killer03', 237351413, 65, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 93, 93, 300000133, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270003324, 'sppbots', 'ProstoChesnok', 804219972, 75, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 103, 103, 300000021, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270003325, 'sppbots', 'staryjsvetkaice', 68, 2, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 0, 0, 0, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270003326, 'sppbots', 'Karatel', 45524865, 51, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 8, 8, 300000114, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270003327, 'sppbots', 'BloodTitanMaster', 146307211, 61, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 113, 113, 300000020, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270003328, 'sppbots', 'NaglyySveTKA93', 254327, 15, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 0, 0, 300000017, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270003329, 'sppbots', 'GhostDragonDemon', 101676, 12, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 18, 18, 300000064, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270003330, 'sppbots', 'SwiftArrow', 19423, 8, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 0, 0, 300000070, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270003331, 'sppbots', 'xXBladeXx', 36806133, 49, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 16, 16, 300000114, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270003332, 'sppbots', 'FedorKuznecov', 11066012, 37, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 22, 22, 300000020, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270003333, 'sppbots', 'MyxoMop90', 21007103, 43, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 46, 46, 300000109, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270003334, 'sppbots', 'TaHIOxaKo3JIoB', 6812472, 33, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 35, 35, 0, 'PKK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270003335, 'sppbots', 'KoJI9IHWolf', 33679907, 48, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 12, 12, 300000117, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270003336, 'sppbots', 'rHoMLLIaLLIJIbIK', 114038008, 59, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 113, 113, 300000121, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270003337, 'sppbots', 'WildDemon', 8740372, 35, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 39, 39, 300000093, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270003338, 'sppbots', 'WildSniper67', 63907585, 54, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 46, 46, 0, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270003339, 'sppbots', 'GhostKiller', 3949727, 29, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 45, 45, 300000085, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270003340, 'sppbots', 'Star7', 4555766, 30, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 45, 45, 300000019, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270003341, 'sppbots', 'GolodnyjSosed94', 28049509, 46, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 9, 9, 300000105, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270003342, 'sppbots', 'KoJI9IHArrow', 331864, 16, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 0, 0, 300000046, 'PKK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270003343, 'sppbots', 'yHbIJIbIufedop', 804219972, 75, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 97, 97, 0, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270003344, 'sppbots', 'ShadowDeath', 13844879, 39, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 1, 1, 300000097, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270003345, 'sppbots', 'SmirnOFF9', 363, 3, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 18, 18, 300000035, 'PKK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270003346, 'sppbots', 'HitryyFedorRogue', 102265326, 58, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 110, 110, 300000128, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270003347, 'sppbots', 'derzkijtitan', 606319094, 73, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 110, 110, 300000148, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270003348, 'sppbots', 'LoneMageIce', 4555766, 30, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 39, 39, 300000085, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270003349, 'sppbots', 'SwiftIc34', 18995573, 42, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 36, 36, 300000108, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270003350, 'sppbots', 'Kot00', 12395149, 38, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 22, 22, 300000096, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270003351, 'sppbots', 'xuTpbIuJIoIIaTa', 15422851, 40, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 12, 12, 300000102, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270003352, 'sppbots', 'TapokZadROT', 0, 1, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 31, 31, 0, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270003353, 'sppbots', 'True1c3', 33679907, 48, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 5, 5, 300000114, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270003354, 'sppbots', 'Raven7', 141192, 13, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 44, 44, 300000032, 'PKK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270003355, 'sppbots', 'SilentRaven', 18995573, 42, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 24, 24, 300000022, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270003356, 'sppbots', 'DarkCrazyIce', 19423, 8, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 0, 0, 300000011, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270003357, 'sppbots', 'NaglyyTolyan', 2925229, 27, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 54, 54, 300000007, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270003358, 'sppbots', 'Medoed6aToH', 1242536, 22, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 26, 26, 300000074, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270003359, 'sppbots', 'TimurRidER', 25524751, 45, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 9, 9, 300000110, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270003360, 'sppbots', 'ShadowMadRider94', 2925229, 27, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 7, 7, 300000090, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270003361, 'sppbots', 'MrIIaLLIaIIeTpoB', 17137002, 41, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 9, 9, 300000037, 'PKK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270003362, 'sppbots', 'BlackFang2004', 474205751, 71, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 108, 108, 300000136, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270003363, 'sppbots', 'Kn1ght', 6812472, 33, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 22, 22, 300000098, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270003364, 'sppbots', 'do6pbIurHoM', 1495531, 23, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 1, 1, 300000036, 'PKK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270003365, 'sppbots', '3adpoT03', 2118860, 25, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 22, 22, 300000081, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270003366, 'sppbots', 'KeHTRUS', 835854, 20, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 22, 22, 300000075, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270003367, 'sppbots', 'MCGrishaF1re', 4555766, 30, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 11, 11, 300000036, 'PKK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270003368, 'sppbots', 'BloodDragon82', 3949727, 29, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 35, 35, 300000087, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270003369, 'sppbots', 'TaIIoK7', 308441375, 67, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 117, 117, 300000042, 'PKK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270003370, 'sppbots', 'chushpantapok9', 363, 3, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 31, 31, 300000008, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270003371, 'sppbots', 'HarJIbIuBoBaH92', 189363788, 63, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 110, 110, 300000127, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270003372, 'sppbots', 'pzhaBbIu4e6ypeK', 308441375, 67, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 90, 90, 300000030, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270003373, 'sppbots', 'DarkFangRUS', 63907585, 54, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 40, 40, 300000112, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270003374, 'sppbots', 'Bac9I', 5981539, 32, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 45, 45, 300000037, 'PKK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270003375, 'sppbots', 'Chuma9', 31378, 9, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 0, 0, 300000005, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270003376, 'sppbots', 'PalychMedvedew96', 57383682, 53, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 9, 9, 300000012, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270003377, 'sppbots', 'Mr51lentkn1ght', 15422851, 40, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 24, 24, 300000031, 'PKK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270003378, 'sppbots', 'dedKing2001', 15422851, 40, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 5, 5, 300000009, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270003379, 'sppbots', 'L0neDream98', 835854, 20, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 7, 7, 300000004, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270003380, 'sppbots', 'OldRogue', 25524751, 45, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 2, 2, 300000110, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270003381, 'sppbots', 'JIbIcbIuKupIIu4', 45524865, 51, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 24, 24, 300000112, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270003382, 'sppbots', 'Blade87', 1168, 4, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 0, 0, 300000056, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270003383, 'sppbots', 'BarsukTapok1997', 114038008, 59, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 113, 113, 300000127, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270003384, 'sppbots', 'TimurPupKIN49', 45524865, 51, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 2, 2, 300000007, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270003385, 'sppbots', '3adpoTKefup', 1495531, 23, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 39, 39, 300000026, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270003386, 'sppbots', 'ModHbIuIIode3d', 426284, 17, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 10, 10, 300000071, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270003387, 'sppbots', 'Dj4eTKuuBac9I', 474205751, 71, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 113, 113, 300000041, 'PKK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270003388, 'sppbots', 'orypec27', 474205751, 71, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 93, 93, 300000133, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270003389, 'sppbots', 'ceMKuroIIHuK', 23180442, 44, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 9, 9, 300000001, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270003390, 'sppbots', 'NataxaPupkin', 57383682, 53, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 46, 46, 0, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270003391, 'sppbots', 'xXKotXx', 13844879, 39, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 26, 26, 300000099, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270003392, 'sppbots', 'MaLLIKaIIeTpoB', 11287, 7, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 0, 0, 300000055, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270003393, 'sppbots', 'MrLopata04', 17137002, 41, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 5, 5, 300000102, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270003394, 'sppbots', 'Killer89', 254327, 15, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 0, 0, 300000027, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270003395, 'sppbots', 'VovanMedvedev5', 271973532, 66, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 97, 97, 300000012, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270003396, 'sppbots', 'PetruhaZajCEW', 1786365, 24, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 45, 45, 300000082, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270003397, 'sppbots', 'DarkDreamDream', 308441375, 67, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 88, 88, 0, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270003398, 'sppbots', 'GhostRogue', 189363788, 63, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 90, 90, 300000028, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270003399, 'sppbots', 'OldWolf1985', 2118860, 25, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 54, 54, 300000025, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270003400, 'sppbots', 'Stepan4ng3l', 4555766, 30, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 54, 54, 300000023, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270003401, 'sppbots', 'SweetDragon', 835854, 20, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 1, 1, 300000001, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270003402, 'sppbots', 'oJIerFang2002', 5231213, 31, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 1, 1, 300000027, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270003403, 'sppbots', 'Vasya45', 1168, 4, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 0, 0, 300000059, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270003404, 'sppbots', 'IOpec', 28049509, 46, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 27, 27, 300000102, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270003405, 'sppbots', 'EvilReaPER9', 6038, 6, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 10, 10, 300000060, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270003406, 'sppbots', 'WildMaGE', 6038, 6, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 0, 0, 300000013, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270003407, 'sppbots', 'Crazy5oul', 539995, 18, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 25, 25, 300000019, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270003408, 'sppbots', 'CrazyClawReaper', 271973532, 66, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 117, 117, 300000024, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270003409, 'sppbots', 'BloodFang', 114038008, 59, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 102, 102, 300000127, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270003410, 'sppbots', 'SwiftKaban98RUS', 696376867, 74, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 103, 103, 300000141, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270003411, 'sppbots', 'StormTerminator', 5231213, 31, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 7, 7, 300000019, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270003412, 'sppbots', 'ProstoTankiST', 254327, 15, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 10, 10, 300000069, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270003413, 'sppbots', 'TanyuhaKuznecov', 7729999, 34, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 1, 1, 300000094, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270003414, 'sppbots', 'GrishaKuznecov3', 804219972, 75, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 113, 113, 300000150, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270003415, 'sppbots', 'duMoH06', 212716741, 64, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 103, 103, 300000135, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270003416, 'sppbots', 'DarkRavenBlade', 146307211, 61, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 90, 90, 300000025, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270003417, 'sppbots', 'D3ath', 141192, 13, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 18, 18, 300000070, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270003418, 'sppbots', 'KoJI6acaKupIIu4', 0, 1, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 0, 0, 300000032, 'PKK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270003419, 'sppbots', 'D4rkDemon', 17137002, 41, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 16, 16, 300000107, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270003420, 'sppbots', 'BodryyVitek', 101676, 12, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 10, 10, 300000065, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270003421, 'sppbots', 'Swift5oul', 31378, 9, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 10, 10, 300000065, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270003422, 'sppbots', 'NightDragon1995', 19423, 8, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 31, 31, 300000066, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270003423, 'sppbots', 'xuTpbIuBoB4uK', 1242536, 22, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 7, 7, 300000050, 'PKK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270003424, 'sppbots', 'cMupHoB1994', 0, 1, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 53, 53, 300000056, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270003425, 'sppbots', 'sanyakozlow', 675590, 19, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 0, 0, 300000077, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270003426, 'sppbots', 'vitekzaycev2005', 1242536, 22, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 35, 35, 300000027, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270003427, 'sppbots', 'PashaSmirnoff90', 68, 2, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 38, 38, 300000005, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270003428, 'sppbots', 'GroznyjDed', 25524751, 45, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 55, 55, 300000033, 'PKK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270003429, 'sppbots', 'StormMonk', 387197529, 69, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 117, 117, 300000137, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270003430, 'sppbots', 'LoneRogue99', 71201, 11, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 44, 44, 300000064, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270003431, 'sppbots', 'zhirnyjpetrovich', 45524865, 51, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 8, 8, 300000112, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270003432, 'sppbots', 'NaglyyRuslanRUS', 804219972, 75, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 103, 103, 300000149, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270003433, 'sppbots', 'IIode3dKiller', 71201, 11, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 31, 31, 300000065, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270003434, 'sppbots', 'SwiftHunter', 70852742, 55, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 92, 92, 300000007, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270003435, 'sppbots', 'LoneKot', 1786365, 24, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 35, 35, 0, 'PKK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270003436, 'sppbots', 'BodryyBarsukMonk', 18995573, 42, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 27, 27, 300000035, 'PKK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270003437, 'sppbots', 'BodryyMonah1996', 696376867, 74, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 94, 94, 300000039, 'PKK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270003438, 'sppbots', 'upKaTitan50', 23180442, 44, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 36, 36, 300000109, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270003439, 'sppbots', 'xXyrapHbIuHy6Xx', 167243291, 62, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 90, 90, 300000026, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270003440, 'sppbots', 'KeHT4ng3l95', 426284, 17, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 0, 0, 300000028, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270003441, 'sppbots', 'IIeTpyxaIIeTpoB', 675590, 19, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 10, 10, 300000075, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270003442, 'sppbots', 'dep3KuuKa6aHKoT', 606319094, 73, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 94, 94, 300000142, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270003443, 'sppbots', 'coHHbIu4uTep04', 19423, 8, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 0, 0, 0, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270003444, 'sppbots', 'NataxaMedvedew7', 2497059, 26, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 54, 54, 300000082, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270003445, 'sppbots', 'shadowice', 0, 1, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 25, 25, 300000055, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270003446, 'sppbots', 'MadDr4gon64', 13844879, 39, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 35, 35, 300000093, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270003447, 'sppbots', 'do6pbIuIce', 2497059, 26, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 11, 11, 300000088, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270003448, 'sppbots', 'ToJI9IHKy3HecoB', 2118860, 25, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 26, 26, 300000081, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270003449, 'sppbots', 'GhostFang', 387197529, 69, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 90, 90, 300000029, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270003450, 'sppbots', 'CheburekGarazh00', 1242536, 22, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 22, 22, 300000079, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270003451, 'sppbots', 'DarkBishop', 51262204, 52, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 16, 16, 300000120, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270003452, 'sppbots', 'SweetClaw22', 426284, 17, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 0, 0, 300000078, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270003453, 'sppbots', 'DikiyZheka98', 70852742, 55, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 94, 94, 300000007, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270003454, 'sppbots', 'PetrOFF04RUS', 835854, 20, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 39, 39, 300000071, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270003455, 'sppbots', 'YurecVolkow1992', 17137002, 41, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 55, 55, 300000013, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270003456, 'sppbots', 'Semki2002', 40153995, 50, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 12, 12, 0, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270003457, 'sppbots', 'SwiftKolbaSA5', 18995573, 42, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 2, 2, 300000109, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270003458, 'sppbots', 'BaJIeHoK4yMa75', 167243291, 62, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 92, 92, 300000122, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270003459, 'sppbots', '6apcyK66', 237351413, 65, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 88, 88, 300000139, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270003460, 'sppbots', 'MapMeJIad04', 3407873, 28, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 54, 54, 300000012, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270003461, 'sppbots', 'DimanIvanov', 15422851, 40, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 5, 5, 300000011, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270003462, 'sppbots', 'roJIodHbIuHacT9I', 40153995, 50, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 12, 12, 300000117, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270003463, 'sppbots', 'MCCrazyHomyak', 28049509, 46, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 9, 9, 300000108, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270003464, 'sppbots', '3v1lDragon', 675590, 19, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 18, 18, 300000074, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270003465, 'sppbots', 'StormM45ter', 71201, 11, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 44, 44, 300000010, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270003466, 'sppbots', 'upKaIIyIIKuH', 254327, 15, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 10, 10, 0, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270003467, 'sppbots', '6op3bIuLLIaypMa', 835854, 20, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 1, 1, 300000077, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270003468, 'sppbots', 'FrostWolf', 71201, 11, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 31, 31, 300000006, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270003469, 'sppbots', 'xXIIyIIKuH64Xx', 6812472, 33, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 45, 45, 300000094, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270003470, 'sppbots', 'EvilKing', 21007103, 43, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 8, 8, 300000025, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270003471, 'sppbots', 'NightSoul1998', 2118860, 25, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 35, 35, 300000090, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270003472, 'sppbots', 'DimanZajcev', 363, 3, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 0, 0, 300000005, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270003473, 'sppbots', 'MaMKuHrpuLLIa49', 114038008, 59, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 94, 94, 300000122, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270003474, 'sppbots', 'GroznyjKirpich', 1168, 4, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 18, 18, 300000050, 'PKK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270003475, 'sppbots', 'BeshenyjUbivator', 363, 3, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 31, 31, 300000006, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270003476, 'sppbots', 'Slayer89', 1023775, 21, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 53, 53, 0, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270003477, 'sppbots', 'Wolf1997', 57383682, 53, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 36, 36, 300000036, 'PKK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270003478, 'sppbots', 'MadFang', 5981539, 32, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 39, 39, 300000006, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270003479, 'sppbots', 'StasIvanOFF', 101676, 12, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 10, 10, 300000062, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270003480, 'sppbots', 'MCWildGrimMage', 804219972, 75, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 97, 97, 300000150, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270003481, 'sppbots', 'LoneTitan', 57383682, 53, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 12, 12, 300000019, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270003482, 'sppbots', 'LoneRaven86', 363, 3, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 38, 38, 300000056, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270003483, 'sppbots', 'KiryuhaPupkin4', 71201, 11, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 38, 38, 300000068, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270003484, 'sppbots', 'IIacaHFang', 11287, 7, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 44, 44, 300000052, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270003485, 'sppbots', 'B15hop', 25524751, 45, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 12, 12, 300000105, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270003486, 'sppbots', 'MashkaRogue7', 1242536, 22, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 26, 26, 300000072, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270003487, 'sppbots', 'KrivojDream', 363, 3, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 44, 44, 300000041, 'PKK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270003488, 'sppbots', 'GrimSlayer', 40153995, 50, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 12, 12, 300000049, 'PKK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270003489, 'sppbots', 'Monk27', 30764519, 47, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 27, 27, 300000102, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270003490, 'sppbots', '5w3etReaper', 11287, 7, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 53, 53, 300000059, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270003491, 'sppbots', 'ModnyyRogue', 11287, 7, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 0, 0, 300000052, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270003492, 'sppbots', 'pzhaBbIu4uTep', 21007103, 43, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 16, 16, 300000104, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270003493, 'sppbots', 'CrazyKing', 1023775, 21, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 35, 35, 300000076, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270003494, 'sppbots', 'BlackT1tan', 12395149, 38, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 54, 54, 300000008, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270003495, 'sppbots', 'SonnyjMashka90', 70852742, 55, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 117, 117, 300000116, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270003496, 'sppbots', 'cTapbIu6aToH', 2118860, 25, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 26, 26, 300000089, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270003497, 'sppbots', 'IronDragon', 28049509, 46, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 16, 16, 300000039, 'PKK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270003498, 'sppbots', 'BratokRUS', 11287, 7, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 0, 0, 300000056, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270003499, 'sppbots', 'TikhiyTerminator', 4555766, 30, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 7, 7, 300000081, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270003500, 'sppbots', 'LyutyyStasPupkin', 0, 1, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 44, 44, 300000057, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270003501, 'sppbots', 'MonaxPacan', 101676, 12, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 38, 38, 300000065, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270003502, 'sppbots', 'VovanKuznecow', 0, 1, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 0, 0, 300000030, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270003503, 'sppbots', 'pzhaBbIu6oMzh', 0, 1, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 44, 44, 300000055, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270003504, 'sppbots', 'PelmenChesnok06', 1168, 4, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 0, 0, 300000045, 'PKK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270003505, 'sppbots', 'MamkinMarmelad', 2884, 5, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 0, 0, 300000054, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270003506, 'sppbots', 'GrimSniper', 71201, 11, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 0, 0, 300000064, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270003507, 'sppbots', 'StormRaven95', 346825235, 68, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 102, 102, 300000140, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270003508, 'sppbots', 'BodryjTravka6', 40153995, 50, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 27, 27, 300000115, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270003509, 'sppbots', 'UgarnyjRaven', 254327, 15, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 0, 0, 300000064, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270003510, 'sppbots', 'orypec05', 28049509, 46, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 16, 16, 300000019, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270003511, 'sppbots', 'DobryyKolbasa', 48229, 10, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 31, 31, 0, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270003512, 'sppbots', 'pasha', 191452, 14, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 31, 31, 300000025, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270003513, 'sppbots', '4eTKuuIIeTpyxa', 254327, 15, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 25, 25, 300000061, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270003514, 'sppbots', 'LLIycTpbIuoJIer', 2925229, 27, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 54, 54, 300000087, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270003515, 'sppbots', 'Kefup2006', 114038008, 59, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 110, 110, 300000126, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270003516, 'sppbots', 'sonnyjnataha', 91162131, 57, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 90, 90, 300000028, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270003517, 'sppbots', 'LLIaLLIJIbIK34', 28049509, 46, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 16, 16, 300000109, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270003518, 'sppbots', 'ZhirnyyNub', 30764519, 47, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 16, 16, 300000023, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270003519, 'sppbots', 'TrueSoul', 126509030, 60, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 103, 103, 300000122, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270003520, 'sppbots', 'rpo3HbIuJIeHKa40', 45524865, 51, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 40, 40, 300000114, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270003521, 'sppbots', 'TerminatorBishop', 91162131, 57, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 113, 113, 300000005, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270003522, 'sppbots', 'PetruxaSidorow', 532692055, 72, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 90, 90, 300000142, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270003523, 'sppbots', 'yrapHbIuBac9I2', 191452, 14, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 0, 0, 300000064, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270003524, 'sppbots', 'SilentTankist', 80700339, 56, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 90, 90, 0, 'PKK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270003525, 'sppbots', 'cocedcoced', 3407873, 28, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 54, 54, 300000088, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270003526, 'sppbots', 'KpacaB4uK06', 167243291, 62, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 113, 113, 300000130, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270003527, 'sppbots', 'HacT9I3auceB', 189363788, 63, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 94, 94, 300000127, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270003528, 'sppbots', '4yMaKnight', 191452, 14, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 0, 0, 300000061, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270003529, 'sppbots', 'dedBoJIK', 237351413, 65, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 102, 102, 300000133, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270003530, 'sppbots', 'HarJIbIuduMoH', 675590, 19, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 0, 0, 300000006, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270003531, 'sppbots', 'Djrpo3HbIuBoBaH', 6038, 6, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 0, 0, 0, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270003532, 'sppbots', 'SanekSmirnov', 606319094, 73, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 90, 90, 300000144, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270003533, 'sppbots', 'MCWildDragon', 931275828, 76, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 117, 117, 300000016, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270003534, 'sppbots', 'ironfang', 4555766, 30, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 54, 54, 300000020, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270003535, 'sppbots', 'irkapupkin', 141192, 13, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 18, 18, 300000067, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270003536, 'sppbots', 'BomzhBaton', 331864, 16, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 0, 0, 300000014, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270003537, 'sppbots', 'pycJIaHKo3JIoB8', 167243291, 62, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 110, 110, 300000048, 'PKK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270003538, 'sppbots', 'upKaKy3HecoB88', 1786365, 24, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 7, 7, 300000084, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270003539, 'sppbots', 'MrGhostWolf', 71201, 11, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 10, 10, 300000030, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270003540, 'sppbots', 'WildMonk', 1242536, 22, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 35, 35, 300000005, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270003541, 'sppbots', 'IronMasterDeath', 146307211, 61, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 108, 108, 300000122, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270003542, 'sppbots', 'DjGroznyjStas', 1242536, 22, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 26, 26, 300000078, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270003543, 'sppbots', 'Volkoff89RUS', 33679907, 48, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 55, 55, 0, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270003544, 'sppbots', 'LoneKiller', 48229, 10, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 18, 18, 300000070, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270003545, 'sppbots', 'derzkiykompot', 2925229, 27, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 11, 11, 300000082, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270003546, 'sppbots', 'MCKolbasa', 11287, 7, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 0, 0, 300000051, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270003547, 'sppbots', 'Grisha7', 931275828, 76, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 103, 103, 300000143, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270003548, 'sppbots', 'GrimStar', 429632402, 70, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 93, 93, 0, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270003549, 'sppbots', 'TerminatorOgurec', 696376867, 74, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 97, 97, 300000046, 'PKK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270003550, 'sppbots', 'xXHunterXx', 254327, 15, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 0, 0, 300000001, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270003551, 'sppbots', 'TrueSosed', 45524865, 51, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 27, 27, 300000113, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270003552, 'sppbots', 'cBeTKacMupHoB61', 363, 3, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 38, 38, 300000055, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270003553, 'sppbots', 'LoneR3ap3rMage', 11066012, 37, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 22, 22, 300000096, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270003554, 'sppbots', 'MaMKuHMaKc1993', 308441375, 67, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 108, 108, 300000038, 'PKK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270003555, 'sppbots', 'Rider32', 11066012, 37, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 15, 15, 300000099, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270003556, 'sppbots', 'BuTeKKy3HecoB', 6038, 6, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 38, 38, 300000057, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270003557, 'sppbots', 'EvilSilentDream', 31378, 9, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 53, 53, 300000069, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270003558, 'sppbots', 'upKa', 1242536, 22, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 45, 45, 300000078, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270003559, 'sppbots', 'MaMKuHoJIer7', 114038008, 59, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 92, 92, 300000128, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270003560, 'sppbots', 'ShadowSniper', 606319094, 73, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 103, 103, 300000149, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270003561, 'sppbots', 'MrTuMyp3auceB4', 102265326, 58, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 110, 110, 300000125, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270003562, 'sppbots', 'KaratelKOT65', 429632402, 70, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 88, 88, 0, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270003563, 'sppbots', 'IOpec1999RUS', 68, 2, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 0, 0, 0, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270003564, 'sppbots', 'Ky3HecoB97', 28049509, 46, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 27, 27, 300000109, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270003565, 'sppbots', 'cTeIIaHcudopoB', 1242536, 22, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 35, 35, 300000075, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270003566, 'sppbots', 'bloodtitan', 474205751, 71, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 88, 88, 0, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270003567, 'sppbots', 'BedbMaKorypec', 363, 3, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 18, 18, 300000015, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270003568, 'sppbots', 'FrostSw1ftSniper', 146307211, 61, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 88, 88, 0, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270003569, 'sppbots', 'xXKrivojKolyanXx', 474205751, 71, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 103, 103, 300000027, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270003570, 'sppbots', '3JIouKeHTBedbMaK', 1023775, 21, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 7, 7, 300000079, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270003571, 'sppbots', 'DashkaMedvedev', 19423, 8, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 0, 0, 300000068, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270003572, 'sppbots', '4eTKuuTaHKucT', 25524751, 45, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 24, 24, 0, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270003573, 'sppbots', 'cBeTKaIIeTpoB', 30764519, 47, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 36, 36, 0, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270003574, 'sppbots', 'LonePes', 804219972, 75, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 113, 113, 300000147, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270003575, 'sppbots', 'BelyashPelmen', 3949727, 29, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 39, 39, 300000089, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270003576, 'sppbots', 'ShadowMaster92', 71201, 11, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 10, 10, 300000007, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270003577, 'sppbots', 'ZhekaPetrov', 63907585, 54, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 16, 16, 300000013, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270003578, 'sppbots', 'svetkaivanoff', 4555766, 30, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 11, 11, 300000040, 'PKK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270003579, 'sppbots', 'SwiftAng3l', 19423, 8, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 38, 38, 300000020, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270003580, 'sppbots', 'IIeTpoBu4Reaper', 675590, 19, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 0, 0, 300000015, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270003581, 'sppbots', 'CrazyBr4tokRUS', 11066012, 37, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 15, 15, 300000097, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270003582, 'sppbots', 'ShustryyEzhik', 114038008, 59, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 88, 88, 300000123, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270003583, 'sppbots', 'CrazyIceIce', 51262204, 52, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 8, 8, 300000116, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270003584, 'sppbots', 'MCKabanSuhar1986', 675590, 19, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 18, 18, 300000079, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270003585, 'sppbots', 'KapaTeJIbded02', 31378, 9, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 53, 53, 0, 'PKK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270003586, 'sppbots', 'GhostWildFire', 18995573, 42, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 16, 16, 300000017, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270003587, 'sppbots', 'Lord1987RUS', 80700339, 56, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 97, 97, 300000124, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270003588, 'sppbots', 'IrkaT1t4n', 13844879, 39, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 35, 35, 300000044, 'PKK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270003589, 'sppbots', 'Lopata5tAR', 212716741, 64, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 117, 117, 300000032, 'PKK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270003590, 'sppbots', 'TrueShadowBaton', 68, 2, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 31, 31, 300000055, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270003591, 'sppbots', 'MrrapazhMoHax', 191452, 14, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 10, 10, 0, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270003592, 'sppbots', 'oldshadowangel', 189363788, 63, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 93, 93, 300000127, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270003593, 'sppbots', 'TrueDeath', 70852742, 55, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 113, 113, 300000113, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270003594, 'sppbots', 'Andryuha', 71201, 11, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 10, 10, 300000068, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270003595, 'sppbots', 'YurecPetrOFF93', 68, 2, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 25, 25, 0, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270003596, 'sppbots', 'MaLLIKa2004', 387197529, 69, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 97, 97, 300000019, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270003597, 'sppbots', 'NightR34perRider', 426284, 17, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 10, 10, 300000073, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270003598, 'sppbots', 'TuxuuIIaJIbI4', 40153995, 50, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 24, 24, 300000114, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270003599, 'sppbots', 'dobryjtravka', 331864, 16, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 38, 38, 300000079, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270003600, 'sppbots', 'GhostBishop2001', 6038, 6, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 0, 0, 300000060, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270003601, 'sppbots', 'MeJIKuuded6apcyK', 254327, 15, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 10, 10, 300000068, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270003602, 'sppbots', 'BloodKefir', 167243291, 62, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 92, 92, 300000124, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270003603, 'sppbots', 'Petruxa1989', 1495531, 23, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 4, 4, 300000072, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270003604, 'sppbots', 'Ir0nKompot63', 5231213, 31, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 35, 35, 300000024, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270003605, 'sppbots', 'cTapbIu4yLLIIIaH', 363, 3, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 53, 53, 300000058, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270003606, 'sppbots', '3JIoucaH9I', 429632402, 70, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 113, 113, 300000133, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270003607, 'sppbots', '0ldTerminator', 2884, 5, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 18, 18, 300000052, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270003608, 'sppbots', 'crazydeath', 11287, 7, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 53, 53, 300000051, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270003609, 'sppbots', 'IIpocToKoMIIoT', 146307211, 61, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 103, 103, 300000047, 'PKK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270003610, 'sppbots', 'MrMedvedev', 11287, 7, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 44, 44, 300000060, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270003611, 'sppbots', 'kiryuhakozlov89', 254327, 15, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 25, 25, 300000008, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270003612, 'sppbots', 'MedoedKing', 31378, 9, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 0, 0, 300000023, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270003613, 'sppbots', 'SweetWildBishOP', 2118860, 25, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 22, 22, 300000042, 'PKK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270003614, 'sppbots', 'HaTaxa3auceB', 80700339, 56, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 94, 94, 300000123, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270003615, 'sppbots', 'MrStormFire', 2925229, 27, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 15, 15, 300000084, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270003616, 'sppbots', 'DarkDreamClaw', 474205751, 71, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 117, 117, 300000139, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270003617, 'sppbots', 'roJIodHbIucoced', 6812472, 33, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 39, 39, 300000097, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270003618, 'sppbots', 'Fr0stReaper', 212716741, 64, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 117, 117, 300000037, 'PKK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270003619, 'sppbots', 'Chushpan3', 1242536, 22, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 11, 11, 300000025, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270003620, 'sppbots', 'BlackCrazyKomp0t', 70852742, 55, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 110, 110, 0, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270003621, 'sppbots', '4e6ypeK', 6812472, 33, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 45, 45, 300000036, 'PKK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270003622, 'sppbots', 'duKuu6eJI9ILLI', 2497059, 26, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 22, 22, 300000087, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270003623, 'sppbots', 'Slayer2RUS', 126509030, 60, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 103, 103, 300000004, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270003624, 'sppbots', 'PetruxaRaven', 3407873, 28, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 7, 7, 300000050, 'PKK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270003625, 'sppbots', 'LLIycTpbIuMoHax', 474205751, 71, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 94, 94, 300000027, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270003626, 'sppbots', 'ZadrotBarsUK', 426284, 17, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 0, 0, 300000080, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270003627, 'sppbots', 'MonakhBelyash', 30764519, 47, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 2, 2, 300000108, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270003628, 'sppbots', 'OldRaven25RUS', 141192, 13, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 18, 18, 0, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270003629, 'sppbots', 'DjJIoIIaTa3adpoT', 7729999, 34, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 26, 26, 300000091, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270003630, 'sppbots', 'PesTerminator', 30764519, 47, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 27, 27, 300000109, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270003631, 'sppbots', 'FrostKnight2001', 3407873, 28, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 7, 7, 300000089, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270003632, 'sppbots', 'zhupHbIuIIode3d', 91162131, 57, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 94, 94, 300000123, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270003633, 'sppbots', 'SwiftBishopWolf', 40153995, 50, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 5, 5, 300000031, 'PKK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270003634, 'sppbots', 'NightReaper2002', 31378, 9, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 31, 31, 300000069, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270003635, 'sppbots', 'MeJIKuuupKaFang', 835854, 20, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 39, 39, 300000040, 'PKK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270003636, 'sppbots', 'LoneDrag0N', 19423, 8, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 18, 18, 300000042, 'PKK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270003637, 'sppbots', 'DarkRavenHunter', 2884, 5, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 18, 18, 300000060, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270003638, 'sppbots', 'StormUbivator', 1023775, 21, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 26, 26, 300000077, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270003639, 'sppbots', 'do6pbIucaHeK', 1168, 4, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 0, 0, 300000030, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270003640, 'sppbots', '6op3bIuduMoH', 6038, 6, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 0, 0, 300000014, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270003641, 'sppbots', 'DjKoJI9IH90', 189363788, 63, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 88, 88, 300000121, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270003642, 'sppbots', 'Zheka90', 237351413, 65, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 93, 93, 300000030, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270003643, 'sppbots', 'LysyyShaurma2003', 346825235, 68, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 97, 97, 300000137, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270003644, 'sppbots', 'KompotBaTYA', 189363788, 63, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 110, 110, 300000009, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270003645, 'sppbots', 'GolodnyyReaper36', 6812472, 33, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 35, 35, 300000099, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270003646, 'sppbots', 'StaryyChebuREK', 346825235, 68, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 117, 117, 300000134, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270003647, 'sppbots', 'MaLLIKaBoJIKoB88', 12395149, 38, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 7, 7, 300000096, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270003648, 'sppbots', 'NaglyyMuhomor', 70852742, 55, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 117, 117, 300000115, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270003649, 'sppbots', 'ShustryjSuxar', 15422851, 40, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 40, 40, 300000103, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270003650, 'sppbots', 'xXBoJIKoB6Xx', 331864, 16, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 0, 0, 300000001, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270003651, 'sppbots', '5w1ftReaperRUS', 5231213, 31, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 22, 22, 300000083, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270003652, 'sppbots', 'Ka6aH4yMa', 12395149, 38, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 4, 4, 300000097, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270003653, 'sppbots', 'ToJIuKKy3HecoB5', 2118860, 25, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 7, 7, 300000026, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270003654, 'sppbots', 'xXGrimWolfXx', 80700339, 56, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 92, 92, 300000127, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270003655, 'sppbots', 'IIaJIbI403', 346825235, 68, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 117, 117, 300000048, 'PKK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270003656, 'sppbots', 'PesKaban98', 363, 3, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 0, 0, 300000025, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270003657, 'sppbots', 'SweetLoneWolf', 3949727, 29, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 11, 11, 300000090, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270003658, 'sppbots', 'UnylyyVedmak37', 675590, 19, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 0, 0, 300000013, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270003659, 'sppbots', 'IOpecSoul', 70852742, 55, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 113, 113, 0, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270003660, 'sppbots', 'KoJI9IH01', 271973532, 66, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 110, 110, 300000133, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270003661, 'sppbots', 'ProstoLehaZaycev', 80700339, 56, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 90, 90, 300000127, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270003662, 'sppbots', 'SuXAR2', 68, 2, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 25, 25, 300000039, 'PKK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270003663, 'sppbots', 'HarJIbIuIOpec', 3407873, 28, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 54, 54, 0, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270003664, 'sppbots', 'rpo3HbIudaLLIKa', 141192, 13, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 38, 38, 300000067, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270003665, 'sppbots', 'LysyjMaksIwanow', 2497059, 26, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 7, 7, 300000086, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270003666, 'sppbots', 'MaMKuHLord', 212716741, 64, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 113, 113, 300000035, 'PKK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270003667, 'sppbots', 'Lord92', 532692055, 72, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 103, 103, 300000150, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270003668, 'sppbots', 'wildrider87', 13844879, 39, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 11, 11, 300000029, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270003669, 'sppbots', '6op3bIuduMoH1', 363, 3, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 31, 31, 300000002, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270003670, 'sppbots', 'BomzhEzhIKRUS', 1495531, 23, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 15, 15, 300000022, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270003671, 'sppbots', 'zhupHbIuHacT9I', 45524865, 51, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 55, 55, 300000114, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270003672, 'sppbots', 'OgurecKent', 101676, 12, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 44, 44, 300000064, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270003673, 'sppbots', 'Fro5tRogue', 25524751, 45, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 55, 55, 300000105, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270003674, 'sppbots', 'Mrkompottopor', 1495531, 23, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 53, 53, 300000072, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270003675, 'sppbots', 'evils0ul', 15422851, 40, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 12, 12, 300000107, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270003676, 'sppbots', 'zheKacMupHoB', 68, 2, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 44, 44, 300000035, 'PKK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270003677, 'sppbots', 'OldDragonDeath23', 63907585, 54, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 55, 55, 300000021, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270003678, 'sppbots', 'peaJIbHbIuBishop', 21007103, 43, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 46, 46, 0, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270003679, 'sppbots', 'MrFireRUS', 191452, 14, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 18, 18, 300000068, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270003680, 'sppbots', 'MCGroznyjIce', 11066012, 37, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 22, 22, 300000099, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270003681, 'sppbots', 'ZhirnyyAndryuxa', 675590, 19, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 44, 44, 300000001, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270003682, 'sppbots', 'Dj5t0rmArrow59', 1168, 4, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 38, 38, 300000006, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270003683, 'sppbots', 'xoM9IKBishop63', 19423, 8, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 0, 0, 0, 'PKK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270003684, 'sppbots', 'Angel33', 331864, 16, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 0, 0, 300000071, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270003685, 'sppbots', 'UnylyyTolyan', 15422851, 40, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 46, 46, 300000106, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270003686, 'sppbots', 'Gr1mNightKnigHT', 3407873, 28, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 26, 26, 0, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270003687, 'sppbots', 'FrostChum4', 63907585, 54, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 40, 40, 300000114, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270003688, 'sppbots', 'IIeTpoB1', 28049509, 46, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 40, 40, 300000106, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270003689, 'sppbots', 'Stepan', 91162131, 57, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 110, 110, 0, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270003690, 'sppbots', 'IronKOT', 363, 3, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 0, 0, 300000026, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270003691, 'sppbots', 'Bishop45', 3949727, 29, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 39, 39, 300000087, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270003692, 'sppbots', 'DarkRiderRUS', 17137002, 41, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 36, 36, 0, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270003693, 'sppbots', '5il3ntArrow', 271973532, 66, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 90, 90, 300000028, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270003694, 'sppbots', 'LoneFire1995', 2497059, 26, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 4, 4, 300000005, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270003695, 'sppbots', 'HomyakBatya85', 1023775, 21, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 26, 26, 300000080, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270003696, 'sppbots', 'WildSniperRaven', 3407873, 28, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 54, 54, 300000084, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270003697, 'sppbots', 'BeshenyyVovan', 80700339, 56, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 113, 113, 0, 'PKK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270003698, 'sppbots', 'MashkaZajCEV', 30764519, 47, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 2, 2, 300000110, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270003699, 'sppbots', 'SwiftMonkRider', 9850111, 36, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 7, 7, 300000004, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270003700, 'sppbots', 'DobryyGopnik33', 36806133, 49, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 46, 46, 300000114, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270003701, 'sppbots', 'BloodStar', 0, 1, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 0, 0, 300000011, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270003702, 'sppbots', 'LopataTopor', 7729999, 34, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 26, 26, 300000099, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270003703, 'sppbots', 'MCOldKrasavchik', 2497059, 26, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 15, 15, 300000086, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270003704, 'sppbots', 'LoneFire', 6812472, 33, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 54, 54, 300000100, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270003705, 'sppbots', 'StasMedvedew', 9850111, 36, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 22, 22, 300000091, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270003706, 'sppbots', 'cTac3auceB2002', 28049509, 46, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 5, 5, 300000107, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270003707, 'sppbots', 'DarkMonkKnight', 11287, 7, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 0, 0, 300000052, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270003708, 'sppbots', 'Andryukha93', 835854, 20, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 11, 11, 300000004, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270003709, 'sppbots', 'ShustryyPes', 40153995, 50, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 5, 5, 300000118, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270003710, 'sppbots', 'SweetK3nt90', 4555766, 30, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 45, 45, 300000005, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270003711, 'sppbots', 'CrazySniper', 21007103, 43, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 24, 24, 300000011, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270003712, 'sppbots', 'MamkinChuma', 114038008, 59, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 117, 117, 300000050, 'PKK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270003713, 'sppbots', 'NastyaZaycev', 931275828, 76, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 110, 110, 300000148, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270003714, 'sppbots', 'MelkiyKefir', 331864, 16, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 38, 38, 300000071, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270003715, 'sppbots', '5wiftRogue', 1495531, 23, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 7, 7, 300000073, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270003716, 'sppbots', 'xXBlackStarXx', 70852742, 55, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 108, 108, 0, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270003717, 'sppbots', 'TapokChesnok97', 191452, 14, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 10, 10, 300000062, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270003718, 'sppbots', '6op3bIuIIecKeHT', 23180442, 44, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 55, 55, 300000104, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270003719, 'sppbots', 'YurecW0lf', 2925229, 27, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 22, 22, 300000081, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270003720, 'sppbots', 'TerminatorLopata', 33679907, 48, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 5, 5, 0, 'PKK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270003721, 'sppbots', 'MarmeladBomZH92', 13844879, 39, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 4, 4, 300000092, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270003722, 'sppbots', 'BelyashSosed', 675590, 19, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 0, 0, 300000071, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270003723, 'sppbots', 'rpuLLIaRUS', 21007103, 43, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 16, 16, 300000035, 'PKK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270003724, 'sppbots', 'roJIodHbIuWolf', 363, 3, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 0, 0, 0, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270003725, 'sppbots', 'PelmenKing', 1786365, 24, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 22, 22, 300000088, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270003726, 'sppbots', 'DerzkiyVovan00', 45524865, 51, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 40, 40, 300000043, 'PKK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270003727, 'sppbots', 'ceMKuIIec', 5231213, 31, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 4, 4, 300000086, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270003728, 'sppbots', 'BlackEzhik', 31378, 9, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 0, 0, 300000049, 'PKK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270003729, 'sppbots', 'Fr0stArrow', 36806133, 49, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 9, 9, 300000003, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270003730, 'sppbots', 'ezhuKy6uBaTop', 2497059, 26, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 39, 39, 300000013, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270003731, 'sppbots', 'rapazhTaHKucT', 25524751, 45, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 12, 12, 300000105, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270003732, 'sppbots', 'xXFrostKingXx', 57383682, 53, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 5, 5, 300000115, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270003733, 'sppbots', 'GhostRaven06', 606319094, 73, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 103, 103, 300000001, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270003734, 'sppbots', 'MadMa5ter', 19423, 8, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 38, 38, 300000063, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270003735, 'sppbots', 'MCfedopIIeTpoB', 606319094, 73, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 113, 113, 300000147, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270003736, 'sppbots', 'ShadowAngel', 2497059, 26, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 7, 7, 0, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270003737, 'sppbots', '6eLLIeHbIuKiller', 4555766, 30, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 1, 1, 300000090, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270003738, 'sppbots', 'kozloff', 606319094, 73, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 92, 92, 300000141, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270003739, 'sppbots', 'NightMaster', 57383682, 53, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 36, 36, 300000115, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270003740, 'sppbots', 'MaMKuHcTacuBaHoB', 141192, 13, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 0, 0, 300000067, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270003741, 'sppbots', 'duKuuMapMeJIad', 11287, 7, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 10, 10, 300000011, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270003742, 'sppbots', 'TikhiyEzhik95', 835854, 20, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 22, 22, 0, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270003743, 'sppbots', 'DerzkijSemki', 19423, 8, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 0, 0, 300000070, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270003744, 'sppbots', 'MrNightTitan', 539995, 18, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 44, 44, 300000079, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270003745, 'sppbots', 'MrBloodClaw', 3949727, 29, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 7, 7, 300000082, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270003746, 'sppbots', 'KeHT07', 51262204, 52, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 40, 40, 300000115, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270003747, 'sppbots', 'DobryyStas', 539995, 18, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 10, 10, 300000010, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270003748, 'sppbots', 'cocedJIoIIaTa89', 474205751, 71, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 94, 94, 300000135, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270003749, 'sppbots', 'DjMedvedev', 2884, 5, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 0, 0, 300000060, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270003750, 'sppbots', 'VovchikIvanOFF24', 1495531, 23, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 7, 7, 300000075, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270003751, 'sppbots', 'KpuBouceMKu', 31378, 9, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 53, 53, 300000063, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270003752, 'sppbots', 'StaryjLenka', 2497059, 26, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 54, 54, 300000089, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270003753, 'sppbots', 'GrimRider00', 1786365, 24, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 39, 39, 300000084, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270003754, 'sppbots', 'NightDarkP0d3zd', 30764519, 47, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 27, 27, 300000022, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270003755, 'sppbots', 'Grim5t4r42', 254327, 15, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 31, 31, 300000062, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270003756, 'sppbots', 'orypec3', 606319094, 73, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 108, 108, 300000145, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270003757, 'sppbots', 'MCZaycew', 114038008, 59, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 93, 93, 300000012, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270003758, 'sppbots', 'zhirnyykolyan', 331864, 16, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 0, 0, 300000072, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270003759, 'sppbots', 'GrimEvilRider', 36806133, 49, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 5, 5, 300000118, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270003760, 'sppbots', 'fedop1997', 68, 2, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 0, 0, 300000057, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270003761, 'sppbots', 'StormDragon92', 532692055, 72, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 103, 103, 300000149, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270003762, 'sppbots', 'dimondream', 18995573, 42, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 5, 5, 300000023, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270003763, 'sppbots', 'Andryukha', 331864, 16, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 0, 0, 300000071, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270003764, 'sppbots', 'ToporBaton99', 308441375, 67, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 92, 92, 300000041, 'PKK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270003765, 'sppbots', 'Lord98', 1023775, 21, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 53, 53, 300000004, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270003766, 'sppbots', 'yrapHbIuTpaBKa', 8740372, 35, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 22, 22, 300000015, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270003767, 'sppbots', 'kotkot5', 6812472, 33, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 39, 39, 300000098, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270003768, 'sppbots', 'ModHbIuIIaJIbI4', 28049509, 46, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 5, 5, 300000109, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270003769, 'sppbots', 'TolyanPupkin93', 532692055, 72, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 94, 94, 300000141, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270003770, 'sppbots', 'DarkHunter68', 474205751, 71, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 90, 90, 300000030, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270003771, 'sppbots', 'MelkiyDimanRUS', 48229, 10, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 25, 25, 300000063, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270003772, 'sppbots', 'KapaTeJIbcyxapb', 8740372, 35, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 45, 45, 0, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270003773, 'sppbots', 'IIeTpoBu4Claw', 126509030, 60, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 103, 103, 300000008, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270003774, 'sppbots', 'NightKnightStar', 101676, 12, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 53, 53, 300000064, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270003775, 'sppbots', 'LysyyBatya', 101676, 12, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 0, 0, 300000063, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270003776, 'sppbots', 'GroznyyGrisha', 126509030, 60, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 97, 97, 300000121, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270003777, 'sppbots', 'MelkijDashka', 5231213, 31, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 54, 54, 300000012, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270003778, 'sppbots', 'Dj4e6ypeK', 1495531, 23, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 7, 7, 300000079, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270003779, 'sppbots', 'roIIHuKKiller', 1242536, 22, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 53, 53, 300000071, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270003780, 'sppbots', 'SilentKnight', 1495531, 23, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 39, 39, 300000076, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270003781, 'sppbots', 'DjxoJIodoKReaper', 2497059, 26, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 4, 4, 0, 'PKK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270003782, 'sppbots', 'LLIaLLIJIbIK93', 254327, 15, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 0, 0, 300000026, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270003783, 'sppbots', 'xXMadIceXx', 102265326, 58, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 92, 92, 300000036, 'PKK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270003784, 'sppbots', 'xXIIode3dClawXx', 237351413, 65, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 94, 94, 300000140, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270003785, 'sppbots', 'MadSwiftBishop92', 48229, 10, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 25, 25, 300000017, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270003786, 'sppbots', 'JIIOTbIurHoMIIec', 539995, 18, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 0, 0, 300000072, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270003787, 'sppbots', 'LoneKing', 114038008, 59, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 117, 117, 0, 'PKK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270003788, 'sppbots', 'Djstaryyreaper', 675590, 19, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 0, 0, 300000075, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270003789, 'sppbots', 'ShadowDragon', 696376867, 74, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 102, 102, 0, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270003790, 'sppbots', 'BlackMasterMage', 114038008, 59, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 113, 113, 300000130, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270003791, 'sppbots', 'LysyjKolbasa', 6038, 6, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 10, 10, 300000060, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270003792, 'sppbots', 'DjKoJI9IH', 7729999, 34, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 35, 35, 0, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270003793, 'sppbots', 'bodryjf4ng', 4555766, 30, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 11, 11, 300000082, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270003794, 'sppbots', 'Gh05tBishopIce', 7729999, 34, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 7, 7, 300000100, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270003795, 'sppbots', 'MCPetrukha', 696376867, 74, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 97, 97, 300000043, 'PKK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270003796, 'sppbots', 'StormCrazyBaton', 8740372, 35, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 15, 15, 0, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270003797, 'sppbots', 'VitekZajcev', 429632402, 70, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 92, 92, 300000140, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270003798, 'sppbots', '5we3tEvilHunter', 346825235, 68, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 117, 117, 300000134, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270003799, 'sppbots', 'GroznyyKolbasa', 308441375, 67, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 117, 117, 300000135, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270003800, 'sppbots', 'KrivoyKaratel3', 146307211, 61, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 110, 110, 300000123, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270003801, 'sppbots', 'KoMIIoTcyxapbRUS', 254327, 15, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 53, 53, 300000062, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270003802, 'sppbots', 'JIbIcbIuBaJIeHoK', 114038008, 59, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 97, 97, 300000126, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270003803, 'sppbots', 'SweetRaven', 91162131, 57, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 113, 113, 300000124, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270003804, 'sppbots', 'zajcev86', 0, 1, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 31, 31, 300000040, 'PKK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270003805, 'sppbots', 'xXMedvedev1Xx', 254327, 15, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 10, 10, 300000067, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270003806, 'sppbots', 'MoHax30', 70852742, 55, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 117, 117, 0, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270003807, 'sppbots', 'NaglyyUbivaTOR', 45524865, 51, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 24, 24, 300000114, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270003808, 'sppbots', 'OldSniper', 0, 1, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 0, 0, 300000056, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270003809, 'sppbots', '6eLLIeHbIuR34per', 429632402, 70, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 103, 103, 300000136, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270003810, 'sppbots', 'Witek', 308441375, 67, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 113, 113, 300000009, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270003811, 'sppbots', '5wiftL0n3Semki', 331864, 16, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 53, 53, 300000076, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270003812, 'sppbots', 'DarkAngelOgurec', 237351413, 65, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 88, 88, 300000022, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270003813, 'sppbots', 'StormFang', 30764519, 47, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 12, 12, 300000105, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270003814, 'sppbots', 'ModHbIuLord', 363, 3, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 44, 44, 0, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270003815, 'sppbots', '4yMarapazh', 2884, 5, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 53, 53, 300000004, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270003816, 'sppbots', 'pycJIaHIIeTpoB', 25524751, 45, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 5, 5, 300000107, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270003817, 'sppbots', 'Gh05tRaven', 167243291, 62, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 90, 90, 300000031, 'PKK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270003818, 'sppbots', 'HomyakTerminator', 15422851, 40, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 40, 40, 300000102, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270003819, 'sppbots', 'MadM4st3r', 146307211, 61, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 94, 94, 0, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270003820, 'sppbots', 'MCIIacaH6aToH', 254327, 15, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 10, 10, 300000066, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270003821, 'sppbots', 'peaJIbHbIuKa6aH', 146307211, 61, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 94, 94, 300000127, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270003822, 'sppbots', 'MeJIKuuDeath8', 101676, 12, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 0, 0, 300000002, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270003823, 'sppbots', 'do6pbIuKoJI9IH', 237351413, 65, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 97, 97, 300000137, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270003824, 'sppbots', 'DedSuhar3', 71201, 11, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 53, 53, 300000024, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270003825, 'sppbots', 'SweetDeath', 6812472, 33, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 7, 7, 300000092, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270003826, 'sppbots', 'VitekTitan', 2497059, 26, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 22, 22, 300000090, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270003827, 'sppbots', '6odpbIuTaHIOxa07', 80700339, 56, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 92, 92, 0, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270003828, 'sppbots', 'rpo3HbIuBuTeK', 101676, 12, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 31, 31, 300000069, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270003829, 'sppbots', 'BloodPes', 30764519, 47, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 9, 9, 300000023, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270003830, 'sppbots', 'modnyjdimon65', 1242536, 22, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 15, 15, 300000024, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270003831, 'sppbots', 'xXBaJIeHoKXx', 25524751, 45, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 12, 12, 300000105, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270003832, 'sppbots', 'LoneStarRUS', 8740372, 35, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 39, 39, 300000100, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270003833, 'sppbots', 'D3m0n87', 539995, 18, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 0, 0, 300000078, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270003834, 'sppbots', 'MamkinMonax89', 15422851, 40, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 55, 55, 300000102, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270003835, 'sppbots', 'Dj4yLLIIIaH', 1495531, 23, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 1, 1, 300000080, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270003836, 'sppbots', 'pzhaBbIuoJIer', 12395149, 38, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 7, 7, 300000011, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270003837, 'sppbots', 'OldClaw', 33679907, 48, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 8, 8, 300000004, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270003838, 'sppbots', 'RzhavyyPacan9', 63907585, 54, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 36, 36, 0, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270003839, 'sppbots', 'SilentDeathRUS', 387197529, 69, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 88, 88, 300000140, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270003840, 'sppbots', 'BloodFang40', 387197529, 69, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 90, 90, 300000135, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270003841, 'sppbots', 'zhupHbIu6aToH', 17137002, 41, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 24, 24, 300000110, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270003842, 'sppbots', 'night5niper2000', 167243291, 62, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 93, 93, 300000130, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270003843, 'sppbots', '4eTKuuMapMeJIad', 146307211, 61, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 94, 94, 300000121, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270003844, 'sppbots', 'IrkaSidorov', 429632402, 70, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 92, 92, 300000005, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270003845, 'sppbots', 'dobryysanekrogue', 6038, 6, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 0, 0, 300000049, 'PKK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270003846, 'sppbots', 'IronClaw', 191452, 14, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 0, 0, 300000065, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270003847, 'sppbots', 'UbivatorSemKI', 606319094, 73, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 97, 97, 300000042, 'PKK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270003848, 'sppbots', 'WildMonkR4ven01', 2925229, 27, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 4, 4, 0, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270003849, 'sppbots', 'SwiftDragon91', 387197529, 69, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 93, 93, 300000137, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270003850, 'sppbots', 'MeJIKuuKoJI9IH', 6812472, 33, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 4, 4, 300000094, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270003851, 'sppbots', 'IronMaster', 40153995, 50, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 24, 24, 300000016, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270003852, 'sppbots', 'GrimDream2007', 31378, 9, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 18, 18, 300000040, 'PKK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270003853, 'sppbots', 'duKuuezhuKTaIIoK', 1786365, 24, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 1, 1, 0, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270003854, 'sppbots', 'lyutyysuxarsosed', 6812472, 33, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 7, 7, 300000093, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270003855, 'sppbots', 'KpacaB4uKcoced', 70852742, 55, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 108, 108, 300000029, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270003856, 'sppbots', 'Snip3r', 11066012, 37, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 11, 11, 300000099, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270003857, 'sppbots', 'NightKiller', 126509030, 60, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 102, 102, 0, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270003858, 'sppbots', '4e6ypeKKefup', 254327, 15, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 53, 53, 300000068, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270003859, 'sppbots', 'pzhaBbIuTuMyp', 45524865, 51, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 40, 40, 0, 'PKK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270003860, 'sppbots', 'TanyuxaKuznecoff', 30764519, 47, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 36, 36, 300000012, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270003861, 'sppbots', 'fedop1', 141192, 13, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 31, 31, 300000062, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270003862, 'sppbots', 'SonnyyGrisha', 804219972, 75, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 94, 94, 300000147, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270003863, 'sppbots', 'gopnikangelRUS', 539995, 18, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 10, 10, 300000072, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270003864, 'sppbots', 'Rider87', 5231213, 31, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 54, 54, 300000085, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270003865, 'sppbots', 'MadAngel', 36806133, 49, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 27, 27, 300000003, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270003866, 'sppbots', 'zhupHbIuBedbMaK', 189363788, 63, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 102, 102, 300000045, 'PKK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270003867, 'sppbots', 'W1ldArrow', 212716741, 64, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 97, 97, 300000015, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270003868, 'sppbots', 'cyxapb4yLLIIIaH', 191452, 14, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 53, 53, 300000066, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270003869, 'sppbots', 'AndryuxaKuzneCOV', 13844879, 39, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 11, 11, 0, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270003870, 'sppbots', 'Bac9IMedBedeB', 675590, 19, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 53, 53, 300000010, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270003871, 'sppbots', 'FedorIvaNOV', 101676, 12, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 0, 0, 300000018, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270003872, 'sppbots', 'NightK1llerClaw', 51262204, 52, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 27, 27, 300000024, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270003873, 'sppbots', 'SanekKozlow01', 191452, 14, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 31, 31, 300000062, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270003874, 'sppbots', 'sonnyjkolbasa', 33679907, 48, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 12, 12, 300000029, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270003875, 'sppbots', 'Ko3JIoB81', 931275828, 76, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 117, 117, 300000141, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270003876, 'sppbots', 'ChumaPelmen', 804219972, 75, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 92, 92, 300000147, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270003877, 'sppbots', 'DikijBarsukSeMKI', 0, 1, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 0, 0, 300000059, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270003878, 'sppbots', 'Slayer93', 2118860, 25, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 35, 35, 300000084, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270003879, 'sppbots', 'xXReaperXx', 12395149, 38, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 1, 1, 300000095, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270003880, 'sppbots', 'SilentChesnok86', 101676, 12, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 25, 25, 300000015, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270003881, 'sppbots', 'DimanKozlow', 28049509, 46, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 55, 55, 300000104, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270003882, 'sppbots', 'SwiftStar', 70852742, 55, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 88, 88, 300000119, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270003883, 'sppbots', '3v1lStar2001', 606319094, 73, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 108, 108, 300000144, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270003884, 'sppbots', 'belyashchiter', 331864, 16, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 25, 25, 300000019, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270003885, 'sppbots', 'GroznyyKirpich', 346825235, 68, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 117, 117, 300000133, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270003886, 'sppbots', 'SwiftMasterFang', 237351413, 65, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 110, 110, 300000034, 'PKK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270003887, 'sppbots', 'LLIycTpbIuupKa', 7729999, 34, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 7, 7, 300000093, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270003888, 'sppbots', 'WolkMarmelad07', 141192, 13, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 38, 38, 300000012, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270003889, 'sppbots', 'LoneDarkSniper', 474205751, 71, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 108, 108, 0, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270003890, 'sppbots', 'DarkDreamFang', 146307211, 61, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 110, 110, 300000125, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270003891, 'sppbots', 'LysyyNataxa90', 28049509, 46, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 8, 8, 300000029, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270003892, 'sppbots', 'NightPelmen', 1495531, 23, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 26, 26, 300000079, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270003893, 'sppbots', 'TuMypRider', 426284, 17, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 44, 44, 300000047, 'PKK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270003894, 'sppbots', 'EvilHunterMedoed', 0, 1, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 0, 0, 300000053, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270003895, 'sppbots', 'KozlOFF07', 141192, 13, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 10, 10, 0, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270003896, 'sppbots', 'GrishaZayCEW', 1786365, 24, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 39, 39, 300000089, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270003897, 'sppbots', 'MadDemonGopnik', 101676, 12, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 18, 18, 300000029, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270003898, 'sppbots', 'Dj1r0nShadowL0rd', 532692055, 72, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 88, 88, 0, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270003899, 'sppbots', 'OldFang', 30764519, 47, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 36, 36, 300000106, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270003900, 'sppbots', 'BlackFro5tDragon', 5981539, 32, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 39, 39, 300000100, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270003901, 'sppbots', 'topormuhomor92', 146307211, 61, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 93, 93, 300000047, 'PKK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270003902, 'sppbots', 'Volkow1999', 17137002, 41, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 40, 40, 300000101, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270003903, 'sppbots', 'BuTeKRider1', 7729999, 34, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 54, 54, 300000038, 'PKK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270003904, 'sppbots', 'cTapbIu4e6ypeK', 429632402, 70, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 97, 97, 300000131, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270003905, 'sppbots', 'IronSniper', 48229, 10, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 53, 53, 300000064, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270003906, 'sppbots', 'TixiyRusLAN', 4555766, 30, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 11, 11, 300000090, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270003907, 'sppbots', 'dikiygarazh6', 102265326, 58, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 88, 88, 300000124, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270003908, 'sppbots', 'Smirnov96', 3407873, 28, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 11, 11, 300000083, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270003909, 'sppbots', 'OldHunt3r', 11287, 7, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 25, 25, 300000060, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270003910, 'sppbots', 'HarJIbIu6oMzh', 308441375, 67, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 102, 102, 300000038, 'PKK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270003911, 'sppbots', 'BloodMageArrow86', 23180442, 44, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 12, 12, 300000014, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270003912, 'sppbots', 'LopaTA79', 363, 3, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 31, 31, 0, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270003913, 'sppbots', 'ShadowTrueClaw', 539995, 18, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 18, 18, 300000072, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270003914, 'sppbots', 'NightDarkGopnik', 30764519, 47, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 12, 12, 300000107, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270003915, 'sppbots', 'BoB4uK3auceB', 3949727, 29, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 35, 35, 300000002, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270003916, 'sppbots', 'MyxoMopMage', 71201, 11, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 44, 44, 300000070, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270003917, 'sppbots', 'DobryyKolyanMonk', 212716741, 64, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 102, 102, 300000133, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270003918, 'sppbots', 'derzkijdashka', 13844879, 39, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 11, 11, 300000091, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270003919, 'sppbots', 'SwiftShadowFire', 931275828, 76, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 113, 113, 300000145, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270003920, 'sppbots', 'lysyytanyuxa58', 91162131, 57, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 113, 113, 0, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270003921, 'sppbots', 'TuxuucaH9I4', 2118860, 25, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 4, 4, 300000088, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270003922, 'sppbots', 'lysyjpasha', 9850111, 36, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 7, 7, 300000099, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270003923, 'sppbots', 'WildSlayer', 91162131, 57, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 110, 110, 300000020, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270003924, 'sppbots', 'Sanya02', 6812472, 33, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 15, 15, 300000010, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270003925, 'sppbots', 'coced01', 606319094, 73, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 113, 113, 300000149, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270003926, 'sppbots', 'duMoHDragon', 51262204, 52, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 5, 5, 300000112, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270003927, 'sppbots', 'NightDream', 804219972, 75, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 110, 110, 300000141, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270003928, 'sppbots', 'xXduKuuBuTeKXx', 48229, 10, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 10, 10, 300000067, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270003929, 'sppbots', 'MrWolf90', 1495531, 23, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 39, 39, 300000014, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270003930, 'sppbots', 'ShadowSlayer', 2118860, 25, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 15, 15, 300000084, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270003931, 'sppbots', 'SilentOgurec', 8740372, 35, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 45, 45, 300000100, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270003932, 'sppbots', 'GhostBishop', 2925229, 27, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 54, 54, 300000082, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270003933, 'sppbots', '6odpbIucBeTKaRUS', 146307211, 61, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 97, 97, 300000128, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270003934, 'sppbots', 'GhostMage', 931275828, 76, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 117, 117, 300000021, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270003935, 'sppbots', 'chushpanpes5', 71201, 11, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 53, 53, 300000018, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270003936, 'sppbots', 'MashkaPetrow88', 12395149, 38, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 4, 4, 0, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270003937, 'sppbots', '6odpbIudaLLIKa', 101676, 12, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 10, 10, 300000064, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270003938, 'sppbots', 'DobryyMonah', 254327, 15, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 31, 31, 300000061, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270003939, 'sppbots', 'OldBlade', 271973532, 66, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 93, 93, 300000134, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270003940, 'sppbots', 'TrueR34per', 33679907, 48, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 27, 27, 300000119, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270003941, 'sppbots', 'xXBodryyVovanXx', 71201, 11, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 0, 0, 300000031, 'PKK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270003942, 'sppbots', 'MadDeath97', 0, 1, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 44, 44, 300000056, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270003943, 'sppbots', 'PetrovichIvanov', 3949727, 29, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 11, 11, 0, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270003944, 'sppbots', 'CrazyWildDream84', 19423, 8, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 10, 10, 300000031, 'PKK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270003945, 'sppbots', 'rHoMded', 237351413, 65, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 92, 92, 300000138, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270003946, 'sppbots', 'IIeTpoBRUS', 3407873, 28, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 4, 4, 0, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270003947, 'sppbots', 'NagibatorKolbaSA', 80700339, 56, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 88, 88, 300000045, 'PKK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270003948, 'sppbots', 'Medoed3', 71201, 11, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 0, 0, 300000068, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270003949, 'sppbots', 'GhostSlayer', 6812472, 33, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 35, 35, 300000012, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270003950, 'sppbots', '4yLLIIIaHRUS', 2497059, 26, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 26, 26, 300000085, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270003951, 'sppbots', 'MCTanyuxa47', 57383682, 53, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 16, 16, 300000020, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270003952, 'sppbots', 'Ice87', 6812472, 33, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 15, 15, 300000025, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270003953, 'sppbots', 'W1ldKnigHT', 539995, 18, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 31, 31, 300000045, 'PKK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270003954, 'sppbots', 'MeJIKuuSoul', 51262204, 52, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 55, 55, 0, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270003955, 'sppbots', 'EvilTitan94', 237351413, 65, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 108, 108, 300000137, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270003956, 'sppbots', 'irkamedvedev', 2884, 5, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 31, 31, 300000058, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270003957, 'sppbots', 'SwiftDemonG4razh', 19423, 8, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 38, 38, 300000008, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270003958, 'sppbots', 'BomzhTitan', 4555766, 30, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 39, 39, 300000088, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270003959, 'sppbots', 'shashlykxolodok', 101676, 12, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 18, 18, 300000065, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270003960, 'sppbots', 'bl4d3', 18995573, 42, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 36, 36, 300000110, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270003961, 'sppbots', 'bodryjpetrovich', 2118860, 25, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 4, 4, 300000015, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270003962, 'sppbots', 'MCtankist', 63907585, 54, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 9, 9, 300000120, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270003963, 'sppbots', 'SanekKozlov38', 606319094, 73, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 103, 103, 300000029, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270003964, 'sppbots', 'Sw1ftBishop', 0, 1, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 0, 0, 300000056, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270003965, 'sppbots', 'DjModnyyTolyan', 5981539, 32, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 39, 39, 300000094, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270003966, 'sppbots', 'NightSOUL98', 212716741, 64, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 117, 117, 300000133, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270003967, 'sppbots', 'SilentBlADE', 6038, 6, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 25, 25, 300000056, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270003968, 'sppbots', 'MelkiyKiryukha5', 28049509, 46, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 24, 24, 300000028, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270003969, 'sppbots', 'Pupkin38', 68, 2, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 0, 0, 300000053, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270003970, 'sppbots', 'MaLLIKa92', 12395149, 38, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 1, 1, 0, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270003971, 'sppbots', 'ModHbIuHacT9I', 308441375, 67, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 117, 117, 300000035, 'PKK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270003972, 'sppbots', 'SwiftKnight91', 70852742, 55, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 110, 110, 300000111, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270003973, 'sppbots', 'BelyashCheburek', 36806133, 49, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 16, 16, 300000118, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270003974, 'sppbots', 'GroznyjPalych', 804219972, 75, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 103, 103, 300000024, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270003975, 'sppbots', 'KefupcKBo3H9IK', 3407873, 28, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 7, 7, 300000006, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270003976, 'sppbots', 'y6uBaTop6apcyK', 114038008, 59, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 90, 90, 300000123, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270003977, 'sppbots', 'EvilSilentHunter', 167243291, 62, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 117, 117, 0, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270003978, 'sppbots', 'cTac3auceB35', 15422851, 40, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 36, 36, 300000103, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270003979, 'sppbots', 'ModHbIu4e6ypeK', 80700339, 56, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 97, 97, 300000016, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270003980, 'sppbots', 'xoM9IK65', 191452, 14, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 44, 44, 300000034, 'PKK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270003981, 'sppbots', 'MCTixiyPetruha', 1242536, 22, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 11, 11, 300000039, 'PKK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270003982, 'sppbots', 'Xolodok02', 71201, 11, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 10, 10, 300000068, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270003983, 'sppbots', 'IIec', 1495531, 23, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 39, 39, 0, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270003984, 'sppbots', 'DedKirpich', 71201, 11, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 0, 0, 0, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270003985, 'sppbots', 'ezhuKcKBo3H9IK', 1242536, 22, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 4, 4, 300000075, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270003986, 'sppbots', 'borzyysvetka', 675590, 19, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 44, 44, 0, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270003987, 'sppbots', 'OldBloodSlayer99', 126509030, 60, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 88, 88, 300000001, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270003988, 'sppbots', 'vowchik', 6812472, 33, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 26, 26, 300000099, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270003989, 'sppbots', 'sw33tknight2007', 271973532, 66, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 108, 108, 0, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270003990, 'sppbots', 'ChetkijPetrowich', 331864, 16, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 0, 0, 0, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270003991, 'sppbots', 'KolbasaBatYA', 1242536, 22, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 39, 39, 300000025, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270003992, 'sppbots', 'JIexacudopoB1', 6038, 6, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 53, 53, 300000053, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270003993, 'sppbots', 'GrimRaven', 474205751, 71, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 97, 97, 300000136, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270003994, 'sppbots', 'GroznyyPalych', 48229, 10, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 38, 38, 300000065, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270003995, 'sppbots', 'Demon9', 308441375, 67, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 97, 97, 300000043, 'PKK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270003996, 'sppbots', 'SwiftAngel', 71201, 11, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 25, 25, 300000008, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270003997, 'sppbots', 'TaHIOxaBoJIKoB6', 429632402, 70, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 113, 113, 0, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270003998, 'sppbots', 'belyashubivator', 0, 1, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 0, 0, 300000053, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270003999, 'sppbots', 'xXTaIIoKKefupXx', 3949727, 29, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 26, 26, 300000089, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270004000, 'sppbots', 'HarJIbIuBedbMaK', 9850111, 36, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 4, 4, 300000025, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270004001, 'sppbots', 'MaMKuHTaIIoK4yMa', 9850111, 36, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 54, 54, 300000091, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270004002, 'sppbots', 'peaJIbHbIuToJIuK', 25524751, 45, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 46, 46, 300000108, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270004003, 'sppbots', 'ToJI9IHcMupHoB', 9850111, 36, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 7, 7, 300000017, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270004004, 'sppbots', 'RzhavyyKaban', 5231213, 31, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 7, 7, 300000011, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270004005, 'sppbots', 'BoB4uK', 346825235, 68, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 90, 90, 300000133, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270004006, 'sppbots', 'BatyaChesNOK', 1168, 4, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 0, 0, 300000056, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270004007, 'sppbots', 'BloodKing', 2118860, 25, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 4, 4, 300000020, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270004008, 'sppbots', 'Gr1mRogueTitan27', 141192, 13, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 31, 31, 300000001, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270004009, 'sppbots', 'KupIOxaArrow88', 6038, 6, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 31, 31, 300000055, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270004010, 'sppbots', 'MonahBatya', 189363788, 63, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 113, 113, 300000023, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270004011, 'sppbots', 'KefupToIIop', 539995, 18, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 0, 0, 300000074, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270004012, 'sppbots', 'zadrotgopnik94', 1242536, 22, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 35, 35, 300000034, 'PKK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270004013, 'sppbots', 'peaJIbHbIuWolf', 331864, 16, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 10, 10, 300000074, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270004014, 'sppbots', 'M4dKing', 675590, 19, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 10, 10, 300000007, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270004015, 'sppbots', 'MelkijMage', 189363788, 63, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 108, 108, 300000122, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270004016, 'sppbots', 'BorzyyTravka', 7729999, 34, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 35, 35, 300000093, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270004017, 'sppbots', 'DikiyKot20', 146307211, 61, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 102, 102, 300000005, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270004018, 'sppbots', 'EvilSemki83', 102265326, 58, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 93, 93, 300000011, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270004019, 'sppbots', 'HacT9IRUS', 5231213, 31, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 39, 39, 300000027, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270004020, 'sppbots', 'TixijSanyaZajcev', 387197529, 69, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 113, 113, 300000133, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270004021, 'sppbots', 'Natakha89', 71201, 11, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 10, 10, 300000022, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270004022, 'sppbots', 'WildArr0w2', 1786365, 24, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 7, 7, 0, 'PKK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270004023, 'sppbots', 'TihijKeNT', 2118860, 25, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 22, 22, 300000084, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270004024, 'sppbots', '5lay3r', 12395149, 38, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 45, 45, 300000098, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270004025, 'sppbots', 'BodryyKotBelyash', 606319094, 73, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 94, 94, 300000142, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270004026, 'sppbots', 'LLIycTpbIuduMaH', 212716741, 64, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 92, 92, 0, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270004027, 'sppbots', 'Djlysyytolyan', 25524751, 45, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 16, 16, 300000007, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270004028, 'sppbots', '3JIouIIeJIbMeHb', 101676, 12, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 0, 0, 300000068, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270004029, 'sppbots', 'WildTru3Reaper', 13844879, 39, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 7, 7, 300000004, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270004030, 'sppbots', 'soul03', 126509030, 60, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 103, 103, 300000127, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270004031, 'sppbots', 'TrueRiderRUS', 57383682, 53, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 8, 8, 300000118, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270004032, 'sppbots', 'ChesnokBarsuk', 2925229, 27, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 22, 22, 300000001, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270004033, 'sppbots', '5wiftMast3r', 331864, 16, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 31, 31, 300000022, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270004034, 'sppbots', 'GopnikMedoed', 363, 3, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 10, 10, 300000059, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270004035, 'sppbots', 'MC4yMa94', 539995, 18, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 0, 0, 300000074, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270004036, 'sppbots', 'TimurKuznecov', 11066012, 37, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 39, 39, 300000043, 'PKK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270004037, 'sppbots', 'PacanChushPAN3', 13844879, 39, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 45, 45, 300000099, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270004038, 'sppbots', 'GnomDed', 48229, 10, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 25, 25, 300000067, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270004039, 'sppbots', 'rpo3HbIuroIIHuK', 474205751, 71, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 90, 90, 300000139, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270004040, 'sppbots', 'dikijkolyan57', 426284, 17, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 31, 31, 300000041, 'PKK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270004041, 'sppbots', 'VedmakKaratel', 57383682, 53, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 12, 12, 300000043, 'PKK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270004042, 'sppbots', 'xXOlegSmirnoffXx', 212716741, 64, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 102, 102, 0, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270004043, 'sppbots', '4eTKuuceMKu', 23180442, 44, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 40, 40, 300000008, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270004044, 'sppbots', 'dep3KuuKefup2', 0, 1, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 53, 53, 300000059, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270004045, 'sppbots', '3JIouMage90', 2118860, 25, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 45, 45, 300000009, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270004046, 'sppbots', 'DarkMonk9', 114038008, 59, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 88, 88, 300000031, 'PKK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270004047, 'sppbots', 'SanyaRider', 254327, 15, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 44, 44, 300000065, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270004048, 'sppbots', 'VasyaPupkin', 5981539, 32, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 15, 15, 300000095, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270004049, 'sppbots', 'EvilDreamKing3', 331864, 16, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 0, 0, 300000036, 'PKK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270004050, 'sppbots', 'VovanBlade', 101676, 12, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 10, 10, 300000064, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270004051, 'sppbots', 'ModnyjKotKaratel', 363, 3, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 10, 10, 300000056, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270004052, 'sppbots', 'DjValenokDeath', 71201, 11, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 31, 31, 0, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270004053, 'sppbots', 'Kefup5', 11066012, 37, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 54, 54, 300000098, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270004054, 'sppbots', 'xXdragonXx', 70852742, 55, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 102, 102, 300000114, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270004055, 'sppbots', 'Mrpetrovich', 835854, 20, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 45, 45, 300000016, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270004056, 'sppbots', '3JIoucyxapbDemon', 2925229, 27, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 7, 7, 300000081, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270004057, 'sppbots', 'groznyylopata', 426284, 17, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 0, 0, 300000079, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270004058, 'sppbots', 'xX4e6ypeKXx', 71201, 11, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 10, 10, 300000063, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270004059, 'sppbots', 'PashaAngel', 606319094, 73, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 93, 93, 300000142, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270004060, 'sppbots', 'JIeHKaIIeTpoB', 254327, 15, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 0, 0, 300000070, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270004061, 'sppbots', 'DjSwe3tSniper', 167243291, 62, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 97, 97, 300000128, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270004062, 'sppbots', 'TolyanIvanow', 167243291, 62, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 110, 110, 300000130, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270004063, 'sppbots', '4eTKuuClaw', 191452, 14, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 25, 25, 300000009, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270004064, 'sppbots', 'Sw3etRogue', 539995, 18, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 10, 10, 300000080, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270004065, 'sppbots', '4eTKuuMonk', 426284, 17, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 10, 10, 0, 'PKK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270004066, 'sppbots', 'IIeTpoBu4cMupHoB', 146307211, 61, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 103, 103, 300000121, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270004067, 'sppbots', 'xXTikhijToporXx', 346825235, 68, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 93, 93, 300000140, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270004068, 'sppbots', 'rpo3HbIucepera', 28049509, 46, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 9, 9, 300000101, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270004069, 'sppbots', 'NubKompot', 11066012, 37, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 45, 45, 300000092, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270004070, 'sppbots', 'TimurIvanoff', 102265326, 58, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 103, 103, 300000123, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270004071, 'sppbots', 'SanyaLord', 2497059, 26, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 35, 35, 300000026, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270004072, 'sppbots', 'xXUgarnyyVasyaXx', 101676, 12, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 25, 25, 300000066, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270004073, 'sppbots', 'ModHbIucaHeK04', 532692055, 72, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 117, 117, 300000147, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270004074, 'sppbots', 'Crazy4rrow', 12395149, 38, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 7, 7, 300000091, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270004075, 'sppbots', 'yHbIJIbIuxoM9IK', 126509030, 60, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 97, 97, 300000043, 'PKK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270004076, 'sppbots', 'MaKc46', 18995573, 42, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 8, 8, 300000107, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270004077, 'sppbots', 'Bl00dMuxom0r', 7729999, 34, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 4, 4, 300000091, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270004078, 'sppbots', 'duKuuBuTeKHunter', 931275828, 76, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 94, 94, 300000020, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270004079, 'sppbots', 'MCaHdpIOxa', 804219972, 75, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 117, 117, 300000141, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270004080, 'sppbots', 'DobryyZheka', 28049509, 46, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 40, 40, 0, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270004081, 'sppbots', 'Irka9', 2925229, 27, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 15, 15, 300000089, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270004082, 'sppbots', 'DjStasRUS', 23180442, 44, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 12, 12, 300000106, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270004083, 'sppbots', 'KpacaB4uK1988', 101676, 12, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 0, 0, 300000069, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270004084, 'sppbots', 'MamkinPetrukha', 3407873, 28, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 22, 22, 300000084, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270004085, 'sppbots', 'KriwojGnomF4ng', 1168, 4, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 18, 18, 300000055, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270004086, 'sppbots', 'xuTpbIurapazh', 6812472, 33, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 26, 26, 300000050, 'PKK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270004087, 'sppbots', 'BlackBloodLord', 5231213, 31, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 1, 1, 300000087, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270004088, 'sppbots', 'KentEzhik4', 254327, 15, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 0, 0, 300000063, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270004089, 'sppbots', 'TixijDimon', 18995573, 42, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 5, 5, 300000046, 'PKK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270004090, 'sppbots', 'bl4cksoul', 539995, 18, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 10, 10, 300000075, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270004091, 'sppbots', 'TrueVolk', 1786365, 24, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 15, 15, 300000088, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270004092, 'sppbots', 'DerzkijSanek02', 1168, 4, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 10, 10, 300000052, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270004093, 'sppbots', 'PasHARUS', 1023775, 21, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 45, 45, 300000072, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270004094, 'sppbots', 'BlackBloodKnight', 5231213, 31, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 4, 4, 300000086, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270004095, 'sppbots', 'LoneSoul', 48229, 10, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 0, 0, 300000047, 'PKK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270004096, 'sppbots', 'silentrider1987', 102265326, 58, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 92, 92, 300000125, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270004097, 'sppbots', 'Bratok99', 11066012, 37, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 11, 11, 300000092, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270004098, 'sppbots', 'Haru6aTopKupIIu4', 4555766, 30, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 11, 11, 300000085, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270004099, 'sppbots', 'BlackRogue', 308441375, 67, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 88, 88, 300000133, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270004100, 'sppbots', 'duMoH99', 2884, 5, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 10, 10, 300000060, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270004101, 'sppbots', 'BloodHunter', 931275828, 76, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 90, 90, 300000041, 'PKK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270004102, 'sppbots', 'HacT9I99', 71201, 11, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 0, 0, 300000069, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270004103, 'sppbots', 'LoneFrostBishop', 70852742, 55, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 102, 102, 300000008, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270004104, 'sppbots', 'StormRogue00', 426284, 17, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 10, 10, 300000006, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270004105, 'sppbots', 'DarkDemon', 19423, 8, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 53, 53, 300000063, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270004106, 'sppbots', '3JIouHaTaxa', 1786365, 24, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 53, 53, 300000046, 'PKK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270004107, 'sppbots', 'do6pbIuded4uTep', 835854, 20, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 7, 7, 300000032, 'PKK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270004108, 'sppbots', 'TaIIoKFang', 539995, 18, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 0, 0, 300000080, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270004109, 'sppbots', 'Fr05tRider', 80700339, 56, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 92, 92, 0, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270004110, 'sppbots', 'GhostRider74', 36806133, 49, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 46, 46, 300000042, 'PKK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270004111, 'sppbots', 'BlackF1r3', 31378, 9, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 0, 0, 300000064, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270004112, 'sppbots', 'MCM4dF4ng', 1242536, 22, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 7, 7, 300000075, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270004113, 'sppbots', 'ModHbIuSlayer46', 17137002, 41, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 36, 36, 300000101, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270004114, 'sppbots', 'irondarkmaster', 606319094, 73, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 90, 90, 300000007, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270004115, 'sppbots', 'BlackEv1lKnight', 308441375, 67, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 90, 90, 0, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270004116, 'sppbots', 'ceperaBoJIKoB', 40153995, 50, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 46, 46, 0, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270004117, 'sppbots', 'BloodSl4yer', 474205751, 71, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 94, 94, 300000132, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270004118, 'sppbots', 'xXShadowBishopXx', 101676, 12, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 0, 0, 300000064, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270004119, 'sppbots', 'StormBishop', 212716741, 64, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 113, 113, 300000136, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270004120, 'sppbots', 'ChetkiyF1re', 167243291, 62, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 108, 108, 300000048, 'PKK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270004121, 'sppbots', 'MrKholodokDed', 1023775, 21, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 35, 35, 0, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270004122, 'sppbots', 'VasyaDemon', 2884, 5, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 18, 18, 300000055, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270004123, 'sppbots', 'truerogue', 191452, 14, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 18, 18, 300000063, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270004124, 'sppbots', 'OgurecWolf00', 532692055, 72, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 90, 90, 300000150, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270004125, 'sppbots', 'KupIOxaKy3HecoB', 254327, 15, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 0, 0, 300000068, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270004126, 'sppbots', 'Podezd96', 51262204, 52, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 16, 16, 300000118, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270004127, 'sppbots', 'ProstoSvetka', 167243291, 62, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 94, 94, 300000024, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270004128, 'sppbots', 'MCMarmelad', 71201, 11, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 38, 38, 300000066, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270004129, 'sppbots', 'Ogurec93', 146307211, 61, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 117, 117, 300000126, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270004130, 'sppbots', 'StormHunter01', 63907585, 54, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 5, 5, 300000003, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270004131, 'sppbots', 'tihijkolbasa', 4555766, 30, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 7, 7, 300000090, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270004132, 'sppbots', '5hadowBishop', 5981539, 32, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 26, 26, 300000099, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270004133, 'sppbots', 'KiryuxaSidorov07', 3407873, 28, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 39, 39, 300000087, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270004134, 'sppbots', 'yHbIJIbIuBac9I', 33679907, 48, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 40, 40, 300000119, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270004135, 'sppbots', 'UnylyyTerminator', 36806133, 49, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 16, 16, 300000112, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270004136, 'sppbots', 'DobryjTitan', 146307211, 61, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 102, 102, 300000032, 'PKK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270004137, 'sppbots', 'KupIIu44yLLIIIaH', 2925229, 27, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 26, 26, 300000013, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270004138, 'sppbots', 'BeshenyyVitek99', 931275828, 76, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 92, 92, 300000005, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270004139, 'sppbots', 'IIaLLIa18', 2884, 5, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 10, 10, 300000060, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270004140, 'sppbots', 'ValenokOgurec', 18995573, 42, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 2, 2, 300000109, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270004141, 'sppbots', 'zheKauBaHoB22', 606319094, 73, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 92, 92, 300000149, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270004142, 'sppbots', 'MeJIKuuroIIHuK', 1786365, 24, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 15, 15, 0, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270004143, 'sppbots', 'BeshenyyVovchIK', 331864, 16, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 53, 53, 300000024, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270004144, 'sppbots', 'Fro5tSemKI', 70852742, 55, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 113, 113, 0, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270004145, 'sppbots', 'xXFrostRogueXx', 45524865, 51, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 55, 55, 300000007, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270004146, 'sppbots', 'GolodnyjTolyan', 23180442, 44, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 55, 55, 0, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270004147, 'sppbots', 'MedoedMarmelad04', 675590, 19, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 44, 44, 300000080, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270004148, 'sppbots', 'KrivojTitAN', 30764519, 47, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 40, 40, 300000103, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270004149, 'sppbots', 'MelkiyTerminator', 68, 2, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 25, 25, 300000016, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270004150, 'sppbots', 'MCTrueArrow', 1495531, 23, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 7, 7, 300000079, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270004151, 'sppbots', 'FedorPupkin', 696376867, 74, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 117, 117, 300000004, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270004152, 'sppbots', 'MelkijBatya', 0, 1, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 0, 0, 300000026, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270004153, 'sppbots', 'TolikKozlOFF45', 126509030, 60, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 117, 117, 300000130, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270004154, 'sppbots', 'LehaFire87', 12395149, 38, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 11, 11, 300000099, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270004155, 'sppbots', 'UgarnyyBaton5', 1242536, 22, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 7, 7, 300000019, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270004156, 'sppbots', 'DjTpaBKaKa6aH', 387197529, 69, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 102, 102, 300000131, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270004157, 'sppbots', 'MrBoBaHIIeTpoB', 237351413, 65, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 108, 108, 300000027, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270004158, 'sppbots', 'xoM9IK', 17137002, 41, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 24, 24, 300000108, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270004159, 'sppbots', 'ceperauBaHoB39', 25524751, 45, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 46, 46, 0, 'PKK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270004160, 'sppbots', '3JIourHoMBoJIK34', 191452, 14, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 10, 10, 300000031, 'PKK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270004161, 'sppbots', 'GhostMageR4ven', 12395149, 38, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 45, 45, 300000005, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270004162, 'sppbots', 'lehaiwanov', 17137002, 41, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 9, 9, 300000105, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270004163, 'sppbots', 'dashkad3ath', 36806133, 49, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 9, 9, 0, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270004164, 'sppbots', '4e6ypeK5RUS', 68, 2, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 10, 10, 300000057, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270004165, 'sppbots', 'Kiryuxa', 0, 1, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 10, 10, 300000017, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270004166, 'sppbots', 'rpo3HbIu6aT9I', 254327, 15, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 0, 0, 300000064, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270004167, 'sppbots', 'Sw3etSoul', 6812472, 33, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 4, 4, 300000020, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270004168, 'sppbots', '4rROW', 1786365, 24, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 4, 4, 0, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270004169, 'sppbots', 'xXIronBladeXx', 57383682, 53, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 27, 27, 300000114, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270004170, 'sppbots', 'AndryuhaPetrov', 835854, 20, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 26, 26, 0, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270004171, 'sppbots', 'JIoIIaTa1992', 146307211, 61, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 97, 97, 300000008, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270004172, 'sppbots', 'LyutyyHunter00', 19423, 8, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 0, 0, 300000067, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270004173, 'sppbots', 'HolodokSemki90', 12395149, 38, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 45, 45, 300000029, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270004174, 'sppbots', 'MelkijVitek1996', 3949727, 29, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 15, 15, 300000090, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270004175, 'sppbots', 'SonnyjVitek1994', 2118860, 25, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 26, 26, 300000008, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270004176, 'sppbots', 'Krasavchik06', 0, 1, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 0, 0, 300000056, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270004177, 'sppbots', 'tolyansidorow', 11287, 7, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 53, 53, 300000012, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270004178, 'sppbots', 'BorzyyOleg95', 31378, 9, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 53, 53, 300000067, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270004179, 'sppbots', 'SwiftDe4th', 45524865, 51, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 2, 2, 0, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270004180, 'sppbots', 'Kaban92', 33679907, 48, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 16, 16, 300000118, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270004181, 'sppbots', 'MCMadSkvoznyak', 18995573, 42, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 55, 55, 0, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270004182, 'sppbots', 'xXStar88Xx', 4555766, 30, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 39, 39, 300000044, 'PKK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270004183, 'sppbots', 'Lopata', 1495531, 23, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 11, 11, 300000071, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270004184, 'sppbots', 'TixijPalychMage', 1168, 4, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 10, 10, 300000054, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270004185, 'sppbots', 'EvilRogueMonk', 5231213, 31, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 7, 7, 300000082, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270004186, 'sppbots', 'zhekadragon81', 3407873, 28, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 45, 45, 300000081, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270004187, 'sppbots', 'duMoHSoul', 1168, 4, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 10, 10, 0, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270004188, 'sppbots', '6odpbIuroIIHuK', 71201, 11, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 10, 10, 300000063, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270004189, 'sppbots', 'NataxaKiller1986', 331864, 16, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 18, 18, 300000010, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270004190, 'sppbots', 'ToJIuKuBaHoB', 101676, 12, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 10, 10, 300000015, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270004191, 'sppbots', '0ldwolfRUS', 40153995, 50, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 16, 16, 0, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270004192, 'sppbots', 'ChetkiyVolk', 80700339, 56, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 110, 110, 300000123, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270004193, 'sppbots', 'Tru3Monk2004', 126509030, 60, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 92, 92, 300000126, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270004194, 'sppbots', 'ChushpanTankist', 2925229, 27, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 26, 26, 300000089, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270004195, 'sppbots', 'WildHunter', 15422851, 40, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 27, 27, 300000106, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270004196, 'sppbots', 'F1re', 363, 3, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 53, 53, 300000040, 'PKK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270004197, 'sppbots', 'HacT9I45', 8740372, 35, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 4, 4, 300000092, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270004198, 'sppbots', 'MC5weetSlayer', 114038008, 59, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 92, 92, 300000012, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270004199, 'sppbots', 'StormDarkArrow99', 191452, 14, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 18, 18, 300000069, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270004200, 'sppbots', 'TrueBlaDE', 114038008, 59, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 97, 97, 300000124, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270004201, 'sppbots', 'NightArrow', 12395149, 38, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 54, 54, 300000095, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270004202, 'sppbots', 'KeHTBedbMaK8', 346825235, 68, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 110, 110, 300000028, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270004203, 'sppbots', 'BlackKing', 254327, 15, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 18, 18, 300000069, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270004204, 'sppbots', 'ShadowB1sh0p1', 346825235, 68, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 117, 117, 300000139, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270004205, 'sppbots', 'Ev1lK1ng02', 141192, 13, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 10, 10, 300000063, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270004206, 'sppbots', 'OldMaster7', 191452, 14, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 18, 18, 300000063, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270004207, 'sppbots', 'DarkKhomyak', 346825235, 68, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 93, 93, 300000014, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270004208, 'sppbots', 'MCTrueB1shop7', 191452, 14, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 10, 10, 0, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270004209, 'sppbots', 'BlackBishopRider', 68, 2, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 53, 53, 300000004, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270004210, 'sppbots', 'KoJI6aca56', 1023775, 21, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 35, 35, 300000078, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270004211, 'sppbots', 'Fir3', 0, 1, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 44, 44, 300000056, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270004212, 'sppbots', 'caH9IIIeTpoB94', 2884, 5, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 0, 0, 300000051, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270004213, 'sppbots', 'xXShaurmaXx', 9850111, 36, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 11, 11, 300000099, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270004214, 'sppbots', 'staryykefir1998', 13844879, 39, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 54, 54, 300000091, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270004215, 'sppbots', 'IronSlayer', 5231213, 31, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 11, 11, 300000087, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270004216, 'sppbots', 'Baton', 5231213, 31, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 1, 1, 300000036, 'PKK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270004217, 'sppbots', 'y6uBaTop88', 387197529, 69, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 103, 103, 0, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270004218, 'sppbots', 'GroznyjM4ster', 9850111, 36, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 7, 7, 300000049, 'PKK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270004219, 'sppbots', 'Night5n1per91', 91162131, 57, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 97, 97, 300000121, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270004220, 'sppbots', 'BatyaTravka', 191452, 14, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 31, 31, 300000061, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270004221, 'sppbots', 'xXSilentMageXx', 71201, 11, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 10, 10, 300000064, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270004222, 'sppbots', 'ZadrotMonk1993', 68, 2, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 25, 25, 300000045, 'PKK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270004223, 'sppbots', 'MarmeladMonk94', 5231213, 31, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 45, 45, 300000081, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270004224, 'sppbots', 'MC4eTKuuBoBaH', 80700339, 56, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 117, 117, 300000121, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270004225, 'sppbots', 'MCIIaJIbI4', 167243291, 62, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 90, 90, 300000127, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270004226, 'sppbots', 'borzyyandryuha36', 8740372, 35, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 1, 1, 300000092, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270004227, 'sppbots', 'FrostGhostDemon', 191452, 14, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 10, 10, 0, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270004228, 'sppbots', 'dedHy6', 167243291, 62, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 110, 110, 300000128, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270004229, 'sppbots', 'Palych8', 0, 1, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 0, 0, 0, 'PKK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270004230, 'sppbots', 'RealnyyMashka', 9850111, 36, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 7, 7, 300000097, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270004231, 'sppbots', 'MaMKuHceMKu91', 57383682, 53, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 2, 2, 300000119, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270004232, 'sppbots', 'MaksZaycew00', 80700339, 56, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 94, 94, 0, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270004233, 'sppbots', 'NaglyjSlayer5', 1168, 4, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 31, 31, 300000028, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270004234, 'sppbots', 'MCBoBaH', 363, 3, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 25, 25, 300000030, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270004235, 'sppbots', 'WildKnight6', 539995, 18, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 44, 44, 300000036, 'PKK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270004236, 'sppbots', 'pzhaBbIuBedbMaK', 835854, 20, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 7, 7, 300000023, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270004237, 'sppbots', 'GrimKrasawchik', 15422851, 40, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 12, 12, 300000110, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270004238, 'sppbots', 'GrimSlayer3', 387197529, 69, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 102, 102, 0, 'PKK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270004239, 'sppbots', '6odpbIucoced', 23180442, 44, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 24, 24, 300000108, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270004240, 'sppbots', 'Smirnoff00', 191452, 14, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 0, 0, 300000011, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270004241, 'sppbots', 'MaKcKy3HecoB86', 3407873, 28, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 7, 7, 300000090, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270004242, 'sppbots', 'GrimTravka', 18995573, 42, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 40, 40, 300000045, 'PKK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270004243, 'sppbots', 'BeshenyjSanEK', 191452, 14, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 10, 10, 300000050, 'PKK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270004244, 'sppbots', 'StormTrueKing', 23180442, 44, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 5, 5, 300000110, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270004245, 'sppbots', 'MadHunterRaven93', 1786365, 24, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 4, 4, 0, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270004246, 'sppbots', 'ToIIopTaHKucT', 1168, 4, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 0, 0, 300000037, 'PKK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270004247, 'sppbots', 'Cr4zyKiller', 114038008, 59, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 94, 94, 300000019, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270004248, 'sppbots', 'MadSlayerWolf85', 19423, 8, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 53, 53, 300000063, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270004249, 'sppbots', 'Blo0dDemON', 189363788, 63, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 94, 94, 300000127, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270004250, 'sppbots', 'TanyuxaPetrov', 1786365, 24, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 39, 39, 300000020, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270004251, 'sppbots', 'xoJIodoKDemon', 48229, 10, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 0, 0, 300000070, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270004252, 'sppbots', '6odpbIuJIoIIaTa', 5981539, 32, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 54, 54, 300000001, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270004253, 'sppbots', 'volkezhik', 126509030, 60, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 97, 97, 300000040, 'PKK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270004254, 'sppbots', 'TuxuuTaHIOxa', 11287, 7, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 44, 44, 300000026, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270004255, 'sppbots', 'SwiftFire', 212716741, 64, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 117, 117, 300000132, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270004256, 'sppbots', 'WildStormLord', 237351413, 65, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 92, 92, 300000040, 'PKK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270004257, 'sppbots', 'RealnyyMonk', 237351413, 65, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 88, 88, 300000139, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270004258, 'sppbots', 'belyashkirpich', 4555766, 30, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 45, 45, 300000090, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270004259, 'sppbots', 'IronKillerMaster', 1495531, 23, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 7, 7, 300000075, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270004260, 'sppbots', 'NubFiRERUS', 331864, 16, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 0, 0, 300000072, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270004261, 'sppbots', 'NightStar23', 532692055, 72, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 113, 113, 0, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270004262, 'sppbots', 'ShashlykMuhomor', 271973532, 66, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 108, 108, 300000027, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270004263, 'sppbots', 'DjPetroviCH85', 3949727, 29, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 11, 11, 300000090, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270004264, 'sppbots', 'BloodMaster2007', 5981539, 32, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 54, 54, 0, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270004265, 'sppbots', 'GhostOldD3ath', 63907585, 54, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 8, 8, 300000114, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270004266, 'sppbots', 'MashkaZaycev', 5981539, 32, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 7, 7, 300000098, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270004267, 'sppbots', 'UgarnyjNatAHA', 0, 1, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 38, 38, 300000023, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270004268, 'sppbots', 'MrIIpocToBoBaH', 7729999, 34, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 15, 15, 300000091, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270004269, 'sppbots', 'SilentBloodKing', 429632402, 70, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 92, 92, 0, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270004270, 'sppbots', 'ModHbIuBaJIeHoK', 70852742, 55, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 102, 102, 300000119, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270004271, 'sppbots', 'coHHbIuduMoH35', 23180442, 44, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 12, 12, 0, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270004272, 'sppbots', 'xXSilentKillerXx', 63907585, 54, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 46, 46, 300000112, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270004273, 'sppbots', 'Cheburek90', 835854, 20, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 26, 26, 300000076, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270004274, 'sppbots', 'DjWildMage', 36806133, 49, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 5, 5, 300000024, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270004275, 'sppbots', 'TrueMage', 426284, 17, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 25, 25, 0, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270004276, 'sppbots', 'roJIodHbIuTuMyp', 101676, 12, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 38, 38, 300000014, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270004277, 'sppbots', 'xXKefirRogueXx', 167243291, 62, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 108, 108, 300000009, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270004278, 'sppbots', 'B1sh0p', 141192, 13, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 31, 31, 300000019, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270004279, 'sppbots', 'WildDeath1991', 2925229, 27, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 22, 22, 0, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270004280, 'sppbots', 'TepMuHaTopMedoed', 1242536, 22, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 26, 26, 300000078, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270004281, 'sppbots', 'ToIIop27RUS', 387197529, 69, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 113, 113, 300000133, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270004282, 'sppbots', 'ShadowMonk', 8740372, 35, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 26, 26, 300000012, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270004283, 'sppbots', 'xoJIodoK1998', 19423, 8, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 31, 31, 300000068, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270004284, 'sppbots', 'TolyanSmirnov', 51262204, 52, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 46, 46, 300000117, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270004285, 'sppbots', 'KompotXolodok', 0, 1, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 0, 0, 300000060, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270004286, 'sppbots', 'StaryjKING', 212716741, 64, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 103, 103, 300000136, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270004287, 'sppbots', 'lekhasidorow', 474205751, 71, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 108, 108, 300000132, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270004288, 'sppbots', 'yrapHbIufedop14', 474205751, 71, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 90, 90, 300000134, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270004289, 'sppbots', 'GhostStar4', 70852742, 55, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 92, 92, 300000008, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270004290, 'sppbots', 'GroznyjVasya', 3407873, 28, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 26, 26, 300000012, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270004291, 'sppbots', 'peaJIbHbIuduMoH', 4555766, 30, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 45, 45, 300000084, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270004292, 'sppbots', 'UnylyyPasha', 4555766, 30, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 45, 45, 300000035, 'PKK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270004293, 'sppbots', 'RzhavyyWolf00', 71201, 11, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 10, 10, 300000061, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270004294, 'sppbots', 'MrEvilIc38', 51262204, 52, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 24, 24, 300000116, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270004295, 'sppbots', 'IronM4ge', 3949727, 29, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 11, 11, 300000087, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270004296, 'sppbots', 'KoMIIoTroIIHuK97', 45524865, 51, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 8, 8, 300000120, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270004297, 'sppbots', 'star28', 167243291, 62, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 102, 102, 300000130, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270004298, 'sppbots', 'xXdaLLIKaTitanXx', 2497059, 26, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 1, 1, 300000087, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270004299, 'sppbots', 'DikiyBratokChuma', 8740372, 35, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 7, 7, 300000098, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270004300, 'sppbots', 'ModHbIuy6uBaTop', 1786365, 24, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 15, 15, 300000045, 'PKK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270004301, 'sppbots', 'xXBoB4uKuBaHoBXx', 1168, 4, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 0, 0, 300000060, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270004302, 'sppbots', '5weetReaper', 17137002, 41, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 12, 12, 300000025, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270004303, 'sppbots', 'ToIIopMoHax1993', 3949727, 29, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 54, 54, 0, 'PKK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270004304, 'sppbots', 'XolodokTopOR', 70852742, 55, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 90, 90, 300000114, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270004305, 'sppbots', 'MadSniperWolf', 91162131, 57, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 117, 117, 300000121, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270004306, 'sppbots', 'LysyjPelmenVolk', 308441375, 67, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 88, 88, 300000135, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270004307, 'sppbots', 'GrimBladeMageRUS', 21007103, 43, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 55, 55, 300000108, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270004308, 'sppbots', 'rapazh90', 2884, 5, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 0, 0, 300000028, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270004309, 'sppbots', 'LoneSw1ftArrow01', 532692055, 72, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 94, 94, 300000144, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270004310, 'sppbots', 'upKauBaHoB', 141192, 13, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 25, 25, 300000070, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270004311, 'sppbots', 'Fr05tFire2', 835854, 20, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 22, 22, 300000078, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270004312, 'sppbots', 'BlackRogueRUS', 18995573, 42, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 12, 12, 300000003, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270004313, 'sppbots', 'MoHaxWolf', 91162131, 57, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 102, 102, 300000023, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270004314, 'sppbots', 'DjKupIOxaKing', 15422851, 40, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 8, 8, 300000110, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270004315, 'sppbots', 'Tru3M4ster', 429632402, 70, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 108, 108, 300000030, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270004316, 'sppbots', 'LLIycTpbIuKefup', 6812472, 33, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 11, 11, 300000099, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270004317, 'sppbots', 'MelkijGnomTapok', 0, 1, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 0, 0, 300000058, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270004318, 'sppbots', 'FrostFangDragon', 931275828, 76, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 103, 103, 300000147, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270004319, 'sppbots', 'Diman3', 804219972, 75, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 93, 93, 300000149, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270004320, 'sppbots', 'KupIOxaIIyIIKuH', 15422851, 40, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 46, 46, 300000004, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270004321, 'sppbots', 'TuxuuTaHKucT76', 18995573, 42, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 46, 46, 300000013, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270004322, 'sppbots', 'JIbIcbIuKoTRUS', 17137002, 41, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 8, 8, 300000105, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270004323, 'sppbots', 'xXStorm1ceXx', 331864, 16, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 0, 0, 300000035, 'PKK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270004324, 'sppbots', 'IronR0gue', 18995573, 42, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 27, 27, 300000103, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270004325, 'sppbots', 'MCChushpan', 126509030, 60, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 94, 94, 300000124, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270004326, 'sppbots', 'SonnyjNagibator', 308441375, 67, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 97, 97, 300000029, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270004327, 'sppbots', 'Haru6aTopIIec', 1786365, 24, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 1, 1, 300000090, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270004328, 'sppbots', 'SwiftDeathWolf', 426284, 17, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 25, 25, 300000077, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270004329, 'sppbots', 'ChiterTravka', 91162131, 57, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 97, 97, 300000129, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270004330, 'sppbots', 'MCDiman16', 1168, 4, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 31, 31, 300000057, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270004331, 'sppbots', 'MrJIexacMupHoB5', 23180442, 44, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 24, 24, 300000110, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270004332, 'sppbots', '5w1ftF4ng88', 48229, 10, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 10, 10, 300000065, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270004333, 'sppbots', 'LoneKnight6RUS', 30764519, 47, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 36, 36, 300000104, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270004334, 'sppbots', 'JIbIcbIuKoJI9IH', 3949727, 29, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 11, 11, 300000017, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270004335, 'sppbots', 'ModnyyWovchik', 1495531, 23, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 45, 45, 300000071, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270004336, 'sppbots', 'BloodRavenSlayer', 68, 2, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 53, 53, 300000012, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270004337, 'sppbots', 'NagibatorKn1ght', 2497059, 26, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 22, 22, 0, 'PKK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270004338, 'sppbots', 'MrMadMaster', 7729999, 34, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 7, 7, 300000029, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270004339, 'sppbots', 'MapMeJIadFang', 0, 1, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 44, 44, 300000004, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270004340, 'sppbots', 'BlackDragon', 18995573, 42, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 16, 16, 300000024, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270004341, 'sppbots', 'LenkaSidorov', 8740372, 35, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 15, 15, 300000004, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270004342, 'sppbots', 'UnylyjMashka', 45524865, 51, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 9, 9, 300000014, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270004343, 'sppbots', 'zhupHbIuBoB4uK', 6038, 6, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 10, 10, 300000057, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270004344, 'sppbots', 'Trawka', 48229, 10, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 31, 31, 300000018, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270004345, 'sppbots', 'StaryySvetka', 4555766, 30, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 54, 54, 300000048, 'PKK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270004346, 'sppbots', '6eLLIeHbIuToJIuK', 8740372, 35, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 4, 4, 300000094, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270004347, 'sppbots', 'duKuuKa6aHrHoM96', 101676, 12, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 18, 18, 300000070, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270004348, 'sppbots', 'ShadowSoulMaster', 1168, 4, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 38, 38, 300000058, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270004349, 'sppbots', 'Ruslan01', 271973532, 66, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 93, 93, 300000138, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270004350, 'sppbots', 'yrapHbIuduMaH', 18995573, 42, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 12, 12, 300000109, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270004351, 'sppbots', 'y6uBaTopMedoed', 15422851, 40, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 9, 9, 0, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270004352, 'sppbots', '6aT9I2007', 346825235, 68, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 90, 90, 300000133, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270004353, 'sppbots', 'Cr4zyK4r4tel', 21007103, 43, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 16, 16, 300000104, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270004354, 'sppbots', 'TixijDemon00', 9850111, 36, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 7, 7, 300000091, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270004355, 'sppbots', 'StormWolf', 331864, 16, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 0, 0, 300000030, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270004356, 'sppbots', 'Vedmak88', 36806133, 49, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 40, 40, 300000049, 'PKK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270004357, 'sppbots', 'ToJIuK37', 31378, 9, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 31, 31, 300000027, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270004358, 'sppbots', 'SilentDarkSlayer', 1242536, 22, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 26, 26, 300000076, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270004359, 'sppbots', 'Kolbasa1', 2925229, 27, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 26, 26, 300000087, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270004360, 'sppbots', '4e6ypeKKoT', 2884, 5, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 0, 0, 300000019, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270004361, 'sppbots', 'cyxapbcoced99', 696376867, 74, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 113, 113, 300000144, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270004362, 'sppbots', 'MCUnylyjMashka95', 539995, 18, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 10, 10, 300000078, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270004363, 'sppbots', 'khomyakmarmelad', 426284, 17, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 44, 44, 300000079, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270004364, 'sppbots', 'Monah', 539995, 18, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 53, 53, 0, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270004365, 'sppbots', 'KefupBlade8', 21007103, 43, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 8, 8, 300000105, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270004366, 'sppbots', 'LoneSuxar29', 1786365, 24, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 45, 45, 0, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270004367, 'sppbots', 'Killer2004', 31378, 9, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 38, 38, 300000065, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270004368, 'sppbots', 'LekhaSmirnoff', 11287, 7, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 53, 53, 300000056, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270004369, 'sppbots', 'DimanVolkov23', 11066012, 37, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 1, 1, 300000092, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270004370, 'sppbots', 'Lone5h4dowReap3r', 331864, 16, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 0, 0, 300000076, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270004371, 'sppbots', 'HomyakUbivatOR', 1242536, 22, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 11, 11, 300000006, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270004372, 'sppbots', 'MCZhekaPupkin', 71201, 11, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 0, 0, 300000012, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270004373, 'sppbots', 'MarmeladEzhik', 51262204, 52, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 27, 27, 300000114, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270004374, 'sppbots', 'ghostice', 539995, 18, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 44, 44, 300000072, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270004375, 'sppbots', 'MCSweetSlayer1', 2118860, 25, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 39, 39, 300000086, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270004376, 'sppbots', 'TpaBKaFire', 13844879, 39, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 35, 35, 0, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270004377, 'sppbots', 'TuxuuJIexa1987', 212716741, 64, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 90, 90, 0, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270004378, 'sppbots', 'groznyjchesnok', 17137002, 41, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 36, 36, 300000101, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270004379, 'sppbots', 'caHeKKo3JIoBRUS', 48229, 10, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 38, 38, 300000067, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270004380, 'sppbots', 'Shad0wArrow', 1495531, 23, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 15, 15, 300000072, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270004381, 'sppbots', 'Gopnik1998', 80700339, 56, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 102, 102, 300000015, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270004382, 'sppbots', 'ZlojVolk', 2925229, 27, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 15, 15, 0, 'PKK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270004383, 'sppbots', '6apcyKcKBo3H9IK', 1168, 4, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 31, 31, 300000013, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270004384, 'sppbots', 'xXClawXx', 15422851, 40, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 16, 16, 300000107, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270004385, 'sppbots', 'OldSlayer', 331864, 16, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 38, 38, 300000071, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270004386, 'sppbots', 'caHeKMedBedeB92', 254327, 15, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 31, 31, 0, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270004387, 'sppbots', 'xuTpbIuKupIOxa', 346825235, 68, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 94, 94, 300000134, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270004388, 'sppbots', 'valenokgnom', 606319094, 73, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 94, 94, 300000144, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270004389, 'sppbots', 'IronF1re', 429632402, 70, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 102, 102, 300000006, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270004390, 'sppbots', 'ZloyChiter1999', 11066012, 37, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 11, 11, 300000013, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270004391, 'sppbots', 'rpo3HbIuMyxoMop', 141192, 13, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 38, 38, 300000016, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270004392, 'sppbots', 'MCDikijTimur', 71201, 11, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 0, 0, 300000064, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270004393, 'sppbots', 'MaMKuHBaJIeHoK', 23180442, 44, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 40, 40, 300000037, 'PKK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270004394, 'sppbots', 'XitryjTimur', 3407873, 28, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 39, 39, 300000084, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270004395, 'sppbots', 'XolodokKompot89', 2884, 5, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 53, 53, 300000055, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270004396, 'sppbots', 'MapMeJIad2007', 539995, 18, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 0, 0, 300000079, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270004397, 'sppbots', 'StormBlade', 271973532, 66, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 97, 97, 300000038, 'PKK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270004398, 'sppbots', 'DikiyGrisha', 40153995, 50, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 40, 40, 300000046, 'PKK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270004399, 'sppbots', 'cTapbIuKoJI6aca', 101676, 12, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 25, 25, 300000031, 'PKK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270004400, 'sppbots', '4uTepFang', 539995, 18, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 31, 31, 300000072, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270004401, 'sppbots', 'xXMeJIKuu4yMaXx', 2884, 5, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 10, 10, 0, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270004402, 'sppbots', 'ezhuK', 474205751, 71, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 108, 108, 300000133, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270004403, 'sppbots', 'ezhuKKoMIIoT11', 2118860, 25, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 54, 54, 300000084, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270004404, 'sppbots', 'mamkingarazh1', 141192, 13, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 31, 31, 300000021, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270004405, 'sppbots', 'Djsilentstar', 189363788, 63, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 110, 110, 300000129, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270004406, 'sppbots', 'IIode3dBlade5', 539995, 18, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 0, 0, 300000076, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270004407, 'sppbots', 'LoneXomyak99', 15422851, 40, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 36, 36, 300000110, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270004408, 'sppbots', 'Shashlyk', 17137002, 41, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 36, 36, 300000102, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270004409, 'sppbots', 'GopnikZadrot', 40153995, 50, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 8, 8, 300000117, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270004410, 'sppbots', 'GrimStormDemon', 167243291, 62, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 117, 117, 300000016, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270004411, 'sppbots', 'Claw6', 31378, 9, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 38, 38, 300000064, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270004412, 'sppbots', 'IIeJIbMeHb4uTep', 1168, 4, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 18, 18, 300000052, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270004413, 'sppbots', 'shustryjsanek', 346825235, 68, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 90, 90, 0, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270004414, 'sppbots', 'XitryjMage', 51262204, 52, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 55, 55, 300000119, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270004415, 'sppbots', 'pycJIaHBishop', 1168, 4, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 44, 44, 300000051, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270004416, 'sppbots', 'tanyuxazajcevRUS', 4555766, 30, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 15, 15, 300000042, 'PKK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270004417, 'sppbots', 'IIacaHTaHKucT', 346825235, 68, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 94, 94, 300000030, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270004418, 'sppbots', 'NastyaKozloff', 539995, 18, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 10, 10, 300000013, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270004419, 'sppbots', 'BeshenyjShaurma', 931275828, 76, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 102, 102, 0, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270004420, 'sppbots', 'LyutyjGopnik', 141192, 13, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 18, 18, 300000064, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270004421, 'sppbots', 'MrNightStar', 0, 1, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 0, 0, 0, 'PKK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270004422, 'sppbots', 'SwiftSoul', 15422851, 40, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 2, 2, 0, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270004423, 'sppbots', 'MCOldSlayer', 189363788, 63, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 113, 113, 0, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270004424, 'sppbots', 'StormBomzhRUS', 1242536, 22, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 22, 22, 300000027, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270004425, 'sppbots', 'peaJIbHbIuezhuK', 19423, 8, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 10, 10, 300000063, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270004426, 'sppbots', 'xuTpbIuMaKc', 8740372, 35, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 7, 7, 300000020, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270004427, 'sppbots', 'DjSilentDe4th', 101676, 12, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 38, 38, 300000067, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270004428, 'sppbots', 'IronSweetStar88', 835854, 20, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 7, 7, 0, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270004429, 'sppbots', 'MrLysyjStas', 30764519, 47, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 8, 8, 300000017, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270004430, 'sppbots', 'IIacaH95', 1168, 4, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 0, 0, 300000056, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270004431, 'sppbots', 'JIIOTbIuKiller', 13844879, 39, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 11, 11, 300000100, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270004432, 'sppbots', 'MamkinPetrovich', 71201, 11, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 18, 18, 300000038, 'PKK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270004433, 'sppbots', 'L0n3Bishop07', 101676, 12, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 10, 10, 300000068, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270004434, 'sppbots', 'DjChesnokKot', 36806133, 49, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 2, 2, 300000026, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270004435, 'sppbots', 'MaksSmirnov', 71201, 11, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 10, 10, 300000027, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270004436, 'sppbots', 'RzhavyyDiman', 191452, 14, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 0, 0, 0, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270004437, 'sppbots', 'Gr1mKing', 33679907, 48, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 36, 36, 300000117, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270004438, 'sppbots', 'ToJI9IH88', 675590, 19, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 53, 53, 300000080, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270004439, 'sppbots', 'PelmenSosed', 23180442, 44, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 5, 5, 300000105, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270004440, 'sppbots', 'krivoymaks', 1242536, 22, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 4, 4, 300000072, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270004441, 'sppbots', 'KpuBouMyxoMop', 237351413, 65, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 92, 92, 300000031, 'PKK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270004442, 'sppbots', 'TaHKucTHaru6aTop', 114038008, 59, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 92, 92, 300000036, 'PKK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270004443, 'sppbots', 'SniperRUS', 167243291, 62, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 113, 113, 300000128, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270004444, 'sppbots', 'TaHKucTDemon95', 91162131, 57, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 117, 117, 300000126, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270004445, 'sppbots', 'L0neL0rdGarazh', 15422851, 40, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 8, 8, 300000008, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270004446, 'sppbots', 'Cheburek44', 19423, 8, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 0, 0, 0, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270004447, 'sppbots', 'DarkD3mon', 1168, 4, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 0, 0, 300000053, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270004448, 'sppbots', 'xXIIecMoHax4Xx', 23180442, 44, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 40, 40, 300000040, 'PKK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270004449, 'sppbots', 'evilslayer', 237351413, 65, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 88, 88, 300000134, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270004450, 'sppbots', 'MaLLIKaIIyIIKuH', 12395149, 38, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 35, 35, 300000099, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270004451, 'sppbots', '3JIouLLIaypMa02', 675590, 19, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 0, 0, 0, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270004452, 'sppbots', 'KpuBouzheKa03', 1495531, 23, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 45, 45, 300000080, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270004453, 'sppbots', 'SwiftMonakh', 33679907, 48, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 2, 2, 0, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270004454, 'sppbots', 'IIacaHBoJIK', 13844879, 39, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 7, 7, 300000096, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270004455, 'sppbots', 'cTac8', 0, 1, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 31, 31, 300000053, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270004456, 'sppbots', 'pzhaBbIu6aToH', 4555766, 30, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 26, 26, 0, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270004457, 'sppbots', 'KoJI6acaxoM9IK', 7729999, 34, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 35, 35, 300000012, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270004458, 'sppbots', 'TuMypMedBedeB', 696376867, 74, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 93, 93, 300000149, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270004459, 'sppbots', 'Kiryuha', 146307211, 61, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 110, 110, 300000130, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270004460, 'sppbots', 'F1r36', 7729999, 34, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 22, 22, 300000097, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270004461, 'sppbots', 'zlojtapokking', 17137002, 41, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 8, 8, 300000107, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270004462, 'sppbots', 'LLIycTpbIu4ecHoK', 237351413, 65, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 117, 117, 300000134, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270004463, 'sppbots', 'TuxuuJIeHKa9', 5231213, 31, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 35, 35, 300000090, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270004464, 'sppbots', 'DarkTopor', 40153995, 50, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 36, 36, 300000118, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270004465, 'sppbots', 'ChitER', 9850111, 36, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 7, 7, 300000027, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270004466, 'sppbots', 'MCRzhavyyLekha', 5231213, 31, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 54, 54, 300000004, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270004467, 'sppbots', 'BloodBatya', 1242536, 22, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 15, 15, 300000080, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270004468, 'sppbots', 'cMupHoB61', 91162131, 57, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 97, 97, 300000122, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270004469, 'sppbots', 'DikijKefir85', 387197529, 69, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 93, 93, 300000043, 'PKK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270004470, 'sppbots', 'ProstoKompot', 57383682, 53, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 2, 2, 300000047, 'PKK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270004471, 'sppbots', 'IronLord84', 146307211, 61, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 93, 93, 300000128, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270004472, 'sppbots', 'melkijshaurma', 101676, 12, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 0, 0, 300000067, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270004473, 'sppbots', 'MCbloodhunter', 80700339, 56, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 90, 90, 300000017, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270004474, 'sppbots', 'EvilMaster', 12395149, 38, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 26, 26, 300000001, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270004475, 'sppbots', 'GrishaSmirnOFF', 2925229, 27, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 45, 45, 0, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270004476, 'sppbots', '6aToHy6uBaTop', 5981539, 32, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 7, 7, 300000097, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270004477, 'sppbots', 'DjZadrot', 426284, 17, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 10, 10, 300000072, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270004478, 'sppbots', 'KpuBouLord9RUS', 17137002, 41, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 12, 12, 300000109, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270004479, 'sppbots', 'OldFrostM4st3r', 63907585, 54, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 5, 5, 0, 'PKK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270004480, 'sppbots', 'HaTaxacMupHoBRUS', 71201, 11, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 44, 44, 300000062, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270004481, 'sppbots', 'ShadowLord98', 606319094, 73, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 88, 88, 300000146, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270004482, 'sppbots', 'Reaper3', 3407873, 28, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 4, 4, 0, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270004483, 'sppbots', 'coHHbIuJIeHKa', 17137002, 41, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 27, 27, 300000107, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270004484, 'sppbots', 'xuTpbIuSniper', 429632402, 70, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 117, 117, 300000134, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270004485, 'sppbots', 'rapazhded', 91162131, 57, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 103, 103, 300000122, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270004486, 'sppbots', 'IIeJIbMeHb', 5231213, 31, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 22, 22, 300000089, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270004487, 'sppbots', 'TrueBloodFire', 237351413, 65, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 103, 103, 300000007, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270004488, 'sppbots', 'crazytitanangel', 426284, 17, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 0, 0, 300000072, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270004489, 'sppbots', 'LysyyMaks', 30764519, 47, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 46, 46, 300000109, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270004490, 'sppbots', 'TaHKucTHy61991', 12395149, 38, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 39, 39, 300000003, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270004491, 'sppbots', 'ceMKuFang', 363, 3, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 10, 10, 300000054, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270004492, 'sppbots', 'Kefir', 254327, 15, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 18, 18, 300000047, 'PKK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270004493, 'sppbots', 'FrostStar', 23180442, 44, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 5, 5, 300000107, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270004494, 'sppbots', 'JIIOTbIucepera94', 21007103, 43, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 12, 12, 300000011, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270004495, 'sppbots', 'Sosed', 36806133, 49, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 5, 5, 300000112, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270004496, 'sppbots', 'cMupHoB', 1786365, 24, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 11, 11, 300000087, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270004497, 'sppbots', 'DjShaurma6', 11066012, 37, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 54, 54, 300000096, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270004498, 'sppbots', 'BloodStormTitan', 387197529, 69, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 97, 97, 300000003, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270004499, 'sppbots', 'LoneKiller51', 606319094, 73, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 108, 108, 300000142, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270004500, 'sppbots', 'SanyaSmirnow', 696376867, 74, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 113, 113, 0, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270004501, 'sppbots', 'MarmelAD30', 146307211, 61, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 108, 108, 300000021, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270004502, 'sppbots', 'TopOR2002', 18995573, 42, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 16, 16, 300000101, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270004503, 'sppbots', 'Bl4de', 5231213, 31, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 1, 1, 0, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270004504, 'sppbots', 'DobryjKotVolk48', 6038, 6, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 0, 0, 300000010, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270004505, 'sppbots', 'BoBaHcMupHoB58', 191452, 14, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 0, 0, 300000021, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270004506, 'sppbots', 'ShadowMage', 675590, 19, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 31, 31, 300000080, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270004507, 'sppbots', 'SweetIce68', 141192, 13, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 25, 25, 300000069, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270004508, 'sppbots', 'BelyaSH00', 3407873, 28, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 39, 39, 300000011, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270004509, 'sppbots', 'UbiwatorPacan', 25524751, 45, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 8, 8, 300000108, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270004510, 'sppbots', 'swiftclaw', 429632402, 70, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 102, 102, 0, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270004511, 'sppbots', 'unylyjice', 346825235, 68, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 92, 92, 0, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270004512, 'sppbots', 'TrueFang', 532692055, 72, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 94, 94, 0, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270004513, 'sppbots', 'mamkinmonkRUS', 696376867, 74, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 110, 110, 300000144, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270004514, 'sppbots', 'xoJIodoK', 696376867, 74, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 108, 108, 300000031, 'PKK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270004515, 'sppbots', 'Grisha00', 7729999, 34, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 7, 7, 0, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270004516, 'sppbots', 'MashkaFire', 804219972, 75, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 110, 110, 300000011, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270004517, 'sppbots', 'MrIronNightStar', 2497059, 26, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 7, 7, 300000023, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270004518, 'sppbots', 'Wolf1', 474205751, 71, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 94, 94, 300000008, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270004519, 'sppbots', 'peaJIbHbIuBoB4uK', 18995573, 42, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 16, 16, 300000105, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270004520, 'sppbots', '4e6ypeKrapazh', 331864, 16, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 0, 0, 300000079, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270004521, 'sppbots', 'KpuBouKoT', 101676, 12, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 0, 0, 300000070, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270004522, 'sppbots', '51lentStormStar', 2497059, 26, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 7, 7, 300000085, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270004523, 'sppbots', 'ZhirnyyTanyukha', 101676, 12, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 38, 38, 300000065, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270004524, 'sppbots', 'KupIIu4xoM9IK', 40153995, 50, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 55, 55, 300000116, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270004525, 'sppbots', '6odpbIuKeHT', 532692055, 72, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 110, 110, 300000145, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270004526, 'sppbots', 'TihijBratok', 191452, 14, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 10, 10, 300000064, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270004527, 'sppbots', 'cTac3auceB', 101676, 12, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 10, 10, 300000037, 'PKK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270004528, 'sppbots', 'BeshenyjWovchik', 1168, 4, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 10, 10, 300000060, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270004529, 'sppbots', 'OldMageKaratel', 102265326, 58, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 93, 93, 300000016, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270004530, 'sppbots', 'melkiylord97', 191452, 14, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 0, 0, 0, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270004531, 'sppbots', 'GhostMaster', 51262204, 52, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 8, 8, 300000008, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270004532, 'sppbots', 'BodryjBatya', 114038008, 59, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 90, 90, 300000130, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270004533, 'sppbots', 'stormmaster', 101676, 12, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 0, 0, 300000066, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270004534, 'sppbots', 'KapaTeJIb2003', 9850111, 36, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 7, 7, 300000097, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270004535, 'sppbots', 'BlackRiderFang', 9850111, 36, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 22, 22, 0, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270004536, 'sppbots', 'MadIceHunter', 2118860, 25, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 54, 54, 300000013, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270004537, 'sppbots', 'Gho5tHunt3r', 2884, 5, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 18, 18, 300000052, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270004538, 'sppbots', 'MrBoBaH', 363, 3, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 53, 53, 0, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270004539, 'sppbots', 'cyxapb1985RUS', 271973532, 66, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 103, 103, 300000138, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270004540, 'sppbots', 'MedoedKoMIIoT', 2497059, 26, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 35, 35, 300000009, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270004541, 'sppbots', 'ChesnokMuhomor', 254327, 15, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 0, 0, 300000027, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270004542, 'sppbots', 'WovAN05', 18995573, 42, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 24, 24, 300000101, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270004543, 'sppbots', 'TankistStAR', 17137002, 41, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 24, 24, 300000101, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270004544, 'sppbots', 'DarkShashlyk', 606319094, 73, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 97, 97, 0, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270004545, 'sppbots', 'xXT1t4nXx', 4555766, 30, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 4, 4, 300000083, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270004546, 'sppbots', 'MaMKuHMoHax02', 80700339, 56, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 102, 102, 300000121, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270004547, 'sppbots', 'ZloyBelyashTopor', 1786365, 24, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 15, 15, 300000083, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270004548, 'sppbots', 'LysyyReaPER', 12395149, 38, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 54, 54, 300000099, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270004549, 'sppbots', 'upKa06', 539995, 18, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 0, 0, 300000013, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270004550, 'sppbots', 'ChetkijDimon', 13844879, 39, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 45, 45, 300000013, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270004551, 'sppbots', 'GrimAngelDrag0n', 1023775, 21, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 4, 4, 300000076, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270004552, 'sppbots', 'BlackXolodok', 167243291, 62, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 117, 117, 0, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270004553, 'sppbots', 'FrostSoul87', 146307211, 61, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 117, 117, 300000045, 'PKK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270004554, 'sppbots', '3auceB2004', 68, 2, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 0, 0, 300000015, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270004555, 'sppbots', 'DjWolf', 675590, 19, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 31, 31, 0, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270004556, 'sppbots', 'RoGUE01', 19423, 8, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 31, 31, 300000001, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270004557, 'sppbots', 'CrazySlayer', 101676, 12, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 0, 0, 0, 'PKK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270004558, 'sppbots', 'KabanVolk', 0, 1, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 31, 31, 300000025, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270004559, 'sppbots', 'TimurTitanRUS', 141192, 13, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 10, 10, 300000061, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270004560, 'sppbots', 'Djpalychkozlow', 31378, 9, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 10, 10, 300000064, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270004561, 'sppbots', 'VovchikRUS', 11287, 7, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 44, 44, 300000055, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270004562, 'sppbots', 'xXShadowStarXx', 331864, 16, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 31, 31, 300000077, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270004563, 'sppbots', 'xXStaryjFireXx', 5981539, 32, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 1, 1, 300000093, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270004564, 'sppbots', 'MrGrimKing', 36806133, 49, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 9, 9, 300000112, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270004565, 'sppbots', 'Ghost4ngel', 101676, 12, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 0, 0, 300000063, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270004566, 'sppbots', 'Demon1RUS', 532692055, 72, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 90, 90, 0, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270004567, 'sppbots', 'IronHunTER', 4555766, 30, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 45, 45, 300000086, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270004568, 'sppbots', 'ToIIopBlade', 5981539, 32, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 26, 26, 300000016, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270004569, 'sppbots', 'DjTimur02', 5981539, 32, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 7, 7, 300000099, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270004570, 'sppbots', 'xXMaMKuHTuMypXx', 8740372, 35, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 35, 35, 0, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270004571, 'sppbots', 'yrapHbIurpuLLIa', 23180442, 44, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 2, 2, 0, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270004572, 'sppbots', 'hitryjsuhar', 45524865, 51, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 40, 40, 300000040, 'PKK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270004573, 'sppbots', 'NastyaD3mon05', 1023775, 21, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 15, 15, 300000080, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270004574, 'sppbots', 'MrUnylyjBomzh', 804219972, 75, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 103, 103, 300000145, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270004575, 'sppbots', 'BlackKnightKab4n', 4555766, 30, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 22, 22, 300000085, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270004576, 'sppbots', 'Soul1996', 12395149, 38, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 45, 45, 0, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270004577, 'sppbots', 'StormSlayer', 23180442, 44, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 46, 46, 0, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270004578, 'sppbots', 'MCcyxapb4yMa86', 7729999, 34, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 1, 1, 300000094, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270004579, 'sppbots', 'BlackClaw24RUS', 8740372, 35, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 35, 35, 300000099, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270004580, 'sppbots', 'Medoed4uTep', 48229, 10, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 18, 18, 300000065, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270004581, 'sppbots', 'KirpichHomyAKRUS', 146307211, 61, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 102, 102, 300000127, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270004582, 'sppbots', 'MadWolf', 21007103, 43, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 12, 12, 300000102, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270004583, 'sppbots', 'IIacaHDemon', 13844879, 39, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 39, 39, 300000094, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270004584, 'sppbots', 'TuMypIIyIIKuH', 3949727, 29, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 7, 7, 300000084, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270004585, 'sppbots', 'DjIIpocToduMaH1', 1495531, 23, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 1, 1, 300000072, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270004586, 'sppbots', 'ModHbIuBac9I00', 331864, 16, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 18, 18, 300000013, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270004587, 'sppbots', 'OldFrostReaper6', 6038, 6, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 10, 10, 300000056, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270004588, 'sppbots', 'HacT9IMedBedeB', 429632402, 70, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 92, 92, 300000139, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270004589, 'sppbots', '6apcyKxoJIodoK', 237351413, 65, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 92, 92, 300000135, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270004590, 'sppbots', 'pzhaBbIuBlade', 532692055, 72, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 110, 110, 300000144, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270004591, 'sppbots', 'RzhavyyPalych', 4555766, 30, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 35, 35, 300000081, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270004592, 'sppbots', 'Mr4e6ypeKReap3r', 539995, 18, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 38, 38, 0, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270004593, 'sppbots', 'KholodokBaton86', 1242536, 22, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 1, 1, 300000046, 'PKK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270004594, 'sppbots', 'BloodDreAM', 11066012, 37, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 26, 26, 300000015, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270004595, 'sppbots', 'IIode3dKa6aH', 30764519, 47, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 27, 27, 300000110, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270004596, 'sppbots', 'irka2', 2884, 5, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 53, 53, 300000050, 'PKK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270004597, 'sppbots', 'prostodimon', 1023775, 21, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 22, 22, 300000028, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270004598, 'sppbots', 'SilentSlayer', 2884, 5, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 38, 38, 300000053, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270004599, 'sppbots', 'IIpocToBlad338', 146307211, 61, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 88, 88, 300000046, 'PKK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270004600, 'sppbots', 'DjShustryjVedmak', 8740372, 35, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 22, 22, 300000017, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270004601, 'sppbots', '4uTepKapaTeJIb', 331864, 16, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 53, 53, 300000078, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270004602, 'sppbots', 'HolodokIce', 48229, 10, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 0, 0, 300000041, 'PKK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270004603, 'sppbots', 'WildDragon', 11287, 7, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 0, 0, 300000057, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270004604, 'sppbots', 'Kholodok', 101676, 12, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 31, 31, 300000068, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270004605, 'sppbots', 'MCMaLLIKacudopoB', 23180442, 44, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 36, 36, 300000103, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270004606, 'sppbots', 'peaJIbHbIuJIexa', 36806133, 49, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 24, 24, 300000115, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270004607, 'sppbots', 'ProstoDashka', 1786365, 24, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 11, 11, 300000012, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270004608, 'sppbots', 'yHbIJIbIurHoM', 71201, 11, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 18, 18, 300000061, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270004609, 'sppbots', 'Vitek', 429632402, 70, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 113, 113, 300000138, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270004610, 'sppbots', 'IronRogue01', 2925229, 27, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 11, 11, 300000015, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270004611, 'sppbots', 'SwiftWolf', 606319094, 73, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 108, 108, 300000027, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270004612, 'sppbots', 'petroff86', 36806133, 49, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 16, 16, 300000119, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270004613, 'sppbots', 'Cr4zyDream2', 11287, 7, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 18, 18, 0, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270004614, 'sppbots', 'Volk95', 5231213, 31, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 54, 54, 300000089, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270004615, 'sppbots', 'StormKiller', 17137002, 41, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 55, 55, 300000105, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270004616, 'sppbots', 'SweetHunterIce', 8740372, 35, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 1, 1, 300000092, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270004617, 'sppbots', 'TpaBKaded', 167243291, 62, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 88, 88, 300000127, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270004618, 'sppbots', 'WildDragonDream', 189363788, 63, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 102, 102, 300000130, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270004619, 'sppbots', 'GhostKing1993', 8740372, 35, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 15, 15, 300000026, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270004620, 'sppbots', 'PetrowichReaper', 19423, 8, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 0, 0, 300000069, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270004621, 'sppbots', '4eTKuuMaKc1986', 308441375, 67, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 113, 113, 300000139, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270004622, 'sppbots', 'PashaIvanoff', 33679907, 48, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 5, 5, 300000038, 'PKK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270004623, 'sppbots', 'MaMKuHKpacaB4uK', 696376867, 74, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 93, 93, 300000144, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270004624, 'sppbots', 'SilentAngel', 675590, 19, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 0, 0, 300000072, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270004625, 'sppbots', 'Xolodok', 48229, 10, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 0, 0, 300000009, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270004626, 'sppbots', 'GhostHunter', 191452, 14, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 10, 10, 300000061, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270004627, 'sppbots', 'xuTpbIucepera', 141192, 13, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 0, 0, 300000066, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270004628, 'sppbots', 'KoJI9IHuBaHoB', 3407873, 28, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 15, 15, 300000084, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270004629, 'sppbots', 'DarkMonk99', 331864, 16, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 10, 10, 300000044, 'PKK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270004630, 'sppbots', 'FrostBishopRUS', 835854, 20, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 15, 15, 300000073, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270004631, 'sppbots', 'SweetKingAngel', 167243291, 62, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 94, 94, 300000121, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270004632, 'sppbots', 'xXcocedKeHTXx', 31378, 9, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 10, 10, 300000069, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270004633, 'sppbots', 'BeshenyjVitek90', 532692055, 72, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 88, 88, 300000050, 'PKK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270004634, 'sppbots', 'Nataha', 363, 3, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 38, 38, 300000059, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270004635, 'sppbots', 'CrazyDrag0n', 13844879, 39, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 7, 7, 300000094, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270004636, 'sppbots', 'dedIce', 1786365, 24, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 35, 35, 300000089, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270004637, 'sppbots', 'JIexaIIeTpoB', 6812472, 33, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 15, 15, 300000030, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270004638, 'sppbots', 'ChetkiyAng3l2', 237351413, 65, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 103, 103, 300000132, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270004639, 'sppbots', 'De4th', 57383682, 53, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 8, 8, 300000113, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270004640, 'sppbots', 'Medoedded', 6038, 6, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 10, 10, 300000048, 'PKK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270004641, 'sppbots', 'TaIIoK4uTep', 539995, 18, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 18, 18, 300000048, 'PKK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270004642, 'sppbots', '6eJI9ILLIRaven', 8740372, 35, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 11, 11, 300000093, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270004643, 'sppbots', 'duKuupycJIaH', 3407873, 28, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 35, 35, 0, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270004644, 'sppbots', 'GrimShashlyk60', 114038008, 59, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 92, 92, 300000122, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270004645, 'sppbots', 'DjStaryjSosed', 23180442, 44, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 2, 2, 300000104, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270004646, 'sppbots', 'XitryyOleg', 212716741, 64, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 117, 117, 300000134, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270004647, 'sppbots', 'SweetSlayer', 45524865, 51, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 5, 5, 300000116, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270004648, 'sppbots', 'Arr0w', 2497059, 26, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 4, 4, 300000082, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270004649, 'sppbots', 'ToIIopezhuK81', 532692055, 72, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 90, 90, 300000046, 'PKK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270004650, 'sppbots', 'DjIvanov', 102265326, 58, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 88, 88, 300000129, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270004651, 'sppbots', 'yrapHbIuBoB4uK', 57383682, 53, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 40, 40, 300000048, 'PKK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270004652, 'sppbots', 'Arrow7RUS', 675590, 19, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 0, 0, 300000050, 'PKK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270004653, 'sppbots', 'MrcTeIIaH03', 25524751, 45, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 27, 27, 300000048, 'PKK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270004654, 'sppbots', 'BloodKingR1d3r', 21007103, 43, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 46, 46, 300000107, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270004655, 'sppbots', '6odpbIuIIaJIbI4', 102265326, 58, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 102, 102, 300000128, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270004656, 'sppbots', 'SkvoznyakBomzh', 25524751, 45, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 16, 16, 300000106, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270004657, 'sppbots', 'cheburekdreamRUS', 271973532, 66, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 94, 94, 300000136, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270004658, 'sppbots', 'andryukha90', 387197529, 69, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 94, 94, 300000045, 'PKK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270004659, 'sppbots', 'MadSlayerM0nk', 2925229, 27, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 22, 22, 300000013, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270004660, 'sppbots', 'zhupHbIudaLLIKa', 1495531, 23, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 4, 4, 300000073, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270004661, 'sppbots', 'PetrovichClaw7', 271973532, 66, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 94, 94, 300000011, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270004662, 'sppbots', 'HaTaxaKo3JIoB', 48229, 10, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 18, 18, 300000023, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270004663, 'sppbots', 'KiryuxaVolkOFF', 331864, 16, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 53, 53, 300000077, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270004664, 'sppbots', 'TrueHunt3r', 363, 3, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 0, 0, 300000057, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270004665, 'sppbots', 'NightStormSoul89', 804219972, 75, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 88, 88, 300000147, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270004666, 'sppbots', 'GrimSoulMuxoMOR', 19423, 8, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 25, 25, 0, 'PKK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270004667, 'sppbots', '6eLLIeHbIuoJIer', 36806133, 49, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 24, 24, 300000117, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270004668, 'sppbots', 'NightTitan', 126509030, 60, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 103, 103, 300000121, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270004669, 'sppbots', 'Volkow', 474205751, 71, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 102, 102, 300000132, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270004670, 'sppbots', '5w3etkrasavchik', 1023775, 21, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 11, 11, 300000030, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270004671, 'sppbots', 'WildSniper94', 71201, 11, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 25, 25, 300000070, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270004672, 'sppbots', 'MeJIKuuBedbMaK', 18995573, 42, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 12, 12, 300000031, 'PKK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270004673, 'sppbots', 'ZhirnyjMashka33', 212716741, 64, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 108, 108, 300000031, 'PKK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270004674, 'sppbots', 'TaIIoKKpacaB4uK', 254327, 15, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 38, 38, 0, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270004675, 'sppbots', 'WildMaster1998', 539995, 18, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 0, 0, 300000028, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270004676, 'sppbots', 'duKuuIIaLLIa', 11066012, 37, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 7, 7, 0, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270004677, 'sppbots', 'JIexaRUS', 63907585, 54, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 16, 16, 300000001, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270004678, 'sppbots', 'peaJIbHbIucaHeK', 804219972, 75, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 90, 90, 0, 'PKK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270004679, 'sppbots', '3JIouKoMIIoTHy6', 5231213, 31, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 54, 54, 300000081, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270004680, 'sppbots', 'LopataOgurec2', 146307211, 61, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 108, 108, 300000126, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270004681, 'sppbots', 'xX6apcyK89Xx', 429632402, 70, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 108, 108, 300000138, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270004682, 'sppbots', 'TuMypBoJIKoB', 271973532, 66, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 97, 97, 300000133, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270004683, 'sppbots', 'cBeTKaMedBedeB', 363, 3, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 53, 53, 300000051, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270004684, 'sppbots', 'xXIIaLLIaXx', 6038, 6, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 10, 10, 300000057, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270004685, 'sppbots', 'DashkaZajcev', 1786365, 24, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 15, 15, 300000090, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270004686, 'sppbots', 'IronWolfMage46', 167243291, 62, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 92, 92, 300000128, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270004687, 'sppbots', 'IIpocTo3adpoT', 2884, 5, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 53, 53, 300000026, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270004688, 'sppbots', 'TuxuucocedKefup', 15422851, 40, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 27, 27, 300000018, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270004689, 'sppbots', 'coHHbIufedop', 11066012, 37, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 11, 11, 300000100, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270004690, 'sppbots', 'krivojkotkolbasa', 141192, 13, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 53, 53, 300000048, 'PKK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270004691, 'sppbots', 'ChetkijSkvoznyak', 3407873, 28, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 7, 7, 300000087, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270004692, 'sppbots', 'Barsuk97', 6038, 6, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 44, 44, 300000015, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270004693, 'sppbots', 'MCVedmak', 70852742, 55, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 94, 94, 300000118, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270004694, 'sppbots', 'SvetkaSidorOV87', 6812472, 33, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 1, 1, 300000093, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270004695, 'sppbots', 'IronPes', 63907585, 54, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 2, 2, 300000117, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270004696, 'sppbots', 'Blade2005', 114038008, 59, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 103, 103, 300000124, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270004697, 'sppbots', 'UnylyjBlaDE', 308441375, 67, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 94, 94, 300000022, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270004698, 'sppbots', 'GroznyjWovan83', 30764519, 47, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 8, 8, 300000025, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270004699, 'sppbots', 'HaTaxacMupHoB63', 141192, 13, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 25, 25, 300000061, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270004700, 'sppbots', 'ShadowSl4y3r2000', 1168, 4, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 31, 31, 300000059, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270004701, 'sppbots', 'monahskvoznyak8', 101676, 12, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 44, 44, 300000062, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270004702, 'sppbots', 'JIoIIaTaToIIop93', 1023775, 21, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 22, 22, 300000071, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270004703, 'sppbots', 'SweetMonk98', 101676, 12, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 10, 10, 300000066, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270004704, 'sppbots', 'IIyIIKuHRUS', 606319094, 73, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 103, 103, 300000143, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270004705, 'sppbots', 'pycJIaHBoJIKoB88', 3949727, 29, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 26, 26, 300000041, 'PKK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270004706, 'sppbots', 'TankistKaratel', 191452, 14, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 10, 10, 0, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270004707, 'sppbots', 'BatyaUbivator', 80700339, 56, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 94, 94, 300000123, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270004708, 'sppbots', 'Bomzh', 539995, 18, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 10, 10, 0, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270004709, 'sppbots', 'yurec9', 7729999, 34, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 22, 22, 300000091, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270004710, 'sppbots', 'DikiySanyaPupkin', 212716741, 64, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 97, 97, 300000132, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270004711, 'sppbots', 'SonnyyNastya01', 696376867, 74, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 90, 90, 300000149, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270004712, 'sppbots', 'GrishaRUS', 40153995, 50, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 16, 16, 300000120, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270004713, 'sppbots', 'truef1re', 2118860, 25, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 26, 26, 300000090, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270004714, 'sppbots', 'MoHaxKoJI6aca', 331864, 16, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 0, 0, 300000078, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270004715, 'sppbots', 'ZadrotTitan2007', 254327, 15, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 0, 0, 300000069, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270004716, 'sppbots', 'BodryjPetruxa', 6812472, 33, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 4, 4, 300000099, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270004717, 'sppbots', 'DjBomzhBatya36', 102265326, 58, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 94, 94, 0, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270004718, 'sppbots', 'FrostStarMonk', 40153995, 50, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 36, 36, 300000112, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270004719, 'sppbots', 'kirpichmage', 101676, 12, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 10, 10, 0, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270004720, 'sppbots', 'Mrpesstar', 68, 2, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 25, 25, 300000055, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270004721, 'sppbots', 'LoneMonk', 2497059, 26, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 11, 11, 300000089, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270004722, 'sppbots', 'SanekPetrOFF', 931275828, 76, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 117, 117, 0, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270004723, 'sppbots', '4eTKuuKpacaB4uK', 5981539, 32, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 39, 39, 300000097, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270004724, 'sppbots', 'cepera7', 6038, 6, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 38, 38, 300000056, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270004725, 'sppbots', 'SonnyyMarmelad5', 6812472, 33, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 26, 26, 0, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270004726, 'sppbots', 'KrivoyMarmelad', 48229, 10, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 0, 0, 300000025, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270004727, 'sppbots', 'frostrogue', 331864, 16, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 53, 53, 300000077, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270004728, 'sppbots', 'StaryyZheka', 606319094, 73, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 117, 117, 300000142, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270004729, 'sppbots', 'MeJIKuucaHeK', 45524865, 51, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 2, 2, 300000018, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270004730, 'sppbots', 'StormBlackKefir', 48229, 10, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 31, 31, 300000004, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270004731, 'sppbots', 'WildTrueArrow98', 0, 1, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 0, 0, 300000055, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270004732, 'sppbots', 'NightTrueSoul4', 17137002, 41, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 46, 46, 300000050, 'PKK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270004733, 'sppbots', '3JIouezhuK', 5231213, 31, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 26, 26, 0, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270004734, 'sppbots', 'ShadowTitanClaw', 429632402, 70, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 110, 110, 300000131, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270004735, 'sppbots', 'NubTopor7', 101676, 12, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 0, 0, 300000069, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270004736, 'sppbots', 'DjduMoHcudopoB', 931275828, 76, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 97, 97, 300000016, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270004737, 'sppbots', 'ModHbIuTaHIOxa', 114038008, 59, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 94, 94, 300000124, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270004738, 'sppbots', 'Fedor2', 11287, 7, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 0, 0, 300000055, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270004739, 'sppbots', 'Mrdep3KuuToJIuK', 101676, 12, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 0, 0, 300000039, 'PKK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270004740, 'sppbots', 'xXSilentMasterXx', 31378, 9, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 53, 53, 300000064, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270004741, 'sppbots', 'IIpocToJIexa', 191452, 14, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 0, 0, 300000024, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270004742, 'sppbots', 'dream1988', 5231213, 31, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 26, 26, 300000081, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270004743, 'sppbots', 'DimanKozlov1', 9850111, 36, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 26, 26, 0, 'PKK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270004744, 'sppbots', 'MrDarkReaper', 2925229, 27, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 7, 7, 300000043, 'PKK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270004745, 'sppbots', 'kabannagibator', 15422851, 40, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 40, 40, 300000104, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270004746, 'sppbots', 'KrivoyKiller', 8740372, 35, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 1, 1, 0, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270004747, 'sppbots', 'TaIIoKorypec', 102265326, 58, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 103, 103, 300000006, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270004748, 'sppbots', '6aT9Icyxapb95', 271973532, 66, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 110, 110, 300000139, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270004749, 'sppbots', 'DerzkiyBatya', 68, 2, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 38, 38, 300000053, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270004750, 'sppbots', 'IIpocToHaru6aTop', 308441375, 67, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 110, 110, 300000135, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270004751, 'sppbots', 'ShadowStar', 835854, 20, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 22, 22, 300000073, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270004752, 'sppbots', 'EvilSlayer1999', 237351413, 65, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 92, 92, 300000139, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270004753, 'sppbots', 'RzhavyyVasya', 28049509, 46, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 55, 55, 300000106, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270004754, 'sppbots', 'SilentLoneTitan', 2925229, 27, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 22, 22, 300000089, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270004755, 'sppbots', 'IIpocTo6apcyK', 3949727, 29, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 26, 26, 300000087, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270004756, 'sppbots', '5h4dowSlayer', 57383682, 53, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 5, 5, 300000017, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270004757, 'sppbots', 'MamkinVolk', 2925229, 27, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 11, 11, 300000081, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270004758, 'sppbots', 'RzhavyjDemon', 80700339, 56, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 113, 113, 300000125, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270004759, 'sppbots', 'WildDrag0nRUS', 91162131, 57, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 94, 94, 0, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270004760, 'sppbots', 'yHbIJIbIuHaTaxa', 2884, 5, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 0, 0, 300000048, 'PKK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270004761, 'sppbots', 'HitryyUbivator', 3949727, 29, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 26, 26, 300000015, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270004762, 'sppbots', 'zheKaMedBedeBRUS', 1168, 4, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 25, 25, 300000053, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270004763, 'sppbots', 'xuTpbIu4uTep', 57383682, 53, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 2, 2, 300000120, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270004764, 'sppbots', 'xXOldReaperXx', 45524865, 51, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 55, 55, 0, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270004765, 'sppbots', 'DarkKnight', 331864, 16, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 18, 18, 300000074, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270004766, 'sppbots', 'Fedor1997', 7729999, 34, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 4, 4, 300000096, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270004767, 'sppbots', 'EvilFire', 19423, 8, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 31, 31, 300000064, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270004768, 'sppbots', 'SwiftSlayerRider', 675590, 19, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 0, 0, 300000073, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270004769, 'sppbots', 'SilentTopor', 8740372, 35, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 7, 7, 300000011, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270004770, 'sppbots', 'BoB4uKcMupHoB96', 13844879, 39, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 11, 11, 300000021, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270004771, 'sppbots', 'ShadowFire', 237351413, 65, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 93, 93, 300000036, 'PKK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270004772, 'sppbots', 'MCmelkijhomyak', 167243291, 62, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 108, 108, 300000122, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270004773, 'sppbots', 'IIeJIbMeHbded96', 71201, 11, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 0, 0, 300000013, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270004774, 'sppbots', 'ZhirnyyPetrukha', 146307211, 61, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 94, 94, 300000017, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270004775, 'sppbots', '6aT9IKeHT', 6038, 6, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 31, 31, 300000054, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270004776, 'sppbots', 'GhostDragon', 5231213, 31, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 7, 7, 300000085, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270004777, 'sppbots', 'MadRogue90', 1242536, 22, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 22, 22, 300000078, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270004778, 'sppbots', 'BeshenyjKompot69', 6812472, 33, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 11, 11, 300000047, 'PKK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270004779, 'sppbots', 'StormStar', 0, 1, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 0, 0, 300000057, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270004780, 'sppbots', 'SwiftSOULRUS', 11066012, 37, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 1, 1, 300000092, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270004781, 'sppbots', 'WildFire4', 141192, 13, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 38, 38, 300000062, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270004782, 'sppbots', 'TrueDream86', 48229, 10, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 10, 10, 300000065, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270004783, 'sppbots', 'ChetkijLexa4', 9850111, 36, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 7, 7, 300000030, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270004784, 'sppbots', 'BloodVedmak04', 474205751, 71, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 93, 93, 300000133, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270004785, 'sppbots', 'SonnyyOleg70', 1495531, 23, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 35, 35, 300000073, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270004786, 'sppbots', 'Gr1mKnigHT', 426284, 17, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 0, 0, 300000071, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270004787, 'sppbots', 'BloodDarkKiller', 71201, 11, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 0, 0, 300000066, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270004788, 'sppbots', 'IOpecKo3JIoB', 3407873, 28, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 1, 1, 300000081, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270004789, 'sppbots', 'NaglyjPasha2004', 1023775, 21, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 11, 11, 300000071, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270004790, 'sppbots', 'cocedRUS', 13844879, 39, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 11, 11, 300000016, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270004791, 'sppbots', 'IIode3dBedbMaK', 141192, 13, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 0, 0, 300000067, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270004792, 'sppbots', 'Pes1', 141192, 13, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 0, 0, 300000007, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270004793, 'sppbots', 'LLIaypMa96', 28049509, 46, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 40, 40, 300000110, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270004794, 'sppbots', 'IIaLLIa', 696376867, 74, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 94, 94, 300000021, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270004795, 'sppbots', 'ModHbIuIIaLLIa', 606319094, 73, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 110, 110, 300000148, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270004796, 'sppbots', 'KpuBouBoB4uK', 3949727, 29, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 1, 1, 300000089, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270004797, 'sppbots', 'ChumaXomyak', 363, 3, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 0, 0, 300000056, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270004798, 'sppbots', 'xXSanyaDragonXx', 141192, 13, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 44, 44, 0, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270004799, 'sppbots', 'XitryjMaksMonk96', 80700339, 56, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 108, 108, 300000125, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270004800, 'sppbots', 'Bac9IKo3JIoB', 102265326, 58, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 92, 92, 300000126, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270004801, 'sppbots', 'Sniper2', 15422851, 40, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 27, 27, 300000103, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270004802, 'sppbots', 'TapokKiller', 5231213, 31, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 1, 1, 300000023, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270004803, 'sppbots', 'duKuuKoTxoJIodoK', 6812472, 33, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 11, 11, 300000092, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270004804, 'sppbots', 'TepMuHaTop', 31378, 9, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 0, 0, 300000025, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270004805, 'sppbots', 'roIIHuKMedoed', 696376867, 74, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 117, 117, 300000020, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270004806, 'sppbots', 'ChesnokKirpich04', 19423, 8, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 0, 0, 300000069, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270004807, 'sppbots', 'WildChesnok', 2884, 5, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 18, 18, 300000008, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270004808, 'sppbots', 'SilentFang', 675590, 19, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 44, 44, 300000047, 'PKK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270004809, 'sppbots', 'Star63', 346825235, 68, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 90, 90, 300000134, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270004810, 'sppbots', 'BorzyyKiryuha', 40153995, 50, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 55, 55, 300000001, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270004811, 'sppbots', 'LysyjKaban', 2118860, 25, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 7, 7, 300000081, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270004812, 'sppbots', 'MCnastyapupkin90', 80700339, 56, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 93, 93, 300000048, 'PKK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270004813, 'sppbots', 'KoJI9IHBoJIKoB', 36806133, 49, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 12, 12, 300000114, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270004814, 'sppbots', 'duKuuceMKu3adpoT', 21007103, 43, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 46, 46, 300000021, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270004815, 'sppbots', 'xXSuhARXx', 48229, 10, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 31, 31, 300000043, 'PKK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270004816, 'sppbots', 'KoMIIoTHy6', 1168, 4, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 18, 18, 300000054, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270004817, 'sppbots', 'DarkMonkBlade', 331864, 16, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 44, 44, 300000075, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270004818, 'sppbots', 'xX6odpbIuIceXx', 532692055, 72, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 110, 110, 300000144, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270004819, 'sppbots', 'kompot', 36806133, 49, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 16, 16, 300000118, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270004820, 'sppbots', 'xXSwiftWolf90Xx', 126509030, 60, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 102, 102, 300000127, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270004821, 'sppbots', 'ShadowF1r3', 13844879, 39, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 54, 54, 300000098, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270004822, 'sppbots', 'IIaLLIaR0gue', 1242536, 22, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 7, 7, 300000018, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270004823, 'sppbots', 'ShadowChuma7', 931275828, 76, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 97, 97, 300000147, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270004824, 'sppbots', 'DjTrueKnight6', 21007103, 43, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 8, 8, 300000108, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270004825, 'sppbots', 'Xomyak88', 474205751, 71, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 92, 92, 300000015, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270004826, 'sppbots', 'MelkijKirpich', 696376867, 74, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 93, 93, 300000033, 'PKK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270004827, 'sppbots', 'Dj6odpbIuMaKc', 4555766, 30, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 22, 22, 300000086, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270004828, 'sppbots', 'BorzyjTopor40', 91162131, 57, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 88, 88, 300000130, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270004829, 'sppbots', 'TrueMonk5', 426284, 17, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 18, 18, 300000023, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270004830, 'sppbots', 'BatyaKolbaSA', 675590, 19, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 10, 10, 300000079, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270004831, 'sppbots', 'peaJIbHbIuTuMyp', 80700339, 56, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 94, 94, 300000122, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270004832, 'sppbots', 'Kozloff2000', 6038, 6, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 25, 25, 300000057, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270004833, 'sppbots', 'NaglyyPelmen', 0, 1, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 38, 38, 0, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270004834, 'sppbots', 'StormKaratel', 191452, 14, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 53, 53, 300000070, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270004835, 'sppbots', 'IIode3d92', 63907585, 54, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 12, 12, 300000117, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270004836, 'sppbots', 'LyutyjKolyan54', 12395149, 38, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 54, 54, 0, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270004837, 'sppbots', 'Gr1mMaster', 57383682, 53, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 2, 2, 0, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270004838, 'sppbots', 'KentChiter', 363, 3, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 10, 10, 300000055, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270004839, 'sppbots', 'xoM9IKRogu3', 101676, 12, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 0, 0, 300000065, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270004840, 'sppbots', 'do6pbIuKoJI9IH05', 4555766, 30, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 15, 15, 0, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270004841, 'sppbots', 'IIpocToToJI9IH', 363, 3, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 0, 0, 300000003, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270004842, 'sppbots', 'JIIOTbIuDr3am', 40153995, 50, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 36, 36, 300000111, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270004843, 'sppbots', 'ChetkijFedor', 189363788, 63, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 97, 97, 300000127, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270004844, 'sppbots', 'melkiyskvoznyak', 835854, 20, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 35, 35, 300000077, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270004845, 'sppbots', 'zheKaKy3HecoB', 1786365, 24, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 53, 53, 300000083, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270004846, 'sppbots', 'IronWolf99', 13844879, 39, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 15, 15, 300000022, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270004847, 'sppbots', 'GolodnyyGrisha7', 8740372, 35, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 54, 54, 300000098, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270004848, 'sppbots', 'Ice3', 11066012, 37, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 54, 54, 300000026, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270004849, 'sppbots', 'Homyak', 23180442, 44, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 24, 24, 300000102, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270004850, 'sppbots', 'BaJIeHoK97', 63907585, 54, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 5, 5, 300000010, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270004851, 'sppbots', 'UnylyjPodezd', 539995, 18, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 0, 0, 300000047, 'PKK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270004852, 'sppbots', 'OldTitan03', 3949727, 29, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 39, 39, 300000035, 'PKK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270004853, 'sppbots', 'JIexaMedBedeB', 102265326, 58, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 110, 110, 300000001, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270004854, 'sppbots', 'KompotSukhar3', 48229, 10, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 10, 10, 300000064, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270004855, 'sppbots', 'Blade01', 91162131, 57, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 102, 102, 0, 'PKK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270004856, 'sppbots', 'cTeIIaH2001', 474205751, 71, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 110, 110, 300000139, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270004857, 'sppbots', 'DikijLenkaZaycev', 0, 1, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 0, 0, 300000058, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270004858, 'sppbots', 'GrimFireVedmak', 0, 1, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 10, 10, 0, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270004859, 'sppbots', 'MCdeath8', 532692055, 72, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 93, 93, 300000143, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270004860, 'sppbots', 'BloodKiller', 539995, 18, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 38, 38, 300000076, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270004861, 'sppbots', 'FedorRider', 539995, 18, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 0, 0, 300000078, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270004862, 'sppbots', 'Monax', 6812472, 33, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 4, 4, 300000017, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270004863, 'sppbots', 'KoJI6acarapazh7', 804219972, 75, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 110, 110, 0, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270004864, 'sppbots', 'JIIOTbIu6apcyK', 3949727, 29, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 1, 1, 0, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270004865, 'sppbots', 'GolodnyySemki', 11287, 7, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 0, 0, 300000016, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270004866, 'sppbots', 'MadMaster', 19423, 8, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 25, 25, 300000065, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270004867, 'sppbots', 'PelmenOgurec', 308441375, 67, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 108, 108, 300000136, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270004868, 'sppbots', 'IOpecBoJIKoB1992', 40153995, 50, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 5, 5, 300000118, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270004869, 'sppbots', '4ecHoK2004', 114038008, 59, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 110, 110, 300000130, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270004870, 'sppbots', 'BoJIKoB93', 17137002, 41, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 9, 9, 300000102, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270004871, 'sppbots', 'borzyyandryuxa', 931275828, 76, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 92, 92, 300000150, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270004872, 'sppbots', 'True4ngel72', 68, 2, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 53, 53, 300000052, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270004873, 'sppbots', 'MarmeladChuma2', 141192, 13, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 53, 53, 300000034, 'PKK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270004874, 'sppbots', 'fedopIIyIIKuH', 426284, 17, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 25, 25, 300000048, 'PKK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270004875, 'sppbots', 'MrShadowWolk1991', 5981539, 32, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 1, 1, 0, 'PKK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270004876, 'sppbots', 'KrivoyTankist87', 835854, 20, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 11, 11, 300000079, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270004877, 'sppbots', 'aHdpIOxaRaven', 17137002, 41, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 46, 46, 300000110, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270004878, 'sppbots', 'rpo3HbIurHoM', 167243291, 62, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 88, 88, 300000021, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270004879, 'sppbots', 'LLIaLLIJIbIKMonk', 331864, 16, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 10, 10, 300000041, 'PKK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270004880, 'sppbots', 'JIbIcbIu6aT9I75', 51262204, 52, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 2, 2, 300000120, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270004881, 'sppbots', 'ShadowDemon', 474205751, 71, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 108, 108, 0, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270004882, 'sppbots', 'yHbIJIbIuceMKu', 9850111, 36, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 45, 45, 300000097, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270004883, 'sppbots', 'Dimon', 237351413, 65, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 117, 117, 300000133, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270004884, 'sppbots', 'SidorOFF5', 146307211, 61, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 93, 93, 300000122, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270004885, 'sppbots', 'DjSwiftTapok', 30764519, 47, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 9, 9, 300000007, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270004886, 'sppbots', 'Old1ce', 5981539, 32, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 35, 35, 300000100, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270004887, 'sppbots', 'BorzyjKot', 15422851, 40, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 40, 40, 300000110, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270004888, 'sppbots', 'ugarnyjpasha', 17137002, 41, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 36, 36, 300000103, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270004889, 'sppbots', 'DjTankist48', 426284, 17, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 53, 53, 300000078, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270004890, 'sppbots', 'rpo3HbIuIIeTpyxa', 1023775, 21, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 22, 22, 300000074, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270004891, 'sppbots', 'ChetkijDimon98', 2497059, 26, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 15, 15, 300000036, 'PKK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270004892, 'sppbots', 'PashaVolkoff', 3407873, 28, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 4, 4, 300000011, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270004893, 'sppbots', 'duMoH42', 18995573, 42, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 12, 12, 300000030, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270004894, 'sppbots', 'ChetkijLopataIce', 6038, 6, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 44, 44, 300000060, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270004895, 'sppbots', 'peaJIbHbIuKiller', 931275828, 76, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 97, 97, 300000148, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270004896, 'sppbots', 'WitekSidorOW98', 146307211, 61, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 108, 108, 300000129, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270004897, 'sppbots', 'ToJI9IHIIyIIKuH', 31378, 9, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 0, 0, 300000069, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270004898, 'sppbots', 'NagibatorGarazh', 31378, 9, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 10, 10, 300000012, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270004899, 'sppbots', 'JIeHKacudopoB03', 835854, 20, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 1, 1, 300000079, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270004900, 'sppbots', 'SanyaZajcev85', 426284, 17, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 31, 31, 300000020, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270004901, 'sppbots', 'MeJIKuu6aToH', 835854, 20, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 45, 45, 300000077, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270004902, 'sppbots', 'XitryjChushpan', 1168, 4, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 10, 10, 300000059, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270004903, 'sppbots', 'UnylyjPes', 13844879, 39, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 11, 11, 300000099, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270004904, 'sppbots', 'Gr1mFangTopor', 426284, 17, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 53, 53, 300000025, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270004905, 'sppbots', 'DjLoneKnight7', 8740372, 35, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 54, 54, 300000004, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270004906, 'sppbots', 'TiTAN7', 1242536, 22, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 45, 45, 300000077, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270004907, 'sppbots', '6odpbIucaH9I62', 675590, 19, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 31, 31, 0, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270004908, 'sppbots', 'SilentWolfSniper', 387197529, 69, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 93, 93, 300000138, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270004909, 'sppbots', 'Swe3tPelmen', 5981539, 32, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 54, 54, 0, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270004910, 'sppbots', 'IronKnight88', 19423, 8, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 0, 0, 300000061, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270004911, 'sppbots', 'xXSwiftBlade6Xx', 189363788, 63, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 90, 90, 0, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270004912, 'sppbots', 'pzhaBbIurpuLLIa', 7729999, 34, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 11, 11, 0, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270004913, 'sppbots', 'KefirKrasavchik', 539995, 18, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 44, 44, 300000076, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270004914, 'sppbots', 'TuxuuMaLLIKa5', 68, 2, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 18, 18, 300000047, 'PKK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270004915, 'sppbots', 'PashaIvanov', 13844879, 39, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 1, 1, 300000093, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270004916, 'sppbots', 'VolkOV2003', 18995573, 42, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 40, 40, 300000028, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270004917, 'sppbots', 'xXDobryyFedorXx', 3949727, 29, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 15, 15, 300000084, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270004918, 'sppbots', 'cBeTKaKo3JIoB', 45524865, 51, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 46, 46, 0, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270004919, 'sppbots', 'MoHaxIIec', 71201, 11, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 53, 53, 300000068, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270004920, 'sppbots', 'KoTMedoed', 70852742, 55, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 92, 92, 0, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270004921, 'sppbots', 'KoJI6aca1993', 254327, 15, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 18, 18, 300000020, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270004922, 'sppbots', 'xuTpbIuBuTeK', 675590, 19, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 0, 0, 300000078, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270004923, 'sppbots', 'roIIHuKcoced7', 3949727, 29, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 4, 4, 300000082, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270004924, 'sppbots', 'Arrow61', 271973532, 66, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 92, 92, 300000140, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270004925, 'sppbots', 'BloodClawClaw06', 1168, 4, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 25, 25, 300000054, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270004926, 'sppbots', 'yrapHbIuduMoH06', 4555766, 30, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 11, 11, 300000086, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270004927, 'sppbots', 'BaJIeHoK3adpoT', 835854, 20, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 39, 39, 300000077, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270004928, 'sppbots', 'maksRUS', 101676, 12, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 10, 10, 300000064, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270004929, 'sppbots', 'MamkinKotBratok', 48229, 10, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 0, 0, 0, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270004930, 'sppbots', 'ZadrotOgurec', 363, 3, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 0, 0, 300000057, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270004931, 'sppbots', 'LoneSoulMonk90', 4555766, 30, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 4, 4, 300000082, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270004932, 'sppbots', 'GrimTitan', 1168, 4, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 0, 0, 300000013, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270004933, 'sppbots', 'BarsukChesnok', 1168, 4, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 38, 38, 300000028, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270004934, 'sppbots', 'roJIodHbIuduMoH', 11066012, 37, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 39, 39, 300000091, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270004935, 'sppbots', 'SweetGrimRidER03', 141192, 13, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 38, 38, 300000009, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270004936, 'sppbots', 'HarJIbIu6aToH', 1786365, 24, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 11, 11, 300000088, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270004937, 'sppbots', 'smirnoff7', 0, 1, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 38, 38, 300000053, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270004938, 'sppbots', 'MamkinZadrot', 141192, 13, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 18, 18, 300000062, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270004939, 'sppbots', 'Smirnov2', 23180442, 44, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 40, 40, 300000105, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270004940, 'sppbots', 'Tuxuu4e6ypeK85', 48229, 10, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 0, 0, 300000068, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270004941, 'sppbots', 'MCSmirnov', 254327, 15, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 10, 10, 300000066, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270004942, 'sppbots', 'Raven68', 387197529, 69, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 102, 102, 300000136, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270004943, 'sppbots', 'DarkClaw', 675590, 19, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 10, 10, 300000079, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270004944, 'sppbots', '3adpoT', 13844879, 39, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 22, 22, 300000011, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270004945, 'sppbots', 'Gr1mMage', 606319094, 73, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 117, 117, 300000141, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270004946, 'sppbots', 'UgarnyjTimur', 2497059, 26, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 15, 15, 300000017, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270004947, 'sppbots', 'roJIodHbIucyxapb', 51262204, 52, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 5, 5, 300000050, 'PKK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270004948, 'sppbots', 'WildMadDeath', 13844879, 39, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 11, 11, 300000002, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270004949, 'sppbots', 'MeJIKuuTaHIOxa', 387197529, 69, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 93, 93, 300000025, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270004950, 'sppbots', 'SilentLord', 70852742, 55, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 103, 103, 300000039, 'PKK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270004951, 'sppbots', 'LysyjKotMarmeLAD', 1786365, 24, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 26, 26, 300000025, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270004952, 'sppbots', 'yrapHbIuupKaRUS', 696376867, 74, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 108, 108, 300000042, 'PKK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270004953, 'sppbots', 'ModnyyDashka', 68, 2, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 0, 0, 300000059, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270004954, 'sppbots', 'GhostSTAR', 191452, 14, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 31, 31, 300000070, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270004955, 'sppbots', 'IIaLLIauBaHoB', 141192, 13, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 0, 0, 300000016, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270004956, 'sppbots', 'SemkiSukhar', 17137002, 41, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 12, 12, 0, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270004957, 'sppbots', 'MeJIKuuBishop', 63907585, 54, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 55, 55, 300000116, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270004958, 'sppbots', 'BlackTrueDream', 1168, 4, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 0, 0, 300000016, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270004959, 'sppbots', 'DikijIce', 9850111, 36, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 22, 22, 300000022, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270004960, 'sppbots', 'IronMadArrowRUS', 804219972, 75, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 94, 94, 300000004, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270004961, 'sppbots', 'GhostOgurec', 141192, 13, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 10, 10, 300000064, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270004962, 'sppbots', 'Lon3Angel', 2497059, 26, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 1, 1, 300000087, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270004963, 'sppbots', 'KabanBaton66', 21007103, 43, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 5, 5, 300000105, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270004964, 'sppbots', 'FrostHolodokRUS', 4555766, 30, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 22, 22, 300000082, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270004965, 'sppbots', 'DerzkiyFedor', 675590, 19, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 0, 0, 0, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270004966, 'sppbots', 'DjSweetMonkRUS', 25524751, 45, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 27, 27, 300000109, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270004967, 'sppbots', 'Dragon9', 68, 2, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 0, 0, 300000050, 'PKK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270004968, 'sppbots', 'ProstoDedOgurec', 12395149, 38, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 54, 54, 300000095, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270004969, 'sppbots', 'BoJIKoB', 7729999, 34, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 26, 26, 300000093, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270004970, 'sppbots', 'duKuuBuTeKRaven', 8740372, 35, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 22, 22, 300000033, 'PKK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270004971, 'sppbots', 'RealnyyAndryuxa', 19423, 8, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 10, 10, 300000011, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270004972, 'sppbots', 'LysyySuxarMonk', 9850111, 36, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 11, 11, 300000097, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270004973, 'sppbots', 'DerzkijSosed1', 5231213, 31, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 22, 22, 300000081, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270004974, 'sppbots', '4uTepKefup02', 2118860, 25, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 1, 1, 300000086, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270004975, 'sppbots', '6odpbIucaHeK1992', 91162131, 57, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 117, 117, 300000128, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270004976, 'sppbots', 'PetruxaKuznecov', 63907585, 54, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 8, 8, 300000118, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270004977, 'sppbots', 'SwiftMaster2001', 363, 3, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 44, 44, 300000058, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270004978, 'sppbots', 'StormKnightRUS', 114038008, 59, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 97, 97, 300000008, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270004979, 'sppbots', '6eJI9ILLI6paToK', 68, 2, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 53, 53, 300000053, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270004980, 'sppbots', 'NaglyjOgurec02', 191452, 14, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 0, 0, 300000024, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270004981, 'sppbots', 'Kefup3', 271973532, 66, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 117, 117, 300000140, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270004982, 'sppbots', 'ezhuK4ecHoK97', 17137002, 41, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 46, 46, 300000101, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270004983, 'sppbots', 'Angel4', 5981539, 32, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 35, 35, 300000097, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270004984, 'sppbots', 'FrostAngel', 5231213, 31, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 45, 45, 300000011, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270004985, 'sppbots', 'StaryjWolf50', 13844879, 39, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 7, 7, 300000094, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270004986, 'sppbots', 'WildRogue', 21007103, 43, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 5, 5, 300000007, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270004987, 'sppbots', 'BodryyTapok', 2118860, 25, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 11, 11, 0, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270004988, 'sppbots', '6eLLIeHbIuW0lf', 68, 2, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 31, 31, 300000053, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270004989, 'sppbots', 'BloodChuma', 191452, 14, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 0, 0, 300000063, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270004990, 'sppbots', 'MrBloodMa5ter', 5981539, 32, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 1, 1, 0, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270004991, 'sppbots', 'StaryjLeXA93', 675590, 19, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 31, 31, 0, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270004992, 'sppbots', 'andryuxasmirnoff', 8740372, 35, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 26, 26, 300000050, 'PKK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270004993, 'sppbots', '6odpbIuTuMyp', 19423, 8, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 38, 38, 300000063, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270004994, 'sppbots', 'ZhekaKozlow', 9850111, 36, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 39, 39, 300000008, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270004995, 'sppbots', 'dep3KuucBeTKa', 91162131, 57, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 117, 117, 0, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270004996, 'sppbots', 'MedoedxoM9IK2005', 0, 1, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 0, 0, 300000051, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270004997, 'sppbots', 'LopataPodezd87', 18995573, 42, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 16, 16, 300000105, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270004998, 'sppbots', 'ToporLord2', 30764519, 47, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 12, 12, 300000105, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270004999, 'sppbots', 'GhostHunterSemki', 11287, 7, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 0, 0, 300000053, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270005000, 'sppbots', 'xXbomzhXx', 57383682, 53, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 55, 55, 300000118, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270005001, 'sppbots', 'xXcTapbIuWolfXx', 19423, 8, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 31, 31, 300000011, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270005002, 'sppbots', 'LehaBlade', 2497059, 26, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 22, 22, 300000086, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270005003, 'sppbots', 'Swetka', 141192, 13, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 10, 10, 300000068, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270005004, 'sppbots', 'zloysanekkozlow', 2118860, 25, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 39, 39, 300000023, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270005005, 'sppbots', 'Dragon2002', 237351413, 65, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 94, 94, 300000138, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270005006, 'sppbots', 'KrivojHunt3r02', 3949727, 29, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 39, 39, 300000086, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270005007, 'sppbots', 'TpaBKaBedbMaK', 212716741, 64, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 103, 103, 300000136, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270005008, 'sppbots', 'xuTpbIucocedMag3', 31378, 9, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 31, 31, 300000066, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270005009, 'sppbots', 'BloodBlade4', 101676, 12, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 18, 18, 300000026, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270005010, 'sppbots', 'OldBaton', 331864, 16, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 10, 10, 300000076, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270005011, 'sppbots', 'MCOldHunter', 21007103, 43, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 8, 8, 300000110, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270005012, 'sppbots', 'MadSoul73', 346825235, 68, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 102, 102, 300000007, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270005013, 'sppbots', 'DarkLordVoLK91', 6812472, 33, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 35, 35, 300000098, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270005014, 'sppbots', 'GnomTravka', 102265326, 58, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 92, 92, 300000125, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270005015, 'sppbots', 'grimevilgopnik8', 426284, 17, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 0, 0, 300000028, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270005016, 'sppbots', 'MrWildMaster', 9850111, 36, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 7, 7, 300000092, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270005017, 'sppbots', 'StaryySuxar', 4555766, 30, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 15, 15, 300000081, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270005018, 'sppbots', 'MCBoB4uKRider', 80700339, 56, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 94, 94, 300000003, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270005019, 'sppbots', 'Khomyak93', 167243291, 62, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 110, 110, 300000125, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270005020, 'sppbots', '5weetHunter', 70852742, 55, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 97, 97, 300000115, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270005021, 'sppbots', 'IIode3d', 51262204, 52, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 27, 27, 0, 'PKK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270005022, 'sppbots', 'Death60', 1786365, 24, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 22, 22, 300000083, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270005023, 'sppbots', 'xuTpbIu6eJI9ILLI', 11287, 7, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 18, 18, 300000056, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270005024, 'sppbots', 'GroznyyNataha', 71201, 11, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 53, 53, 300000013, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270005025, 'sppbots', 'BloodClawKiller', 191452, 14, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 44, 44, 300000068, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270005026, 'sppbots', 'RealnyyK1ller', 191452, 14, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 0, 0, 0, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270005027, 'sppbots', 'KefirMage01', 1786365, 24, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 22, 22, 300000085, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270005028, 'sppbots', 'TikhijBratok', 363, 3, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 38, 38, 300000032, 'PKK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270005029, 'sppbots', 'Barsuk9', 28049509, 46, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 46, 46, 300000107, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270005030, 'sppbots', 'Hy6KeHT44', 167243291, 62, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 103, 103, 300000128, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270005031, 'sppbots', 'pzhaBbIuDeath', 6812472, 33, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 7, 7, 300000002, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270005032, 'sppbots', 'TolyanWolkoff', 28049509, 46, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 8, 8, 300000104, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270005033, 'sppbots', 'TaHIOxacudopoB45', 126509030, 60, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 88, 88, 300000123, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270005034, 'sppbots', 'DikiyDragon', 1495531, 23, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 35, 35, 300000075, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270005035, 'sppbots', 'MeJIKuuToJI9IH', 80700339, 56, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 108, 108, 300000025, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270005036, 'sppbots', 'SweetStar', 835854, 20, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 1, 1, 300000018, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270005037, 'sppbots', 'MeJIKuu5n1per', 30764519, 47, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 2, 2, 300000039, 'PKK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270005038, 'sppbots', 'MrDikijKentPacan', 539995, 18, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 44, 44, 0, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270005039, 'sppbots', 'ChetkiyChiterRUS', 40153995, 50, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 40, 40, 300000115, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270005040, 'sppbots', 'EvilClawBratok', 11066012, 37, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 54, 54, 300000023, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270005041, 'sppbots', 'ShaurmaKefirRUS', 3407873, 28, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 45, 45, 300000012, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270005042, 'sppbots', 'dep3KuuDragon', 2925229, 27, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 7, 7, 300000088, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270005043, 'sppbots', '3JIouxoM9IK', 532692055, 72, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 117, 117, 300000143, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270005044, 'sppbots', 'BlackTrueBlade', 6812472, 33, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 54, 54, 300000093, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270005045, 'sppbots', 'PetruxaZajcev94', 126509030, 60, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 108, 108, 300000035, 'PKK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270005046, 'sppbots', 'naglyyclaw', 237351413, 65, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 90, 90, 300000138, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270005047, 'sppbots', 'LoneGrimBelyash', 331864, 16, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 0, 0, 300000077, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270005048, 'sppbots', 'xXIvanov04Xx', 429632402, 70, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 94, 94, 300000131, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270005049, 'sppbots', 'wildrogue1995', 30764519, 47, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 9, 9, 300000020, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270005050, 'sppbots', 'caH9IIIyIIKuH', 387197529, 69, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 103, 103, 300000139, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270005051, 'sppbots', 'Knight1', 68, 2, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 10, 10, 0, 'PKK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270005052, 'sppbots', 'D4rkDragon', 126509030, 60, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 102, 102, 300000010, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270005053, 'sppbots', 'Bl00dClawIce', 25524751, 45, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 12, 12, 300000021, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270005054, 'sppbots', 'IIode3dIIode3d', 63907585, 54, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 36, 36, 0, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270005055, 'sppbots', 'MoHax6oMzh', 3949727, 29, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 54, 54, 300000089, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270005056, 'sppbots', 'FrostDe4th', 13844879, 39, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 4, 4, 300000096, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270005057, 'sppbots', 'SanyaKozlov', 189363788, 63, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 103, 103, 300000126, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270005058, 'sppbots', 'KpuBouoJIer95', 1495531, 23, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 4, 4, 300000078, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270005059, 'sppbots', 'Mr4eTKuuBoJIK', 63907585, 54, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 5, 5, 300000115, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270005060, 'sppbots', 'cudopoB02', 6038, 6, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 0, 0, 300000058, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270005061, 'sppbots', 'KolyanZaycev', 9850111, 36, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 4, 4, 300000093, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270005062, 'sppbots', 'GrimBatya', 835854, 20, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 7, 7, 300000078, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270005063, 'sppbots', 'RealnyjKiryuxa', 48229, 10, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 53, 53, 300000069, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270005064, 'sppbots', 'DerzkiyUbiwaTOR', 532692055, 72, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 97, 97, 300000003, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270005065, 'sppbots', '6op3bIuTaHIOxa', 363, 3, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 18, 18, 300000059, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270005066, 'sppbots', 'JIeHKaKy3HecoB', 1023775, 21, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 7, 7, 300000077, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270005067, 'sppbots', 'TaHIOxaKy3HecoB', 2925229, 27, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 1, 1, 0, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270005068, 'sppbots', 'DjPupkin', 5231213, 31, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 54, 54, 300000089, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270005069, 'sppbots', 'ugarnyjpalychRUS', 167243291, 62, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 103, 103, 300000028, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270005070, 'sppbots', 'zloylenkawolkoff', 141192, 13, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 53, 53, 300000009, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270005071, 'sppbots', 'UnylyjBelyaSH', 474205751, 71, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 90, 90, 300000137, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270005072, 'sppbots', 'SwiftMonk2002', 1786365, 24, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 4, 4, 300000019, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270005073, 'sppbots', 'ProstoBaton99', 931275828, 76, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 108, 108, 300000149, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270005074, 'sppbots', 'madmonk8', 4555766, 30, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 39, 39, 300000081, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270005075, 'sppbots', 'TimurKozloff', 1168, 4, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 44, 44, 300000055, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270005076, 'sppbots', 'MadDemon', 68, 2, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 0, 0, 300000058, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270005077, 'sppbots', 'BuTeKBoJIKoB', 1495531, 23, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 39, 39, 300000075, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270005078, 'sppbots', 'FrostDemon', 71201, 11, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 10, 10, 300000028, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270005079, 'sppbots', 'DerzkiyZadrotRUS', 675590, 19, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 44, 44, 300000076, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270005080, 'sppbots', 'IIode3dy6uBaTop', 271973532, 66, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 93, 93, 300000139, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270005081, 'sppbots', 'shadowhunterice', 11066012, 37, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 7, 7, 300000097, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270005082, 'sppbots', 'TaHIOxaIIeTpoB', 1242536, 22, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 7, 7, 300000076, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270005083, 'sppbots', 'ChetkiyBelyaSH', 0, 1, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 25, 25, 300000051, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270005084, 'sppbots', 'LoneSniperRogue', 426284, 17, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 0, 0, 0, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270005085, 'sppbots', 'OldBishop', 931275828, 76, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 94, 94, 300000149, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270005086, 'sppbots', 'BlackSlayerFang', 2925229, 27, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 35, 35, 300000021, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270005087, 'sppbots', 'GroznyjPelmen40', 606319094, 73, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 90, 90, 300000142, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270005088, 'sppbots', 'GopnikKent5', 675590, 19, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 10, 10, 300000007, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270005089, 'sppbots', 'ChetkijSerega', 191452, 14, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 31, 31, 300000063, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270005090, 'sppbots', 'Bac9IcMupHoB', 2925229, 27, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 11, 11, 300000087, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270005091, 'sppbots', 'MuxomorHomYAK', 15422851, 40, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 5, 5, 300000106, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270005092, 'sppbots', 'Fr0stTopor', 308441375, 67, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 92, 92, 300000131, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270005093, 'sppbots', 'GrimDre4mTitan', 254327, 15, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 10, 10, 300000066, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270005094, 'sppbots', 'KupIIu44e6ypeK', 0, 1, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 10, 10, 300000055, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270005095, 'sppbots', 'zhupHbIu3adpoT03', 804219972, 75, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 117, 117, 300000147, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270005096, 'sppbots', 'kenttravka7', 6812472, 33, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 22, 22, 300000028, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270005097, 'sppbots', 'MCLysyyTrawka', 532692055, 72, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 103, 103, 300000150, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270005098, 'sppbots', 'Reaper1985', 1023775, 21, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 35, 35, 0, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270005099, 'sppbots', 'N1ghtCh3snok21', 1786365, 24, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 39, 39, 300000033, 'PKK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270005100, 'sppbots', 'GrimBladeDemon98', 254327, 15, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 0, 0, 300000061, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270005101, 'sppbots', '6odpbIuIIeTpoBu4', 31378, 9, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 18, 18, 300000066, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270005102, 'sppbots', 'IrkaZajcev', 48229, 10, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 10, 10, 300000062, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270005103, 'sppbots', 'petruxakozloff', 23180442, 44, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 2, 2, 300000047, 'PKK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270005104, 'sppbots', '6eJI9ILLIroIIHuK', 387197529, 69, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 94, 94, 300000139, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270005105, 'sppbots', '3adpoT89', 931275828, 76, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 113, 113, 0, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270005106, 'sppbots', 'MrStormMadMage', 931275828, 76, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 97, 97, 0, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270005107, 'sppbots', 'GrimDarkReaper', 308441375, 67, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 108, 108, 300000018, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270005108, 'sppbots', 'KeHTKpacaB4uK', 363, 3, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 31, 31, 300000016, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270005109, 'sppbots', 'BloodEvilDeath', 91162131, 57, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 110, 110, 300000129, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270005110, 'sppbots', 'MarmeladKirpich', 33679907, 48, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 2, 2, 300000118, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270005111, 'sppbots', 'cyxapb02RUS', 606319094, 73, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 108, 108, 0, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270005112, 'sppbots', 'B15hop96', 4555766, 30, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 1, 1, 300000083, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270005113, 'sppbots', 'BorzyjOgurec', 33679907, 48, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 9, 9, 300000111, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270005114, 'sppbots', 'xXMoHax6aToH89Xx', 8740372, 35, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 39, 39, 300000092, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270005115, 'sppbots', 'JIexaSoul', 19423, 8, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 44, 44, 300000069, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270005116, 'sppbots', 'N1ghtHunterAngel', 15422851, 40, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 55, 55, 300000107, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270005117, 'sppbots', 'IIpocTocepera', 1786365, 24, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 45, 45, 300000081, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270005118, 'sppbots', 'TixijStasZaycev', 606319094, 73, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 88, 88, 300000149, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270005119, 'sppbots', 'LysyjSosed', 675590, 19, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 18, 18, 300000077, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270005120, 'sppbots', 'KoJI9IHBoJIKoB07', 68, 2, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 0, 0, 300000059, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270005121, 'sppbots', 'KpacaB4uK6aToH', 21007103, 43, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 40, 40, 0, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270005122, 'sppbots', 'TrueKiller1990', 931275828, 76, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 94, 94, 300000147, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270005123, 'sppbots', 'BratokGnomRUS', 15422851, 40, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 16, 16, 300000110, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270005124, 'sppbots', 'NightDragonKing', 15422851, 40, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 8, 8, 300000001, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270005125, 'sppbots', 'StaryjVoLK', 1168, 4, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 0, 0, 0, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270005126, 'sppbots', 'ShadowWoLF85', 1495531, 23, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 7, 7, 300000077, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270005127, 'sppbots', 'ChushpanTapok', 30764519, 47, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 36, 36, 300000043, 'PKK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270005128, 'sppbots', 'LysyjChesnok2', 675590, 19, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 44, 44, 300000013, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270005129, 'sppbots', 'DjNataxa', 57383682, 53, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 16, 16, 300000003, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270005130, 'sppbots', 'BloodKolbasa', 675590, 19, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 53, 53, 300000079, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270005131, 'sppbots', 'Pelmen89', 12395149, 38, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 54, 54, 300000096, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270005132, 'sppbots', 'MaMKuHMoHax', 63907585, 54, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 2, 2, 300000118, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270005133, 'sppbots', 'DashkaKnightRUS', 71201, 11, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 53, 53, 300000013, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270005134, 'sppbots', 'BaJIeHoKKa6aH', 57383682, 53, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 16, 16, 300000112, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270005135, 'sppbots', 'DimonZaycev', 7729999, 34, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 4, 4, 0, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270005136, 'sppbots', 'MadBishopNub', 15422851, 40, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 16, 16, 300000110, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270005137, 'sppbots', 'KrivojRider', 15422851, 40, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 2, 2, 300000102, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270005138, 'sppbots', 'DobryjBarsukF1RE', 1786365, 24, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 1, 1, 300000089, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270005139, 'sppbots', '4eTKuuBuTeK', 1495531, 23, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 45, 45, 300000075, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270005140, 'sppbots', 'ModHbIuMonk', 30764519, 47, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 40, 40, 300000030, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270005141, 'sppbots', 'derzkijdimon', 51262204, 52, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 16, 16, 300000111, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270005142, 'sppbots', 'xXBlackDr3amXx', 146307211, 61, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 110, 110, 300000127, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270005143, 'sppbots', 'PesNub', 13844879, 39, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 54, 54, 300000091, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270005144, 'sppbots', 'FrostT1t4n', 3407873, 28, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 7, 7, 300000084, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270005145, 'sppbots', 'rpo3HbIuIIode3d', 331864, 16, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 0, 0, 300000009, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270005146, 'sppbots', '1r0nMonk', 63907585, 54, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 36, 36, 300000113, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270005147, 'sppbots', 'MuxomorPodezd', 6038, 6, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 0, 0, 300000055, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270005148, 'sppbots', 'PacanSosed', 6038, 6, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 38, 38, 300000002, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270005149, 'sppbots', 'MyxoMopHy6', 0, 1, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 44, 44, 300000052, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270005150, 'sppbots', 'LyutyyOleg', 11066012, 37, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 45, 45, 300000093, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270005151, 'sppbots', 'NaglyyMarmelad', 11066012, 37, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 1, 1, 300000013, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270005152, 'sppbots', 'IIeTpyxaMage2', 1786365, 24, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 26, 26, 0, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270005153, 'sppbots', 'coHHbIuHacT9I94', 25524751, 45, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 55, 55, 300000047, 'PKK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270005154, 'sppbots', 'DashkaPupkin', 5231213, 31, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 11, 11, 300000085, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270005155, 'sppbots', 'FrostStormKing', 931275828, 76, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 88, 88, 300000026, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270005156, 'sppbots', '3auceB03', 331864, 16, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 0, 0, 300000074, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270005157, 'sppbots', 'BoB4uK06', 114038008, 59, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 93, 93, 300000125, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270005158, 'sppbots', 'KolbasaSosed', 1786365, 24, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 1, 1, 300000083, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270005159, 'sppbots', 'cyxapbIIode3d', 101676, 12, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 44, 44, 300000065, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270005160, 'sppbots', 'JIeHKaIIyIIKuH', 1786365, 24, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 4, 4, 300000081, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270005161, 'sppbots', 'Cr4zySuhar', 6038, 6, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 10, 10, 300000036, 'PKK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270005162, 'sppbots', 'JIbIcbIu4e6ypeK', 3407873, 28, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 26, 26, 300000089, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270005163, 'sppbots', 'TuxuuKpacaB4uK', 141192, 13, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 44, 44, 300000065, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270005164, 'sppbots', 'ShashlykDed', 1495531, 23, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 4, 4, 300000049, 'PKK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270005165, 'sppbots', 'WildIce9', 167243291, 62, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 113, 113, 300000124, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270005166, 'sppbots', 'SwiftFangReaper', 308441375, 67, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 103, 103, 0, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270005167, 'sppbots', 'sonnyjnastya', 13844879, 39, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 45, 45, 300000015, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270005168, 'sppbots', 'StaryjStar', 7729999, 34, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 35, 35, 300000098, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270005169, 'sppbots', 'y6uBaTopBaJIeHoK', 606319094, 73, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 113, 113, 300000141, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270005170, 'sppbots', 'ShustryjGrisha', 6812472, 33, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 26, 26, 300000095, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270005171, 'sppbots', 'GrimDeath', 48229, 10, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 10, 10, 300000062, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270005172, 'sppbots', 'xXStormRavenXx', 28049509, 46, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 2, 2, 300000103, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270005173, 'sppbots', 'Slayer86', 3949727, 29, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 4, 4, 300000087, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270005174, 'sppbots', 'CheburekSosed90', 102265326, 58, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 92, 92, 300000126, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270005175, 'sppbots', 'OlegZaycev', 68, 2, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 0, 0, 300000054, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270005176, 'sppbots', 'WildAngel2RUS', 68, 2, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 53, 53, 300000059, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270005177, 'sppbots', 'xXezhuKXx', 57383682, 53, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 24, 24, 300000117, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270005178, 'sppbots', 'JIoIIaTaKeHT', 15422851, 40, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 36, 36, 300000105, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270005179, 'sppbots', 'IronLord', 126509030, 60, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 93, 93, 300000034, 'PKK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270005180, 'sppbots', 'zhupHbIucaH9I', 19423, 8, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 0, 0, 300000069, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270005181, 'sppbots', 'xXPelmenXx', 71201, 11, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 38, 38, 300000069, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270005182, 'sppbots', 'DjMaKcKo3JIoB', 57383682, 53, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 9, 9, 300000115, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270005183, 'sppbots', 'SweetClaw', 2497059, 26, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 39, 39, 300000083, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270005184, 'sppbots', 'madbishophunter', 19423, 8, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 0, 0, 300000041, 'PKK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270005185, 'sppbots', 'svetkavolkov', 539995, 18, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 31, 31, 0, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270005186, 'sppbots', 'SweetTravka', 1242536, 22, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 35, 35, 300000030, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270005187, 'sppbots', 'NightStar', 11287, 7, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 0, 0, 300000056, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270005188, 'sppbots', 'zhupHbIuKa6aH', 1242536, 22, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 7, 7, 0, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270005189, 'sppbots', 'Fr0stLord', 57383682, 53, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 27, 27, 300000111, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270005190, 'sppbots', 'UnylyySuxarSemki', 48229, 10, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 0, 0, 300000063, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270005191, 'sppbots', 'SweetRogue', 18995573, 42, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 9, 9, 0, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270005192, 'sppbots', 'StormSniper', 696376867, 74, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 97, 97, 300000148, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270005193, 'sppbots', '5weetDeath71', 17137002, 41, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 2, 2, 300000009, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270005194, 'sppbots', 'rpo3HbIuKefup', 2118860, 25, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 7, 7, 300000086, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270005195, 'sppbots', 'StormKillerIc3', 63907585, 54, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 12, 12, 300000004, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270005196, 'sppbots', 'JIbIcbIuoJIer88', 13844879, 39, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 26, 26, 300000091, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270005197, 'sppbots', 'CrazyArrow', 387197529, 69, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 113, 113, 300000048, 'PKK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270005198, 'sppbots', 'MrSweetHunter', 2925229, 27, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 22, 22, 300000020, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270005199, 'sppbots', 'rapazhy6uBaTop', 114038008, 59, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 103, 103, 300000127, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270005200, 'sppbots', 'LoneBladeClaw79', 606319094, 73, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 93, 93, 300000019, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270005201, 'sppbots', 'DjHy6', 102265326, 58, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 113, 113, 300000129, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270005202, 'sppbots', 'xXNastyaIvanovXx', 2497059, 26, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 7, 7, 300000088, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270005203, 'sppbots', 'DarkKirpich2006', 51262204, 52, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 8, 8, 0, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270005204, 'sppbots', 'HarJIbIu4uTep', 6812472, 33, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 7, 7, 300000097, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270005205, 'sppbots', 'ShustryjKOT', 387197529, 69, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 90, 90, 300000136, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270005206, 'sppbots', 'KoJI9IHMedBedeB', 696376867, 74, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 113, 113, 300000142, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270005207, 'sppbots', 'CrazyStar', 57383682, 53, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 16, 16, 300000119, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270005208, 'sppbots', 'MamkinDedKOT', 804219972, 75, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 108, 108, 300000149, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270005209, 'sppbots', 'Blood1ce89', 804219972, 75, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 108, 108, 0, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270005210, 'sppbots', 'Ka6aHTaHKucT87', 11287, 7, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 31, 31, 300000059, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270005211, 'sppbots', 'ModHbIuSlayer', 4555766, 30, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 15, 15, 300000025, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270005212, 'sppbots', 'Soul1', 5981539, 32, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 15, 15, 300000095, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270005213, 'sppbots', 'DarkMarmelad', 675590, 19, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 44, 44, 300000075, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270005214, 'sppbots', 'SweetDr3am', 70852742, 55, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 113, 113, 300000113, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270005215, 'sppbots', 'VovanPetroff1997', 429632402, 70, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 102, 102, 300000021, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270005216, 'sppbots', 'SilentStormFire', 0, 1, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 0, 0, 300000054, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270005217, 'sppbots', 'xXtopor2002Xx', 6038, 6, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 10, 10, 300000026, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270005218, 'sppbots', 'GopnikDed75', 13844879, 39, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 26, 26, 300000094, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270005219, 'sppbots', 'GhostSilentW0lf', 363, 3, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 38, 38, 300000006, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270005220, 'sppbots', 'MrFrostSoul', 40153995, 50, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 36, 36, 300000023, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270005221, 'sppbots', 'MaksPupkin1987', 48229, 10, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 53, 53, 300000050, 'PKK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270005222, 'sppbots', 'xoJIodoK4ecHoK6', 6038, 6, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 18, 18, 300000055, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270005223, 'sppbots', 'xXCrazy5layerXx', 426284, 17, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 0, 0, 300000044, 'PKK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270005224, 'sppbots', 'DjZhirnyjZadrot', 2925229, 27, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 11, 11, 300000017, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270005225, 'sppbots', 'grimknightblade', 167243291, 62, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 108, 108, 0, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270005226, 'sppbots', 'NataxaKozlow', 7729999, 34, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 11, 11, 300000018, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270005227, 'sppbots', 'Killer1994', 70852742, 55, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 97, 97, 300000033, 'PKK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270005228, 'sppbots', 'NightBl00dMonk', 8740372, 35, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 26, 26, 300000092, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270005229, 'sppbots', 'BloodMage', 25524751, 45, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 2, 2, 300000019, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270005230, 'sppbots', 'pycJIaHBoJIKoB', 474205751, 71, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 90, 90, 300000137, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270005231, 'sppbots', 'CrazyArrowRUS', 3949727, 29, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 1, 1, 300000003, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270005232, 'sppbots', 'RealnyyWowchik', 48229, 10, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 0, 0, 0, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270005233, 'sppbots', 'Hy64yLLIIIaH', 271973532, 66, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 103, 103, 300000136, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270005234, 'sppbots', 'HitryyKiNG00', 2118860, 25, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 7, 7, 300000089, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270005235, 'sppbots', 'PesEzhik69', 23180442, 44, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 55, 55, 300000010, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270005236, 'sppbots', 'NightDragon2003', 141192, 13, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 44, 44, 300000061, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270005237, 'sppbots', 'kefirr0gu3RUS', 31378, 9, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 53, 53, 300000066, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270005238, 'sppbots', 'ModnyjPetruha', 11287, 7, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 0, 0, 300000037, 'PKK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270005239, 'sppbots', 'KolyanSidorov', 33679907, 48, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 24, 24, 300000022, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270005240, 'sppbots', 'MrShadowRiderRUS', 363, 3, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 0, 0, 300000057, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270005241, 'sppbots', 'TolikSidorOFF', 1786365, 24, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 15, 15, 300000089, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270005242, 'sppbots', '4uTepMyxoMop03', 68, 2, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 31, 31, 300000054, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270005243, 'sppbots', 'ZhirnyyVitek', 11066012, 37, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 1, 1, 300000094, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270005244, 'sppbots', 'ShustryjTopor34', 2497059, 26, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 7, 7, 0, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270005245, 'sppbots', 'VovchikMedvedev', 141192, 13, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 38, 38, 300000046, 'PKK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270005246, 'sppbots', 'DikijArrow02', 71201, 11, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 18, 18, 300000012, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270005247, 'sppbots', 'Knight1992', 9850111, 36, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 22, 22, 300000022, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270005248, 'sppbots', 'IIacaH05', 45524865, 51, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 2, 2, 0, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270005249, 'sppbots', 'TolyanPupkin', 931275828, 76, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 103, 103, 300000146, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270005250, 'sppbots', 'GrimClaw', 429632402, 70, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 113, 113, 300000132, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270005251, 'sppbots', 'xoJIodoK5', 2925229, 27, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 7, 7, 300000081, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270005252, 'sppbots', 'Mrdo6pbIurpuLLIa', 346825235, 68, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 102, 102, 300000138, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270005253, 'sppbots', 'xXD4rkT1tanXx', 2497059, 26, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 26, 26, 300000019, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270005254, 'sppbots', 'KeHTK1ng4', 189363788, 63, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 102, 102, 300000121, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270005255, 'sppbots', 'ToJI9IH25', 212716741, 64, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 97, 97, 300000134, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270005256, 'sppbots', 'evilhuntersniper', 114038008, 59, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 110, 110, 300000129, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270005257, 'sppbots', 'VolkKhomyak', 11287, 7, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 0, 0, 0, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270005258, 'sppbots', 'Demon45', 2925229, 27, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 26, 26, 300000081, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270005259, 'sppbots', 'StormDre4m2007', 31378, 9, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 0, 0, 300000018, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270005260, 'sppbots', '4eTKuuIIeJIbMeHb', 1242536, 22, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 35, 35, 0, 'PKK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270005261, 'sppbots', 'Soul01', 426284, 17, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 25, 25, 300000073, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270005262, 'sppbots', 'coHHbIuSoul88', 6812472, 33, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 15, 15, 300000093, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270005263, 'sppbots', 'StaryjSanek', 12395149, 38, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 4, 4, 300000099, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270005264, 'sppbots', 's1l3ntshaurma95', 101676, 12, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 18, 18, 300000062, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270005265, 'sppbots', 'MaLLIKaStar2', 167243291, 62, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 88, 88, 0, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270005266, 'sppbots', '4eTKuuIIacaHded', 70852742, 55, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 113, 113, 300000116, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270005267, 'sppbots', 'UgarnyjSerega', 429632402, 70, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 117, 117, 300000140, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270005268, 'sppbots', 'DjKpacaB4uK', 212716741, 64, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 93, 93, 300000131, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270005269, 'sppbots', 'TrueRaVEN96', 363, 3, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 10, 10, 0, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270005270, 'sppbots', 'IIeJIbMeHbBlade', 7729999, 34, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 35, 35, 0, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270005271, 'sppbots', 'xitryydashka', 1023775, 21, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 4, 4, 300000073, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270005272, 'sppbots', '3auceB1994', 9850111, 36, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 39, 39, 0, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270005273, 'sppbots', 'HarJIbIuoJIer89', 804219972, 75, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 113, 113, 0, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270005274, 'sppbots', 'MadStormMaster', 675590, 19, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 10, 10, 300000048, 'PKK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270005275, 'sppbots', 'Dragon28', 804219972, 75, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 90, 90, 300000006, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270005276, 'sppbots', 'JIexaBoJIKoB1993', 19423, 8, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 18, 18, 0, 'PKK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270005277, 'sppbots', 'BlackRider', 15422851, 40, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 8, 8, 300000026, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270005278, 'sppbots', 'MrMaMKuHFire41', 606319094, 73, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 108, 108, 0, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270005279, 'sppbots', 'StaryjGrisha88', 23180442, 44, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 24, 24, 0, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270005280, 'sppbots', 'uBaHoB76', 606319094, 73, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 92, 92, 0, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270005281, 'sppbots', 'DjIronSemki', 363, 3, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 25, 25, 300000017, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270005282, 'sppbots', 'LyutyjTolyan89', 308441375, 67, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 117, 117, 300000134, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270005283, 'sppbots', 'Angel18', 2497059, 26, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 39, 39, 300000083, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270005284, 'sppbots', 'Gnom04', 237351413, 65, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 97, 97, 300000138, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270005285, 'sppbots', 'PashaSidoroff', 191452, 14, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 0, 0, 300000061, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270005286, 'sppbots', 'StaryyFaNG', 126509030, 60, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 110, 110, 300000121, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270005287, 'sppbots', 'MadFireArr0w2002', 126509030, 60, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 97, 97, 300000122, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270005288, 'sppbots', 'coHHbIuMapMeJIad', 191452, 14, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 18, 18, 300000062, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270005289, 'sppbots', 'TravkaSkvoznyak', 835854, 20, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 15, 15, 300000074, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270005290, 'sppbots', 'OldPacan5', 539995, 18, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 0, 0, 300000003, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270005291, 'sppbots', 'StormHomyak', 6038, 6, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 0, 0, 300000035, 'PKK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270005292, 'sppbots', 'ZloyClaw85', 68, 2, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 0, 0, 300000054, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270005293, 'sppbots', 'MCZajcEV', 40153995, 50, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 55, 55, 0, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270005294, 'sppbots', 'DjMadBomzh', 11287, 7, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 10, 10, 300000053, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270005295, 'sppbots', 'KoTDream', 0, 1, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 0, 0, 300000053, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270005296, 'sppbots', 'ezhikfire', 1168, 4, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 0, 0, 300000050, 'PKK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270005297, 'sppbots', '4eTKuuJIeHKa5', 191452, 14, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 44, 44, 300000069, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270005298, 'sppbots', 'BeshenyjKolyan5', 3949727, 29, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 35, 35, 300000019, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270005299, 'sppbots', 'roIIHuK4', 271973532, 66, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 103, 103, 0, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270005300, 'sppbots', 'TolyanRogue05', 101676, 12, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 0, 0, 300000062, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270005301, 'sppbots', 'LysyyDashka1998', 11066012, 37, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 11, 11, 0, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270005302, 'sppbots', 'IIacaHKpacaB4uK', 5981539, 32, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 1, 1, 300000099, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270005303, 'sppbots', 'nagibator36', 254327, 15, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 0, 0, 300000065, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270005304, 'sppbots', 'TrueIceRogue', 68, 2, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 0, 0, 300000052, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270005305, 'sppbots', 'CrazyFrostBishop', 141192, 13, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 0, 0, 300000006, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270005306, 'sppbots', 'Killer92RUS', 1168, 4, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 18, 18, 300000056, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270005307, 'sppbots', 'ChushpanShaurma', 126509030, 60, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 117, 117, 300000129, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270005308, 'sppbots', '6op3bIucBeTKa', 167243291, 62, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 88, 88, 300000002, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270005309, 'sppbots', 'do6pbIucTac89', 11066012, 37, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 22, 22, 300000091, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270005310, 'sppbots', 'GrishaKuznecov2', 532692055, 72, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 97, 97, 0, 'PKK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270005311, 'sppbots', '3JIouKa6aH', 11287, 7, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 0, 0, 300000017, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270005312, 'sppbots', 'xXHy6Kefup19Xx', 101676, 12, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 10, 10, 300000066, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270005313, 'sppbots', 'SwiftBishop', 1495531, 23, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 1, 1, 300000077, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270005314, 'sppbots', 'MaMKuH3adpoT', 835854, 20, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 15, 15, 300000010, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270005315, 'sppbots', 'JIIOTbIuorypec', 2925229, 27, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 39, 39, 300000003, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270005316, 'sppbots', 'yrapHbIuKupIOxa', 9850111, 36, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 35, 35, 300000096, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270005317, 'sppbots', 'belyash', 70852742, 55, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 97, 97, 300000120, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270005318, 'sppbots', 'Kolbasa', 80700339, 56, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 110, 110, 0, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270005319, 'sppbots', 'TaHIOxauBaHoB04', 101676, 12, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 25, 25, 300000069, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270005320, 'sppbots', '4eTKuucTeIIaH', 237351413, 65, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 117, 117, 300000136, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270005321, 'sppbots', 'BatyaStar', 141192, 13, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 0, 0, 300000041, 'PKK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270005322, 'sppbots', 'MCMaMKuHBoJIK', 80700339, 56, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 102, 102, 300000130, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270005323, 'sppbots', 'roIIHuK85', 675590, 19, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 38, 38, 0, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270005324, 'sppbots', '3JIourHoM58', 6812472, 33, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 45, 45, 300000031, 'PKK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270005325, 'sppbots', 'BedbMaK', 675590, 19, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 0, 0, 300000077, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270005326, 'sppbots', 'cTac94', 17137002, 41, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 46, 46, 300000104, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270005327, 'sppbots', 'BloodMonk', 3407873, 28, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 7, 7, 300000082, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270005328, 'sppbots', 'PodezdPodezd', 11287, 7, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 0, 0, 0, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270005329, 'sppbots', 'MCWolf91', 3949727, 29, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 4, 4, 0, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270005330, 'sppbots', 'dep3KuuHacT9I96', 539995, 18, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 31, 31, 300000075, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270005331, 'sppbots', 'Dj4uTep', 271973532, 66, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 97, 97, 300000031, 'PKK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270005332, 'sppbots', 'Ded38', 45524865, 51, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 40, 40, 300000026, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270005333, 'sppbots', 'Tuxuucyxapb94', 426284, 17, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 25, 25, 300000076, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270005334, 'sppbots', 'Kefup32', 606319094, 73, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 90, 90, 300000146, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270005335, 'sppbots', 'OldKnight', 426284, 17, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 31, 31, 300000030, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270005336, 'sppbots', 'cyxapb3adpoT', 12395149, 38, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 7, 7, 300000096, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270005337, 'sppbots', 'fang2002', 191452, 14, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 10, 10, 300000066, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270005338, 'sppbots', 'CrazyIce7', 19423, 8, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 25, 25, 300000061, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270005339, 'sppbots', 'BloodOldLord2006', 1242536, 22, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 22, 22, 300000075, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270005340, 'sppbots', 'YurecKozlovRUS', 23180442, 44, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 2, 2, 300000110, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270005341, 'sppbots', '6eLLIeHbIuHunter', 429632402, 70, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 97, 97, 300000131, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270005342, 'sppbots', 'RealnyyTravka', 3407873, 28, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 22, 22, 300000086, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270005343, 'sppbots', 'PacanKrasavchik', 12395149, 38, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 7, 7, 300000096, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270005344, 'sppbots', 'BaJIeHoKJIoIIaTa', 91162131, 57, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 113, 113, 300000017, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270005345, 'sppbots', 'petrowichivanov', 1786365, 24, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 1, 1, 0, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270005346, 'sppbots', 'Stas9', 71201, 11, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 0, 0, 300000066, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270005347, 'sppbots', 'ZhirnyjMaster', 2884, 5, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 10, 10, 300000058, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270005348, 'sppbots', 'UgarnyjBaton', 696376867, 74, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 92, 92, 300000143, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270005349, 'sppbots', 'ZloyPes', 426284, 17, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 0, 0, 300000002, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270005350, 'sppbots', 'sosedsemki', 13844879, 39, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 54, 54, 300000100, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270005351, 'sppbots', 'Medvedev86', 102265326, 58, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 103, 103, 300000126, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270005352, 'sppbots', 'StormArrow95', 11066012, 37, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 15, 15, 300000094, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270005353, 'sppbots', 'Bl4ckPelmen', 15422851, 40, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 12, 12, 0, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270005354, 'sppbots', 'WildLord96', 189363788, 63, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 110, 110, 300000128, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270005355, 'sppbots', '3JIou4yMa1992RUS', 71201, 11, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 0, 0, 300000003, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270005356, 'sppbots', 'do6pbIuezhuK', 331864, 16, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 31, 31, 300000018, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270005357, 'sppbots', 'ToporBarsuk', 539995, 18, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 0, 0, 300000078, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270005358, 'sppbots', 'LoneZadrot', 9850111, 36, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 39, 39, 300000095, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270005359, 'sppbots', 'cudopoB93', 11287, 7, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 0, 0, 300000014, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270005360, 'sppbots', 'KupIOxaR4v3n', 126509030, 60, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 103, 103, 300000124, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270005361, 'sppbots', 'TanyukhaPetroff', 426284, 17, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 38, 38, 300000021, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270005362, 'sppbots', 'xX4yMa4uTepXx', 5981539, 32, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 22, 22, 0, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270005363, 'sppbots', 'EvilKnight1988', 539995, 18, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 0, 0, 300000076, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270005364, 'sppbots', 'Slayer1995', 1023775, 21, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 1, 1, 300000078, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270005365, 'sppbots', 'MrTerminatorNub5', 4555766, 30, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 7, 7, 300000011, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270005366, 'sppbots', 'xXBlackKnightXx', 237351413, 65, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 103, 103, 300000131, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270005367, 'sppbots', 'DjBac9I1', 68, 2, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 10, 10, 300000016, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270005368, 'sppbots', 'MCAngel7', 11066012, 37, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 26, 26, 300000026, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270005369, 'sppbots', 'CrazyRaven', 696376867, 74, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 103, 103, 300000149, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270005370, 'sppbots', 'crazystormsl4yer', 271973532, 66, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 93, 93, 300000138, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270005371, 'sppbots', 'Dark5niperKiller', 30764519, 47, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 27, 27, 300000107, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270005372, 'sppbots', 'Chuma14', 146307211, 61, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 117, 117, 300000032, 'PKK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270005373, 'sppbots', 'Rogue61', 7729999, 34, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 11, 11, 300000096, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270005374, 'sppbots', 'MCFrostFang', 40153995, 50, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 24, 24, 300000037, 'PKK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270005375, 'sppbots', 'KompotTapok68', 696376867, 74, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 117, 117, 0, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270005376, 'sppbots', 'KentKompot', 804219972, 75, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 92, 92, 300000141, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270005377, 'sppbots', 'BloodFro5tKing02', 7729999, 34, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 1, 1, 300000030, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270005378, 'sppbots', 'GrimDream', 2118860, 25, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 54, 54, 300000081, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270005379, 'sppbots', 'BloodStar2005', 23180442, 44, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 36, 36, 300000102, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270005380, 'sppbots', 'HarJIbIuIIaLLIa', 70852742, 55, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 113, 113, 300000112, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270005381, 'sppbots', 'MelkijStasPetrOV', 804219972, 75, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 108, 108, 300000141, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270005382, 'sppbots', 'TanyuxaKozlov', 126509030, 60, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 93, 93, 0, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270005383, 'sppbots', 'TankistKirpich', 1495531, 23, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 35, 35, 300000076, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270005384, 'sppbots', 'BuTeK81', 696376867, 74, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 108, 108, 300000148, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270005385, 'sppbots', 'dep3KuuBuTeK96', 33679907, 48, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 9, 9, 300000120, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270005386, 'sppbots', 'fedop4', 1242536, 22, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 4, 4, 300000014, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270005387, 'sppbots', 'xXDarkHunterXx', 189363788, 63, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 108, 108, 300000127, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270005388, 'sppbots', 'ModnyjLexa', 6038, 6, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 18, 18, 300000010, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270005389, 'sppbots', 'LysyjGarazhMonah', 9850111, 36, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 11, 11, 300000046, 'PKK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270005390, 'sppbots', 'True4rrow', 23180442, 44, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 46, 46, 300000035, 'PKK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270005391, 'sppbots', 'SweetDe4thRUS', 429632402, 70, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 110, 110, 300000003, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270005392, 'sppbots', 'MamkinBomzh', 835854, 20, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 22, 22, 300000010, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270005393, 'sppbots', 'StormMaster2005', 114038008, 59, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 94, 94, 300000129, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270005394, 'sppbots', 'DedGarazh', 101676, 12, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 10, 10, 0, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270005395, 'sppbots', '5w1ftD3mon', 141192, 13, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 0, 0, 300000014, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270005396, 'sppbots', 'MamkinNataha85', 237351413, 65, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 110, 110, 300000137, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270005397, 'sppbots', 'Kot2004', 331864, 16, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 25, 25, 300000018, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270005398, 'sppbots', 'DobryjLenka', 11287, 7, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 31, 31, 300000059, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270005399, 'sppbots', 'PetrovichD3ath5', 12395149, 38, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 54, 54, 300000034, 'PKK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270005400, 'sppbots', 'wovchik', 13844879, 39, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 15, 15, 300000092, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270005401, 'sppbots', 'Lon3Slayer70', 346825235, 68, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 97, 97, 300000133, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270005402, 'sppbots', 'MCIce90', 539995, 18, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 0, 0, 300000074, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270005403, 'sppbots', 'ModHbIuBoBaH01', 189363788, 63, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 94, 94, 0, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270005404, 'sppbots', 'FedorKuznecov89', 675590, 19, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 10, 10, 300000075, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270005405, 'sppbots', 'SweetFrostKiller', 331864, 16, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 10, 10, 300000073, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270005406, 'sppbots', 'CrazyHunter', 30764519, 47, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 9, 9, 300000110, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270005407, 'sppbots', 'Mashka8', 191452, 14, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 44, 44, 0, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270005408, 'sppbots', 'ezhik89', 3407873, 28, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 39, 39, 300000023, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270005409, 'sppbots', '6oMzhHy6', 2884, 5, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 44, 44, 300000058, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270005410, 'sppbots', 'cBeTKaKy3HecoB', 141192, 13, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 38, 38, 300000069, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270005411, 'sppbots', 'yHbIJIbIucTeIIaH', 146307211, 61, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 103, 103, 300000127, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270005412, 'sppbots', 'xXKy3HecoBXx', 28049509, 46, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 40, 40, 300000107, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270005413, 'sppbots', 'DjStormChesnok', 80700339, 56, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 94, 94, 300000124, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270005414, 'sppbots', 'StaryjSanya94', 36806133, 49, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 12, 12, 300000112, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270005415, 'sppbots', 'xXTru3KnightXx', 1495531, 23, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 45, 45, 300000077, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270005416, 'sppbots', 'gnomkot', 9850111, 36, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 4, 4, 0, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270005417, 'sppbots', '3JIouBoBaH90', 474205751, 71, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 92, 92, 300000139, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270005418, 'sppbots', 'NightTrueClaw', 11066012, 37, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 39, 39, 300000092, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270005419, 'sppbots', 'xXMaMKuHJIexaXx', 28049509, 46, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 40, 40, 300000003, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270005420, 'sppbots', 'MCModnyyTankist', 1023775, 21, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 4, 4, 0, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270005421, 'sppbots', 'Sw1ftClaw', 191452, 14, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 18, 18, 0, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270005422, 'sppbots', 'BloodPodezd', 11287, 7, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 0, 0, 300000052, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270005423, 'sppbots', 'MadBladeDeath69', 429632402, 70, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 108, 108, 300000010, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270005424, 'sppbots', 'GrimMaster', 804219972, 75, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 94, 94, 300000024, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270005425, 'sppbots', 'BloodDeathMage2', 254327, 15, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 18, 18, 300000014, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270005426, 'sppbots', 'Wolf2002', 80700339, 56, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 97, 97, 0, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270005427, 'sppbots', 'cTapbIuJIeHKa03', 4555766, 30, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 26, 26, 300000022, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270005428, 'sppbots', 'caH9IKo3JIoB04', 45524865, 51, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 5, 5, 300000111, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270005429, 'sppbots', 'NastyaMedwedev', 102265326, 58, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 110, 110, 300000122, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270005430, 'sppbots', 'LoneGhostKaratel', 68, 2, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 10, 10, 300000052, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270005431, 'sppbots', 'FrostClaw', 675590, 19, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 38, 38, 300000074, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270005432, 'sppbots', 'IIacaHy6uBaTop', 31378, 9, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 44, 44, 0, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270005433, 'sppbots', 'GhostArrow8', 17137002, 41, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 46, 46, 300000014, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270005434, 'sppbots', 'GrimMage88', 539995, 18, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 0, 0, 300000030, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270005435, 'sppbots', 'rapazhTpaBKa', 2118860, 25, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 15, 15, 300000016, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270005436, 'sppbots', 'NightBlackHunt3r', 2118860, 25, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 7, 7, 300000086, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270005437, 'sppbots', 'MrZajcev', 696376867, 74, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 94, 94, 300000038, 'PKK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270005438, 'sppbots', 'TuMypKo3JIoB4', 11287, 7, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 0, 0, 300000057, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270005439, 'sppbots', 'xXMyxoMopWolfXx', 1168, 4, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 18, 18, 300000015, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270005440, 'sppbots', 'SilentKn1gHT', 51262204, 52, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 8, 8, 300000113, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270005441, 'sppbots', 'MCLexaKuznecOFF', 6038, 6, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 18, 18, 300000058, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270005442, 'sppbots', 'DobryyKefir33', 931275828, 76, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 93, 93, 300000145, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270005443, 'sppbots', 'BratokKot', 11287, 7, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 10, 10, 300000051, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270005444, 'sppbots', 'TihiyDiman', 33679907, 48, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 55, 55, 300000015, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270005445, 'sppbots', 'Vitek97', 2884, 5, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 0, 0, 300000019, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270005446, 'sppbots', 'BelyashKent', 101676, 12, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 10, 10, 300000069, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270005447, 'sppbots', 'KotWolf', 70852742, 55, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 108, 108, 300000014, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270005448, 'sppbots', 'DarkKing', 6038, 6, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 25, 25, 0, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270005449, 'sppbots', 'LenkaRogue', 19423, 8, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 0, 0, 300000061, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270005450, 'sppbots', 'IronRider', 5981539, 32, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 26, 26, 300000091, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270005451, 'sppbots', 'WovchikKnight', 8740372, 35, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 7, 7, 300000030, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270005452, 'sppbots', 'KolbasaValenok97', 146307211, 61, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 117, 117, 300000039, 'PKK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270005453, 'sppbots', 'TrueClaw', 68, 2, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 0, 0, 300000058, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270005454, 'sppbots', 'LyutyyPetrovich', 308441375, 67, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 94, 94, 300000018, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270005455, 'sppbots', 'duMaH93', 387197529, 69, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 97, 97, 300000134, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270005456, 'sppbots', 'xXceperaFireXx', 9850111, 36, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 54, 54, 300000095, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270005457, 'sppbots', 'BoJIKoBRUS', 363, 3, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 0, 0, 300000016, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270005458, 'sppbots', 'MaKc3auceB', 68, 2, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 25, 25, 300000021, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270005459, 'sppbots', 'Ivanov67RUS', 9850111, 36, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 26, 26, 300000092, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270005460, 'sppbots', '4yLLIIIaHMyxoMop', 33679907, 48, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 2, 2, 300000112, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270005461, 'sppbots', 'KhitryyVitek93', 11287, 7, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 10, 10, 300000051, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270005462, 'sppbots', 'DarkIce2', 63907585, 54, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 5, 5, 300000115, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270005463, 'sppbots', 'OldDragon2002', 346825235, 68, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 108, 108, 300000136, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270005464, 'sppbots', 'SanekKuznecow', 9850111, 36, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 39, 39, 300000015, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270005465, 'sppbots', 'groznyjmashka', 101676, 12, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 10, 10, 300000019, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270005466, 'sppbots', 'RealnyjNataha9', 101676, 12, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 53, 53, 300000061, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270005467, 'sppbots', 'GroznyyHunter', 1495531, 23, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 7, 7, 300000034, 'PKK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270005468, 'sppbots', 'St0rmSlayer', 102265326, 58, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 93, 93, 300000127, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270005469, 'sppbots', 'KpuBouToIIop', 675590, 19, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 53, 53, 300000022, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270005470, 'sppbots', 'OldDre4m9', 5981539, 32, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 11, 11, 300000048, 'PKK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270005471, 'sppbots', 'RzhavyjRoGUE', 19423, 8, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 0, 0, 0, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270005472, 'sppbots', 'JIIOTbIuIIaLLIa', 146307211, 61, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 117, 117, 300000125, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270005473, 'sppbots', 'rpo3HbIuduMaH03', 23180442, 44, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 46, 46, 0, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270005474, 'sppbots', 'pzhaBbIuMaKc3', 31378, 9, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 31, 31, 300000061, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270005475, 'sppbots', 'peaJIbHbIuSlayer', 8740372, 35, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 7, 7, 300000097, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270005476, 'sppbots', 'MrGrimKnight', 114038008, 59, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 113, 113, 300000123, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270005477, 'sppbots', 'MCProstoKiller', 8740372, 35, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 39, 39, 0, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270005478, 'sppbots', 'GhostRogue2003', 31378, 9, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 38, 38, 0, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270005479, 'sppbots', 'caH9I47RUS', 48229, 10, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 25, 25, 0, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270005480, 'sppbots', 'NightReaper4', 91162131, 57, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 113, 113, 300000121, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270005481, 'sppbots', 'SwiftDeathCl4w3', 0, 1, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 44, 44, 300000059, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270005482, 'sppbots', 'roJIodHbIuKoT', 254327, 15, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 0, 0, 300000036, 'PKK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270005483, 'sppbots', '6aToH35', 13844879, 39, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 35, 35, 300000093, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270005484, 'sppbots', 'GhostKing', 17137002, 41, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 9, 9, 300000040, 'PKK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270005485, 'sppbots', 'zheKa1988', 167243291, 62, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 92, 92, 0, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270005486, 'sppbots', 'CrazyTitan9', 31378, 9, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 0, 0, 300000015, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270005487, 'sppbots', 'JIbIcbIuMaster', 1495531, 23, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 7, 7, 300000022, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270005488, 'sppbots', 'MedoedTravka', 12395149, 38, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 54, 54, 300000100, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270005489, 'sppbots', '3adpoTRider', 15422851, 40, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 12, 12, 300000107, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270005490, 'sppbots', 'OldTiTAN4', 13844879, 39, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 7, 7, 300000093, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270005491, 'sppbots', 'StaryjBelyash', 19423, 8, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 0, 0, 300000009, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270005492, 'sppbots', 'PesGnom', 101676, 12, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 53, 53, 0, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270005493, 'sppbots', 'NubMuhomor', 101676, 12, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 10, 10, 300000066, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270005494, 'sppbots', 'Fr0stM0nk', 45524865, 51, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 2, 2, 300000035, 'PKK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270005495, 'sppbots', '4uTep87', 1786365, 24, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 7, 7, 300000087, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270005496, 'sppbots', 'WildDemonDeath', 3407873, 28, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 39, 39, 300000024, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270005497, 'sppbots', 'xXIrka2007Xx', 36806133, 49, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 24, 24, 300000002, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270005498, 'sppbots', 'SwiftDeath91', 539995, 18, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 10, 10, 300000030, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270005499, 'sppbots', 'SwiftSniper', 3407873, 28, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 26, 26, 300000090, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270005500, 'sppbots', 'WolkOV78', 254327, 15, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 44, 44, 300000065, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270005501, 'sppbots', 'IronRider3', 101676, 12, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 0, 0, 300000010, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270005502, 'sppbots', 'De4th59', 70852742, 55, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 94, 94, 300000003, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270005503, 'sppbots', 'GrimMage87', 426284, 17, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 53, 53, 300000032, 'PKK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270005504, 'sppbots', 'MeJIKuuHy6IIec', 1168, 4, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 31, 31, 300000057, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270005505, 'sppbots', 'BloodGhostMoNK', 191452, 14, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 31, 31, 0, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270005506, 'sppbots', 'NightMage8', 0, 1, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 0, 0, 0, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270005507, 'sppbots', 'Gh05tEzhik', 13844879, 39, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 7, 7, 300000095, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270005508, 'sppbots', 'DerzkijKaban86', 31378, 9, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 44, 44, 0, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270005509, 'sppbots', 'NatahaIvanOFF', 2884, 5, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 53, 53, 300000050, 'PKK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270005510, 'sppbots', 'MeJIKuuMyxoMop90', 1168, 4, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 25, 25, 0, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270005511, 'sppbots', 'NightRogue1', 33679907, 48, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 12, 12, 0, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270005512, 'sppbots', 'IIecKapaTeJIb', 102265326, 58, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 90, 90, 300000127, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270005513, 'sppbots', 'xXcyxapbKa6aHXx', 141192, 13, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 10, 10, 300000062, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270005514, 'sppbots', 'IOpecFang07', 254327, 15, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 0, 0, 300000061, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270005515, 'sppbots', '4eTKuuSlayer', 7729999, 34, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 35, 35, 300000091, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270005516, 'sppbots', 'MaksMedveDEV9', 237351413, 65, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 97, 97, 300000010, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270005517, 'sppbots', 'N1ghtFire', 102265326, 58, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 94, 94, 300000022, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270005518, 'sppbots', 'cTapbIudedxoM9IK', 70852742, 55, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 103, 103, 0, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270005519, 'sppbots', 'LoneSwiftIce', 532692055, 72, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 88, 88, 300000147, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270005520, 'sppbots', 'lyutyyice80', 2118860, 25, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 15, 15, 300000022, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270005521, 'sppbots', 'BelyashKaratel', 2118860, 25, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 1, 1, 300000087, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270005522, 'sppbots', 'SwiftBloodRaven', 5981539, 32, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 7, 7, 300000097, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270005523, 'sppbots', 'MrMage95', 5981539, 32, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 11, 11, 300000098, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270005524, 'sppbots', 'ModHbIuMaLLIKa', 9850111, 36, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 22, 22, 300000091, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270005525, 'sppbots', 'NubKompot97', 31378, 9, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 38, 38, 300000065, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270005526, 'sppbots', 'Cr4zyRogue73', 6812472, 33, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 45, 45, 300000100, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270005527, 'sppbots', 'BodryjPodezd', 31378, 9, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 25, 25, 300000014, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270005528, 'sppbots', 'WildDemon99', 2925229, 27, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 7, 7, 300000037, 'PKK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270005529, 'sppbots', 'MrFrostBlade', 23180442, 44, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 36, 36, 300000105, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270005530, 'sppbots', 'DarkSniperKnight', 8740372, 35, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 11, 11, 300000007, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270005531, 'sppbots', 'StaryyVitek06', 25524751, 45, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 16, 16, 300000038, 'PKK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270005532, 'sppbots', 'BlackKing97', 696376867, 74, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 92, 92, 0, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270005533, 'sppbots', 'GrimDeath6', 25524751, 45, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 9, 9, 300000022, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270005534, 'sppbots', 'DjN1ghtRav3n', 21007103, 43, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 27, 27, 0, 'PKK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270005535, 'sppbots', 'daLLIKaKy3HecoB', 1242536, 22, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 39, 39, 300000078, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270005536, 'sppbots', 'Tru3DemonSlaYER', 91162131, 57, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 92, 92, 300000129, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270005537, 'sppbots', 'DikiyKefir02', 191452, 14, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 31, 31, 300000061, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270005538, 'sppbots', 'Hy66apcyK', 5231213, 31, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 54, 54, 300000082, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270005539, 'sppbots', 'TolikZajcev05', 33679907, 48, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 27, 27, 0, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270005540, 'sppbots', 'SweetK0t95', 429632402, 70, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 102, 102, 300000137, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270005541, 'sppbots', 'EzhikRaven', 31378, 9, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 38, 38, 300000062, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270005542, 'sppbots', 'ModnyyNastya4', 11287, 7, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 31, 31, 300000051, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270005543, 'sppbots', 'XitryyKnight78', 45524865, 51, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 40, 40, 300000018, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270005544, 'sppbots', 'BodryyChiter', 23180442, 44, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 24, 24, 300000109, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270005545, 'sppbots', 'TrueStarRUS', 539995, 18, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 10, 10, 300000076, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270005546, 'sppbots', 'PashaKuznecOFF', 11066012, 37, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 35, 35, 300000032, 'PKK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270005547, 'sppbots', 'MedoedBoJIK1998', 80700339, 56, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 110, 110, 300000129, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270005548, 'sppbots', '6odpbIuaHdpIOxa', 696376867, 74, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 94, 94, 300000149, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270005549, 'sppbots', 'xXMadBish0p58Xx', 9850111, 36, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 45, 45, 300000093, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270005550, 'sppbots', 'nagibatorsoul', 237351413, 65, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 103, 103, 300000022, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270005551, 'sppbots', 'ModnyyKent2', 13844879, 39, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 22, 22, 300000096, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270005552, 'sppbots', 'TihiyKefir97', 48229, 10, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 10, 10, 0, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270005553, 'sppbots', 'BlackStar03', 1242536, 22, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 39, 39, 300000073, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270005554, 'sppbots', 'rapazhHy6', 2925229, 27, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 26, 26, 300000086, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270005555, 'sppbots', '3JIouIIacaH12', 212716741, 64, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 88, 88, 300000135, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270005556, 'sppbots', 'FrostTerminator', 91162131, 57, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 90, 90, 300000006, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270005557, 'sppbots', 'WildSweetAngel85', 1023775, 21, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 4, 4, 300000076, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270005558, 'sppbots', 'Lopata1', 19423, 8, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 25, 25, 300000011, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270005559, 'sppbots', 'JIexaKy3HecoB', 101676, 12, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 10, 10, 300000022, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270005560, 'sppbots', 'BomzhDed88', 426284, 17, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 0, 0, 300000073, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270005561, 'sppbots', 'MelkiyBaton', 57383682, 53, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 55, 55, 300000120, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270005562, 'sppbots', 'MeJIKuuaHdpIOxa', 48229, 10, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 10, 10, 300000065, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270005563, 'sppbots', 'SanyaSidorOFF', 426284, 17, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 44, 44, 300000077, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270005564, 'sppbots', 'DjKolYAN88', 1495531, 23, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 26, 26, 300000078, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270005565, 'sppbots', 'OldHunter5', 2884, 5, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 31, 31, 300000054, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270005566, 'sppbots', 'nagibatorclaw45', 126509030, 60, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 88, 88, 300000033, 'PKK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270005567, 'sppbots', '6odpbIuKoMIIoT', 308441375, 67, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 88, 88, 300000137, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270005568, 'sppbots', 'GolodnyjDasHKA93', 0, 1, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 10, 10, 0, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270005569, 'sppbots', 'Mage92', 36806133, 49, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 24, 24, 300000119, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270005570, 'sppbots', '6eLLIeHbIuClaw', 146307211, 61, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 113, 113, 300000127, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270005571, 'sppbots', 'XomyakBratOK8', 2925229, 27, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 22, 22, 300000022, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270005572, 'sppbots', 'zadrotlopata', 36806133, 49, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 27, 27, 300000118, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270005573, 'sppbots', 'TuxuuKoMIIoT', 71201, 11, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 10, 10, 300000039, 'PKK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270005574, 'sppbots', 'TpaBKa3', 0, 1, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 0, 0, 300000054, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270005575, 'sppbots', 'GrimPES', 675590, 19, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 31, 31, 300000018, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270005576, 'sppbots', 'SvetKA01', 36806133, 49, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 12, 12, 300000117, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270005577, 'sppbots', 'StormM4g3RUS', 429632402, 70, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 117, 117, 300000135, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270005578, 'sppbots', 'ModnyjMastER', 18995573, 42, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 9, 9, 0, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270005579, 'sppbots', 'xuTpbIurpuLLIa', 68, 2, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 18, 18, 300000059, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270005580, 'sppbots', 'HarJIbIuSlayer5', 212716741, 64, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 110, 110, 300000033, 'PKK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270005581, 'sppbots', 'IrkaVolkov', 0, 1, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 0, 0, 300000036, 'PKK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270005582, 'sppbots', 'ModHbIu3adpoT', 331864, 16, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 44, 44, 0, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270005583, 'sppbots', 'EvilHunterRaven', 1242536, 22, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 11, 11, 300000073, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270005584, 'sppbots', 'ModHbIuSlayerRUS', 254327, 15, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 18, 18, 300000065, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270005585, 'sppbots', '6aToHKa6aH', 2884, 5, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 53, 53, 0, 'PKK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270005586, 'sppbots', 'MeJIKuucaH9I89', 48229, 10, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 0, 0, 300000062, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270005587, 'sppbots', 'DarkStormKnight', 675590, 19, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 18, 18, 300000043, 'PKK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270005588, 'sppbots', 'StormChesnok99', 70852742, 55, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 94, 94, 300000006, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270005589, 'sppbots', 'LLIycTpbIuIIec', 0, 1, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 10, 10, 300000059, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270005590, 'sppbots', 'IronGrimLord', 31378, 9, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 10, 10, 0, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270005591, 'sppbots', 'BratokOgurec', 363, 3, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 53, 53, 300000009, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270005592, 'sppbots', 'y6uBaTopKefup1', 101676, 12, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 38, 38, 0, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270005593, 'sppbots', 'EvilMuxoMOR', 429632402, 70, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 93, 93, 300000136, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270005594, 'sppbots', 'do6pbIuMoHax', 114038008, 59, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 103, 103, 300000002, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270005595, 'sppbots', 'xuTpbIuTaHKucT', 0, 1, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 25, 25, 300000002, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270005596, 'sppbots', 'DimonSmirnoff', 48229, 10, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 10, 10, 300000007, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270005597, 'sppbots', 'Xolodok1988', 254327, 15, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 10, 10, 0, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270005598, 'sppbots', 'KoJI9IHIIeTpoB8', 11066012, 37, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 26, 26, 300000022, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270005599, 'sppbots', 'BloodBl4de1998', 57383682, 53, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 5, 5, 300000043, 'PKK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270005600, 'sppbots', 'UnylyjXomyak', 3949727, 29, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 11, 11, 300000082, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270005601, 'sppbots', 'pycJIaHcMupHoB91', 167243291, 62, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 88, 88, 300000124, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270005602, 'sppbots', 'oldtapok94', 19423, 8, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 31, 31, 0, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270005603, 'sppbots', 'ceMKu49', 1242536, 22, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 11, 11, 0, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270005604, 'sppbots', 'N1ghtRaven2004', 57383682, 53, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 8, 8, 300000119, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270005605, 'sppbots', 'NightW1ldSTAR02', 191452, 14, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 0, 0, 300000062, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270005606, 'sppbots', '4ecHoK1987', 101676, 12, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 38, 38, 0, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270005607, 'sppbots', 'TrueB1shop', 146307211, 61, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 108, 108, 0, 'PKK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270005608, 'sppbots', 'Hunter1988', 6812472, 33, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 22, 22, 300000098, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270005609, 'sppbots', 'NagibatorRaven1', 1168, 4, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 0, 0, 300000052, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270005610, 'sppbots', 'GhostRogueSlay3r', 931275828, 76, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 93, 93, 300000003, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270005611, 'sppbots', 'Slayer98', 63907585, 54, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 5, 5, 300000116, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270005612, 'sppbots', 'IIec04', 474205751, 71, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 93, 93, 300000133, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270005613, 'sppbots', 'xXMedBedeBXx', 31378, 9, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 10, 10, 300000045, 'PKK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270005614, 'sppbots', 'JIbIcbIucTeIIaH', 101676, 12, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 10, 10, 0, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270005615, 'sppbots', 'NaglyyWovAN', 387197529, 69, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 88, 88, 300000140, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270005616, 'sppbots', 'UnylyyNastya56', 426284, 17, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 0, 0, 300000075, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270005617, 'sppbots', 'Frost5n1per06', 3949727, 29, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 39, 39, 300000085, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270005618, 'sppbots', 'sanekpetroff1998', 25524751, 45, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 24, 24, 300000108, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270005619, 'sppbots', 'zhupHbIuIIaLLIa', 1786365, 24, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 7, 7, 300000082, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270005620, 'sppbots', '6odpbIuxoM9IK', 12395149, 38, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 45, 45, 300000093, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270005621, 'sppbots', 'chetkiyskvoznyak', 101676, 12, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 10, 10, 0, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270005622, 'sppbots', 'TrueBishop', 70852742, 55, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 103, 103, 300000045, 'PKK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270005623, 'sppbots', 'IIpocToMoHax2', 2118860, 25, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 7, 7, 300000088, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270005624, 'sppbots', 'KupIIu494', 363, 3, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 10, 10, 300000051, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270005625, 'sppbots', 'rpuLLIaBoJIKoB16', 308441375, 67, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 117, 117, 300000135, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270005626, 'sppbots', 'coHHbIuezhuK', 19423, 8, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 44, 44, 300000062, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270005627, 'sppbots', 'DikiyVitekHunter', 474205751, 71, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 102, 102, 300000135, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270005628, 'sppbots', 'zhupHbIuHunter04', 31378, 9, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 0, 0, 0, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270005629, 'sppbots', 'AndryuxaMedvedev', 5231213, 31, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 1, 1, 300000081, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270005630, 'sppbots', 'MyxoMopMast3r7', 387197529, 69, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 93, 93, 300000007, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270005631, 'sppbots', 'Volk21', 6038, 6, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 31, 31, 300000054, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270005632, 'sppbots', 'DarkKingZadrot97', 11066012, 37, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 22, 22, 300000097, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270005633, 'sppbots', 'FrostNightFang', 1023775, 21, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 1, 1, 0, 'PKK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270005634, 'sppbots', 'W1ldWolfT1t4n', 80700339, 56, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 97, 97, 300000128, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270005635, 'sppbots', 'VovanSmirnOFF', 1495531, 23, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 15, 15, 0, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270005636, 'sppbots', '5tormRaven8', 2497059, 26, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 4, 4, 300000081, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270005637, 'sppbots', 'DjHacT9IBoJIKoB', 126509030, 60, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 113, 113, 300000122, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270005638, 'sppbots', 'SvetkaKozlOFF', 45524865, 51, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 40, 40, 300000118, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270005639, 'sppbots', 'BlackAngel', 346825235, 68, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 93, 93, 300000011, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270005640, 'sppbots', 'Arrow05', 126509030, 60, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 90, 90, 300000022, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270005641, 'sppbots', 'GrimChesnok', 57383682, 53, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 27, 27, 300000033, 'PKK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270005642, 'sppbots', 'Hy6Medoed', 254327, 15, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 10, 10, 0, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270005643, 'sppbots', 'RuslanIvanOFF', 1786365, 24, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 26, 26, 300000087, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270005644, 'sppbots', 'xXVolkXx', 11287, 7, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 10, 10, 300000058, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270005645, 'sppbots', 'cTapbIucoced', 191452, 14, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 18, 18, 300000019, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270005646, 'sppbots', 'StaryyKholodok', 80700339, 56, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 90, 90, 300000130, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270005647, 'sppbots', 'SonnyyPasha', 23180442, 44, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 5, 5, 300000109, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270005648, 'sppbots', '4yLLIIIaHKupIIu4', 331864, 16, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 0, 0, 0, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270005649, 'sppbots', 'IIecKnight3', 426284, 17, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 10, 10, 300000048, 'PKK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270005650, 'sppbots', 'frostbishop', 191452, 14, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 31, 31, 0, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270005651, 'sppbots', 'ToJI9IH3auceB', 2497059, 26, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 4, 4, 300000083, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270005652, 'sppbots', 'kolyan79', 48229, 10, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 31, 31, 0, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270005653, 'sppbots', 'FrostRiderStar', 532692055, 72, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 113, 113, 300000149, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270005654, 'sppbots', 'SweetHunterBlade', 31378, 9, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 44, 44, 300000062, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270005655, 'sppbots', 'StormDream52', 429632402, 70, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 94, 94, 0, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270005656, 'sppbots', 'Lon3TitanKiller', 1786365, 24, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 4, 4, 300000081, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270005657, 'sppbots', 'VitekBlade', 31378, 9, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 31, 31, 300000016, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270005658, 'sppbots', 'Dream01', 18995573, 42, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 36, 36, 300000024, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270005659, 'sppbots', '6eJI9ILLIIIacaH', 101676, 12, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 38, 38, 0, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270005660, 'sppbots', 'y6uBaToprHoM', 167243291, 62, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 93, 93, 300000127, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270005661, 'sppbots', 'GrimTerminator', 2884, 5, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 53, 53, 300000051, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270005662, 'sppbots', 'UnylyyVitek76', 532692055, 72, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 110, 110, 300000147, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270005663, 'sppbots', 'BodryjTolik', 31378, 9, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 25, 25, 0, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270005664, 'sppbots', 'fedop3auceB', 387197529, 69, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 113, 113, 300000137, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270005665, 'sppbots', 'coHHbIuJIoIIaTa', 696376867, 74, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 88, 88, 300000143, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270005666, 'sppbots', 'GrimGhostPes', 17137002, 41, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 8, 8, 300000108, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270005667, 'sppbots', 'JIeHKaKo3JIoB', 91162131, 57, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 113, 113, 300000122, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270005668, 'sppbots', 'xXzheKaXx', 191452, 14, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 0, 0, 0, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270005669, 'sppbots', 'KefupMapMeJIad', 25524751, 45, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 36, 36, 300000022, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270005670, 'sppbots', 'Star99', 48229, 10, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 25, 25, 0, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270005671, 'sppbots', 'GhostChushpan', 6812472, 33, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 39, 39, 300000092, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270005672, 'sppbots', 'xuTpbIuoJIerSoul', 696376867, 74, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 117, 117, 300000024, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270005673, 'sppbots', 'TuxuuIIode3d', 3407873, 28, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 1, 1, 300000018, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270005674, 'sppbots', 'ceMKuKoMIIoT1995', 212716741, 64, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 94, 94, 300000136, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270005675, 'sppbots', 'Blo0dDemonBishop', 1168, 4, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 0, 0, 300000054, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270005676, 'sppbots', 'Terminator2005', 11287, 7, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 0, 0, 0, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270005677, 'sppbots', 'pacan9', 146307211, 61, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 93, 93, 300000124, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270005678, 'sppbots', 'Petrovich85', 7729999, 34, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 11, 11, 300000038, 'PKK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270005679, 'sppbots', 'duKuuKoJI9IH22', 31378, 9, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 38, 38, 300000037, 'PKK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270005680, 'sppbots', 'Killer37', 114038008, 59, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 88, 88, 300000016, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270005681, 'sppbots', 'OldKiller23', 114038008, 59, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 103, 103, 300000037, 'PKK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270005682, 'sppbots', 'OldDeath', 28049509, 46, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 24, 24, 0, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270005683, 'sppbots', 'Titan1987', 102265326, 58, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 110, 110, 300000048, 'PKK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270005684, 'sppbots', 'KpuBouaHdpIOxa', 2884, 5, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 0, 0, 300000058, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270005685, 'sppbots', '6aToH4uTep3', 31378, 9, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 0, 0, 300000044, 'PKK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270005686, 'sppbots', 'Dj6eLLIeHbIuMaKc', 57383682, 53, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 2, 2, 300000113, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270005687, 'sppbots', 'ToIIop6eJI9ILLI', 13844879, 39, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 45, 45, 300000095, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270005688, 'sppbots', 'MCupKacudopoB', 931275828, 76, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 117, 117, 300000150, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270005689, 'sppbots', 'daLLIKa3auceB', 146307211, 61, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 97, 97, 300000125, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270005690, 'sppbots', 'rpo3HbIuMaKc', 19423, 8, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 0, 0, 0, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270005691, 'sppbots', 'DjLoneDemon', 5981539, 32, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 45, 45, 300000041, 'PKK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270005692, 'sppbots', 'DobryjFedor', 363, 3, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 0, 0, 300000018, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270005693, 'sppbots', '6oMzhKa6aH', 6038, 6, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 0, 0, 300000051, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270005694, 'sppbots', 'MelkiyDiman', 23180442, 44, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 2, 2, 300000048, 'PKK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270005695, 'sppbots', 'WildRaven', 2884, 5, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 10, 10, 0, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270005696, 'sppbots', 'cTacIIeTpoBRUS', 18995573, 42, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 9, 9, 300000104, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270005697, 'sppbots', 'xXModnyyTapokXx', 1495531, 23, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 4, 4, 300000075, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270005698, 'sppbots', 'GolodnyjWovan', 25524751, 45, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 40, 40, 0, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270005699, 'sppbots', 'NightMonk1991', 2497059, 26, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 15, 15, 300000082, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270005700, 'sppbots', 'duMoHBoJIKoB', 212716741, 64, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 110, 110, 300000134, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270005701, 'sppbots', 'StormSoul', 167243291, 62, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 108, 108, 300000127, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270005702, 'sppbots', 'caHeKKy3HecoB', 1495531, 23, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 22, 22, 300000043, 'PKK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270005703, 'sppbots', 'SilentKras4wch1k', 212716741, 64, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 117, 117, 300000133, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270005704, 'sppbots', 'SonnyjNubTopor', 532692055, 72, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 88, 88, 300000150, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270005705, 'sppbots', 'UgarnyjXolodok', 331864, 16, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 10, 10, 300000076, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270005706, 'sppbots', 'IIaLLIaIIeTpoB89', 9850111, 36, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 11, 11, 300000031, 'PKK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270005707, 'sppbots', 'Gh0stTitan9', 12395149, 38, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 7, 7, 300000094, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270005708, 'sppbots', 'Ubiwator', 474205751, 71, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 97, 97, 300000019, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270005709, 'sppbots', 'MaksPetrow', 696376867, 74, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 88, 88, 300000144, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270005710, 'sppbots', 'LoneAngelReaper', 36806133, 49, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 5, 5, 300000118, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270005711, 'sppbots', 'MCTuMyp', 254327, 15, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 0, 0, 0, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270005712, 'sppbots', 'F1r3', 45524865, 51, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 12, 12, 300000115, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270005713, 'sppbots', 'NightTit4n', 51262204, 52, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 16, 16, 300000041, 'PKK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270005714, 'sppbots', 'DerzkiyNub', 675590, 19, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 53, 53, 0, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270005715, 'sppbots', 'NubOgurec', 63907585, 54, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 2, 2, 0, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270005716, 'sppbots', 'GhostWildKnight', 70852742, 55, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 110, 110, 300000016, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270005717, 'sppbots', '6odpbIu3adpoT', 532692055, 72, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 97, 97, 300000146, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270005718, 'sppbots', 'PetrukhaWolkov', 835854, 20, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 4, 4, 300000078, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270005719, 'sppbots', 'KhitryyBatya', 12395149, 38, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 1, 1, 300000092, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270005720, 'sppbots', 'NightBloodAngel', 25524751, 45, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 12, 12, 300000107, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270005721, 'sppbots', '3auceB86', 2118860, 25, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 26, 26, 300000086, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270005722, 'sppbots', 'ChesnokMage5', 5981539, 32, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 45, 45, 300000100, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270005723, 'sppbots', 'ezhuK3adpoT', 30764519, 47, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 16, 16, 300000102, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270005724, 'sppbots', 'RzhawyySkvoznyak', 191452, 14, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 25, 25, 300000006, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270005725, 'sppbots', 'xuTpbIudedRUS', 126509030, 60, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 93, 93, 300000125, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270005726, 'sppbots', 'rapazh04', 675590, 19, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 10, 10, 300000075, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270005727, 'sppbots', 'MrTankiST', 254327, 15, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 0, 0, 300000009, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270005728, 'sppbots', 'xXCrazyF1r302Xx', 363, 3, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 0, 0, 300000016, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270005729, 'sppbots', 'duKuuTuMyp', 25524751, 45, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 16, 16, 300000019, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270005730, 'sppbots', 'Kolbasa78', 426284, 17, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 10, 10, 300000074, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270005731, 'sppbots', 'Slayer26', 835854, 20, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 7, 7, 300000073, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270005732, 'sppbots', '4eTKuu4yMa', 675590, 19, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 38, 38, 0, 'PKK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270005733, 'sppbots', 'SeregaSidoroff', 167243291, 62, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 94, 94, 300000122, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270005734, 'sppbots', '6eJI9ILLIDeath', 25524751, 45, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 16, 16, 300000018, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270005735, 'sppbots', 'xXTankistXx', 1786365, 24, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 39, 39, 300000086, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270005736, 'sppbots', 'LyutyyZadrot', 30764519, 47, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 9, 9, 300000109, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270005737, 'sppbots', 'SanekIvanow7', 675590, 19, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 10, 10, 0, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270005738, 'sppbots', 'GrimTrueMonk', 3407873, 28, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 1, 1, 300000019, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270005739, 'sppbots', 'DarkStar1996', 1242536, 22, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 7, 7, 300000073, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270005740, 'sppbots', 'VitekKuznecov', 835854, 20, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 7, 7, 300000018, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270005741, 'sppbots', 'DashkaMedvedew', 426284, 17, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 25, 25, 300000073, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270005742, 'sppbots', 'MamkinStar', 2884, 5, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 38, 38, 0, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270005743, 'sppbots', 'wildblade', 606319094, 73, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 113, 113, 300000143, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270005744, 'sppbots', 'BoBaHMedBedeB', 331864, 16, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 0, 0, 300000021, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270005745, 'sppbots', 'MCBuTeKKo3JIoB88', 1495531, 23, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 7, 7, 300000076, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270005746, 'sppbots', 'cTapbIu3adpoT', 19423, 8, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 18, 18, 0, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270005747, 'sppbots', 'DarkMaster', 30764519, 47, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 40, 40, 300000018, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270005748, 'sppbots', 'cTapbIuKnight', 675590, 19, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 0, 0, 300000075, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270005749, 'sppbots', 'WedmakMonax', 36806133, 49, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 9, 9, 300000024, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270005750, 'sppbots', 'SweetDemon02', 5231213, 31, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 11, 11, 300000082, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270005751, 'sppbots', 'LysyjD34th', 48229, 10, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 53, 53, 0, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270005752, 'sppbots', 'LyutyyRuslan', 237351413, 65, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 117, 117, 300000137, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270005753, 'sppbots', 'peaJIbHbIuxoM9IK', 931275828, 76, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 102, 102, 300000006, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270005754, 'sppbots', 'RzhawyjBaTON', 3949727, 29, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 35, 35, 0, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270005755, 'sppbots', 'StasMedvedev89', 2497059, 26, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 26, 26, 300000087, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270005756, 'sppbots', 'Ice2', 5231213, 31, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 7, 7, 300000084, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270005757, 'sppbots', 'IIode3d6aT9I', 71201, 11, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 53, 53, 0, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270005758, 'sppbots', 'MadMonk02', 212716741, 64, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 90, 90, 300000137, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270005759, 'sppbots', 'BuTeKcudopoB2001', 101676, 12, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 0, 0, 300000003, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270005760, 'sppbots', 'FrostNightAngel', 363, 3, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 44, 44, 300000051, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270005761, 'sppbots', 'OlegKozlov1', 71201, 11, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 31, 31, 0, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270005762, 'sppbots', 'Tuxuu6eJI9ILLI04', 189363788, 63, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 108, 108, 0, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270005763, 'sppbots', 'MelkiyDeath1', 167243291, 62, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 88, 88, 300000126, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270005764, 'sppbots', '0ldRid3r', 387197529, 69, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 113, 113, 300000132, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270005765, 'sppbots', 'DedNub', 36806133, 49, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 24, 24, 0, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270005766, 'sppbots', 'IIaLLIauBaHoBRUS', 1023775, 21, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 53, 53, 0, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270005767, 'sppbots', 'KpuBouClaw', 80700339, 56, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 97, 97, 0, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270005768, 'sppbots', 'L0n3R1d3r85', 19423, 8, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 38, 38, 300000018, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270005769, 'sppbots', 'xuTpbIurpuLLIa01', 331864, 16, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 0, 0, 300000074, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270005770, 'sppbots', 'LopataLopataRUS', 429632402, 70, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 103, 103, 300000139, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270005771, 'sppbots', 'GhostMa5ter', 4555766, 30, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 7, 7, 300000021, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270005772, 'sppbots', 'ZhirnyjLEXA', 31378, 9, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 31, 31, 300000047, 'PKK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270005773, 'sppbots', 'pycJIaHIIyIIKuH', 28049509, 46, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 24, 24, 300000105, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270005774, 'sppbots', 'ZloyChushpan1985', 387197529, 69, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 108, 108, 300000131, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270005775, 'sppbots', 'KefirK1NG', 167243291, 62, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 110, 110, 300000122, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270005776, 'sppbots', 'CrazyTru35ux4r', 0, 1, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 18, 18, 300000058, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270005777, 'sppbots', 'DjMadSoul', 2884, 5, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 31, 31, 300000052, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270005778, 'sppbots', 'Fang1997', 212716741, 64, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 113, 113, 0, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270005779, 'sppbots', 'LenkaSmirnow89', 167243291, 62, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 102, 102, 300000050, 'PKK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270005780, 'sppbots', 'GrimNightMage', 0, 1, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 0, 0, 0, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270005781, 'sppbots', 'pzhaBbIuroIIHuK', 23180442, 44, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 9, 9, 300000003, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270005782, 'sppbots', 'TrueBlackXomyak', 387197529, 69, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 90, 90, 300000133, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270005783, 'sppbots', 'MarmeladRUS', 167243291, 62, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 113, 113, 300000128, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270005784, 'sppbots', 'TrueCheburek', 2925229, 27, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 35, 35, 0, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270005785, 'sppbots', 'FrostGh05tDem0n', 71201, 11, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 0, 0, 0, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270005786, 'sppbots', 'BoJIKoB2', 33679907, 48, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 12, 12, 300000114, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270005787, 'sppbots', 'MapMeJIadToIIop', 31378, 9, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 44, 44, 0, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270005788, 'sppbots', 'KaratelBelyash1', 68, 2, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 10, 10, 0, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270005789, 'sppbots', 'MadRider', 1168, 4, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 10, 10, 300000057, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270005790, 'sppbots', 'SvetkaPetrOFF', 2497059, 26, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 35, 35, 0, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270005791, 'sppbots', 'Pupkin40', 3949727, 29, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 7, 7, 300000090, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270005792, 'sppbots', 'IIecroIIHuK', 2925229, 27, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 54, 54, 0, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270005793, 'sppbots', 'BlackOldBishop64', 3407873, 28, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 26, 26, 300000083, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270005794, 'sppbots', 'coHHbIuDream21', 101676, 12, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 10, 10, 300000018, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270005795, 'sppbots', 'MaMKuHBoJIK', 429632402, 70, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 110, 110, 0, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270005796, 'sppbots', 'KpuBouMoHax', 101676, 12, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 38, 38, 0, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270005797, 'sppbots', 'Dj4yLLIIIaH6aT9I', 237351413, 65, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 102, 102, 300000138, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270005798, 'sppbots', 'groznyypasha', 11287, 7, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 18, 18, 300000051, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270005799, 'sppbots', 'GrimDarkRider', 11066012, 37, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 45, 45, 0, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270005800, 'sppbots', 'Pacan38', 11287, 7, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 25, 25, 0, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270005801, 'sppbots', 'KompotHomyak85', 68, 2, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 18, 18, 0, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270005802, 'sppbots', 'NatahaKozloff', 13844879, 39, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 4, 4, 0, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270005803, 'sppbots', 'NubGnom', 141192, 13, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 53, 53, 0, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270005804, 'sppbots', 'tanyukhasidorov', 19423, 8, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 0, 0, 0, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270005805, 'sppbots', 'ChesnokBaton', 1786365, 24, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 45, 45, 300000088, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270005806, 'sppbots', 'IIacaHRUS', 2925229, 27, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 22, 22, 300000086, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270005807, 'sppbots', 'aHdpIOxaKo3JIoB', 346825235, 68, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 93, 93, 300000042, 'PKK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270005808, 'sppbots', 'MelkijTimur', 63907585, 54, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 40, 40, 300000036, 'PKK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270005809, 'sppbots', 'Gho5tMaster', 6038, 6, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 10, 10, 300000054, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270005810, 'sppbots', 'Kill3r', 426284, 17, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 10, 10, 300000014, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270005811, 'sppbots', 'MamkinGaraZH1985', 5981539, 32, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 7, 7, 300000096, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270005812, 'sppbots', 'OldMage', 1023775, 21, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 7, 7, 300000006, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270005813, 'sppbots', 'StaryyGopnikClaw', 167243291, 62, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 90, 90, 300000124, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270005814, 'sppbots', '5il3ntRav3n', 68, 2, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 25, 25, 300000051, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270005815, 'sppbots', 'Soul8', 17137002, 41, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 16, 16, 300000108, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270005816, 'sppbots', 'MadRiderTitan', 1242536, 22, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 35, 35, 300000078, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270005817, 'sppbots', 'LoneCh3burek4', 21007103, 43, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 27, 27, 300000103, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270005818, 'sppbots', 'TolikVolkov1993', 387197529, 69, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 90, 90, 0, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270005819, 'sppbots', 'SwiftWolf99', 167243291, 62, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 94, 94, 300000130, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270005820, 'sppbots', 'xXMageXx', 2497059, 26, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 22, 22, 300000081, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270005821, 'sppbots', 'MapMeJIad00', 532692055, 72, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 90, 90, 300000147, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270005822, 'sppbots', 'KrivoyEzhik', 6812472, 33, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 39, 39, 300000096, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270005823, 'sppbots', 'KpuBouKa6aH91', 835854, 20, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 1, 1, 300000006, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270005824, 'sppbots', 'RzhawyyMashka', 80700339, 56, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 94, 94, 300000123, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270005825, 'sppbots', 'BlackBlade07', 18995573, 42, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 27, 27, 300000014, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270005826, 'sppbots', 'EvilSuhar', 2118860, 25, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 26, 26, 300000041, 'PKK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270005827, 'sppbots', 'BeshenyyBaton', 331864, 16, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 25, 25, 0, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270005828, 'sppbots', 'SweetSilentBlade', 1495531, 23, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 53, 53, 0, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270005829, 'sppbots', 'WildStar', 70852742, 55, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 88, 88, 300000116, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270005830, 'sppbots', 'xXOlegXx', 2884, 5, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 0, 0, 300000051, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270005831, 'sppbots', 'BuTeKBlade', 4555766, 30, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 7, 7, 0, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270005832, 'sppbots', 'TrueMa5t3r', 68, 2, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 18, 18, 300000045, 'PKK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270005833, 'sppbots', 'yrapHbIuded', 696376867, 74, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 103, 103, 300000010, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270005834, 'sppbots', 'LoneDarkFang', 126509030, 60, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 93, 93, 300000006, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270005835, 'sppbots', 'duMoHRUS', 191452, 14, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 0, 0, 0, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270005836, 'sppbots', 'Fr05tDream', 1786365, 24, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 4, 4, 0, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270005837, 'sppbots', 'ShustryyOgurec', 3407873, 28, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 11, 11, 300000086, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270005838, 'sppbots', '5had0wClawRUS', 71201, 11, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 44, 44, 300000038, 'PKK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270005839, 'sppbots', 'TaIIoKMapMeJIad', 6812472, 33, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 7, 7, 300000048, 'PKK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270005840, 'sppbots', 'xXdedXx', 48229, 10, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 0, 0, 300000021, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270005841, 'sppbots', 'Tru3RidER', 539995, 18, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 25, 25, 300000073, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270005842, 'sppbots', 'dedRUS', 31378, 9, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 0, 0, 0, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270005843, 'sppbots', 'KotKirpich', 1495531, 23, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 15, 15, 300000041, 'PKK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270005844, 'sppbots', 'Timur5', 2118860, 25, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 4, 4, 300000083, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270005845, 'sppbots', 'FrostDragon4', 30764519, 47, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 8, 8, 300000034, 'PKK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270005846, 'sppbots', 'xXroIIHuK98Xx', 1242536, 22, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 45, 45, 300000073, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270005847, 'sppbots', 'NastyaKuznecOW', 33679907, 48, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 5, 5, 300000117, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270005848, 'sppbots', 'rHoMded03RUS', 12395149, 38, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 4, 4, 300000100, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270005849, 'sppbots', 'Kn1ght8', 1242536, 22, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 53, 53, 0, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270005850, 'sppbots', 'ZhirnyyMAKS', 191452, 14, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 10, 10, 0, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270005851, 'sppbots', 'MadGh0stArrow85', 15422851, 40, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 2, 2, 300000105, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270005852, 'sppbots', 'CrazyTitan', 11287, 7, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 0, 0, 0, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270005853, 'sppbots', 'KpuBou4yMaKnight', 675590, 19, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 10, 10, 0, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270005854, 'sppbots', 'KpuBouTpaBKa', 6038, 6, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 0, 0, 300000052, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270005855, 'sppbots', 'Tru3KillerRUS', 15422851, 40, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 5, 5, 0, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270005856, 'sppbots', 'BloodDragon', 675590, 19, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 0, 0, 0, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270005857, 'sppbots', 'MCcTapbIufedop', 254327, 15, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 18, 18, 0, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270005858, 'sppbots', 'ironmadmonah', 71201, 11, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 31, 31, 0, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270005859, 'sppbots', 'JIexa3auceB', 606319094, 73, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 88, 88, 300000142, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270005860, 'sppbots', '6op3bIuaHdpIOxa', 804219972, 75, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 102, 102, 300000040, 'PKK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270005861, 'sppbots', 'ShadowBloodRogue', 28049509, 46, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 9, 9, 0, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270005862, 'sppbots', 'uBaHoB23', 346825235, 68, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 110, 110, 0, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270005863, 'sppbots', 'roJIodHbIuKeHT93', 4555766, 30, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 1, 1, 300000039, 'PKK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270005864, 'sppbots', '4eTKuuBuTeK91', 36806133, 49, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 12, 12, 300000118, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270005865, 'sppbots', 'cepera3auceB87', 191452, 14, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 31, 31, 0, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270005866, 'sppbots', 'OlegIvanOFF', 146307211, 61, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 117, 117, 0, 'PKK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270005867, 'sppbots', 'MCMeJIKuuArrow', 331864, 16, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 25, 25, 300000075, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270005868, 'sppbots', 'FrostRavenFire10', 13844879, 39, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 1, 1, 0, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270005869, 'sppbots', 'TankistHomyak', 31378, 9, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 0, 0, 0, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270005870, 'sppbots', 'cTapbIuKing', 331864, 16, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 18, 18, 300000032, 'PKK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270005871, 'sppbots', 'RzhavyyYurec2007', 1168, 4, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 25, 25, 300000042, 'PKK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270005872, 'sppbots', 'DemON97', 126509030, 60, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 92, 92, 0, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270005873, 'sppbots', 'xXBatonMonaxXx', 33679907, 48, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 16, 16, 0, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270005874, 'sppbots', 'BlackBishopArrow', 19423, 8, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 0, 0, 0, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270005875, 'sppbots', '4uTepKoTRUS', 31378, 9, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 38, 38, 0, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270005876, 'sppbots', 'VasyaSmirnov47', 63907585, 54, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 9, 9, 300000021, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270005877, 'sppbots', '4eTKuudaLLIKa5', 30764519, 47, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 16, 16, 300000104, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270005878, 'sppbots', 'OldArr0wMonk', 1168, 4, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 38, 38, 300000057, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270005879, 'sppbots', 'sanya1ce01', 5231213, 31, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 7, 7, 0, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270005880, 'sppbots', 'ZloySanEK', 675590, 19, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 0, 0, 0, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270005881, 'sppbots', 'ChushpanLopata', 11066012, 37, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 26, 26, 300000098, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270005882, 'sppbots', 'Stepan1997', 6812472, 33, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 26, 26, 300000091, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270005883, 'sppbots', 'yrapHbIu4ecHoK', 5981539, 32, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 39, 39, 300000092, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270005884, 'sppbots', 'LysyjKrasavchik', 7729999, 34, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 39, 39, 300000100, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270005885, 'sppbots', 'uBaHoB89', 6812472, 33, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 4, 4, 300000094, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270005886, 'sppbots', 'KolbasaValenok', 28049509, 46, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 12, 12, 300000108, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270005887, 'sppbots', 'StormClawArrow', 15422851, 40, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 16, 16, 0, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270005888, 'sppbots', 'DjNaglyjRuslan', 71201, 11, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 44, 44, 0, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270005889, 'sppbots', 'GolodnyyGopnik', 91162131, 57, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 113, 113, 0, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270005890, 'sppbots', 'Ka6aHrapazh', 2884, 5, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 53, 53, 300000038, 'PKK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270005891, 'sppbots', 'Kiryuxa07', 141192, 13, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 53, 53, 0, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270005892, 'sppbots', 'BlackFang1999', 31378, 9, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 31, 31, 0, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270005893, 'sppbots', 'CrazyFire2005', 7729999, 34, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 45, 45, 300000010, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270005894, 'sppbots', 'FangRUS', 0, 1, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 0, 0, 300000058, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270005895, 'sppbots', 'daLLIKacudopoB', 308441375, 67, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 103, 103, 300000039, 'PKK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270005896, 'sppbots', 'Terminator86RUS', 101676, 12, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 0, 0, 0, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270005897, 'sppbots', 'NaglyjCheburek', 346825235, 68, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 94, 94, 0, 'PKK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270005898, 'sppbots', 'SweetSilentKing', 835854, 20, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 15, 15, 0, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270005899, 'sppbots', 'DerzkijTolyan', 31378, 9, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 10, 10, 0, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270005900, 'sppbots', 'Mr4rrow4', 15422851, 40, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 27, 27, 300000033, 'PKK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270005901, 'sppbots', 'BloodD4rkHunter', 1023775, 21, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 15, 15, 0, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270005902, 'sppbots', 'DerzkijDedGnom07', 5981539, 32, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 15, 15, 0, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270005903, 'sppbots', '5t0rmKabAN', 68, 2, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 0, 0, 0, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270005904, 'sppbots', 'NubVedmak', 5981539, 32, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 26, 26, 300000094, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270005905, 'sppbots', 'NightM0nk2003RUS', 675590, 19, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 38, 38, 300000014, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270005906, 'sppbots', 'Semki1991', 6038, 6, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 18, 18, 0, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270005907, 'sppbots', 'tru3monax', 5231213, 31, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 11, 11, 0, 'PKK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270005908, 'sppbots', 'KeHT6paToK', 387197529, 69, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 92, 92, 0, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270005909, 'sppbots', 'KefupHy61995', 19423, 8, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 10, 10, 0, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270005910, 'sppbots', 'FrostKolba54', 11287, 7, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 44, 44, 0, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270005911, 'sppbots', 'SweetRid3r', 1023775, 21, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 26, 26, 0, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270005912, 'sppbots', 'lopata8', 363, 3, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 0, 0, 300000057, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270005913, 'sppbots', 'SilentReaper45', 167243291, 62, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 90, 90, 0, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270005914, 'sppbots', 'rapazhJIoIIaTa', 48229, 10, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 25, 25, 0, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270005915, 'sppbots', 'PesMonk', 4555766, 30, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 7, 7, 300000088, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270005916, 'sppbots', 'FedorFire', 31378, 9, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 0, 0, 0, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270005917, 'sppbots', 'HacT9IDemon', 28049509, 46, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 36, 36, 0, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270005918, 'sppbots', 'CrazyReaper', 2925229, 27, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 22, 22, 300000090, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270005919, 'sppbots', 'ModnyyKOT', 1168, 4, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 53, 53, 300000051, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270005920, 'sppbots', 'xXfedopuBaHoBXx', 675590, 19, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 0, 0, 300000074, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270005921, 'sppbots', 'GarazhNagibator', 19423, 8, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 0, 0, 0, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270005922, 'sppbots', 'FrostS0ul', 33679907, 48, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 12, 12, 0, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270005923, 'sppbots', 'ProstoTolyan', 11287, 7, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 38, 38, 0, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270005924, 'sppbots', 'grimking', 426284, 17, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 10, 10, 0, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270005925, 'sppbots', 'BodryyGnomHunter', 8740372, 35, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 39, 39, 0, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270005926, 'sppbots', 'Gh05tRogue2', 539995, 18, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 0, 0, 0, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270005927, 'sppbots', 'Raven1994', 45524865, 51, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 8, 8, 300000120, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270005928, 'sppbots', 'StaryyAndryuha85', 21007103, 43, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 8, 8, 300000109, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270005929, 'sppbots', 'Mage06', 387197529, 69, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 110, 110, 0, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270005930, 'sppbots', 'MyxoMopBaJIeHoK', 254327, 15, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 0, 0, 300000010, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270005931, 'sppbots', 'IIaLLIaKo3JIoB95', 15422851, 40, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 27, 27, 300000043, 'PKK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270005932, 'sppbots', 'ShadowLord', 2497059, 26, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 35, 35, 0, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270005933, 'sppbots', 'ProstoLenka', 271973532, 66, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 92, 92, 0, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270005934, 'sppbots', 'IIacaHrapazhRUS', 2884, 5, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 31, 31, 0, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270005935, 'sppbots', 'GrimStormDeath', 1023775, 21, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 53, 53, 0, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270005936, 'sppbots', '3JIouIIecIIacaH', 31378, 9, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 31, 31, 0, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270005937, 'sppbots', '6aT9I6eJI9ILLI', 126509030, 60, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 97, 97, 300000038, 'PKK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270005938, 'sppbots', 'ModnyjMuxomor', 3407873, 28, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 11, 11, 300000085, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270005939, 'sppbots', 'Arrow89', 101676, 12, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 44, 44, 0, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270005940, 'sppbots', 'DjcaH9I', 8740372, 35, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 39, 39, 0, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270005941, 'sppbots', 'Serega', 19423, 8, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 0, 0, 300000040, 'PKK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270005942, 'sppbots', 'DerzkiyVovchik6', 15422851, 40, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 8, 8, 300000109, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270005943, 'sppbots', 'VitekKing', 1168, 4, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 0, 0, 300000051, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270005944, 'sppbots', 'DjHaru6aTopRUS', 102265326, 58, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 108, 108, 300000128, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270005945, 'sppbots', 'TikhiyKiryuxa', 33679907, 48, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 12, 12, 300000116, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270005946, 'sppbots', 'ShadowMaster', 254327, 15, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 25, 25, 0, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270005947, 'sppbots', 'Bl00dKiller3', 48229, 10, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 0, 0, 0, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270005948, 'sppbots', 'TikhiyDeATH', 5231213, 31, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 45, 45, 0, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270005949, 'sppbots', 'WolkUbivator1986', 28049509, 46, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 8, 8, 300000106, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270005950, 'sppbots', 'Bl4ckDeath', 539995, 18, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 10, 10, 0, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270005951, 'sppbots', 'ShustryyPetruxa', 426284, 17, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 10, 10, 300000073, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270005952, 'sppbots', 'xXWildStarXx', 31378, 9, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 25, 25, 300000044, 'PKK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270005953, 'sppbots', 'ChumaFir31992', 1786365, 24, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 7, 7, 300000087, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270005954, 'sppbots', 'rpo3HbIucaHeK1', 6812472, 33, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 54, 54, 300000095, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270005955, 'sppbots', 'DarkStar', 114038008, 59, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 102, 102, 0, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270005956, 'sppbots', 'XitryySvetka', 804219972, 75, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 102, 102, 300000145, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270005957, 'sppbots', 'NightReaper', 146307211, 61, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 90, 90, 300000121, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270005958, 'sppbots', 'BoBaHMedBedeB95', 45524865, 51, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 55, 55, 300000113, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270005959, 'sppbots', 'zheKa77', 28049509, 46, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 12, 12, 300000104, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270005960, 'sppbots', 'ChetkiyZheka', 28049509, 46, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 24, 24, 0, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270005961, 'sppbots', 'Sweet5tar45', 71201, 11, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 0, 0, 0, 'PKK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270005962, 'sppbots', 'xXSlayerXx', 426284, 17, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 44, 44, 300000037, 'PKK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270005963, 'sppbots', 'do6pbIuIIaJIbI4', 11287, 7, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 0, 0, 0, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270005964, 'sppbots', 'NaglyyBoMZH', 31378, 9, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 0, 0, 0, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270005965, 'sppbots', 'xXEvilWolf29Xx', 308441375, 67, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 108, 108, 0, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270005966, 'sppbots', 'Sosed2001', 426284, 17, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 0, 0, 300000040, 'PKK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270005967, 'sppbots', 'NaglyjStas', 80700339, 56, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 117, 117, 0, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270005968, 'sppbots', 'BatonValenok', 0, 1, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 10, 10, 0, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270005969, 'sppbots', 'TrueUbivator', 36806133, 49, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 8, 8, 300000119, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270005970, 'sppbots', 'cTapbIucaH9I', 25524751, 45, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 24, 24, 300000106, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270005971, 'sppbots', 'Ruslan1990', 15422851, 40, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 27, 27, 0, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270005972, 'sppbots', 'IronNagibator', 4555766, 30, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 1, 1, 300000085, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270005973, 'sppbots', 'MeJIKuuHaTaxa91', 11287, 7, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 18, 18, 0, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270005974, 'sppbots', 'WildRavenKing95', 1786365, 24, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 4, 4, 300000085, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270005975, 'sppbots', 'TuxuuKoJI6aca47', 8740372, 35, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 7, 7, 0, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270005976, 'sppbots', 'IronWildFang1993', 426284, 17, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 31, 31, 0, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270005977, 'sppbots', 'TapokRogue', 346825235, 68, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 93, 93, 300000010, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270005978, 'sppbots', 'PodezdKompot', 101676, 12, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 10, 10, 0, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270005979, 'sppbots', 'dep3KuuIce', 254327, 15, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 0, 0, 300000045, 'PKK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270005980, 'sppbots', 'KentKolbasa', 23180442, 44, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 46, 46, 300000010, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270005981, 'sppbots', 'staryjtoporwolf', 1168, 4, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 0, 0, 0, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270005982, 'sppbots', 'BaJIeHoKded', 6038, 6, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 31, 31, 300000054, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270005983, 'sppbots', 'MrIrkaSidorOFF', 33679907, 48, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 9, 9, 300000037, 'PKK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270005984, 'sppbots', 'MCIIeTpoB', 31378, 9, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 0, 0, 0, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270005985, 'sppbots', 'MrIIode3d', 114038008, 59, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 93, 93, 300000040, 'PKK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270005986, 'sppbots', 'DjCrazyKnight', 12395149, 38, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 45, 45, 0, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270005987, 'sppbots', 'FrostBlade5', 1786365, 24, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 35, 35, 300000044, 'PKK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270005988, 'sppbots', 'TrueMarmelad', 387197529, 69, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 117, 117, 300000033, 'PKK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270005989, 'sppbots', 'Sniper30', 45524865, 51, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 12, 12, 300000118, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270005990, 'sppbots', 'Arr0w1991', 9850111, 36, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 35, 35, 0, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270005991, 'sppbots', 'ChumaMonakh', 15422851, 40, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 40, 40, 300000107, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270005992, 'sppbots', 'RuslanPupkin', 57383682, 53, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 55, 55, 300000116, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270005993, 'sppbots', 'TixiyBishop', 6038, 6, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 44, 44, 0, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270005994, 'sppbots', 'BlackReaPER', 25524751, 45, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 27, 27, 300000105, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270005995, 'sppbots', 'JIIOTbIuKnight', 102265326, 58, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 90, 90, 0, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270005996, 'sppbots', 'TuMyp93', 1023775, 21, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 15, 15, 0, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270005997, 'sppbots', 'MelkiyStepan', 51262204, 52, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 9, 9, 300000010, 'PK', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270005998, 'sppbots', 'DjKoTxoJIodoK01', 11066012, 37, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 7, 7, 300000091, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270005999, 'sppbots', '3vilMadZadR0T23', 254327, 15, 1000, 1000, 500, 500, 500, 500, 1, 83400, 147900, -3400, 44, 44, 0, '', 0, 0); +INSERT IGNORE INTO characters (charId, account_name, char_name, exp, level, maxHp, curHp, maxCp, curCp, maxMp, curMp, sex, x, y, z, classid, base_class, clanid, title, online, accesslevel) VALUES (270006000, 'sppbots', 'FrostR4ven1', 19423, 8, 1000, 1000, 500, 500, 500, 500, 0, 83400, 147900, -3400, 10, 10, 0, '', 0, 0); +INSERT IGNORE INTO clan_data (clan_id, clan_name, clan_level, reputation_score, hasCastle, blood_alliance_count, blood_oath_count, ally_id, ally_name, leader_id, crest_id, crest_large_id, ally_crest_id, new_leader_id) VALUES (300000001, 'RedCrew', 5, 5000, 0, 0, 0, 0, NULL, 270003733, 0, 0, 0, 0); +INSERT IGNORE INTO items (owner_id, object_id, item_id, count, enchant_level, loc, loc_data) VALUES (300000001, 272000001, 57, 100000000, 0, 'CLANWH', 0); +INSERT IGNORE INTO clan_data (clan_id, clan_name, clan_level, reputation_score, hasCastle, blood_alliance_count, blood_oath_count, ally_id, ally_name, leader_id, crest_id, crest_large_id, ally_crest_id, new_leader_id) VALUES (300000002, 'MadOrder', 5, 5000, 0, 0, 0, 0, NULL, 270001016, 0, 0, 0, 0); +INSERT IGNORE INTO items (owner_id, object_id, item_id, count, enchant_level, loc, loc_data) VALUES (300000002, 272000002, 57, 100000000, 0, 'CLANWH', 0); +INSERT IGNORE INTO clan_data (clan_id, clan_name, clan_level, reputation_score, hasCastle, blood_alliance_count, blood_oath_count, ally_id, ally_name, leader_id, crest_id, crest_large_id, ally_crest_id, new_leader_id) VALUES (300000003, 'LostGuard', 5, 5000, 0, 0, 0, 0, NULL, 270005610, 0, 0, 0, 0); +INSERT IGNORE INTO items (owner_id, object_id, item_id, count, enchant_level, loc, loc_data) VALUES (300000003, 272000003, 57, 100000000, 0, 'CLANWH', 0); +INSERT IGNORE INTO clan_data (clan_id, clan_name, clan_level, reputation_score, hasCastle, blood_alliance_count, blood_oath_count, ally_id, ally_name, leader_id, crest_id, crest_large_id, ally_crest_id, new_leader_id) VALUES (300000004, 'BrokenOrder', 5, 5000, 0, 0, 0, 0, NULL, 270002308, 0, 0, 0, 0); +INSERT IGNORE INTO items (owner_id, object_id, item_id, count, enchant_level, loc, loc_data) VALUES (300000004, 272000004, 57, 100000000, 0, 'CLANWH', 0); +INSERT IGNORE INTO clan_data (clan_id, clan_name, clan_level, reputation_score, hasCastle, blood_alliance_count, blood_oath_count, ally_id, ally_name, leader_id, crest_id, crest_large_id, ally_crest_id, new_leader_id) VALUES (300000005, 'RedLegion', 5, 5000, 0, 0, 0, 0, NULL, 270002508, 0, 0, 0, 0); +INSERT IGNORE INTO items (owner_id, object_id, item_id, count, enchant_level, loc, loc_data) VALUES (300000005, 272000005, 57, 100000000, 0, 'CLANWH', 0); +INSERT IGNORE INTO clan_data (clan_id, clan_name, clan_level, reputation_score, hasCastle, blood_alliance_count, blood_oath_count, ally_id, ally_name, leader_id, crest_id, crest_large_id, ally_crest_id, new_leader_id) VALUES (300000006, 'FirstOrder', 5, 5000, 0, 0, 0, 0, NULL, 270005753, 0, 0, 0, 0); +INSERT IGNORE INTO items (owner_id, object_id, item_id, count, enchant_level, loc, loc_data) VALUES (300000006, 272000006, 57, 100000000, 0, 'CLANWH', 0); +INSERT IGNORE INTO clan_data (clan_id, clan_name, clan_level, reputation_score, hasCastle, blood_alliance_count, blood_oath_count, ally_id, ally_name, leader_id, crest_id, crest_large_id, ally_crest_id, new_leader_id) VALUES (300000007, 'FirstPact', 5, 5000, 0, 0, 0, 0, NULL, 270004114, 0, 0, 0, 0); +INSERT IGNORE INTO items (owner_id, object_id, item_id, count, enchant_level, loc, loc_data) VALUES (300000007, 272000007, 57, 100000000, 0, 'CLANWH', 0); +INSERT IGNORE INTO clan_data (clan_id, clan_name, clan_level, reputation_score, hasCastle, blood_alliance_count, blood_oath_count, ally_id, ally_name, leader_id, crest_id, crest_large_id, ally_crest_id, new_leader_id) VALUES (300000008, 'RoyalSquad', 5, 5000, 0, 0, 0, 0, NULL, 270004518, 0, 0, 0, 0); +INSERT IGNORE INTO items (owner_id, object_id, item_id, count, enchant_level, loc, loc_data) VALUES (300000008, 272000008, 57, 100000000, 0, 'CLANWH', 0); +INSERT IGNORE INTO clan_data (clan_id, clan_name, clan_level, reputation_score, hasCastle, blood_alliance_count, blood_oath_count, ally_id, ally_name, leader_id, crest_id, crest_large_id, ally_crest_id, new_leader_id) VALUES (300000009, 'RoyalWatch', 5, 5000, 0, 0, 0, 0, NULL, 270002460, 0, 0, 0, 0); +INSERT IGNORE INTO items (owner_id, object_id, item_id, count, enchant_level, loc, loc_data) VALUES (300000009, 272000009, 57, 100000000, 0, 'CLANWH', 0); +INSERT IGNORE INTO clan_data (clan_id, clan_name, clan_level, reputation_score, hasCastle, blood_alliance_count, blood_oath_count, ally_id, ally_name, leader_id, crest_id, crest_large_id, ally_crest_id, new_leader_id) VALUES (300000010, 'HolyPact', 5, 5000, 0, 0, 0, 0, NULL, 270002751, 0, 0, 0, 0); +INSERT IGNORE INTO items (owner_id, object_id, item_id, count, enchant_level, loc, loc_data) VALUES (300000010, 272000010, 57, 100000000, 0, 'CLANWH', 0); +INSERT IGNORE INTO clan_data (clan_id, clan_name, clan_level, reputation_score, hasCastle, blood_alliance_count, blood_oath_count, ally_id, ally_name, leader_id, crest_id, crest_large_id, ally_crest_id, new_leader_id) VALUES (300000011, 'WildWatch', 5, 5000, 0, 0, 0, 0, NULL, 270004516, 0, 0, 0, 0); +INSERT IGNORE INTO items (owner_id, object_id, item_id, count, enchant_level, loc, loc_data) VALUES (300000011, 272000011, 57, 100000000, 0, 'CLANWH', 0); +INSERT IGNORE INTO clan_data (clan_id, clan_name, clan_level, reputation_score, hasCastle, blood_alliance_count, blood_oath_count, ally_id, ally_name, leader_id, crest_id, crest_large_id, ally_crest_id, new_leader_id) VALUES (300000012, 'IronPact', 5, 5000, 0, 0, 0, 0, NULL, 270002787, 0, 0, 0, 0); +INSERT IGNORE INTO items (owner_id, object_id, item_id, count, enchant_level, loc, loc_data) VALUES (300000012, 272000012, 57, 100000000, 0, 'CLANWH', 0); +INSERT IGNORE INTO clan_data (clan_id, clan_name, clan_level, reputation_score, hasCastle, blood_alliance_count, blood_oath_count, ally_id, ally_name, leader_id, crest_id, crest_large_id, ally_crest_id, new_leader_id) VALUES (300000013, 'BaTara', 5, 5000, 0, 0, 0, 0, NULL, 270001465, 0, 0, 0, 0); +INSERT IGNORE INTO items (owner_id, object_id, item_id, count, enchant_level, loc, loc_data) VALUES (300000013, 272000013, 57, 100000000, 0, 'CLANWH', 0); +INSERT IGNORE INTO clan_data (clan_id, clan_name, clan_level, reputation_score, hasCastle, blood_alliance_count, blood_oath_count, ally_id, ally_name, leader_id, crest_id, crest_large_id, ally_crest_id, new_leader_id) VALUES (300000014, 'SleepyGuard', 5, 5000, 0, 0, 0, 0, NULL, 270002513, 0, 0, 0, 0); +INSERT IGNORE INTO items (owner_id, object_id, item_id, count, enchant_level, loc, loc_data) VALUES (300000014, 272000014, 57, 100000000, 0, 'CLANWH', 0); +INSERT IGNORE INTO clan_data (clan_id, clan_name, clan_level, reputation_score, hasCastle, blood_alliance_count, blood_oath_count, ally_id, ally_name, leader_id, crest_id, crest_large_id, ally_crest_id, new_leader_id) VALUES (300000015, 'IronSyndicate', 5, 5000, 0, 0, 0, 0, NULL, 270001160, 0, 0, 0, 0); +INSERT IGNORE INTO items (owner_id, object_id, item_id, count, enchant_level, loc, loc_data) VALUES (300000015, 272000015, 57, 100000000, 0, 'CLANWH', 0); +INSERT IGNORE INTO clan_data (clan_id, clan_name, clan_level, reputation_score, hasCastle, blood_alliance_count, blood_oath_count, ally_id, ally_name, leader_id, crest_id, crest_large_id, ally_crest_id, new_leader_id) VALUES (300000016, 'FirstRavens', 5, 5000, 0, 0, 0, 0, NULL, 270003215, 0, 0, 0, 0); +INSERT IGNORE INTO items (owner_id, object_id, item_id, count, enchant_level, loc, loc_data) VALUES (300000016, 272000016, 57, 100000000, 0, 'CLANWH', 0); +INSERT IGNORE INTO clan_data (clan_id, clan_name, clan_level, reputation_score, hasCastle, blood_alliance_count, blood_oath_count, ally_id, ally_name, leader_id, crest_id, crest_large_id, ally_crest_id, new_leader_id) VALUES (300000017, 'AngryBrotherhood', 5, 5000, 0, 0, 0, 0, NULL, 270002936, 0, 0, 0, 0); +INSERT IGNORE INTO items (owner_id, object_id, item_id, count, enchant_level, loc, loc_data) VALUES (300000017, 272000017, 57, 100000000, 0, 'CLANWH', 0); +INSERT IGNORE INTO clan_data (clan_id, clan_name, clan_level, reputation_score, hasCastle, blood_alliance_count, blood_oath_count, ally_id, ally_name, leader_id, crest_id, crest_large_id, ally_crest_id, new_leader_id) VALUES (300000018, 'FreePact', 5, 5000, 0, 0, 0, 0, NULL, 270003002, 0, 0, 0, 0); +INSERT IGNORE INTO items (owner_id, object_id, item_id, count, enchant_level, loc, loc_data) VALUES (300000018, 272000018, 57, 100000000, 0, 'CLANWH', 0); +INSERT IGNORE INTO clan_data (clan_id, clan_name, clan_level, reputation_score, hasCastle, blood_alliance_count, blood_oath_count, ally_id, ally_name, leader_id, crest_id, crest_large_id, ally_crest_id, new_leader_id) VALUES (300000019, 'IronFarmers', 5, 5000, 0, 0, 0, 0, NULL, 270005200, 0, 0, 0, 0); +INSERT IGNORE INTO items (owner_id, object_id, item_id, count, enchant_level, loc, loc_data) VALUES (300000019, 272000019, 57, 100000000, 0, 'CLANWH', 0); +INSERT IGNORE INTO clan_data (clan_id, clan_name, clan_level, reputation_score, hasCastle, blood_alliance_count, blood_oath_count, ally_id, ally_name, leader_id, crest_id, crest_large_id, ally_crest_id, new_leader_id) VALUES (300000020, 'DarkFarmers', 5, 5000, 0, 0, 0, 0, NULL, 270004078, 0, 0, 0, 0); +INSERT IGNORE INTO items (owner_id, object_id, item_id, count, enchant_level, loc, loc_data) VALUES (300000020, 272000020, 57, 100000000, 0, 'CLANWH', 0); +INSERT IGNORE INTO clan_data (clan_id, clan_name, clan_level, reputation_score, hasCastle, blood_alliance_count, blood_oath_count, ally_id, ally_name, leader_id, crest_id, crest_large_id, ally_crest_id, new_leader_id) VALUES (300000021, 'LostWatch', 5, 5000, 0, 0, 0, 0, NULL, 270003934, 0, 0, 0, 0); +INSERT IGNORE INTO items (owner_id, object_id, item_id, count, enchant_level, loc, loc_data) VALUES (300000021, 272000021, 57, 100000000, 0, 'CLANWH', 0); +INSERT IGNORE INTO clan_data (clan_id, clan_name, clan_level, reputation_score, hasCastle, blood_alliance_count, blood_oath_count, ally_id, ally_name, leader_id, crest_id, crest_large_id, ally_crest_id, new_leader_id) VALUES (300000022, 'BrokenBandits', 5, 5000, 0, 0, 0, 0, NULL, 270002744, 0, 0, 0, 0); +INSERT IGNORE INTO items (owner_id, object_id, item_id, count, enchant_level, loc, loc_data) VALUES (300000022, 272000022, 57, 100000000, 0, 'CLANWH', 0); +INSERT IGNORE INTO clan_data (clan_id, clan_name, clan_level, reputation_score, hasCastle, blood_alliance_count, blood_oath_count, ally_id, ally_name, leader_id, crest_id, crest_large_id, ally_crest_id, new_leader_id) VALUES (300000023, 'DrunkCrew', 5, 5000, 0, 0, 0, 0, NULL, 270001488, 0, 0, 0, 0); +INSERT IGNORE INTO items (owner_id, object_id, item_id, count, enchant_level, loc, loc_data) VALUES (300000023, 272000023, 57, 100000000, 0, 'CLANWH', 0); +INSERT IGNORE INTO clan_data (clan_id, clan_name, clan_level, reputation_score, hasCastle, blood_alliance_count, blood_oath_count, ally_id, ally_name, leader_id, crest_id, crest_large_id, ally_crest_id, new_leader_id) VALUES (300000024, 'BrokenFarmers', 5, 5000, 0, 0, 0, 0, NULL, 270003974, 0, 0, 0, 0); +INSERT IGNORE INTO items (owner_id, object_id, item_id, count, enchant_level, loc, loc_data) VALUES (300000024, 272000024, 57, 100000000, 0, 'CLANWH', 0); +INSERT IGNORE INTO clan_data (clan_id, clan_name, clan_level, reputation_score, hasCastle, blood_alliance_count, blood_oath_count, ally_id, ally_name, leader_id, crest_id, crest_large_id, ally_crest_id, new_leader_id) VALUES (300000025, 'RoyalKnights', 5, 5000, 0, 0, 0, 0, NULL, 270004949, 0, 0, 0, 0); +INSERT IGNORE INTO items (owner_id, object_id, item_id, count, enchant_level, loc, loc_data) VALUES (300000025, 272000025, 57, 100000000, 0, 'CLANWH', 0); +INSERT IGNORE INTO clan_data (clan_id, clan_name, clan_level, reputation_score, hasCastle, blood_alliance_count, blood_oath_count, ally_id, ally_name, leader_id, crest_id, crest_large_id, ally_crest_id, new_leader_id) VALUES (300000026, 'SleepyBlades', 5, 5000, 0, 0, 0, 0, NULL, 270005155, 0, 0, 0, 0); +INSERT IGNORE INTO items (owner_id, object_id, item_id, count, enchant_level, loc, loc_data) VALUES (300000026, 272000026, 57, 100000000, 0, 'CLANWH', 0); +INSERT IGNORE INTO clan_data (clan_id, clan_name, clan_level, reputation_score, hasCastle, blood_alliance_count, blood_oath_count, ally_id, ally_name, leader_id, crest_id, crest_large_id, ally_crest_id, new_leader_id) VALUES (300000027, 'CTaR', 5, 5000, 0, 0, 0, 0, NULL, 270004611, 0, 0, 0, 0); +INSERT IGNORE INTO items (owner_id, object_id, item_id, count, enchant_level, loc, loc_data) VALUES (300000027, 272000027, 57, 100000000, 0, 'CLANWH', 0); +INSERT IGNORE INTO clan_data (clan_id, clan_name, clan_level, reputation_score, hasCastle, blood_alliance_count, blood_oath_count, ally_id, ally_name, leader_id, crest_id, crest_large_id, ally_crest_id, new_leader_id) VALUES (300000028, 'GrimCrew', 5, 5000, 0, 0, 0, 0, NULL, 270002598, 0, 0, 0, 0); +INSERT IGNORE INTO items (owner_id, object_id, item_id, count, enchant_level, loc, loc_data) VALUES (300000028, 272000028, 57, 100000000, 0, 'CLANWH', 0); +INSERT IGNORE INTO clan_data (clan_id, clan_name, clan_level, reputation_score, hasCastle, blood_alliance_count, blood_oath_count, ally_id, ally_name, leader_id, crest_id, crest_large_id, ally_crest_id, new_leader_id) VALUES (300000029, 'SleepyLegion', 5, 5000, 0, 0, 0, 0, NULL, 270001815, 0, 0, 0, 0); +INSERT IGNORE INTO items (owner_id, object_id, item_id, count, enchant_level, loc, loc_data) VALUES (300000029, 272000029, 57, 100000000, 0, 'CLANWH', 0); +INSERT IGNORE INTO clan_data (clan_id, clan_name, clan_level, reputation_score, hasCastle, blood_alliance_count, blood_oath_count, ally_id, ally_name, leader_id, crest_id, crest_large_id, ally_crest_id, new_leader_id) VALUES (300000030, 'LostWolves', 5, 5000, 0, 0, 0, 0, NULL, 270003770, 0, 0, 0, 0); +INSERT IGNORE INTO items (owner_id, object_id, item_id, count, enchant_level, loc, loc_data) VALUES (300000030, 272000030, 57, 100000000, 0, 'CLANWH', 0); +INSERT IGNORE INTO clan_data (clan_id, clan_name, clan_level, reputation_score, hasCastle, blood_alliance_count, blood_oath_count, ally_id, ally_name, leader_id, crest_id, crest_large_id, ally_crest_id, new_leader_id) VALUES (300000031, 'WildSyndicate', 5, 5000, 0, 0, 0, 0, NULL, 270001679, 0, 0, 0, 0); +INSERT IGNORE INTO items (owner_id, object_id, item_id, count, enchant_level, loc, loc_data) VALUES (300000031, 272000031, 57, 100000000, 0, 'CLANWH', 0); +INSERT IGNORE INTO clan_data (clan_id, clan_name, clan_level, reputation_score, hasCastle, blood_alliance_count, blood_oath_count, ally_id, ally_name, leader_id, crest_id, crest_large_id, ally_crest_id, new_leader_id) VALUES (300000032, 'FirstLegion', 5, 5000, 0, 0, 0, 0, NULL, 270001638, 0, 0, 0, 0); +INSERT IGNORE INTO items (owner_id, object_id, item_id, count, enchant_level, loc, loc_data) VALUES (300000032, 272000032, 57, 100000000, 0, 'CLANWH', 0); +INSERT IGNORE INTO clan_data (clan_id, clan_name, clan_level, reputation_score, hasCastle, blood_alliance_count, blood_oath_count, ally_id, ally_name, leader_id, crest_id, crest_large_id, ally_crest_id, new_leader_id) VALUES (300000033, 'GoldenCouncil', 5, 5000, 0, 0, 0, 0, NULL, 270001634, 0, 0, 0, 0); +INSERT IGNORE INTO items (owner_id, object_id, item_id, count, enchant_level, loc, loc_data) VALUES (300000033, 272000033, 57, 100000000, 0, 'CLANWH', 0); +INSERT IGNORE INTO clan_data (clan_id, clan_name, clan_level, reputation_score, hasCastle, blood_alliance_count, blood_oath_count, ally_id, ally_name, leader_id, crest_id, crest_large_id, ally_crest_id, new_leader_id) VALUES (300000034, 'GpyxuHa', 5, 5000, 0, 0, 0, 0, NULL, 270003886, 0, 0, 0, 0); +INSERT IGNORE INTO items (owner_id, object_id, item_id, count, enchant_level, loc, loc_data) VALUES (300000034, 272000034, 57, 100000000, 0, 'CLANWH', 0); +INSERT IGNORE INTO clan_data (clan_id, clan_name, clan_level, reputation_score, hasCastle, blood_alliance_count, blood_oath_count, ally_id, ally_name, leader_id, crest_id, crest_large_id, ally_crest_id, new_leader_id) VALUES (300000035, 'FirstWatch', 5, 5000, 0, 0, 0, 0, NULL, 270003971, 0, 0, 0, 0); +INSERT IGNORE INTO items (owner_id, object_id, item_id, count, enchant_level, loc, loc_data) VALUES (300000035, 272000035, 57, 100000000, 0, 'CLANWH', 0); +INSERT IGNORE INTO clan_data (clan_id, clan_name, clan_level, reputation_score, hasCastle, blood_alliance_count, blood_oath_count, ally_id, ally_name, leader_id, crest_id, crest_large_id, ally_crest_id, new_leader_id) VALUES (300000036, 'RoyalSyndicate', 5, 5000, 0, 0, 0, 0, NULL, 270003107, 0, 0, 0, 0); +INSERT IGNORE INTO items (owner_id, object_id, item_id, count, enchant_level, loc, loc_data) VALUES (300000036, 272000036, 57, 100000000, 0, 'CLANWH', 0); +INSERT IGNORE INTO clan_data (clan_id, clan_name, clan_level, reputation_score, hasCastle, blood_alliance_count, blood_oath_count, ally_id, ally_name, leader_id, crest_id, crest_large_id, ally_crest_id, new_leader_id) VALUES (300000037, 'RedCrew91', 5, 5000, 0, 0, 0, 0, NULL, 270001607, 0, 0, 0, 0); +INSERT IGNORE INTO items (owner_id, object_id, item_id, count, enchant_level, loc, loc_data) VALUES (300000037, 272000037, 57, 100000000, 0, 'CLANWH', 0); +INSERT IGNORE INTO clan_data (clan_id, clan_name, clan_level, reputation_score, hasCastle, blood_alliance_count, blood_oath_count, ally_id, ally_name, leader_id, crest_id, crest_large_id, ally_crest_id, new_leader_id) VALUES (300000038, 'BrokenFarmers36', 5, 5000, 0, 0, 0, 0, NULL, 270005437, 0, 0, 0, 0); +INSERT IGNORE INTO items (owner_id, object_id, item_id, count, enchant_level, loc, loc_data) VALUES (300000038, 272000038, 57, 100000000, 0, 'CLANWH', 0); +INSERT IGNORE INTO clan_data (clan_id, clan_name, clan_level, reputation_score, hasCastle, blood_alliance_count, blood_oath_count, ally_id, ally_name, leader_id, crest_id, crest_large_id, ally_crest_id, new_leader_id) VALUES (300000039, 'OIIpu4HuHa99', 5, 5000, 0, 0, 0, 0, NULL, 270001080, 0, 0, 0, 0); +INSERT IGNORE INTO items (owner_id, object_id, item_id, count, enchant_level, loc, loc_data) VALUES (300000039, 272000039, 57, 100000000, 0, 'CLANWH', 0); +INSERT IGNORE INTO clan_data (clan_id, clan_name, clan_level, reputation_score, hasCastle, blood_alliance_count, blood_oath_count, ally_id, ally_name, leader_id, crest_id, crest_large_id, ally_crest_id, new_leader_id) VALUES (300000040, 'DarkSyndicate', 5, 5000, 0, 0, 0, 0, NULL, 270002326, 0, 0, 0, 0); +INSERT IGNORE INTO items (owner_id, object_id, item_id, count, enchant_level, loc, loc_data) VALUES (300000040, 272000040, 57, 100000000, 0, 'CLANWH', 0); +INSERT IGNORE INTO clan_data (clan_id, clan_name, clan_level, reputation_score, hasCastle, blood_alliance_count, blood_oath_count, ally_id, ally_name, leader_id, crest_id, crest_large_id, ally_crest_id, new_leader_id) VALUES (300000041, 'SilentPact', 5, 5000, 0, 0, 0, 0, NULL, 270004101, 0, 0, 0, 0); +INSERT IGNORE INTO items (owner_id, object_id, item_id, count, enchant_level, loc, loc_data) VALUES (300000041, 272000041, 57, 100000000, 0, 'CLANWH', 0); +INSERT IGNORE INTO clan_data (clan_id, clan_name, clan_level, reputation_score, hasCastle, blood_alliance_count, blood_oath_count, ally_id, ally_name, leader_id, crest_id, crest_large_id, ally_crest_id, new_leader_id) VALUES (300000042, 'WildPact', 5, 5000, 0, 0, 0, 0, NULL, 270004952, 0, 0, 0, 0); +INSERT IGNORE INTO items (owner_id, object_id, item_id, count, enchant_level, loc, loc_data) VALUES (300000042, 272000042, 57, 100000000, 0, 'CLANWH', 0); +INSERT IGNORE INTO clan_data (clan_id, clan_name, clan_level, reputation_score, hasCastle, blood_alliance_count, blood_oath_count, ally_id, ally_name, leader_id, crest_id, crest_large_id, ally_crest_id, new_leader_id) VALUES (300000043, 'FirstCouncil', 5, 5000, 0, 0, 0, 0, NULL, 270003795, 0, 0, 0, 0); +INSERT IGNORE INTO items (owner_id, object_id, item_id, count, enchant_level, loc, loc_data) VALUES (300000043, 272000043, 57, 100000000, 0, 'CLANWH', 0); +INSERT IGNORE INTO clan_data (clan_id, clan_name, clan_level, reputation_score, hasCastle, blood_alliance_count, blood_oath_count, ally_id, ally_name, leader_id, crest_id, crest_large_id, ally_crest_id, new_leader_id) VALUES (300000044, 'RoyalBlades', 5, 5000, 0, 0, 0, 0, NULL, 270002086, 0, 0, 0, 0); +INSERT IGNORE INTO items (owner_id, object_id, item_id, count, enchant_level, loc, loc_data) VALUES (300000044, 272000044, 57, 100000000, 0, 'CLANWH', 0); +INSERT IGNORE INTO clan_data (clan_id, clan_name, clan_level, reputation_score, hasCastle, blood_alliance_count, blood_oath_count, ally_id, ally_name, leader_id, crest_id, crest_large_id, ally_crest_id, new_leader_id) VALUES (300000045, 'NorthWatch', 5, 5000, 0, 0, 0, 0, NULL, 270004658, 0, 0, 0, 0); +INSERT IGNORE INTO items (owner_id, object_id, item_id, count, enchant_level, loc, loc_data) VALUES (300000045, 272000045, 57, 100000000, 0, 'CLANWH', 0); +INSERT IGNORE INTO clan_data (clan_id, clan_name, clan_level, reputation_score, hasCastle, blood_alliance_count, blood_oath_count, ally_id, ally_name, leader_id, crest_id, crest_large_id, ally_crest_id, new_leader_id) VALUES (300000046, 'FreeFamily', 5, 5000, 0, 0, 0, 0, NULL, 270003549, 0, 0, 0, 0); +INSERT IGNORE INTO items (owner_id, object_id, item_id, count, enchant_level, loc, loc_data) VALUES (300000046, 272000046, 57, 100000000, 0, 'CLANWH', 0); +INSERT IGNORE INTO clan_data (clan_id, clan_name, clan_level, reputation_score, hasCastle, blood_alliance_count, blood_oath_count, ally_id, ally_name, leader_id, crest_id, crest_large_id, ally_crest_id, new_leader_id) VALUES (300000047, 'OIIpu4HuHa79', 5, 5000, 0, 0, 0, 0, NULL, 270002134, 0, 0, 0, 0); +INSERT IGNORE INTO items (owner_id, object_id, item_id, count, enchant_level, loc, loc_data) VALUES (300000047, 272000047, 57, 100000000, 0, 'CLANWH', 0); +INSERT IGNORE INTO clan_data (clan_id, clan_name, clan_level, reputation_score, hasCastle, blood_alliance_count, blood_oath_count, ally_id, ally_name, leader_id, crest_id, crest_large_id, ally_crest_id, new_leader_id) VALUES (300000048, 'FreeCouncil', 5, 5000, 0, 0, 0, 0, NULL, 270002211, 0, 0, 0, 0); +INSERT IGNORE INTO items (owner_id, object_id, item_id, count, enchant_level, loc, loc_data) VALUES (300000048, 272000048, 57, 100000000, 0, 'CLANWH', 0); +INSERT IGNORE INTO clan_data (clan_id, clan_name, clan_level, reputation_score, hasCastle, blood_alliance_count, blood_oath_count, ally_id, ally_name, leader_id, crest_id, crest_large_id, ally_crest_id, new_leader_id) VALUES (300000049, 'CTaR33', 5, 5000, 0, 0, 0, 0, NULL, 270001511, 0, 0, 0, 0); +INSERT IGNORE INTO items (owner_id, object_id, item_id, count, enchant_level, loc, loc_data) VALUES (300000049, 272000049, 57, 100000000, 0, 'CLANWH', 0); +INSERT IGNORE INTO clan_data (clan_id, clan_name, clan_level, reputation_score, hasCastle, blood_alliance_count, blood_oath_count, ally_id, ally_name, leader_id, crest_id, crest_large_id, ally_crest_id, new_leader_id) VALUES (300000050, 'RedBlades', 5, 5000, 0, 0, 0, 0, NULL, 270001073, 0, 0, 0, 0); +INSERT IGNORE INTO items (owner_id, object_id, item_id, count, enchant_level, loc, loc_data) VALUES (300000050, 272000050, 57, 100000000, 0, 'CLANWH', 0); +INSERT IGNORE INTO clan_data (clan_id, clan_name, clan_level, reputation_score, hasCastle, blood_alliance_count, blood_oath_count, ally_id, ally_name, leader_id, crest_id, crest_large_id, ally_crest_id, new_leader_id) VALUES (300000051, 'OIIpu4HuHa8', 5, 5000, 1, 0, 0, 0, NULL, 270002789, 0, 0, 0, 0); +INSERT IGNORE INTO items (owner_id, object_id, item_id, count, enchant_level, loc, loc_data) VALUES (300000051, 272000051, 57, 100000000, 0, 'CLANWH', 0); +INSERT IGNORE INTO clan_data (clan_id, clan_name, clan_level, reputation_score, hasCastle, blood_alliance_count, blood_oath_count, ally_id, ally_name, leader_id, crest_id, crest_large_id, ally_crest_id, new_leader_id) VALUES (300000052, 'HolyBrotherhood', 5, 5000, 2, 0, 0, 0, NULL, 270002078, 0, 0, 0, 0); +INSERT IGNORE INTO items (owner_id, object_id, item_id, count, enchant_level, loc, loc_data) VALUES (300000052, 272000052, 57, 100000000, 0, 'CLANWH', 0); +INSERT IGNORE INTO clan_data (clan_id, clan_name, clan_level, reputation_score, hasCastle, blood_alliance_count, blood_oath_count, ally_id, ally_name, leader_id, crest_id, crest_large_id, ally_crest_id, new_leader_id) VALUES (300000053, 'RBapguR', 5, 5000, 3, 0, 0, 0, NULL, 270001196, 0, 0, 0, 0); +INSERT IGNORE INTO items (owner_id, object_id, item_id, count, enchant_level, loc, loc_data) VALUES (300000053, 272000053, 57, 100000000, 0, 'CLANWH', 0); +INSERT IGNORE INTO clan_data (clan_id, clan_name, clan_level, reputation_score, hasCastle, blood_alliance_count, blood_oath_count, ally_id, ally_name, leader_id, crest_id, crest_large_id, ally_crest_id, new_leader_id) VALUES (300000054, 'FreeWolves', 5, 5000, 5, 0, 0, 0, NULL, 270002192, 0, 0, 0, 0); +INSERT IGNORE INTO items (owner_id, object_id, item_id, count, enchant_level, loc, loc_data) VALUES (300000054, 272000054, 57, 100000000, 0, 'CLANWH', 0); +INSERT IGNORE INTO clan_data (clan_id, clan_name, clan_level, reputation_score, hasCastle, blood_alliance_count, blood_oath_count, ally_id, ally_name, leader_id, crest_id, crest_large_id, ally_crest_id, new_leader_id) VALUES (300000055, 'GpyxuHa11', 5, 5000, 0, 0, 0, 0, NULL, 270001182, 0, 0, 0, 0); +INSERT IGNORE INTO items (owner_id, object_id, item_id, count, enchant_level, loc, loc_data) VALUES (300000055, 272000055, 57, 100000000, 0, 'CLANWH', 0); +INSERT IGNORE INTO clan_data (clan_id, clan_name, clan_level, reputation_score, hasCastle, blood_alliance_count, blood_oath_count, ally_id, ally_name, leader_id, crest_id, crest_large_id, ally_crest_id, new_leader_id) VALUES (300000056, 'GpyxuHa75', 5, 5000, 0, 0, 0, 0, NULL, 270001972, 0, 0, 0, 0); +INSERT IGNORE INTO items (owner_id, object_id, item_id, count, enchant_level, loc, loc_data) VALUES (300000056, 272000056, 57, 100000000, 0, 'CLANWH', 0); +INSERT IGNORE INTO clan_data (clan_id, clan_name, clan_level, reputation_score, hasCastle, blood_alliance_count, blood_oath_count, ally_id, ally_name, leader_id, crest_id, crest_large_id, ally_crest_id, new_leader_id) VALUES (300000057, 'RoyalBrotherhood', 5, 5000, 0, 0, 0, 0, NULL, 270001842, 0, 0, 0, 0); +INSERT IGNORE INTO items (owner_id, object_id, item_id, count, enchant_level, loc, loc_data) VALUES (300000057, 272000057, 57, 100000000, 0, 'CLANWH', 0); +INSERT IGNORE INTO clan_data (clan_id, clan_name, clan_level, reputation_score, hasCastle, blood_alliance_count, blood_oath_count, ally_id, ally_name, leader_id, crest_id, crest_large_id, ally_crest_id, new_leader_id) VALUES (300000058, 'ApTeJIb', 5, 5000, 0, 0, 0, 0, NULL, 270002592, 0, 0, 0, 0); +INSERT IGNORE INTO items (owner_id, object_id, item_id, count, enchant_level, loc, loc_data) VALUES (300000058, 272000058, 57, 100000000, 0, 'CLANWH', 0); +INSERT IGNORE INTO clan_data (clan_id, clan_name, clan_level, reputation_score, hasCastle, blood_alliance_count, blood_oath_count, ally_id, ally_name, leader_id, crest_id, crest_large_id, ally_crest_id, new_leader_id) VALUES (300000059, 'MadBandits', 5, 5000, 0, 0, 0, 0, NULL, 270003146, 0, 0, 0, 0); +INSERT IGNORE INTO items (owner_id, object_id, item_id, count, enchant_level, loc, loc_data) VALUES (300000059, 272000059, 57, 100000000, 0, 'CLANWH', 0); +INSERT IGNORE INTO clan_data (clan_id, clan_name, clan_level, reputation_score, hasCastle, blood_alliance_count, blood_oath_count, ally_id, ally_name, leader_id, crest_id, crest_large_id, ally_crest_id, new_leader_id) VALUES (300000060, 'GpyxuHa32', 5, 5000, 0, 0, 0, 0, NULL, 270001172, 0, 0, 0, 0); +INSERT IGNORE INTO items (owner_id, object_id, item_id, count, enchant_level, loc, loc_data) VALUES (300000060, 272000060, 57, 100000000, 0, 'CLANWH', 0); +INSERT IGNORE INTO clan_data (clan_id, clan_name, clan_level, reputation_score, hasCastle, blood_alliance_count, blood_oath_count, ally_id, ally_name, leader_id, crest_id, crest_large_id, ally_crest_id, new_leader_id) VALUES (300000061, 'SilentCouncil', 5, 5000, 0, 0, 0, 0, NULL, 270001691, 0, 0, 0, 0); +INSERT IGNORE INTO items (owner_id, object_id, item_id, count, enchant_level, loc, loc_data) VALUES (300000061, 272000061, 57, 100000000, 0, 'CLANWH', 0); +INSERT IGNORE INTO clan_data (clan_id, clan_name, clan_level, reputation_score, hasCastle, blood_alliance_count, blood_oath_count, ally_id, ally_name, leader_id, crest_id, crest_large_id, ally_crest_id, new_leader_id) VALUES (300000062, 'SleepyWolves', 5, 5000, 0, 0, 0, 0, NULL, 270001868, 0, 0, 0, 0); +INSERT IGNORE INTO items (owner_id, object_id, item_id, count, enchant_level, loc, loc_data) VALUES (300000062, 272000062, 57, 100000000, 0, 'CLANWH', 0); +INSERT IGNORE INTO clan_data (clan_id, clan_name, clan_level, reputation_score, hasCastle, blood_alliance_count, blood_oath_count, ally_id, ally_name, leader_id, crest_id, crest_large_id, ally_crest_id, new_leader_id) VALUES (300000063, 'BlackPact', 5, 5000, 0, 0, 0, 0, NULL, 270004088, 0, 0, 0, 0); +INSERT IGNORE INTO items (owner_id, object_id, item_id, count, enchant_level, loc, loc_data) VALUES (300000063, 272000063, 57, 100000000, 0, 'CLANWH', 0); +INSERT IGNORE INTO clan_data (clan_id, clan_name, clan_level, reputation_score, hasCastle, blood_alliance_count, blood_oath_count, ally_id, ally_name, leader_id, crest_id, crest_large_id, ally_crest_id, new_leader_id) VALUES (300000064, 'FirstPact77', 5, 5000, 0, 0, 0, 0, NULL, 270001310, 0, 0, 0, 0); +INSERT IGNORE INTO items (owner_id, object_id, item_id, count, enchant_level, loc, loc_data) VALUES (300000064, 272000064, 57, 100000000, 0, 'CLANWH', 0); +INSERT IGNORE INTO clan_data (clan_id, clan_name, clan_level, reputation_score, hasCastle, blood_alliance_count, blood_oath_count, ally_id, ally_name, leader_id, crest_id, crest_large_id, ally_crest_id, new_leader_id) VALUES (300000065, 'FirstBandits', 5, 5000, 0, 0, 0, 0, NULL, 270001555, 0, 0, 0, 0); +INSERT IGNORE INTO items (owner_id, object_id, item_id, count, enchant_level, loc, loc_data) VALUES (300000065, 272000065, 57, 100000000, 0, 'CLANWH', 0); +INSERT IGNORE INTO clan_data (clan_id, clan_name, clan_level, reputation_score, hasCastle, blood_alliance_count, blood_oath_count, ally_id, ally_name, leader_id, crest_id, crest_large_id, ally_crest_id, new_leader_id) VALUES (300000066, 'GoldenCompany', 5, 5000, 0, 0, 0, 0, NULL, 270003820, 0, 0, 0, 0); +INSERT IGNORE INTO items (owner_id, object_id, item_id, count, enchant_level, loc, loc_data) VALUES (300000066, 272000066, 57, 100000000, 0, 'CLANWH', 0); +INSERT IGNORE INTO clan_data (clan_id, clan_name, clan_level, reputation_score, hasCastle, blood_alliance_count, blood_oath_count, ally_id, ally_name, leader_id, crest_id, crest_large_id, ally_crest_id, new_leader_id) VALUES (300000067, 'NorthHunters', 5, 5000, 0, 0, 0, 0, NULL, 270001687, 0, 0, 0, 0); +INSERT IGNORE INTO items (owner_id, object_id, item_id, count, enchant_level, loc, loc_data) VALUES (300000067, 272000067, 57, 100000000, 0, 'CLANWH', 0); +INSERT IGNORE INTO clan_data (clan_id, clan_name, clan_level, reputation_score, hasCastle, blood_alliance_count, blood_oath_count, ally_id, ally_name, leader_id, crest_id, crest_large_id, ally_crest_id, new_leader_id) VALUES (300000068, 'IronWatch', 5, 5000, 0, 0, 0, 0, NULL, 270001967, 0, 0, 0, 0); +INSERT IGNORE INTO items (owner_id, object_id, item_id, count, enchant_level, loc, loc_data) VALUES (300000068, 272000068, 57, 100000000, 0, 'CLANWH', 0); +INSERT IGNORE INTO clan_data (clan_id, clan_name, clan_level, reputation_score, hasCastle, blood_alliance_count, blood_oath_count, ally_id, ally_name, leader_id, crest_id, crest_large_id, ally_crest_id, new_leader_id) VALUES (300000069, 'GoldenRavens', 5, 5000, 0, 0, 0, 0, NULL, 270003412, 0, 0, 0, 0); +INSERT IGNORE INTO items (owner_id, object_id, item_id, count, enchant_level, loc, loc_data) VALUES (300000069, 272000069, 57, 100000000, 0, 'CLANWH', 0); +INSERT IGNORE INTO clan_data (clan_id, clan_name, clan_level, reputation_score, hasCastle, blood_alliance_count, blood_oath_count, ally_id, ally_name, leader_id, crest_id, crest_large_id, ally_crest_id, new_leader_id) VALUES (300000070, 'RedBlades51', 5, 5000, 0, 0, 0, 0, NULL, 270002278, 0, 0, 0, 0); +INSERT IGNORE INTO items (owner_id, object_id, item_id, count, enchant_level, loc, loc_data) VALUES (300000070, 272000070, 57, 100000000, 0, 'CLANWH', 0); +INSERT IGNORE INTO clan_data (clan_id, clan_name, clan_level, reputation_score, hasCastle, blood_alliance_count, blood_oath_count, ally_id, ally_name, leader_id, crest_id, crest_large_id, ally_crest_id, new_leader_id) VALUES (300000071, 'NorthCompany', 5, 5000, 0, 0, 0, 0, NULL, 270004183, 0, 0, 0, 0); +INSERT IGNORE INTO items (owner_id, object_id, item_id, count, enchant_level, loc, loc_data) VALUES (300000071, 272000071, 57, 100000000, 0, 'CLANWH', 0); +INSERT IGNORE INTO clan_data (clan_id, clan_name, clan_level, reputation_score, hasCastle, blood_alliance_count, blood_oath_count, ally_id, ally_name, leader_id, crest_id, crest_large_id, ally_crest_id, new_leader_id) VALUES (300000072, 'ApTeJIb56', 5, 5000, 0, 0, 0, 0, NULL, 270001057, 0, 0, 0, 0); +INSERT IGNORE INTO items (owner_id, object_id, item_id, count, enchant_level, loc, loc_data) VALUES (300000072, 272000072, 57, 100000000, 0, 'CLANWH', 0); +INSERT IGNORE INTO clan_data (clan_id, clan_name, clan_level, reputation_score, hasCastle, blood_alliance_count, blood_oath_count, ally_id, ally_name, leader_id, crest_id, crest_large_id, ally_crest_id, new_leader_id) VALUES (300000073, 'GpyxuHa68', 5, 5000, 0, 0, 0, 0, NULL, 270002418, 0, 0, 0, 0); +INSERT IGNORE INTO items (owner_id, object_id, item_id, count, enchant_level, loc, loc_data) VALUES (300000073, 272000073, 57, 100000000, 0, 'CLANWH', 0); +INSERT IGNORE INTO clan_data (clan_id, clan_name, clan_level, reputation_score, hasCastle, blood_alliance_count, blood_oath_count, ally_id, ally_name, leader_id, crest_id, crest_large_id, ally_crest_id, new_leader_id) VALUES (300000074, 'LostWolves89', 5, 5000, 0, 0, 0, 0, NULL, 270001708, 0, 0, 0, 0); +INSERT IGNORE INTO items (owner_id, object_id, item_id, count, enchant_level, loc, loc_data) VALUES (300000074, 272000074, 57, 100000000, 0, 'CLANWH', 0); +INSERT IGNORE INTO clan_data (clan_id, clan_name, clan_level, reputation_score, hasCastle, blood_alliance_count, blood_oath_count, ally_id, ally_name, leader_id, crest_id, crest_large_id, ally_crest_id, new_leader_id) VALUES (300000075, 'DrunkFamily', 5, 5000, 0, 0, 0, 0, NULL, 270001083, 0, 0, 0, 0); +INSERT IGNORE INTO items (owner_id, object_id, item_id, count, enchant_level, loc, loc_data) VALUES (300000075, 272000075, 57, 100000000, 0, 'CLANWH', 0); +INSERT IGNORE INTO clan_data (clan_id, clan_name, clan_level, reputation_score, hasCastle, blood_alliance_count, blood_oath_count, ally_id, ally_name, leader_id, crest_id, crest_large_id, ally_crest_id, new_leader_id) VALUES (300000076, 'GrimBlades', 5, 5000, 0, 0, 0, 0, NULL, 270001834, 0, 0, 0, 0); +INSERT IGNORE INTO items (owner_id, object_id, item_id, count, enchant_level, loc, loc_data) VALUES (300000076, 272000076, 57, 100000000, 0, 'CLANWH', 0); +INSERT IGNORE INTO clan_data (clan_id, clan_name, clan_level, reputation_score, hasCastle, blood_alliance_count, blood_oath_count, ally_id, ally_name, leader_id, crest_id, crest_large_id, ally_crest_id, new_leader_id) VALUES (300000077, 'GoldenSyndicate', 5, 5000, 0, 0, 0, 0, NULL, 270001202, 0, 0, 0, 0); +INSERT IGNORE INTO items (owner_id, object_id, item_id, count, enchant_level, loc, loc_data) VALUES (300000077, 272000077, 57, 100000000, 0, 'CLANWH', 0); +INSERT IGNORE INTO clan_data (clan_id, clan_name, clan_level, reputation_score, hasCastle, blood_alliance_count, blood_oath_count, ally_id, ally_name, leader_id, crest_id, crest_large_id, ally_crest_id, new_leader_id) VALUES (300000078, 'BrokenPact', 5, 5000, 0, 0, 0, 0, NULL, 270005058, 0, 0, 0, 0); +INSERT IGNORE INTO items (owner_id, object_id, item_id, count, enchant_level, loc, loc_data) VALUES (300000078, 272000078, 57, 100000000, 0, 'CLANWH', 0); +INSERT IGNORE INTO clan_data (clan_id, clan_name, clan_level, reputation_score, hasCastle, blood_alliance_count, blood_oath_count, ally_id, ally_name, leader_id, crest_id, crest_large_id, ally_crest_id, new_leader_id) VALUES (300000079, 'LostKnights', 5, 5000, 0, 0, 0, 0, NULL, 270001124, 0, 0, 0, 0); +INSERT IGNORE INTO items (owner_id, object_id, item_id, count, enchant_level, loc, loc_data) VALUES (300000079, 272000079, 57, 100000000, 0, 'CLANWH', 0); +INSERT IGNORE INTO clan_data (clan_id, clan_name, clan_level, reputation_score, hasCastle, blood_alliance_count, blood_oath_count, ally_id, ally_name, leader_id, crest_id, crest_large_id, ally_crest_id, new_leader_id) VALUES (300000080, 'DrunkKnights', 5, 5000, 0, 0, 0, 0, NULL, 270001588, 0, 0, 0, 0); +INSERT IGNORE INTO items (owner_id, object_id, item_id, count, enchant_level, loc, loc_data) VALUES (300000080, 272000080, 57, 100000000, 0, 'CLANWH', 0); +INSERT IGNORE INTO clan_data (clan_id, clan_name, clan_level, reputation_score, hasCastle, blood_alliance_count, blood_oath_count, ally_id, ally_name, leader_id, crest_id, crest_large_id, ally_crest_id, new_leader_id) VALUES (300000081, 'LastWolves', 5, 5000, 0, 0, 0, 0, NULL, 270001401, 0, 0, 0, 0); +INSERT IGNORE INTO items (owner_id, object_id, item_id, count, enchant_level, loc, loc_data) VALUES (300000081, 272000081, 57, 100000000, 0, 'CLANWH', 0); +INSERT IGNORE INTO clan_data (clan_id, clan_name, clan_level, reputation_score, hasCastle, blood_alliance_count, blood_oath_count, ally_id, ally_name, leader_id, crest_id, crest_large_id, ally_crest_id, new_leader_id) VALUES (300000082, 'BaTara77', 5, 5000, 0, 0, 0, 0, NULL, 270004185, 0, 0, 0, 0); +INSERT IGNORE INTO items (owner_id, object_id, item_id, count, enchant_level, loc, loc_data) VALUES (300000082, 272000082, 57, 100000000, 0, 'CLANWH', 0); +INSERT IGNORE INTO clan_data (clan_id, clan_name, clan_level, reputation_score, hasCastle, blood_alliance_count, blood_oath_count, ally_id, ally_name, leader_id, crest_id, crest_large_id, ally_crest_id, new_leader_id) VALUES (300000083, '6paTBa26', 5, 5000, 0, 0, 0, 0, NULL, 270002512, 0, 0, 0, 0); +INSERT IGNORE INTO items (owner_id, object_id, item_id, count, enchant_level, loc, loc_data) VALUES (300000083, 272000083, 57, 100000000, 0, 'CLANWH', 0); +INSERT IGNORE INTO clan_data (clan_id, clan_name, clan_level, reputation_score, hasCastle, blood_alliance_count, blood_oath_count, ally_id, ally_name, leader_id, crest_id, crest_large_id, ally_crest_id, new_leader_id) VALUES (300000084, 'IronBrotherhood', 5, 5000, 0, 0, 0, 0, NULL, 270001658, 0, 0, 0, 0); +INSERT IGNORE INTO items (owner_id, object_id, item_id, count, enchant_level, loc, loc_data) VALUES (300000084, 272000084, 57, 100000000, 0, 'CLANWH', 0); +INSERT IGNORE INTO clan_data (clan_id, clan_name, clan_level, reputation_score, hasCastle, blood_alliance_count, blood_oath_count, ally_id, ally_name, leader_id, crest_id, crest_large_id, ally_crest_id, new_leader_id) VALUES (300000085, 'SilentBandits', 5, 5000, 0, 0, 0, 0, NULL, 270003864, 0, 0, 0, 0); +INSERT IGNORE INTO items (owner_id, object_id, item_id, count, enchant_level, loc, loc_data) VALUES (300000085, 272000085, 57, 100000000, 0, 'CLANWH', 0); +INSERT IGNORE INTO clan_data (clan_id, clan_name, clan_level, reputation_score, hasCastle, blood_alliance_count, blood_oath_count, ally_id, ally_name, leader_id, crest_id, crest_large_id, ally_crest_id, new_leader_id) VALUES (300000086, 'AngryKnights', 5, 5000, 0, 0, 0, 0, NULL, 270003099, 0, 0, 0, 0); +INSERT IGNORE INTO items (owner_id, object_id, item_id, count, enchant_level, loc, loc_data) VALUES (300000086, 272000086, 57, 100000000, 0, 'CLANWH', 0); +INSERT IGNORE INTO clan_data (clan_id, clan_name, clan_level, reputation_score, hasCastle, blood_alliance_count, blood_oath_count, ally_id, ally_name, leader_id, crest_id, crest_large_id, ally_crest_id, new_leader_id) VALUES (300000087, 'AngryGuard', 5, 5000, 0, 0, 0, 0, NULL, 270001097, 0, 0, 0, 0); +INSERT IGNORE INTO items (owner_id, object_id, item_id, count, enchant_level, loc, loc_data) VALUES (300000087, 272000087, 57, 100000000, 0, 'CLANWH', 0); +INSERT IGNORE INTO clan_data (clan_id, clan_name, clan_level, reputation_score, hasCastle, blood_alliance_count, blood_oath_count, ally_id, ally_name, leader_id, crest_id, crest_large_id, ally_crest_id, new_leader_id) VALUES (300000088, 'HolyBlades', 5, 5000, 0, 0, 0, 0, NULL, 270001960, 0, 0, 0, 0); +INSERT IGNORE INTO items (owner_id, object_id, item_id, count, enchant_level, loc, loc_data) VALUES (300000088, 272000088, 57, 100000000, 0, 'CLANWH', 0); +INSERT IGNORE INTO clan_data (clan_id, clan_name, clan_level, reputation_score, hasCastle, blood_alliance_count, blood_oath_count, ally_id, ally_name, leader_id, crest_id, crest_large_id, ally_crest_id, new_leader_id) VALUES (300000089, 'FreeKnights', 5, 5000, 0, 0, 0, 0, NULL, 270001437, 0, 0, 0, 0); +INSERT IGNORE INTO items (owner_id, object_id, item_id, count, enchant_level, loc, loc_data) VALUES (300000089, 272000089, 57, 100000000, 0, 'CLANWH', 0); +INSERT IGNORE INTO clan_data (clan_id, clan_name, clan_level, reputation_score, hasCastle, blood_alliance_count, blood_oath_count, ally_id, ally_name, leader_id, crest_id, crest_large_id, ally_crest_id, new_leader_id) VALUES (300000090, 'HolyWolves', 5, 5000, 0, 0, 0, 0, NULL, 270001571, 0, 0, 0, 0); +INSERT IGNORE INTO items (owner_id, object_id, item_id, count, enchant_level, loc, loc_data) VALUES (300000090, 272000090, 57, 100000000, 0, 'CLANWH', 0); +INSERT IGNORE INTO clan_data (clan_id, clan_name, clan_level, reputation_score, hasCastle, blood_alliance_count, blood_oath_count, ally_id, ally_name, leader_id, crest_id, crest_large_id, ally_crest_id, new_leader_id) VALUES (300000091, 'DarkBlades', 5, 5000, 0, 0, 0, 0, NULL, 270002832, 0, 0, 0, 0); +INSERT IGNORE INTO items (owner_id, object_id, item_id, count, enchant_level, loc, loc_data) VALUES (300000091, 272000091, 57, 100000000, 0, 'CLANWH', 0); +INSERT IGNORE INTO clan_data (clan_id, clan_name, clan_level, reputation_score, hasCastle, blood_alliance_count, blood_oath_count, ally_id, ally_name, leader_id, crest_id, crest_large_id, ally_crest_id, new_leader_id) VALUES (300000092, 'GrimWatch', 5, 5000, 0, 0, 0, 0, NULL, 270001723, 0, 0, 0, 0); +INSERT IGNORE INTO items (owner_id, object_id, item_id, count, enchant_level, loc, loc_data) VALUES (300000092, 272000092, 57, 100000000, 0, 'CLANWH', 0); +INSERT IGNORE INTO clan_data (clan_id, clan_name, clan_level, reputation_score, hasCastle, blood_alliance_count, blood_oath_count, ally_id, ally_name, leader_id, crest_id, crest_large_id, ally_crest_id, new_leader_id) VALUES (300000093, 'Opga94', 5, 5000, 0, 0, 0, 0, NULL, 270001876, 0, 0, 0, 0); +INSERT IGNORE INTO items (owner_id, object_id, item_id, count, enchant_level, loc, loc_data) VALUES (300000093, 272000093, 57, 100000000, 0, 'CLANWH', 0); +INSERT IGNORE INTO clan_data (clan_id, clan_name, clan_level, reputation_score, hasCastle, blood_alliance_count, blood_oath_count, ally_id, ally_name, leader_id, crest_id, crest_large_id, ally_crest_id, new_leader_id) VALUES (300000094, 'IronFamily', 5, 5000, 0, 0, 0, 0, NULL, 270003031, 0, 0, 0, 0); +INSERT IGNORE INTO items (owner_id, object_id, item_id, count, enchant_level, loc, loc_data) VALUES (300000094, 272000094, 57, 100000000, 0, 'CLANWH', 0); +INSERT IGNORE INTO clan_data (clan_id, clan_name, clan_level, reputation_score, hasCastle, blood_alliance_count, blood_oath_count, ally_id, ally_name, leader_id, crest_id, crest_large_id, ally_crest_id, new_leader_id) VALUES (300000095, 'Go3op', 5, 5000, 0, 0, 0, 0, NULL, 270001306, 0, 0, 0, 0); +INSERT IGNORE INTO items (owner_id, object_id, item_id, count, enchant_level, loc, loc_data) VALUES (300000095, 272000095, 57, 100000000, 0, 'CLANWH', 0); +INSERT IGNORE INTO clan_data (clan_id, clan_name, clan_level, reputation_score, hasCastle, blood_alliance_count, blood_oath_count, ally_id, ally_name, leader_id, crest_id, crest_large_id, ally_crest_id, new_leader_id) VALUES (300000096, 'WildHunters', 5, 5000, 0, 0, 0, 0, NULL, 270002341, 0, 0, 0, 0); +INSERT IGNORE INTO items (owner_id, object_id, item_id, count, enchant_level, loc, loc_data) VALUES (300000096, 272000096, 57, 100000000, 0, 'CLANWH', 0); +INSERT IGNORE INTO clan_data (clan_id, clan_name, clan_level, reputation_score, hasCastle, blood_alliance_count, blood_oath_count, ally_id, ally_name, leader_id, crest_id, crest_large_id, ally_crest_id, new_leader_id) VALUES (300000097, 'BlackLegion', 5, 5000, 0, 0, 0, 0, NULL, 270002390, 0, 0, 0, 0); +INSERT IGNORE INTO items (owner_id, object_id, item_id, count, enchant_level, loc, loc_data) VALUES (300000097, 272000097, 57, 100000000, 0, 'CLANWH', 0); +INSERT IGNORE INTO clan_data (clan_id, clan_name, clan_level, reputation_score, hasCastle, blood_alliance_count, blood_oath_count, ally_id, ally_name, leader_id, crest_id, crest_large_id, ally_crest_id, new_leader_id) VALUES (300000098, 'AngryWolves', 5, 5000, 0, 0, 0, 0, NULL, 270001760, 0, 0, 0, 0); +INSERT IGNORE INTO items (owner_id, object_id, item_id, count, enchant_level, loc, loc_data) VALUES (300000098, 272000098, 57, 100000000, 0, 'CLANWH', 0); +INSERT IGNORE INTO clan_data (clan_id, clan_name, clan_level, reputation_score, hasCastle, blood_alliance_count, blood_oath_count, ally_id, ally_name, leader_id, crest_id, crest_large_id, ally_crest_id, new_leader_id) VALUES (300000099, 'FreeFamily69', 5, 5000, 0, 0, 0, 0, NULL, 270001716, 0, 0, 0, 0); +INSERT IGNORE INTO items (owner_id, object_id, item_id, count, enchant_level, loc, loc_data) VALUES (300000099, 272000099, 57, 100000000, 0, 'CLANWH', 0); +INSERT IGNORE INTO clan_data (clan_id, clan_name, clan_level, reputation_score, hasCastle, blood_alliance_count, blood_oath_count, ally_id, ally_name, leader_id, crest_id, crest_large_id, ally_crest_id, new_leader_id) VALUES (300000100, 'FirstBrotherhood', 5, 5000, 0, 0, 0, 0, NULL, 270002191, 0, 0, 0, 0); +INSERT IGNORE INTO items (owner_id, object_id, item_id, count, enchant_level, loc, loc_data) VALUES (300000100, 272000100, 57, 100000000, 0, 'CLANWH', 0); +INSERT IGNORE INTO clan_data (clan_id, clan_name, clan_level, reputation_score, hasCastle, blood_alliance_count, blood_oath_count, ally_id, ally_name, leader_id, crest_id, crest_large_id, ally_crest_id, new_leader_id) VALUES (300000101, 'HolyCrew', 5, 5000, 0, 0, 0, 0, NULL, 270002914, 0, 0, 0, 0); +INSERT IGNORE INTO items (owner_id, object_id, item_id, count, enchant_level, loc, loc_data) VALUES (300000101, 272000101, 57, 100000000, 0, 'CLANWH', 0); +INSERT IGNORE INTO clan_data (clan_id, clan_name, clan_level, reputation_score, hasCastle, blood_alliance_count, blood_oath_count, ally_id, ally_name, leader_id, crest_id, crest_large_id, ally_crest_id, new_leader_id) VALUES (300000102, 'SilentSyndicate', 5, 5000, 0, 0, 0, 0, NULL, 270001409, 0, 0, 0, 0); +INSERT IGNORE INTO items (owner_id, object_id, item_id, count, enchant_level, loc, loc_data) VALUES (300000102, 272000102, 57, 100000000, 0, 'CLANWH', 0); +INSERT IGNORE INTO clan_data (clan_id, clan_name, clan_level, reputation_score, hasCastle, blood_alliance_count, blood_oath_count, ally_id, ally_name, leader_id, crest_id, crest_large_id, ally_crest_id, new_leader_id) VALUES (300000103, 'SleepyBandits', 5, 5000, 0, 0, 0, 0, NULL, 270001962, 0, 0, 0, 0); +INSERT IGNORE INTO items (owner_id, object_id, item_id, count, enchant_level, loc, loc_data) VALUES (300000103, 272000103, 57, 100000000, 0, 'CLANWH', 0); +INSERT IGNORE INTO clan_data (clan_id, clan_name, clan_level, reputation_score, hasCastle, blood_alliance_count, blood_oath_count, ally_id, ally_name, leader_id, crest_id, crest_large_id, ally_crest_id, new_leader_id) VALUES (300000104, 'LostCouncil', 5, 5000, 0, 0, 0, 0, NULL, 270002477, 0, 0, 0, 0); +INSERT IGNORE INTO items (owner_id, object_id, item_id, count, enchant_level, loc, loc_data) VALUES (300000104, 272000104, 57, 100000000, 0, 'CLANWH', 0); +INSERT IGNORE INTO clan_data (clan_id, clan_name, clan_level, reputation_score, hasCastle, blood_alliance_count, blood_oath_count, ally_id, ally_name, leader_id, crest_id, crest_large_id, ally_crest_id, new_leader_id) VALUES (300000105, 'RoyalBlades45', 5, 5000, 0, 0, 0, 0, NULL, 270003813, 0, 0, 0, 0); +INSERT IGNORE INTO items (owner_id, object_id, item_id, count, enchant_level, loc, loc_data) VALUES (300000105, 272000105, 57, 100000000, 0, 'CLANWH', 0); +INSERT IGNORE INTO clan_data (clan_id, clan_name, clan_level, reputation_score, hasCastle, blood_alliance_count, blood_oath_count, ally_id, ally_name, leader_id, crest_id, crest_large_id, ally_crest_id, new_leader_id) VALUES (300000106, 'IronCompany', 5, 5000, 0, 0, 0, 0, NULL, 270001518, 0, 0, 0, 0); +INSERT IGNORE INTO items (owner_id, object_id, item_id, count, enchant_level, loc, loc_data) VALUES (300000106, 272000106, 57, 100000000, 0, 'CLANWH', 0); +INSERT IGNORE INTO clan_data (clan_id, clan_name, clan_level, reputation_score, hasCastle, blood_alliance_count, blood_oath_count, ally_id, ally_name, leader_id, crest_id, crest_large_id, ally_crest_id, new_leader_id) VALUES (300000107, '6paTBa44', 5, 5000, 0, 0, 0, 0, NULL, 270001244, 0, 0, 0, 0); +INSERT IGNORE INTO items (owner_id, object_id, item_id, count, enchant_level, loc, loc_data) VALUES (300000107, 272000107, 57, 100000000, 0, 'CLANWH', 0); +INSERT IGNORE INTO clan_data (clan_id, clan_name, clan_level, reputation_score, hasCastle, blood_alliance_count, blood_oath_count, ally_id, ally_name, leader_id, crest_id, crest_large_id, ally_crest_id, new_leader_id) VALUES (300000108, 'LastUnion', 5, 5000, 0, 0, 0, 0, NULL, 270001205, 0, 0, 0, 0); +INSERT IGNORE INTO items (owner_id, object_id, item_id, count, enchant_level, loc, loc_data) VALUES (300000108, 272000108, 57, 100000000, 0, 'CLANWH', 0); +INSERT IGNORE INTO clan_data (clan_id, clan_name, clan_level, reputation_score, hasCastle, blood_alliance_count, blood_oath_count, ally_id, ally_name, leader_id, crest_id, crest_large_id, ally_crest_id, new_leader_id) VALUES (300000109, 'LastWatch', 5, 5000, 0, 0, 0, 0, NULL, 270001336, 0, 0, 0, 0); +INSERT IGNORE INTO items (owner_id, object_id, item_id, count, enchant_level, loc, loc_data) VALUES (300000109, 272000109, 57, 100000000, 0, 'CLANWH', 0); +INSERT IGNORE INTO clan_data (clan_id, clan_name, clan_level, reputation_score, hasCastle, blood_alliance_count, blood_oath_count, ally_id, ally_name, leader_id, crest_id, crest_large_id, ally_crest_id, new_leader_id) VALUES (300000110, 'LostSquad', 5, 5000, 0, 0, 0, 0, NULL, 270003698, 0, 0, 0, 0); +INSERT IGNORE INTO items (owner_id, object_id, item_id, count, enchant_level, loc, loc_data) VALUES (300000110, 272000110, 57, 100000000, 0, 'CLANWH', 0); +INSERT IGNORE INTO clan_data (clan_id, clan_name, clan_level, reputation_score, hasCastle, blood_alliance_count, blood_oath_count, ally_id, ally_name, leader_id, crest_id, crest_large_id, ally_crest_id, new_leader_id) VALUES (300000111, 'AngryRavens', 5, 5000, 0, 0, 0, 0, NULL, 270001613, 0, 0, 0, 0); +INSERT IGNORE INTO items (owner_id, object_id, item_id, count, enchant_level, loc, loc_data) VALUES (300000111, 272000111, 57, 100000000, 0, 'CLANWH', 0); +INSERT IGNORE INTO clan_data (clan_id, clan_name, clan_level, reputation_score, hasCastle, blood_alliance_count, blood_oath_count, ally_id, ally_name, leader_id, crest_id, crest_large_id, ally_crest_id, new_leader_id) VALUES (300000112, 'FirstSquad', 5, 5000, 0, 0, 0, 0, NULL, 270003035, 0, 0, 0, 0); +INSERT IGNORE INTO items (owner_id, object_id, item_id, count, enchant_level, loc, loc_data) VALUES (300000112, 272000112, 57, 100000000, 0, 'CLANWH', 0); +INSERT IGNORE INTO clan_data (clan_id, clan_name, clan_level, reputation_score, hasCastle, blood_alliance_count, blood_oath_count, ally_id, ally_name, leader_id, crest_id, crest_large_id, ally_crest_id, new_leader_id) VALUES (300000113, 'AngryPact', 5, 5000, 0, 0, 0, 0, NULL, 270003593, 0, 0, 0, 0); +INSERT IGNORE INTO items (owner_id, object_id, item_id, count, enchant_level, loc, loc_data) VALUES (300000113, 272000113, 57, 100000000, 0, 'CLANWH', 0); +INSERT IGNORE INTO clan_data (clan_id, clan_name, clan_level, reputation_score, hasCastle, blood_alliance_count, blood_oath_count, ally_id, ally_name, leader_id, crest_id, crest_large_id, ally_crest_id, new_leader_id) VALUES (300000114, 'RoyalSyndicate38', 5, 5000, 0, 0, 0, 0, NULL, 270001458, 0, 0, 0, 0); +INSERT IGNORE INTO items (owner_id, object_id, item_id, count, enchant_level, loc, loc_data) VALUES (300000114, 272000114, 57, 100000000, 0, 'CLANWH', 0); +INSERT IGNORE INTO clan_data (clan_id, clan_name, clan_level, reputation_score, hasCastle, blood_alliance_count, blood_oath_count, ally_id, ally_name, leader_id, crest_id, crest_large_id, ally_crest_id, new_leader_id) VALUES (300000115, 'GoldenCrew', 5, 5000, 0, 0, 0, 0, NULL, 270001190, 0, 0, 0, 0); +INSERT IGNORE INTO items (owner_id, object_id, item_id, count, enchant_level, loc, loc_data) VALUES (300000115, 272000115, 57, 100000000, 0, 'CLANWH', 0); +INSERT IGNORE INTO clan_data (clan_id, clan_name, clan_level, reputation_score, hasCastle, blood_alliance_count, blood_oath_count, ally_id, ally_name, leader_id, crest_id, crest_large_id, ally_crest_id, new_leader_id) VALUES (300000116, 'BlackBrotherhood', 5, 5000, 0, 0, 0, 0, NULL, 270002631, 0, 0, 0, 0); +INSERT IGNORE INTO items (owner_id, object_id, item_id, count, enchant_level, loc, loc_data) VALUES (300000116, 272000116, 57, 100000000, 0, 'CLANWH', 0); +INSERT IGNORE INTO clan_data (clan_id, clan_name, clan_level, reputation_score, hasCastle, blood_alliance_count, blood_oath_count, ally_id, ally_name, leader_id, crest_id, crest_large_id, ally_crest_id, new_leader_id) VALUES (300000117, 'CTaR87', 5, 5000, 0, 0, 0, 0, NULL, 270001929, 0, 0, 0, 0); +INSERT IGNORE INTO items (owner_id, object_id, item_id, count, enchant_level, loc, loc_data) VALUES (300000117, 272000117, 57, 100000000, 0, 'CLANWH', 0); +INSERT IGNORE INTO clan_data (clan_id, clan_name, clan_level, reputation_score, hasCastle, blood_alliance_count, blood_oath_count, ally_id, ally_name, leader_id, crest_id, crest_large_id, ally_crest_id, new_leader_id) VALUES (300000118, '6paTBa99', 5, 5000, 0, 0, 0, 0, NULL, 270001229, 0, 0, 0, 0); +INSERT IGNORE INTO items (owner_id, object_id, item_id, count, enchant_level, loc, loc_data) VALUES (300000118, 272000118, 57, 100000000, 0, 'CLANWH', 0); +INSERT IGNORE INTO clan_data (clan_id, clan_name, clan_level, reputation_score, hasCastle, blood_alliance_count, blood_oath_count, ally_id, ally_name, leader_id, crest_id, crest_large_id, ally_crest_id, new_leader_id) VALUES (300000119, 'BlackRavens', 5, 5000, 0, 0, 0, 0, NULL, 270001040, 0, 0, 0, 0); +INSERT IGNORE INTO items (owner_id, object_id, item_id, count, enchant_level, loc, loc_data) VALUES (300000119, 272000119, 57, 100000000, 0, 'CLANWH', 0); +INSERT IGNORE INTO clan_data (clan_id, clan_name, clan_level, reputation_score, hasCastle, blood_alliance_count, blood_oath_count, ally_id, ally_name, leader_id, crest_id, crest_large_id, ally_crest_id, new_leader_id) VALUES (300000120, 'BlackSyndicate', 5, 5000, 0, 0, 0, 0, NULL, 270002645, 0, 0, 0, 0); +INSERT IGNORE INTO items (owner_id, object_id, item_id, count, enchant_level, loc, loc_data) VALUES (300000120, 272000120, 57, 100000000, 0, 'CLANWH', 0); +INSERT IGNORE INTO clan_data (clan_id, clan_name, clan_level, reputation_score, hasCastle, blood_alliance_count, blood_oath_count, ally_id, ally_name, leader_id, crest_id, crest_large_id, ally_crest_id, new_leader_id) VALUES (300000121, 'SilentPact94', 5, 5000, 0, 0, 0, 0, NULL, 270001084, 0, 0, 0, 0); +INSERT IGNORE INTO items (owner_id, object_id, item_id, count, enchant_level, loc, loc_data) VALUES (300000121, 272000121, 57, 100000000, 0, 'CLANWH', 0); +INSERT IGNORE INTO clan_data (clan_id, clan_name, clan_level, reputation_score, hasCastle, blood_alliance_count, blood_oath_count, ally_id, ally_name, leader_id, crest_id, crest_large_id, ally_crest_id, new_leader_id) VALUES (300000122, 'GpyxuHa12', 5, 5000, 0, 0, 0, 0, NULL, 270002129, 0, 0, 0, 0); +INSERT IGNORE INTO items (owner_id, object_id, item_id, count, enchant_level, loc, loc_data) VALUES (300000122, 272000122, 57, 100000000, 0, 'CLANWH', 0); +INSERT IGNORE INTO clan_data (clan_id, clan_name, clan_level, reputation_score, hasCastle, blood_alliance_count, blood_oath_count, ally_id, ally_name, leader_id, crest_id, crest_large_id, ally_crest_id, new_leader_id) VALUES (300000123, 'LastPact', 5, 5000, 0, 0, 0, 0, NULL, 270003004, 0, 0, 0, 0); +INSERT IGNORE INTO items (owner_id, object_id, item_id, count, enchant_level, loc, loc_data) VALUES (300000123, 272000123, 57, 100000000, 0, 'CLANWH', 0); +INSERT IGNORE INTO clan_data (clan_id, clan_name, clan_level, reputation_score, hasCastle, blood_alliance_count, blood_oath_count, ally_id, ally_name, leader_id, crest_id, crest_large_id, ally_crest_id, new_leader_id) VALUES (300000124, 'DrunkHunters', 5, 5000, 0, 0, 0, 0, NULL, 270001218, 0, 0, 0, 0); +INSERT IGNORE INTO items (owner_id, object_id, item_id, count, enchant_level, loc, loc_data) VALUES (300000124, 272000124, 57, 100000000, 0, 'CLANWH', 0); +INSERT IGNORE INTO clan_data (clan_id, clan_name, clan_level, reputation_score, hasCastle, blood_alliance_count, blood_oath_count, ally_id, ally_name, leader_id, crest_id, crest_large_id, ally_crest_id, new_leader_id) VALUES (300000125, 'LostWolves66', 5, 5000, 0, 0, 0, 0, NULL, 270005019, 0, 0, 0, 0); +INSERT IGNORE INTO items (owner_id, object_id, item_id, count, enchant_level, loc, loc_data) VALUES (300000125, 272000125, 57, 100000000, 0, 'CLANWH', 0); +INSERT IGNORE INTO clan_data (clan_id, clan_name, clan_level, reputation_score, hasCastle, blood_alliance_count, blood_oath_count, ally_id, ally_name, leader_id, crest_id, crest_large_id, ally_crest_id, new_leader_id) VALUES (300000126, 'GrimHunters', 5, 5000, 0, 0, 0, 0, NULL, 270001720, 0, 0, 0, 0); +INSERT IGNORE INTO items (owner_id, object_id, item_id, count, enchant_level, loc, loc_data) VALUES (300000126, 272000126, 57, 100000000, 0, 'CLANWH', 0); +INSERT IGNORE INTO clan_data (clan_id, clan_name, clan_level, reputation_score, hasCastle, blood_alliance_count, blood_oath_count, ally_id, ally_name, leader_id, crest_id, crest_large_id, ally_crest_id, new_leader_id) VALUES (300000127, 'SleepyOrder', 5, 5000, 0, 0, 0, 0, NULL, 270003371, 0, 0, 0, 0); +INSERT IGNORE INTO items (owner_id, object_id, item_id, count, enchant_level, loc, loc_data) VALUES (300000127, 272000127, 57, 100000000, 0, 'CLANWH', 0); +INSERT IGNORE INTO clan_data (clan_id, clan_name, clan_level, reputation_score, hasCastle, blood_alliance_count, blood_oath_count, ally_id, ally_name, leader_id, crest_id, crest_large_id, ally_crest_id, new_leader_id) VALUES (300000128, 'DarkBlades33', 5, 5000, 0, 0, 0, 0, NULL, 270003142, 0, 0, 0, 0); +INSERT IGNORE INTO items (owner_id, object_id, item_id, count, enchant_level, loc, loc_data) VALUES (300000128, 272000128, 57, 100000000, 0, 'CLANWH', 0); +INSERT IGNORE INTO clan_data (clan_id, clan_name, clan_level, reputation_score, hasCastle, blood_alliance_count, blood_oath_count, ally_id, ally_name, leader_id, crest_id, crest_large_id, ally_crest_id, new_leader_id) VALUES (300000129, 'BlackSquad', 5, 5000, 0, 0, 0, 0, NULL, 270004405, 0, 0, 0, 0); +INSERT IGNORE INTO items (owner_id, object_id, item_id, count, enchant_level, loc, loc_data) VALUES (300000129, 272000129, 57, 100000000, 0, 'CLANWH', 0); +INSERT IGNORE INTO clan_data (clan_id, clan_name, clan_level, reputation_score, hasCastle, blood_alliance_count, blood_oath_count, ally_id, ally_name, leader_id, crest_id, crest_large_id, ally_crest_id, new_leader_id) VALUES (300000130, '3acTaBa', 5, 5000, 0, 0, 0, 0, NULL, 270002997, 0, 0, 0, 0); +INSERT IGNORE INTO items (owner_id, object_id, item_id, count, enchant_level, loc, loc_data) VALUES (300000130, 272000130, 57, 100000000, 0, 'CLANWH', 0); +INSERT IGNORE INTO clan_data (clan_id, clan_name, clan_level, reputation_score, hasCastle, blood_alliance_count, blood_oath_count, ally_id, ally_name, leader_id, crest_id, crest_large_id, ally_crest_id, new_leader_id) VALUES (300000131, 'DrunkPact', 5, 5000, 0, 0, 0, 0, NULL, 270002202, 0, 0, 0, 0); +INSERT IGNORE INTO items (owner_id, object_id, item_id, count, enchant_level, loc, loc_data) VALUES (300000131, 272000131, 57, 100000000, 0, 'CLANWH', 0); +INSERT IGNORE INTO clan_data (clan_id, clan_name, clan_level, reputation_score, hasCastle, blood_alliance_count, blood_oath_count, ally_id, ally_name, leader_id, crest_id, crest_large_id, ally_crest_id, new_leader_id) VALUES (300000132, 'IronLegion', 5, 5000, 0, 0, 0, 0, NULL, 270001222, 0, 0, 0, 0); +INSERT IGNORE INTO items (owner_id, object_id, item_id, count, enchant_level, loc, loc_data) VALUES (300000132, 272000132, 57, 100000000, 0, 'CLANWH', 0); +INSERT IGNORE INTO clan_data (clan_id, clan_name, clan_level, reputation_score, hasCastle, blood_alliance_count, blood_oath_count, ally_id, ally_name, leader_id, crest_id, crest_large_id, ally_crest_id, new_leader_id) VALUES (300000133, 'GrimLegion', 5, 5000, 0, 0, 0, 0, NULL, 270003388, 0, 0, 0, 0); +INSERT IGNORE INTO items (owner_id, object_id, item_id, count, enchant_level, loc, loc_data) VALUES (300000133, 272000133, 57, 100000000, 0, 'CLANWH', 0); +INSERT IGNORE INTO clan_data (clan_id, clan_name, clan_level, reputation_score, hasCastle, blood_alliance_count, blood_oath_count, ally_id, ally_name, leader_id, crest_id, crest_large_id, ally_crest_id, new_leader_id) VALUES (300000134, 'BrokenLegion', 5, 5000, 0, 0, 0, 0, NULL, 270001193, 0, 0, 0, 0); +INSERT IGNORE INTO items (owner_id, object_id, item_id, count, enchant_level, loc, loc_data) VALUES (300000134, 272000134, 57, 100000000, 0, 'CLANWH', 0); +INSERT IGNORE INTO clan_data (clan_id, clan_name, clan_level, reputation_score, hasCastle, blood_alliance_count, blood_oath_count, ally_id, ally_name, leader_id, crest_id, crest_large_id, ally_crest_id, new_leader_id) VALUES (300000135, 'Opga', 5, 5000, 0, 0, 0, 0, NULL, 270001889, 0, 0, 0, 0); +INSERT IGNORE INTO items (owner_id, object_id, item_id, count, enchant_level, loc, loc_data) VALUES (300000135, 272000135, 57, 100000000, 0, 'CLANWH', 0); +INSERT IGNORE INTO clan_data (clan_id, clan_name, clan_level, reputation_score, hasCastle, blood_alliance_count, blood_oath_count, ally_id, ally_name, leader_id, crest_id, crest_large_id, ally_crest_id, new_leader_id) VALUES (300000136, 'HolyFamily', 5, 5000, 0, 0, 0, 0, NULL, 270003362, 0, 0, 0, 0); +INSERT IGNORE INTO items (owner_id, object_id, item_id, count, enchant_level, loc, loc_data) VALUES (300000136, 272000136, 57, 100000000, 0, 'CLANWH', 0); +INSERT IGNORE INTO clan_data (clan_id, clan_name, clan_level, reputation_score, hasCastle, blood_alliance_count, blood_oath_count, ally_id, ally_name, leader_id, crest_id, crest_large_id, ally_crest_id, new_leader_id) VALUES (300000137, 'RoyalCrew', 5, 5000, 0, 0, 0, 0, NULL, 270001015, 0, 0, 0, 0); +INSERT IGNORE INTO items (owner_id, object_id, item_id, count, enchant_level, loc, loc_data) VALUES (300000137, 272000137, 57, 100000000, 0, 'CLANWH', 0); +INSERT IGNORE INTO clan_data (clan_id, clan_name, clan_level, reputation_score, hasCastle, blood_alliance_count, blood_oath_count, ally_id, ally_name, leader_id, crest_id, crest_large_id, ally_crest_id, new_leader_id) VALUES (300000138, '6paTBa', 5, 5000, 0, 0, 0, 0, NULL, 270001238, 0, 0, 0, 0); +INSERT IGNORE INTO items (owner_id, object_id, item_id, count, enchant_level, loc, loc_data) VALUES (300000138, 272000138, 57, 100000000, 0, 'CLANWH', 0); +INSERT IGNORE INTO clan_data (clan_id, clan_name, clan_level, reputation_score, hasCastle, blood_alliance_count, blood_oath_count, ally_id, ally_name, leader_id, crest_id, crest_large_id, ally_crest_id, new_leader_id) VALUES (300000139, 'FirstOrder27', 5, 5000, 0, 0, 0, 0, NULL, 270002150, 0, 0, 0, 0); +INSERT IGNORE INTO items (owner_id, object_id, item_id, count, enchant_level, loc, loc_data) VALUES (300000139, 272000139, 57, 100000000, 0, 'CLANWH', 0); +INSERT IGNORE INTO clan_data (clan_id, clan_name, clan_level, reputation_score, hasCastle, blood_alliance_count, blood_oath_count, ally_id, ally_name, leader_id, crest_id, crest_large_id, ally_crest_id, new_leader_id) VALUES (300000140, 'MadCrew', 5, 5000, 0, 0, 0, 0, NULL, 270002049, 0, 0, 0, 0); +INSERT IGNORE INTO items (owner_id, object_id, item_id, count, enchant_level, loc, loc_data) VALUES (300000140, 272000140, 57, 100000000, 0, 'CLANWH', 0); +INSERT IGNORE INTO clan_data (clan_id, clan_name, clan_level, reputation_score, hasCastle, blood_alliance_count, blood_oath_count, ally_id, ally_name, leader_id, crest_id, crest_large_id, ally_crest_id, new_leader_id) VALUES (300000141, 'RoyalUnion', 5, 5000, 0, 0, 0, 0, NULL, 270003875, 0, 0, 0, 0); +INSERT IGNORE INTO items (owner_id, object_id, item_id, count, enchant_level, loc, loc_data) VALUES (300000141, 272000141, 57, 100000000, 0, 'CLANWH', 0); +INSERT IGNORE INTO clan_data (clan_id, clan_name, clan_level, reputation_score, hasCastle, blood_alliance_count, blood_oath_count, ally_id, ally_name, leader_id, crest_id, crest_large_id, ally_crest_id, new_leader_id) VALUES (300000142, 'GpyxuHa67', 5, 5000, 0, 0, 0, 0, NULL, 270001017, 0, 0, 0, 0); +INSERT IGNORE INTO items (owner_id, object_id, item_id, count, enchant_level, loc, loc_data) VALUES (300000142, 272000142, 57, 100000000, 0, 'CLANWH', 0); +INSERT IGNORE INTO clan_data (clan_id, clan_name, clan_level, reputation_score, hasCastle, blood_alliance_count, blood_oath_count, ally_id, ally_name, leader_id, crest_id, crest_large_id, ally_crest_id, new_leader_id) VALUES (300000143, 'LostCrew', 5, 5000, 0, 0, 0, 0, NULL, 270001442, 0, 0, 0, 0); +INSERT IGNORE INTO items (owner_id, object_id, item_id, count, enchant_level, loc, loc_data) VALUES (300000143, 272000143, 57, 100000000, 0, 'CLANWH', 0); +INSERT IGNORE INTO clan_data (clan_id, clan_name, clan_level, reputation_score, hasCastle, blood_alliance_count, blood_oath_count, ally_id, ally_name, leader_id, crest_id, crest_large_id, ally_crest_id, new_leader_id) VALUES (300000144, 'LastGuard', 5, 5000, 0, 0, 0, 0, NULL, 270001420, 0, 0, 0, 0); +INSERT IGNORE INTO items (owner_id, object_id, item_id, count, enchant_level, loc, loc_data) VALUES (300000144, 272000144, 57, 100000000, 0, 'CLANWH', 0); +INSERT IGNORE INTO clan_data (clan_id, clan_name, clan_level, reputation_score, hasCastle, blood_alliance_count, blood_oath_count, ally_id, ally_name, leader_id, crest_id, crest_large_id, ally_crest_id, new_leader_id) VALUES (300000145, 'CTaR94', 5, 5000, 0, 0, 0, 0, NULL, 270001269, 0, 0, 0, 0); +INSERT IGNORE INTO items (owner_id, object_id, item_id, count, enchant_level, loc, loc_data) VALUES (300000145, 272000145, 57, 100000000, 0, 'CLANWH', 0); +INSERT IGNORE INTO clan_data (clan_id, clan_name, clan_level, reputation_score, hasCastle, blood_alliance_count, blood_oath_count, ally_id, ally_name, leader_id, crest_id, crest_large_id, ally_crest_id, new_leader_id) VALUES (300000146, 'OIIpu4HuHa47', 5, 5000, 0, 0, 0, 0, NULL, 270001268, 0, 0, 0, 0); +INSERT IGNORE INTO items (owner_id, object_id, item_id, count, enchant_level, loc, loc_data) VALUES (300000146, 272000146, 57, 100000000, 0, 'CLANWH', 0); +INSERT IGNORE INTO clan_data (clan_id, clan_name, clan_level, reputation_score, hasCastle, blood_alliance_count, blood_oath_count, ally_id, ally_name, leader_id, crest_id, crest_large_id, ally_crest_id, new_leader_id) VALUES (300000147, 'IronCrew', 5, 5000, 0, 0, 0, 0, NULL, 270002043, 0, 0, 0, 0); +INSERT IGNORE INTO items (owner_id, object_id, item_id, count, enchant_level, loc, loc_data) VALUES (300000147, 272000147, 57, 100000000, 0, 'CLANWH', 0); +INSERT IGNORE INTO clan_data (clan_id, clan_name, clan_level, reputation_score, hasCastle, blood_alliance_count, blood_oath_count, ally_id, ally_name, leader_id, crest_id, crest_large_id, ally_crest_id, new_leader_id) VALUES (300000148, 'AngryKnights36', 5, 5000, 0, 0, 0, 0, NULL, 270001111, 0, 0, 0, 0); +INSERT IGNORE INTO items (owner_id, object_id, item_id, count, enchant_level, loc, loc_data) VALUES (300000148, 272000148, 57, 100000000, 0, 'CLANWH', 0); +INSERT IGNORE INTO clan_data (clan_id, clan_name, clan_level, reputation_score, hasCastle, blood_alliance_count, blood_oath_count, ally_id, ally_name, leader_id, crest_id, crest_large_id, ally_crest_id, new_leader_id) VALUES (300000149, 'OIIpu4HuHa', 5, 5000, 0, 0, 0, 0, NULL, 270001186, 0, 0, 0, 0); +INSERT IGNORE INTO items (owner_id, object_id, item_id, count, enchant_level, loc, loc_data) VALUES (300000149, 272000149, 57, 100000000, 0, 'CLANWH', 0); +INSERT IGNORE INTO clan_data (clan_id, clan_name, clan_level, reputation_score, hasCastle, blood_alliance_count, blood_oath_count, ally_id, ally_name, leader_id, crest_id, crest_large_id, ally_crest_id, new_leader_id) VALUES (300000150, 'GpyxuHa70', 5, 5000, 0, 0, 0, 0, NULL, 270001461, 0, 0, 0, 0); +INSERT IGNORE INTO items (owner_id, object_id, item_id, count, enchant_level, loc, loc_data) VALUES (300000150, 272000150, 57, 100000000, 0, 'CLANWH', 0); +REPLACE INTO clan_wars (clan1, clan2, wantspeace1, wantspeace2) VALUES ('300000001', '300000046', 0, 0); +REPLACE INTO clan_wars (clan1, clan2, wantspeace1, wantspeace2) VALUES ('300000046', '300000001', 0, 0); +REPLACE INTO clan_wars (clan1, clan2, wantspeace1, wantspeace2) VALUES ('300000001', '300000078', 0, 0); +REPLACE INTO clan_wars (clan1, clan2, wantspeace1, wantspeace2) VALUES ('300000078', '300000001', 0, 0); +REPLACE INTO clan_wars (clan1, clan2, wantspeace1, wantspeace2) VALUES ('300000002', '300000047', 0, 0); +REPLACE INTO clan_wars (clan1, clan2, wantspeace1, wantspeace2) VALUES ('300000047', '300000002', 0, 0); +REPLACE INTO clan_wars (clan1, clan2, wantspeace1, wantspeace2) VALUES ('300000002', '300000080', 0, 0); +REPLACE INTO clan_wars (clan1, clan2, wantspeace1, wantspeace2) VALUES ('300000080', '300000002', 0, 0); +REPLACE INTO clan_wars (clan1, clan2, wantspeace1, wantspeace2) VALUES ('300000003', '300000049', 0, 0); +REPLACE INTO clan_wars (clan1, clan2, wantspeace1, wantspeace2) VALUES ('300000049', '300000003', 0, 0); +REPLACE INTO clan_wars (clan1, clan2, wantspeace1, wantspeace2) VALUES ('300000003', '300000076', 0, 0); +REPLACE INTO clan_wars (clan1, clan2, wantspeace1, wantspeace2) VALUES ('300000076', '300000003', 0, 0); +REPLACE INTO clan_wars (clan1, clan2, wantspeace1, wantspeace2) VALUES ('300000004', '300000038', 0, 0); +REPLACE INTO clan_wars (clan1, clan2, wantspeace1, wantspeace2) VALUES ('300000038', '300000004', 0, 0); +REPLACE INTO clan_wars (clan1, clan2, wantspeace1, wantspeace2) VALUES ('300000004', '300000072', 0, 0); +REPLACE INTO clan_wars (clan1, clan2, wantspeace1, wantspeace2) VALUES ('300000072', '300000004', 0, 0); +REPLACE INTO clan_wars (clan1, clan2, wantspeace1, wantspeace2) VALUES ('300000005', '300000034', 0, 0); +REPLACE INTO clan_wars (clan1, clan2, wantspeace1, wantspeace2) VALUES ('300000034', '300000005', 0, 0); +REPLACE INTO clan_wars (clan1, clan2, wantspeace1, wantspeace2) VALUES ('300000005', '300000145', 0, 0); +REPLACE INTO clan_wars (clan1, clan2, wantspeace1, wantspeace2) VALUES ('300000145', '300000005', 0, 0); +REPLACE INTO clan_wars (clan1, clan2, wantspeace1, wantspeace2) VALUES ('300000006', '300000037', 0, 0); +REPLACE INTO clan_wars (clan1, clan2, wantspeace1, wantspeace2) VALUES ('300000037', '300000006', 0, 0); +REPLACE INTO clan_wars (clan1, clan2, wantspeace1, wantspeace2) VALUES ('300000006', '300000137', 0, 0); +REPLACE INTO clan_wars (clan1, clan2, wantspeace1, wantspeace2) VALUES ('300000137', '300000006', 0, 0); +REPLACE INTO clan_wars (clan1, clan2, wantspeace1, wantspeace2) VALUES ('300000007', '300000040', 0, 0); +REPLACE INTO clan_wars (clan1, clan2, wantspeace1, wantspeace2) VALUES ('300000040', '300000007', 0, 0); +REPLACE INTO clan_wars (clan1, clan2, wantspeace1, wantspeace2) VALUES ('300000008', '300000046', 0, 0); +REPLACE INTO clan_wars (clan1, clan2, wantspeace1, wantspeace2) VALUES ('300000046', '300000008', 0, 0); +REPLACE INTO clan_wars (clan1, clan2, wantspeace1, wantspeace2) VALUES ('300000008', '300000086', 0, 0); +REPLACE INTO clan_wars (clan1, clan2, wantspeace1, wantspeace2) VALUES ('300000086', '300000008', 0, 0); +REPLACE INTO clan_wars (clan1, clan2, wantspeace1, wantspeace2) VALUES ('300000009', '300000038', 0, 0); +REPLACE INTO clan_wars (clan1, clan2, wantspeace1, wantspeace2) VALUES ('300000038', '300000009', 0, 0); +REPLACE INTO clan_wars (clan1, clan2, wantspeace1, wantspeace2) VALUES ('300000009', '300000081', 0, 0); +REPLACE INTO clan_wars (clan1, clan2, wantspeace1, wantspeace2) VALUES ('300000081', '300000009', 0, 0); +REPLACE INTO clan_wars (clan1, clan2, wantspeace1, wantspeace2) VALUES ('300000010', '300000032', 0, 0); +REPLACE INTO clan_wars (clan1, clan2, wantspeace1, wantspeace2) VALUES ('300000032', '300000010', 0, 0); +REPLACE INTO clan_wars (clan1, clan2, wantspeace1, wantspeace2) VALUES ('300000010', '300000059', 0, 0); +REPLACE INTO clan_wars (clan1, clan2, wantspeace1, wantspeace2) VALUES ('300000059', '300000010', 0, 0); +REPLACE INTO clan_wars (clan1, clan2, wantspeace1, wantspeace2) VALUES ('300000011', '300000038', 0, 0); +REPLACE INTO clan_wars (clan1, clan2, wantspeace1, wantspeace2) VALUES ('300000038', '300000011', 0, 0); +REPLACE INTO clan_wars (clan1, clan2, wantspeace1, wantspeace2) VALUES ('300000012', '300000050', 0, 0); +REPLACE INTO clan_wars (clan1, clan2, wantspeace1, wantspeace2) VALUES ('300000050', '300000012', 0, 0); +REPLACE INTO clan_wars (clan1, clan2, wantspeace1, wantspeace2) VALUES ('300000012', '300000094', 0, 0); +REPLACE INTO clan_wars (clan1, clan2, wantspeace1, wantspeace2) VALUES ('300000094', '300000012', 0, 0); +REPLACE INTO clan_wars (clan1, clan2, wantspeace1, wantspeace2) VALUES ('300000013', '300000041', 0, 0); +REPLACE INTO clan_wars (clan1, clan2, wantspeace1, wantspeace2) VALUES ('300000041', '300000013', 0, 0); +REPLACE INTO clan_wars (clan1, clan2, wantspeace1, wantspeace2) VALUES ('300000014', '300000038', 0, 0); +REPLACE INTO clan_wars (clan1, clan2, wantspeace1, wantspeace2) VALUES ('300000038', '300000014', 0, 0); +REPLACE INTO clan_wars (clan1, clan2, wantspeace1, wantspeace2) VALUES ('300000014', '300000067', 0, 0); +REPLACE INTO clan_wars (clan1, clan2, wantspeace1, wantspeace2) VALUES ('300000067', '300000014', 0, 0); +REPLACE INTO clan_wars (clan1, clan2, wantspeace1, wantspeace2) VALUES ('300000015', '300000039', 0, 0); +REPLACE INTO clan_wars (clan1, clan2, wantspeace1, wantspeace2) VALUES ('300000039', '300000015', 0, 0); +REPLACE INTO clan_wars (clan1, clan2, wantspeace1, wantspeace2) VALUES ('300000015', '300000128', 0, 0); +REPLACE INTO clan_wars (clan1, clan2, wantspeace1, wantspeace2) VALUES ('300000128', '300000015', 0, 0); +REPLACE INTO clan_wars (clan1, clan2, wantspeace1, wantspeace2) VALUES ('300000016', '300000031', 0, 0); +REPLACE INTO clan_wars (clan1, clan2, wantspeace1, wantspeace2) VALUES ('300000031', '300000016', 0, 0); +REPLACE INTO clan_wars (clan1, clan2, wantspeace1, wantspeace2) VALUES ('300000016', '300000082', 0, 0); +REPLACE INTO clan_wars (clan1, clan2, wantspeace1, wantspeace2) VALUES ('300000082', '300000016', 0, 0); +REPLACE INTO clan_wars (clan1, clan2, wantspeace1, wantspeace2) VALUES ('300000017', '300000032', 0, 0); +REPLACE INTO clan_wars (clan1, clan2, wantspeace1, wantspeace2) VALUES ('300000032', '300000017', 0, 0); +REPLACE INTO clan_wars (clan1, clan2, wantspeace1, wantspeace2) VALUES ('300000017', '300000144', 0, 0); +REPLACE INTO clan_wars (clan1, clan2, wantspeace1, wantspeace2) VALUES ('300000144', '300000017', 0, 0); +REPLACE INTO clan_wars (clan1, clan2, wantspeace1, wantspeace2) VALUES ('300000018', '300000044', 0, 0); +REPLACE INTO clan_wars (clan1, clan2, wantspeace1, wantspeace2) VALUES ('300000044', '300000018', 0, 0); +REPLACE INTO clan_wars (clan1, clan2, wantspeace1, wantspeace2) VALUES ('300000018', '300000127', 0, 0); +REPLACE INTO clan_wars (clan1, clan2, wantspeace1, wantspeace2) VALUES ('300000127', '300000018', 0, 0); +REPLACE INTO clan_wars (clan1, clan2, wantspeace1, wantspeace2) VALUES ('300000019', '300000037', 0, 0); +REPLACE INTO clan_wars (clan1, clan2, wantspeace1, wantspeace2) VALUES ('300000037', '300000019', 0, 0); +REPLACE INTO clan_wars (clan1, clan2, wantspeace1, wantspeace2) VALUES ('300000019', '300000120', 0, 0); +REPLACE INTO clan_wars (clan1, clan2, wantspeace1, wantspeace2) VALUES ('300000120', '300000019', 0, 0); +REPLACE INTO clan_wars (clan1, clan2, wantspeace1, wantspeace2) VALUES ('300000020', '300000046', 0, 0); +REPLACE INTO clan_wars (clan1, clan2, wantspeace1, wantspeace2) VALUES ('300000046', '300000020', 0, 0); +REPLACE INTO clan_wars (clan1, clan2, wantspeace1, wantspeace2) VALUES ('300000020', '300000127', 0, 0); +REPLACE INTO clan_wars (clan1, clan2, wantspeace1, wantspeace2) VALUES ('300000127', '300000020', 0, 0); +REPLACE INTO clan_wars (clan1, clan2, wantspeace1, wantspeace2) VALUES ('300000021', '300000043', 0, 0); +REPLACE INTO clan_wars (clan1, clan2, wantspeace1, wantspeace2) VALUES ('300000043', '300000021', 0, 0); +REPLACE INTO clan_wars (clan1, clan2, wantspeace1, wantspeace2) VALUES ('300000022', '300000035', 0, 0); +REPLACE INTO clan_wars (clan1, clan2, wantspeace1, wantspeace2) VALUES ('300000035', '300000022', 0, 0); +REPLACE INTO clan_wars (clan1, clan2, wantspeace1, wantspeace2) VALUES ('300000023', '300000034', 0, 0); +REPLACE INTO clan_wars (clan1, clan2, wantspeace1, wantspeace2) VALUES ('300000034', '300000023', 0, 0); +REPLACE INTO clan_wars (clan1, clan2, wantspeace1, wantspeace2) VALUES ('300000023', '300000107', 0, 0); +REPLACE INTO clan_wars (clan1, clan2, wantspeace1, wantspeace2) VALUES ('300000107', '300000023', 0, 0); +REPLACE INTO clan_wars (clan1, clan2, wantspeace1, wantspeace2) VALUES ('300000024', '300000033', 0, 0); +REPLACE INTO clan_wars (clan1, clan2, wantspeace1, wantspeace2) VALUES ('300000033', '300000024', 0, 0); +REPLACE INTO clan_wars (clan1, clan2, wantspeace1, wantspeace2) VALUES ('300000025', '300000032', 0, 0); +REPLACE INTO clan_wars (clan1, clan2, wantspeace1, wantspeace2) VALUES ('300000032', '300000025', 0, 0); +REPLACE INTO clan_wars (clan1, clan2, wantspeace1, wantspeace2) VALUES ('300000025', '300000069', 0, 0); +REPLACE INTO clan_wars (clan1, clan2, wantspeace1, wantspeace2) VALUES ('300000069', '300000025', 0, 0); +REPLACE INTO clan_wars (clan1, clan2, wantspeace1, wantspeace2) VALUES ('300000026', '300000049', 0, 0); +REPLACE INTO clan_wars (clan1, clan2, wantspeace1, wantspeace2) VALUES ('300000049', '300000026', 0, 0); +REPLACE INTO clan_wars (clan1, clan2, wantspeace1, wantspeace2) VALUES ('300000027', '300000038', 0, 0); +REPLACE INTO clan_wars (clan1, clan2, wantspeace1, wantspeace2) VALUES ('300000038', '300000027', 0, 0); +REPLACE INTO clan_wars (clan1, clan2, wantspeace1, wantspeace2) VALUES ('300000027', '300000076', 0, 0); +REPLACE INTO clan_wars (clan1, clan2, wantspeace1, wantspeace2) VALUES ('300000076', '300000027', 0, 0); +REPLACE INTO clan_wars (clan1, clan2, wantspeace1, wantspeace2) VALUES ('300000028', '300000034', 0, 0); +REPLACE INTO clan_wars (clan1, clan2, wantspeace1, wantspeace2) VALUES ('300000034', '300000028', 0, 0); +REPLACE INTO clan_wars (clan1, clan2, wantspeace1, wantspeace2) VALUES ('300000028', '300000125', 0, 0); +REPLACE INTO clan_wars (clan1, clan2, wantspeace1, wantspeace2) VALUES ('300000125', '300000028', 0, 0); +REPLACE INTO clan_wars (clan1, clan2, wantspeace1, wantspeace2) VALUES ('300000029', '300000048', 0, 0); +REPLACE INTO clan_wars (clan1, clan2, wantspeace1, wantspeace2) VALUES ('300000048', '300000029', 0, 0); +REPLACE INTO clan_wars (clan1, clan2, wantspeace1, wantspeace2) VALUES ('300000029', '300000070', 0, 0); +REPLACE INTO clan_wars (clan1, clan2, wantspeace1, wantspeace2) VALUES ('300000070', '300000029', 0, 0); +REPLACE INTO clan_wars (clan1, clan2, wantspeace1, wantspeace2) VALUES ('300000030', '300000039', 0, 0); +REPLACE INTO clan_wars (clan1, clan2, wantspeace1, wantspeace2) VALUES ('300000039', '300000030', 0, 0); +REPLACE INTO clan_wars (clan1, clan2, wantspeace1, wantspeace2) VALUES ('300000030', '300000150', 0, 0); +REPLACE INTO clan_wars (clan1, clan2, wantspeace1, wantspeace2) VALUES ('300000150', '300000030', 0, 0); +REPLACE INTO clan_wars (clan1, clan2, wantspeace1, wantspeace2) VALUES ('300000063', '300000054', 0, 0); +REPLACE INTO clan_wars (clan1, clan2, wantspeace1, wantspeace2) VALUES ('300000054', '300000063', 0, 0); +REPLACE INTO clan_wars (clan1, clan2, wantspeace1, wantspeace2) VALUES ('300000111', '300000149', 0, 0); +REPLACE INTO clan_wars (clan1, clan2, wantspeace1, wantspeace2) VALUES ('300000149', '300000111', 0, 0); +REPLACE INTO clan_wars (clan1, clan2, wantspeace1, wantspeace2) VALUES ('300000084', '300000128', 0, 0); +REPLACE INTO clan_wars (clan1, clan2, wantspeace1, wantspeace2) VALUES ('300000128', '300000084', 0, 0); +REPLACE INTO clan_wars (clan1, clan2, wantspeace1, wantspeace2) VALUES ('300000074', '300000079', 0, 0); +REPLACE INTO clan_wars (clan1, clan2, wantspeace1, wantspeace2) VALUES ('300000079', '300000074', 0, 0); +REPLACE INTO clan_wars (clan1, clan2, wantspeace1, wantspeace2) VALUES ('300000084', '300000090', 0, 0); +REPLACE INTO clan_wars (clan1, clan2, wantspeace1, wantspeace2) VALUES ('300000090', '300000084', 0, 0); +REPLACE INTO clan_wars (clan1, clan2, wantspeace1, wantspeace2) VALUES ('300000129', '300000054', 0, 0); +REPLACE INTO clan_wars (clan1, clan2, wantspeace1, wantspeace2) VALUES ('300000054', '300000129', 0, 0); +REPLACE INTO clan_wars (clan1, clan2, wantspeace1, wantspeace2) VALUES ('300000114', '300000111', 0, 0); +REPLACE INTO clan_wars (clan1, clan2, wantspeace1, wantspeace2) VALUES ('300000111', '300000114', 0, 0); +REPLACE INTO clan_wars (clan1, clan2, wantspeace1, wantspeace2) VALUES ('300000118', '300000076', 0, 0); +REPLACE INTO clan_wars (clan1, clan2, wantspeace1, wantspeace2) VALUES ('300000076', '300000118', 0, 0); +REPLACE INTO clan_wars (clan1, clan2, wantspeace1, wantspeace2) VALUES ('300000132', '300000087', 0, 0); +REPLACE INTO clan_wars (clan1, clan2, wantspeace1, wantspeace2) VALUES ('300000087', '300000132', 0, 0); +REPLACE INTO clan_wars (clan1, clan2, wantspeace1, wantspeace2) VALUES ('300000073', '300000113', 0, 0); +REPLACE INTO clan_wars (clan1, clan2, wantspeace1, wantspeace2) VALUES ('300000113', '300000073', 0, 0); +UPDATE clanhall SET ownerId=300000055, paidUntil=1792863024618, paid=1 WHERE id=22 AND ownerId=0; +UPDATE clanhall SET ownerId=300000017, paidUntil=1792863024618, paid=1 WHERE id=23 AND ownerId=0; +UPDATE clanhall SET ownerId=300000028, paidUntil=1792863024618, paid=1 WHERE id=24 AND ownerId=0; +UPDATE clanhall SET ownerId=300000030, paidUntil=1792863024618, paid=1 WHERE id=26 AND ownerId=0; +UPDATE clanhall SET ownerId=300000023, paidUntil=1792863024618, paid=1 WHERE id=27 AND ownerId=0; +UPDATE clanhall SET ownerId=300000051, paidUntil=1792863024618, paid=1 WHERE id=28 AND ownerId=0; +UPDATE clanhall SET ownerId=300000008, paidUntil=1792863024618, paid=1 WHERE id=29 AND ownerId=0; +UPDATE clanhall SET ownerId=300000053, paidUntil=1792863024618, paid=1 WHERE id=30 AND ownerId=0; +UPDATE clanhall SET ownerId=300000005, paidUntil=1792863024618, paid=1 WHERE id=31 AND ownerId=0; +UPDATE clanhall SET ownerId=300000002, paidUntil=1792863024618, paid=1 WHERE id=32 AND ownerId=0; +UPDATE clanhall SET ownerId=300000078, paidUntil=1792863024618, paid=1 WHERE id=33 AND ownerId=0; +UPDATE clanhall SET ownerId=300000021, paidUntil=1792863024618, paid=1 WHERE id=36 AND ownerId=0; +UPDATE clanhall SET ownerId=300000025, paidUntil=1792863024618, paid=1 WHERE id=37 AND ownerId=0; +UPDATE clanhall SET ownerId=300000093, paidUntil=1792863024618, paid=1 WHERE id=38 AND ownerId=0; +UPDATE clanhall SET ownerId=300000070, paidUntil=1792863024618, paid=1 WHERE id=39 AND ownerId=0; +UPDATE clanhall SET ownerId=300000064, paidUntil=1792863024618, paid=1 WHERE id=40 AND ownerId=0; +UPDATE clanhall SET ownerId=300000014, paidUntil=1792863024618, paid=1 WHERE id=41 AND ownerId=0; +UPDATE clanhall SET ownerId=300000019, paidUntil=1792863024618, paid=1 WHERE id=43 AND ownerId=0; +UPDATE clanhall SET ownerId=300000018, paidUntil=1792863024618, paid=1 WHERE id=44 AND ownerId=0; +UPDATE clanhall SET ownerId=300000099, paidUntil=1792863024618, paid=1 WHERE id=45 AND ownerId=0; +UPDATE clanhall SET ownerId=300000072, paidUntil=1792863024618, paid=1 WHERE id=46 AND ownerId=0; +UPDATE clanhall SET ownerId=300000059, paidUntil=1792863024618, paid=1 WHERE id=47 AND ownerId=0; +UPDATE clanhall SET ownerId=300000006, paidUntil=1792863024618, paid=1 WHERE id=48 AND ownerId=0; +UPDATE clanhall SET ownerId=300000063, paidUntil=1792863024618, paid=1 WHERE id=50 AND ownerId=0; +UPDATE clanhall SET ownerId=300000057, paidUntil=1792863024618, paid=1 WHERE id=51 AND ownerId=0; +UPDATE clanhall SET ownerId=300000118, paidUntil=1792863024618, paid=1 WHERE id=52 AND ownerId=0; +UPDATE clanhall SET ownerId=300000029, paidUntil=1792863024618, paid=1 WHERE id=54 AND ownerId=0; +UPDATE clanhall SET ownerId=300000062, paidUntil=1792863024618, paid=1 WHERE id=55 AND ownerId=0; +UPDATE clanhall SET ownerId=300000075, paidUntil=1792863024618, paid=1 WHERE id=56 AND ownerId=0; +UPDATE clanhall SET ownerId=300000086, paidUntil=1792863024618, paid=1 WHERE id=57 AND ownerId=0; +UPDATE clanhall SET ownerId=300000055, paidUntil=1792863024618, paid=1 WHERE id=58 AND ownerId=0; +UPDATE clanhall SET ownerId=300000017, paidUntil=1792863024618, paid=1 WHERE id=59 AND ownerId=0; +UPDATE clanhall SET ownerId=300000028, paidUntil=1792863024618, paid=1 WHERE id=60 AND ownerId=0; +UPDATE clanhall SET ownerId=300000030, paidUntil=1792863024618, paid=1 WHERE id=61 AND ownerId=0; +UPDATE castle SET showNpcCrest='true' WHERE id IN (1,2,3,5); +INSERT IGNORE INTO olympiad_nobles (charId, class_id, olympiad_points, competitions_done, competitions_won, competitions_lost, competitions_drawn) VALUES (270001017, 94, 67, 14, 12, 5, 1); +INSERT IGNORE INTO olympiad_nobles (charId, class_id, olympiad_points, competitions_done, competitions_won, competitions_lost, competitions_drawn) VALUES (270001111, 97, 57, 12, 16, 10, 3); +INSERT IGNORE INTO olympiad_nobles (charId, class_id, olympiad_points, competitions_done, competitions_won, competitions_lost, competitions_drawn) VALUES (270001186, 93, 56, 20, 12, 1, 0); +INSERT IGNORE INTO olympiad_nobles (charId, class_id, olympiad_points, competitions_done, competitions_won, competitions_lost, competitions_drawn) VALUES (270001268, 110, 66, 20, 17, 4, 1); +INSERT IGNORE INTO olympiad_nobles (charId, class_id, olympiad_points, competitions_done, competitions_won, competitions_lost, competitions_drawn) VALUES (270001269, 110, 77, 21, 6, 1, 3); +INSERT IGNORE INTO olympiad_nobles (charId, class_id, olympiad_points, competitions_done, competitions_won, competitions_lost, competitions_drawn) VALUES (270001331, 113, 60, 16, 10, 5, 1); +INSERT IGNORE INTO olympiad_nobles (charId, class_id, olympiad_points, competitions_done, competitions_won, competitions_lost, competitions_drawn) VALUES (270001420, 94, 77, 26, 14, 1, 3); +INSERT IGNORE INTO olympiad_nobles (charId, class_id, olympiad_points, competitions_done, competitions_won, competitions_lost, competitions_drawn) VALUES (270001442, 90, 41, 28, 16, 4, 0); +INSERT IGNORE INTO olympiad_nobles (charId, class_id, olympiad_points, competitions_done, competitions_won, competitions_lost, competitions_drawn) VALUES (270001461, 92, 70, 27, 11, 7, 0); +INSERT IGNORE INTO olympiad_nobles (charId, class_id, olympiad_points, competitions_done, competitions_won, competitions_lost, competitions_drawn) VALUES (270001465, 113, 61, 30, 13, 8, 3); +INSERT IGNORE INTO olympiad_nobles (charId, class_id, olympiad_points, competitions_done, competitions_won, competitions_lost, competitions_drawn) VALUES (270001607, 93, 59, 18, 6, 2, 0); +INSERT IGNORE INTO olympiad_nobles (charId, class_id, olympiad_points, competitions_done, competitions_won, competitions_lost, competitions_drawn) VALUES (270001786, 113, 72, 16, 9, 10, 2); +INSERT IGNORE INTO olympiad_nobles (charId, class_id, olympiad_points, competitions_done, competitions_won, competitions_lost, competitions_drawn) VALUES (270001815, 113, 67, 23, 17, 10, 3); +INSERT IGNORE INTO olympiad_nobles (charId, class_id, olympiad_points, competitions_done, competitions_won, competitions_lost, competitions_drawn) VALUES (270001881, 88, 38, 23, 5, 2, 0); +INSERT IGNORE INTO olympiad_nobles (charId, class_id, olympiad_points, competitions_done, competitions_won, competitions_lost, competitions_drawn) VALUES (270002018, 108, 73, 19, 17, 3, 1); +INSERT IGNORE INTO olympiad_nobles (charId, class_id, olympiad_points, competitions_done, competitions_won, competitions_lost, competitions_drawn) VALUES (270002043, 88, 11, 16, 20, 1, 3); +INSERT IGNORE INTO olympiad_nobles (charId, class_id, olympiad_points, competitions_done, competitions_won, competitions_lost, competitions_drawn) VALUES (270002104, 93, 66, 9, 20, 9, 0); +INSERT IGNORE INTO olympiad_nobles (charId, class_id, olympiad_points, competitions_done, competitions_won, competitions_lost, competitions_drawn) VALUES (270002106, 90, 75, 17, 6, 7, 2); +INSERT IGNORE INTO olympiad_nobles (charId, class_id, olympiad_points, competitions_done, competitions_won, competitions_lost, competitions_drawn) VALUES (270002177, 93, 75, 11, 14, 3, 1); +INSERT IGNORE INTO olympiad_nobles (charId, class_id, olympiad_points, competitions_done, competitions_won, competitions_lost, competitions_drawn) VALUES (270002308, 110, 21, 10, 16, 10, 2); +INSERT IGNORE INTO olympiad_nobles (charId, class_id, olympiad_points, competitions_done, competitions_won, competitions_lost, competitions_drawn) VALUES (270002326, 102, 19, 11, 20, 3, 3); +INSERT IGNORE INTO olympiad_nobles (charId, class_id, olympiad_points, competitions_done, competitions_won, competitions_lost, competitions_drawn) VALUES (270002383, 94, 62, 22, 7, 5, 1); +INSERT IGNORE INTO olympiad_nobles (charId, class_id, olympiad_points, competitions_done, competitions_won, competitions_lost, competitions_drawn) VALUES (270002460, 117, 18, 18, 11, 10, 1); +INSERT IGNORE INTO olympiad_nobles (charId, class_id, olympiad_points, competitions_done, competitions_won, competitions_lost, competitions_drawn) VALUES (270002508, 102, 10, 30, 9, 2, 1); +INSERT IGNORE INTO olympiad_nobles (charId, class_id, olympiad_points, competitions_done, competitions_won, competitions_lost, competitions_drawn) VALUES (270002702, 92, 42, 18, 13, 10, 2); +INSERT IGNORE INTO olympiad_nobles (charId, class_id, olympiad_points, competitions_done, competitions_won, competitions_lost, competitions_drawn) VALUES (270002964, 88, 77, 24, 9, 0, 0); +INSERT IGNORE INTO olympiad_nobles (charId, class_id, olympiad_points, competitions_done, competitions_won, competitions_lost, competitions_drawn) VALUES (270003037, 102, 68, 19, 18, 3, 3); +INSERT IGNORE INTO olympiad_nobles (charId, class_id, olympiad_points, competitions_done, competitions_won, competitions_lost, competitions_drawn) VALUES (270003204, 88, 30, 20, 9, 2, 1); +INSERT IGNORE INTO olympiad_nobles (charId, class_id, olympiad_points, competitions_done, competitions_won, competitions_lost, competitions_drawn) VALUES (270003215, 93, 71, 11, 14, 3, 1); +INSERT IGNORE INTO olympiad_nobles (charId, class_id, olympiad_points, competitions_done, competitions_won, competitions_lost, competitions_drawn) VALUES (270003222, 102, 78, 12, 6, 9, 1); +INSERT IGNORE INTO olympiad_nobles (charId, class_id, olympiad_points, competitions_done, competitions_won, competitions_lost, competitions_drawn) VALUES (270003533, 117, 15, 27, 15, 8, 0); +INSERT IGNORE INTO olympiad_nobles (charId, class_id, olympiad_points, competitions_done, competitions_won, competitions_lost, competitions_drawn) VALUES (270003547, 103, 11, 17, 13, 1, 1); +INSERT IGNORE INTO olympiad_nobles (charId, class_id, olympiad_points, competitions_done, competitions_won, competitions_lost, competitions_drawn) VALUES (270003713, 110, 77, 20, 5, 0, 0); +INSERT IGNORE INTO olympiad_nobles (charId, class_id, olympiad_points, competitions_done, competitions_won, competitions_lost, competitions_drawn) VALUES (270003875, 117, 13, 26, 20, 5, 1); +INSERT IGNORE INTO olympiad_nobles (charId, class_id, olympiad_points, competitions_done, competitions_won, competitions_lost, competitions_drawn) VALUES (270003919, 113, 73, 30, 7, 0, 0); +INSERT IGNORE INTO olympiad_nobles (charId, class_id, olympiad_points, competitions_done, competitions_won, competitions_lost, competitions_drawn) VALUES (270003934, 117, 53, 14, 20, 8, 2); +INSERT IGNORE INTO olympiad_nobles (charId, class_id, olympiad_points, competitions_done, competitions_won, competitions_lost, competitions_drawn) VALUES (270004078, 94, 73, 15, 7, 5, 1); +INSERT IGNORE INTO olympiad_nobles (charId, class_id, olympiad_points, competitions_done, competitions_won, competitions_lost, competitions_drawn) VALUES (270004101, 90, 30, 21, 8, 2, 3); +INSERT IGNORE INTO olympiad_nobles (charId, class_id, olympiad_points, competitions_done, competitions_won, competitions_lost, competitions_drawn) VALUES (270004138, 92, 60, 16, 6, 9, 2); +INSERT IGNORE INTO olympiad_nobles (charId, class_id, olympiad_points, competitions_done, competitions_won, competitions_lost, competitions_drawn) VALUES (270004318, 103, 68, 17, 19, 2, 1); +INSERT IGNORE INTO olympiad_nobles (charId, class_id, olympiad_points, competitions_done, competitions_won, competitions_lost, competitions_drawn) VALUES (270004419, 102, 15, 29, 15, 4, 2); +INSERT IGNORE INTO olympiad_nobles (charId, class_id, olympiad_points, competitions_done, competitions_won, competitions_lost, competitions_drawn) VALUES (270004722, 117, 44, 18, 17, 8, 2); +INSERT IGNORE INTO olympiad_nobles (charId, class_id, olympiad_points, competitions_done, competitions_won, competitions_lost, competitions_drawn) VALUES (270004736, 97, 72, 18, 5, 3, 3); +INSERT IGNORE INTO olympiad_nobles (charId, class_id, olympiad_points, competitions_done, competitions_won, competitions_lost, competitions_drawn) VALUES (270004823, 97, 61, 17, 19, 4, 3); +INSERT IGNORE INTO olympiad_nobles (charId, class_id, olympiad_points, competitions_done, competitions_won, competitions_lost, competitions_drawn) VALUES (270004871, 92, 71, 27, 19, 3, 2); +INSERT IGNORE INTO olympiad_nobles (charId, class_id, olympiad_points, competitions_done, competitions_won, competitions_lost, competitions_drawn) VALUES (270004895, 97, 45, 20, 9, 9, 3); +INSERT IGNORE INTO olympiad_nobles (charId, class_id, olympiad_points, competitions_done, competitions_won, competitions_lost, competitions_drawn) VALUES (270005073, 108, 68, 17, 11, 8, 0); +INSERT IGNORE INTO olympiad_nobles (charId, class_id, olympiad_points, competitions_done, competitions_won, competitions_lost, competitions_drawn) VALUES (270005085, 94, 35, 23, 16, 2, 2); +INSERT IGNORE INTO olympiad_nobles (charId, class_id, olympiad_points, competitions_done, competitions_won, competitions_lost, competitions_drawn) VALUES (270005105, 113, 16, 10, 7, 7, 2); +INSERT IGNORE INTO olympiad_nobles (charId, class_id, olympiad_points, competitions_done, competitions_won, competitions_lost, competitions_drawn) VALUES (270005106, 97, 25, 9, 7, 10, 2); +INSERT IGNORE INTO olympiad_nobles (charId, class_id, olympiad_points, competitions_done, competitions_won, competitions_lost, competitions_drawn) VALUES (270005122, 94, 34, 17, 15, 3, 0); +INSERT IGNORE INTO olympiad_nobles (charId, class_id, olympiad_points, competitions_done, competitions_won, competitions_lost, competitions_drawn) VALUES (270005155, 88, 64, 27, 7, 0, 3); +INSERT IGNORE INTO olympiad_nobles (charId, class_id, olympiad_points, competitions_done, competitions_won, competitions_lost, competitions_drawn) VALUES (270005249, 103, 20, 30, 5, 8, 3); +INSERT IGNORE INTO olympiad_nobles (charId, class_id, olympiad_points, competitions_done, competitions_won, competitions_lost, competitions_drawn) VALUES (270005442, 93, 78, 30, 12, 3, 2); +INSERT IGNORE INTO olympiad_nobles (charId, class_id, olympiad_points, competitions_done, competitions_won, competitions_lost, competitions_drawn) VALUES (270005610, 93, 49, 15, 7, 9, 1); +INSERT IGNORE INTO olympiad_nobles (charId, class_id, olympiad_points, competitions_done, competitions_won, competitions_lost, competitions_drawn) VALUES (270005688, 117, 38, 29, 10, 10, 2); +INSERT IGNORE INTO olympiad_nobles (charId, class_id, olympiad_points, competitions_done, competitions_won, competitions_lost, competitions_drawn) VALUES (270005753, 102, 34, 23, 10, 4, 3); +INSERT IGNORE INTO olympiad_nobles (charId, class_id, olympiad_points, competitions_done, competitions_won, competitions_lost, competitions_drawn) VALUES (270001016, 97, 19, 22, 12, 0, 2); +INSERT IGNORE INTO olympiad_nobles (charId, class_id, olympiad_points, competitions_done, competitions_won, competitions_lost, competitions_drawn) VALUES (270001034, 113, 27, 24, 15, 0, 3); +INSERT IGNORE INTO olympiad_nobles (charId, class_id, olympiad_points, competitions_done, competitions_won, competitions_lost, competitions_drawn) VALUES (270001073, 113, 47, 21, 12, 0, 1); +INSERT IGNORE INTO heroes (charId, class_id, count, played, claimed) VALUES (270001017, 94, 1, 1, 'true'); +INSERT IGNORE INTO heroes (charId, class_id, count, played, claimed) VALUES (270001111, 97, 1, 1, 'true'); +INSERT IGNORE INTO heroes (charId, class_id, count, played, claimed) VALUES (270001186, 93, 1, 1, 'true'); +INSERT IGNORE INTO heroes (charId, class_id, count, played, claimed) VALUES (270001268, 110, 1, 1, 'true'); +INSERT IGNORE INTO heroes (charId, class_id, count, played, claimed) VALUES (270001331, 113, 1, 1, 'true'); +INSERT IGNORE INTO heroes (charId, class_id, count, played, claimed) VALUES (270001442, 90, 1, 1, 'true'); +INSERT IGNORE INTO heroes (charId, class_id, count, played, claimed) VALUES (270001461, 92, 1, 1, 'true'); +INSERT IGNORE INTO heroes (charId, class_id, count, played, claimed) VALUES (270001881, 88, 1, 1, 'true'); +INSERT IGNORE INTO heroes (charId, class_id, count, played, claimed) VALUES (270002018, 108, 1, 1, 'true'); +INSERT IGNORE INTO heroes (charId, class_id, count, played, claimed) VALUES (270002326, 102, 1, 1, 'true'); +INSERT IGNORE INTO heroes (charId, class_id, count, played, claimed) VALUES (270002460, 117, 1, 1, 'true'); +INSERT IGNORE INTO heroes (charId, class_id, count, played, claimed) VALUES (270003547, 103, 1, 1, 'true'); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270001003, 'dawn', 1, 986, 986, 986, 29590, 2959); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270001004, 'dusk', 2, 6227, 6227, 6227, 186810, 18681); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270001005, 'dawn', 3, 503, 503, 503, 15090, 1509); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270001006, 'dusk', 1, 3152, 3152, 3152, 94570, 9457); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270001008, 'dawn', 2, 5310, 5310, 5310, 159320, 15932); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270001009, 'dusk', 3, 41, 41, 41, 1230, 123); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270001010, 'dawn', 1, 5991, 5991, 5991, 179750, 17975); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270001012, 'dusk', 2, 6577, 6577, 6577, 197310, 19731); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270001013, 'dawn', 3, 6444, 6444, 6444, 193340, 19334); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270001015, 'dusk', 1, 1995, 1995, 1995, 59850, 5985); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270001016, 'dawn', 2, 3969, 3969, 3969, 119080, 11908); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270001017, 'dusk', 3, 4156, 4156, 4156, 124700, 12470); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270001023, 'dawn', 1, 5929, 5929, 5929, 177870, 17787); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270001024, 'dusk', 2, 1360, 1360, 1360, 40810, 4081); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270001025, 'dawn', 3, 6286, 6286, 6286, 188580, 18858); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270001028, 'dusk', 1, 1539, 1539, 1539, 46170, 4617); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270001031, 'dawn', 2, 5215, 5215, 5215, 156470, 15647); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270001032, 'dusk', 3, 3997, 3997, 3997, 119910, 11991); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270001033, 'dawn', 1, 429, 429, 429, 12880, 1288); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270001034, 'dusk', 2, 3855, 3855, 3855, 115650, 11565); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270001035, 'dawn', 3, 1699, 1699, 1699, 50990, 5099); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270001036, 'dusk', 1, 4402, 4402, 4402, 132060, 13206); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270001037, 'dawn', 2, 2446, 2446, 2446, 73390, 7339); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270001038, 'dusk', 3, 6502, 6502, 6502, 195070, 19507); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270001040, 'dawn', 1, 3597, 3597, 3597, 107930, 10793); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270001041, 'dusk', 2, 1669, 1669, 1669, 50070, 5007); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270001043, 'dawn', 3, 234, 234, 234, 7030, 703); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270001044, 'dusk', 1, 2758, 2758, 2758, 82750, 8275); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270001045, 'dawn', 2, 1693, 1693, 1693, 50800, 5080); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270001047, 'dusk', 3, 2827, 2827, 2827, 84820, 8482); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270001048, 'dawn', 1, 5641, 5641, 5641, 169240, 16924); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270001049, 'dusk', 2, 6196, 6196, 6196, 185900, 18590); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270001050, 'dawn', 3, 1054, 1054, 1054, 31620, 3162); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270001052, 'dusk', 1, 5088, 5088, 5088, 152650, 15265); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270001053, 'dawn', 2, 711, 711, 711, 21340, 2134); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270001055, 'dusk', 3, 1642, 1642, 1642, 49260, 4926); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270001056, 'dawn', 1, 5597, 5597, 5597, 167920, 16792); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270001057, 'dusk', 2, 6459, 6459, 6459, 193780, 19378); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270001060, 'dawn', 3, 3450, 3450, 3450, 103510, 10351); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270001062, 'dusk', 1, 4167, 4167, 4167, 125010, 12501); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270001063, 'dawn', 2, 2066, 2066, 2066, 62000, 6200); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270001068, 'dusk', 3, 6362, 6362, 6362, 190880, 19088); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270001071, 'dawn', 1, 1364, 1364, 1364, 40920, 4092); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270001073, 'dusk', 2, 3339, 3339, 3339, 100190, 10019); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270001074, 'dawn', 3, 4463, 4463, 4463, 133910, 13391); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270001075, 'dusk', 1, 1206, 1206, 1206, 36190, 3619); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270001078, 'dawn', 2, 4330, 4330, 4330, 129920, 12992); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270001080, 'dusk', 3, 6073, 6073, 6073, 182200, 18220); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270001082, 'dawn', 1, 3601, 3601, 3601, 108040, 10804); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270001083, 'dusk', 2, 5264, 5264, 5264, 157940, 15794); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270001084, 'dawn', 3, 341, 341, 341, 10250, 1025); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270001086, 'dusk', 1, 2266, 2266, 2266, 67980, 6798); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270001087, 'dawn', 2, 597, 597, 597, 17930, 1793); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270001088, 'dusk', 3, 4145, 4145, 4145, 124370, 12437); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270001089, 'dawn', 1, 6363, 6363, 6363, 190900, 19090); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270001090, 'dusk', 2, 3039, 3039, 3039, 91170, 9117); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270001091, 'dawn', 3, 1683, 1683, 1683, 50500, 5050); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270001092, 'dusk', 1, 1554, 1554, 1554, 46630, 4663); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270001093, 'dawn', 2, 4413, 4413, 4413, 132390, 13239); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270001094, 'dusk', 3, 5935, 5935, 5935, 178060, 17806); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270001097, 'dawn', 1, 1844, 1844, 1844, 55340, 5534); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270001098, 'dusk', 2, 6502, 6502, 6502, 195060, 19506); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270001099, 'dawn', 3, 1545, 1545, 1545, 46370, 4637); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270001100, 'dusk', 1, 2900, 2900, 2900, 87010, 8701); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270001102, 'dawn', 2, 1193, 1193, 1193, 35800, 3580); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270001103, 'dusk', 3, 4200, 4200, 4200, 126000, 12600); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270001104, 'dawn', 1, 4926, 4926, 4926, 147800, 14780); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270001105, 'dusk', 2, 469, 469, 469, 14070, 1407); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270001106, 'dawn', 3, 3870, 3870, 3870, 116120, 11612); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270001109, 'dusk', 1, 662, 662, 662, 19870, 1987); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270001110, 'dawn', 2, 1827, 1827, 1827, 54820, 5482); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270001111, 'dusk', 3, 2175, 2175, 2175, 65260, 6526); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270001112, 'dawn', 1, 6361, 6361, 6361, 190830, 19083); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270001113, 'dusk', 2, 1961, 1961, 1961, 58830, 5883); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270001114, 'dawn', 3, 771, 771, 771, 23130, 2313); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270001116, 'dusk', 1, 5664, 5664, 5664, 169940, 16994); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270001118, 'dawn', 2, 6542, 6542, 6542, 196280, 19628); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270001119, 'dusk', 3, 1396, 1396, 1396, 41900, 4190); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270001120, 'dawn', 1, 3412, 3412, 3412, 102360, 10236); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270001124, 'dusk', 2, 3025, 3025, 3025, 90760, 9076); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270001125, 'dawn', 3, 5515, 5515, 5515, 165450, 16545); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270001126, 'dusk', 1, 4516, 4516, 4516, 135480, 13548); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270001129, 'dawn', 2, 4077, 4077, 4077, 122310, 12231); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270001130, 'dusk', 3, 5810, 5810, 5810, 174320, 17432); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270001131, 'dawn', 1, 3183, 3183, 3183, 95510, 9551); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270001133, 'dusk', 2, 4780, 4780, 4780, 143410, 14341); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270001134, 'dawn', 3, 75, 75, 75, 2250, 225); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270001135, 'dusk', 1, 6016, 6016, 6016, 180480, 18048); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270001136, 'dawn', 2, 3150, 3150, 3150, 94520, 9452); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270001137, 'dusk', 3, 5474, 5474, 5474, 164220, 16422); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270001139, 'dawn', 1, 2020, 2020, 2020, 60620, 6062); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270001140, 'dusk', 2, 5159, 5159, 5159, 154790, 15479); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270001141, 'dawn', 3, 3635, 3635, 3635, 109050, 10905); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270001142, 'dusk', 1, 4464, 4464, 4464, 133930, 13393); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270001143, 'dawn', 2, 5592, 5592, 5592, 167770, 16777); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270001146, 'dusk', 3, 5727, 5727, 5727, 171810, 17181); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270001147, 'dawn', 1, 4942, 4942, 4942, 148260, 14826); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270001148, 'dusk', 2, 3814, 3814, 3814, 114430, 11443); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270001150, 'dawn', 3, 4351, 4351, 4351, 130530, 13053); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270001152, 'dusk', 1, 3623, 3623, 3623, 108700, 10870); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270001153, 'dawn', 2, 1345, 1345, 1345, 40350, 4035); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270001154, 'dusk', 3, 1327, 1327, 1327, 39820, 3982); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270001155, 'dawn', 1, 2016, 2016, 2016, 60490, 6049); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270001156, 'dusk', 2, 4601, 4601, 4601, 138040, 13804); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270001157, 'dawn', 3, 3324, 3324, 3324, 99730, 9973); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270001159, 'dusk', 1, 2595, 2595, 2595, 77870, 7787); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270001160, 'dawn', 2, 1273, 1273, 1273, 38190, 3819); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270001161, 'dusk', 3, 656, 656, 656, 19690, 1969); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270001162, 'dawn', 1, 2203, 2203, 2203, 66110, 6611); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270001164, 'dusk', 2, 5134, 5134, 5134, 154030, 15403); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270001166, 'dawn', 3, 2086, 2086, 2086, 62590, 6259); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270001167, 'dusk', 1, 3117, 3117, 3117, 93510, 9351); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270001169, 'dawn', 2, 4180, 4180, 4180, 125400, 12540); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270001170, 'dusk', 3, 4247, 4247, 4247, 127430, 12743); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270001171, 'dawn', 1, 4799, 4799, 4799, 143990, 14399); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270001174, 'dusk', 2, 3903, 3903, 3903, 117090, 11709); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270001178, 'dawn', 3, 4132, 4132, 4132, 123960, 12396); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270001180, 'dusk', 1, 4841, 4841, 4841, 145230, 14523); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270001181, 'dawn', 2, 999, 999, 999, 29980, 2998); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270001183, 'dusk', 3, 3949, 3949, 3949, 118490, 11849); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270001185, 'dawn', 1, 4498, 4498, 4498, 134950, 13495); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270001186, 'dusk', 2, 3258, 3258, 3258, 97750, 9775); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270001188, 'dawn', 3, 6276, 6276, 6276, 188290, 18829); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270001189, 'dusk', 1, 300, 300, 300, 9010, 901); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270001190, 'dawn', 2, 1778, 1778, 1778, 53340, 5334); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270001191, 'dusk', 3, 5106, 5106, 5106, 153190, 15319); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270001192, 'dawn', 1, 6452, 6452, 6452, 193580, 19358); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270001193, 'dusk', 2, 2819, 2819, 2819, 84580, 8458); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270001195, 'dawn', 3, 841, 841, 841, 25240, 2524); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270001199, 'dusk', 1, 4619, 4619, 4619, 138570, 13857); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270001200, 'dawn', 2, 3483, 3483, 3483, 104510, 10451); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270001201, 'dusk', 3, 2432, 2432, 2432, 72980, 7298); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270001202, 'dawn', 1, 5424, 5424, 5424, 162740, 16274); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270001203, 'dusk', 2, 6268, 6268, 6268, 188060, 18806); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270001204, 'dawn', 3, 5642, 5642, 5642, 169280, 16928); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270001205, 'dusk', 1, 2715, 2715, 2715, 81460, 8146); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270001206, 'dawn', 2, 4675, 4675, 4675, 140260, 14026); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270001207, 'dusk', 3, 3849, 3849, 3849, 115490, 11549); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270001208, 'dawn', 1, 6320, 6320, 6320, 189610, 18961); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270001209, 'dusk', 2, 5422, 5422, 5422, 162670, 16267); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270001210, 'dawn', 3, 3135, 3135, 3135, 94050, 9405); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270001213, 'dusk', 1, 811, 811, 811, 24350, 2435); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270001214, 'dawn', 2, 145, 145, 145, 4360, 436); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270001217, 'dusk', 3, 6355, 6355, 6355, 190660, 19066); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270001218, 'dawn', 1, 217, 217, 217, 6520, 652); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270001220, 'dusk', 2, 554, 554, 554, 16640, 1664); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270001222, 'dawn', 3, 6627, 6627, 6627, 198820, 19882); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270001223, 'dusk', 1, 6328, 6328, 6328, 189860, 18986); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270001224, 'dawn', 2, 6634, 6634, 6634, 199030, 19903); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270001225, 'dusk', 3, 4432, 4432, 4432, 132970, 13297); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270001228, 'dawn', 1, 4558, 4558, 4558, 136740, 13674); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270001229, 'dusk', 2, 4274, 4274, 4274, 128230, 12823); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270001230, 'dawn', 3, 2701, 2701, 2701, 81040, 8104); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270001233, 'dusk', 1, 1192, 1192, 1192, 35760, 3576); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270001234, 'dawn', 2, 3201, 3201, 3201, 96050, 9605); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270001236, 'dusk', 3, 407, 407, 407, 12230, 1223); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270001237, 'dawn', 1, 2049, 2049, 2049, 61490, 6149); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270001238, 'dusk', 2, 6022, 6022, 6022, 180660, 18066); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270001239, 'dawn', 3, 5047, 5047, 5047, 151420, 15142); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270001240, 'dusk', 1, 424, 424, 424, 12720, 1272); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270001241, 'dawn', 2, 6584, 6584, 6584, 197520, 19752); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270001244, 'dusk', 3, 340, 340, 340, 10220, 1022); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270001245, 'dawn', 1, 4071, 4071, 4071, 122140, 12214); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270001246, 'dusk', 2, 3921, 3921, 3921, 117630, 11763); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270001248, 'dawn', 3, 479, 479, 479, 14390, 1439); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270001249, 'dusk', 1, 6649, 6649, 6649, 199480, 19948); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270001250, 'dawn', 2, 845, 845, 845, 25370, 2537); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270001251, 'dusk', 3, 3492, 3492, 3492, 104780, 10478); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270001252, 'dawn', 1, 936, 936, 936, 28090, 2809); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270001254, 'dusk', 2, 2136, 2136, 2136, 64080, 6408); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270001255, 'dawn', 3, 6615, 6615, 6615, 198460, 19846); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270001258, 'dusk', 1, 845, 845, 845, 25360, 2536); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270001259, 'dawn', 2, 4814, 4814, 4814, 144420, 14442); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270001261, 'dusk', 3, 1295, 1295, 1295, 38850, 3885); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270001262, 'dawn', 1, 4816, 4816, 4816, 144490, 14449); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270001264, 'dusk', 2, 5599, 5599, 5599, 167990, 16799); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270001265, 'dawn', 3, 5674, 5674, 5674, 170240, 17024); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270001266, 'dusk', 1, 2750, 2750, 2750, 82500, 8250); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270001267, 'dawn', 2, 5619, 5619, 5619, 168580, 16858); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270001268, 'dusk', 3, 3400, 3400, 3400, 102020, 10202); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270001269, 'dawn', 1, 3289, 3289, 3289, 98690, 9869); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270001270, 'dusk', 2, 5288, 5288, 5288, 158640, 15864); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270001271, 'dawn', 3, 6488, 6488, 6488, 194650, 19465); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270001273, 'dusk', 1, 5980, 5980, 5980, 179420, 17942); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270001274, 'dawn', 2, 5403, 5403, 5403, 162100, 16210); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270001280, 'dusk', 3, 2822, 2822, 2822, 84660, 8466); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270001282, 'dawn', 1, 5171, 5171, 5171, 155150, 15515); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270001283, 'dusk', 2, 4425, 4425, 4425, 132750, 13275); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270001285, 'dawn', 3, 54, 54, 54, 1640, 164); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270001287, 'dusk', 1, 2529, 2529, 2529, 75890, 7589); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270001290, 'dawn', 2, 2057, 2057, 2057, 61710, 6171); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270001292, 'dusk', 3, 1325, 1325, 1325, 39770, 3977); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270001293, 'dawn', 1, 5307, 5307, 5307, 159230, 15923); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270001296, 'dusk', 2, 4932, 4932, 4932, 147980, 14798); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270001299, 'dawn', 3, 6177, 6177, 6177, 185310, 18531); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270001302, 'dusk', 1, 1546, 1546, 1546, 46400, 4640); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270001304, 'dawn', 2, 1451, 1451, 1451, 43540, 4354); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270001306, 'dusk', 3, 1929, 1929, 1929, 57880, 5788); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270001307, 'dawn', 1, 2361, 2361, 2361, 70850, 7085); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270001309, 'dusk', 2, 4779, 4779, 4779, 143380, 14338); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270001311, 'dawn', 3, 1053, 1053, 1053, 31590, 3159); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270001312, 'dusk', 1, 1225, 1225, 1225, 36750, 3675); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270001313, 'dawn', 2, 699, 699, 699, 20980, 2098); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270001315, 'dusk', 3, 1089, 1089, 1089, 32680, 3268); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270001317, 'dawn', 1, 2492, 2492, 2492, 74760, 7476); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270001319, 'dusk', 2, 250, 250, 250, 7500, 750); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270001321, 'dawn', 3, 5819, 5819, 5819, 174590, 17459); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270001323, 'dusk', 1, 5214, 5214, 5214, 156420, 15642); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270001324, 'dawn', 2, 1796, 1796, 1796, 53890, 5389); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270001325, 'dusk', 3, 1311, 1311, 1311, 39350, 3935); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270001326, 'dawn', 1, 1225, 1225, 1225, 36760, 3676); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270001327, 'dusk', 2, 1652, 1652, 1652, 49570, 4957); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270001328, 'dawn', 3, 2120, 2120, 2120, 63620, 6362); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270001331, 'dusk', 1, 1794, 1794, 1794, 53830, 5383); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270001332, 'dawn', 2, 5498, 5498, 5498, 164940, 16494); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270001333, 'dusk', 3, 6370, 6370, 6370, 191100, 19110); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270001334, 'dawn', 1, 142, 142, 142, 4280, 428); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270001335, 'dusk', 2, 2853, 2853, 2853, 85600, 8560); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270001336, 'dawn', 3, 471, 471, 471, 14150, 1415); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270001337, 'dusk', 1, 4007, 4007, 4007, 120220, 12022); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270001338, 'dawn', 2, 5581, 5581, 5581, 167430, 16743); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270001339, 'dusk', 3, 465, 465, 465, 13950, 1395); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270001341, 'dawn', 1, 5908, 5908, 5908, 177240, 17724); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270001344, 'dusk', 2, 3135, 3135, 3135, 94070, 9407); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270001345, 'dawn', 3, 791, 791, 791, 23750, 2375); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270001348, 'dusk', 1, 3900, 3900, 3900, 117020, 11702); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270001349, 'dawn', 2, 4600, 4600, 4600, 138000, 13800); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270001350, 'dusk', 3, 59, 59, 59, 1790, 179); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270001353, 'dawn', 1, 1197, 1197, 1197, 35930, 3593); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270001354, 'dusk', 2, 4380, 4380, 4380, 131410, 13141); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270001355, 'dawn', 3, 5815, 5815, 5815, 174460, 17446); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270001356, 'dusk', 1, 5150, 5150, 5150, 154500, 15450); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270001357, 'dawn', 2, 6361, 6361, 6361, 190830, 19083); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270001358, 'dusk', 3, 1712, 1712, 1712, 51370, 5137); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270001359, 'dawn', 1, 5364, 5364, 5364, 160920, 16092); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270001360, 'dusk', 2, 6359, 6359, 6359, 190770, 19077); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270001361, 'dawn', 3, 4706, 4706, 4706, 141200, 14120); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270001366, 'dusk', 1, 1932, 1932, 1932, 57980, 5798); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270001369, 'dawn', 2, 460, 460, 460, 13820, 1382); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270001371, 'dusk', 3, 575, 575, 575, 17270, 1727); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270001372, 'dawn', 1, 1068, 1068, 1068, 32050, 3205); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270001373, 'dusk', 2, 4538, 4538, 4538, 136160, 13616); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270001374, 'dawn', 3, 1101, 1101, 1101, 33050, 3305); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270001375, 'dusk', 1, 4529, 4529, 4529, 135890, 13589); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270001377, 'dawn', 2, 2064, 2064, 2064, 61930, 6193); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270001379, 'dusk', 3, 3124, 3124, 3124, 93720, 9372); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270001380, 'dawn', 1, 5858, 5858, 5858, 175760, 17576); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270001381, 'dusk', 2, 4451, 4451, 4451, 133530, 13353); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270001383, 'dawn', 3, 4613, 4613, 4613, 138390, 13839); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270001384, 'dusk', 1, 3855, 3855, 3855, 115650, 11565); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270001388, 'dawn', 2, 1546, 1546, 1546, 46380, 4638); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270001390, 'dusk', 3, 4830, 4830, 4830, 144900, 14490); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270001394, 'dawn', 1, 117, 117, 117, 3530, 353); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270001395, 'dusk', 2, 629, 629, 629, 18880, 1888); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270001398, 'dawn', 3, 523, 523, 523, 15710, 1571); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270001399, 'dusk', 1, 1772, 1772, 1772, 53180, 5318); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270001400, 'dawn', 2, 6306, 6306, 6306, 189180, 18918); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270001401, 'dusk', 3, 1552, 1552, 1552, 46570, 4657); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270001403, 'dawn', 1, 443, 443, 443, 13300, 1330); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270001404, 'dusk', 2, 5879, 5879, 5879, 176380, 17638); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270001405, 'dawn', 3, 4023, 4023, 4023, 120690, 12069); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270001406, 'dusk', 1, 2932, 2932, 2932, 87980, 8798); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270001409, 'dawn', 2, 4755, 4755, 4755, 142660, 14266); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270001410, 'dusk', 3, 4556, 4556, 4556, 136680, 13668); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270001411, 'dawn', 1, 1700, 1700, 1700, 51000, 5100); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270001412, 'dusk', 2, 2871, 2871, 2871, 86140, 8614); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270001413, 'dawn', 3, 6400, 6400, 6400, 192020, 19202); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270001415, 'dusk', 1, 6438, 6438, 6438, 193150, 19315); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270001417, 'dawn', 2, 82, 82, 82, 2460, 246); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270001419, 'dusk', 3, 3564, 3564, 3564, 106940, 10694); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270001420, 'dawn', 1, 1036, 1036, 1036, 31080, 3108); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270001421, 'dusk', 2, 2544, 2544, 2544, 76340, 7634); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270001423, 'dawn', 3, 3436, 3436, 3436, 103090, 10309); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270001424, 'dusk', 1, 4459, 4459, 4459, 133790, 13379); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270001425, 'dawn', 2, 4568, 4568, 4568, 137040, 13704); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270001427, 'dusk', 3, 5808, 5808, 5808, 174260, 17426); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270001429, 'dawn', 1, 6533, 6533, 6533, 195990, 19599); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270001430, 'dusk', 2, 3347, 3347, 3347, 100410, 10041); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270001431, 'dawn', 3, 6327, 6327, 6327, 189820, 18982); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270001432, 'dusk', 1, 2208, 2208, 2208, 66260, 6626); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270001434, 'dawn', 2, 55, 55, 55, 1650, 165); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270001435, 'dusk', 3, 3097, 3097, 3097, 92920, 9292); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270001437, 'dawn', 1, 614, 614, 614, 18440, 1844); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270001438, 'dusk', 2, 4704, 4704, 4704, 141120, 14112); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270001439, 'dawn', 3, 2750, 2750, 2750, 82500, 8250); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270001440, 'dusk', 1, 3701, 3701, 3701, 111040, 11104); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270001441, 'dawn', 2, 6107, 6107, 6107, 183220, 18322); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270001442, 'dusk', 3, 1442, 1442, 1442, 43260, 4326); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270001443, 'dawn', 1, 5038, 5038, 5038, 151150, 15115); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270001445, 'dusk', 2, 3406, 3406, 3406, 102190, 10219); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270001449, 'dawn', 3, 6415, 6415, 6415, 192470, 19247); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270001450, 'dusk', 1, 5841, 5841, 5841, 175250, 17525); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270001451, 'dawn', 2, 77, 77, 77, 2320, 232); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270001454, 'dusk', 3, 5393, 5393, 5393, 161800, 16180); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270001457, 'dawn', 1, 3923, 3923, 3923, 117710, 11771); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270001458, 'dusk', 2, 946, 946, 946, 28380, 2838); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270001459, 'dawn', 3, 5439, 5439, 5439, 163190, 16319); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270001460, 'dusk', 1, 6640, 6640, 6640, 199220, 19922); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270001461, 'dawn', 2, 1680, 1680, 1680, 50400, 5040); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270001462, 'dusk', 3, 4517, 4517, 4517, 135530, 13553); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270001463, 'dawn', 1, 565, 565, 565, 16950, 1695); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270001464, 'dusk', 2, 691, 691, 691, 20730, 2073); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270001465, 'dawn', 3, 5615, 5615, 5615, 168470, 16847); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270001467, 'dusk', 1, 3451, 3451, 3451, 103550, 10355); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270001468, 'dawn', 2, 3831, 3831, 3831, 114930, 11493); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270001470, 'dusk', 3, 697, 697, 697, 20910, 2091); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270001471, 'dawn', 1, 2720, 2720, 2720, 81620, 8162); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270001472, 'dusk', 2, 340, 340, 340, 10210, 1021); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270001474, 'dawn', 3, 1882, 1882, 1882, 56460, 5646); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270001475, 'dusk', 1, 746, 746, 746, 22380, 2238); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270001476, 'dawn', 2, 5834, 5834, 5834, 175040, 17504); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270001477, 'dusk', 3, 476, 476, 476, 14300, 1430); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270001478, 'dawn', 1, 5462, 5462, 5462, 163880, 16388); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270001479, 'dusk', 2, 2805, 2805, 2805, 84150, 8415); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270001483, 'dawn', 3, 4853, 4853, 4853, 145590, 14559); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270001486, 'dusk', 1, 6272, 6272, 6272, 188170, 18817); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270001487, 'dawn', 2, 3399, 3399, 3399, 101990, 10199); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270001488, 'dusk', 3, 1976, 1976, 1976, 59300, 5930); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270001490, 'dawn', 1, 125, 125, 125, 3750, 375); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270001491, 'dusk', 2, 3198, 3198, 3198, 95940, 9594); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270001492, 'dawn', 3, 5158, 5158, 5158, 154760, 15476); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270001493, 'dusk', 1, 1304, 1304, 1304, 39120, 3912); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270001494, 'dawn', 2, 112, 112, 112, 3380, 338); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270001495, 'dusk', 3, 3410, 3410, 3410, 102320, 10232); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270001496, 'dawn', 1, 4270, 4270, 4270, 128120, 12812); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270001497, 'dusk', 2, 1217, 1217, 1217, 36520, 3652); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270001499, 'dawn', 3, 871, 871, 871, 26140, 2614); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270001500, 'dusk', 1, 4368, 4368, 4368, 131050, 13105); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270001501, 'dawn', 2, 3392, 3392, 3392, 101760, 10176); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270001502, 'dusk', 3, 2023, 2023, 2023, 60690, 6069); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270001506, 'dawn', 1, 444, 444, 444, 13330, 1333); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270001507, 'dusk', 2, 5777, 5777, 5777, 173330, 17333); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270001508, 'dawn', 3, 1765, 1765, 1765, 52950, 5295); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270001509, 'dusk', 1, 1752, 1752, 1752, 52570, 5257); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270001510, 'dawn', 2, 2863, 2863, 2863, 85910, 8591); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270001511, 'dusk', 3, 3229, 3229, 3229, 96870, 9687); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270001513, 'dawn', 1, 1866, 1866, 1866, 55980, 5598); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270001514, 'dusk', 2, 2062, 2062, 2062, 61860, 6186); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270001516, 'dawn', 3, 2603, 2603, 2603, 78110, 7811); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270001517, 'dusk', 1, 635, 635, 635, 19070, 1907); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270001518, 'dawn', 2, 3264, 3264, 3264, 97920, 9792); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270001519, 'dusk', 3, 1812, 1812, 1812, 54380, 5438); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270001520, 'dawn', 1, 538, 538, 538, 16160, 1616); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270001526, 'dusk', 2, 1005, 1005, 1005, 30170, 3017); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270001527, 'dawn', 3, 1558, 1558, 1558, 46760, 4676); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270001528, 'dusk', 1, 4672, 4672, 4672, 140180, 14018); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270001529, 'dawn', 2, 5525, 5525, 5525, 165750, 16575); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270001530, 'dusk', 3, 4493, 4493, 4493, 134810, 13481); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270001531, 'dawn', 1, 1835, 1835, 1835, 55060, 5506); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270001533, 'dusk', 2, 5199, 5199, 5199, 155980, 15598); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270001534, 'dawn', 3, 1177, 1177, 1177, 35310, 3531); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270001535, 'dusk', 1, 4329, 4329, 4329, 129890, 12989); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270001539, 'dawn', 2, 2408, 2408, 2408, 72260, 7226); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270001540, 'dusk', 3, 2932, 2932, 2932, 87980, 8798); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270001541, 'dawn', 1, 6128, 6128, 6128, 183840, 18384); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270001542, 'dusk', 2, 3200, 3200, 3200, 96000, 9600); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270001543, 'dawn', 3, 3136, 3136, 3136, 94090, 9409); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270001545, 'dusk', 1, 5890, 5890, 5890, 176700, 17670); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270001546, 'dawn', 2, 1568, 1568, 1568, 47060, 4706); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270001547, 'dusk', 3, 603, 603, 603, 18100, 1810); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270001549, 'dawn', 1, 1216, 1216, 1216, 36500, 3650); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270001552, 'dusk', 2, 2426, 2426, 2426, 72800, 7280); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270001553, 'dawn', 3, 1972, 1972, 1972, 59170, 5917); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270001556, 'dusk', 1, 4062, 4062, 4062, 121880, 12188); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270001557, 'dawn', 2, 572, 572, 572, 17180, 1718); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270001559, 'dusk', 3, 4987, 4987, 4987, 149620, 14962); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270001561, 'dawn', 1, 1345, 1345, 1345, 40350, 4035); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270001562, 'dusk', 2, 778, 778, 778, 23360, 2336); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270001563, 'dawn', 3, 4825, 4825, 4825, 144750, 14475); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270001565, 'dusk', 1, 3363, 3363, 3363, 100910, 10091); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270001566, 'dawn', 2, 4805, 4805, 4805, 144150, 14415); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270001569, 'dusk', 3, 2879, 2879, 2879, 86390, 8639); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270001570, 'dawn', 1, 3467, 3467, 3467, 104020, 10402); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270001571, 'dusk', 2, 2156, 2156, 2156, 64700, 6470); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270001573, 'dawn', 3, 2558, 2558, 2558, 76750, 7675); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270001574, 'dusk', 1, 5365, 5365, 5365, 160960, 16096); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270001575, 'dawn', 2, 4710, 4710, 4710, 141310, 14131); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270001577, 'dusk', 3, 2819, 2819, 2819, 84590, 8459); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270001578, 'dawn', 1, 5960, 5960, 5960, 178820, 17882); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270001579, 'dusk', 2, 54, 54, 54, 1640, 164); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270001580, 'dawn', 3, 3046, 3046, 3046, 91380, 9138); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270001581, 'dusk', 1, 1709, 1709, 1709, 51280, 5128); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270001582, 'dawn', 2, 2779, 2779, 2779, 83390, 8339); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270001583, 'dusk', 3, 2331, 2331, 2331, 69940, 6994); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270001584, 'dawn', 1, 4552, 4552, 4552, 136560, 13656); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270001585, 'dusk', 2, 3394, 3394, 3394, 101840, 10184); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270001586, 'dawn', 3, 3629, 3629, 3629, 108870, 10887); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270001588, 'dusk', 1, 270, 270, 270, 8100, 810); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270001589, 'dawn', 2, 5898, 5898, 5898, 176960, 17696); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270001590, 'dusk', 3, 2412, 2412, 2412, 72380, 7238); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270001591, 'dawn', 1, 5906, 5906, 5906, 177200, 17720); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270001592, 'dusk', 2, 1883, 1883, 1883, 56500, 5650); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270001593, 'dawn', 3, 4644, 4644, 4644, 139320, 13932); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270001594, 'dusk', 1, 3680, 3680, 3680, 110400, 11040); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270001596, 'dawn', 2, 4495, 4495, 4495, 134860, 13486); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270001597, 'dusk', 3, 878, 878, 878, 26340, 2634); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270001598, 'dawn', 1, 4263, 4263, 4263, 127910, 12791); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270001599, 'dusk', 2, 2607, 2607, 2607, 78230, 7823); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270001603, 'dawn', 3, 4550, 4550, 4550, 136510, 13651); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270001605, 'dusk', 1, 4254, 4254, 4254, 127630, 12763); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270001607, 'dawn', 2, 501, 501, 501, 15050, 1505); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270001608, 'dusk', 3, 2795, 2795, 2795, 83870, 8387); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270001609, 'dawn', 1, 2348, 2348, 2348, 70440, 7044); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270001611, 'dusk', 2, 1103, 1103, 1103, 33110, 3311); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270001612, 'dawn', 3, 2343, 2343, 2343, 70300, 7030); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270001613, 'dusk', 1, 5549, 5549, 5549, 166480, 16648); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270001614, 'dawn', 2, 1382, 1382, 1382, 41470, 4147); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270001615, 'dusk', 3, 6254, 6254, 6254, 187620, 18762); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270001617, 'dawn', 1, 128, 128, 128, 3840, 384); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270001621, 'dusk', 2, 1690, 1690, 1690, 50710, 5071); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270001622, 'dawn', 3, 5754, 5754, 5754, 172620, 17262); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270001623, 'dusk', 1, 1109, 1109, 1109, 33280, 3328); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270001624, 'dawn', 2, 6651, 6651, 6651, 199540, 19954); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270001625, 'dusk', 3, 2891, 2891, 2891, 86730, 8673); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270001626, 'dawn', 1, 5567, 5567, 5567, 167020, 16702); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270001627, 'dusk', 2, 1434, 1434, 1434, 43020, 4302); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270001628, 'dawn', 3, 5755, 5755, 5755, 172670, 17267); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270001629, 'dusk', 1, 4598, 4598, 4598, 137960, 13796); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270001630, 'dawn', 2, 1337, 1337, 1337, 40110, 4011); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270001631, 'dusk', 3, 3924, 3924, 3924, 117740, 11774); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270001633, 'dawn', 1, 1272, 1272, 1272, 38160, 3816); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270001634, 'dusk', 2, 3253, 3253, 3253, 97610, 9761); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270001637, 'dawn', 3, 2522, 2522, 2522, 75670, 7567); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270001638, 'dusk', 1, 6457, 6457, 6457, 193730, 19373); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270001639, 'dawn', 2, 164, 164, 164, 4930, 493); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270001640, 'dusk', 3, 1893, 1893, 1893, 56810, 5681); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270001641, 'dawn', 1, 4818, 4818, 4818, 144550, 14455); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270001645, 'dusk', 2, 4697, 4697, 4697, 140910, 14091); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270001646, 'dawn', 3, 6361, 6361, 6361, 190830, 19083); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270001647, 'dusk', 1, 2022, 2022, 2022, 60660, 6066); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270001649, 'dawn', 2, 6069, 6069, 6069, 182090, 18209); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270001651, 'dusk', 3, 2920, 2920, 2920, 87620, 8762); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270001652, 'dawn', 1, 4574, 4574, 4574, 137240, 13724); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270001655, 'dusk', 2, 2323, 2323, 2323, 69690, 6969); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270001656, 'dawn', 3, 3769, 3769, 3769, 113070, 11307); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270001657, 'dusk', 1, 6165, 6165, 6165, 184970, 18497); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270001658, 'dawn', 2, 3137, 3137, 3137, 94120, 9412); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270001663, 'dusk', 3, 6150, 6150, 6150, 184500, 18450); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270001665, 'dawn', 1, 6625, 6625, 6625, 198770, 19877); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270001666, 'dusk', 2, 2265, 2265, 2265, 67960, 6796); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270001668, 'dawn', 3, 1540, 1540, 1540, 46200, 4620); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270001669, 'dusk', 1, 5995, 5995, 5995, 179870, 17987); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270001670, 'dawn', 2, 5693, 5693, 5693, 170810, 17081); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270001672, 'dusk', 3, 6139, 6139, 6139, 184170, 18417); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270001673, 'dawn', 1, 922, 922, 922, 27680, 2768); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270001675, 'dusk', 2, 4112, 4112, 4112, 123380, 12338); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270001677, 'dawn', 3, 2542, 2542, 2542, 76260, 7626); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270001678, 'dusk', 1, 338, 338, 338, 10150, 1015); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270001679, 'dawn', 2, 457, 457, 457, 13730, 1373); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270001680, 'dusk', 3, 4092, 4092, 4092, 122770, 12277); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270001681, 'dawn', 1, 5490, 5490, 5490, 164710, 16471); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270001683, 'dusk', 2, 3102, 3102, 3102, 93070, 9307); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270001685, 'dawn', 3, 215, 215, 215, 6460, 646); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270001686, 'dusk', 1, 1756, 1756, 1756, 52680, 5268); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270001689, 'dawn', 2, 3764, 3764, 3764, 112940, 11294); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270001690, 'dusk', 3, 5044, 5044, 5044, 151340, 15134); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270001692, 'dawn', 1, 3506, 3506, 3506, 105180, 10518); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270001693, 'dusk', 2, 4694, 4694, 4694, 140820, 14082); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270001694, 'dawn', 3, 2015, 2015, 2015, 60450, 6045); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270001695, 'dusk', 1, 5026, 5026, 5026, 150790, 15079); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270001696, 'dawn', 2, 187, 187, 187, 5630, 563); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270001697, 'dusk', 3, 1034, 1034, 1034, 31030, 3103); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270001698, 'dawn', 1, 4331, 4331, 4331, 129930, 12993); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270001700, 'dusk', 2, 5933, 5933, 5933, 178010, 17801); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270001701, 'dawn', 3, 3234, 3234, 3234, 97020, 9702); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270001702, 'dusk', 1, 4315, 4315, 4315, 129470, 12947); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270001704, 'dawn', 2, 3297, 3297, 3297, 98910, 9891); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270001705, 'dusk', 3, 1170, 1170, 1170, 35120, 3512); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270001706, 'dawn', 1, 3302, 3302, 3302, 99070, 9907); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270001707, 'dusk', 2, 4832, 4832, 4832, 144980, 14498); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270001708, 'dawn', 3, 576, 576, 576, 17290, 1729); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270001709, 'dusk', 1, 2262, 2262, 2262, 67880, 6788); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270001710, 'dawn', 2, 3491, 3491, 3491, 104730, 10473); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270001711, 'dusk', 3, 1481, 1481, 1481, 44450, 4445); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270001712, 'dawn', 1, 4848, 4848, 4848, 145440, 14544); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270001713, 'dusk', 2, 4526, 4526, 4526, 135780, 13578); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270001714, 'dawn', 3, 298, 298, 298, 8940, 894); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270001716, 'dusk', 1, 3169, 3169, 3169, 95070, 9507); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270001717, 'dawn', 2, 1558, 1558, 1558, 46750, 4675); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270001719, 'dusk', 3, 5207, 5207, 5207, 156230, 15623); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270001720, 'dawn', 1, 3705, 3705, 3705, 111160, 11116); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270001721, 'dusk', 2, 5405, 5405, 5405, 162150, 16215); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270001723, 'dawn', 3, 2928, 2928, 2928, 87840, 8784); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270001724, 'dusk', 1, 5207, 5207, 5207, 156230, 15623); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270001725, 'dawn', 2, 3767, 3767, 3767, 113010, 11301); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270001726, 'dusk', 3, 6137, 6137, 6137, 184120, 18412); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270001727, 'dawn', 1, 381, 381, 381, 11450, 1145); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270001728, 'dusk', 2, 6149, 6149, 6149, 184490, 18449); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270001730, 'dawn', 3, 58, 58, 58, 1740, 174); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270001732, 'dusk', 1, 2597, 2597, 2597, 77930, 7793); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270001733, 'dawn', 2, 117, 117, 117, 3530, 353); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270001734, 'dusk', 3, 3653, 3653, 3653, 109600, 10960); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270001735, 'dawn', 1, 3525, 3525, 3525, 105750, 10575); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270001736, 'dusk', 2, 64, 64, 64, 1920, 192); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270001737, 'dawn', 3, 1025, 1025, 1025, 30770, 3077); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270001741, 'dusk', 1, 1256, 1256, 1256, 37690, 3769); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270001743, 'dawn', 2, 4499, 4499, 4499, 134970, 13497); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270001744, 'dusk', 3, 4298, 4298, 4298, 128960, 12896); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270001745, 'dawn', 1, 3252, 3252, 3252, 97570, 9757); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270001746, 'dusk', 2, 2788, 2788, 2788, 83640, 8364); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270001748, 'dawn', 3, 2475, 2475, 2475, 74260, 7426); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270001749, 'dusk', 1, 2500, 2500, 2500, 75020, 7502); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270001750, 'dawn', 2, 3468, 3468, 3468, 104050, 10405); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270001751, 'dusk', 3, 2558, 2558, 2558, 76760, 7676); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270001752, 'dawn', 1, 654, 654, 654, 19640, 1964); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270001753, 'dusk', 2, 1714, 1714, 1714, 51430, 5143); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270001754, 'dawn', 3, 607, 607, 607, 18210, 1821); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270001755, 'dusk', 1, 5345, 5345, 5345, 160350, 16035); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270001756, 'dawn', 2, 2564, 2564, 2564, 76920, 7692); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270001757, 'dusk', 3, 6047, 6047, 6047, 181430, 18143); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270001758, 'dawn', 1, 3586, 3586, 3586, 107580, 10758); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270001759, 'dusk', 2, 6499, 6499, 6499, 194970, 19497); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270001760, 'dawn', 3, 3445, 3445, 3445, 103370, 10337); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270001761, 'dusk', 1, 5476, 5476, 5476, 164300, 16430); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270001762, 'dawn', 2, 4876, 4876, 4876, 146280, 14628); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270001763, 'dusk', 3, 2477, 2477, 2477, 74320, 7432); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270001764, 'dawn', 1, 6133, 6133, 6133, 184000, 18400); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270001765, 'dusk', 2, 5406, 5406, 5406, 162180, 16218); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270001766, 'dawn', 3, 3060, 3060, 3060, 91800, 9180); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270001767, 'dusk', 1, 610, 610, 610, 18320, 1832); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270001768, 'dawn', 2, 5548, 5548, 5548, 166450, 16645); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270001771, 'dusk', 3, 1922, 1922, 1922, 57670, 5767); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270001772, 'dawn', 1, 2823, 2823, 2823, 84700, 8470); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270001773, 'dusk', 2, 2147, 2147, 2147, 64420, 6442); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270001775, 'dawn', 3, 5734, 5734, 5734, 172020, 17202); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270001777, 'dusk', 1, 1882, 1882, 1882, 56460, 5646); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270001779, 'dawn', 2, 1614, 1614, 1614, 48420, 4842); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270001780, 'dusk', 3, 374, 374, 374, 11220, 1122); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270001782, 'dawn', 1, 4063, 4063, 4063, 121910, 12191); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270001784, 'dusk', 2, 6475, 6475, 6475, 194270, 19427); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270001786, 'dawn', 3, 1082, 1082, 1082, 32470, 3247); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270001787, 'dusk', 1, 6009, 6009, 6009, 180290, 18029); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270001788, 'dawn', 2, 3601, 3601, 3601, 108050, 10805); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270001790, 'dusk', 3, 3768, 3768, 3768, 113040, 11304); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270001791, 'dawn', 1, 3809, 3809, 3809, 114280, 11428); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270001792, 'dusk', 2, 1502, 1502, 1502, 45080, 4508); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270001793, 'dawn', 3, 1330, 1330, 1330, 39900, 3990); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270001797, 'dusk', 1, 4994, 4994, 4994, 149830, 14983); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270001798, 'dawn', 2, 5116, 5116, 5116, 153490, 15349); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270001800, 'dusk', 3, 1949, 1949, 1949, 58480, 5848); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270001801, 'dawn', 1, 2696, 2696, 2696, 80900, 8090); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270001802, 'dusk', 2, 889, 889, 889, 26680, 2668); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270001803, 'dawn', 3, 1514, 1514, 1514, 45420, 4542); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270001804, 'dusk', 1, 394, 394, 394, 11830, 1183); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270001805, 'dawn', 2, 1596, 1596, 1596, 47900, 4790); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270001806, 'dusk', 3, 4975, 4975, 4975, 149250, 14925); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270001807, 'dawn', 1, 881, 881, 881, 26440, 2644); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270001808, 'dusk', 2, 6125, 6125, 6125, 183750, 18375); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270001809, 'dawn', 3, 4222, 4222, 4222, 126680, 12668); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270001810, 'dusk', 1, 4300, 4300, 4300, 129020, 12902); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270001812, 'dawn', 2, 6533, 6533, 6533, 195990, 19599); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270001813, 'dusk', 3, 3145, 3145, 3145, 94350, 9435); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270001815, 'dawn', 1, 968, 968, 968, 29060, 2906); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270001816, 'dusk', 2, 5780, 5780, 5780, 173400, 17340); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270001817, 'dawn', 3, 4737, 4737, 4737, 142110, 14211); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270001818, 'dusk', 1, 3064, 3064, 3064, 91920, 9192); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270001819, 'dawn', 2, 6452, 6452, 6452, 193570, 19357); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270001820, 'dusk', 3, 2415, 2415, 2415, 72460, 7246); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270001821, 'dawn', 1, 4655, 4655, 4655, 139670, 13967); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270001822, 'dusk', 2, 2016, 2016, 2016, 60490, 6049); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270001823, 'dawn', 3, 5183, 5183, 5183, 155510, 15551); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270001825, 'dusk', 1, 523, 523, 523, 15690, 1569); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270001826, 'dawn', 2, 3756, 3756, 3756, 112690, 11269); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270001827, 'dusk', 3, 737, 737, 737, 22130, 2213); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270001829, 'dawn', 1, 6226, 6226, 6226, 186790, 18679); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270001830, 'dusk', 2, 1352, 1352, 1352, 40570, 4057); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270001831, 'dawn', 3, 3062, 3062, 3062, 91870, 9187); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270001833, 'dusk', 1, 622, 622, 622, 18680, 1868); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270001834, 'dawn', 2, 2428, 2428, 2428, 72860, 7286); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270001835, 'dusk', 3, 1218, 1218, 1218, 36540, 3654); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270001836, 'dawn', 1, 1282, 1282, 1282, 38470, 3847); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270001837, 'dusk', 2, 5021, 5021, 5021, 150640, 15064); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270001838, 'dawn', 3, 3581, 3581, 3581, 107440, 10744); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270001840, 'dusk', 1, 1006, 1006, 1006, 30200, 3020); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270001843, 'dawn', 2, 405, 405, 405, 12170, 1217); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270001845, 'dusk', 3, 4508, 4508, 4508, 135260, 13526); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270001847, 'dawn', 1, 3253, 3253, 3253, 97590, 9759); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270001848, 'dusk', 2, 5313, 5313, 5313, 159410, 15941); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270001849, 'dawn', 3, 6106, 6106, 6106, 183200, 18320); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270001850, 'dusk', 1, 1794, 1794, 1794, 53840, 5384); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270001852, 'dawn', 2, 6428, 6428, 6428, 192840, 19284); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270001854, 'dusk', 3, 2283, 2283, 2283, 68500, 6850); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270001855, 'dawn', 1, 4223, 4223, 4223, 126700, 12670); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270001856, 'dusk', 2, 3217, 3217, 3217, 96510, 9651); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270001857, 'dawn', 3, 6316, 6316, 6316, 189500, 18950); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270001858, 'dusk', 1, 5906, 5906, 5906, 177200, 17720); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270001860, 'dawn', 2, 1049, 1049, 1049, 31470, 3147); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270001861, 'dusk', 3, 5809, 5809, 5809, 174280, 17428); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270001862, 'dawn', 1, 5902, 5902, 5902, 177080, 17708); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270001863, 'dusk', 2, 2512, 2512, 2512, 75380, 7538); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270001864, 'dawn', 3, 273, 273, 273, 8210, 821); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270001865, 'dusk', 1, 2982, 2982, 2982, 89460, 8946); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270001867, 'dawn', 2, 1626, 1626, 1626, 48780, 4878); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270001869, 'dusk', 3, 3140, 3140, 3140, 94220, 9422); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270001870, 'dawn', 1, 4829, 4829, 4829, 144880, 14488); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270001871, 'dusk', 2, 1373, 1373, 1373, 41190, 4119); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270001873, 'dawn', 3, 2314, 2314, 2314, 69420, 6942); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270001875, 'dusk', 1, 789, 789, 789, 23670, 2367); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270001876, 'dawn', 2, 69, 69, 69, 2090, 209); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270001877, 'dusk', 3, 3102, 3102, 3102, 93070, 9307); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270001879, 'dawn', 1, 3662, 3662, 3662, 109870, 10987); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270001881, 'dusk', 2, 859, 859, 859, 25790, 2579); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270001882, 'dawn', 3, 2482, 2482, 2482, 74480, 7448); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270001884, 'dusk', 1, 5135, 5135, 5135, 154070, 15407); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270001885, 'dawn', 2, 4848, 4848, 4848, 145460, 14546); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270001887, 'dusk', 3, 2140, 2140, 2140, 64220, 6422); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270001889, 'dawn', 1, 4289, 4289, 4289, 128690, 12869); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270001891, 'dusk', 2, 728, 728, 728, 21840, 2184); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270001892, 'dawn', 3, 3451, 3451, 3451, 103530, 10353); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270001895, 'dusk', 1, 2437, 2437, 2437, 73120, 7312); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270001896, 'dawn', 2, 718, 718, 718, 21540, 2154); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270001897, 'dusk', 3, 3121, 3121, 3121, 93650, 9365); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270001898, 'dawn', 1, 57, 57, 57, 1720, 172); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270001899, 'dusk', 2, 6287, 6287, 6287, 188620, 18862); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270001900, 'dawn', 3, 4771, 4771, 4771, 143150, 14315); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270001901, 'dusk', 1, 2080, 2080, 2080, 62400, 6240); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270001903, 'dawn', 2, 1470, 1470, 1470, 44120, 4412); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270001904, 'dusk', 3, 2577, 2577, 2577, 77310, 7731); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270001907, 'dawn', 1, 6540, 6540, 6540, 196210, 19621); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270001908, 'dusk', 2, 1718, 1718, 1718, 51550, 5155); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270001909, 'dawn', 3, 5547, 5547, 5547, 166420, 16642); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270001912, 'dusk', 1, 5102, 5102, 5102, 153070, 15307); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270001914, 'dawn', 2, 2889, 2889, 2889, 86690, 8669); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270001915, 'dusk', 3, 2183, 2183, 2183, 65500, 6550); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270001916, 'dawn', 1, 1576, 1576, 1576, 47300, 4730); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270001917, 'dusk', 2, 4227, 4227, 4227, 126830, 12683); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270001918, 'dawn', 3, 269, 269, 269, 8090, 809); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270001920, 'dusk', 1, 5526, 5526, 5526, 165800, 16580); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270001921, 'dawn', 2, 3703, 3703, 3703, 111110, 11111); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270001922, 'dusk', 3, 601, 601, 601, 18050, 1805); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270001924, 'dawn', 1, 3829, 3829, 3829, 114890, 11489); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270001925, 'dusk', 2, 2202, 2202, 2202, 66060, 6606); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270001926, 'dawn', 3, 2574, 2574, 2574, 77240, 7724); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270001927, 'dusk', 1, 2834, 2834, 2834, 85040, 8504); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270001929, 'dawn', 2, 3042, 3042, 3042, 91280, 9128); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270001930, 'dusk', 3, 1416, 1416, 1416, 42480, 4248); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270001931, 'dawn', 1, 981, 981, 981, 29450, 2945); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270001932, 'dusk', 2, 4509, 4509, 4509, 135280, 13528); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270001935, 'dawn', 3, 4114, 4114, 4114, 123430, 12343); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270001937, 'dusk', 1, 4489, 4489, 4489, 134680, 13468); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270001939, 'dawn', 2, 5873, 5873, 5873, 176190, 17619); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270001940, 'dusk', 3, 4731, 4731, 4731, 141950, 14195); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270001941, 'dawn', 1, 1784, 1784, 1784, 53530, 5353); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270001942, 'dusk', 2, 4040, 4040, 4040, 121220, 12122); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270001945, 'dawn', 3, 4361, 4361, 4361, 130840, 13084); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270001946, 'dusk', 1, 386, 386, 386, 11600, 1160); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270001947, 'dawn', 2, 2156, 2156, 2156, 64700, 6470); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270001951, 'dusk', 3, 214, 214, 214, 6440, 644); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270001952, 'dawn', 1, 4627, 4627, 4627, 138810, 13881); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270001953, 'dusk', 2, 2606, 2606, 2606, 78180, 7818); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270001955, 'dawn', 3, 3585, 3585, 3585, 107560, 10756); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270001956, 'dusk', 1, 4288, 4288, 4288, 128640, 12864); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270001957, 'dawn', 2, 6169, 6169, 6169, 185070, 18507); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270001958, 'dusk', 3, 1478, 1478, 1478, 44350, 4435); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270001960, 'dawn', 1, 5747, 5747, 5747, 172420, 17242); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270001961, 'dusk', 2, 520, 520, 520, 15620, 1562); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270001962, 'dawn', 3, 6466, 6466, 6466, 194000, 19400); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270001963, 'dusk', 1, 2646, 2646, 2646, 79380, 7938); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270001965, 'dawn', 2, 598, 598, 598, 17940, 1794); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270001968, 'dusk', 3, 5553, 5553, 5553, 166610, 16661); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270001969, 'dawn', 1, 6609, 6609, 6609, 198270, 19827); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270001970, 'dusk', 2, 4533, 4533, 4533, 135990, 13599); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270001971, 'dawn', 3, 979, 979, 979, 29390, 2939); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270001973, 'dusk', 1, 3284, 3284, 3284, 98540, 9854); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270001974, 'dawn', 2, 5344, 5344, 5344, 160340, 16034); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270001975, 'dusk', 3, 5498, 5498, 5498, 164950, 16495); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270001981, 'dawn', 1, 5862, 5862, 5862, 175870, 17587); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270001982, 'dusk', 2, 273, 273, 273, 8190, 819); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270001983, 'dawn', 3, 875, 875, 875, 26270, 2627); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270001984, 'dusk', 1, 1106, 1106, 1106, 33200, 3320); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270001986, 'dawn', 2, 825, 825, 825, 24750, 2475); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270001988, 'dusk', 3, 5751, 5751, 5751, 172550, 17255); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270001989, 'dawn', 1, 2640, 2640, 2640, 79220, 7922); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270001990, 'dusk', 2, 1275, 1275, 1275, 38250, 3825); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270001991, 'dawn', 3, 6120, 6120, 6120, 183600, 18360); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270001992, 'dusk', 1, 4546, 4546, 4546, 136390, 13639); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270001993, 'dawn', 2, 3078, 3078, 3078, 92360, 9236); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270001995, 'dusk', 3, 5063, 5063, 5063, 151890, 15189); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270001996, 'dawn', 1, 4463, 4463, 4463, 133890, 13389); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270001997, 'dusk', 2, 4943, 4943, 4943, 148300, 14830); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270001998, 'dawn', 3, 4011, 4011, 4011, 120340, 12034); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270002002, 'dusk', 1, 4200, 4200, 4200, 126000, 12600); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270002005, 'dawn', 2, 2250, 2250, 2250, 67510, 6751); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270002006, 'dusk', 3, 2823, 2823, 2823, 84690, 8469); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270002007, 'dawn', 1, 5503, 5503, 5503, 165110, 16511); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270002008, 'dusk', 2, 3450, 3450, 3450, 103510, 10351); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270002009, 'dawn', 3, 1612, 1612, 1612, 48370, 4837); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270002010, 'dusk', 1, 5756, 5756, 5756, 172680, 17268); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270002012, 'dawn', 2, 225, 225, 225, 6760, 676); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270002013, 'dusk', 3, 5138, 5138, 5138, 154150, 15415); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270002014, 'dawn', 1, 1288, 1288, 1288, 38650, 3865); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270002016, 'dusk', 2, 1079, 1079, 1079, 32390, 3239); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270002017, 'dawn', 3, 2464, 2464, 2464, 73930, 7393); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270002018, 'dusk', 1, 6094, 6094, 6094, 182840, 18284); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270002020, 'dawn', 2, 3923, 3923, 3923, 117700, 11770); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270002021, 'dusk', 3, 793, 793, 793, 23790, 2379); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270002022, 'dawn', 1, 2386, 2386, 2386, 71600, 7160); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270002024, 'dusk', 2, 3059, 3059, 3059, 91790, 9179); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270002026, 'dawn', 3, 790, 790, 790, 23720, 2372); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270002027, 'dusk', 1, 4830, 4830, 4830, 144910, 14491); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270002028, 'dawn', 2, 745, 745, 745, 22370, 2237); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270002029, 'dusk', 3, 3712, 3712, 3712, 111360, 11136); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270002031, 'dawn', 1, 1695, 1695, 1695, 50870, 5087); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270002032, 'dusk', 2, 170, 170, 170, 5100, 510); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270002034, 'dawn', 3, 2873, 2873, 2873, 86190, 8619); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270002035, 'dusk', 1, 4416, 4416, 4416, 132490, 13249); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270002036, 'dawn', 2, 4844, 4844, 4844, 145320, 14532); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270002037, 'dusk', 3, 1999, 1999, 1999, 59970, 5997); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270002038, 'dawn', 1, 6275, 6275, 6275, 188260, 18826); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270002040, 'dusk', 2, 5656, 5656, 5656, 169690, 16969); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270002041, 'dawn', 3, 5255, 5255, 5255, 157660, 15766); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270002043, 'dusk', 1, 1001, 1001, 1001, 30030, 3003); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270002044, 'dawn', 2, 5855, 5855, 5855, 175670, 17567); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270002045, 'dusk', 3, 3353, 3353, 3353, 100590, 10059); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270002046, 'dawn', 1, 2761, 2761, 2761, 82840, 8284); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270002047, 'dusk', 2, 2640, 2640, 2640, 79210, 7921); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270002048, 'dawn', 3, 3189, 3189, 3189, 95680, 9568); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270002049, 'dusk', 1, 1581, 1581, 1581, 47440, 4744); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270002051, 'dawn', 2, 54, 54, 54, 1640, 164); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270002052, 'dusk', 3, 5502, 5502, 5502, 165070, 16507); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270002055, 'dawn', 1, 882, 882, 882, 26480, 2648); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270002056, 'dusk', 2, 521, 521, 521, 15650, 1565); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270002058, 'dawn', 3, 4531, 4531, 4531, 135950, 13595); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270002059, 'dusk', 1, 1647, 1647, 1647, 49410, 4941); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270002060, 'dawn', 2, 655, 655, 655, 19670, 1967); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270002062, 'dusk', 3, 3182, 3182, 3182, 95470, 9547); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270002063, 'dawn', 1, 4617, 4617, 4617, 138520, 13852); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270002065, 'dusk', 2, 4478, 4478, 4478, 134350, 13435); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270002067, 'dawn', 3, 5436, 5436, 5436, 163090, 16309); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270002068, 'dusk', 1, 5337, 5337, 5337, 160120, 16012); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270002069, 'dawn', 2, 3050, 3050, 3050, 91500, 9150); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270002070, 'dusk', 3, 5911, 5911, 5911, 177350, 17735); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270002071, 'dawn', 1, 2355, 2355, 2355, 70670, 7067); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270002072, 'dusk', 2, 815, 815, 815, 24460, 2446); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270002074, 'dawn', 3, 1587, 1587, 1587, 47610, 4761); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270002075, 'dusk', 1, 2095, 2095, 2095, 62850, 6285); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270002076, 'dawn', 2, 3579, 3579, 3579, 107390, 10739); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270002080, 'dusk', 3, 2588, 2588, 2588, 77650, 7765); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270002081, 'dawn', 1, 1406, 1406, 1406, 42200, 4220); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270002082, 'dusk', 2, 483, 483, 483, 14510, 1451); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270002083, 'dawn', 3, 67, 67, 67, 2020, 202); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270002084, 'dusk', 1, 5788, 5788, 5788, 173660, 17366); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270002085, 'dawn', 2, 3556, 3556, 3556, 106700, 10670); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270002086, 'dusk', 3, 5821, 5821, 5821, 174650, 17465); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270002088, 'dawn', 1, 1133, 1133, 1133, 33990, 3399); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270002090, 'dusk', 2, 97, 97, 97, 2920, 292); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270002093, 'dawn', 3, 1943, 1943, 1943, 58310, 5831); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270002094, 'dusk', 1, 2743, 2743, 2743, 82290, 8229); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270002099, 'dawn', 2, 2414, 2414, 2414, 72440, 7244); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270002100, 'dusk', 3, 6477, 6477, 6477, 194330, 19433); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270002101, 'dawn', 1, 6002, 6002, 6002, 180070, 18007); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270002102, 'dusk', 2, 141, 141, 141, 4230, 423); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270002104, 'dawn', 3, 1961, 1961, 1961, 58850, 5885); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270002105, 'dusk', 1, 5040, 5040, 5040, 151220, 15122); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270002106, 'dawn', 2, 3920, 3920, 3920, 117610, 11761); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270002109, 'dusk', 3, 4147, 4147, 4147, 124430, 12443); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270002110, 'dawn', 1, 5402, 5402, 5402, 162080, 16208); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270002111, 'dusk', 2, 344, 344, 344, 10340, 1034); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270002112, 'dawn', 3, 850, 850, 850, 25500, 2550); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270002113, 'dusk', 1, 1827, 1827, 1827, 54810, 5481); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270002114, 'dawn', 2, 933, 933, 933, 28000, 2800); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270002117, 'dusk', 3, 2694, 2694, 2694, 80820, 8082); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270002118, 'dawn', 1, 5259, 5259, 5259, 157790, 15779); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270002119, 'dusk', 2, 773, 773, 773, 23210, 2321); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270002121, 'dawn', 3, 6200, 6200, 6200, 186020, 18602); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270002122, 'dusk', 1, 5983, 5983, 5983, 179490, 17949); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270002124, 'dawn', 2, 1594, 1594, 1594, 47840, 4784); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270002126, 'dusk', 3, 1243, 1243, 1243, 37300, 3730); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270002129, 'dawn', 1, 3209, 3209, 3209, 96290, 9629); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270002130, 'dusk', 2, 749, 749, 749, 22480, 2248); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270002132, 'dawn', 3, 930, 930, 930, 27920, 2792); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270002133, 'dusk', 1, 3785, 3785, 3785, 113560, 11356); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270002134, 'dawn', 2, 994, 994, 994, 29820, 2982); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270002135, 'dusk', 3, 6412, 6412, 6412, 192380, 19238); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270002136, 'dawn', 1, 6364, 6364, 6364, 190920, 19092); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270002137, 'dusk', 2, 2040, 2040, 2040, 61220, 6122); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270002138, 'dawn', 3, 2880, 2880, 2880, 86410, 8641); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270002139, 'dusk', 1, 4971, 4971, 4971, 149150, 14915); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270002141, 'dawn', 2, 6426, 6426, 6426, 192780, 19278); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270002142, 'dusk', 3, 3577, 3577, 3577, 107330, 10733); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270002144, 'dawn', 1, 5930, 5930, 5930, 177900, 17790); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270002145, 'dusk', 2, 1935, 1935, 1935, 58070, 5807); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270002147, 'dawn', 3, 4230, 4230, 4230, 126900, 12690); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270002148, 'dusk', 1, 499, 499, 499, 14980, 1498); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270002149, 'dawn', 2, 2303, 2303, 2303, 69100, 6910); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270002150, 'dusk', 3, 2771, 2771, 2771, 83130, 8313); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270002151, 'dawn', 1, 103, 103, 103, 3090, 309); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270002153, 'dusk', 2, 885, 885, 885, 26560, 2656); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270002154, 'dawn', 3, 5812, 5812, 5812, 174370, 17437); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270002156, 'dusk', 1, 532, 532, 532, 15980, 1598); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270002160, 'dawn', 2, 2923, 2923, 2923, 87700, 8770); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270002162, 'dusk', 3, 3574, 3574, 3574, 107220, 10722); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270002163, 'dawn', 1, 2607, 2607, 2607, 78210, 7821); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270002164, 'dusk', 2, 6070, 6070, 6070, 182110, 18211); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270002165, 'dawn', 3, 3649, 3649, 3649, 109480, 10948); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270002168, 'dusk', 1, 2685, 2685, 2685, 80550, 8055); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270002171, 'dawn', 2, 2436, 2436, 2436, 73090, 7309); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270002173, 'dusk', 3, 83, 83, 83, 2500, 250); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270002174, 'dawn', 1, 6659, 6659, 6659, 199790, 19979); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270002176, 'dusk', 2, 356, 356, 356, 10680, 1068); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270002177, 'dawn', 3, 5290, 5290, 5290, 158720, 15872); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270002179, 'dusk', 1, 467, 467, 467, 14020, 1402); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270002183, 'dawn', 2, 823, 823, 823, 24700, 2470); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270002184, 'dusk', 3, 1816, 1816, 1816, 54480, 5448); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270002188, 'dawn', 1, 3957, 3957, 3957, 118730, 11873); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270002189, 'dusk', 2, 3097, 3097, 3097, 92920, 9292); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270002190, 'dawn', 3, 538, 538, 538, 16160, 1616); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270002191, 'dusk', 1, 1311, 1311, 1311, 39350, 3935); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270002194, 'dawn', 2, 6465, 6465, 6465, 193950, 19395); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270002195, 'dusk', 3, 3763, 3763, 3763, 112910, 11291); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270002196, 'dawn', 1, 2315, 2315, 2315, 69460, 6946); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270002198, 'dusk', 2, 3730, 3730, 3730, 111910, 11191); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270002199, 'dawn', 3, 2378, 2378, 2378, 71360, 7136); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270002200, 'dusk', 1, 5705, 5705, 5705, 171160, 17116); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270002201, 'dawn', 2, 3559, 3559, 3559, 106780, 10678); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270002202, 'dusk', 3, 4044, 4044, 4044, 121330, 12133); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270002203, 'dawn', 1, 3483, 3483, 3483, 104490, 10449); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270002204, 'dusk', 2, 4553, 4553, 4553, 136600, 13660); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270002205, 'dawn', 3, 2973, 2973, 2973, 89190, 8919); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270002206, 'dusk', 1, 2351, 2351, 2351, 70550, 7055); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270002207, 'dawn', 2, 4534, 4534, 4534, 136040, 13604); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270002209, 'dusk', 3, 1048, 1048, 1048, 31460, 3146); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270002210, 'dawn', 1, 845, 845, 845, 25350, 2535); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270002211, 'dusk', 2, 958, 958, 958, 28740, 2874); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270002215, 'dawn', 3, 3132, 3132, 3132, 93960, 9396); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270002216, 'dusk', 1, 4963, 4963, 4963, 148910, 14891); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270002217, 'dawn', 2, 2632, 2632, 2632, 78960, 7896); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270002219, 'dusk', 3, 5628, 5628, 5628, 168840, 16884); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270002220, 'dawn', 1, 4288, 4288, 4288, 128640, 12864); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270002221, 'dusk', 2, 3916, 3916, 3916, 117480, 11748); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270002222, 'dawn', 3, 1715, 1715, 1715, 51470, 5147); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270002223, 'dusk', 1, 2584, 2584, 2584, 77540, 7754); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270002225, 'dawn', 2, 1075, 1075, 1075, 32260, 3226); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270002227, 'dusk', 3, 6088, 6088, 6088, 182660, 18266); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270002228, 'dawn', 1, 2879, 2879, 2879, 86370, 8637); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270002229, 'dusk', 2, 1046, 1046, 1046, 31400, 3140); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270002232, 'dawn', 3, 5943, 5943, 5943, 178290, 17829); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270002234, 'dusk', 1, 1100, 1100, 1100, 33000, 3300); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270002235, 'dawn', 2, 3960, 3960, 3960, 118800, 11880); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270002236, 'dusk', 3, 1603, 1603, 1603, 48100, 4810); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270002237, 'dawn', 1, 781, 781, 781, 23450, 2345); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270002238, 'dusk', 2, 6658, 6658, 6658, 199750, 19975); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270002239, 'dawn', 3, 4843, 4843, 4843, 145300, 14530); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270002240, 'dusk', 1, 5080, 5080, 5080, 152420, 15242); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270002241, 'dawn', 2, 5163, 5163, 5163, 154900, 15490); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270002242, 'dusk', 3, 5601, 5601, 5601, 168050, 16805); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270002244, 'dawn', 1, 449, 449, 449, 13490, 1349); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270002245, 'dusk', 2, 4981, 4981, 4981, 149450, 14945); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270002246, 'dawn', 3, 1081, 1081, 1081, 32440, 3244); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270002247, 'dusk', 1, 1300, 1300, 1300, 39010, 3901); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270002249, 'dawn', 2, 2322, 2322, 2322, 69660, 6966); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270002251, 'dusk', 3, 6226, 6226, 6226, 186780, 18678); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270002252, 'dawn', 1, 4599, 4599, 4599, 137970, 13797); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270002253, 'dusk', 2, 3252, 3252, 3252, 97560, 9756); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270002255, 'dawn', 3, 3480, 3480, 3480, 104400, 10440); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270002257, 'dusk', 1, 1476, 1476, 1476, 44290, 4429); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270002258, 'dawn', 2, 5389, 5389, 5389, 161690, 16169); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270002259, 'dusk', 3, 5094, 5094, 5094, 152820, 15282); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270002260, 'dawn', 1, 2906, 2906, 2906, 87180, 8718); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270002261, 'dusk', 2, 4328, 4328, 4328, 129850, 12985); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270002263, 'dawn', 3, 2366, 2366, 2366, 70980, 7098); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270002264, 'dusk', 1, 1753, 1753, 1753, 52610, 5261); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270002265, 'dawn', 2, 4415, 4415, 4415, 132450, 13245); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270002267, 'dusk', 3, 1897, 1897, 1897, 56920, 5692); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270002269, 'dawn', 1, 5248, 5248, 5248, 157460, 15746); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270002270, 'dusk', 2, 6175, 6175, 6175, 185260, 18526); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270002271, 'dawn', 3, 2114, 2114, 2114, 63440, 6344); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270002272, 'dusk', 1, 2106, 2106, 2106, 63200, 6320); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270002273, 'dawn', 2, 3831, 3831, 3831, 114930, 11493); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270002275, 'dusk', 3, 2147, 2147, 2147, 64420, 6442); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270002276, 'dawn', 1, 1301, 1301, 1301, 39040, 3904); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270002277, 'dusk', 2, 999, 999, 999, 29990, 2999); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270002280, 'dawn', 3, 5518, 5518, 5518, 165560, 16556); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270002281, 'dusk', 1, 1807, 1807, 1807, 54210, 5421); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270002283, 'dawn', 2, 3335, 3335, 3335, 100070, 10007); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270002284, 'dusk', 3, 4441, 4441, 4441, 133250, 13325); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270002285, 'dawn', 1, 4850, 4850, 4850, 145510, 14551); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270002286, 'dusk', 2, 959, 959, 959, 28770, 2877); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270002287, 'dawn', 3, 5820, 5820, 5820, 174610, 17461); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270002288, 'dusk', 1, 6066, 6066, 6066, 181980, 18198); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270002289, 'dawn', 2, 1461, 1461, 1461, 43850, 4385); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270002290, 'dusk', 3, 204, 204, 204, 6130, 613); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270002293, 'dawn', 1, 1132, 1132, 1132, 33970, 3397); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270002295, 'dusk', 2, 1788, 1788, 1788, 53640, 5364); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270002298, 'dawn', 3, 3850, 3850, 3850, 115520, 11552); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270002299, 'dusk', 1, 4214, 4214, 4214, 126440, 12644); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270002300, 'dawn', 2, 6299, 6299, 6299, 188980, 18898); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270002301, 'dusk', 3, 2619, 2619, 2619, 78570, 7857); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270002302, 'dawn', 1, 937, 937, 937, 28110, 2811); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270002303, 'dusk', 2, 3474, 3474, 3474, 104220, 10422); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270002306, 'dawn', 3, 2810, 2810, 2810, 84310, 8431); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270002308, 'dusk', 1, 1583, 1583, 1583, 47500, 4750); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270002309, 'dawn', 2, 1975, 1975, 1975, 59270, 5927); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270002310, 'dusk', 3, 5909, 5909, 5909, 177280, 17728); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270002311, 'dawn', 1, 1616, 1616, 1616, 48490, 4849); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270002312, 'dusk', 2, 6108, 6108, 6108, 183250, 18325); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270002315, 'dawn', 3, 5604, 5604, 5604, 168120, 16812); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270002316, 'dusk', 1, 3320, 3320, 3320, 99610, 9961); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270002319, 'dawn', 2, 1206, 1206, 1206, 36200, 3620); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270002321, 'dusk', 3, 2660, 2660, 2660, 79810, 7981); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270002322, 'dawn', 1, 4692, 4692, 4692, 140780, 14078); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270002325, 'dusk', 2, 5361, 5361, 5361, 160840, 16084); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270002326, 'dawn', 3, 163, 163, 163, 4910, 491); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270002327, 'dusk', 1, 4232, 4232, 4232, 126970, 12697); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270002328, 'dawn', 2, 344, 344, 344, 10320, 1032); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270002329, 'dusk', 3, 1409, 1409, 1409, 42270, 4227); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270002330, 'dawn', 1, 3218, 3218, 3218, 96560, 9656); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270002331, 'dusk', 2, 4255, 4255, 4255, 127660, 12766); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270002332, 'dawn', 3, 2270, 2270, 2270, 68100, 6810); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270002338, 'dusk', 1, 1005, 1005, 1005, 30160, 3016); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270002339, 'dawn', 2, 569, 569, 569, 17070, 1707); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270002341, 'dusk', 3, 4573, 4573, 4573, 137210, 13721); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270002344, 'dawn', 1, 4741, 4741, 4741, 142250, 14225); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270002345, 'dusk', 2, 4132, 4132, 4132, 123980, 12398); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270002346, 'dawn', 3, 1637, 1637, 1637, 49120, 4912); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270002347, 'dusk', 1, 4563, 4563, 4563, 136900, 13690); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270002348, 'dawn', 2, 3958, 3958, 3958, 118750, 11875); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270002349, 'dusk', 3, 1441, 1441, 1441, 43250, 4325); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270002351, 'dawn', 1, 4948, 4948, 4948, 148450, 14845); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270002352, 'dusk', 2, 1637, 1637, 1637, 49130, 4913); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270002355, 'dawn', 3, 5873, 5873, 5873, 176190, 17619); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270002356, 'dusk', 1, 5589, 5589, 5589, 167680, 16768); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270002359, 'dawn', 2, 3579, 3579, 3579, 107390, 10739); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270002360, 'dusk', 3, 726, 726, 726, 21790, 2179); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270002361, 'dawn', 1, 4906, 4906, 4906, 147180, 14718); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270002362, 'dusk', 2, 5485, 5485, 5485, 164550, 16455); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270002364, 'dawn', 3, 4447, 4447, 4447, 133420, 13342); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270002365, 'dusk', 1, 4468, 4468, 4468, 134060, 13406); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270002367, 'dawn', 2, 2792, 2792, 2792, 83780, 8378); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270002368, 'dusk', 3, 4638, 4638, 4638, 139160, 13916); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270002369, 'dawn', 1, 784, 784, 784, 23530, 2353); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270002370, 'dusk', 2, 2238, 2238, 2238, 67140, 6714); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270002371, 'dawn', 3, 5842, 5842, 5842, 175270, 17527); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270002372, 'dusk', 1, 5286, 5286, 5286, 158580, 15858); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270002374, 'dawn', 2, 2260, 2260, 2260, 67810, 6781); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270002375, 'dusk', 3, 3706, 3706, 3706, 111200, 11120); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270002381, 'dawn', 1, 3205, 3205, 3205, 96150, 9615); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270002382, 'dusk', 2, 3284, 3284, 3284, 98530, 9853); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270002383, 'dawn', 3, 4581, 4581, 4581, 137450, 13745); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270002386, 'dusk', 1, 6089, 6089, 6089, 182690, 18269); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270002387, 'dawn', 2, 4839, 4839, 4839, 145190, 14519); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270002388, 'dusk', 3, 1644, 1644, 1644, 49320, 4932); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270002389, 'dawn', 1, 1756, 1756, 1756, 52700, 5270); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270002390, 'dusk', 2, 3191, 3191, 3191, 95740, 9574); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270002393, 'dawn', 3, 3242, 3242, 3242, 97270, 9727); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270002394, 'dusk', 1, 1904, 1904, 1904, 57120, 5712); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270002395, 'dawn', 2, 2635, 2635, 2635, 79070, 7907); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270002397, 'dusk', 3, 3311, 3311, 3311, 99350, 9935); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270002399, 'dawn', 1, 4854, 4854, 4854, 145640, 14564); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270002400, 'dusk', 2, 2267, 2267, 2267, 68010, 6801); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270002401, 'dawn', 3, 948, 948, 948, 28450, 2845); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270002402, 'dusk', 1, 3706, 3706, 3706, 111180, 11118); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270002403, 'dawn', 2, 6104, 6104, 6104, 183140, 18314); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270002404, 'dusk', 3, 6396, 6396, 6396, 191880, 19188); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270002405, 'dawn', 1, 3634, 3634, 3634, 109020, 10902); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270002407, 'dusk', 2, 2133, 2133, 2133, 63990, 6399); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270002408, 'dawn', 3, 5175, 5175, 5175, 155260, 15526); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270002409, 'dusk', 1, 1166, 1166, 1166, 34990, 3499); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270002411, 'dawn', 2, 5169, 5169, 5169, 155090, 15509); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270002412, 'dusk', 3, 1980, 1980, 1980, 59420, 5942); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270002413, 'dawn', 1, 1668, 1668, 1668, 50050, 5005); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270002414, 'dusk', 2, 4598, 4598, 4598, 137950, 13795); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270002415, 'dawn', 3, 6404, 6404, 6404, 192140, 19214); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270002416, 'dusk', 1, 4206, 4206, 4206, 126180, 12618); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270002418, 'dawn', 2, 2430, 2430, 2430, 72900, 7290); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270002420, 'dusk', 3, 2861, 2861, 2861, 85830, 8583); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270002423, 'dawn', 1, 5805, 5805, 5805, 174160, 17416); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270002425, 'dusk', 2, 4081, 4081, 4081, 122430, 12243); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270002426, 'dawn', 3, 2709, 2709, 2709, 81280, 8128); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270002428, 'dusk', 1, 1296, 1296, 1296, 38900, 3890); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270002429, 'dawn', 2, 6138, 6138, 6138, 184160, 18416); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270002430, 'dusk', 3, 4611, 4611, 4611, 138350, 13835); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270002431, 'dawn', 1, 466, 466, 466, 13990, 1399); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270002432, 'dusk', 2, 4353, 4353, 4353, 130600, 13060); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270002433, 'dawn', 3, 5290, 5290, 5290, 158720, 15872); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270002435, 'dusk', 1, 4623, 4623, 4623, 138710, 13871); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270002436, 'dawn', 2, 1721, 1721, 1721, 51650, 5165); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270002437, 'dusk', 3, 2548, 2548, 2548, 76450, 7645); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270002438, 'dawn', 1, 2409, 2409, 2409, 72290, 7229); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270002442, 'dusk', 2, 4723, 4723, 4723, 141700, 14170); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270002443, 'dawn', 3, 5460, 5460, 5460, 163810, 16381); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270002444, 'dusk', 1, 4048, 4048, 4048, 121440, 12144); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270002445, 'dawn', 2, 2938, 2938, 2938, 88140, 8814); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270002446, 'dusk', 3, 559, 559, 559, 16790, 1679); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270002448, 'dawn', 1, 758, 758, 758, 22750, 2275); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270002450, 'dusk', 2, 4624, 4624, 4624, 138730, 13873); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270002451, 'dawn', 3, 5672, 5672, 5672, 170180, 17018); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270002452, 'dusk', 1, 3473, 3473, 3473, 104210, 10421); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270002453, 'dawn', 2, 1798, 1798, 1798, 53940, 5394); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270002454, 'dusk', 3, 5612, 5612, 5612, 168370, 16837); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270002455, 'dawn', 1, 1044, 1044, 1044, 31330, 3133); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270002458, 'dusk', 2, 1256, 1256, 1256, 37680, 3768); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270002459, 'dawn', 3, 4736, 4736, 4736, 142080, 14208); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270002460, 'dusk', 1, 3874, 3874, 3874, 116240, 11624); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270002461, 'dawn', 2, 4486, 4486, 4486, 134600, 13460); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270002462, 'dusk', 3, 5455, 5455, 5455, 163650, 16365); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270002464, 'dawn', 1, 5598, 5598, 5598, 167940, 16794); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270002465, 'dusk', 2, 1343, 1343, 1343, 40300, 4030); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270002466, 'dawn', 3, 1132, 1132, 1132, 33970, 3397); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270002467, 'dusk', 1, 3213, 3213, 3213, 96400, 9640); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270002468, 'dawn', 2, 5155, 5155, 5155, 154650, 15465); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270002470, 'dusk', 3, 2152, 2152, 2152, 64570, 6457); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270002471, 'dawn', 1, 1481, 1481, 1481, 44450, 4445); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270002472, 'dusk', 2, 463, 463, 463, 13900, 1390); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270002473, 'dawn', 3, 5296, 5296, 5296, 158880, 15888); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270002474, 'dusk', 1, 3642, 3642, 3642, 109270, 10927); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270002475, 'dawn', 2, 3487, 3487, 3487, 104610, 10461); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270002476, 'dusk', 3, 1716, 1716, 1716, 51480, 5148); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270002477, 'dawn', 1, 466, 466, 466, 13990, 1399); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270002478, 'dusk', 2, 4766, 4766, 4766, 142980, 14298); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270002479, 'dawn', 3, 1681, 1681, 1681, 50430, 5043); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270002480, 'dusk', 1, 4848, 4848, 4848, 145440, 14544); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270002481, 'dawn', 2, 4922, 4922, 4922, 147660, 14766); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270002482, 'dusk', 3, 5234, 5234, 5234, 157020, 15702); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270002483, 'dawn', 1, 2024, 2024, 2024, 60730, 6073); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270002484, 'dusk', 2, 5147, 5147, 5147, 154430, 15443); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270002490, 'dawn', 3, 5201, 5201, 5201, 156050, 15605); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270002492, 'dusk', 1, 2896, 2896, 2896, 86890, 8689); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270002496, 'dawn', 2, 4491, 4491, 4491, 134750, 13475); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270002497, 'dusk', 3, 431, 431, 431, 12950, 1295); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270002498, 'dawn', 1, 6413, 6413, 6413, 192400, 19240); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270002499, 'dusk', 2, 4305, 4305, 4305, 129170, 12917); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270002500, 'dawn', 3, 5970, 5970, 5970, 179100, 17910); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270002501, 'dusk', 1, 6353, 6353, 6353, 190610, 19061); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270002502, 'dawn', 2, 4417, 4417, 4417, 132510, 13251); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270002503, 'dusk', 3, 5366, 5366, 5366, 161000, 16100); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270002505, 'dawn', 1, 3130, 3130, 3130, 93920, 9392); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270002507, 'dusk', 2, 2050, 2050, 2050, 61510, 6151); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270002508, 'dawn', 3, 2932, 2932, 2932, 87980, 8798); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270002509, 'dusk', 1, 6439, 6439, 6439, 193170, 19317); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270002510, 'dawn', 2, 2937, 2937, 2937, 88120, 8812); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270002511, 'dusk', 3, 2232, 2232, 2232, 66960, 6696); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270002512, 'dawn', 1, 2497, 2497, 2497, 74920, 7492); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270002513, 'dusk', 2, 5483, 5483, 5483, 164490, 16449); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270002514, 'dawn', 3, 5551, 5551, 5551, 166540, 16654); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270002515, 'dusk', 1, 4919, 4919, 4919, 147570, 14757); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270002516, 'dawn', 2, 279, 279, 279, 8380, 838); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270002518, 'dusk', 3, 477, 477, 477, 14310, 1431); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270002520, 'dawn', 1, 1869, 1869, 1869, 56080, 5608); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270002522, 'dusk', 2, 6021, 6021, 6021, 180650, 18065); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270002523, 'dawn', 3, 1525, 1525, 1525, 45760, 4576); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270002524, 'dusk', 1, 1091, 1091, 1091, 32750, 3275); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270002526, 'dawn', 2, 1249, 1249, 1249, 37470, 3747); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270002527, 'dusk', 3, 1284, 1284, 1284, 38520, 3852); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270002528, 'dawn', 1, 680, 680, 680, 20420, 2042); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270002529, 'dusk', 2, 4317, 4317, 4317, 129520, 12952); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270002530, 'dawn', 3, 1419, 1419, 1419, 42580, 4258); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270002531, 'dusk', 1, 4031, 4031, 4031, 120930, 12093); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270002533, 'dawn', 2, 3114, 3114, 3114, 93420, 9342); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270002536, 'dusk', 3, 1091, 1091, 1091, 32730, 3273); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270002539, 'dawn', 1, 2124, 2124, 2124, 63720, 6372); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270002540, 'dusk', 2, 6288, 6288, 6288, 188650, 18865); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270002541, 'dawn', 3, 4827, 4827, 4827, 144810, 14481); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270002542, 'dusk', 1, 1873, 1873, 1873, 56190, 5619); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270002543, 'dawn', 2, 4361, 4361, 4361, 130840, 13084); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270002544, 'dusk', 3, 720, 720, 720, 21610, 2161); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270002547, 'dawn', 1, 644, 644, 644, 19320, 1932); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270002550, 'dusk', 2, 6097, 6097, 6097, 182910, 18291); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270002551, 'dawn', 3, 468, 468, 468, 14050, 1405); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270002552, 'dusk', 1, 3592, 3592, 3592, 107780, 10778); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270002553, 'dawn', 2, 1331, 1331, 1331, 39950, 3995); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270002554, 'dusk', 3, 1957, 1957, 1957, 58710, 5871); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270002558, 'dawn', 1, 270, 270, 270, 8120, 812); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270002559, 'dusk', 2, 717, 717, 717, 21510, 2151); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270002560, 'dawn', 3, 1546, 1546, 1546, 46380, 4638); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270002562, 'dusk', 1, 1696, 1696, 1696, 50880, 5088); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270002563, 'dawn', 2, 4796, 4796, 4796, 143900, 14390); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270002564, 'dusk', 3, 2367, 2367, 2367, 71030, 7103); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270002566, 'dawn', 1, 4063, 4063, 4063, 121890, 12189); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270002568, 'dusk', 2, 5926, 5926, 5926, 177790, 17779); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270002569, 'dawn', 3, 959, 959, 959, 28780, 2878); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270002571, 'dusk', 1, 4686, 4686, 4686, 140580, 14058); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270002572, 'dawn', 2, 127, 127, 127, 3830, 383); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270002574, 'dusk', 3, 2725, 2725, 2725, 81750, 8175); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270002577, 'dawn', 1, 3994, 3994, 3994, 119820, 11982); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270002578, 'dusk', 2, 999, 999, 999, 29990, 2999); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270002580, 'dawn', 3, 6218, 6218, 6218, 186550, 18655); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270002581, 'dusk', 1, 228, 228, 228, 6840, 684); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270002584, 'dawn', 2, 1702, 1702, 1702, 51070, 5107); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270002585, 'dusk', 3, 5946, 5946, 5946, 178380, 17838); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270002586, 'dawn', 1, 5192, 5192, 5192, 155770, 15577); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270002588, 'dusk', 2, 6389, 6389, 6389, 191670, 19167); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270002589, 'dawn', 3, 6012, 6012, 6012, 180370, 18037); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270002590, 'dusk', 1, 3247, 3247, 3247, 97430, 9743); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270002591, 'dawn', 2, 4644, 4644, 4644, 139340, 13934); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270002594, 'dusk', 3, 3218, 3218, 3218, 96550, 9655); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270002595, 'dawn', 1, 1251, 1251, 1251, 37530, 3753); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270002596, 'dusk', 2, 4048, 4048, 4048, 121450, 12145); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270002597, 'dawn', 3, 544, 544, 544, 16340, 1634); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270002598, 'dusk', 1, 3005, 3005, 3005, 90160, 9016); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270002600, 'dawn', 2, 1836, 1836, 1836, 55080, 5508); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270002601, 'dusk', 3, 2782, 2782, 2782, 83480, 8348); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270002602, 'dawn', 1, 1672, 1672, 1672, 50180, 5018); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270002603, 'dusk', 2, 3134, 3134, 3134, 94040, 9404); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270002604, 'dawn', 3, 2739, 2739, 2739, 82190, 8219); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270002605, 'dusk', 1, 4387, 4387, 4387, 131630, 13163); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270002606, 'dawn', 2, 6543, 6543, 6543, 196310, 19631); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270002607, 'dusk', 3, 4270, 4270, 4270, 128120, 12812); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270002608, 'dawn', 1, 3699, 3699, 3699, 110970, 11097); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270002609, 'dusk', 2, 3992, 3992, 3992, 119760, 11976); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270002610, 'dawn', 3, 5962, 5962, 5962, 178870, 17887); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270002611, 'dusk', 1, 5564, 5564, 5564, 166940, 16694); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270002612, 'dawn', 2, 284, 284, 284, 8530, 853); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270002614, 'dusk', 3, 133, 133, 133, 3990, 399); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270002615, 'dawn', 1, 511, 511, 511, 15350, 1535); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270002618, 'dusk', 2, 5932, 5932, 5932, 177980, 17798); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270002622, 'dawn', 3, 584, 584, 584, 17530, 1753); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270002623, 'dusk', 1, 1340, 1340, 1340, 40210, 4021); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270002625, 'dawn', 2, 5814, 5814, 5814, 174440, 17444); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270002627, 'dusk', 3, 2594, 2594, 2594, 77840, 7784); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270002628, 'dawn', 1, 4762, 4762, 4762, 142870, 14287); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270002629, 'dusk', 2, 6544, 6544, 6544, 196330, 19633); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270002630, 'dawn', 3, 2874, 2874, 2874, 86240, 8624); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270002631, 'dusk', 1, 5479, 5479, 5479, 164380, 16438); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270002632, 'dawn', 2, 4842, 4842, 4842, 145280, 14528); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270002633, 'dusk', 3, 4775, 4775, 4775, 143260, 14326); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270002634, 'dawn', 1, 6169, 6169, 6169, 185070, 18507); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270002636, 'dusk', 2, 594, 594, 594, 17840, 1784); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270002637, 'dawn', 3, 6075, 6075, 6075, 182260, 18226); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270002643, 'dusk', 1, 282, 282, 282, 8470, 847); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270002644, 'dawn', 2, 3442, 3442, 3442, 103260, 10326); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270002645, 'dusk', 3, 2028, 2028, 2028, 60850, 6085); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270002646, 'dawn', 1, 850, 850, 850, 25520, 2552); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270002648, 'dusk', 2, 5184, 5184, 5184, 155530, 15553); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270002649, 'dawn', 3, 213, 213, 213, 6410, 641); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270002650, 'dusk', 1, 4188, 4188, 4188, 125640, 12564); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270002653, 'dawn', 2, 406, 406, 406, 12200, 1220); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270002654, 'dusk', 3, 5385, 5385, 5385, 161550, 16155); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270002656, 'dawn', 1, 2778, 2778, 2778, 83360, 8336); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270002657, 'dusk', 2, 3543, 3543, 3543, 106310, 10631); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270002660, 'dawn', 3, 952, 952, 952, 28560, 2856); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270002661, 'dusk', 1, 2858, 2858, 2858, 85750, 8575); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270002662, 'dawn', 2, 5363, 5363, 5363, 160910, 16091); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270002663, 'dusk', 3, 1748, 1748, 1748, 52460, 5246); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270002665, 'dawn', 1, 6439, 6439, 6439, 193180, 19318); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270002667, 'dusk', 2, 5445, 5445, 5445, 163370, 16337); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270002668, 'dawn', 3, 3839, 3839, 3839, 115170, 11517); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270002670, 'dusk', 1, 3781, 3781, 3781, 113430, 11343); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270002671, 'dawn', 2, 5768, 5768, 5768, 173060, 17306); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270002672, 'dusk', 3, 6414, 6414, 6414, 192430, 19243); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270002673, 'dawn', 1, 3977, 3977, 3977, 119330, 11933); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270002674, 'dusk', 2, 6513, 6513, 6513, 195400, 19540); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270002675, 'dawn', 3, 99, 99, 99, 2970, 297); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270002677, 'dusk', 1, 428, 428, 428, 12840, 1284); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270002678, 'dawn', 2, 603, 603, 603, 18090, 1809); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270002679, 'dusk', 3, 2785, 2785, 2785, 83550, 8355); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270002680, 'dawn', 1, 6342, 6342, 6342, 190260, 19026); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270002682, 'dusk', 2, 1635, 1635, 1635, 49050, 4905); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270002683, 'dawn', 3, 3679, 3679, 3679, 110390, 11039); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270002685, 'dusk', 1, 1220, 1220, 1220, 36610, 3661); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270002687, 'dawn', 2, 4709, 4709, 4709, 141270, 14127); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270002688, 'dusk', 3, 4998, 4998, 4998, 149960, 14996); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270002690, 'dawn', 1, 4441, 4441, 4441, 133250, 13325); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270002692, 'dusk', 2, 3449, 3449, 3449, 103490, 10349); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270002694, 'dawn', 3, 5204, 5204, 5204, 156120, 15612); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270002695, 'dusk', 1, 6022, 6022, 6022, 180680, 18068); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270002697, 'dawn', 2, 6297, 6297, 6297, 188930, 18893); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270002698, 'dusk', 3, 6388, 6388, 6388, 191660, 19166); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270002699, 'dawn', 1, 118, 118, 118, 3540, 354); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270002700, 'dusk', 2, 3053, 3053, 3053, 91610, 9161); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270002702, 'dawn', 3, 4441, 4441, 4441, 133240, 13324); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270002705, 'dusk', 1, 4835, 4835, 4835, 145070, 14507); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270002706, 'dawn', 2, 5139, 5139, 5139, 154170, 15417); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270002710, 'dusk', 3, 354, 354, 354, 10630, 1063); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270002711, 'dawn', 1, 1078, 1078, 1078, 32340, 3234); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270002712, 'dusk', 2, 1930, 1930, 1930, 57910, 5791); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270002713, 'dawn', 3, 4830, 4830, 4830, 144900, 14490); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270002714, 'dusk', 1, 1387, 1387, 1387, 41630, 4163); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270002716, 'dawn', 2, 2662, 2662, 2662, 79880, 7988); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270002718, 'dusk', 3, 6056, 6056, 6056, 181680, 18168); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270002722, 'dawn', 1, 3358, 3358, 3358, 100750, 10075); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270002723, 'dusk', 2, 6336, 6336, 6336, 190090, 19009); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270002724, 'dawn', 3, 3493, 3493, 3493, 104810, 10481); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270002725, 'dusk', 1, 195, 195, 195, 5850, 585); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270002729, 'dawn', 2, 5220, 5220, 5220, 156600, 15660); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270002730, 'dusk', 3, 4552, 4552, 4552, 136580, 13658); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270002731, 'dawn', 1, 3333, 3333, 3333, 100010, 10001); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270002734, 'dusk', 2, 3217, 3217, 3217, 96520, 9652); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270002735, 'dawn', 3, 1929, 1929, 1929, 57870, 5787); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270002736, 'dusk', 1, 2373, 2373, 2373, 71210, 7121); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270002737, 'dawn', 2, 1567, 1567, 1567, 47010, 4701); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270002738, 'dusk', 3, 5933, 5933, 5933, 178010, 17801); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270002739, 'dawn', 1, 5793, 5793, 5793, 173790, 17379); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270002741, 'dusk', 2, 4408, 4408, 4408, 132250, 13225); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270002743, 'dawn', 3, 5210, 5210, 5210, 156310, 15631); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270002744, 'dusk', 1, 5041, 5041, 5041, 151230, 15123); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270002745, 'dawn', 2, 4398, 4398, 4398, 131940, 13194); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270002746, 'dusk', 3, 663, 663, 663, 19900, 1990); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270002749, 'dawn', 1, 2916, 2916, 2916, 87490, 8749); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270002750, 'dusk', 2, 2927, 2927, 2927, 87820, 8782); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270002751, 'dawn', 3, 4782, 4782, 4782, 143480, 14348); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270002753, 'dusk', 1, 2961, 2961, 2961, 88830, 8883); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270002754, 'dawn', 2, 2836, 2836, 2836, 85100, 8510); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270002755, 'dusk', 3, 2764, 2764, 2764, 82940, 8294); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270002759, 'dawn', 1, 1500, 1500, 1500, 45020, 4502); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270002760, 'dusk', 2, 5272, 5272, 5272, 158160, 15816); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270002761, 'dawn', 3, 6309, 6309, 6309, 189270, 18927); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270002763, 'dusk', 1, 5632, 5632, 5632, 168970, 16897); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270002764, 'dawn', 2, 6501, 6501, 6501, 195040, 19504); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270002765, 'dusk', 3, 1306, 1306, 1306, 39180, 3918); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270002766, 'dawn', 1, 4129, 4129, 4129, 123880, 12388); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270002770, 'dusk', 2, 3370, 3370, 3370, 101100, 10110); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270002771, 'dawn', 3, 6091, 6091, 6091, 182730, 18273); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270002772, 'dusk', 1, 6370, 6370, 6370, 191120, 19112); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270002775, 'dawn', 2, 1652, 1652, 1652, 49560, 4956); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270002776, 'dusk', 3, 1288, 1288, 1288, 38660, 3866); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270002777, 'dawn', 1, 586, 586, 586, 17580, 1758); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270002778, 'dusk', 2, 4206, 4206, 4206, 126190, 12619); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270002780, 'dawn', 3, 6101, 6101, 6101, 183040, 18304); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270002781, 'dusk', 1, 4788, 4788, 4788, 143640, 14364); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270002782, 'dawn', 2, 6239, 6239, 6239, 187190, 18719); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270002784, 'dusk', 3, 1881, 1881, 1881, 56450, 5645); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270002785, 'dawn', 1, 3950, 3950, 3950, 118520, 11852); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270002787, 'dusk', 2, 4422, 4422, 4422, 132680, 13268); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270002788, 'dawn', 3, 3993, 3993, 3993, 119790, 11979); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270002790, 'dusk', 1, 245, 245, 245, 7360, 736); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270002791, 'dawn', 2, 3069, 3069, 3069, 92070, 9207); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270002792, 'dusk', 3, 4433, 4433, 4433, 133010, 13301); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270002793, 'dawn', 1, 3042, 3042, 3042, 91270, 9127); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270002794, 'dusk', 2, 2448, 2448, 2448, 73440, 7344); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270002795, 'dawn', 3, 745, 745, 745, 22350, 2235); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270002796, 'dusk', 1, 2973, 2973, 2973, 89190, 8919); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270002797, 'dawn', 2, 2484, 2484, 2484, 74520, 7452); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270002798, 'dusk', 3, 1719, 1719, 1719, 51570, 5157); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270002801, 'dawn', 1, 4781, 4781, 4781, 143450, 14345); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270002802, 'dusk', 2, 4002, 4002, 4002, 120060, 12006); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270002803, 'dawn', 3, 210, 210, 210, 6310, 631); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270002804, 'dusk', 1, 3083, 3083, 3083, 92500, 9250); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270002806, 'dawn', 2, 2562, 2562, 2562, 76860, 7686); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270002807, 'dusk', 3, 2990, 2990, 2990, 89710, 8971); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270002808, 'dawn', 1, 1639, 1639, 1639, 49190, 4919); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270002810, 'dusk', 2, 5248, 5248, 5248, 157450, 15745); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270002811, 'dawn', 3, 2124, 2124, 2124, 63730, 6373); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270002812, 'dusk', 1, 5591, 5591, 5591, 167730, 16773); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270002815, 'dawn', 2, 4020, 4020, 4020, 120620, 12062); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270002816, 'dusk', 3, 5827, 5827, 5827, 174830, 17483); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270002817, 'dawn', 1, 2158, 2158, 2158, 64740, 6474); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270002821, 'dusk', 2, 6376, 6376, 6376, 191300, 19130); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270002823, 'dawn', 3, 1697, 1697, 1697, 50910, 5091); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270002825, 'dusk', 1, 4081, 4081, 4081, 122440, 12244); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270002827, 'dawn', 2, 750, 750, 750, 22520, 2252); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270002829, 'dusk', 3, 1126, 1126, 1126, 33800, 3380); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270002831, 'dawn', 1, 5650, 5650, 5650, 169510, 16951); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270002832, 'dusk', 2, 1460, 1460, 1460, 43800, 4380); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270002833, 'dawn', 3, 947, 947, 947, 28430, 2843); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270002834, 'dusk', 1, 56, 56, 56, 1690, 169); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270002837, 'dawn', 2, 5223, 5223, 5223, 156700, 15670); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270002840, 'dusk', 3, 3961, 3961, 3961, 118840, 11884); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270002841, 'dawn', 1, 3064, 3064, 3064, 91920, 9192); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270002842, 'dusk', 2, 5608, 5608, 5608, 168240, 16824); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270002844, 'dawn', 3, 232, 232, 232, 6980, 698); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270002845, 'dusk', 1, 1665, 1665, 1665, 49970, 4997); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270002849, 'dawn', 2, 1389, 1389, 1389, 41670, 4167); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270002850, 'dusk', 3, 3074, 3074, 3074, 92220, 9222); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270002851, 'dawn', 1, 2808, 2808, 2808, 84240, 8424); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270002852, 'dusk', 2, 889, 889, 889, 26690, 2669); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270002853, 'dawn', 3, 3324, 3324, 3324, 99740, 9974); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270002855, 'dusk', 1, 3662, 3662, 3662, 109860, 10986); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270002857, 'dawn', 2, 450, 450, 450, 13510, 1351); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270002859, 'dusk', 3, 5026, 5026, 5026, 150780, 15078); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270002860, 'dawn', 1, 3795, 3795, 3795, 113860, 11386); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270002861, 'dusk', 2, 1543, 1543, 1543, 46310, 4631); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270002862, 'dawn', 3, 122, 122, 122, 3680, 368); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270002863, 'dusk', 1, 1991, 1991, 1991, 59730, 5973); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270002864, 'dawn', 2, 3698, 3698, 3698, 110940, 11094); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270002865, 'dusk', 3, 4899, 4899, 4899, 146990, 14699); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270002866, 'dawn', 1, 832, 832, 832, 24970, 2497); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270002867, 'dusk', 2, 3415, 3415, 3415, 102460, 10246); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270002868, 'dawn', 3, 2533, 2533, 2533, 76000, 7600); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270002869, 'dusk', 1, 4420, 4420, 4420, 132610, 13261); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270002871, 'dawn', 2, 270, 270, 270, 8110, 811); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270002873, 'dusk', 3, 3748, 3748, 3748, 112440, 11244); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270002874, 'dawn', 1, 2093, 2093, 2093, 62810, 6281); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270002876, 'dusk', 2, 5666, 5666, 5666, 170000, 17000); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270002877, 'dawn', 3, 2526, 2526, 2526, 75780, 7578); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270002878, 'dusk', 1, 2769, 2769, 2769, 83070, 8307); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270002882, 'dawn', 2, 695, 695, 695, 20860, 2086); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270002883, 'dusk', 3, 6448, 6448, 6448, 193440, 19344); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270002885, 'dawn', 1, 3901, 3901, 3901, 117040, 11704); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270002886, 'dusk', 2, 3419, 3419, 3419, 102570, 10257); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270002887, 'dawn', 3, 1325, 1325, 1325, 39750, 3975); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270002889, 'dusk', 1, 5836, 5836, 5836, 175080, 17508); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270002891, 'dawn', 2, 5130, 5130, 5130, 153910, 15391); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270002892, 'dusk', 3, 4210, 4210, 4210, 126320, 12632); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270002893, 'dawn', 1, 3941, 3941, 3941, 118250, 11825); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270002894, 'dusk', 2, 4956, 4956, 4956, 148680, 14868); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270002895, 'dawn', 3, 5523, 5523, 5523, 165700, 16570); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270002896, 'dusk', 1, 245, 245, 245, 7360, 736); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270002897, 'dawn', 2, 3539, 3539, 3539, 106180, 10618); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270002898, 'dusk', 3, 2819, 2819, 2819, 84580, 8458); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270002899, 'dawn', 1, 5998, 5998, 5998, 179950, 17995); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270002900, 'dusk', 2, 5732, 5732, 5732, 171960, 17196); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270002901, 'dawn', 3, 6348, 6348, 6348, 190450, 19045); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270002903, 'dusk', 1, 3602, 3602, 3602, 108080, 10808); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270002906, 'dawn', 2, 5774, 5774, 5774, 173220, 17322); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270002907, 'dusk', 3, 947, 947, 947, 28410, 2841); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270002908, 'dawn', 1, 2424, 2424, 2424, 72730, 7273); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270002909, 'dusk', 2, 3492, 3492, 3492, 104780, 10478); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270002910, 'dawn', 3, 130, 130, 130, 3900, 390); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270002911, 'dusk', 1, 2968, 2968, 2968, 89060, 8906); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270002912, 'dawn', 2, 3586, 3586, 3586, 107580, 10758); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270002914, 'dusk', 3, 5182, 5182, 5182, 155480, 15548); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270002915, 'dawn', 1, 142, 142, 142, 4270, 427); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270002917, 'dusk', 2, 4145, 4145, 4145, 124370, 12437); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270002918, 'dawn', 3, 1962, 1962, 1962, 58870, 5887); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270002919, 'dusk', 1, 1647, 1647, 1647, 49410, 4941); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270002920, 'dawn', 2, 1990, 1990, 1990, 59700, 5970); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270002921, 'dusk', 3, 1559, 1559, 1559, 46790, 4679); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270002925, 'dawn', 1, 851, 851, 851, 25550, 2555); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270002926, 'dusk', 2, 1919, 1919, 1919, 57570, 5757); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270002927, 'dawn', 3, 5378, 5378, 5378, 161350, 16135); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270002928, 'dusk', 1, 2035, 2035, 2035, 61070, 6107); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270002930, 'dawn', 2, 400, 400, 400, 12000, 1200); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270002931, 'dusk', 3, 1882, 1882, 1882, 56460, 5646); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270002933, 'dawn', 1, 982, 982, 982, 29470, 2947); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270002934, 'dusk', 2, 1952, 1952, 1952, 58580, 5858); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270002935, 'dawn', 3, 6529, 6529, 6529, 195880, 19588); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270002936, 'dusk', 1, 810, 810, 810, 24320, 2432); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270002938, 'dawn', 2, 3043, 3043, 3043, 91310, 9131); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270002940, 'dusk', 3, 6659, 6659, 6659, 199790, 19979); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270002942, 'dawn', 1, 6034, 6034, 6034, 181040, 18104); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270002943, 'dusk', 2, 1583, 1583, 1583, 47500, 4750); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270002946, 'dawn', 3, 1464, 1464, 1464, 43920, 4392); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270002947, 'dusk', 1, 1824, 1824, 1824, 54730, 5473); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270002951, 'dawn', 2, 5172, 5172, 5172, 155180, 15518); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270002952, 'dusk', 3, 947, 947, 947, 28420, 2842); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270002954, 'dawn', 1, 6065, 6065, 6065, 181960, 18196); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270002955, 'dusk', 2, 1591, 1591, 1591, 47750, 4775); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270002956, 'dawn', 3, 2919, 2919, 2919, 87580, 8758); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270002958, 'dusk', 1, 1791, 1791, 1791, 53730, 5373); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270002960, 'dawn', 2, 437, 437, 437, 13130, 1313); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270002962, 'dusk', 3, 2992, 2992, 2992, 89780, 8978); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270002963, 'dawn', 1, 5469, 5469, 5469, 164090, 16409); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270002964, 'dusk', 2, 3026, 3026, 3026, 90790, 9079); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270002967, 'dawn', 3, 1058, 1058, 1058, 31760, 3176); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270002968, 'dusk', 1, 6209, 6209, 6209, 186270, 18627); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270002969, 'dawn', 2, 3385, 3385, 3385, 101550, 10155); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270002970, 'dusk', 3, 3089, 3089, 3089, 92670, 9267); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270002971, 'dawn', 1, 3160, 3160, 3160, 94810, 9481); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270002973, 'dusk', 2, 2273, 2273, 2273, 68200, 6820); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270002975, 'dawn', 3, 2414, 2414, 2414, 72430, 7243); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270002976, 'dusk', 1, 5899, 5899, 5899, 176970, 17697); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270002977, 'dawn', 2, 3270, 3270, 3270, 98110, 9811); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270002978, 'dusk', 3, 5818, 5818, 5818, 174550, 17455); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270002979, 'dawn', 1, 5248, 5248, 5248, 157440, 15744); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270002980, 'dusk', 2, 3940, 3940, 3940, 118220, 11822); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270002982, 'dawn', 3, 5959, 5959, 5959, 178770, 17877); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270002983, 'dusk', 1, 5738, 5738, 5738, 172160, 17216); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270002984, 'dawn', 2, 4400, 4400, 4400, 132020, 13202); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270002985, 'dusk', 3, 5988, 5988, 5988, 179640, 17964); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270002986, 'dawn', 1, 1435, 1435, 1435, 43070, 4307); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270002987, 'dusk', 2, 2792, 2792, 2792, 83770, 8377); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270002989, 'dawn', 3, 1409, 1409, 1409, 42290, 4229); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270002990, 'dusk', 1, 344, 344, 344, 10330, 1033); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270002992, 'dawn', 2, 4629, 4629, 4629, 138890, 13889); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270002994, 'dusk', 3, 5432, 5432, 5432, 162970, 16297); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270002995, 'dawn', 1, 4342, 4342, 4342, 130270, 13027); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270002996, 'dusk', 2, 1543, 1543, 1543, 46300, 4630); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270002997, 'dawn', 3, 825, 825, 825, 24760, 2476); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270002998, 'dusk', 1, 4228, 4228, 4228, 126850, 12685); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270002999, 'dawn', 2, 411, 411, 411, 12330, 1233); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270003001, 'dusk', 3, 5506, 5506, 5506, 165180, 16518); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270003002, 'dawn', 1, 4871, 4871, 4871, 146130, 14613); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270003003, 'dusk', 2, 2434, 2434, 2434, 73020, 7302); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270003004, 'dawn', 3, 2081, 2081, 2081, 62440, 6244); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270003005, 'dusk', 1, 1716, 1716, 1716, 51500, 5150); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270003006, 'dawn', 2, 141, 141, 141, 4240, 424); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270003007, 'dusk', 3, 3459, 3459, 3459, 103780, 10378); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270003008, 'dawn', 1, 2104, 2104, 2104, 63140, 6314); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270003009, 'dusk', 2, 3137, 3137, 3137, 94110, 9411); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270003011, 'dawn', 3, 4205, 4205, 4205, 126160, 12616); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270003012, 'dusk', 1, 3690, 3690, 3690, 110700, 11070); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270003013, 'dawn', 2, 6097, 6097, 6097, 182910, 18291); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270003015, 'dusk', 3, 3933, 3933, 3933, 117990, 11799); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270003016, 'dawn', 1, 4832, 4832, 4832, 144980, 14498); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270003017, 'dusk', 2, 5422, 5422, 5422, 162660, 16266); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270003018, 'dawn', 3, 5069, 5069, 5069, 152080, 15208); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270003019, 'dusk', 1, 4663, 4663, 4663, 139910, 13991); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270003020, 'dawn', 2, 1196, 1196, 1196, 35880, 3588); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270003021, 'dusk', 3, 1932, 1932, 1932, 57980, 5798); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270003022, 'dawn', 1, 5546, 5546, 5546, 166400, 16640); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270003023, 'dusk', 2, 5797, 5797, 5797, 173930, 17393); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270003024, 'dawn', 3, 3241, 3241, 3241, 97240, 9724); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270003026, 'dusk', 1, 2755, 2755, 2755, 82660, 8266); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270003027, 'dawn', 2, 2875, 2875, 2875, 86260, 8626); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270003028, 'dusk', 3, 352, 352, 352, 10560, 1056); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270003029, 'dawn', 1, 376, 376, 376, 11280, 1128); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270003031, 'dusk', 2, 6512, 6512, 6512, 195380, 19538); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270003033, 'dawn', 3, 4852, 4852, 4852, 145580, 14558); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270003034, 'dusk', 1, 5413, 5413, 5413, 162410, 16241); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270003035, 'dawn', 2, 1004, 1004, 1004, 30120, 3012); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270003036, 'dusk', 3, 3683, 3683, 3683, 110510, 11051); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270003037, 'dawn', 1, 827, 827, 827, 24830, 2483); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270003038, 'dusk', 2, 521, 521, 521, 15640, 1564); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270003039, 'dawn', 3, 3269, 3269, 3269, 98080, 9808); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270003041, 'dusk', 1, 989, 989, 989, 29690, 2969); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270003042, 'dawn', 2, 6112, 6112, 6112, 183370, 18337); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270003044, 'dusk', 3, 446, 446, 446, 13380, 1338); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270003046, 'dawn', 1, 6080, 6080, 6080, 182400, 18240); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270003048, 'dusk', 2, 2084, 2084, 2084, 62530, 6253); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270003049, 'dawn', 3, 942, 942, 942, 28260, 2826); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270003051, 'dusk', 1, 3641, 3641, 3641, 109230, 10923); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270003052, 'dawn', 2, 948, 948, 948, 28440, 2844); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270003053, 'dusk', 3, 5578, 5578, 5578, 167350, 16735); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270003055, 'dawn', 1, 1246, 1246, 1246, 37400, 3740); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270003056, 'dusk', 2, 3464, 3464, 3464, 103940, 10394); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270003058, 'dawn', 3, 2168, 2168, 2168, 65060, 6506); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270003065, 'dusk', 1, 5453, 5453, 5453, 163590, 16359); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270003066, 'dawn', 2, 1158, 1158, 1158, 34760, 3476); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270003070, 'dusk', 3, 5335, 5335, 5335, 160050, 16005); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270003071, 'dawn', 1, 3352, 3352, 3352, 100570, 10057); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270003072, 'dusk', 2, 4423, 4423, 4423, 132700, 13270); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270003073, 'dawn', 3, 6548, 6548, 6548, 196440, 19644); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270003074, 'dusk', 1, 4959, 4959, 4959, 148780, 14878); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270003077, 'dawn', 2, 5938, 5938, 5938, 178160, 17816); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270003078, 'dusk', 3, 1936, 1936, 1936, 58080, 5808); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270003080, 'dawn', 1, 1863, 1863, 1863, 55910, 5591); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270003081, 'dusk', 2, 1670, 1670, 1670, 50100, 5010); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270003082, 'dawn', 3, 5415, 5415, 5415, 162460, 16246); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270003083, 'dusk', 1, 2116, 2116, 2116, 63500, 6350); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270003084, 'dawn', 2, 4792, 4792, 4792, 143770, 14377); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270003086, 'dusk', 3, 785, 785, 785, 23550, 2355); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270003087, 'dawn', 1, 4629, 4629, 4629, 138870, 13887); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270003088, 'dusk', 2, 1385, 1385, 1385, 41560, 4156); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270003089, 'dawn', 3, 6563, 6563, 6563, 196900, 19690); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270003090, 'dusk', 1, 6244, 6244, 6244, 187330, 18733); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270003091, 'dawn', 2, 1523, 1523, 1523, 45700, 4570); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270003093, 'dusk', 3, 3457, 3457, 3457, 103720, 10372); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270003095, 'dawn', 1, 4974, 4974, 4974, 149220, 14922); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270003096, 'dusk', 2, 4301, 4301, 4301, 129040, 12904); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270003097, 'dawn', 3, 5192, 5192, 5192, 155780, 15578); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270003098, 'dusk', 1, 2846, 2846, 2846, 85390, 8539); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270003099, 'dawn', 2, 1403, 1403, 1403, 42100, 4210); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270003101, 'dusk', 3, 1876, 1876, 1876, 56300, 5630); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270003102, 'dawn', 1, 5990, 5990, 5990, 179720, 17972); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270003103, 'dusk', 2, 5960, 5960, 5960, 178820, 17882); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270003105, 'dawn', 3, 3990, 3990, 3990, 119710, 11971); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270003106, 'dusk', 1, 3325, 3325, 3325, 99750, 9975); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270003107, 'dawn', 2, 291, 291, 291, 8730, 873); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270003111, 'dusk', 3, 6485, 6485, 6485, 194570, 19457); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270003113, 'dawn', 1, 3399, 3399, 3399, 101970, 10197); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270003115, 'dusk', 2, 6223, 6223, 6223, 186700, 18670); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270003118, 'dawn', 3, 124, 124, 124, 3740, 374); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270003120, 'dusk', 1, 1759, 1759, 1759, 52790, 5279); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270003121, 'dawn', 2, 2189, 2189, 2189, 65680, 6568); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270003123, 'dusk', 3, 6083, 6083, 6083, 182510, 18251); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270003124, 'dawn', 1, 3767, 3767, 3767, 113020, 11302); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270003125, 'dusk', 2, 566, 566, 566, 17000, 1700); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270003126, 'dawn', 3, 3048, 3048, 3048, 91450, 9145); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270003129, 'dusk', 1, 2855, 2855, 2855, 85660, 8566); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270003130, 'dawn', 2, 2694, 2694, 2694, 80840, 8084); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270003131, 'dusk', 3, 3821, 3821, 3821, 114650, 11465); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270003132, 'dawn', 1, 3615, 3615, 3615, 108460, 10846); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270003133, 'dusk', 2, 6638, 6638, 6638, 199150, 19915); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270003134, 'dawn', 3, 3871, 3871, 3871, 116150, 11615); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270003135, 'dusk', 1, 3546, 3546, 3546, 106400, 10640); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270003136, 'dawn', 2, 3465, 3465, 3465, 103960, 10396); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270003137, 'dusk', 3, 5966, 5966, 5966, 178990, 17899); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270003139, 'dawn', 1, 1778, 1778, 1778, 53340, 5334); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270003140, 'dusk', 2, 6665, 6665, 6665, 199950, 19995); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270003142, 'dawn', 3, 4930, 4930, 4930, 147900, 14790); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270003143, 'dusk', 1, 441, 441, 441, 13230, 1323); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270003144, 'dawn', 2, 3917, 3917, 3917, 117520, 11752); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270003145, 'dusk', 3, 4942, 4942, 4942, 148270, 14827); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270003149, 'dawn', 1, 1187, 1187, 1187, 35630, 3563); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270003151, 'dusk', 2, 4838, 4838, 4838, 145160, 14516); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270003152, 'dawn', 3, 4624, 4624, 4624, 138740, 13874); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270003155, 'dusk', 1, 1001, 1001, 1001, 30050, 3005); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270003156, 'dawn', 2, 5568, 5568, 5568, 167060, 16706); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270003157, 'dusk', 3, 2833, 2833, 2833, 85000, 8500); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270003158, 'dawn', 1, 6056, 6056, 6056, 181700, 18170); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270003159, 'dusk', 2, 6601, 6601, 6601, 198040, 19804); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270003160, 'dawn', 3, 2527, 2527, 2527, 75810, 7581); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270003163, 'dusk', 1, 5746, 5746, 5746, 172380, 17238); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270003165, 'dawn', 2, 4051, 4051, 4051, 121540, 12154); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270003166, 'dusk', 3, 1335, 1335, 1335, 40070, 4007); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270003169, 'dawn', 1, 1117, 1117, 1117, 33530, 3353); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270003170, 'dusk', 2, 5133, 5133, 5133, 154010, 15401); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270003171, 'dawn', 3, 4961, 4961, 4961, 148830, 14883); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270003172, 'dusk', 1, 1918, 1918, 1918, 57560, 5756); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270003173, 'dawn', 2, 3732, 3732, 3732, 111960, 11196); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270003174, 'dusk', 3, 588, 588, 588, 17650, 1765); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270003177, 'dawn', 1, 627, 627, 627, 18820, 1882); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270003178, 'dusk', 2, 1898, 1898, 1898, 56950, 5695); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270003179, 'dawn', 3, 885, 885, 885, 26550, 2655); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270003181, 'dusk', 1, 1591, 1591, 1591, 47730, 4773); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270003182, 'dawn', 2, 1513, 1513, 1513, 45400, 4540); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270003183, 'dusk', 3, 3824, 3824, 3824, 114740, 11474); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270003184, 'dawn', 1, 2050, 2050, 2050, 61510, 6151); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270003185, 'dusk', 2, 5895, 5895, 5895, 176870, 17687); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270003187, 'dawn', 3, 2330, 2330, 2330, 69920, 6992); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270003188, 'dusk', 1, 4796, 4796, 4796, 143880, 14388); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270003190, 'dawn', 2, 3785, 3785, 3785, 113550, 11355); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270003192, 'dusk', 3, 3684, 3684, 3684, 110520, 11052); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270003193, 'dawn', 1, 1607, 1607, 1607, 48220, 4822); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270003195, 'dusk', 2, 2008, 2008, 2008, 60260, 6026); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270003197, 'dawn', 3, 6453, 6453, 6453, 193590, 19359); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270003199, 'dusk', 1, 2562, 2562, 2562, 76870, 7687); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270003204, 'dawn', 2, 1506, 1506, 1506, 45190, 4519); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270003208, 'dusk', 3, 295, 295, 295, 8870, 887); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270003211, 'dawn', 1, 1141, 1141, 1141, 34240, 3424); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270003212, 'dusk', 2, 1830, 1830, 1830, 54920, 5492); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270003214, 'dawn', 3, 5973, 5973, 5973, 179200, 17920); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270003215, 'dusk', 1, 3296, 3296, 3296, 98890, 9889); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270003216, 'dawn', 2, 1615, 1615, 1615, 48460, 4846); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270003219, 'dusk', 3, 474, 474, 474, 14220, 1422); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270003222, 'dawn', 1, 5894, 5894, 5894, 176820, 17682); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270003225, 'dusk', 2, 3802, 3802, 3802, 114080, 11408); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270003226, 'dawn', 3, 3317, 3317, 3317, 99530, 9953); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270003227, 'dusk', 1, 5510, 5510, 5510, 165300, 16530); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270003228, 'dawn', 2, 1668, 1668, 1668, 50050, 5005); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270003229, 'dusk', 3, 5879, 5879, 5879, 176390, 17639); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270003230, 'dawn', 1, 6135, 6135, 6135, 184050, 18405); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270003231, 'dusk', 2, 4621, 4621, 4621, 138640, 13864); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270003233, 'dawn', 3, 2361, 2361, 2361, 70840, 7084); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270003234, 'dusk', 1, 682, 682, 682, 20480, 2048); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270003235, 'dawn', 2, 5458, 5458, 5458, 163740, 16374); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270003237, 'dusk', 3, 1768, 1768, 1768, 53050, 5305); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270003239, 'dawn', 1, 206, 206, 206, 6200, 620); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270003240, 'dusk', 2, 1900, 1900, 1900, 57020, 5702); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270003242, 'dawn', 3, 5692, 5692, 5692, 170770, 17077); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270003243, 'dusk', 1, 1351, 1351, 1351, 40550, 4055); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270003244, 'dawn', 2, 4818, 4818, 4818, 144550, 14455); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270003245, 'dusk', 3, 5097, 5097, 5097, 152930, 15293); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270003247, 'dawn', 1, 4401, 4401, 4401, 132050, 13205); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270003251, 'dusk', 2, 6625, 6625, 6625, 198750, 19875); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270003252, 'dawn', 3, 4662, 4662, 4662, 139860, 13986); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270003253, 'dusk', 1, 3702, 3702, 3702, 111060, 11106); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270003255, 'dawn', 2, 6572, 6572, 6572, 197160, 19716); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270003256, 'dusk', 3, 5449, 5449, 5449, 163480, 16348); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270003258, 'dawn', 1, 1093, 1093, 1093, 32790, 3279); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270003260, 'dusk', 2, 219, 219, 219, 6590, 659); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270003261, 'dawn', 3, 5338, 5338, 5338, 160160, 16016); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270003262, 'dusk', 1, 5501, 5501, 5501, 165050, 16505); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270003264, 'dawn', 2, 3968, 3968, 3968, 119050, 11905); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270003265, 'dusk', 3, 5081, 5081, 5081, 152440, 15244); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270003267, 'dawn', 1, 6582, 6582, 6582, 197470, 19747); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270003268, 'dusk', 2, 2406, 2406, 2406, 72190, 7219); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270003269, 'dawn', 3, 2034, 2034, 2034, 61040, 6104); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270003270, 'dusk', 1, 2401, 2401, 2401, 72050, 7205); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270003271, 'dawn', 2, 5041, 5041, 5041, 151250, 15125); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270003272, 'dusk', 3, 2246, 2246, 2246, 67380, 6738); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270003273, 'dawn', 1, 1942, 1942, 1942, 58270, 5827); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270003274, 'dusk', 2, 693, 693, 693, 20790, 2079); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270003275, 'dawn', 3, 1798, 1798, 1798, 53960, 5396); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270003276, 'dusk', 1, 303, 303, 303, 9110, 911); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270003277, 'dawn', 2, 5229, 5229, 5229, 156890, 15689); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270003280, 'dusk', 3, 878, 878, 878, 26360, 2636); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270003281, 'dawn', 1, 4760, 4760, 4760, 142820, 14282); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270003282, 'dusk', 2, 2907, 2907, 2907, 87230, 8723); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270003284, 'dawn', 3, 2200, 2200, 2200, 66020, 6602); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270003285, 'dusk', 1, 4530, 4530, 4530, 135900, 13590); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270003286, 'dawn', 2, 4436, 4436, 4436, 133090, 13309); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270003288, 'dusk', 3, 6484, 6484, 6484, 194520, 19452); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270003289, 'dawn', 1, 1944, 1944, 1944, 58320, 5832); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270003290, 'dusk', 2, 4382, 4382, 4382, 131470, 13147); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270003291, 'dawn', 3, 3608, 3608, 3608, 108260, 10826); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270003292, 'dusk', 1, 2414, 2414, 2414, 72430, 7243); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270003293, 'dawn', 2, 102, 102, 102, 3060, 306); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270003294, 'dusk', 3, 4091, 4091, 4091, 122750, 12275); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270003295, 'dawn', 1, 1189, 1189, 1189, 35670, 3567); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270003296, 'dusk', 2, 2288, 2288, 2288, 68650, 6865); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270003297, 'dawn', 3, 5662, 5662, 5662, 169860, 16986); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270003299, 'dusk', 1, 4960, 4960, 4960, 148810, 14881); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270003301, 'dawn', 2, 567, 567, 567, 17020, 1702); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270003302, 'dusk', 3, 3618, 3618, 3618, 108560, 10856); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270003304, 'dawn', 1, 4951, 4951, 4951, 148540, 14854); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270003305, 'dusk', 2, 2536, 2536, 2536, 76080, 7608); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270003306, 'dawn', 3, 6593, 6593, 6593, 197810, 19781); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270003307, 'dusk', 1, 2147, 2147, 2147, 64410, 6441); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270003308, 'dawn', 2, 2873, 2873, 2873, 86210, 8621); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270003309, 'dusk', 3, 6033, 6033, 6033, 181010, 18101); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270003310, 'dawn', 1, 1244, 1244, 1244, 37340, 3734); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270003311, 'dusk', 2, 2959, 2959, 2959, 88790, 8879); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270003312, 'dawn', 3, 637, 637, 637, 19120, 1912); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270003313, 'dusk', 1, 4003, 4003, 4003, 120110, 12011); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270003315, 'dawn', 2, 1837, 1837, 1837, 55130, 5513); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270003316, 'dusk', 3, 312, 312, 312, 9370, 937); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270003317, 'dawn', 1, 2173, 2173, 2173, 65190, 6519); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270003318, 'dusk', 2, 1890, 1890, 1890, 56720, 5672); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270003319, 'dawn', 3, 4109, 4109, 4109, 123270, 12327); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270003320, 'dusk', 1, 4113, 4113, 4113, 123400, 12340); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270003321, 'dawn', 2, 672, 672, 672, 20170, 2017); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270003323, 'dusk', 3, 4040, 4040, 4040, 121210, 12121); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270003324, 'dawn', 1, 3486, 3486, 3486, 104600, 10460); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270003326, 'dusk', 2, 3467, 3467, 3467, 104020, 10402); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270003327, 'dawn', 3, 2622, 2622, 2622, 78660, 7866); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270003331, 'dusk', 1, 5630, 5630, 5630, 168920, 16892); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270003332, 'dawn', 2, 2961, 2961, 2961, 88850, 8885); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270003333, 'dusk', 3, 3880, 3880, 3880, 116400, 11640); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270003334, 'dawn', 1, 1556, 1556, 1556, 46700, 4670); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270003335, 'dusk', 2, 1784, 1784, 1784, 53520, 5352); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270003336, 'dawn', 3, 5686, 5686, 5686, 170580, 17058); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270003337, 'dusk', 1, 1658, 1658, 1658, 49760, 4976); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270003338, 'dawn', 2, 1124, 1124, 1124, 33720, 3372); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270003339, 'dusk', 3, 3658, 3658, 3658, 109740, 10974); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270003340, 'dawn', 1, 5119, 5119, 5119, 153580, 15358); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270003341, 'dusk', 2, 3577, 3577, 3577, 107310, 10731); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270003343, 'dawn', 3, 2026, 2026, 2026, 60780, 6078); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270003344, 'dusk', 1, 3968, 3968, 3968, 119060, 11906); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270003346, 'dawn', 2, 1988, 1988, 1988, 59650, 5965); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270003347, 'dusk', 3, 5716, 5716, 5716, 171480, 17148); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270003348, 'dawn', 1, 6383, 6383, 6383, 191500, 19150); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270003349, 'dusk', 2, 2639, 2639, 2639, 79190, 7919); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270003350, 'dawn', 3, 4382, 4382, 4382, 131470, 13147); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270003351, 'dusk', 1, 4678, 4678, 4678, 140360, 14036); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270003353, 'dawn', 2, 425, 425, 425, 12750, 1275); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270003355, 'dusk', 3, 651, 651, 651, 19540, 1954); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270003357, 'dawn', 1, 5120, 5120, 5120, 153600, 15360); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270003358, 'dusk', 2, 468, 468, 468, 14050, 1405); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270003359, 'dawn', 3, 3671, 3671, 3671, 110150, 11015); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270003360, 'dusk', 1, 415, 415, 415, 12460, 1246); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270003361, 'dawn', 2, 1966, 1966, 1966, 58980, 5898); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270003362, 'dusk', 3, 2475, 2475, 2475, 74260, 7426); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270003363, 'dawn', 1, 3738, 3738, 3738, 112140, 11214); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270003364, 'dusk', 2, 5721, 5721, 5721, 171640, 17164); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270003365, 'dawn', 3, 4330, 4330, 4330, 129900, 12990); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270003366, 'dusk', 1, 5947, 5947, 5947, 178410, 17841); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270003367, 'dawn', 2, 4951, 4951, 4951, 148550, 14855); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270003368, 'dusk', 3, 1878, 1878, 1878, 56360, 5636); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270003369, 'dawn', 1, 2659, 2659, 2659, 79780, 7978); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270003371, 'dusk', 2, 5770, 5770, 5770, 173110, 17311); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270003372, 'dawn', 3, 4110, 4110, 4110, 123310, 12331); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270003373, 'dusk', 1, 5230, 5230, 5230, 156900, 15690); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270003374, 'dawn', 2, 5366, 5366, 5366, 160980, 16098); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270003376, 'dusk', 3, 4180, 4180, 4180, 125410, 12541); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270003377, 'dawn', 1, 4594, 4594, 4594, 137840, 13784); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270003378, 'dusk', 2, 3460, 3460, 3460, 103800, 10380); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270003379, 'dawn', 3, 6553, 6553, 6553, 196610, 19661); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270003380, 'dusk', 1, 2836, 2836, 2836, 85090, 8509); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270003381, 'dawn', 2, 3925, 3925, 3925, 117750, 11775); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270003383, 'dusk', 3, 821, 821, 821, 24650, 2465); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270003384, 'dawn', 1, 1946, 1946, 1946, 58380, 5838); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270003385, 'dusk', 2, 3508, 3508, 3508, 105250, 10525); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270003387, 'dawn', 3, 723, 723, 723, 21700, 2170); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270003388, 'dusk', 1, 5352, 5352, 5352, 160570, 16057); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270003389, 'dawn', 2, 3857, 3857, 3857, 115710, 11571); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270003390, 'dusk', 3, 1394, 1394, 1394, 41820, 4182); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270003391, 'dawn', 1, 5709, 5709, 5709, 171280, 17128); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270003393, 'dusk', 2, 5935, 5935, 5935, 178050, 17805); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270003395, 'dawn', 3, 4986, 4986, 4986, 149590, 14959); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270003396, 'dusk', 1, 808, 808, 808, 24250, 2425); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270003397, 'dawn', 2, 5999, 5999, 5999, 179980, 17998); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270003398, 'dusk', 3, 6257, 6257, 6257, 187730, 18773); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270003399, 'dawn', 1, 265, 265, 265, 7970, 797); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270003400, 'dusk', 2, 4517, 4517, 4517, 135520, 13552); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270003401, 'dawn', 3, 5311, 5311, 5311, 159330, 15933); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270003402, 'dusk', 1, 3724, 3724, 3724, 111720, 11172); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270003404, 'dawn', 2, 4172, 4172, 4172, 125160, 12516); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270003408, 'dusk', 3, 4203, 4203, 4203, 126110, 12611); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270003409, 'dawn', 1, 2058, 2058, 2058, 61750, 6175); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270003410, 'dusk', 2, 6501, 6501, 6501, 195050, 19505); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270003411, 'dawn', 3, 3482, 3482, 3482, 104480, 10448); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270003413, 'dusk', 1, 4343, 4343, 4343, 130290, 13029); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270003414, 'dawn', 2, 1111, 1111, 1111, 33340, 3334); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270003415, 'dusk', 3, 5719, 5719, 5719, 171590, 17159); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270003416, 'dawn', 1, 2299, 2299, 2299, 68970, 6897); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270003419, 'dusk', 2, 5624, 5624, 5624, 168730, 16873); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270003423, 'dawn', 3, 753, 753, 753, 22610, 2261); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270003426, 'dusk', 1, 336, 336, 336, 10090, 1009); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270003428, 'dawn', 2, 3457, 3457, 3457, 103720, 10372); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270003429, 'dusk', 3, 1317, 1317, 1317, 39520, 3952); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270003431, 'dawn', 1, 5261, 5261, 5261, 157850, 15785); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270003432, 'dusk', 2, 3715, 3715, 3715, 111460, 11146); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270003434, 'dawn', 3, 2484, 2484, 2484, 74520, 7452); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270003435, 'dusk', 1, 2974, 2974, 2974, 89240, 8924); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270003436, 'dawn', 2, 5853, 5853, 5853, 175590, 17559); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270003437, 'dusk', 3, 2167, 2167, 2167, 65010, 6501); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270003438, 'dawn', 1, 4924, 4924, 4924, 147740, 14774); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270003439, 'dusk', 2, 5711, 5711, 5711, 171350, 17135); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270003442, 'dawn', 3, 5454, 5454, 5454, 163640, 16364); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270003444, 'dusk', 1, 1163, 1163, 1163, 34910, 3491); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270003446, 'dawn', 2, 471, 471, 471, 14150, 1415); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270003447, 'dusk', 3, 6162, 6162, 6162, 184860, 18486); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270003448, 'dawn', 1, 5568, 5568, 5568, 167060, 16706); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270003449, 'dusk', 2, 6450, 6450, 6450, 193500, 19350); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270003450, 'dawn', 3, 1550, 1550, 1550, 46510, 4651); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270003451, 'dusk', 1, 1257, 1257, 1257, 37730, 3773); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270003453, 'dawn', 2, 3940, 3940, 3940, 118220, 11822); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270003454, 'dusk', 3, 2784, 2784, 2784, 83520, 8352); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270003455, 'dawn', 1, 1237, 1237, 1237, 37130, 3713); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270003456, 'dusk', 2, 6606, 6606, 6606, 198190, 19819); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270003457, 'dawn', 3, 522, 522, 522, 15680, 1568); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270003458, 'dusk', 1, 6011, 6011, 6011, 180350, 18035); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270003459, 'dawn', 2, 944, 944, 944, 28340, 2834); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270003460, 'dusk', 3, 2383, 2383, 2383, 71510, 7151); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270003461, 'dawn', 1, 3082, 3082, 3082, 92460, 9246); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270003462, 'dusk', 2, 1886, 1886, 1886, 56590, 5659); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270003463, 'dawn', 3, 6165, 6165, 6165, 184960, 18496); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270003467, 'dusk', 1, 3320, 3320, 3320, 99600, 9960); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270003469, 'dawn', 2, 1923, 1923, 1923, 57700, 5770); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270003470, 'dusk', 3, 1595, 1595, 1595, 47860, 4786); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270003471, 'dawn', 1, 3450, 3450, 3450, 103500, 10350); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270003473, 'dusk', 2, 1606, 1606, 1606, 48190, 4819); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270003476, 'dawn', 3, 5620, 5620, 5620, 168620, 16862); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270003477, 'dusk', 1, 1592, 1592, 1592, 47780, 4778); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270003478, 'dawn', 2, 3510, 3510, 3510, 105300, 10530); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270003480, 'dusk', 3, 61, 61, 61, 1840, 184); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270003481, 'dawn', 1, 3240, 3240, 3240, 97200, 9720); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270003485, 'dusk', 2, 6057, 6057, 6057, 181730, 18173); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270003486, 'dawn', 3, 6097, 6097, 6097, 182930, 18293); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270003488, 'dusk', 1, 5856, 5856, 5856, 175690, 17569); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270003489, 'dawn', 2, 6127, 6127, 6127, 183820, 18382); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270003492, 'dusk', 3, 4138, 4138, 4138, 124150, 12415); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270003493, 'dawn', 1, 5997, 5997, 5997, 179930, 17993); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270003494, 'dusk', 2, 564, 564, 564, 16920, 1692); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270003495, 'dawn', 3, 4893, 4893, 4893, 146810, 14681); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270003496, 'dusk', 1, 4714, 4714, 4714, 141440, 14144); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270003497, 'dawn', 2, 1922, 1922, 1922, 57660, 5766); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270003499, 'dusk', 3, 3585, 3585, 3585, 107570, 10757); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270003507, 'dawn', 1, 2910, 2910, 2910, 87300, 8730); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270003508, 'dusk', 2, 5504, 5504, 5504, 165140, 16514); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270003510, 'dawn', 3, 3303, 3303, 3303, 99110, 9911); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270003514, 'dusk', 1, 3052, 3052, 3052, 91570, 9157); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270003515, 'dawn', 2, 5028, 5028, 5028, 150840, 15084); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270003516, 'dusk', 3, 751, 751, 751, 22550, 2255); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270003517, 'dawn', 1, 2535, 2535, 2535, 76050, 7605); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270003518, 'dusk', 2, 5828, 5828, 5828, 174860, 17486); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270003519, 'dawn', 3, 2914, 2914, 2914, 87430, 8743); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270003520, 'dusk', 1, 5003, 5003, 5003, 150110, 15011); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270003521, 'dawn', 2, 505, 505, 505, 15170, 1517); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270003522, 'dusk', 3, 2695, 2695, 2695, 80850, 8085); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270003524, 'dawn', 1, 2609, 2609, 2609, 78290, 7829); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270003525, 'dusk', 2, 3420, 3420, 3420, 102620, 10262); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270003526, 'dawn', 3, 1669, 1669, 1669, 50080, 5008); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270003527, 'dusk', 1, 4226, 4226, 4226, 126780, 12678); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270003529, 'dawn', 2, 3321, 3321, 3321, 99640, 9964); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270003532, 'dusk', 3, 5096, 5096, 5096, 152890, 15289); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270003533, 'dawn', 1, 4102, 4102, 4102, 123070, 12307); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270003534, 'dusk', 2, 533, 533, 533, 16010, 1601); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270003537, 'dawn', 3, 6583, 6583, 6583, 197490, 19749); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270003538, 'dusk', 1, 3599, 3599, 3599, 107970, 10797); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270003540, 'dawn', 2, 5900, 5900, 5900, 177000, 17700); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270003541, 'dusk', 3, 40, 40, 40, 1210, 121); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270003542, 'dawn', 1, 4400, 4400, 4400, 132020, 13202); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270003543, 'dusk', 2, 3534, 3534, 3534, 106040, 10604); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270003545, 'dawn', 3, 2829, 2829, 2829, 84880, 8488); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270003547, 'dusk', 1, 3564, 3564, 3564, 106930, 10693); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270003548, 'dawn', 2, 3894, 3894, 3894, 116830, 11683); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270003549, 'dusk', 3, 3558, 3558, 3558, 106740, 10674); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270003551, 'dawn', 1, 4051, 4051, 4051, 121550, 12155); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270003553, 'dusk', 2, 2750, 2750, 2750, 82520, 8252); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270003554, 'dawn', 3, 4329, 4329, 4329, 129880, 12988); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270003555, 'dusk', 1, 5553, 5553, 5553, 166590, 16659); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270003558, 'dawn', 2, 2285, 2285, 2285, 68560, 6856); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270003559, 'dusk', 3, 2539, 2539, 2539, 76190, 7619); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270003560, 'dawn', 1, 5778, 5778, 5778, 173340, 17334); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270003561, 'dusk', 2, 1796, 1796, 1796, 53880, 5388); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270003562, 'dawn', 3, 1850, 1850, 1850, 55520, 5552); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270003564, 'dusk', 1, 3559, 3559, 3559, 106790, 10679); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270003565, 'dawn', 2, 576, 576, 576, 17290, 1729); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270003566, 'dusk', 3, 443, 443, 443, 13310, 1331); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270003568, 'dawn', 1, 1604, 1604, 1604, 48120, 4812); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270003569, 'dusk', 2, 1874, 1874, 1874, 56240, 5624); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270003570, 'dawn', 3, 5437, 5437, 5437, 163120, 16312); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270003572, 'dusk', 1, 5958, 5958, 5958, 178760, 17876); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270003573, 'dawn', 2, 614, 614, 614, 18440, 1844); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270003574, 'dusk', 3, 800, 800, 800, 24010, 2401); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270003575, 'dawn', 1, 842, 842, 842, 25260, 2526); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270003577, 'dusk', 2, 466, 466, 466, 13990, 1399); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270003578, 'dawn', 3, 1771, 1771, 1771, 53130, 5313); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270003581, 'dusk', 1, 5692, 5692, 5692, 170780, 17078); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270003582, 'dawn', 2, 5372, 5372, 5372, 161170, 16117); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270003583, 'dusk', 3, 1555, 1555, 1555, 46670, 4667); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270003586, 'dawn', 1, 4966, 4966, 4966, 149000, 14900); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270003587, 'dusk', 2, 5421, 5421, 5421, 162640, 16264); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270003588, 'dawn', 3, 3384, 3384, 3384, 101530, 10153); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270003589, 'dusk', 1, 1938, 1938, 1938, 58150, 5815); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270003592, 'dawn', 2, 2641, 2641, 2641, 79230, 7923); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270003593, 'dusk', 3, 2976, 2976, 2976, 89280, 8928); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270003596, 'dawn', 1, 6458, 6458, 6458, 193760, 19376); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270003598, 'dusk', 2, 4098, 4098, 4098, 122940, 12294); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270003602, 'dawn', 3, 1223, 1223, 1223, 36710, 3671); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270003603, 'dusk', 1, 4349, 4349, 4349, 130490, 13049); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270003604, 'dawn', 2, 2506, 2506, 2506, 75180, 7518); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270003606, 'dusk', 3, 4231, 4231, 4231, 126950, 12695); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270003609, 'dawn', 1, 6391, 6391, 6391, 191740, 19174); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270003613, 'dusk', 2, 259, 259, 259, 7770, 777); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270003614, 'dawn', 3, 3843, 3843, 3843, 115290, 11529); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270003615, 'dusk', 1, 2963, 2963, 2963, 88890, 8889); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270003616, 'dawn', 2, 4631, 4631, 4631, 138930, 13893); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270003617, 'dusk', 3, 649, 649, 649, 19480, 1948); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270003618, 'dawn', 1, 2898, 2898, 2898, 86940, 8694); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270003619, 'dusk', 2, 2468, 2468, 2468, 74050, 7405); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270003620, 'dawn', 3, 486, 486, 486, 14590, 1459); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270003621, 'dusk', 1, 2588, 2588, 2588, 77660, 7766); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270003622, 'dawn', 2, 2962, 2962, 2962, 88870, 8887); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270003623, 'dusk', 3, 387, 387, 387, 11620, 1162); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270003624, 'dawn', 1, 366, 366, 366, 10980, 1098); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270003625, 'dusk', 2, 900, 900, 900, 27010, 2701); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270003627, 'dawn', 3, 5396, 5396, 5396, 161900, 16190); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270003629, 'dusk', 1, 2304, 2304, 2304, 69130, 6913); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270003630, 'dawn', 2, 5331, 5331, 5331, 159950, 15995); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270003631, 'dusk', 3, 2656, 2656, 2656, 79680, 7968); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270003632, 'dawn', 1, 5933, 5933, 5933, 178000, 17800); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270003633, 'dusk', 2, 6069, 6069, 6069, 182090, 18209); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270003635, 'dawn', 3, 5248, 5248, 5248, 157460, 15746); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270003638, 'dusk', 1, 1594, 1594, 1594, 47820, 4782); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270003641, 'dawn', 2, 1591, 1591, 1591, 47750, 4775); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270003642, 'dusk', 3, 1703, 1703, 1703, 51090, 5109); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270003643, 'dawn', 1, 5608, 5608, 5608, 168240, 16824); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270003644, 'dusk', 2, 1636, 1636, 1636, 49100, 4910); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270003645, 'dawn', 3, 3198, 3198, 3198, 95940, 9594); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270003646, 'dusk', 1, 6053, 6053, 6053, 181600, 18160); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270003647, 'dawn', 2, 180, 180, 180, 5400, 540); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270003648, 'dusk', 3, 2645, 2645, 2645, 79350, 7935); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270003649, 'dawn', 1, 300, 300, 300, 9020, 902); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270003651, 'dusk', 2, 3883, 3883, 3883, 116500, 11650); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270003652, 'dawn', 3, 5398, 5398, 5398, 161960, 16196); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270003653, 'dusk', 1, 3445, 3445, 3445, 103360, 10336); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270003654, 'dawn', 2, 2321, 2321, 2321, 69650, 6965); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270003655, 'dusk', 3, 1798, 1798, 1798, 53940, 5394); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270003657, 'dawn', 1, 3412, 3412, 3412, 102360, 10236); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270003659, 'dusk', 2, 3766, 3766, 3766, 113000, 11300); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270003660, 'dawn', 3, 1257, 1257, 1257, 37730, 3773); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270003661, 'dusk', 1, 3138, 3138, 3138, 94160, 9416); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270003663, 'dawn', 2, 3061, 3061, 3061, 91830, 9183); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270003665, 'dusk', 3, 2028, 2028, 2028, 60860, 6086); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270003666, 'dawn', 1, 2351, 2351, 2351, 70530, 7053); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270003667, 'dusk', 2, 564, 564, 564, 16920, 1692); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270003668, 'dawn', 3, 3114, 3114, 3114, 93440, 9344); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270003670, 'dusk', 1, 5076, 5076, 5076, 152280, 15228); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270003671, 'dawn', 2, 5912, 5912, 5912, 177370, 17737); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270003673, 'dusk', 3, 5564, 5564, 5564, 166920, 16692); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270003674, 'dawn', 1, 6351, 6351, 6351, 190540, 19054); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270003675, 'dusk', 2, 483, 483, 483, 14490, 1449); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270003677, 'dawn', 3, 1774, 1774, 1774, 53240, 5324); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270003678, 'dusk', 1, 396, 396, 396, 11890, 1189); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270003680, 'dawn', 2, 3885, 3885, 3885, 116560, 11656); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270003685, 'dusk', 3, 6600, 6600, 6600, 198020, 19802); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270003686, 'dawn', 1, 1179, 1179, 1179, 35370, 3537); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270003687, 'dusk', 2, 1593, 1593, 1593, 47800, 4780); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270003688, 'dawn', 3, 3713, 3713, 3713, 111400, 11140); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270003689, 'dusk', 1, 6654, 6654, 6654, 199620, 19962); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270003691, 'dawn', 2, 859, 859, 859, 25790, 2579); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270003692, 'dusk', 3, 6229, 6229, 6229, 186890, 18689); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270003693, 'dawn', 1, 3079, 3079, 3079, 92380, 9238); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270003694, 'dusk', 2, 1795, 1795, 1795, 53850, 5385); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270003695, 'dawn', 3, 953, 953, 953, 28590, 2859); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270003696, 'dusk', 1, 993, 993, 993, 29810, 2981); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270003697, 'dawn', 2, 633, 633, 633, 19000, 1900); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270003698, 'dusk', 3, 6020, 6020, 6020, 180610, 18061); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270003699, 'dawn', 1, 5634, 5634, 5634, 169040, 16904); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270003700, 'dusk', 2, 6540, 6540, 6540, 196210, 19621); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270003702, 'dawn', 3, 972, 972, 972, 29170, 2917); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270003703, 'dusk', 1, 386, 386, 386, 11590, 1159); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270003704, 'dawn', 2, 4357, 4357, 4357, 130730, 13073); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270003705, 'dusk', 3, 6510, 6510, 6510, 195300, 19530); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270003706, 'dawn', 1, 755, 755, 755, 22670, 2267); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270003708, 'dusk', 2, 5084, 5084, 5084, 152530, 15253); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270003709, 'dawn', 3, 6304, 6304, 6304, 189120, 18912); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270003710, 'dusk', 1, 638, 638, 638, 19160, 1916); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270003711, 'dawn', 2, 2181, 2181, 2181, 65440, 6544); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270003712, 'dusk', 3, 3065, 3065, 3065, 91970, 9197); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270003713, 'dawn', 1, 2270, 2270, 2270, 68120, 6812); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270003715, 'dusk', 2, 2714, 2714, 2714, 81440, 8144); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270003716, 'dawn', 3, 5415, 5415, 5415, 162470, 16247); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270003718, 'dusk', 1, 1458, 1458, 1458, 43760, 4376); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270003719, 'dawn', 2, 143, 143, 143, 4290, 429); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270003720, 'dusk', 3, 548, 548, 548, 16450, 1645); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270003721, 'dawn', 1, 5370, 5370, 5370, 161120, 16112); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270003723, 'dusk', 2, 771, 771, 771, 23130, 2313); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270003725, 'dawn', 3, 1473, 1473, 1473, 44200, 4420); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270003726, 'dusk', 1, 4478, 4478, 4478, 134340, 13434); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270003727, 'dawn', 2, 2027, 2027, 2027, 60810, 6081); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270003729, 'dusk', 3, 2881, 2881, 2881, 86440, 8644); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270003730, 'dawn', 1, 3853, 3853, 3853, 115600, 11560); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270003731, 'dusk', 2, 426, 426, 426, 12780, 1278); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270003732, 'dawn', 3, 1651, 1651, 1651, 49530, 4953); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270003733, 'dusk', 1, 4848, 4848, 4848, 145450, 14545); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270003735, 'dawn', 2, 4018, 4018, 4018, 120560, 12056); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270003736, 'dusk', 3, 4722, 4722, 4722, 141680, 14168); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270003737, 'dawn', 1, 6001, 6001, 6001, 180050, 18005); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270003738, 'dusk', 2, 6034, 6034, 6034, 181040, 18104); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270003739, 'dawn', 3, 1389, 1389, 1389, 41670, 4167); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270003742, 'dusk', 1, 278, 278, 278, 8350, 835); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270003745, 'dawn', 2, 4605, 4605, 4605, 138150, 13815); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270003746, 'dusk', 3, 2956, 2956, 2956, 88690, 8869); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270003748, 'dawn', 1, 126, 126, 126, 3800, 380); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270003750, 'dusk', 2, 6020, 6020, 6020, 180610, 18061); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270003752, 'dawn', 3, 3299, 3299, 3299, 98980, 9898); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270003753, 'dusk', 1, 40, 40, 40, 1220, 122); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270003754, 'dawn', 2, 989, 989, 989, 29680, 2968); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270003756, 'dusk', 3, 3774, 3774, 3774, 113230, 11323); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270003757, 'dawn', 1, 1842, 1842, 1842, 55280, 5528); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270003759, 'dusk', 2, 2364, 2364, 2364, 70930, 7093); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270003761, 'dawn', 3, 292, 292, 292, 8760, 876); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270003762, 'dusk', 1, 5437, 5437, 5437, 163130, 16313); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270003764, 'dawn', 2, 3277, 3277, 3277, 98320, 9832); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270003765, 'dusk', 3, 241, 241, 241, 7240, 724); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270003766, 'dawn', 1, 214, 214, 214, 6430, 643); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270003767, 'dusk', 2, 275, 275, 275, 8250, 825); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270003768, 'dawn', 3, 409, 409, 409, 12290, 1229); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270003769, 'dusk', 1, 1199, 1199, 1199, 35990, 3599); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270003770, 'dawn', 2, 4184, 4184, 4184, 125530, 12553); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270003772, 'dusk', 3, 2981, 2981, 2981, 89450, 8945); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270003773, 'dawn', 1, 5057, 5057, 5057, 151720, 15172); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270003776, 'dusk', 2, 5413, 5413, 5413, 162390, 16239); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270003777, 'dawn', 3, 6168, 6168, 6168, 185060, 18506); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270003778, 'dusk', 1, 3891, 3891, 3891, 116730, 11673); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270003779, 'dawn', 2, 2483, 2483, 2483, 74510, 7451); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270003780, 'dusk', 3, 4769, 4769, 4769, 143080, 14308); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270003781, 'dawn', 1, 1536, 1536, 1536, 46080, 4608); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270003783, 'dusk', 2, 4639, 4639, 4639, 139190, 13919); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270003784, 'dawn', 3, 4757, 4757, 4757, 142730, 14273); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270003787, 'dusk', 1, 281, 281, 281, 8450, 845); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270003789, 'dawn', 2, 729, 729, 729, 21870, 2187); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270003790, 'dusk', 3, 2724, 2724, 2724, 81730, 8173); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270003792, 'dawn', 1, 4738, 4738, 4738, 142160, 14216); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270003793, 'dusk', 2, 4322, 4322, 4322, 129680, 12968); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270003794, 'dawn', 3, 3639, 3639, 3639, 109190, 10919); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270003795, 'dusk', 1, 4304, 4304, 4304, 129130, 12913); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270003796, 'dawn', 2, 1722, 1722, 1722, 51660, 5166); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270003797, 'dusk', 3, 3610, 3610, 3610, 108320, 10832); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270003798, 'dawn', 1, 4946, 4946, 4946, 148400, 14840); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270003799, 'dusk', 2, 940, 940, 940, 28220, 2822); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270003800, 'dawn', 3, 962, 962, 962, 28870, 2887); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270003802, 'dusk', 1, 2054, 2054, 2054, 61620, 6162); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270003803, 'dawn', 2, 1332, 1332, 1332, 39980, 3998); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270003806, 'dusk', 3, 3800, 3800, 3800, 114000, 11400); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270003807, 'dawn', 1, 2396, 2396, 2396, 71890, 7189); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270003809, 'dusk', 2, 6568, 6568, 6568, 197040, 19704); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270003810, 'dawn', 3, 1914, 1914, 1914, 57430, 5743); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270003812, 'dusk', 1, 4126, 4126, 4126, 123800, 12380); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270003813, 'dawn', 2, 1869, 1869, 1869, 56090, 5609); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270003816, 'dusk', 3, 3908, 3908, 3908, 117250, 11725); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270003817, 'dawn', 1, 678, 678, 678, 20350, 2035); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270003818, 'dusk', 2, 1755, 1755, 1755, 52670, 5267); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270003819, 'dawn', 3, 6406, 6406, 6406, 192180, 19218); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270003821, 'dusk', 1, 4181, 4181, 4181, 125440, 12544); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270003823, 'dawn', 2, 1662, 1662, 1662, 49870, 4987); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270003825, 'dusk', 3, 1873, 1873, 1873, 56190, 5619); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270003826, 'dawn', 1, 2352, 2352, 2352, 70560, 7056); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270003827, 'dusk', 2, 6281, 6281, 6281, 188450, 18845); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270003829, 'dawn', 3, 2387, 2387, 2387, 71610, 7161); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270003830, 'dusk', 1, 909, 909, 909, 27290, 2729); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270003831, 'dawn', 2, 4648, 4648, 4648, 139450, 13945); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270003832, 'dusk', 3, 214, 214, 214, 6420, 642); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270003834, 'dawn', 1, 5870, 5870, 5870, 176110, 17611); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270003835, 'dusk', 2, 2133, 2133, 2133, 64000, 6400); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270003836, 'dawn', 3, 5716, 5716, 5716, 171490, 17149); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270003837, 'dusk', 1, 2266, 2266, 2266, 67990, 6799); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270003838, 'dawn', 2, 4844, 4844, 4844, 145340, 14534); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270003839, 'dusk', 3, 1043, 1043, 1043, 31310, 3131); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270003840, 'dawn', 1, 5675, 5675, 5675, 170260, 17026); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270003841, 'dusk', 2, 2907, 2907, 2907, 87210, 8721); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270003842, 'dawn', 3, 4160, 4160, 4160, 124810, 12481); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270003843, 'dusk', 1, 3028, 3028, 3028, 90840, 9084); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270003844, 'dawn', 2, 2661, 2661, 2661, 79840, 7984); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270003847, 'dusk', 3, 2276, 2276, 2276, 68280, 6828); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270003848, 'dawn', 1, 1061, 1061, 1061, 31830, 3183); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270003849, 'dusk', 2, 1057, 1057, 1057, 31710, 3171); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270003850, 'dawn', 3, 1964, 1964, 1964, 58920, 5892); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270003851, 'dusk', 1, 1068, 1068, 1068, 32040, 3204); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270003853, 'dawn', 2, 4876, 4876, 4876, 146280, 14628); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270003854, 'dusk', 3, 5467, 5467, 5467, 164030, 16403); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270003855, 'dawn', 1, 4467, 4467, 4467, 134020, 13402); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270003856, 'dusk', 2, 4236, 4236, 4236, 127080, 12708); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270003857, 'dawn', 3, 3374, 3374, 3374, 101220, 10122); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270003859, 'dusk', 1, 4255, 4255, 4255, 127670, 12767); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270003860, 'dawn', 2, 3904, 3904, 3904, 117130, 11713); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270003862, 'dusk', 3, 4364, 4364, 4364, 130920, 13092); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270003864, 'dawn', 1, 4188, 4188, 4188, 125660, 12566); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270003865, 'dusk', 2, 5435, 5435, 5435, 163050, 16305); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270003866, 'dawn', 3, 2127, 2127, 2127, 63810, 6381); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270003867, 'dusk', 1, 1030, 1030, 1030, 30910, 3091); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270003869, 'dawn', 2, 2610, 2610, 2610, 78310, 7831); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270003872, 'dusk', 3, 2751, 2751, 2751, 82550, 8255); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270003874, 'dawn', 1, 3871, 3871, 3871, 116130, 11613); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270003875, 'dusk', 2, 964, 964, 964, 28920, 2892); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270003876, 'dawn', 3, 3858, 3858, 3858, 115750, 11575); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270003878, 'dusk', 1, 2857, 2857, 2857, 85720, 8572); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270003879, 'dawn', 2, 5276, 5276, 5276, 158290, 15829); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270003881, 'dusk', 3, 659, 659, 659, 19780, 1978); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270003882, 'dawn', 1, 3518, 3518, 3518, 105560, 10556); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270003883, 'dusk', 2, 4678, 4678, 4678, 140360, 14036); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270003885, 'dawn', 3, 6650, 6650, 6650, 199510, 19951); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270003886, 'dusk', 1, 6037, 6037, 6037, 181110, 18111); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270003887, 'dawn', 2, 4477, 4477, 4477, 134330, 13433); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270003889, 'dusk', 3, 2276, 2276, 2276, 68290, 6829); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270003890, 'dawn', 1, 6353, 6353, 6353, 190590, 19059); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270003891, 'dusk', 2, 977, 977, 977, 29320, 2932); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270003892, 'dawn', 3, 5186, 5186, 5186, 155600, 15560); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270003896, 'dusk', 1, 2775, 2775, 2775, 83250, 8325); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270003898, 'dawn', 2, 5411, 5411, 5411, 162350, 16235); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270003899, 'dusk', 3, 4557, 4557, 4557, 136720, 13672); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270003900, 'dawn', 1, 5175, 5175, 5175, 155250, 15525); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270003901, 'dusk', 2, 2249, 2249, 2249, 67470, 6747); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270003902, 'dawn', 3, 404, 404, 404, 12140, 1214); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270003903, 'dusk', 1, 4050, 4050, 4050, 121500, 12150); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270003904, 'dawn', 2, 1093, 1093, 1093, 32810, 3281); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270003906, 'dusk', 3, 5844, 5844, 5844, 175320, 17532); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270003907, 'dawn', 1, 4350, 4350, 4350, 130500, 13050); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270003908, 'dusk', 2, 1364, 1364, 1364, 40920, 4092); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270003910, 'dawn', 3, 4616, 4616, 4616, 138500, 13850); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270003911, 'dusk', 1, 3082, 3082, 3082, 92460, 9246); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270003914, 'dawn', 2, 2741, 2741, 2741, 82230, 8223); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270003915, 'dusk', 3, 2909, 2909, 2909, 87270, 8727); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270003917, 'dawn', 1, 707, 707, 707, 21210, 2121); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270003918, 'dusk', 2, 5338, 5338, 5338, 160150, 16015); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270003919, 'dawn', 3, 3271, 3271, 3271, 98140, 9814); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270003920, 'dusk', 1, 5540, 5540, 5540, 166220, 16622); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270003921, 'dawn', 2, 2212, 2212, 2212, 66360, 6636); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270003922, 'dusk', 3, 284, 284, 284, 8520, 852); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270003923, 'dawn', 1, 5662, 5662, 5662, 169870, 16987); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270003924, 'dusk', 2, 3673, 3673, 3673, 110190, 11019); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270003925, 'dawn', 3, 4290, 4290, 4290, 128710, 12871); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270003926, 'dusk', 1, 3229, 3229, 3229, 96890, 9689); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270003927, 'dawn', 2, 5287, 5287, 5287, 158620, 15862); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270003929, 'dusk', 3, 6616, 6616, 6616, 198500, 19850); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270003930, 'dawn', 1, 6360, 6360, 6360, 190800, 19080); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270003931, 'dusk', 2, 1407, 1407, 1407, 42210, 4221); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270003932, 'dawn', 3, 6154, 6154, 6154, 184640, 18464); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270003933, 'dusk', 1, 2477, 2477, 2477, 74310, 7431); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270003934, 'dawn', 2, 655, 655, 655, 19650, 1965); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270003936, 'dusk', 3, 6626, 6626, 6626, 198780, 19878); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270003939, 'dawn', 1, 1773, 1773, 1773, 53210, 5321); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270003940, 'dusk', 2, 5427, 5427, 5427, 162810, 16281); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270003943, 'dawn', 3, 2363, 2363, 2363, 70910, 7091); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270003945, 'dusk', 1, 696, 696, 696, 20880, 2088); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270003946, 'dawn', 2, 2518, 2518, 2518, 75550, 7555); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270003947, 'dusk', 3, 1371, 1371, 1371, 41140, 4114); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270003949, 'dawn', 1, 6475, 6475, 6475, 194260, 19426); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270003950, 'dusk', 2, 2996, 2996, 2996, 89880, 8988); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270003951, 'dawn', 3, 1585, 1585, 1585, 47560, 4756); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270003952, 'dusk', 1, 2098, 2098, 2098, 62940, 6294); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270003954, 'dawn', 2, 5063, 5063, 5063, 151890, 15189); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270003955, 'dusk', 3, 5466, 5466, 5466, 163980, 16398); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270003958, 'dawn', 1, 5594, 5594, 5594, 167820, 16782); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270003960, 'dusk', 2, 4923, 4923, 4923, 147710, 14771); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270003961, 'dawn', 3, 6135, 6135, 6135, 184060, 18406); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270003962, 'dusk', 1, 5020, 5020, 5020, 150620, 15062); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270003963, 'dawn', 2, 3825, 3825, 3825, 114760, 11476); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270003965, 'dusk', 3, 3406, 3406, 3406, 102180, 10218); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270003966, 'dawn', 1, 631, 631, 631, 18930, 1893); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270003968, 'dusk', 2, 3130, 3130, 3130, 93910, 9391); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270003970, 'dawn', 3, 2043, 2043, 2043, 61310, 6131); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270003971, 'dusk', 1, 583, 583, 583, 17500, 1750); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270003972, 'dawn', 2, 2547, 2547, 2547, 76420, 7642); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270003973, 'dusk', 3, 104, 104, 104, 3120, 312); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270003974, 'dawn', 1, 2239, 2239, 2239, 67180, 6718); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270003975, 'dusk', 2, 4975, 4975, 4975, 149250, 14925); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270003976, 'dawn', 3, 2800, 2800, 2800, 84010, 8401); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270003977, 'dusk', 1, 3379, 3379, 3379, 101390, 10139); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270003978, 'dawn', 2, 3742, 3742, 3742, 112280, 11228); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270003979, 'dusk', 3, 4360, 4360, 4360, 130810, 13081); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270003981, 'dawn', 1, 6079, 6079, 6079, 182380, 18238); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270003983, 'dusk', 2, 383, 383, 383, 11500, 1150); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270003985, 'dawn', 3, 4981, 4981, 4981, 149430, 14943); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270003987, 'dusk', 1, 3565, 3565, 3565, 106970, 10697); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270003988, 'dawn', 2, 1249, 1249, 1249, 37490, 3749); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270003989, 'dusk', 3, 5103, 5103, 5103, 153100, 15310); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270003991, 'dawn', 1, 5400, 5400, 5400, 162020, 16202); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270003993, 'dusk', 2, 4828, 4828, 4828, 144860, 14486); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270003995, 'dawn', 3, 5492, 5492, 5492, 164760, 16476); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270003997, 'dusk', 1, 266, 266, 266, 7990, 799); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270003999, 'dawn', 2, 422, 422, 422, 12660, 1266); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270004000, 'dusk', 3, 3166, 3166, 3166, 94980, 9498); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270004001, 'dawn', 1, 1481, 1481, 1481, 44440, 4444); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270004002, 'dusk', 2, 254, 254, 254, 7620, 762); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270004003, 'dawn', 3, 5591, 5591, 5591, 167740, 16774); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270004004, 'dusk', 1, 1854, 1854, 1854, 55630, 5563); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270004005, 'dawn', 2, 2020, 2020, 2020, 60620, 6062); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270004007, 'dusk', 3, 4244, 4244, 4244, 127340, 12734); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270004010, 'dawn', 1, 3145, 3145, 3145, 94370, 9437); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270004012, 'dusk', 2, 1766, 1766, 1766, 52990, 5299); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270004015, 'dawn', 3, 1390, 1390, 1390, 41700, 4170); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270004016, 'dusk', 1, 1379, 1379, 1379, 41370, 4137); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270004017, 'dawn', 2, 4240, 4240, 4240, 127210, 12721); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270004018, 'dusk', 3, 2089, 2089, 2089, 62680, 6268); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270004019, 'dawn', 1, 3491, 3491, 3491, 104730, 10473); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270004020, 'dusk', 2, 6264, 6264, 6264, 187930, 18793); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270004022, 'dawn', 3, 1144, 1144, 1144, 34330, 3433); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270004023, 'dusk', 1, 5361, 5361, 5361, 160840, 16084); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270004024, 'dawn', 2, 1306, 1306, 1306, 39180, 3918); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270004025, 'dusk', 3, 4566, 4566, 4566, 136990, 13699); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270004026, 'dawn', 1, 5276, 5276, 5276, 158290, 15829); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270004027, 'dusk', 2, 4147, 4147, 4147, 124430, 12443); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270004029, 'dawn', 3, 873, 873, 873, 26210, 2621); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270004030, 'dusk', 1, 2096, 2096, 2096, 62890, 6289); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270004031, 'dawn', 2, 397, 397, 397, 11910, 1191); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270004032, 'dusk', 3, 3839, 3839, 3839, 115170, 11517); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270004036, 'dawn', 1, 444, 444, 444, 13330, 1333); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270004037, 'dusk', 2, 4758, 4758, 4758, 142760, 14276); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270004039, 'dawn', 3, 3928, 3928, 3928, 117860, 11786); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270004041, 'dusk', 1, 3111, 3111, 3111, 93350, 9335); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270004042, 'dawn', 2, 3322, 3322, 3322, 99660, 9966); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270004043, 'dusk', 3, 4368, 4368, 4368, 131040, 13104); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270004045, 'dawn', 1, 3403, 3403, 3403, 102100, 10210); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270004046, 'dusk', 2, 5146, 5146, 5146, 154400, 15440); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270004048, 'dawn', 3, 2881, 2881, 2881, 86450, 8645); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270004053, 'dusk', 1, 2984, 2984, 2984, 89530, 8953); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270004054, 'dawn', 2, 2452, 2452, 2452, 73580, 7358); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270004055, 'dusk', 3, 5808, 5808, 5808, 174240, 17424); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270004056, 'dawn', 1, 405, 405, 405, 12150, 1215); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270004059, 'dusk', 2, 6350, 6350, 6350, 190520, 19052); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270004061, 'dawn', 3, 6262, 6262, 6262, 187880, 18788); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270004062, 'dusk', 1, 788, 788, 788, 23660, 2366); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270004066, 'dawn', 2, 2642, 2642, 2642, 79280, 7928); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270004067, 'dusk', 3, 3306, 3306, 3306, 99200, 9920); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270004068, 'dawn', 1, 4444, 4444, 4444, 133330, 13333); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270004069, 'dusk', 2, 3996, 3996, 3996, 119900, 11990); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270004070, 'dawn', 3, 739, 739, 739, 22180, 2218); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270004071, 'dusk', 1, 1423, 1423, 1423, 42700, 4270); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270004073, 'dawn', 2, 137, 137, 137, 4110, 411); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270004074, 'dusk', 3, 4845, 4845, 4845, 145350, 14535); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270004075, 'dawn', 1, 6485, 6485, 6485, 194550, 19455); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270004076, 'dusk', 2, 3982, 3982, 3982, 119460, 11946); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270004077, 'dawn', 3, 5556, 5556, 5556, 166690, 16669); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270004078, 'dusk', 1, 4020, 4020, 4020, 120620, 12062); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270004079, 'dawn', 2, 500, 500, 500, 15020, 1502); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270004080, 'dusk', 3, 3206, 3206, 3206, 96200, 9620); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270004081, 'dawn', 1, 1486, 1486, 1486, 44600, 4460); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270004082, 'dusk', 2, 5513, 5513, 5513, 165400, 16540); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270004084, 'dawn', 3, 3946, 3946, 3946, 118380, 11838); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270004086, 'dusk', 1, 5167, 5167, 5167, 155020, 15502); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270004087, 'dawn', 2, 4745, 4745, 4745, 142350, 14235); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270004089, 'dusk', 3, 1442, 1442, 1442, 43280, 4328); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270004091, 'dawn', 1, 2044, 2044, 2044, 61330, 6133); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270004093, 'dusk', 2, 5915, 5915, 5915, 177470, 17747); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270004094, 'dawn', 3, 326, 326, 326, 9800, 980); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270004096, 'dusk', 1, 5512, 5512, 5512, 165360, 16536); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270004097, 'dawn', 2, 5751, 5751, 5751, 172540, 17254); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270004098, 'dusk', 3, 1967, 1967, 1967, 59010, 5901); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270004099, 'dawn', 1, 6001, 6001, 6001, 180050, 18005); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270004101, 'dusk', 2, 3695, 3695, 3695, 110850, 11085); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270004103, 'dawn', 3, 4594, 4594, 4594, 137820, 13782); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270004106, 'dusk', 1, 6337, 6337, 6337, 190110, 19011); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270004107, 'dawn', 2, 2701, 2701, 2701, 81030, 8103); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270004109, 'dusk', 3, 5975, 5975, 5975, 179250, 17925); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270004110, 'dawn', 1, 2301, 2301, 2301, 69050, 6905); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270004112, 'dusk', 2, 3040, 3040, 3040, 91210, 9121); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270004113, 'dawn', 3, 5088, 5088, 5088, 152660, 15266); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270004114, 'dusk', 1, 4714, 4714, 4714, 141420, 14142); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270004115, 'dawn', 2, 690, 690, 690, 20710, 2071); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270004116, 'dusk', 3, 2222, 2222, 2222, 66660, 6666); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270004117, 'dawn', 1, 3802, 3802, 3802, 114070, 11407); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270004119, 'dusk', 2, 5354, 5354, 5354, 160630, 16063); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270004120, 'dawn', 3, 1500, 1500, 1500, 45010, 4501); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270004121, 'dusk', 1, 3362, 3362, 3362, 100860, 10086); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270004124, 'dawn', 2, 4757, 4757, 4757, 142710, 14271); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270004126, 'dusk', 3, 3312, 3312, 3312, 99370, 9937); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270004127, 'dawn', 1, 578, 578, 578, 17340, 1734); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270004129, 'dusk', 2, 6212, 6212, 6212, 186360, 18636); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270004130, 'dawn', 3, 5120, 5120, 5120, 153620, 15362); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270004131, 'dusk', 1, 6537, 6537, 6537, 196110, 19611); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270004132, 'dawn', 2, 1852, 1852, 1852, 55570, 5557); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270004133, 'dusk', 3, 1134, 1134, 1134, 34030, 3403); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270004134, 'dawn', 1, 513, 513, 513, 15400, 1540); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270004135, 'dusk', 2, 4458, 4458, 4458, 133740, 13374); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270004136, 'dawn', 3, 3464, 3464, 3464, 103930, 10393); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270004137, 'dusk', 1, 5816, 5816, 5816, 174500, 17450); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270004138, 'dawn', 2, 6449, 6449, 6449, 193490, 19349); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270004140, 'dusk', 3, 2960, 2960, 2960, 88800, 8880); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270004141, 'dawn', 1, 921, 921, 921, 27650, 2765); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270004142, 'dusk', 2, 3372, 3372, 3372, 101170, 10117); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270004144, 'dawn', 3, 683, 683, 683, 20500, 2050); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270004145, 'dusk', 1, 425, 425, 425, 12750, 1275); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270004146, 'dawn', 2, 4060, 4060, 4060, 121820, 12182); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270004148, 'dusk', 3, 115, 115, 115, 3460, 346); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270004150, 'dawn', 1, 935, 935, 935, 28050, 2805); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270004151, 'dusk', 2, 1898, 1898, 1898, 56950, 5695); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270004153, 'dawn', 3, 2800, 2800, 2800, 84020, 8402); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270004154, 'dusk', 1, 3550, 3550, 3550, 106510, 10651); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270004155, 'dawn', 2, 3413, 3413, 3413, 102410, 10241); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270004156, 'dusk', 3, 4118, 4118, 4118, 123540, 12354); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270004157, 'dawn', 1, 1246, 1246, 1246, 37400, 3740); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270004158, 'dusk', 2, 5932, 5932, 5932, 177980, 17798); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270004159, 'dawn', 3, 3768, 3768, 3768, 113050, 11305); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270004161, 'dusk', 1, 4281, 4281, 4281, 128450, 12845); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270004162, 'dawn', 2, 3489, 3489, 3489, 104680, 10468); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270004163, 'dusk', 3, 956, 956, 956, 28690, 2869); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270004167, 'dawn', 1, 1971, 1971, 1971, 59130, 5913); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270004168, 'dusk', 2, 1954, 1954, 1954, 58630, 5863); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270004169, 'dawn', 3, 4260, 4260, 4260, 127800, 12780); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270004170, 'dusk', 1, 3633, 3633, 3633, 109010, 10901); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270004171, 'dawn', 2, 5768, 5768, 5768, 173060, 17306); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270004173, 'dusk', 3, 1008, 1008, 1008, 30240, 3024); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270004174, 'dawn', 1, 3505, 3505, 3505, 105170, 10517); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270004175, 'dusk', 2, 3191, 3191, 3191, 95740, 9574); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270004179, 'dawn', 3, 980, 980, 980, 29420, 2942); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270004180, 'dusk', 1, 3891, 3891, 3891, 116740, 11674); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270004181, 'dawn', 2, 1806, 1806, 1806, 54190, 5419); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270004182, 'dusk', 3, 4712, 4712, 4712, 141370, 14137); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270004183, 'dawn', 1, 278, 278, 278, 8340, 834); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270004185, 'dusk', 2, 4395, 4395, 4395, 131870, 13187); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270004186, 'dawn', 3, 3412, 3412, 3412, 102380, 10238); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270004191, 'dusk', 1, 3773, 3773, 3773, 113190, 11319); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270004192, 'dawn', 2, 2903, 2903, 2903, 87100, 8710); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270004193, 'dusk', 3, 4561, 4561, 4561, 136830, 13683); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270004194, 'dawn', 1, 4175, 4175, 4175, 125250, 12525); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270004195, 'dusk', 2, 2617, 2617, 2617, 78510, 7851); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270004197, 'dawn', 3, 1581, 1581, 1581, 47440, 4744); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270004198, 'dusk', 1, 2773, 2773, 2773, 83190, 8319); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270004200, 'dawn', 2, 2867, 2867, 2867, 86010, 8601); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270004201, 'dusk', 3, 296, 296, 296, 8880, 888); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270004202, 'dawn', 1, 6114, 6114, 6114, 183430, 18343); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270004204, 'dusk', 2, 1840, 1840, 1840, 55200, 5520); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270004207, 'dawn', 3, 2356, 2356, 2356, 70680, 7068); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270004210, 'dusk', 1, 710, 710, 710, 21320, 2132); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270004213, 'dawn', 2, 4308, 4308, 4308, 129250, 12925); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270004214, 'dusk', 3, 5893, 5893, 5893, 176800, 17680); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270004215, 'dawn', 1, 2363, 2363, 2363, 70890, 7089); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270004216, 'dusk', 2, 103, 103, 103, 3090, 309); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270004217, 'dawn', 3, 2903, 2903, 2903, 87100, 8710); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270004218, 'dusk', 1, 2930, 2930, 2930, 87900, 8790); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270004219, 'dawn', 2, 5647, 5647, 5647, 169420, 16942); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270004223, 'dusk', 3, 4322, 4322, 4322, 129670, 12967); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270004224, 'dawn', 1, 2928, 2928, 2928, 87840, 8784); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270004225, 'dusk', 2, 5892, 5892, 5892, 176760, 17676); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270004226, 'dawn', 3, 5704, 5704, 5704, 171120, 17112); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270004228, 'dusk', 1, 6248, 6248, 6248, 187450, 18745); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270004230, 'dawn', 2, 1698, 1698, 1698, 50950, 5095); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270004231, 'dusk', 3, 3648, 3648, 3648, 109460, 10946); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270004232, 'dawn', 1, 4479, 4479, 4479, 134380, 13438); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270004236, 'dusk', 2, 3414, 3414, 3414, 102440, 10244); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270004237, 'dawn', 3, 3176, 3176, 3176, 95280, 9528); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270004238, 'dusk', 1, 419, 419, 419, 12580, 1258); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270004239, 'dawn', 2, 1206, 1206, 1206, 36190, 3619); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270004241, 'dusk', 3, 100, 100, 100, 3020, 302); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270004242, 'dawn', 1, 2451, 2451, 2451, 73550, 7355); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270004244, 'dusk', 2, 4596, 4596, 4596, 137880, 13788); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270004245, 'dawn', 3, 1636, 1636, 1636, 49100, 4910); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270004247, 'dusk', 1, 4311, 4311, 4311, 129340, 12934); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270004249, 'dawn', 2, 4697, 4697, 4697, 140920, 14092); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270004250, 'dusk', 3, 5773, 5773, 5773, 173200, 17320); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270004252, 'dawn', 1, 2585, 2585, 2585, 77550, 7755); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270004253, 'dusk', 2, 4073, 4073, 4073, 122210, 12221); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270004255, 'dawn', 3, 1168, 1168, 1168, 35060, 3506); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270004256, 'dusk', 1, 852, 852, 852, 25570, 2557); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270004257, 'dawn', 2, 2941, 2941, 2941, 88230, 8823); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270004258, 'dusk', 3, 4163, 4163, 4163, 124900, 12490); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270004259, 'dawn', 1, 395, 395, 395, 11850, 1185); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270004261, 'dusk', 2, 2921, 2921, 2921, 87630, 8763); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270004262, 'dawn', 3, 5479, 5479, 5479, 164380, 16438); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270004263, 'dusk', 1, 4061, 4061, 4061, 121830, 12183); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270004264, 'dawn', 2, 5808, 5808, 5808, 174250, 17425); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270004265, 'dusk', 3, 4039, 4039, 4039, 121170, 12117); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270004266, 'dawn', 1, 6645, 6645, 6645, 199360, 19936); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270004268, 'dusk', 2, 3425, 3425, 3425, 102760, 10276); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270004269, 'dawn', 3, 4712, 4712, 4712, 141370, 14137); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270004270, 'dusk', 1, 4165, 4165, 4165, 124970, 12497); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270004271, 'dawn', 2, 3246, 3246, 3246, 97400, 9740); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270004272, 'dusk', 3, 378, 378, 378, 11340, 1134); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270004273, 'dawn', 1, 1673, 1673, 1673, 50200, 5020); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270004274, 'dusk', 2, 223, 223, 223, 6690, 669); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270004277, 'dawn', 3, 4694, 4694, 4694, 140830, 14083); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270004279, 'dusk', 1, 4756, 4756, 4756, 142690, 14269); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270004280, 'dawn', 2, 178, 178, 178, 5340, 534); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270004281, 'dusk', 3, 1449, 1449, 1449, 43490, 4349); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270004282, 'dawn', 1, 6615, 6615, 6615, 198460, 19846); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270004284, 'dusk', 2, 5269, 5269, 5269, 158080, 15808); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270004286, 'dawn', 3, 5759, 5759, 5759, 172780, 17278); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270004287, 'dusk', 1, 1761, 1761, 1761, 52840, 5284); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270004288, 'dawn', 2, 1920, 1920, 1920, 57600, 5760); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270004289, 'dusk', 3, 1438, 1438, 1438, 43150, 4315); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270004290, 'dawn', 1, 6632, 6632, 6632, 198970, 19897); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270004291, 'dusk', 2, 3837, 3837, 3837, 115120, 11512); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270004292, 'dawn', 3, 3839, 3839, 3839, 115180, 11518); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270004294, 'dusk', 1, 329, 329, 329, 9890, 989); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270004295, 'dawn', 2, 3426, 3426, 3426, 102790, 10279); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270004296, 'dusk', 3, 464, 464, 464, 13920, 1392); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270004297, 'dawn', 1, 4610, 4610, 4610, 138300, 13830); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270004298, 'dusk', 2, 6119, 6119, 6119, 183590, 18359); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270004299, 'dawn', 3, 4291, 4291, 4291, 128730, 12873); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270004300, 'dusk', 1, 479, 479, 479, 14370, 1437); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270004302, 'dawn', 2, 2884, 2884, 2884, 86530, 8653); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270004303, 'dusk', 3, 5823, 5823, 5823, 174700, 17470); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270004304, 'dawn', 1, 4247, 4247, 4247, 127410, 12741); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270004305, 'dusk', 2, 2256, 2256, 2256, 67680, 6768); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270004306, 'dawn', 3, 4994, 4994, 4994, 149840, 14984); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270004307, 'dusk', 1, 4602, 4602, 4602, 138060, 13806); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270004309, 'dawn', 2, 5335, 5335, 5335, 160070, 16007); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270004311, 'dusk', 3, 4814, 4814, 4814, 144420, 14442); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270004312, 'dawn', 1, 3230, 3230, 3230, 96920, 9692); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270004313, 'dusk', 2, 6014, 6014, 6014, 180440, 18044); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270004314, 'dawn', 3, 2559, 2559, 2559, 76780, 7678); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270004315, 'dusk', 1, 2646, 2646, 2646, 79390, 7939); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270004316, 'dawn', 2, 2727, 2727, 2727, 81830, 8183); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270004318, 'dusk', 3, 252, 252, 252, 7570, 757); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270004319, 'dawn', 1, 2837, 2837, 2837, 85120, 8512); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270004320, 'dusk', 2, 905, 905, 905, 27150, 2715); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270004321, 'dawn', 3, 1039, 1039, 1039, 31190, 3119); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270004322, 'dusk', 1, 4747, 4747, 4747, 142410, 14241); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270004324, 'dawn', 2, 4913, 4913, 4913, 147410, 14741); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270004325, 'dusk', 3, 3045, 3045, 3045, 91370, 9137); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270004326, 'dawn', 1, 4767, 4767, 4767, 143030, 14303); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270004327, 'dusk', 2, 4978, 4978, 4978, 149350, 14935); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270004329, 'dawn', 3, 291, 291, 291, 8740, 874); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270004331, 'dusk', 1, 4198, 4198, 4198, 125960, 12596); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270004333, 'dawn', 2, 578, 578, 578, 17350, 1735); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270004334, 'dusk', 3, 4851, 4851, 4851, 145550, 14555); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270004335, 'dawn', 1, 6038, 6038, 6038, 181160, 18116); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270004337, 'dusk', 2, 3818, 3818, 3818, 114560, 11456); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270004338, 'dawn', 3, 4533, 4533, 4533, 135990, 13599); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270004340, 'dusk', 1, 1172, 1172, 1172, 35170, 3517); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270004341, 'dawn', 2, 5874, 5874, 5874, 176240, 17624); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270004342, 'dusk', 3, 4714, 4714, 4714, 141430, 14143); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270004345, 'dawn', 1, 804, 804, 804, 24120, 2412); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270004346, 'dusk', 2, 2365, 2365, 2365, 70960, 7096); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270004349, 'dawn', 3, 5745, 5745, 5745, 172360, 17236); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270004350, 'dusk', 1, 2403, 2403, 2403, 72110, 7211); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270004351, 'dawn', 2, 772, 772, 772, 23180, 2318); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270004352, 'dusk', 3, 2651, 2651, 2651, 79550, 7955); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270004353, 'dawn', 1, 4671, 4671, 4671, 140150, 14015); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270004354, 'dusk', 2, 2249, 2249, 2249, 67470, 6747); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270004356, 'dawn', 3, 5664, 5664, 5664, 169930, 16993); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270004358, 'dusk', 1, 584, 584, 584, 17520, 1752); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270004359, 'dawn', 2, 3737, 3737, 3737, 112130, 11213); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270004361, 'dusk', 3, 4675, 4675, 4675, 140270, 14027); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270004365, 'dawn', 1, 1454, 1454, 1454, 43630, 4363); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270004366, 'dusk', 2, 4227, 4227, 4227, 126820, 12682); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270004369, 'dawn', 3, 5990, 5990, 5990, 179720, 17972); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270004371, 'dusk', 1, 336, 336, 336, 10090, 1009); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270004373, 'dawn', 2, 3200, 3200, 3200, 96010, 9601); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270004375, 'dusk', 3, 825, 825, 825, 24760, 2476); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270004376, 'dawn', 1, 5365, 5365, 5365, 160960, 16096); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270004377, 'dusk', 2, 4723, 4723, 4723, 141710, 14171); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270004378, 'dawn', 3, 2735, 2735, 2735, 82050, 8205); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270004380, 'dusk', 1, 153, 153, 153, 4600, 460); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270004381, 'dawn', 2, 1809, 1809, 1809, 54290, 5429); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270004382, 'dusk', 3, 502, 502, 502, 15060, 1506); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270004384, 'dawn', 1, 4395, 4395, 4395, 131870, 13187); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270004387, 'dusk', 2, 1909, 1909, 1909, 57290, 5729); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270004388, 'dawn', 3, 3079, 3079, 3079, 92390, 9239); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270004389, 'dusk', 1, 1065, 1065, 1065, 31950, 3195); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270004390, 'dawn', 2, 5295, 5295, 5295, 158860, 15886); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270004393, 'dusk', 3, 1291, 1291, 1291, 38730, 3873); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270004394, 'dawn', 1, 3136, 3136, 3136, 94100, 9410); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270004397, 'dusk', 2, 3827, 3827, 3827, 114820, 11482); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270004398, 'dawn', 3, 2172, 2172, 2172, 65170, 6517); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270004402, 'dusk', 1, 1823, 1823, 1823, 54690, 5469); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270004403, 'dawn', 2, 4901, 4901, 4901, 147050, 14705); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270004405, 'dusk', 3, 3037, 3037, 3037, 91130, 9113); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270004407, 'dawn', 1, 373, 373, 373, 11190, 1119); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270004408, 'dusk', 2, 4506, 4506, 4506, 135190, 13519); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270004409, 'dawn', 3, 6331, 6331, 6331, 189940, 18994); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270004410, 'dusk', 1, 1455, 1455, 1455, 43670, 4367); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270004413, 'dawn', 2, 2552, 2552, 2552, 76570, 7657); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270004414, 'dusk', 3, 1395, 1395, 1395, 41870, 4187); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270004416, 'dawn', 1, 5363, 5363, 5363, 160910, 16091); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270004417, 'dusk', 2, 4604, 4604, 4604, 138120, 13812); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270004419, 'dawn', 3, 5837, 5837, 5837, 175130, 17513); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270004422, 'dusk', 1, 3450, 3450, 3450, 103520, 10352); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270004423, 'dawn', 2, 4299, 4299, 4299, 128980, 12898); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270004424, 'dusk', 3, 556, 556, 556, 16680, 1668); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270004426, 'dawn', 1, 918, 918, 918, 27540, 2754); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270004428, 'dusk', 2, 4349, 4349, 4349, 130470, 13047); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270004429, 'dawn', 3, 5518, 5518, 5518, 165550, 16555); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270004431, 'dusk', 1, 6306, 6306, 6306, 189180, 18918); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270004434, 'dawn', 2, 814, 814, 814, 24430, 2443); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270004437, 'dusk', 3, 5024, 5024, 5024, 150740, 15074); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270004439, 'dawn', 1, 2558, 2558, 2558, 76760, 7676); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270004440, 'dusk', 2, 615, 615, 615, 18460, 1846); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270004441, 'dawn', 3, 4604, 4604, 4604, 138130, 13813); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270004442, 'dusk', 1, 2724, 2724, 2724, 81730, 8173); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270004443, 'dawn', 2, 515, 515, 515, 15470, 1547); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270004444, 'dusk', 3, 2858, 2858, 2858, 85750, 8575); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270004445, 'dawn', 1, 5422, 5422, 5422, 162670, 16267); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270004448, 'dusk', 2, 4231, 4231, 4231, 126950, 12695); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270004449, 'dawn', 3, 2250, 2250, 2250, 67520, 6752); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270004450, 'dusk', 1, 5668, 5668, 5668, 170050, 17005); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270004452, 'dawn', 2, 6514, 6514, 6514, 195420, 19542); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270004453, 'dusk', 3, 1260, 1260, 1260, 37810, 3781); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270004454, 'dawn', 1, 1514, 1514, 1514, 45440, 4544); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270004456, 'dusk', 2, 3420, 3420, 3420, 102600, 10260); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270004457, 'dawn', 3, 484, 484, 484, 14540, 1454); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270004458, 'dusk', 1, 1105, 1105, 1105, 33150, 3315); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270004459, 'dawn', 2, 2782, 2782, 2782, 83470, 8347); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270004460, 'dusk', 3, 3921, 3921, 3921, 117640, 11764); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270004461, 'dawn', 1, 2369, 2369, 2369, 71080, 7108); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270004462, 'dusk', 2, 4791, 4791, 4791, 143750, 14375); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270004463, 'dawn', 3, 4664, 4664, 4664, 139940, 13994); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270004464, 'dusk', 1, 4754, 4754, 4754, 142620, 14262); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270004465, 'dawn', 2, 5740, 5740, 5740, 172210, 17221); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270004466, 'dusk', 3, 4919, 4919, 4919, 147570, 14757); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270004467, 'dawn', 1, 1922, 1922, 1922, 57660, 5766); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270004468, 'dusk', 2, 1074, 1074, 1074, 32220, 3222); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270004469, 'dawn', 3, 4236, 4236, 4236, 127100, 12710); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270004470, 'dusk', 1, 2872, 2872, 2872, 86170, 8617); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270004471, 'dawn', 2, 5897, 5897, 5897, 176920, 17692); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270004473, 'dusk', 3, 1537, 1537, 1537, 46120, 4612); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270004474, 'dawn', 1, 4211, 4211, 4211, 126350, 12635); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270004475, 'dusk', 2, 1249, 1249, 1249, 37490, 3749); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270004476, 'dawn', 3, 772, 772, 772, 23160, 2316); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270004478, 'dusk', 1, 3461, 3461, 3461, 103840, 10384); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270004479, 'dawn', 2, 1872, 1872, 1872, 56170, 5617); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270004481, 'dusk', 3, 1548, 1548, 1548, 46440, 4644); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270004482, 'dawn', 1, 4268, 4268, 4268, 128060, 12806); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270004483, 'dusk', 2, 1202, 1202, 1202, 36070, 3607); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270004484, 'dawn', 3, 6642, 6642, 6642, 199270, 19927); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270004485, 'dusk', 1, 800, 800, 800, 24000, 2400); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270004486, 'dawn', 2, 5466, 5466, 5466, 164000, 16400); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270004487, 'dusk', 3, 2402, 2402, 2402, 72070, 7207); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270004489, 'dawn', 1, 5016, 5016, 5016, 150490, 15049); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270004490, 'dusk', 2, 2027, 2027, 2027, 60810, 6081); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270004493, 'dawn', 3, 6004, 6004, 6004, 180130, 18013); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270004494, 'dusk', 1, 2384, 2384, 2384, 71520, 7152); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270004495, 'dawn', 2, 5335, 5335, 5335, 160060, 16006); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270004496, 'dusk', 3, 2289, 2289, 2289, 68690, 6869); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270004497, 'dawn', 1, 1665, 1665, 1665, 49950, 4995); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270004498, 'dusk', 2, 646, 646, 646, 19380, 1938); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270004499, 'dawn', 3, 2461, 2461, 2461, 73840, 7384); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270004500, 'dusk', 1, 4373, 4373, 4373, 131190, 13119); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270004501, 'dawn', 2, 3156, 3156, 3156, 94690, 9469); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270004502, 'dusk', 3, 5349, 5349, 5349, 160480, 16048); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270004503, 'dawn', 1, 1853, 1853, 1853, 55600, 5560); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270004508, 'dusk', 2, 5759, 5759, 5759, 172790, 17279); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270004509, 'dawn', 3, 3371, 3371, 3371, 101150, 10115); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270004510, 'dusk', 1, 2775, 2775, 2775, 83250, 8325); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270004511, 'dawn', 2, 2212, 2212, 2212, 66380, 6638); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270004512, 'dusk', 3, 6493, 6493, 6493, 194800, 19480); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270004513, 'dawn', 1, 1031, 1031, 1031, 30940, 3094); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270004514, 'dusk', 2, 1956, 1956, 1956, 58680, 5868); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270004515, 'dawn', 3, 4525, 4525, 4525, 135760, 13576); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270004516, 'dusk', 1, 2553, 2553, 2553, 76610, 7661); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270004517, 'dawn', 2, 3363, 3363, 3363, 100910, 10091); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270004518, 'dusk', 3, 176, 176, 176, 5300, 530); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270004519, 'dawn', 1, 2592, 2592, 2592, 77770, 7777); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270004522, 'dusk', 2, 4222, 4222, 4222, 126680, 12668); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270004524, 'dawn', 3, 2148, 2148, 2148, 64450, 6445); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270004525, 'dusk', 1, 5887, 5887, 5887, 176630, 17663); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270004529, 'dawn', 2, 3181, 3181, 3181, 95440, 9544); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270004531, 'dusk', 3, 568, 568, 568, 17050, 1705); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270004532, 'dawn', 1, 2353, 2353, 2353, 70590, 7059); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270004534, 'dusk', 2, 4190, 4190, 4190, 125720, 12572); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270004535, 'dawn', 3, 4849, 4849, 4849, 145480, 14548); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270004536, 'dusk', 1, 3510, 3510, 3510, 105310, 10531); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270004539, 'dawn', 2, 3278, 3278, 3278, 98350, 9835); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270004540, 'dusk', 3, 2111, 2111, 2111, 63330, 6333); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270004542, 'dawn', 1, 1849, 1849, 1849, 55470, 5547); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270004543, 'dusk', 2, 4152, 4152, 4152, 124580, 12458); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270004544, 'dawn', 3, 98, 98, 98, 2940, 294); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270004545, 'dusk', 1, 745, 745, 745, 22350, 2235); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270004546, 'dawn', 2, 6615, 6615, 6615, 198450, 19845); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270004547, 'dusk', 3, 2953, 2953, 2953, 88600, 8860); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270004548, 'dawn', 1, 5796, 5796, 5796, 173890, 17389); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270004550, 'dusk', 2, 3110, 3110, 3110, 93310, 9331); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270004551, 'dawn', 3, 4136, 4136, 4136, 124080, 12408); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270004552, 'dusk', 1, 5535, 5535, 5535, 166050, 16605); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270004553, 'dawn', 2, 1585, 1585, 1585, 47570, 4757); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270004563, 'dusk', 3, 5529, 5529, 5529, 165880, 16588); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270004564, 'dawn', 1, 1792, 1792, 1792, 53780, 5378); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270004566, 'dusk', 2, 2579, 2579, 2579, 77390, 7739); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270004567, 'dawn', 3, 275, 275, 275, 8270, 827); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270004568, 'dusk', 1, 6278, 6278, 6278, 188340, 18834); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270004569, 'dawn', 2, 4032, 4032, 4032, 120980, 12098); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270004570, 'dusk', 3, 825, 825, 825, 24750, 2475); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270004571, 'dawn', 1, 4016, 4016, 4016, 120490, 12049); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270004572, 'dusk', 2, 2011, 2011, 2011, 60340, 6034); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270004573, 'dawn', 3, 6459, 6459, 6459, 193770, 19377); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270004574, 'dusk', 1, 5582, 5582, 5582, 167480, 16748); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270004575, 'dawn', 2, 4676, 4676, 4676, 140280, 14028); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270004576, 'dusk', 3, 1035, 1035, 1035, 31060, 3106); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270004577, 'dawn', 1, 162, 162, 162, 4880, 488); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270004578, 'dusk', 2, 3599, 3599, 3599, 107980, 10798); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270004579, 'dawn', 3, 3577, 3577, 3577, 107320, 10732); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270004581, 'dusk', 1, 1931, 1931, 1931, 57940, 5794); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270004582, 'dawn', 2, 4833, 4833, 4833, 144990, 14499); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270004583, 'dusk', 3, 5321, 5321, 5321, 159650, 15965); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270004584, 'dawn', 1, 4789, 4789, 4789, 143690, 14369); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270004585, 'dusk', 2, 3120, 3120, 3120, 93600, 9360); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270004588, 'dawn', 3, 4892, 4892, 4892, 146770, 14677); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270004589, 'dusk', 1, 5191, 5191, 5191, 155740, 15574); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270004590, 'dawn', 2, 4435, 4435, 4435, 133050, 13305); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270004591, 'dusk', 3, 3260, 3260, 3260, 97820, 9782); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270004593, 'dawn', 1, 6577, 6577, 6577, 197310, 19731); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270004594, 'dusk', 2, 4515, 4515, 4515, 135460, 13546); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270004595, 'dawn', 3, 3043, 3043, 3043, 91300, 9130); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270004597, 'dusk', 1, 3443, 3443, 3443, 103300, 10330); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270004599, 'dawn', 2, 5892, 5892, 5892, 176770, 17677); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270004600, 'dusk', 3, 6446, 6446, 6446, 193390, 19339); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270004605, 'dawn', 1, 6278, 6278, 6278, 188350, 18835); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270004606, 'dusk', 2, 6305, 6305, 6305, 189170, 18917); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270004607, 'dawn', 3, 5982, 5982, 5982, 179470, 17947); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270004609, 'dusk', 1, 4770, 4770, 4770, 143100, 14310); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270004610, 'dawn', 2, 4084, 4084, 4084, 122530, 12253); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270004611, 'dusk', 3, 3564, 3564, 3564, 106920, 10692); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270004612, 'dawn', 1, 3632, 3632, 3632, 108960, 10896); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270004614, 'dusk', 2, 3590, 3590, 3590, 107720, 10772); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270004615, 'dawn', 3, 230, 230, 230, 6910, 691); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270004616, 'dusk', 1, 5416, 5416, 5416, 162480, 16248); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270004617, 'dawn', 2, 1017, 1017, 1017, 30530, 3053); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270004618, 'dusk', 3, 3574, 3574, 3574, 107240, 10724); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270004619, 'dawn', 1, 2424, 2424, 2424, 72740, 7274); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270004621, 'dusk', 2, 3406, 3406, 3406, 102200, 10220); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270004622, 'dawn', 3, 3762, 3762, 3762, 112880, 11288); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270004623, 'dusk', 1, 6550, 6550, 6550, 196510, 19651); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270004628, 'dawn', 2, 2813, 2813, 2813, 84390, 8439); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270004630, 'dusk', 3, 2233, 2233, 2233, 66990, 6699); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270004631, 'dawn', 1, 4421, 4421, 4421, 132650, 13265); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270004633, 'dusk', 2, 4420, 4420, 4420, 132600, 13260); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270004635, 'dawn', 3, 3860, 3860, 3860, 115820, 11582); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270004636, 'dusk', 1, 4534, 4534, 4534, 136040, 13604); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270004637, 'dawn', 2, 956, 956, 956, 28690, 2869); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270004638, 'dusk', 3, 5107, 5107, 5107, 153220, 15322); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270004639, 'dawn', 1, 719, 719, 719, 21590, 2159); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270004642, 'dusk', 2, 4584, 4584, 4584, 137540, 13754); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270004643, 'dawn', 3, 5498, 5498, 5498, 164940, 16494); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270004644, 'dusk', 1, 2284, 2284, 2284, 68540, 6854); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270004645, 'dawn', 2, 6337, 6337, 6337, 190130, 19013); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270004646, 'dusk', 3, 5559, 5559, 5559, 166780, 16678); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270004647, 'dawn', 1, 2329, 2329, 2329, 69880, 6988); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270004648, 'dusk', 2, 3159, 3159, 3159, 94780, 9478); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270004649, 'dawn', 3, 6268, 6268, 6268, 188060, 18806); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270004650, 'dusk', 1, 5963, 5963, 5963, 178910, 17891); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270004651, 'dawn', 2, 4139, 4139, 4139, 124170, 12417); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270004653, 'dusk', 3, 3372, 3372, 3372, 101170, 10117); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270004654, 'dawn', 1, 3719, 3719, 3719, 111580, 11158); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270004655, 'dusk', 2, 6225, 6225, 6225, 186760, 18676); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270004656, 'dawn', 3, 3166, 3166, 3166, 94980, 9498); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270004657, 'dusk', 1, 3876, 3876, 3876, 116280, 11628); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270004658, 'dawn', 2, 1224, 1224, 1224, 36740, 3674); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270004659, 'dusk', 3, 1961, 1961, 1961, 58830, 5883); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270004660, 'dawn', 1, 2624, 2624, 2624, 78720, 7872); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270004661, 'dusk', 2, 6496, 6496, 6496, 194880, 19488); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270004665, 'dawn', 3, 4549, 4549, 4549, 136490, 13649); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270004667, 'dusk', 1, 4817, 4817, 4817, 144510, 14451); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270004668, 'dawn', 2, 6066, 6066, 6066, 182000, 18200); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270004669, 'dusk', 3, 694, 694, 694, 20830, 2083); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270004670, 'dawn', 1, 257, 257, 257, 7720, 772); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270004672, 'dusk', 2, 6058, 6058, 6058, 181760, 18176); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270004673, 'dawn', 3, 4578, 4578, 4578, 137360, 13736); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270004676, 'dusk', 1, 488, 488, 488, 14640, 1464); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270004677, 'dawn', 2, 3306, 3306, 3306, 99180, 9918); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270004678, 'dusk', 3, 5529, 5529, 5529, 165880, 16588); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270004679, 'dawn', 1, 1207, 1207, 1207, 36230, 3623); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270004680, 'dusk', 2, 3693, 3693, 3693, 110790, 11079); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270004681, 'dawn', 3, 3890, 3890, 3890, 116720, 11672); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270004682, 'dusk', 1, 3081, 3081, 3081, 92450, 9245); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270004685, 'dawn', 2, 4477, 4477, 4477, 134320, 13432); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270004686, 'dusk', 3, 2332, 2332, 2332, 69960, 6996); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270004688, 'dawn', 1, 122, 122, 122, 3670, 367); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270004689, 'dusk', 2, 1998, 1998, 1998, 59960, 5996); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270004691, 'dawn', 3, 2031, 2031, 2031, 60950, 6095); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270004693, 'dusk', 1, 435, 435, 435, 13070, 1307); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270004694, 'dawn', 2, 2786, 2786, 2786, 83580, 8358); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270004695, 'dusk', 3, 5008, 5008, 5008, 150240, 15024); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270004696, 'dawn', 1, 4505, 4505, 4505, 135170, 13517); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270004697, 'dusk', 2, 4036, 4036, 4036, 121100, 12110); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270004698, 'dawn', 3, 5746, 5746, 5746, 172380, 17238); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270004702, 'dusk', 1, 6531, 6531, 6531, 195930, 19593); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270004704, 'dawn', 2, 3739, 3739, 3739, 112180, 11218); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270004705, 'dusk', 3, 405, 405, 405, 12150, 1215); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270004707, 'dawn', 1, 6023, 6023, 6023, 180700, 18070); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270004709, 'dusk', 2, 5783, 5783, 5783, 173490, 17349); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270004710, 'dawn', 3, 3505, 3505, 3505, 105170, 10517); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270004711, 'dusk', 1, 6044, 6044, 6044, 181320, 18132); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270004712, 'dawn', 2, 5168, 5168, 5168, 155050, 15505); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270004713, 'dusk', 3, 3332, 3332, 3332, 99980, 9998); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270004716, 'dawn', 1, 2272, 2272, 2272, 68160, 6816); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270004717, 'dusk', 2, 965, 965, 965, 28960, 2896); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270004718, 'dawn', 3, 3585, 3585, 3585, 107570, 10757); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270004721, 'dusk', 1, 6510, 6510, 6510, 195320, 19532); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270004722, 'dawn', 2, 852, 852, 852, 25570, 2557); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270004723, 'dusk', 3, 4798, 4798, 4798, 143960, 14396); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270004725, 'dawn', 1, 2895, 2895, 2895, 86870, 8687); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270004728, 'dusk', 2, 4918, 4918, 4918, 147560, 14756); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270004729, 'dawn', 3, 5215, 5215, 5215, 156450, 15645); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270004732, 'dusk', 1, 1508, 1508, 1508, 45240, 4524); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270004733, 'dawn', 2, 1583, 1583, 1583, 47500, 4750); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270004734, 'dusk', 3, 5899, 5899, 5899, 176970, 17697); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270004736, 'dawn', 1, 5410, 5410, 5410, 162300, 16230); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270004737, 'dusk', 2, 3121, 3121, 3121, 93650, 9365); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270004742, 'dawn', 3, 4684, 4684, 4684, 140520, 14052); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270004743, 'dusk', 1, 3750, 3750, 3750, 112520, 11252); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270004744, 'dawn', 2, 2683, 2683, 2683, 80500, 8050); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270004745, 'dusk', 3, 2152, 2152, 2152, 64570, 6457); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270004746, 'dawn', 1, 237, 237, 237, 7110, 711); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270004747, 'dusk', 2, 2908, 2908, 2908, 87250, 8725); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270004748, 'dawn', 3, 6407, 6407, 6407, 192210, 19221); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270004750, 'dusk', 1, 5584, 5584, 5584, 167540, 16754); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270004751, 'dawn', 2, 4561, 4561, 4561, 136830, 13683); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270004752, 'dusk', 3, 2068, 2068, 2068, 62040, 6204); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270004753, 'dawn', 1, 3186, 3186, 3186, 95580, 9558); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270004754, 'dusk', 2, 2412, 2412, 2412, 72380, 7238); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270004755, 'dawn', 3, 2464, 2464, 2464, 73940, 7394); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270004756, 'dusk', 1, 5863, 5863, 5863, 175890, 17589); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270004757, 'dawn', 2, 6649, 6649, 6649, 199490, 19949); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270004758, 'dusk', 3, 3996, 3996, 3996, 119900, 11990); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270004759, 'dawn', 1, 6621, 6621, 6621, 198640, 19864); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270004761, 'dusk', 2, 3047, 3047, 3047, 91410, 9141); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270004763, 'dawn', 3, 4032, 4032, 4032, 120960, 12096); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270004764, 'dusk', 1, 4166, 4166, 4166, 124990, 12499); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270004766, 'dawn', 2, 3029, 3029, 3029, 90890, 9089); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270004769, 'dusk', 3, 3962, 3962, 3962, 118870, 11887); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270004770, 'dawn', 1, 4496, 4496, 4496, 134890, 13489); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270004771, 'dusk', 2, 3711, 3711, 3711, 111330, 11133); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270004772, 'dawn', 3, 6254, 6254, 6254, 187640, 18764); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270004774, 'dusk', 1, 4514, 4514, 4514, 135420, 13542); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270004776, 'dawn', 2, 3529, 3529, 3529, 105890, 10589); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270004777, 'dusk', 3, 3220, 3220, 3220, 96620, 9662); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270004778, 'dawn', 1, 4748, 4748, 4748, 142450, 14245); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270004780, 'dusk', 2, 3379, 3379, 3379, 101380, 10138); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270004783, 'dawn', 3, 2043, 2043, 2043, 61300, 6130); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270004784, 'dusk', 1, 3876, 3876, 3876, 116300, 11630); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270004785, 'dawn', 2, 5915, 5915, 5915, 177470, 17747); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270004788, 'dusk', 3, 3788, 3788, 3788, 113660, 11366); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270004789, 'dawn', 1, 829, 829, 829, 24880, 2488); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270004790, 'dusk', 2, 2500, 2500, 2500, 75010, 7501); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270004793, 'dawn', 3, 40, 40, 40, 1210, 121); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270004794, 'dusk', 1, 5180, 5180, 5180, 155420, 15542); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270004795, 'dawn', 2, 5776, 5776, 5776, 173280, 17328); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270004796, 'dusk', 3, 2614, 2614, 2614, 78430, 7843); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270004799, 'dawn', 1, 2770, 2770, 2770, 83100, 8310); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270004800, 'dusk', 2, 2305, 2305, 2305, 69150, 6915); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270004801, 'dawn', 3, 5200, 5200, 5200, 156010, 15601); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270004802, 'dusk', 1, 767, 767, 767, 23010, 2301); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270004803, 'dawn', 2, 1628, 1628, 1628, 48850, 4885); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270004805, 'dusk', 3, 1509, 1509, 1509, 45270, 4527); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270004809, 'dawn', 1, 3318, 3318, 3318, 99560, 9956); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270004810, 'dusk', 2, 1202, 1202, 1202, 36080, 3608); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270004811, 'dawn', 3, 5719, 5719, 5719, 171580, 17158); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270004812, 'dusk', 1, 4262, 4262, 4262, 127880, 12788); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270004813, 'dawn', 2, 4839, 4839, 4839, 145190, 14519); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270004814, 'dusk', 3, 4114, 4114, 4114, 123430, 12343); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270004818, 'dawn', 1, 2698, 2698, 2698, 80940, 8094); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270004819, 'dusk', 2, 2896, 2896, 2896, 86880, 8688); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270004820, 'dawn', 3, 2986, 2986, 2986, 89590, 8959); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270004821, 'dusk', 1, 560, 560, 560, 16810, 1681); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270004822, 'dawn', 2, 1391, 1391, 1391, 41730, 4173); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270004823, 'dusk', 3, 6475, 6475, 6475, 194260, 19426); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270004824, 'dawn', 1, 3852, 3852, 3852, 115580, 11558); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270004825, 'dusk', 2, 3426, 3426, 3426, 102780, 10278); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270004826, 'dawn', 3, 6433, 6433, 6433, 193010, 19301); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270004827, 'dusk', 1, 936, 936, 936, 28100, 2810); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270004828, 'dawn', 2, 2367, 2367, 2367, 71030, 7103); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270004831, 'dusk', 3, 1175, 1175, 1175, 35250, 3525); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270004835, 'dawn', 1, 3787, 3787, 3787, 113620, 11362); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270004836, 'dusk', 2, 5417, 5417, 5417, 162530, 16253); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270004837, 'dawn', 3, 289, 289, 289, 8690, 869); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270004840, 'dusk', 1, 6194, 6194, 6194, 185830, 18583); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270004842, 'dawn', 2, 1431, 1431, 1431, 42940, 4294); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270004843, 'dusk', 3, 2998, 2998, 2998, 89960, 8996); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270004844, 'dawn', 1, 1780, 1780, 1780, 53410, 5341); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270004845, 'dusk', 2, 4348, 4348, 4348, 130440, 13044); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270004846, 'dawn', 3, 6446, 6446, 6446, 193400, 19340); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270004847, 'dusk', 1, 3737, 3737, 3737, 112130, 11213); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270004848, 'dawn', 2, 4390, 4390, 4390, 131720, 13172); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270004849, 'dusk', 3, 118, 118, 118, 3550, 355); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270004850, 'dawn', 1, 1336, 1336, 1336, 40090, 4009); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270004852, 'dusk', 2, 6447, 6447, 6447, 193430, 19343); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270004853, 'dawn', 3, 2082, 2082, 2082, 62460, 6246); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270004855, 'dusk', 1, 1278, 1278, 1278, 38360, 3836); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270004856, 'dawn', 2, 1029, 1029, 1029, 30870, 3087); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270004859, 'dusk', 3, 3685, 3685, 3685, 110560, 11056); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270004862, 'dawn', 1, 2323, 2323, 2323, 69690, 6969); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270004863, 'dusk', 2, 4941, 4941, 4941, 148230, 14823); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270004864, 'dawn', 3, 2663, 2663, 2663, 79890, 7989); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270004867, 'dusk', 1, 4594, 4594, 4594, 137840, 13784); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270004868, 'dawn', 2, 5233, 5233, 5233, 157010, 15701); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270004869, 'dusk', 3, 2392, 2392, 2392, 71780, 7178); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270004870, 'dawn', 1, 2306, 2306, 2306, 69200, 6920); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270004871, 'dusk', 2, 2416, 2416, 2416, 72480, 7248); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270004875, 'dawn', 3, 4611, 4611, 4611, 138350, 13835); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270004876, 'dusk', 1, 6067, 6067, 6067, 182020, 18202); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270004877, 'dawn', 2, 3552, 3552, 3552, 106570, 10657); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270004878, 'dusk', 3, 4666, 4666, 4666, 139990, 13999); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270004880, 'dawn', 1, 326, 326, 326, 9780, 978); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270004881, 'dusk', 2, 879, 879, 879, 26380, 2638); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270004882, 'dawn', 3, 4956, 4956, 4956, 148700, 14870); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270004883, 'dusk', 1, 4426, 4426, 4426, 132800, 13280); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270004884, 'dawn', 2, 5703, 5703, 5703, 171100, 17110); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270004885, 'dusk', 3, 3232, 3232, 3232, 96960, 9696); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270004886, 'dawn', 1, 4273, 4273, 4273, 128210, 12821); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270004887, 'dusk', 2, 2038, 2038, 2038, 61140, 6114); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270004888, 'dawn', 3, 616, 616, 616, 18500, 1850); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270004890, 'dusk', 1, 1777, 1777, 1777, 53310, 5331); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270004891, 'dawn', 2, 5602, 5602, 5602, 168070, 16807); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270004892, 'dusk', 3, 2386, 2386, 2386, 71590, 7159); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270004893, 'dawn', 1, 3676, 3676, 3676, 110280, 11028); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270004895, 'dusk', 2, 820, 820, 820, 24620, 2462); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270004896, 'dawn', 3, 1667, 1667, 1667, 50020, 5002); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270004899, 'dusk', 1, 3511, 3511, 3511, 105330, 10533); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270004901, 'dawn', 2, 4462, 4462, 4462, 133870, 13387); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270004903, 'dusk', 3, 5219, 5219, 5219, 156580, 15658); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270004905, 'dawn', 1, 3536, 3536, 3536, 106090, 10609); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270004906, 'dusk', 2, 1096, 1096, 1096, 32880, 3288); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270004908, 'dawn', 3, 2376, 2376, 2376, 71300, 7130); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270004909, 'dusk', 1, 5808, 5808, 5808, 174260, 17426); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270004911, 'dawn', 2, 1118, 1118, 1118, 33550, 3355); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270004912, 'dusk', 3, 5546, 5546, 5546, 166380, 16638); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270004915, 'dawn', 1, 6325, 6325, 6325, 189760, 18976); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270004916, 'dusk', 2, 5327, 5327, 5327, 159830, 15983); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270004917, 'dawn', 3, 1903, 1903, 1903, 57090, 5709); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270004918, 'dusk', 1, 4744, 4744, 4744, 142330, 14233); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270004920, 'dawn', 2, 2348, 2348, 2348, 70460, 7046); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270004923, 'dusk', 3, 1549, 1549, 1549, 46490, 4649); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270004924, 'dawn', 1, 3200, 3200, 3200, 96020, 9602); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270004926, 'dusk', 2, 2062, 2062, 2062, 61870, 6187); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270004927, 'dawn', 3, 1324, 1324, 1324, 39740, 3974); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270004931, 'dusk', 1, 3860, 3860, 3860, 115800, 11580); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270004934, 'dawn', 2, 4502, 4502, 4502, 135080, 13508); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270004936, 'dusk', 3, 3846, 3846, 3846, 115390, 11539); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270004939, 'dawn', 1, 2875, 2875, 2875, 86250, 8625); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270004942, 'dusk', 2, 3527, 3527, 3527, 105810, 10581); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270004944, 'dawn', 3, 6280, 6280, 6280, 188400, 18840); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270004945, 'dusk', 1, 1181, 1181, 1181, 35450, 3545); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270004946, 'dawn', 2, 1019, 1019, 1019, 30590, 3059); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270004947, 'dusk', 3, 3608, 3608, 3608, 108260, 10826); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270004948, 'dawn', 1, 2214, 2214, 2214, 66430, 6643); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270004949, 'dusk', 2, 3363, 3363, 3363, 100910, 10091); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270004950, 'dawn', 3, 2736, 2736, 2736, 82090, 8209); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270004951, 'dusk', 1, 918, 918, 918, 27540, 2754); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270004952, 'dawn', 2, 2321, 2321, 2321, 69630, 6963); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270004956, 'dusk', 3, 2841, 2841, 2841, 85230, 8523); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270004957, 'dawn', 1, 4460, 4460, 4460, 133810, 13381); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270004959, 'dusk', 2, 6443, 6443, 6443, 193300, 19330); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270004960, 'dawn', 3, 73, 73, 73, 2200, 220); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270004962, 'dusk', 1, 6262, 6262, 6262, 187880, 18788); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270004963, 'dawn', 2, 2715, 2715, 2715, 81460, 8146); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270004964, 'dusk', 3, 3545, 3545, 3545, 106360, 10636); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270004966, 'dawn', 1, 4330, 4330, 4330, 129920, 12992); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270004968, 'dusk', 2, 2636, 2636, 2636, 79080, 7908); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270004969, 'dawn', 3, 3809, 3809, 3809, 114280, 11428); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270004970, 'dusk', 1, 1279, 1279, 1279, 38380, 3838); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270004972, 'dawn', 2, 4904, 4904, 4904, 147130, 14713); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270004973, 'dusk', 3, 4161, 4161, 4161, 124840, 12484); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270004974, 'dawn', 1, 4739, 4739, 4739, 142190, 14219); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270004975, 'dusk', 2, 3848, 3848, 3848, 115450, 11545); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270004976, 'dawn', 3, 4171, 4171, 4171, 125140, 12514); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270004978, 'dusk', 1, 4720, 4720, 4720, 141620, 14162); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270004981, 'dawn', 2, 5358, 5358, 5358, 160760, 16076); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270004982, 'dusk', 3, 5478, 5478, 5478, 164360, 16436); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270004983, 'dawn', 1, 420, 420, 420, 12600, 1260); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270004984, 'dusk', 2, 5615, 5615, 5615, 168470, 16847); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270004985, 'dawn', 3, 5093, 5093, 5093, 152790, 15279); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270004986, 'dusk', 1, 1042, 1042, 1042, 31270, 3127); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270004987, 'dawn', 2, 1099, 1099, 1099, 32980, 3298); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270004990, 'dusk', 3, 752, 752, 752, 22560, 2256); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270004992, 'dawn', 1, 6047, 6047, 6047, 181430, 18143); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270004994, 'dusk', 2, 5532, 5532, 5532, 165970, 16597); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270004995, 'dawn', 3, 323, 323, 323, 9700, 970); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270004997, 'dusk', 1, 1833, 1833, 1833, 55000, 5500); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270004998, 'dawn', 2, 777, 777, 777, 23320, 2332); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270005000, 'dusk', 3, 3550, 3550, 3550, 106510, 10651); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270005002, 'dawn', 1, 3381, 3381, 3381, 101440, 10144); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270005004, 'dusk', 2, 944, 944, 944, 28320, 2832); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270005005, 'dawn', 3, 461, 461, 461, 13840, 1384); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270005006, 'dusk', 1, 5613, 5613, 5613, 168400, 16840); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270005007, 'dawn', 2, 1466, 1466, 1466, 44000, 4400); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270005011, 'dusk', 3, 3608, 3608, 3608, 108240, 10824); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270005012, 'dawn', 1, 6373, 6373, 6373, 191190, 19119); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270005013, 'dusk', 2, 723, 723, 723, 21710, 2171); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270005014, 'dawn', 3, 3610, 3610, 3610, 108320, 10832); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270005016, 'dusk', 1, 2874, 2874, 2874, 86240, 8624); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270005017, 'dawn', 2, 5337, 5337, 5337, 160120, 16012); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270005018, 'dusk', 3, 6009, 6009, 6009, 180280, 18028); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270005019, 'dawn', 1, 5908, 5908, 5908, 177260, 17726); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270005020, 'dusk', 2, 6395, 6395, 6395, 191850, 19185); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270005021, 'dawn', 3, 4474, 4474, 4474, 134230, 13423); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270005022, 'dusk', 1, 2570, 2570, 2570, 77120, 7712); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270005027, 'dawn', 2, 5267, 5267, 5267, 158010, 15801); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270005029, 'dusk', 3, 204, 204, 204, 6120, 612); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270005030, 'dawn', 1, 2881, 2881, 2881, 86430, 8643); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270005031, 'dusk', 2, 68, 68, 68, 2060, 206); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270005032, 'dawn', 3, 5124, 5124, 5124, 153730, 15373); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270005033, 'dusk', 1, 5539, 5539, 5539, 166190, 16619); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270005034, 'dawn', 2, 2972, 2972, 2972, 89160, 8916); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270005035, 'dusk', 3, 550, 550, 550, 16500, 1650); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270005036, 'dawn', 1, 5491, 5491, 5491, 164730, 16473); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270005037, 'dusk', 2, 6570, 6570, 6570, 197100, 19710); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270005039, 'dawn', 3, 2584, 2584, 2584, 77530, 7753); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270005040, 'dusk', 1, 5102, 5102, 5102, 153070, 15307); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270005041, 'dawn', 2, 3477, 3477, 3477, 104330, 10433); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270005042, 'dusk', 3, 3161, 3161, 3161, 94830, 9483); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270005043, 'dawn', 1, 5956, 5956, 5956, 178680, 17868); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270005044, 'dusk', 2, 3632, 3632, 3632, 108960, 10896); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270005045, 'dawn', 3, 3443, 3443, 3443, 103310, 10331); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270005046, 'dusk', 1, 882, 882, 882, 26480, 2648); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270005048, 'dawn', 2, 4854, 4854, 4854, 145630, 14563); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270005049, 'dusk', 3, 388, 388, 388, 11640, 1164); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270005050, 'dawn', 1, 4618, 4618, 4618, 138540, 13854); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270005052, 'dusk', 2, 1747, 1747, 1747, 52420, 5242); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270005053, 'dawn', 3, 1124, 1124, 1124, 33720, 3372); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270005054, 'dusk', 1, 4338, 4338, 4338, 130140, 13014); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270005055, 'dawn', 2, 2496, 2496, 2496, 74890, 7489); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270005056, 'dusk', 3, 3764, 3764, 3764, 112920, 11292); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270005057, 'dawn', 1, 714, 714, 714, 21420, 2142); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270005058, 'dusk', 2, 364, 364, 364, 10940, 1094); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270005059, 'dawn', 3, 1638, 1638, 1638, 49150, 4915); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270005061, 'dusk', 1, 991, 991, 991, 29750, 2975); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270005062, 'dawn', 2, 413, 413, 413, 12390, 1239); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270005064, 'dusk', 3, 2034, 2034, 2034, 61030, 6103); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270005066, 'dawn', 1, 810, 810, 810, 24300, 2430); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270005067, 'dusk', 2, 4720, 4720, 4720, 141600, 14160); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270005068, 'dawn', 3, 1242, 1242, 1242, 37280, 3728); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270005069, 'dusk', 1, 1013, 1013, 1013, 30400, 3040); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270005071, 'dawn', 2, 4115, 4115, 4115, 123460, 12346); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270005072, 'dusk', 3, 1373, 1373, 1373, 41210, 4121); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270005073, 'dawn', 1, 191, 191, 191, 5740, 574); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270005074, 'dusk', 2, 2963, 2963, 2963, 88910, 8891); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270005077, 'dawn', 3, 2705, 2705, 2705, 81170, 8117); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270005080, 'dusk', 1, 222, 222, 222, 6680, 668); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270005081, 'dawn', 2, 5199, 5199, 5199, 155990, 15599); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270005082, 'dusk', 3, 6210, 6210, 6210, 186320, 18632); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270005085, 'dawn', 1, 3882, 3882, 3882, 116470, 11647); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270005086, 'dusk', 2, 3577, 3577, 3577, 107310, 10731); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270005087, 'dawn', 3, 3305, 3305, 3305, 99170, 9917); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270005090, 'dusk', 1, 3402, 3402, 3402, 102060, 10206); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270005091, 'dawn', 2, 4101, 4101, 4101, 123030, 12303); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270005092, 'dusk', 3, 2536, 2536, 2536, 76090, 7609); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270005095, 'dawn', 1, 837, 837, 837, 25110, 2511); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270005096, 'dusk', 2, 402, 402, 402, 12070, 1207); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270005097, 'dawn', 3, 2217, 2217, 2217, 66510, 6651); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270005098, 'dusk', 1, 1517, 1517, 1517, 45510, 4551); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270005099, 'dawn', 2, 3008, 3008, 3008, 90260, 9026); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270005103, 'dusk', 3, 2308, 2308, 2308, 69250, 6925); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270005104, 'dawn', 1, 2443, 2443, 2443, 73290, 7329); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270005105, 'dusk', 2, 4233, 4233, 4233, 127000, 12700); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270005106, 'dawn', 3, 166, 166, 166, 4980, 498); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270005107, 'dusk', 1, 1663, 1663, 1663, 49910, 4991); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270005109, 'dawn', 2, 5966, 5966, 5966, 179000, 17900); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270005110, 'dusk', 3, 3846, 3846, 3846, 115400, 11540); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270005111, 'dawn', 1, 4931, 4931, 4931, 147940, 14794); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270005112, 'dusk', 2, 295, 295, 295, 8850, 885); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270005113, 'dawn', 3, 965, 965, 965, 28950, 2895); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270005114, 'dusk', 1, 1400, 1400, 1400, 42010, 4201); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270005116, 'dawn', 2, 2421, 2421, 2421, 72650, 7265); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270005117, 'dusk', 3, 3356, 3356, 3356, 100680, 10068); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270005118, 'dawn', 1, 5196, 5196, 5196, 155880, 15588); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270005121, 'dusk', 2, 3963, 3963, 3963, 118910, 11891); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270005122, 'dawn', 3, 2876, 2876, 2876, 86300, 8630); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270005123, 'dusk', 1, 3239, 3239, 3239, 97180, 9718); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270005124, 'dawn', 2, 725, 725, 725, 21760, 2176); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270005126, 'dusk', 3, 2535, 2535, 2535, 76070, 7607); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270005127, 'dawn', 1, 704, 704, 704, 21130, 2113); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270005129, 'dusk', 2, 3584, 3584, 3584, 107520, 10752); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270005131, 'dawn', 3, 5803, 5803, 5803, 174110, 17411); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270005132, 'dusk', 1, 4770, 4770, 4770, 143120, 14312); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270005134, 'dawn', 2, 5345, 5345, 5345, 160360, 16036); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270005135, 'dusk', 3, 874, 874, 874, 26240, 2624); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270005136, 'dawn', 1, 1892, 1892, 1892, 56760, 5676); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270005137, 'dusk', 2, 3582, 3582, 3582, 107460, 10746); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270005138, 'dawn', 3, 6227, 6227, 6227, 186830, 18683); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270005139, 'dusk', 1, 389, 389, 389, 11670, 1167); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270005140, 'dawn', 2, 1510, 1510, 1510, 45310, 4531); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270005141, 'dusk', 3, 1836, 1836, 1836, 55090, 5509); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270005142, 'dawn', 1, 5224, 5224, 5224, 156730, 15673); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270005143, 'dusk', 2, 3232, 3232, 3232, 96980, 9698); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270005144, 'dawn', 3, 3635, 3635, 3635, 109070, 10907); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270005146, 'dusk', 1, 5529, 5529, 5529, 165890, 16589); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270005150, 'dawn', 2, 4586, 4586, 4586, 137580, 13758); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270005151, 'dusk', 3, 2939, 2939, 2939, 88190, 8819); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270005152, 'dawn', 1, 2786, 2786, 2786, 83580, 8358); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270005153, 'dusk', 2, 6044, 6044, 6044, 181330, 18133); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270005154, 'dawn', 3, 1134, 1134, 1134, 34020, 3402); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270005155, 'dusk', 1, 438, 438, 438, 13160, 1316); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270005157, 'dawn', 2, 4629, 4629, 4629, 138890, 13889); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270005158, 'dusk', 3, 6658, 6658, 6658, 199750, 19975); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270005160, 'dawn', 1, 6201, 6201, 6201, 186030, 18603); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270005162, 'dusk', 2, 559, 559, 559, 16790, 1679); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270005164, 'dawn', 3, 4471, 4471, 4471, 134150, 13415); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270005165, 'dusk', 1, 4726, 4726, 4726, 141800, 14180); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270005166, 'dawn', 2, 6566, 6566, 6566, 197000, 19700); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270005167, 'dusk', 3, 500, 500, 500, 15010, 1501); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270005168, 'dawn', 1, 1382, 1382, 1382, 41480, 4148); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270005169, 'dusk', 2, 4249, 4249, 4249, 127490, 12749); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270005170, 'dawn', 3, 1990, 1990, 1990, 59700, 5970); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270005172, 'dusk', 1, 4773, 4773, 4773, 143200, 14320); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270005173, 'dawn', 2, 3753, 3753, 3753, 112600, 11260); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270005174, 'dusk', 3, 3427, 3427, 3427, 102830, 10283); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270005177, 'dawn', 1, 816, 816, 816, 24480, 2448); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270005178, 'dusk', 2, 1049, 1049, 1049, 31490, 3149); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270005179, 'dawn', 3, 2923, 2923, 2923, 87700, 8770); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270005182, 'dusk', 1, 1002, 1002, 1002, 30070, 3007); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270005183, 'dawn', 2, 5764, 5764, 5764, 172920, 17292); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270005186, 'dusk', 3, 3289, 3289, 3289, 98690, 9869); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270005188, 'dawn', 1, 3018, 3018, 3018, 90560, 9056); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270005189, 'dusk', 2, 2318, 2318, 2318, 69540, 6954); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270005191, 'dawn', 3, 3992, 3992, 3992, 119770, 11977); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270005192, 'dusk', 1, 4454, 4454, 4454, 133640, 13364); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270005193, 'dawn', 2, 3479, 3479, 3479, 104380, 10438); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270005194, 'dusk', 3, 2240, 2240, 2240, 67220, 6722); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270005195, 'dawn', 1, 1920, 1920, 1920, 57610, 5761); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270005196, 'dusk', 2, 896, 896, 896, 26890, 2689); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270005197, 'dawn', 3, 3360, 3360, 3360, 100810, 10081); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270005198, 'dusk', 1, 268, 268, 268, 8040, 804); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270005199, 'dawn', 2, 4771, 4771, 4771, 143150, 14315); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270005200, 'dusk', 3, 4463, 4463, 4463, 133910, 13391); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270005201, 'dawn', 1, 371, 371, 371, 11140, 1114); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270005202, 'dusk', 2, 4412, 4412, 4412, 132370, 13237); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270005203, 'dawn', 3, 3139, 3139, 3139, 94180, 9418); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270005204, 'dusk', 1, 3202, 3202, 3202, 96070, 9607); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270005205, 'dawn', 2, 118, 118, 118, 3560, 356); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270005206, 'dusk', 3, 2979, 2979, 2979, 89390, 8939); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270005207, 'dawn', 1, 678, 678, 678, 20350, 2035); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270005208, 'dusk', 2, 5531, 5531, 5531, 165940, 16594); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270005209, 'dawn', 3, 2946, 2946, 2946, 88390, 8839); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270005211, 'dusk', 1, 6333, 6333, 6333, 190000, 19000); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270005212, 'dawn', 2, 5636, 5636, 5636, 169100, 16910); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270005214, 'dusk', 3, 2548, 2548, 2548, 76460, 7646); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270005215, 'dawn', 1, 812, 812, 812, 24360, 2436); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270005218, 'dusk', 2, 4910, 4910, 4910, 147320, 14732); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270005220, 'dawn', 3, 6464, 6464, 6464, 193940, 19394); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270005224, 'dusk', 1, 6058, 6058, 6058, 181760, 18176); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270005225, 'dawn', 2, 4518, 4518, 4518, 135550, 13555); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270005226, 'dusk', 3, 2651, 2651, 2651, 79550, 7955); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270005227, 'dawn', 1, 167, 167, 167, 5010, 501); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270005228, 'dusk', 2, 6633, 6633, 6633, 199010, 19901); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270005229, 'dawn', 3, 6462, 6462, 6462, 193880, 19388); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270005230, 'dusk', 1, 4984, 4984, 4984, 149540, 14954); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270005231, 'dawn', 2, 2709, 2709, 2709, 81290, 8129); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270005233, 'dusk', 3, 5694, 5694, 5694, 170840, 17084); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270005234, 'dawn', 1, 1507, 1507, 1507, 45210, 4521); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270005235, 'dusk', 2, 38, 38, 38, 1150, 115); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270005239, 'dawn', 3, 4101, 4101, 4101, 123040, 12304); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270005241, 'dusk', 1, 3715, 3715, 3715, 111470, 11147); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270005243, 'dawn', 2, 2679, 2679, 2679, 80380, 8038); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270005244, 'dusk', 3, 1072, 1072, 1072, 32180, 3218); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270005247, 'dawn', 1, 2591, 2591, 2591, 77750, 7775); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270005248, 'dusk', 2, 2301, 2301, 2301, 69050, 6905); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270005249, 'dawn', 3, 1949, 1949, 1949, 58480, 5848); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270005250, 'dusk', 1, 2197, 2197, 2197, 65930, 6593); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270005251, 'dawn', 2, 2405, 2405, 2405, 72160, 7216); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270005252, 'dusk', 3, 1093, 1093, 1093, 32800, 3280); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270005253, 'dawn', 1, 3958, 3958, 3958, 118760, 11876); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270005254, 'dusk', 2, 3187, 3187, 3187, 95620, 9562); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270005255, 'dawn', 3, 668, 668, 668, 20050, 2005); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270005256, 'dusk', 1, 1611, 1611, 1611, 48350, 4835); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270005258, 'dawn', 2, 4601, 4601, 4601, 138040, 13804); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270005260, 'dusk', 3, 1527, 1527, 1527, 45820, 4582); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270005262, 'dawn', 1, 4357, 4357, 4357, 130710, 13071); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270005263, 'dusk', 2, 4925, 4925, 4925, 147760, 14776); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270005265, 'dawn', 3, 4577, 4577, 4577, 137330, 13733); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270005266, 'dusk', 1, 1482, 1482, 1482, 44460, 4446); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270005267, 'dawn', 2, 4134, 4134, 4134, 124040, 12404); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270005268, 'dusk', 3, 3475, 3475, 3475, 104260, 10426); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270005270, 'dawn', 1, 5726, 5726, 5726, 171780, 17178); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270005271, 'dusk', 2, 3801, 3801, 3801, 114030, 11403); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270005272, 'dawn', 3, 3373, 3373, 3373, 101210, 10121); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270005273, 'dusk', 1, 4955, 4955, 4955, 148660, 14866); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270005275, 'dawn', 2, 1472, 1472, 1472, 44180, 4418); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270005277, 'dusk', 3, 4969, 4969, 4969, 149090, 14909); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270005278, 'dawn', 1, 5387, 5387, 5387, 161610, 16161); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270005279, 'dusk', 2, 6211, 6211, 6211, 186330, 18633); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270005280, 'dawn', 3, 3299, 3299, 3299, 98970, 9897); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270005282, 'dusk', 1, 4870, 4870, 4870, 146100, 14610); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270005283, 'dawn', 2, 5274, 5274, 5274, 158220, 15822); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270005284, 'dusk', 3, 813, 813, 813, 24390, 2439); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270005286, 'dawn', 1, 168, 168, 168, 5050, 505); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270005287, 'dusk', 2, 3572, 3572, 3572, 107170, 10717); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270005289, 'dawn', 3, 1321, 1321, 1321, 39650, 3965); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270005293, 'dusk', 1, 3415, 3415, 3415, 102470, 10247); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270005298, 'dawn', 2, 4459, 4459, 4459, 133790, 13379); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270005299, 'dusk', 3, 2732, 2732, 2732, 81980, 8198); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270005301, 'dawn', 1, 4169, 4169, 4169, 125070, 12507); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270005302, 'dusk', 2, 4164, 4164, 4164, 124920, 12492); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270005307, 'dawn', 3, 5820, 5820, 5820, 174620, 17462); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270005308, 'dusk', 1, 607, 607, 607, 18210, 1821); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270005309, 'dawn', 2, 393, 393, 393, 11800, 1180); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270005310, 'dusk', 3, 1282, 1282, 1282, 38470, 3847); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270005313, 'dawn', 1, 2627, 2627, 2627, 78830, 7883); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270005314, 'dusk', 2, 5529, 5529, 5529, 165880, 16588); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270005315, 'dawn', 3, 1222, 1222, 1222, 36680, 3668); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270005316, 'dusk', 1, 2121, 2121, 2121, 63650, 6365); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270005317, 'dawn', 2, 885, 885, 885, 26570, 2657); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270005318, 'dusk', 3, 4190, 4190, 4190, 125720, 12572); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270005320, 'dawn', 1, 5507, 5507, 5507, 165230, 16523); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270005322, 'dusk', 2, 3041, 3041, 3041, 91240, 9124); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270005324, 'dawn', 3, 5888, 5888, 5888, 176650, 17665); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270005326, 'dusk', 1, 3653, 3653, 3653, 109590, 10959); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270005327, 'dawn', 2, 6320, 6320, 6320, 189620, 18962); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270005329, 'dusk', 3, 3619, 3619, 3619, 108580, 10858); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270005331, 'dawn', 1, 1355, 1355, 1355, 40670, 4067); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270005332, 'dusk', 2, 1103, 1103, 1103, 33100, 3310); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270005334, 'dawn', 3, 2467, 2467, 2467, 74020, 7402); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270005336, 'dusk', 1, 878, 878, 878, 26350, 2635); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270005339, 'dawn', 2, 2327, 2327, 2327, 69820, 6982); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270005340, 'dusk', 3, 6107, 6107, 6107, 183220, 18322); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270005341, 'dawn', 1, 5054, 5054, 5054, 151640, 15164); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270005342, 'dusk', 2, 5303, 5303, 5303, 159090, 15909); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270005343, 'dawn', 3, 4580, 4580, 4580, 137420, 13742); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270005344, 'dusk', 1, 3120, 3120, 3120, 93610, 9361); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270005345, 'dawn', 2, 5179, 5179, 5179, 155370, 15537); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270005348, 'dusk', 3, 5989, 5989, 5989, 179670, 17967); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270005350, 'dawn', 1, 1328, 1328, 1328, 39850, 3985); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270005351, 'dusk', 2, 1511, 1511, 1511, 45330, 4533); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270005352, 'dawn', 3, 3397, 3397, 3397, 101920, 10192); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270005353, 'dusk', 1, 755, 755, 755, 22660, 2266); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270005354, 'dawn', 2, 2825, 2825, 2825, 84760, 8476); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270005358, 'dusk', 3, 4628, 4628, 4628, 138840, 13884); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270005360, 'dawn', 1, 1422, 1422, 1422, 42680, 4268); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270005362, 'dusk', 2, 2682, 2682, 2682, 80480, 8048); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270005364, 'dawn', 3, 3954, 3954, 3954, 118640, 11864); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270005365, 'dusk', 1, 5672, 5672, 5672, 170160, 17016); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270005366, 'dawn', 2, 4071, 4071, 4071, 122130, 12213); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270005368, 'dusk', 3, 807, 807, 807, 24220, 2422); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270005369, 'dawn', 1, 4049, 4049, 4049, 121470, 12147); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270005370, 'dusk', 2, 1477, 1477, 1477, 44320, 4432); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270005371, 'dawn', 3, 1916, 1916, 1916, 57500, 5750); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270005372, 'dusk', 1, 517, 517, 517, 15530, 1553); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270005373, 'dawn', 2, 1993, 1993, 1993, 59790, 5979); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270005374, 'dusk', 3, 1393, 1393, 1393, 41810, 4181); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270005375, 'dawn', 1, 3808, 3808, 3808, 114260, 11426); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270005376, 'dusk', 2, 2544, 2544, 2544, 76330, 7633); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270005377, 'dawn', 3, 2788, 2788, 2788, 83640, 8364); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270005378, 'dusk', 1, 4862, 4862, 4862, 145860, 14586); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270005379, 'dawn', 2, 6444, 6444, 6444, 193320, 19332); +INSERT IGNORE INTO seven_signs (charId, cabal, seal, red_stones, green_stones, blue_stones, ancient_adena_amount, contribution_score) VALUES (270005380, 'dusk', 3, 4565, 4565, 4565, 136950, 13695); +UPDATE seven_signs_status SET active_period=3, previous_winner=2, dawn_stone_score=2500000, dusk_stone_score=1800000, avarice_owner=2, gnosis_owner=2, strife_owner=1, avarice_dawn_score=900, gnosis_dawn_score=800, strife_dawn_score=300, avarice_dusk_score=400, gnosis_dusk_score=350, strife_dusk_score=700, date=UNIX_TIMESTAMP()*1000 WHERE id=0; +INSERT IGNORE INTO castle_manor_production (castle_id, seed_id, amount, start_amount, price, next_period) VALUES (1, 5016, 4050, 4050, 3, 0); +INSERT IGNORE INTO castle_manor_procure (castle_id, crop_id, amount, start_amount, price, reward_type, next_period) VALUES (1, 5073, 4500, 4500, 50, 1, 0); +INSERT IGNORE INTO castle_manor_production (castle_id, seed_id, amount, start_amount, price, next_period) VALUES (1, 5016, 4050, 4050, 3, 1); +INSERT IGNORE INTO castle_manor_procure (castle_id, crop_id, amount, start_amount, price, reward_type, next_period) VALUES (1, 5073, 4500, 4500, 50, 1, 1); +INSERT IGNORE INTO castle_manor_production (castle_id, seed_id, amount, start_amount, price, next_period) VALUES (1, 5650, 11250, 11250, 3, 0); +INSERT IGNORE INTO castle_manor_procure (castle_id, crop_id, amount, start_amount, price, reward_type, next_period) VALUES (1, 5818, 1125, 1125, 50, 1, 0); +INSERT IGNORE INTO castle_manor_production (castle_id, seed_id, amount, start_amount, price, next_period) VALUES (1, 5650, 11250, 11250, 3, 1); +INSERT IGNORE INTO castle_manor_procure (castle_id, crop_id, amount, start_amount, price, reward_type, next_period) VALUES (1, 5818, 1125, 1125, 50, 1, 1); +INSERT IGNORE INTO castle_manor_production (castle_id, seed_id, amount, start_amount, price, next_period) VALUES (1, 5017, 4050, 4050, 3, 0); +INSERT IGNORE INTO castle_manor_procure (castle_id, crop_id, amount, start_amount, price, reward_type, next_period) VALUES (1, 5068, 4500, 4500, 50, 1, 0); +INSERT IGNORE INTO castle_manor_production (castle_id, seed_id, amount, start_amount, price, next_period) VALUES (1, 5017, 4050, 4050, 3, 1); +INSERT IGNORE INTO castle_manor_procure (castle_id, crop_id, amount, start_amount, price, reward_type, next_period) VALUES (1, 5068, 4500, 4500, 50, 1, 1); +INSERT IGNORE INTO castle_manor_production (castle_id, seed_id, amount, start_amount, price, next_period) VALUES (1, 5651, 11250, 11250, 3, 0); +INSERT IGNORE INTO castle_manor_procure (castle_id, crop_id, amount, start_amount, price, reward_type, next_period) VALUES (1, 5819, 1125, 1125, 50, 1, 0); +INSERT IGNORE INTO castle_manor_production (castle_id, seed_id, amount, start_amount, price, next_period) VALUES (1, 5651, 11250, 11250, 3, 1); +INSERT IGNORE INTO castle_manor_procure (castle_id, crop_id, amount, start_amount, price, reward_type, next_period) VALUES (1, 5819, 1125, 1125, 50, 1, 1); +INSERT IGNORE INTO castle_manor_production (castle_id, seed_id, amount, start_amount, price, next_period) VALUES (1, 5018, 4050, 4050, 3, 0); +INSERT IGNORE INTO castle_manor_procure (castle_id, crop_id, amount, start_amount, price, reward_type, next_period) VALUES (1, 5065, 4500, 4500, 50, 1, 0); +INSERT IGNORE INTO castle_manor_production (castle_id, seed_id, amount, start_amount, price, next_period) VALUES (1, 5018, 4050, 4050, 3, 1); +INSERT IGNORE INTO castle_manor_procure (castle_id, crop_id, amount, start_amount, price, reward_type, next_period) VALUES (1, 5065, 4500, 4500, 50, 1, 1); +INSERT IGNORE INTO castle_manor_production (castle_id, seed_id, amount, start_amount, price, next_period) VALUES (1, 5652, 11250, 11250, 3, 0); +INSERT IGNORE INTO castle_manor_procure (castle_id, crop_id, amount, start_amount, price, reward_type, next_period) VALUES (1, 5820, 1125, 1125, 50, 1, 0); +INSERT IGNORE INTO castle_manor_production (castle_id, seed_id, amount, start_amount, price, next_period) VALUES (1, 5652, 11250, 11250, 3, 1); +INSERT IGNORE INTO castle_manor_procure (castle_id, crop_id, amount, start_amount, price, reward_type, next_period) VALUES (1, 5820, 1125, 1125, 50, 1, 1); +INSERT IGNORE INTO castle_manor_production (castle_id, seed_id, amount, start_amount, price, next_period) VALUES (1, 5019, 2025, 2025, 7, 0); +INSERT IGNORE INTO castle_manor_procure (castle_id, crop_id, amount, start_amount, price, reward_type, next_period) VALUES (1, 5067, 2250, 2250, 100, 1, 0); +INSERT IGNORE INTO castle_manor_production (castle_id, seed_id, amount, start_amount, price, next_period) VALUES (1, 5019, 2025, 2025, 7, 1); +INSERT IGNORE INTO castle_manor_procure (castle_id, crop_id, amount, start_amount, price, reward_type, next_period) VALUES (1, 5067, 2250, 2250, 100, 1, 1); +INSERT IGNORE INTO castle_manor_production (castle_id, seed_id, amount, start_amount, price, next_period) VALUES (1, 5653, 5625, 5625, 7, 0); +INSERT IGNORE INTO castle_manor_procure (castle_id, crop_id, amount, start_amount, price, reward_type, next_period) VALUES (1, 5821, 562, 562, 100, 1, 0); +INSERT IGNORE INTO castle_manor_production (castle_id, seed_id, amount, start_amount, price, next_period) VALUES (1, 5653, 5625, 5625, 7, 1); +INSERT IGNORE INTO castle_manor_procure (castle_id, crop_id, amount, start_amount, price, reward_type, next_period) VALUES (1, 5821, 562, 562, 100, 1, 1); +INSERT IGNORE INTO castle_manor_production (castle_id, seed_id, amount, start_amount, price, next_period) VALUES (1, 5020, 1012, 1012, 14, 0); +INSERT IGNORE INTO castle_manor_procure (castle_id, crop_id, amount, start_amount, price, reward_type, next_period) VALUES (1, 5069, 1125, 1125, 200, 1, 0); +INSERT IGNORE INTO castle_manor_production (castle_id, seed_id, amount, start_amount, price, next_period) VALUES (1, 5020, 1012, 1012, 14, 1); +INSERT IGNORE INTO castle_manor_procure (castle_id, crop_id, amount, start_amount, price, reward_type, next_period) VALUES (1, 5069, 1125, 1125, 200, 1, 1); +INSERT IGNORE INTO castle_manor_production (castle_id, seed_id, amount, start_amount, price, next_period) VALUES (1, 5654, 2815, 2815, 14, 0); +INSERT IGNORE INTO castle_manor_procure (castle_id, crop_id, amount, start_amount, price, reward_type, next_period) VALUES (1, 5822, 281, 281, 200, 1, 0); +INSERT IGNORE INTO castle_manor_production (castle_id, seed_id, amount, start_amount, price, next_period) VALUES (1, 5654, 2815, 2815, 14, 1); +INSERT IGNORE INTO castle_manor_procure (castle_id, crop_id, amount, start_amount, price, reward_type, next_period) VALUES (1, 5822, 281, 281, 200, 1, 1); +INSERT IGNORE INTO castle_manor_production (castle_id, seed_id, amount, start_amount, price, next_period) VALUES (1, 5021, 675, 675, 21, 0); +INSERT IGNORE INTO castle_manor_procure (castle_id, crop_id, amount, start_amount, price, reward_type, next_period) VALUES (1, 5071, 750, 750, 300, 1, 0); +INSERT IGNORE INTO castle_manor_production (castle_id, seed_id, amount, start_amount, price, next_period) VALUES (1, 5021, 675, 675, 21, 1); +INSERT IGNORE INTO castle_manor_procure (castle_id, crop_id, amount, start_amount, price, reward_type, next_period) VALUES (1, 5071, 750, 750, 300, 1, 1); +INSERT IGNORE INTO castle_manor_production (castle_id, seed_id, amount, start_amount, price, next_period) VALUES (1, 5655, 1875, 1875, 21, 0); +INSERT IGNORE INTO castle_manor_procure (castle_id, crop_id, amount, start_amount, price, reward_type, next_period) VALUES (1, 5823, 187, 187, 300, 1, 0); +INSERT IGNORE INTO castle_manor_production (castle_id, seed_id, amount, start_amount, price, next_period) VALUES (1, 5655, 1875, 1875, 21, 1); +INSERT IGNORE INTO castle_manor_procure (castle_id, crop_id, amount, start_amount, price, reward_type, next_period) VALUES (1, 5823, 187, 187, 300, 1, 1); +INSERT IGNORE INTO castle_manor_production (castle_id, seed_id, amount, start_amount, price, next_period) VALUES (1, 5022, 1012, 1012, 14, 0); +INSERT IGNORE INTO castle_manor_procure (castle_id, crop_id, amount, start_amount, price, reward_type, next_period) VALUES (1, 5070, 1125, 1125, 200, 1, 0); +INSERT IGNORE INTO castle_manor_production (castle_id, seed_id, amount, start_amount, price, next_period) VALUES (1, 5022, 1012, 1012, 14, 1); +INSERT IGNORE INTO castle_manor_procure (castle_id, crop_id, amount, start_amount, price, reward_type, next_period) VALUES (1, 5070, 1125, 1125, 200, 1, 1); +INSERT IGNORE INTO castle_manor_production (castle_id, seed_id, amount, start_amount, price, next_period) VALUES (1, 5656, 2815, 2815, 14, 0); +INSERT IGNORE INTO castle_manor_procure (castle_id, crop_id, amount, start_amount, price, reward_type, next_period) VALUES (1, 5824, 281, 281, 200, 1, 0); +INSERT IGNORE INTO castle_manor_production (castle_id, seed_id, amount, start_amount, price, next_period) VALUES (1, 5656, 2815, 2815, 14, 1); +INSERT IGNORE INTO castle_manor_procure (castle_id, crop_id, amount, start_amount, price, reward_type, next_period) VALUES (1, 5824, 281, 281, 200, 1, 1); +INSERT IGNORE INTO castle_manor_production (castle_id, seed_id, amount, start_amount, price, next_period) VALUES (1, 7051, 1012, 1012, 14, 0); +INSERT IGNORE INTO castle_manor_procure (castle_id, crop_id, amount, start_amount, price, reward_type, next_period) VALUES (1, 5078, 1125, 1125, 200, 1, 0); +INSERT IGNORE INTO castle_manor_production (castle_id, seed_id, amount, start_amount, price, next_period) VALUES (1, 7051, 1012, 1012, 14, 1); +INSERT IGNORE INTO castle_manor_procure (castle_id, crop_id, amount, start_amount, price, reward_type, next_period) VALUES (1, 5078, 1125, 1125, 200, 1, 1); +INSERT IGNORE INTO castle_manor_production (castle_id, seed_id, amount, start_amount, price, next_period) VALUES (1, 7044, 2815, 2815, 14, 0); +INSERT IGNORE INTO castle_manor_procure (castle_id, crop_id, amount, start_amount, price, reward_type, next_period) VALUES (1, 5825, 281, 281, 200, 1, 0); +INSERT IGNORE INTO castle_manor_production (castle_id, seed_id, amount, start_amount, price, next_period) VALUES (1, 7044, 2815, 2815, 14, 1); +INSERT IGNORE INTO castle_manor_procure (castle_id, crop_id, amount, start_amount, price, reward_type, next_period) VALUES (1, 5825, 281, 281, 200, 1, 1); +INSERT IGNORE INTO castle_manor_production (castle_id, seed_id, amount, start_amount, price, next_period) VALUES (1, 7019, 810, 810, 17, 0); +INSERT IGNORE INTO castle_manor_procure (castle_id, crop_id, amount, start_amount, price, reward_type, next_period) VALUES (1, 5075, 900, 900, 250, 1, 0); +INSERT IGNORE INTO castle_manor_production (castle_id, seed_id, amount, start_amount, price, next_period) VALUES (1, 7019, 810, 810, 17, 1); +INSERT IGNORE INTO castle_manor_procure (castle_id, crop_id, amount, start_amount, price, reward_type, next_period) VALUES (1, 5075, 900, 900, 250, 1, 1); +INSERT IGNORE INTO castle_manor_production (castle_id, seed_id, amount, start_amount, price, next_period) VALUES (1, 7033, 2250, 2250, 17, 0); +INSERT IGNORE INTO castle_manor_procure (castle_id, crop_id, amount, start_amount, price, reward_type, next_period) VALUES (1, 5826, 225, 225, 250, 1, 0); +INSERT IGNORE INTO castle_manor_production (castle_id, seed_id, amount, start_amount, price, next_period) VALUES (1, 7033, 2250, 2250, 17, 1); +INSERT IGNORE INTO castle_manor_procure (castle_id, crop_id, amount, start_amount, price, reward_type, next_period) VALUES (1, 5826, 225, 225, 250, 1, 1); +INSERT IGNORE INTO castle_manor_production (castle_id, seed_id, amount, start_amount, price, next_period) VALUES (1, 5023, 405, 405, 35, 0); +INSERT IGNORE INTO castle_manor_procure (castle_id, crop_id, amount, start_amount, price, reward_type, next_period) VALUES (1, 5077, 450, 450, 500, 1, 0); +INSERT IGNORE INTO castle_manor_production (castle_id, seed_id, amount, start_amount, price, next_period) VALUES (1, 5023, 405, 405, 35, 1); +INSERT IGNORE INTO castle_manor_procure (castle_id, crop_id, amount, start_amount, price, reward_type, next_period) VALUES (1, 5077, 450, 450, 500, 1, 1); +INSERT IGNORE INTO castle_manor_production (castle_id, seed_id, amount, start_amount, price, next_period) VALUES (1, 5657, 1125, 1125, 35, 0); +INSERT IGNORE INTO castle_manor_procure (castle_id, crop_id, amount, start_amount, price, reward_type, next_period) VALUES (1, 5827, 112, 112, 500, 1, 0); +INSERT IGNORE INTO castle_manor_production (castle_id, seed_id, amount, start_amount, price, next_period) VALUES (1, 5657, 1125, 1125, 35, 1); +INSERT IGNORE INTO castle_manor_procure (castle_id, crop_id, amount, start_amount, price, reward_type, next_period) VALUES (1, 5827, 112, 112, 500, 1, 1); +INSERT IGNORE INTO castle_manor_production (castle_id, seed_id, amount, start_amount, price, next_period) VALUES (1, 7021, 506, 506, 28, 0); +INSERT IGNORE INTO castle_manor_procure (castle_id, crop_id, amount, start_amount, price, reward_type, next_period) VALUES (1, 5085, 562, 562, 400, 1, 0); +INSERT IGNORE INTO castle_manor_production (castle_id, seed_id, amount, start_amount, price, next_period) VALUES (1, 7021, 506, 506, 28, 1); +INSERT IGNORE INTO castle_manor_procure (castle_id, crop_id, amount, start_amount, price, reward_type, next_period) VALUES (1, 5085, 562, 562, 400, 1, 1); +INSERT IGNORE INTO castle_manor_production (castle_id, seed_id, amount, start_amount, price, next_period) VALUES (1, 7035, 1405, 1405, 28, 0); +INSERT IGNORE INTO castle_manor_procure (castle_id, crop_id, amount, start_amount, price, reward_type, next_period) VALUES (1, 5833, 140, 140, 400, 1, 0); +INSERT IGNORE INTO castle_manor_production (castle_id, seed_id, amount, start_amount, price, next_period) VALUES (1, 7035, 1405, 1405, 28, 1); +INSERT IGNORE INTO castle_manor_procure (castle_id, crop_id, amount, start_amount, price, reward_type, next_period) VALUES (1, 5833, 140, 140, 400, 1, 1); +INSERT IGNORE INTO castle_manor_production (castle_id, seed_id, amount, start_amount, price, next_period) VALUES (1, 7017, 405, 405, 35, 0); +INSERT IGNORE INTO castle_manor_procure (castle_id, crop_id, amount, start_amount, price, reward_type, next_period) VALUES (1, 5087, 450, 450, 500, 1, 0); +INSERT IGNORE INTO castle_manor_production (castle_id, seed_id, amount, start_amount, price, next_period) VALUES (1, 7017, 405, 405, 35, 1); +INSERT IGNORE INTO castle_manor_procure (castle_id, crop_id, amount, start_amount, price, reward_type, next_period) VALUES (1, 5087, 450, 450, 500, 1, 1); +INSERT IGNORE INTO castle_manor_production (castle_id, seed_id, amount, start_amount, price, next_period) VALUES (1, 7031, 1125, 1125, 35, 0); +INSERT IGNORE INTO castle_manor_procure (castle_id, crop_id, amount, start_amount, price, reward_type, next_period) VALUES (1, 5834, 112, 112, 500, 1, 0); +INSERT IGNORE INTO castle_manor_production (castle_id, seed_id, amount, start_amount, price, next_period) VALUES (1, 7031, 1125, 1125, 35, 1); +INSERT IGNORE INTO castle_manor_procure (castle_id, crop_id, amount, start_amount, price, reward_type, next_period) VALUES (1, 5834, 112, 112, 500, 1, 1); +INSERT IGNORE INTO castle_manor_production (castle_id, seed_id, amount, start_amount, price, next_period) VALUES (1, 7057, 405, 405, 35, 0); +INSERT IGNORE INTO castle_manor_procure (castle_id, crop_id, amount, start_amount, price, reward_type, next_period) VALUES (1, 5092, 450, 450, 500, 1, 0); +INSERT IGNORE INTO castle_manor_production (castle_id, seed_id, amount, start_amount, price, next_period) VALUES (1, 7057, 405, 405, 35, 1); +INSERT IGNORE INTO castle_manor_procure (castle_id, crop_id, amount, start_amount, price, reward_type, next_period) VALUES (1, 5092, 450, 450, 500, 1, 1); +INSERT IGNORE INTO castle_manor_production (castle_id, seed_id, amount, start_amount, price, next_period) VALUES (1, 7050, 1125, 1125, 35, 0); +INSERT IGNORE INTO castle_manor_procure (castle_id, crop_id, amount, start_amount, price, reward_type, next_period) VALUES (1, 5835, 112, 112, 500, 1, 0); +INSERT IGNORE INTO castle_manor_production (castle_id, seed_id, amount, start_amount, price, next_period) VALUES (1, 7050, 1125, 1125, 35, 1); +INSERT IGNORE INTO castle_manor_procure (castle_id, crop_id, amount, start_amount, price, reward_type, next_period) VALUES (1, 5835, 112, 112, 500, 1, 1); +INSERT IGNORE INTO castle_manor_production (castle_id, seed_id, amount, start_amount, price, next_period) VALUES (1, 7028, 270, 270, 52, 0); +INSERT IGNORE INTO castle_manor_procure (castle_id, crop_id, amount, start_amount, price, reward_type, next_period) VALUES (1, 5094, 300, 300, 750, 1, 0); +INSERT IGNORE INTO castle_manor_production (castle_id, seed_id, amount, start_amount, price, next_period) VALUES (1, 7028, 270, 270, 52, 1); +INSERT IGNORE INTO castle_manor_procure (castle_id, crop_id, amount, start_amount, price, reward_type, next_period) VALUES (1, 5094, 300, 300, 750, 1, 1); +INSERT IGNORE INTO castle_manor_production (castle_id, seed_id, amount, start_amount, price, next_period) VALUES (1, 7042, 750, 750, 52, 0); +INSERT IGNORE INTO castle_manor_procure (castle_id, crop_id, amount, start_amount, price, reward_type, next_period) VALUES (1, 5836, 75, 75, 750, 1, 0); +INSERT IGNORE INTO castle_manor_production (castle_id, seed_id, amount, start_amount, price, next_period) VALUES (1, 7042, 750, 750, 52, 1); +INSERT IGNORE INTO castle_manor_procure (castle_id, crop_id, amount, start_amount, price, reward_type, next_period) VALUES (1, 5836, 75, 75, 750, 1, 1); +INSERT IGNORE INTO castle_manor_production (castle_id, seed_id, amount, start_amount, price, next_period) VALUES (1, 7023, 202, 202, 70, 0); +INSERT IGNORE INTO castle_manor_procure (castle_id, crop_id, amount, start_amount, price, reward_type, next_period) VALUES (1, 5090, 225, 225, 1000, 1, 0); +INSERT IGNORE INTO castle_manor_production (castle_id, seed_id, amount, start_amount, price, next_period) VALUES (1, 7023, 202, 202, 70, 1); +INSERT IGNORE INTO castle_manor_procure (castle_id, crop_id, amount, start_amount, price, reward_type, next_period) VALUES (1, 5090, 225, 225, 1000, 1, 1); +INSERT IGNORE INTO castle_manor_production (castle_id, seed_id, amount, start_amount, price, next_period) VALUES (1, 7037, 565, 565, 70, 0); +INSERT IGNORE INTO castle_manor_procure (castle_id, crop_id, amount, start_amount, price, reward_type, next_period) VALUES (1, 5837, 56, 56, 1000, 1, 0); +INSERT IGNORE INTO castle_manor_production (castle_id, seed_id, amount, start_amount, price, next_period) VALUES (1, 7037, 565, 565, 70, 1); +INSERT IGNORE INTO castle_manor_procure (castle_id, crop_id, amount, start_amount, price, reward_type, next_period) VALUES (1, 5837, 56, 56, 1000, 1, 1); +INSERT IGNORE INTO castle_manor_production (castle_id, seed_id, amount, start_amount, price, next_period) VALUES (1, 6768, 162, 162, 280, 0); +INSERT IGNORE INTO castle_manor_procure (castle_id, crop_id, amount, start_amount, price, reward_type, next_period) VALUES (1, 6541, 180, 180, 1250, 1, 0); +INSERT IGNORE INTO castle_manor_production (castle_id, seed_id, amount, start_amount, price, next_period) VALUES (1, 6768, 162, 162, 280, 1); +INSERT IGNORE INTO castle_manor_procure (castle_id, crop_id, amount, start_amount, price, reward_type, next_period) VALUES (1, 6541, 180, 180, 1250, 1, 1); +INSERT IGNORE INTO castle_manor_production (castle_id, seed_id, amount, start_amount, price, next_period) VALUES (1, 6742, 118, 118, 280, 0); +INSERT IGNORE INTO castle_manor_procure (castle_id, crop_id, amount, start_amount, price, reward_type, next_period) VALUES (1, 6548, 45, 45, 1250, 1, 0); +INSERT IGNORE INTO castle_manor_production (castle_id, seed_id, amount, start_amount, price, next_period) VALUES (1, 6742, 118, 118, 280, 1); +INSERT IGNORE INTO castle_manor_procure (castle_id, crop_id, amount, start_amount, price, reward_type, next_period) VALUES (1, 6548, 45, 45, 1250, 1, 1); +INSERT IGNORE INTO castle_manor_production (castle_id, seed_id, amount, start_amount, price, next_period) VALUES (2, 5024, 2099, 2099, 7, 0); +INSERT IGNORE INTO castle_manor_procure (castle_id, crop_id, amount, start_amount, price, reward_type, next_period) VALUES (2, 5067, 2333, 2333, 100, 1, 0); +INSERT IGNORE INTO castle_manor_production (castle_id, seed_id, amount, start_amount, price, next_period) VALUES (2, 5024, 2099, 2099, 7, 1); +INSERT IGNORE INTO castle_manor_procure (castle_id, crop_id, amount, start_amount, price, reward_type, next_period) VALUES (2, 5067, 2333, 2333, 100, 1, 1); +INSERT IGNORE INTO castle_manor_production (castle_id, seed_id, amount, start_amount, price, next_period) VALUES (2, 5658, 5835, 5835, 7, 0); +INSERT IGNORE INTO castle_manor_procure (castle_id, crop_id, amount, start_amount, price, reward_type, next_period) VALUES (2, 5821, 583, 583, 100, 1, 0); +INSERT IGNORE INTO castle_manor_production (castle_id, seed_id, amount, start_amount, price, next_period) VALUES (2, 5658, 5835, 5835, 7, 1); +INSERT IGNORE INTO castle_manor_procure (castle_id, crop_id, amount, start_amount, price, reward_type, next_period) VALUES (2, 5821, 583, 583, 100, 1, 1); +INSERT IGNORE INTO castle_manor_production (castle_id, seed_id, amount, start_amount, price, next_period) VALUES (2, 5025, 1050, 1050, 14, 0); +INSERT IGNORE INTO castle_manor_procure (castle_id, crop_id, amount, start_amount, price, reward_type, next_period) VALUES (2, 5069, 1167, 1167, 200, 1, 0); +INSERT IGNORE INTO castle_manor_production (castle_id, seed_id, amount, start_amount, price, next_period) VALUES (2, 5025, 1050, 1050, 14, 1); +INSERT IGNORE INTO castle_manor_procure (castle_id, crop_id, amount, start_amount, price, reward_type, next_period) VALUES (2, 5069, 1167, 1167, 200, 1, 1); +INSERT IGNORE INTO castle_manor_production (castle_id, seed_id, amount, start_amount, price, next_period) VALUES (2, 5659, 2915, 2915, 14, 0); +INSERT IGNORE INTO castle_manor_procure (castle_id, crop_id, amount, start_amount, price, reward_type, next_period) VALUES (2, 5822, 291, 291, 200, 1, 0); +INSERT IGNORE INTO castle_manor_production (castle_id, seed_id, amount, start_amount, price, next_period) VALUES (2, 5659, 2915, 2915, 14, 1); +INSERT IGNORE INTO castle_manor_procure (castle_id, crop_id, amount, start_amount, price, reward_type, next_period) VALUES (2, 5822, 291, 291, 200, 1, 1); +INSERT IGNORE INTO castle_manor_production (castle_id, seed_id, amount, start_amount, price, next_period) VALUES (2, 5026, 700, 700, 21, 0); +INSERT IGNORE INTO castle_manor_procure (castle_id, crop_id, amount, start_amount, price, reward_type, next_period) VALUES (2, 5071, 777, 777, 300, 1, 0); +INSERT IGNORE INTO castle_manor_production (castle_id, seed_id, amount, start_amount, price, next_period) VALUES (2, 5026, 700, 700, 21, 1); +INSERT IGNORE INTO castle_manor_procure (castle_id, crop_id, amount, start_amount, price, reward_type, next_period) VALUES (2, 5071, 777, 777, 300, 1, 1); +INSERT IGNORE INTO castle_manor_production (castle_id, seed_id, amount, start_amount, price, next_period) VALUES (2, 5660, 1945, 1945, 21, 0); +INSERT IGNORE INTO castle_manor_procure (castle_id, crop_id, amount, start_amount, price, reward_type, next_period) VALUES (2, 5823, 194, 194, 300, 1, 0); +INSERT IGNORE INTO castle_manor_production (castle_id, seed_id, amount, start_amount, price, next_period) VALUES (2, 5660, 1945, 1945, 21, 1); +INSERT IGNORE INTO castle_manor_procure (castle_id, crop_id, amount, start_amount, price, reward_type, next_period) VALUES (2, 5823, 194, 194, 300, 1, 1); +INSERT IGNORE INTO castle_manor_production (castle_id, seed_id, amount, start_amount, price, next_period) VALUES (2, 5027, 1050, 1050, 14, 0); +INSERT IGNORE INTO castle_manor_procure (castle_id, crop_id, amount, start_amount, price, reward_type, next_period) VALUES (2, 5070, 1167, 1167, 200, 1, 0); +INSERT IGNORE INTO castle_manor_production (castle_id, seed_id, amount, start_amount, price, next_period) VALUES (2, 5027, 1050, 1050, 14, 1); +INSERT IGNORE INTO castle_manor_procure (castle_id, crop_id, amount, start_amount, price, reward_type, next_period) VALUES (2, 5070, 1167, 1167, 200, 1, 1); +INSERT IGNORE INTO castle_manor_production (castle_id, seed_id, amount, start_amount, price, next_period) VALUES (2, 5661, 2915, 2915, 14, 0); +INSERT IGNORE INTO castle_manor_procure (castle_id, crop_id, amount, start_amount, price, reward_type, next_period) VALUES (2, 5824, 291, 291, 200, 1, 0); +INSERT IGNORE INTO castle_manor_production (castle_id, seed_id, amount, start_amount, price, next_period) VALUES (2, 5661, 2915, 2915, 14, 1); +INSERT IGNORE INTO castle_manor_procure (castle_id, crop_id, amount, start_amount, price, reward_type, next_period) VALUES (2, 5824, 291, 291, 200, 1, 1); +INSERT IGNORE INTO castle_manor_production (castle_id, seed_id, amount, start_amount, price, next_period) VALUES (2, 5028, 1050, 1050, 14, 0); +INSERT IGNORE INTO castle_manor_procure (castle_id, crop_id, amount, start_amount, price, reward_type, next_period) VALUES (2, 5078, 1167, 1167, 200, 1, 0); +INSERT IGNORE INTO castle_manor_production (castle_id, seed_id, amount, start_amount, price, next_period) VALUES (2, 5028, 1050, 1050, 14, 1); +INSERT IGNORE INTO castle_manor_procure (castle_id, crop_id, amount, start_amount, price, reward_type, next_period) VALUES (2, 5078, 1167, 1167, 200, 1, 1); +INSERT IGNORE INTO castle_manor_production (castle_id, seed_id, amount, start_amount, price, next_period) VALUES (2, 5662, 2915, 2915, 14, 0); +INSERT IGNORE INTO castle_manor_procure (castle_id, crop_id, amount, start_amount, price, reward_type, next_period) VALUES (2, 5825, 291, 291, 200, 1, 0); +INSERT IGNORE INTO castle_manor_production (castle_id, seed_id, amount, start_amount, price, next_period) VALUES (2, 5662, 2915, 2915, 14, 1); +INSERT IGNORE INTO castle_manor_procure (castle_id, crop_id, amount, start_amount, price, reward_type, next_period) VALUES (2, 5825, 291, 291, 200, 1, 1); +INSERT IGNORE INTO castle_manor_production (castle_id, seed_id, amount, start_amount, price, next_period) VALUES (2, 5029, 839, 839, 17, 0); +INSERT IGNORE INTO castle_manor_procure (castle_id, crop_id, amount, start_amount, price, reward_type, next_period) VALUES (2, 5075, 933, 933, 250, 1, 0); +INSERT IGNORE INTO castle_manor_production (castle_id, seed_id, amount, start_amount, price, next_period) VALUES (2, 5029, 839, 839, 17, 1); +INSERT IGNORE INTO castle_manor_procure (castle_id, crop_id, amount, start_amount, price, reward_type, next_period) VALUES (2, 5075, 933, 933, 250, 1, 1); +INSERT IGNORE INTO castle_manor_production (castle_id, seed_id, amount, start_amount, price, next_period) VALUES (2, 5663, 2335, 2335, 17, 0); +INSERT IGNORE INTO castle_manor_procure (castle_id, crop_id, amount, start_amount, price, reward_type, next_period) VALUES (2, 5826, 233, 233, 250, 1, 0); +INSERT IGNORE INTO castle_manor_production (castle_id, seed_id, amount, start_amount, price, next_period) VALUES (2, 5663, 2335, 2335, 17, 1); +INSERT IGNORE INTO castle_manor_procure (castle_id, crop_id, amount, start_amount, price, reward_type, next_period) VALUES (2, 5826, 233, 233, 250, 1, 1); +INSERT IGNORE INTO castle_manor_production (castle_id, seed_id, amount, start_amount, price, next_period) VALUES (2, 7016, 420, 420, 35, 0); +INSERT IGNORE INTO castle_manor_procure (castle_id, crop_id, amount, start_amount, price, reward_type, next_period) VALUES (2, 5077, 467, 467, 500, 1, 0); +INSERT IGNORE INTO castle_manor_production (castle_id, seed_id, amount, start_amount, price, next_period) VALUES (2, 7016, 420, 420, 35, 1); +INSERT IGNORE INTO castle_manor_procure (castle_id, crop_id, amount, start_amount, price, reward_type, next_period) VALUES (2, 5077, 467, 467, 500, 1, 1); +INSERT IGNORE INTO castle_manor_production (castle_id, seed_id, amount, start_amount, price, next_period) VALUES (2, 7030, 1165, 1165, 35, 0); +INSERT IGNORE INTO castle_manor_procure (castle_id, crop_id, amount, start_amount, price, reward_type, next_period) VALUES (2, 5827, 116, 116, 500, 1, 0); +INSERT IGNORE INTO castle_manor_production (castle_id, seed_id, amount, start_amount, price, next_period) VALUES (2, 7030, 1165, 1165, 35, 1); +INSERT IGNORE INTO castle_manor_procure (castle_id, crop_id, amount, start_amount, price, reward_type, next_period) VALUES (2, 5827, 116, 116, 500, 1, 1); +INSERT IGNORE INTO castle_manor_production (castle_id, seed_id, amount, start_amount, price, next_period) VALUES (2, 5030, 420, 420, 35, 0); +INSERT IGNORE INTO castle_manor_procure (castle_id, crop_id, amount, start_amount, price, reward_type, next_period) VALUES (2, 5082, 467, 467, 500, 1, 0); +INSERT IGNORE INTO castle_manor_production (castle_id, seed_id, amount, start_amount, price, next_period) VALUES (2, 5030, 420, 420, 35, 1); +INSERT IGNORE INTO castle_manor_procure (castle_id, crop_id, amount, start_amount, price, reward_type, next_period) VALUES (2, 5082, 467, 467, 500, 1, 1); +INSERT IGNORE INTO castle_manor_production (castle_id, seed_id, amount, start_amount, price, next_period) VALUES (2, 5664, 1165, 1165, 35, 0); +INSERT IGNORE INTO castle_manor_procure (castle_id, crop_id, amount, start_amount, price, reward_type, next_period) VALUES (2, 5828, 116, 116, 500, 1, 0); +INSERT IGNORE INTO castle_manor_production (castle_id, seed_id, amount, start_amount, price, next_period) VALUES (2, 5664, 1165, 1165, 35, 1); +INSERT IGNORE INTO castle_manor_procure (castle_id, crop_id, amount, start_amount, price, reward_type, next_period) VALUES (2, 5828, 116, 116, 500, 1, 1); +INSERT IGNORE INTO castle_manor_production (castle_id, seed_id, amount, start_amount, price, next_period) VALUES (2, 5031, 420, 420, 35, 0); +INSERT IGNORE INTO castle_manor_procure (castle_id, crop_id, amount, start_amount, price, reward_type, next_period) VALUES (2, 5079, 467, 467, 500, 1, 0); +INSERT IGNORE INTO castle_manor_production (castle_id, seed_id, amount, start_amount, price, next_period) VALUES (2, 5031, 420, 420, 35, 1); +INSERT IGNORE INTO castle_manor_procure (castle_id, crop_id, amount, start_amount, price, reward_type, next_period) VALUES (2, 5079, 467, 467, 500, 1, 1); +INSERT IGNORE INTO castle_manor_production (castle_id, seed_id, amount, start_amount, price, next_period) VALUES (2, 5665, 1165, 1165, 35, 0); +INSERT IGNORE INTO castle_manor_procure (castle_id, crop_id, amount, start_amount, price, reward_type, next_period) VALUES (2, 5829, 116, 116, 500, 1, 0); +INSERT IGNORE INTO castle_manor_production (castle_id, seed_id, amount, start_amount, price, next_period) VALUES (2, 5665, 1165, 1165, 35, 1); +INSERT IGNORE INTO castle_manor_procure (castle_id, crop_id, amount, start_amount, price, reward_type, next_period) VALUES (2, 5829, 116, 116, 500, 1, 1); +INSERT IGNORE INTO castle_manor_production (castle_id, seed_id, amount, start_amount, price, next_period) VALUES (2, 5032, 420, 420, 35, 0); +INSERT IGNORE INTO castle_manor_procure (castle_id, crop_id, amount, start_amount, price, reward_type, next_period) VALUES (2, 5084, 467, 467, 500, 1, 0); +INSERT IGNORE INTO castle_manor_production (castle_id, seed_id, amount, start_amount, price, next_period) VALUES (2, 5032, 420, 420, 35, 1); +INSERT IGNORE INTO castle_manor_procure (castle_id, crop_id, amount, start_amount, price, reward_type, next_period) VALUES (2, 5084, 467, 467, 500, 1, 1); +INSERT IGNORE INTO castle_manor_production (castle_id, seed_id, amount, start_amount, price, next_period) VALUES (2, 5666, 1165, 1165, 35, 0); +INSERT IGNORE INTO castle_manor_procure (castle_id, crop_id, amount, start_amount, price, reward_type, next_period) VALUES (2, 5830, 116, 116, 500, 1, 0); +INSERT IGNORE INTO castle_manor_production (castle_id, seed_id, amount, start_amount, price, next_period) VALUES (2, 5666, 1165, 1165, 35, 1); +INSERT IGNORE INTO castle_manor_procure (castle_id, crop_id, amount, start_amount, price, reward_type, next_period) VALUES (2, 5830, 116, 116, 500, 1, 1); +INSERT IGNORE INTO castle_manor_production (castle_id, seed_id, amount, start_amount, price, next_period) VALUES (2, 7052, 524, 524, 28, 0); +INSERT IGNORE INTO castle_manor_procure (castle_id, crop_id, amount, start_amount, price, reward_type, next_period) VALUES (2, 5088, 583, 583, 400, 1, 0); +INSERT IGNORE INTO castle_manor_production (castle_id, seed_id, amount, start_amount, price, next_period) VALUES (2, 7052, 524, 524, 28, 1); +INSERT IGNORE INTO castle_manor_procure (castle_id, crop_id, amount, start_amount, price, reward_type, next_period) VALUES (2, 5088, 583, 583, 400, 1, 1); +INSERT IGNORE INTO castle_manor_production (castle_id, seed_id, amount, start_amount, price, next_period) VALUES (2, 7045, 1460, 1460, 28, 0); +INSERT IGNORE INTO castle_manor_procure (castle_id, crop_id, amount, start_amount, price, reward_type, next_period) VALUES (2, 5831, 146, 146, 400, 1, 0); +INSERT IGNORE INTO castle_manor_production (castle_id, seed_id, amount, start_amount, price, next_period) VALUES (2, 7045, 1460, 1460, 28, 1); +INSERT IGNORE INTO castle_manor_procure (castle_id, crop_id, amount, start_amount, price, reward_type, next_period) VALUES (2, 5831, 146, 146, 400, 1, 1); +INSERT IGNORE INTO castle_manor_production (castle_id, seed_id, amount, start_amount, price, next_period) VALUES (2, 7054, 420, 420, 35, 0); +INSERT IGNORE INTO castle_manor_procure (castle_id, crop_id, amount, start_amount, price, reward_type, next_period) VALUES (2, 5091, 467, 467, 500, 1, 0); +INSERT IGNORE INTO castle_manor_production (castle_id, seed_id, amount, start_amount, price, next_period) VALUES (2, 7054, 420, 420, 35, 1); +INSERT IGNORE INTO castle_manor_procure (castle_id, crop_id, amount, start_amount, price, reward_type, next_period) VALUES (2, 5091, 467, 467, 500, 1, 1); +INSERT IGNORE INTO castle_manor_production (castle_id, seed_id, amount, start_amount, price, next_period) VALUES (2, 7047, 1165, 1165, 35, 0); +INSERT IGNORE INTO castle_manor_procure (castle_id, crop_id, amount, start_amount, price, reward_type, next_period) VALUES (2, 5832, 116, 116, 500, 1, 0); +INSERT IGNORE INTO castle_manor_production (castle_id, seed_id, amount, start_amount, price, next_period) VALUES (2, 7047, 1165, 1165, 35, 1); +INSERT IGNORE INTO castle_manor_procure (castle_id, crop_id, amount, start_amount, price, reward_type, next_period) VALUES (2, 5832, 116, 116, 500, 1, 1); +INSERT IGNORE INTO castle_manor_production (castle_id, seed_id, amount, start_amount, price, next_period) VALUES (3, 5033, 1125, 1125, 14, 0); +INSERT IGNORE INTO castle_manor_procure (castle_id, crop_id, amount, start_amount, price, reward_type, next_period) VALUES (3, 5078, 1250, 1250, 200, 1, 0); +INSERT IGNORE INTO castle_manor_production (castle_id, seed_id, amount, start_amount, price, next_period) VALUES (3, 5033, 1125, 1125, 14, 1); +INSERT IGNORE INTO castle_manor_procure (castle_id, crop_id, amount, start_amount, price, reward_type, next_period) VALUES (3, 5078, 1250, 1250, 200, 1, 1); +INSERT IGNORE INTO castle_manor_production (castle_id, seed_id, amount, start_amount, price, next_period) VALUES (3, 5667, 3125, 3125, 14, 0); +INSERT IGNORE INTO castle_manor_procure (castle_id, crop_id, amount, start_amount, price, reward_type, next_period) VALUES (3, 5825, 312, 312, 200, 1, 0); +INSERT IGNORE INTO castle_manor_production (castle_id, seed_id, amount, start_amount, price, next_period) VALUES (3, 5667, 3125, 3125, 14, 1); +INSERT IGNORE INTO castle_manor_procure (castle_id, crop_id, amount, start_amount, price, reward_type, next_period) VALUES (3, 5825, 312, 312, 200, 1, 1); +INSERT IGNORE INTO castle_manor_production (castle_id, seed_id, amount, start_amount, price, next_period) VALUES (3, 5034, 900, 900, 17, 0); +INSERT IGNORE INTO castle_manor_procure (castle_id, crop_id, amount, start_amount, price, reward_type, next_period) VALUES (3, 5075, 1000, 1000, 250, 1, 0); +INSERT IGNORE INTO castle_manor_production (castle_id, seed_id, amount, start_amount, price, next_period) VALUES (3, 5034, 900, 900, 17, 1); +INSERT IGNORE INTO castle_manor_procure (castle_id, crop_id, amount, start_amount, price, reward_type, next_period) VALUES (3, 5075, 1000, 1000, 250, 1, 1); +INSERT IGNORE INTO castle_manor_production (castle_id, seed_id, amount, start_amount, price, next_period) VALUES (3, 5668, 2500, 2500, 17, 0); +INSERT IGNORE INTO castle_manor_procure (castle_id, crop_id, amount, start_amount, price, reward_type, next_period) VALUES (3, 5826, 250, 250, 250, 1, 0); +INSERT IGNORE INTO castle_manor_production (castle_id, seed_id, amount, start_amount, price, next_period) VALUES (3, 5668, 2500, 2500, 17, 1); +INSERT IGNORE INTO castle_manor_procure (castle_id, crop_id, amount, start_amount, price, reward_type, next_period) VALUES (3, 5826, 250, 250, 250, 1, 1); +INSERT IGNORE INTO castle_manor_production (castle_id, seed_id, amount, start_amount, price, next_period) VALUES (3, 5035, 450, 450, 35, 0); +INSERT IGNORE INTO castle_manor_procure (castle_id, crop_id, amount, start_amount, price, reward_type, next_period) VALUES (3, 5077, 500, 500, 500, 1, 0); +INSERT IGNORE INTO castle_manor_production (castle_id, seed_id, amount, start_amount, price, next_period) VALUES (3, 5035, 450, 450, 35, 1); +INSERT IGNORE INTO castle_manor_procure (castle_id, crop_id, amount, start_amount, price, reward_type, next_period) VALUES (3, 5077, 500, 500, 500, 1, 1); +INSERT IGNORE INTO castle_manor_production (castle_id, seed_id, amount, start_amount, price, next_period) VALUES (3, 5669, 1250, 1250, 35, 0); +INSERT IGNORE INTO castle_manor_procure (castle_id, crop_id, amount, start_amount, price, reward_type, next_period) VALUES (3, 5827, 125, 125, 500, 1, 0); +INSERT IGNORE INTO castle_manor_production (castle_id, seed_id, amount, start_amount, price, next_period) VALUES (3, 5669, 1250, 1250, 35, 1); +INSERT IGNORE INTO castle_manor_procure (castle_id, crop_id, amount, start_amount, price, reward_type, next_period) VALUES (3, 5827, 125, 125, 500, 1, 1); +INSERT IGNORE INTO castle_manor_production (castle_id, seed_id, amount, start_amount, price, next_period) VALUES (3, 5036, 450, 450, 35, 0); +INSERT IGNORE INTO castle_manor_procure (castle_id, crop_id, amount, start_amount, price, reward_type, next_period) VALUES (3, 5082, 500, 500, 500, 1, 0); +INSERT IGNORE INTO castle_manor_production (castle_id, seed_id, amount, start_amount, price, next_period) VALUES (3, 5036, 450, 450, 35, 1); +INSERT IGNORE INTO castle_manor_procure (castle_id, crop_id, amount, start_amount, price, reward_type, next_period) VALUES (3, 5082, 500, 500, 500, 1, 1); +INSERT IGNORE INTO castle_manor_production (castle_id, seed_id, amount, start_amount, price, next_period) VALUES (3, 5670, 1250, 1250, 35, 0); +INSERT IGNORE INTO castle_manor_procure (castle_id, crop_id, amount, start_amount, price, reward_type, next_period) VALUES (3, 5828, 125, 125, 500, 1, 0); +INSERT IGNORE INTO castle_manor_production (castle_id, seed_id, amount, start_amount, price, next_period) VALUES (3, 5670, 1250, 1250, 35, 1); +INSERT IGNORE INTO castle_manor_procure (castle_id, crop_id, amount, start_amount, price, reward_type, next_period) VALUES (3, 5828, 125, 125, 500, 1, 1); +INSERT IGNORE INTO castle_manor_production (castle_id, seed_id, amount, start_amount, price, next_period) VALUES (3, 5037, 450, 450, 35, 0); +INSERT IGNORE INTO castle_manor_procure (castle_id, crop_id, amount, start_amount, price, reward_type, next_period) VALUES (3, 5079, 500, 500, 500, 1, 0); +INSERT IGNORE INTO castle_manor_production (castle_id, seed_id, amount, start_amount, price, next_period) VALUES (3, 5037, 450, 450, 35, 1); +INSERT IGNORE INTO castle_manor_procure (castle_id, crop_id, amount, start_amount, price, reward_type, next_period) VALUES (3, 5079, 500, 500, 500, 1, 1); +INSERT IGNORE INTO castle_manor_production (castle_id, seed_id, amount, start_amount, price, next_period) VALUES (3, 5671, 1250, 1250, 35, 0); +INSERT IGNORE INTO castle_manor_procure (castle_id, crop_id, amount, start_amount, price, reward_type, next_period) VALUES (3, 5829, 125, 125, 500, 1, 0); +INSERT IGNORE INTO castle_manor_production (castle_id, seed_id, amount, start_amount, price, next_period) VALUES (3, 5671, 1250, 1250, 35, 1); +INSERT IGNORE INTO castle_manor_procure (castle_id, crop_id, amount, start_amount, price, reward_type, next_period) VALUES (3, 5829, 125, 125, 500, 1, 1); +INSERT IGNORE INTO castle_manor_production (castle_id, seed_id, amount, start_amount, price, next_period) VALUES (3, 5038, 450, 450, 35, 0); +INSERT IGNORE INTO castle_manor_procure (castle_id, crop_id, amount, start_amount, price, reward_type, next_period) VALUES (3, 5084, 500, 500, 500, 1, 0); +INSERT IGNORE INTO castle_manor_production (castle_id, seed_id, amount, start_amount, price, next_period) VALUES (3, 5038, 450, 450, 35, 1); +INSERT IGNORE INTO castle_manor_procure (castle_id, crop_id, amount, start_amount, price, reward_type, next_period) VALUES (3, 5084, 500, 500, 500, 1, 1); +INSERT IGNORE INTO castle_manor_production (castle_id, seed_id, amount, start_amount, price, next_period) VALUES (3, 5672, 1250, 1250, 35, 0); +INSERT IGNORE INTO castle_manor_procure (castle_id, crop_id, amount, start_amount, price, reward_type, next_period) VALUES (3, 5830, 125, 125, 500, 1, 0); +INSERT IGNORE INTO castle_manor_production (castle_id, seed_id, amount, start_amount, price, next_period) VALUES (3, 5672, 1250, 1250, 35, 1); +INSERT IGNORE INTO castle_manor_procure (castle_id, crop_id, amount, start_amount, price, reward_type, next_period) VALUES (3, 5830, 125, 125, 500, 1, 1); +INSERT IGNORE INTO castle_manor_production (castle_id, seed_id, amount, start_amount, price, next_period) VALUES (3, 5039, 562, 562, 28, 0); +INSERT IGNORE INTO castle_manor_procure (castle_id, crop_id, amount, start_amount, price, reward_type, next_period) VALUES (3, 5088, 625, 625, 400, 1, 0); +INSERT IGNORE INTO castle_manor_production (castle_id, seed_id, amount, start_amount, price, next_period) VALUES (3, 5039, 562, 562, 28, 1); +INSERT IGNORE INTO castle_manor_procure (castle_id, crop_id, amount, start_amount, price, reward_type, next_period) VALUES (3, 5088, 625, 625, 400, 1, 1); +INSERT IGNORE INTO castle_manor_production (castle_id, seed_id, amount, start_amount, price, next_period) VALUES (3, 5673, 1565, 1565, 28, 0); +INSERT IGNORE INTO castle_manor_procure (castle_id, crop_id, amount, start_amount, price, reward_type, next_period) VALUES (3, 5831, 156, 156, 400, 1, 0); +INSERT IGNORE INTO castle_manor_production (castle_id, seed_id, amount, start_amount, price, next_period) VALUES (3, 5673, 1565, 1565, 28, 1); +INSERT IGNORE INTO castle_manor_procure (castle_id, crop_id, amount, start_amount, price, reward_type, next_period) VALUES (3, 5831, 156, 156, 400, 1, 1); +INSERT IGNORE INTO castle_manor_production (castle_id, seed_id, amount, start_amount, price, next_period) VALUES (3, 7055, 450, 450, 35, 0); +INSERT IGNORE INTO castle_manor_procure (castle_id, crop_id, amount, start_amount, price, reward_type, next_period) VALUES (3, 5091, 500, 500, 500, 1, 0); +INSERT IGNORE INTO castle_manor_production (castle_id, seed_id, amount, start_amount, price, next_period) VALUES (3, 7055, 450, 450, 35, 1); +INSERT IGNORE INTO castle_manor_procure (castle_id, crop_id, amount, start_amount, price, reward_type, next_period) VALUES (3, 5091, 500, 500, 500, 1, 1); +INSERT IGNORE INTO castle_manor_production (castle_id, seed_id, amount, start_amount, price, next_period) VALUES (3, 7048, 1250, 1250, 35, 0); +INSERT IGNORE INTO castle_manor_procure (castle_id, crop_id, amount, start_amount, price, reward_type, next_period) VALUES (3, 5832, 125, 125, 500, 1, 0); +INSERT IGNORE INTO castle_manor_production (castle_id, seed_id, amount, start_amount, price, next_period) VALUES (3, 7048, 1250, 1250, 35, 1); +INSERT IGNORE INTO castle_manor_procure (castle_id, crop_id, amount, start_amount, price, reward_type, next_period) VALUES (3, 5832, 125, 125, 500, 1, 1); +INSERT IGNORE INTO castle_manor_production (castle_id, seed_id, amount, start_amount, price, next_period) VALUES (3, 7022, 562, 562, 28, 0); +INSERT IGNORE INTO castle_manor_procure (castle_id, crop_id, amount, start_amount, price, reward_type, next_period) VALUES (3, 5085, 625, 625, 400, 1, 0); +INSERT IGNORE INTO castle_manor_production (castle_id, seed_id, amount, start_amount, price, next_period) VALUES (3, 7022, 562, 562, 28, 1); +INSERT IGNORE INTO castle_manor_procure (castle_id, crop_id, amount, start_amount, price, reward_type, next_period) VALUES (3, 5085, 625, 625, 400, 1, 1); +INSERT IGNORE INTO castle_manor_production (castle_id, seed_id, amount, start_amount, price, next_period) VALUES (3, 7036, 1565, 1565, 28, 0); +INSERT IGNORE INTO castle_manor_procure (castle_id, crop_id, amount, start_amount, price, reward_type, next_period) VALUES (3, 5833, 156, 156, 400, 1, 0); +INSERT IGNORE INTO castle_manor_production (castle_id, seed_id, amount, start_amount, price, next_period) VALUES (3, 7036, 1565, 1565, 28, 1); +INSERT IGNORE INTO castle_manor_procure (castle_id, crop_id, amount, start_amount, price, reward_type, next_period) VALUES (3, 5833, 156, 156, 400, 1, 1); +INSERT IGNORE INTO castle_manor_production (castle_id, seed_id, amount, start_amount, price, next_period) VALUES (3, 7018, 450, 450, 35, 0); +INSERT IGNORE INTO castle_manor_procure (castle_id, crop_id, amount, start_amount, price, reward_type, next_period) VALUES (3, 5087, 500, 500, 500, 1, 0); +INSERT IGNORE INTO castle_manor_production (castle_id, seed_id, amount, start_amount, price, next_period) VALUES (3, 7018, 450, 450, 35, 1); +INSERT IGNORE INTO castle_manor_procure (castle_id, crop_id, amount, start_amount, price, reward_type, next_period) VALUES (3, 5087, 500, 500, 500, 1, 1); +INSERT IGNORE INTO castle_manor_production (castle_id, seed_id, amount, start_amount, price, next_period) VALUES (3, 7032, 1250, 1250, 35, 0); +INSERT IGNORE INTO castle_manor_procure (castle_id, crop_id, amount, start_amount, price, reward_type, next_period) VALUES (3, 5834, 125, 125, 500, 1, 0); +INSERT IGNORE INTO castle_manor_production (castle_id, seed_id, amount, start_amount, price, next_period) VALUES (3, 7032, 1250, 1250, 35, 1); +INSERT IGNORE INTO castle_manor_procure (castle_id, crop_id, amount, start_amount, price, reward_type, next_period) VALUES (3, 5834, 125, 125, 500, 1, 1); +INSERT IGNORE INTO castle_manor_production (castle_id, seed_id, amount, start_amount, price, next_period) VALUES (3, 5040, 450, 450, 35, 0); +INSERT IGNORE INTO castle_manor_procure (castle_id, crop_id, amount, start_amount, price, reward_type, next_period) VALUES (3, 5092, 500, 500, 500, 1, 0); +INSERT IGNORE INTO castle_manor_production (castle_id, seed_id, amount, start_amount, price, next_period) VALUES (3, 5040, 450, 450, 35, 1); +INSERT IGNORE INTO castle_manor_procure (castle_id, crop_id, amount, start_amount, price, reward_type, next_period) VALUES (3, 5092, 500, 500, 500, 1, 1); +INSERT IGNORE INTO castle_manor_production (castle_id, seed_id, amount, start_amount, price, next_period) VALUES (3, 5674, 1250, 1250, 35, 0); +INSERT IGNORE INTO castle_manor_procure (castle_id, crop_id, amount, start_amount, price, reward_type, next_period) VALUES (3, 5835, 125, 125, 500, 1, 0); +INSERT IGNORE INTO castle_manor_production (castle_id, seed_id, amount, start_amount, price, next_period) VALUES (3, 5674, 1250, 1250, 35, 1); +INSERT IGNORE INTO castle_manor_procure (castle_id, crop_id, amount, start_amount, price, reward_type, next_period) VALUES (3, 5835, 125, 125, 500, 1, 1); +INSERT IGNORE INTO castle_manor_production (castle_id, seed_id, amount, start_amount, price, next_period) VALUES (3, 7029, 299, 299, 52, 0); +INSERT IGNORE INTO castle_manor_procure (castle_id, crop_id, amount, start_amount, price, reward_type, next_period) VALUES (3, 5094, 333, 333, 750, 1, 0); +INSERT IGNORE INTO castle_manor_production (castle_id, seed_id, amount, start_amount, price, next_period) VALUES (3, 7029, 299, 299, 52, 1); +INSERT IGNORE INTO castle_manor_procure (castle_id, crop_id, amount, start_amount, price, reward_type, next_period) VALUES (3, 5094, 333, 333, 750, 1, 1); +INSERT IGNORE INTO castle_manor_production (castle_id, seed_id, amount, start_amount, price, next_period) VALUES (3, 7043, 835, 835, 52, 0); +INSERT IGNORE INTO castle_manor_procure (castle_id, crop_id, amount, start_amount, price, reward_type, next_period) VALUES (3, 5836, 83, 83, 750, 1, 0); +INSERT IGNORE INTO castle_manor_production (castle_id, seed_id, amount, start_amount, price, next_period) VALUES (3, 7043, 835, 835, 52, 1); +INSERT IGNORE INTO castle_manor_procure (castle_id, crop_id, amount, start_amount, price, reward_type, next_period) VALUES (3, 5836, 83, 83, 750, 1, 1); +INSERT IGNORE INTO castle_manor_production (castle_id, seed_id, amount, start_amount, price, next_period) VALUES (3, 5041, 225, 225, 70, 0); +INSERT IGNORE INTO castle_manor_procure (castle_id, crop_id, amount, start_amount, price, reward_type, next_period) VALUES (3, 5090, 250, 250, 1000, 1, 0); +INSERT IGNORE INTO castle_manor_production (castle_id, seed_id, amount, start_amount, price, next_period) VALUES (3, 5041, 225, 225, 70, 1); +INSERT IGNORE INTO castle_manor_procure (castle_id, crop_id, amount, start_amount, price, reward_type, next_period) VALUES (3, 5090, 250, 250, 1000, 1, 1); +INSERT IGNORE INTO castle_manor_production (castle_id, seed_id, amount, start_amount, price, next_period) VALUES (3, 5675, 625, 625, 70, 0); +INSERT IGNORE INTO castle_manor_procure (castle_id, crop_id, amount, start_amount, price, reward_type, next_period) VALUES (3, 5837, 62, 62, 1000, 1, 0); +INSERT IGNORE INTO castle_manor_production (castle_id, seed_id, amount, start_amount, price, next_period) VALUES (3, 5675, 625, 625, 70, 1); +INSERT IGNORE INTO castle_manor_procure (castle_id, crop_id, amount, start_amount, price, reward_type, next_period) VALUES (3, 5837, 62, 62, 1000, 1, 1); +INSERT IGNORE INTO castle_manor_production (castle_id, seed_id, amount, start_amount, price, next_period) VALUES (3, 6769, 180, 180, 280, 0); +INSERT IGNORE INTO castle_manor_procure (castle_id, crop_id, amount, start_amount, price, reward_type, next_period) VALUES (3, 6541, 200, 200, 1250, 1, 0); +INSERT IGNORE INTO castle_manor_production (castle_id, seed_id, amount, start_amount, price, next_period) VALUES (3, 6769, 180, 180, 280, 1); +INSERT IGNORE INTO castle_manor_procure (castle_id, crop_id, amount, start_amount, price, reward_type, next_period) VALUES (3, 6541, 200, 200, 1250, 1, 1); +INSERT IGNORE INTO castle_manor_production (castle_id, seed_id, amount, start_amount, price, next_period) VALUES (3, 6743, 131, 131, 280, 0); +INSERT IGNORE INTO castle_manor_procure (castle_id, crop_id, amount, start_amount, price, reward_type, next_period) VALUES (3, 6548, 50, 50, 1250, 1, 0); +INSERT IGNORE INTO castle_manor_production (castle_id, seed_id, amount, start_amount, price, next_period) VALUES (3, 6743, 131, 131, 280, 1); +INSERT IGNORE INTO castle_manor_procure (castle_id, crop_id, amount, start_amount, price, reward_type, next_period) VALUES (3, 6548, 50, 50, 1250, 1, 1); +INSERT IGNORE INTO castle_manor_production (castle_id, seed_id, amount, start_amount, price, next_period) VALUES (3, 6757, 150, 150, 350, 0); +INSERT IGNORE INTO castle_manor_procure (castle_id, crop_id, amount, start_amount, price, reward_type, next_period) VALUES (3, 6542, 167, 167, 1500, 1, 0); +INSERT IGNORE INTO castle_manor_production (castle_id, seed_id, amount, start_amount, price, next_period) VALUES (3, 6757, 150, 150, 350, 1); +INSERT IGNORE INTO castle_manor_procure (castle_id, crop_id, amount, start_amount, price, reward_type, next_period) VALUES (3, 6542, 167, 167, 1500, 1, 1); +INSERT IGNORE INTO castle_manor_production (castle_id, seed_id, amount, start_amount, price, next_period) VALUES (3, 6731, 109, 109, 350, 0); +INSERT IGNORE INTO castle_manor_procure (castle_id, crop_id, amount, start_amount, price, reward_type, next_period) VALUES (3, 6549, 41, 41, 1500, 1, 0); +INSERT IGNORE INTO castle_manor_production (castle_id, seed_id, amount, start_amount, price, next_period) VALUES (3, 6731, 109, 109, 350, 1); +INSERT IGNORE INTO castle_manor_procure (castle_id, crop_id, amount, start_amount, price, reward_type, next_period) VALUES (3, 6549, 41, 41, 1500, 1, 1); +INSERT IGNORE INTO castle_manor_production (castle_id, seed_id, amount, start_amount, price, next_period) VALUES (3, 6773, 128, 128, 454, 0); +INSERT IGNORE INTO castle_manor_procure (castle_id, crop_id, amount, start_amount, price, reward_type, next_period) VALUES (3, 6543, 143, 143, 1750, 1, 0); +INSERT IGNORE INTO castle_manor_production (castle_id, seed_id, amount, start_amount, price, next_period) VALUES (3, 6773, 128, 128, 454, 1); +INSERT IGNORE INTO castle_manor_procure (castle_id, crop_id, amount, start_amount, price, reward_type, next_period) VALUES (3, 6543, 143, 143, 1750, 1, 1); +INSERT IGNORE INTO castle_manor_production (castle_id, seed_id, amount, start_amount, price, next_period) VALUES (3, 6747, 93, 93, 454, 0); +INSERT IGNORE INTO castle_manor_procure (castle_id, crop_id, amount, start_amount, price, reward_type, next_period) VALUES (3, 6550, 35, 35, 1750, 1, 0); +INSERT IGNORE INTO castle_manor_production (castle_id, seed_id, amount, start_amount, price, next_period) VALUES (3, 6747, 93, 93, 454, 1); +INSERT IGNORE INTO castle_manor_procure (castle_id, crop_id, amount, start_amount, price, reward_type, next_period) VALUES (3, 6550, 35, 35, 1750, 1, 1); +INSERT IGNORE INTO castle_manor_production (castle_id, seed_id, amount, start_amount, price, next_period) VALUES (5, 5053, 630, 630, 35, 0); +INSERT IGNORE INTO castle_manor_procure (castle_id, crop_id, amount, start_amount, price, reward_type, next_period) VALUES (5, 5082, 700, 700, 500, 1, 0); +INSERT IGNORE INTO castle_manor_production (castle_id, seed_id, amount, start_amount, price, next_period) VALUES (5, 5053, 630, 630, 35, 1); +INSERT IGNORE INTO castle_manor_procure (castle_id, crop_id, amount, start_amount, price, reward_type, next_period) VALUES (5, 5082, 700, 700, 500, 1, 1); +INSERT IGNORE INTO castle_manor_production (castle_id, seed_id, amount, start_amount, price, next_period) VALUES (5, 5687, 1750, 1750, 35, 0); +INSERT IGNORE INTO castle_manor_procure (castle_id, crop_id, amount, start_amount, price, reward_type, next_period) VALUES (5, 5828, 175, 175, 500, 1, 0); +INSERT IGNORE INTO castle_manor_production (castle_id, seed_id, amount, start_amount, price, next_period) VALUES (5, 5687, 1750, 1750, 35, 1); +INSERT IGNORE INTO castle_manor_procure (castle_id, crop_id, amount, start_amount, price, reward_type, next_period) VALUES (5, 5828, 175, 175, 500, 1, 1); +INSERT IGNORE INTO castle_manor_production (castle_id, seed_id, amount, start_amount, price, next_period) VALUES (5, 5054, 630, 630, 35, 0); +INSERT IGNORE INTO castle_manor_procure (castle_id, crop_id, amount, start_amount, price, reward_type, next_period) VALUES (5, 5079, 700, 700, 500, 1, 0); +INSERT IGNORE INTO castle_manor_production (castle_id, seed_id, amount, start_amount, price, next_period) VALUES (5, 5054, 630, 630, 35, 1); +INSERT IGNORE INTO castle_manor_procure (castle_id, crop_id, amount, start_amount, price, reward_type, next_period) VALUES (5, 5079, 700, 700, 500, 1, 1); +INSERT IGNORE INTO castle_manor_production (castle_id, seed_id, amount, start_amount, price, next_period) VALUES (5, 5688, 1750, 1750, 35, 0); +INSERT IGNORE INTO castle_manor_procure (castle_id, crop_id, amount, start_amount, price, reward_type, next_period) VALUES (5, 5829, 175, 175, 500, 1, 0); +INSERT IGNORE INTO castle_manor_production (castle_id, seed_id, amount, start_amount, price, next_period) VALUES (5, 5688, 1750, 1750, 35, 1); +INSERT IGNORE INTO castle_manor_procure (castle_id, crop_id, amount, start_amount, price, reward_type, next_period) VALUES (5, 5829, 175, 175, 500, 1, 1); +INSERT IGNORE INTO castle_manor_production (castle_id, seed_id, amount, start_amount, price, next_period) VALUES (5, 5055, 630, 630, 35, 0); +INSERT IGNORE INTO castle_manor_procure (castle_id, crop_id, amount, start_amount, price, reward_type, next_period) VALUES (5, 5084, 700, 700, 500, 1, 0); +INSERT IGNORE INTO castle_manor_production (castle_id, seed_id, amount, start_amount, price, next_period) VALUES (5, 5055, 630, 630, 35, 1); +INSERT IGNORE INTO castle_manor_procure (castle_id, crop_id, amount, start_amount, price, reward_type, next_period) VALUES (5, 5084, 700, 700, 500, 1, 1); +INSERT IGNORE INTO castle_manor_production (castle_id, seed_id, amount, start_amount, price, next_period) VALUES (5, 5689, 1750, 1750, 35, 0); +INSERT IGNORE INTO castle_manor_procure (castle_id, crop_id, amount, start_amount, price, reward_type, next_period) VALUES (5, 5830, 175, 175, 500, 1, 0); +INSERT IGNORE INTO castle_manor_production (castle_id, seed_id, amount, start_amount, price, next_period) VALUES (5, 5689, 1750, 1750, 35, 1); +INSERT IGNORE INTO castle_manor_procure (castle_id, crop_id, amount, start_amount, price, reward_type, next_period) VALUES (5, 5830, 175, 175, 500, 1, 1); +INSERT IGNORE INTO castle_manor_production (castle_id, seed_id, amount, start_amount, price, next_period) VALUES (5, 5056, 787, 787, 28, 0); +INSERT IGNORE INTO castle_manor_procure (castle_id, crop_id, amount, start_amount, price, reward_type, next_period) VALUES (5, 5088, 875, 875, 400, 1, 0); +INSERT IGNORE INTO castle_manor_production (castle_id, seed_id, amount, start_amount, price, next_period) VALUES (5, 5056, 787, 787, 28, 1); +INSERT IGNORE INTO castle_manor_procure (castle_id, crop_id, amount, start_amount, price, reward_type, next_period) VALUES (5, 5088, 875, 875, 400, 1, 1); +INSERT IGNORE INTO castle_manor_production (castle_id, seed_id, amount, start_amount, price, next_period) VALUES (5, 5690, 2190, 2190, 28, 0); +INSERT IGNORE INTO castle_manor_procure (castle_id, crop_id, amount, start_amount, price, reward_type, next_period) VALUES (5, 5831, 219, 219, 400, 1, 0); +INSERT IGNORE INTO castle_manor_production (castle_id, seed_id, amount, start_amount, price, next_period) VALUES (5, 5690, 2190, 2190, 28, 1); +INSERT IGNORE INTO castle_manor_procure (castle_id, crop_id, amount, start_amount, price, reward_type, next_period) VALUES (5, 5831, 219, 219, 400, 1, 1); +INSERT IGNORE INTO castle_manor_production (castle_id, seed_id, amount, start_amount, price, next_period) VALUES (5, 7056, 630, 630, 35, 0); +INSERT IGNORE INTO castle_manor_procure (castle_id, crop_id, amount, start_amount, price, reward_type, next_period) VALUES (5, 5091, 700, 700, 500, 1, 0); +INSERT IGNORE INTO castle_manor_production (castle_id, seed_id, amount, start_amount, price, next_period) VALUES (5, 7056, 630, 630, 35, 1); +INSERT IGNORE INTO castle_manor_procure (castle_id, crop_id, amount, start_amount, price, reward_type, next_period) VALUES (5, 5091, 700, 700, 500, 1, 1); +INSERT IGNORE INTO castle_manor_production (castle_id, seed_id, amount, start_amount, price, next_period) VALUES (5, 7049, 1750, 1750, 35, 0); +INSERT IGNORE INTO castle_manor_procure (castle_id, crop_id, amount, start_amount, price, reward_type, next_period) VALUES (5, 5832, 175, 175, 500, 1, 0); +INSERT IGNORE INTO castle_manor_production (castle_id, seed_id, amount, start_amount, price, next_period) VALUES (5, 7049, 1750, 1750, 35, 1); +INSERT IGNORE INTO castle_manor_procure (castle_id, crop_id, amount, start_amount, price, reward_type, next_period) VALUES (5, 5832, 175, 175, 500, 1, 1); +INSERT IGNORE INTO castle_manor_production (castle_id, seed_id, amount, start_amount, price, next_period) VALUES (5, 5057, 787, 787, 28, 0); +INSERT IGNORE INTO castle_manor_procure (castle_id, crop_id, amount, start_amount, price, reward_type, next_period) VALUES (5, 5085, 875, 875, 400, 1, 0); +INSERT IGNORE INTO castle_manor_production (castle_id, seed_id, amount, start_amount, price, next_period) VALUES (5, 5057, 787, 787, 28, 1); +INSERT IGNORE INTO castle_manor_procure (castle_id, crop_id, amount, start_amount, price, reward_type, next_period) VALUES (5, 5085, 875, 875, 400, 1, 1); +INSERT IGNORE INTO castle_manor_production (castle_id, seed_id, amount, start_amount, price, next_period) VALUES (5, 5691, 2190, 2190, 28, 0); +INSERT IGNORE INTO castle_manor_procure (castle_id, crop_id, amount, start_amount, price, reward_type, next_period) VALUES (5, 5833, 219, 219, 400, 1, 0); +INSERT IGNORE INTO castle_manor_production (castle_id, seed_id, amount, start_amount, price, next_period) VALUES (5, 5691, 2190, 2190, 28, 1); +INSERT IGNORE INTO castle_manor_procure (castle_id, crop_id, amount, start_amount, price, reward_type, next_period) VALUES (5, 5833, 219, 219, 400, 1, 1); +INSERT IGNORE INTO castle_manor_production (castle_id, seed_id, amount, start_amount, price, next_period) VALUES (5, 5058, 630, 630, 35, 0); +INSERT IGNORE INTO castle_manor_procure (castle_id, crop_id, amount, start_amount, price, reward_type, next_period) VALUES (5, 5087, 700, 700, 500, 1, 0); +INSERT IGNORE INTO castle_manor_production (castle_id, seed_id, amount, start_amount, price, next_period) VALUES (5, 5058, 630, 630, 35, 1); +INSERT IGNORE INTO castle_manor_procure (castle_id, crop_id, amount, start_amount, price, reward_type, next_period) VALUES (5, 5087, 700, 700, 500, 1, 1); +INSERT IGNORE INTO castle_manor_production (castle_id, seed_id, amount, start_amount, price, next_period) VALUES (5, 5692, 1750, 1750, 35, 0); +INSERT IGNORE INTO castle_manor_procure (castle_id, crop_id, amount, start_amount, price, reward_type, next_period) VALUES (5, 5834, 175, 175, 500, 1, 0); +INSERT IGNORE INTO castle_manor_production (castle_id, seed_id, amount, start_amount, price, next_period) VALUES (5, 5692, 1750, 1750, 35, 1); +INSERT IGNORE INTO castle_manor_procure (castle_id, crop_id, amount, start_amount, price, reward_type, next_period) VALUES (5, 5834, 175, 175, 500, 1, 1); +INSERT IGNORE INTO castle_manor_production (castle_id, seed_id, amount, start_amount, price, next_period) VALUES (5, 5059, 630, 630, 35, 0); +INSERT IGNORE INTO castle_manor_procure (castle_id, crop_id, amount, start_amount, price, reward_type, next_period) VALUES (5, 5092, 700, 700, 500, 1, 0); +INSERT IGNORE INTO castle_manor_production (castle_id, seed_id, amount, start_amount, price, next_period) VALUES (5, 5059, 630, 630, 35, 1); +INSERT IGNORE INTO castle_manor_procure (castle_id, crop_id, amount, start_amount, price, reward_type, next_period) VALUES (5, 5092, 700, 700, 500, 1, 1); +INSERT IGNORE INTO castle_manor_production (castle_id, seed_id, amount, start_amount, price, next_period) VALUES (5, 5693, 1750, 1750, 35, 0); +INSERT IGNORE INTO castle_manor_procure (castle_id, crop_id, amount, start_amount, price, reward_type, next_period) VALUES (5, 5835, 175, 175, 500, 1, 0); +INSERT IGNORE INTO castle_manor_production (castle_id, seed_id, amount, start_amount, price, next_period) VALUES (5, 5693, 1750, 1750, 35, 1); +INSERT IGNORE INTO castle_manor_procure (castle_id, crop_id, amount, start_amount, price, reward_type, next_period) VALUES (5, 5835, 175, 175, 500, 1, 1); +INSERT IGNORE INTO castle_manor_production (castle_id, seed_id, amount, start_amount, price, next_period) VALUES (5, 5060, 420, 420, 52, 0); +INSERT IGNORE INTO castle_manor_procure (castle_id, crop_id, amount, start_amount, price, reward_type, next_period) VALUES (5, 5094, 467, 467, 750, 1, 0); +INSERT IGNORE INTO castle_manor_production (castle_id, seed_id, amount, start_amount, price, next_period) VALUES (5, 5060, 420, 420, 52, 1); +INSERT IGNORE INTO castle_manor_procure (castle_id, crop_id, amount, start_amount, price, reward_type, next_period) VALUES (5, 5094, 467, 467, 750, 1, 1); +INSERT IGNORE INTO castle_manor_production (castle_id, seed_id, amount, start_amount, price, next_period) VALUES (5, 5694, 1165, 1165, 52, 0); +INSERT IGNORE INTO castle_manor_procure (castle_id, crop_id, amount, start_amount, price, reward_type, next_period) VALUES (5, 5836, 116, 116, 750, 1, 0); +INSERT IGNORE INTO castle_manor_production (castle_id, seed_id, amount, start_amount, price, next_period) VALUES (5, 5694, 1165, 1165, 52, 1); +INSERT IGNORE INTO castle_manor_procure (castle_id, crop_id, amount, start_amount, price, reward_type, next_period) VALUES (5, 5836, 116, 116, 750, 1, 1); +INSERT IGNORE INTO castle_manor_production (castle_id, seed_id, amount, start_amount, price, next_period) VALUES (5, 5061, 315, 315, 70, 0); +INSERT IGNORE INTO castle_manor_procure (castle_id, crop_id, amount, start_amount, price, reward_type, next_period) VALUES (5, 5090, 350, 350, 1000, 1, 0); +INSERT IGNORE INTO castle_manor_production (castle_id, seed_id, amount, start_amount, price, next_period) VALUES (5, 5061, 315, 315, 70, 1); +INSERT IGNORE INTO castle_manor_procure (castle_id, crop_id, amount, start_amount, price, reward_type, next_period) VALUES (5, 5090, 350, 350, 1000, 1, 1); +INSERT IGNORE INTO castle_manor_production (castle_id, seed_id, amount, start_amount, price, next_period) VALUES (5, 5695, 875, 875, 70, 0); +INSERT IGNORE INTO castle_manor_procure (castle_id, crop_id, amount, start_amount, price, reward_type, next_period) VALUES (5, 5837, 87, 87, 1000, 1, 0); +INSERT IGNORE INTO castle_manor_production (castle_id, seed_id, amount, start_amount, price, next_period) VALUES (5, 5695, 875, 875, 70, 1); +INSERT IGNORE INTO castle_manor_procure (castle_id, crop_id, amount, start_amount, price, reward_type, next_period) VALUES (5, 5837, 87, 87, 1000, 1, 1); +INSERT IGNORE INTO castle_manor_production (castle_id, seed_id, amount, start_amount, price, next_period) VALUES (5, 6770, 252, 252, 280, 0); +INSERT IGNORE INTO castle_manor_procure (castle_id, crop_id, amount, start_amount, price, reward_type, next_period) VALUES (5, 6541, 280, 280, 1250, 1, 0); +INSERT IGNORE INTO castle_manor_production (castle_id, seed_id, amount, start_amount, price, next_period) VALUES (5, 6770, 252, 252, 280, 1); +INSERT IGNORE INTO castle_manor_procure (castle_id, crop_id, amount, start_amount, price, reward_type, next_period) VALUES (5, 6541, 280, 280, 1250, 1, 1); +INSERT IGNORE INTO castle_manor_production (castle_id, seed_id, amount, start_amount, price, next_period) VALUES (5, 6744, 184, 184, 280, 0); +INSERT IGNORE INTO castle_manor_procure (castle_id, crop_id, amount, start_amount, price, reward_type, next_period) VALUES (5, 6548, 70, 70, 1250, 1, 0); +INSERT IGNORE INTO castle_manor_production (castle_id, seed_id, amount, start_amount, price, next_period) VALUES (5, 6744, 184, 184, 280, 1); +INSERT IGNORE INTO castle_manor_procure (castle_id, crop_id, amount, start_amount, price, reward_type, next_period) VALUES (5, 6548, 70, 70, 1250, 1, 1); +INSERT IGNORE INTO castle_manor_production (castle_id, seed_id, amount, start_amount, price, next_period) VALUES (5, 6758, 209, 209, 350, 0); +INSERT IGNORE INTO castle_manor_procure (castle_id, crop_id, amount, start_amount, price, reward_type, next_period) VALUES (5, 6542, 233, 233, 1500, 1, 0); +INSERT IGNORE INTO castle_manor_production (castle_id, seed_id, amount, start_amount, price, next_period) VALUES (5, 6758, 209, 209, 350, 1); +INSERT IGNORE INTO castle_manor_procure (castle_id, crop_id, amount, start_amount, price, reward_type, next_period) VALUES (5, 6542, 233, 233, 1500, 1, 1); +INSERT IGNORE INTO castle_manor_production (castle_id, seed_id, amount, start_amount, price, next_period) VALUES (5, 6732, 154, 154, 350, 0); +INSERT IGNORE INTO castle_manor_procure (castle_id, crop_id, amount, start_amount, price, reward_type, next_period) VALUES (5, 6549, 58, 58, 1500, 1, 0); +INSERT IGNORE INTO castle_manor_production (castle_id, seed_id, amount, start_amount, price, next_period) VALUES (5, 6732, 154, 154, 350, 1); +INSERT IGNORE INTO castle_manor_procure (castle_id, crop_id, amount, start_amount, price, reward_type, next_period) VALUES (5, 6549, 58, 58, 1500, 1, 1); +INSERT IGNORE INTO castle_manor_production (castle_id, seed_id, amount, start_amount, price, next_period) VALUES (5, 6775, 180, 180, 454, 0); +INSERT IGNORE INTO castle_manor_procure (castle_id, crop_id, amount, start_amount, price, reward_type, next_period) VALUES (5, 6543, 200, 200, 1750, 1, 0); +INSERT IGNORE INTO castle_manor_production (castle_id, seed_id, amount, start_amount, price, next_period) VALUES (5, 6775, 180, 180, 454, 1); +INSERT IGNORE INTO castle_manor_procure (castle_id, crop_id, amount, start_amount, price, reward_type, next_period) VALUES (5, 6543, 200, 200, 1750, 1, 1); +INSERT IGNORE INTO castle_manor_production (castle_id, seed_id, amount, start_amount, price, next_period) VALUES (5, 6749, 131, 131, 454, 0); +INSERT IGNORE INTO castle_manor_procure (castle_id, crop_id, amount, start_amount, price, reward_type, next_period) VALUES (5, 6550, 50, 50, 1750, 1, 0); +INSERT IGNORE INTO castle_manor_production (castle_id, seed_id, amount, start_amount, price, next_period) VALUES (5, 6749, 131, 131, 454, 1); +INSERT IGNORE INTO castle_manor_procure (castle_id, crop_id, amount, start_amount, price, reward_type, next_period) VALUES (5, 6550, 50, 50, 1750, 1, 1); +INSERT IGNORE INTO castle_manor_production (castle_id, seed_id, amount, start_amount, price, next_period) VALUES (5, 6763, 157, 157, 525, 0); +INSERT IGNORE INTO castle_manor_procure (castle_id, crop_id, amount, start_amount, price, reward_type, next_period) VALUES (5, 6544, 175, 175, 2000, 1, 0); +INSERT IGNORE INTO castle_manor_production (castle_id, seed_id, amount, start_amount, price, next_period) VALUES (5, 6763, 157, 157, 525, 1); +INSERT IGNORE INTO castle_manor_procure (castle_id, crop_id, amount, start_amount, price, reward_type, next_period) VALUES (5, 6544, 175, 175, 2000, 1, 1); +INSERT IGNORE INTO castle_manor_production (castle_id, seed_id, amount, start_amount, price, next_period) VALUES (5, 6737, 116, 116, 525, 0); +INSERT IGNORE INTO castle_manor_procure (castle_id, crop_id, amount, start_amount, price, reward_type, next_period) VALUES (5, 6551, 44, 44, 2000, 1, 0); +INSERT IGNORE INTO castle_manor_production (castle_id, seed_id, amount, start_amount, price, next_period) VALUES (5, 6737, 116, 116, 525, 1); +INSERT IGNORE INTO castle_manor_procure (castle_id, crop_id, amount, start_amount, price, reward_type, next_period) VALUES (5, 6551, 44, 44, 2000, 1, 1); +INSERT IGNORE INTO castle_manor_production (castle_id, seed_id, amount, start_amount, price, next_period) VALUES (5, 6755, 140, 140, 630, 0); +INSERT IGNORE INTO castle_manor_procure (castle_id, crop_id, amount, start_amount, price, reward_type, next_period) VALUES (5, 6545, 155, 155, 2250, 1, 0); +INSERT IGNORE INTO castle_manor_production (castle_id, seed_id, amount, start_amount, price, next_period) VALUES (5, 6755, 140, 140, 630, 1); +INSERT IGNORE INTO castle_manor_procure (castle_id, crop_id, amount, start_amount, price, reward_type, next_period) VALUES (5, 6545, 155, 155, 2250, 1, 1); +INSERT IGNORE INTO castle_manor_production (castle_id, seed_id, amount, start_amount, price, next_period) VALUES (5, 6729, 102, 102, 630, 0); +INSERT IGNORE INTO castle_manor_procure (castle_id, crop_id, amount, start_amount, price, reward_type, next_period) VALUES (5, 6552, 39, 39, 2250, 1, 0); +INSERT IGNORE INTO castle_manor_production (castle_id, seed_id, amount, start_amount, price, next_period) VALUES (5, 6729, 102, 102, 630, 1); +INSERT IGNORE INTO castle_manor_procure (castle_id, crop_id, amount, start_amount, price, reward_type, next_period) VALUES (5, 6552, 39, 39, 2250, 1, 1); +INSERT IGNORE INTO castle_manor_production (castle_id, seed_id, amount, start_amount, price, next_period) VALUES (5, 15329, 126, 126, 70, 0); +INSERT IGNORE INTO castle_manor_procure (castle_id, crop_id, amount, start_amount, price, reward_type, next_period) VALUES (5, 6546, 140, 140, 2500, 1, 0); +INSERT IGNORE INTO castle_manor_production (castle_id, seed_id, amount, start_amount, price, next_period) VALUES (5, 15329, 126, 126, 70, 1); +INSERT IGNORE INTO castle_manor_procure (castle_id, crop_id, amount, start_amount, price, reward_type, next_period) VALUES (5, 6546, 140, 140, 2500, 1, 1); +INSERT IGNORE INTO castle_manor_production (castle_id, seed_id, amount, start_amount, price, next_period) VALUES (5, 15336, 92, 92, 70, 0); +INSERT IGNORE INTO castle_manor_procure (castle_id, crop_id, amount, start_amount, price, reward_type, next_period) VALUES (5, 6553, 35, 35, 2500, 1, 0); +INSERT IGNORE INTO castle_manor_production (castle_id, seed_id, amount, start_amount, price, next_period) VALUES (5, 15336, 92, 92, 70, 1); +INSERT IGNORE INTO castle_manor_procure (castle_id, crop_id, amount, start_amount, price, reward_type, next_period) VALUES (5, 6553, 35, 35, 2500, 1, 1); +UPDATE castle SET treasury=500000000 WHERE id IN (1,2,3,5); diff --git a/src_mobius/mobius/L2J_Mobius_CT_0_Interlude/dist/db_installer/sql/spp_crest_seed.sql b/src_mobius/mobius/L2J_Mobius_CT_0_Interlude/dist/db_installer/sql/spp_crest_seed.sql new file mode 100644 index 0000000..0d910aa --- /dev/null +++ b/src_mobius/mobius/L2J_Mobius_CT_0_Interlude/dist/db_installer/sql/spp_crest_seed.sql @@ -0,0 +1,322 @@ +-- SPP crests: imported from the L2Topzone crest pack (DXT1, 16x16 clan / 8x16 ally). +DELETE FROM crests WHERE crest_id BETWEEN 9000 AND 9999; +-- id-диапазон сдвинут: клиент кэширует текстуру герба по id, старые id он считает битыми. +INSERT INTO crests (crest_id, data, type) VALUES (9500, 0x444453207c0000000710080010000000080000004000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000200000000400000044585431000000000000000000000000000000000000000000100000000000000000000000000000000000005cbe0000555502a2198d00005555ac2f3b8da508283c9454d87400003f3f3635d55b00007c5c5e5e566c00003515959d36a50000574b555577ad0000fbe35555, 3); +INSERT INTO crests (crest_id, data, type) VALUES (9501, 0x444453207c000000071008001000000010000000800000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000020000000040000004458543100000000000000000000000000000000000000000010000000000000000000000000000000000000ffff000055550000feff000055550000ffff000055550000feff000055550080ffffcc52c040e002feffa2c002837258dfffe8a0c0628d25fef7a94a83898982ffffa9520000e0609fff3420fc5c7283bfff122027258dcafdff0a5380828ba9ffff000080005555ffff000002005555ffff0000e08055551ad7000082805555, 1); +UPDATE clan_data SET crest_id=9501, ally_id=300000001, ally_name='FreeUnion', ally_crest_id=10000 WHERE clan_id=300000001; +INSERT INTO crests (crest_id, data, type) VALUES (9502, 0x444453207c000000071008001000000010000000800000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000020000000040000004458543100000000000000000000000000000000000000000010000000000000000000000000000000000000410000005555a2421ce700005555752575b500005555555c0421000055554d6dffff2000552509f9ffff8d6b2a090301ffff20006ab820f0beff00005556505b7def000071e19555ffff00000d3f0033ffff00005cdf807379d6000052525555410800001d7b5555fff7000030aa5555def700004348555501000000f5f55555, 1); +UPDATE clan_data SET crest_id=9502, ally_id=300000001, ally_name='FreeUnion', ally_crest_id=10000 WHERE clan_id=300000002; +INSERT INTO crests (crest_id, data, type) VALUES (9503, 0x444453207c00000007100800100000001000000080000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000002000000004000000445854310000000000000000000000000000000000000000001000000000000000000000000000000000000073ef0000555555f0ac100000555500008d1000005555020073ef00005555550f9fffe4181a6aafbbdfffa71800000104dfffa720000040109fffe418a4a9faee94df042982330f4019efa228d0a4fdff39efac18051a7fff54e7e32082c8f001eee70000d0f0555595200000000055559520000000005555e0ff000005055555, 1); +UPDATE clan_data SET crest_id=9503, ally_id=300000001, ally_name='FreeUnion', ally_crest_id=10000 WHERE clan_id=300000003; +INSERT INTO crests (crest_id, data, type) VALUES (9504, 0x444453207c000000071008001000000010000000800000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000020000000040000004458543100000000000000000000000000000000000000000010000000000000000000000000000000000000c2d00000555500a0e2c800005555a0a0e2c8000055550080a79100005555008001b180a8f4accccc82d840980b0bff5725a18398aa70026a42e863a058585a5a61a9c0986ccc44cc83b960a8ac26f6be41f082a058587858879942903f3f1f1fc2d80000a8805555c1c80000a0205555e4c00000a000555562e00000a0005555, 1); +UPDATE clan_data SET crest_id=9504, ally_id=300000001, ally_name='FreeUnion', ally_crest_id=10000 WHERE clan_id=300000004; +INSERT INTO crests (crest_id, data, type) VALUES (9505, 0x444453207c0000000710080010000000100000008000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000200000000400000044585431000000000000000000000000000000000000000000100000000000000000000000000000000000004d8b000055552a0a4d8b00005555a000c972000055550800076a00005555e8a04ec32982ad2d2d2d6ecbeba27fa8a0ea2cc3099a77eae0e008a261586a606060ecaa66490badadbd0bab697a00aaff554cb3e881a0f8fe57e791a0406068e8ea876100000aab5555076a000000aa5555286a0000008855552561000080e85555, 1); +UPDATE clan_data SET crest_id=9505, ally_id=300000001, ally_name='FreeUnion', ally_crest_id=10000 WHERE clan_id=300000005; +INSERT INTO crests (crest_id, data, type) VALUES (9506, 0x444453207c000000071008001000000010000000800000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000020000000040000004458543100000000000000000000000000000000000000000010000000000000000000000000000000000000fdbd0000555528a457730000555580ff74520000555500af9808000055550a2f9dce0400d49494d4346303005574acac9c100900ad8b0bafb218040037b7acac9cce03009494a4e4ff5a0d00eceff4f192180600b7d70a00cf1807003cbc372bbed60000f4a05555ff6a000022005555ff490000aa0055553b3900002a005555, 1); +UPDATE clan_data SET crest_id=9506, ally_id=300000001, ally_name='FreeUnion', ally_crest_id=10000 WHERE clan_id=300000006; +INSERT INTO crests (crest_id, data, type) VALUES (9507, 0x444453207c0000000710080010000000100000008000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000200000000400000044585431000000000000000000000000000000000000000000100000000000000000000000000000000000000100000055550000525a00005555a52515ed0000555583aa95dd000055555758f7280000555feae0b4ab03003525250d52cc00085a5c5c5cf5fc0018638d8d89f76206006262638974bba8080d8ba2acebba0018fc08fa5610dc0008e25855553a9c00002da555554d8200000c085555c26800005c5e55550008000000005555, 1); +UPDATE clan_data SET crest_id=9507, ally_id=300000001, ally_name='FreeUnion', ally_crest_id=10000 WHERE clan_id=300000007; +INSERT INTO crests (crest_id, data, type) VALUES (9508, 0x444453207c000000071008001000000010000000800000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000020000000040000004458543100000000000000000000000000000000000000000010000000000000000000000000000000000000dfff000055555515fff70000555500a0dff700005555003e9ff7000055555554dfff00000581a1a15dff4c393a3abe9f5ff71c0054545456ffff000053434f4fdfff0000a1e1c1c53fad38081f571595f8a42a10f4755456bfff010047474151bfff000015555555dfff00007c005555bfff000015005555dfff000054555555, 1); +UPDATE clan_data SET crest_id=9508, ally_id=300000001, ally_name='FreeUnion', ally_crest_id=10000 WHERE clan_id=300000008; +INSERT INTO crests (crest_id, data, type) VALUES (9509, 0x444453207c00000007100800100000000800000040000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000002000000004000000445854310000000000000000000000000000000000000000001000000000000000000000000000000000000027f5000055552b2b24dc00005555a0a02af6806027260a09acfe60a1defc7c5c53cee248fdab03ad6eee2092f76aa2f84aad0000302355550dde0000a8a85555, 3); +INSERT INTO crests (crest_id, data, type) VALUES (9510, 0x444453207c000000071008001000000010000000800000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000020000000040000004458543100000000000000000000000000000000000000000010000000000000000000000000000000000000000800005555020b003000005555bf2fc5b800005555cd0b447900005555f22800300000d5d5df0bc3d00010f52d0d2b83e000b08900aa69e3c800b0cbfeb581c3d00040bd09092f82e000a8ede068aaa2d800a83b3e818a82e800680000aadae4c000000828555581e80000020a5555a2d0000000205555a691000030385555, 1); +UPDATE clan_data SET crest_id=9510, ally_id=300000009, ally_name='IronUnion', ally_crest_id=10009 WHERE clan_id=300000009; +INSERT INTO crests (crest_id, data, type) VALUES (9511, 0x444453207c000000071008001000000010000000800000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000020000000040000004458543100000000000000000000000000000000000000000010000000000000000000000000000000000000400800005555a323c241000055557517c02000005555f76c2000000055553505ebf60000d5bd09b5cdfe80491fa08022ccfe205a67a000a22cde0000557e5057601000003fe7f5d9d4ee20080dcbe1e9d8f60000585a7353610801003ab5ffff40000000c5dd555575ff000089ad5555d3f60000505655550100000000005555, 1); +UPDATE clan_data SET crest_id=9511, ally_id=300000009, ally_name='IronUnion', ally_crest_id=10009 WHERE clan_id=300000010; +INSERT INTO crests (crest_id, data, type) VALUES (9512, 0x444453207c0000000710080010000000100000008000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000200000000400000044585431000000000000000000000000000000000000000000100000000000000000000000000000000000001bff00005555aa829bfe00005555aa02fbfe00005555aa009bfe00005555eac03cf7c77963f30303dff7857009b7dc50deff00580082ff559fff8659c0c2c3c1bfff6ea389a9a9a9dfff2048706060e05dff2549f589bfdfbeff2128c9cdcbc09eff000002bf55551cff000000aa555572c400003aa855559eff000080eb5555, 1); +UPDATE clan_data SET crest_id=9512, ally_id=300000009, ally_name='IronUnion', ally_crest_id=10009 WHERE clan_id=300000011; +INSERT INTO crests (crest_id, data, type) VALUES (9513, 0x444453207c000000071008001000000010000000800000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000020000000040000004458543100000000000000000000000000000000000000000010000000000000000000000000000000000000bed600005555c1f17dc6000055550e5ff9c6000055550050b8d60000555500559fc620005101d4f17fbe0c00147475d5dbd6200000540001fbce0000545540549ece000031500155fcd62b00540040549fc64b00df755540bdce03001441140021000000253d55551ac70000040055559fc600005c0f5555ddce000054405555, 1); +UPDATE clan_data SET crest_id=9513, ally_id=300000009, ally_name='IronUnion', ally_crest_id=10009 WHERE clan_id=300000012; +INSERT INTO crests (crest_id, data, type) VALUES (9514, 0x444453207c000000071008001000000010000000800000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000020000000040000004458543100000000000000000000000000000000000000000010000000000000000000000000000000000000f183000055555515dfff0000555509e0bff700005555600b117c0000555555549fff0000152585c5bfff0b0054514515dff7070815455154dfff0100545852519fff0100c58525157fff0c0015551554dfff010055545594dfff0000515258545184000015555555dfff000020095555ffff000008605555307c000054555555, 1); +UPDATE clan_data SET crest_id=9514, ally_id=300000009, ally_name='IronUnion', ally_crest_id=10009 WHERE clan_id=300000013; +INSERT INTO crests (crest_id, data, type) VALUES (9515, 0x444453207c0000000710080010000000100000008000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000200000000400000044585431000000000000000000000000000000000000000000100000000000000000000000000000000000004208000055558033f08700005555f525810800005555b2a22000000055550f0fe0000000d79d1d1fef7f4000a5e92a2aeb550000575c5252000800007ae0a82aa0002100151d1f1ff07fe00355555515c836000052509292b9ce000055555852a00000003f3d5555f07700002aed5555b9d600001b97555578c60000585a5555, 1); +UPDATE clan_data SET crest_id=9515, ally_id=300000009, ally_name='IronUnion', ally_crest_id=10009 WHERE clan_id=300000014; +INSERT INTO crests (crest_id, data, type) VALUES (9516, 0x444453207c000000071008001000000010000000800000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000020000000040000004458543100000000000000000000000000000000000000000010000000000000000000000000000000000000feff000055550054feff000055550055fdff000055550055daff000055550015fdff621004a4a4a47bd60000371797b79dd6010000029e5e3af70008151e3a1afcff3608f4d454543373000837b7f7f7136b0308dcbeaaaa99ee01083a1f1f17d7ff0000d400555557f700005500555596ee0000ff0055552ecd000015005555, 1); +UPDATE clan_data SET crest_id=9516, ally_id=300000009, ally_name='IronUnion', ally_crest_id=10009 WHERE clan_id=300000015; +INSERT INTO crests (crest_id, data, type) VALUES (9517, 0x444453207c000000071008001000000010000000800000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000020000000040000004458543100000000000000000000000000000000000000000010000000000000000000000000000000000000dff70000555500fc9fef0000555500bfffff00005555000affff00005555282e9ff7540074d4f42cffeffb31f5258228dfff8d3ae2e87edeffef6d3a2d2a2a2adfff1242040434d4ffffcc5288e08060ffcef052aba4adabffefdc8d3d3f3f2fdff70000bc005555ffff000002005555dfff0000a8205555fff7000002005555, 1); +UPDATE clan_data SET crest_id=9517, ally_id=300000009, ally_name='IronUnion', ally_crest_id=10009 WHERE clan_id=300000016; +INSERT INTO crests (crest_id, data, type) VALUES (9518, 0x444453207c000000071008001000000008000000400000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000020000000040000004458543100000000000000000000000000000000000000000010000000000000000000000000000000000000f4a400005555f502674a00005555f87ed8c565298a436bfdc5bd01105d7f6787a4a400003d3d2d2d83ef00008bcdcdcda4a400002d2d5555e56a000009fd5555, 3); +INSERT INTO crests (crest_id, data, type) VALUES (9519, 0x444453207c00000007100800100000001000000080000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000002000000004000000445854310000000000000000000000000000000000000000001000000000000000000000000000000000000020000000555508561cd70000555565051cd7000055555950400000005555b85ebf9c0000ff2df5f5ffce36080d02bdbdffce360870807e7ebf9c0000df785f5fbf9c0000f5f52dffffce1908bdbd020d1fd718087e7e80709e9c00005f5f78ff01000000005c5555bace000005455555b9c60000505155552100000000395555, 1); +UPDATE clan_data SET crest_id=9519, ally_id=300000017, ally_name='SilverUnion', ally_crest_id=10018 WHERE clan_id=300000017; +INSERT INTO crests (crest_id, data, type) VALUES (9520, 0x444453207c000000071008001000000010000000800000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000020000000040000004458543100000000000000000000000000000000000000000010000000000000000000000000000000000000dad6000055555554ffff00005555e041dfff000055550549dfff000055555455fff7020050420414feff0000c5850482dfff00004252114cffff000015011035ffff010014144252dfff000000584549dfff000060125241ffff00002d3e211599ce0000541555551cc60000896a555537c600000fa95555ffff000015575555, 1); +UPDATE clan_data SET crest_id=9520, ally_id=300000017, ally_name='SilverUnion', ally_crest_id=10018 WHERE clan_id=300000018; +INSERT INTO crests (crest_id, data, type) VALUES (9521, 0x444453207c0000000710080010000000100000008000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000200000000400000044585431000000000000000000000000000000000000000000100000000000000000000000000000000000004a52000055555515f4ff000055550537f3ff000055555cf06e6b000055555554bfff000015d555d5ddff000014143404f6ffe0180000001c9cf70000545757579bf70000d5d5d515f2fface7ec9c3480fcff000814341414bdf70000575757542f8c00001555555516e700003c555555d3ff0000d45055550e63000054555555, 1); +UPDATE clan_data SET crest_id=9521, ally_id=300000017, ally_name='SilverUnion', ally_crest_id=10018 WHERE clan_id=300000019; +INSERT INTO crests (crest_id, data, type) VALUES (9522, 0x444453207c000000071008001000000010000000800000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000020000000040000004458543100000000000000000000000000000000000000000010000000000000000000000000000000000000ffff000055555500ffff000055555500ffff000055555500ffff000055555500def7000054044466ffde01005500556affde0100550055a9bef7000015101199388c05004466a657959403004055aa55959402000155aa55188c050011919ad5cf10000000aa55558f08000000aa5555af10000000aa5555cf10000000aa5555, 1); +UPDATE clan_data SET crest_id=9522, ally_id=300000017, ally_name='SilverUnion', ally_crest_id=10018 WHERE clan_id=300000020; +INSERT INTO crests (crest_id, data, type) VALUES (9523, 0x444453207c000000071008001000000010000000800000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000020000000040000004458543100000000000000000000000000000000000000000010000000000000000000000000000000000000f7b5000055550a027cff00005555020237ee00005555003eb7bd0000555500001ad7f083fd8f2f2fdfffa56042e0c0403dff417055571501dbfec4608aa109a8bbd60f7cbbcfbf0dffff490800495457dff709080d3519055eeff49cf878e475bad600002bab55551acf0000e00255553fe7000000005555b9ce000080a25555, 1); +UPDATE clan_data SET crest_id=9523, ally_id=300000017, ally_name='SilverUnion', ally_crest_id=10018 WHERE clan_id=300000021; +INSERT INTO crests (crest_id, data, type) VALUES (9524, 0x444453207c00000007100800100000001000000080000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000002000000004000000445854310000000000000000000000000000000000000000001000000000000000000000000000000000000060100000555545ca457900005555f50d8689000055555ff8201000005555ba2836ff001849261415fcfe0028ed49555521a900306bad092914ff20086198145496ff001005515a162ffe0008fcf1254591ee00083f4f5851d6ff00085065a59440100000808e555592de000052555555b3e60000855555552010000002ea5555, 1); +UPDATE clan_data SET crest_id=9524, ally_id=300000017, ally_name='SilverUnion', ally_crest_id=10018 WHERE clan_id=300000022; +INSERT INTO crests (crest_id, data, type) VALUES (9525, 0x444453207c000000071008001000000010000000800000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000020000000040000004458543100000000000000000000000000000000000000000010000000000000000000000000000000000000ffff00005555020bffff000055550000ffff000055550000ffff00005555a0c8ffffc631934b4bc3ffff2000000062d3ffff000020b075d0ffff4100c0c0c2c1ffffa629c3f27a82ffff00001f1358dbffff0000405090d5ffff4060c3c07fd5fff70000c2fd5555ffff0000003f5555ffff000000ff5555d4b40000c03a5555, 1); +UPDATE clan_data SET crest_id=9525, ally_id=300000017, ally_name='SilverUnion', ally_crest_id=10018 WHERE clan_id=300000023; +INSERT INTO crests (crest_id, data, type) VALUES (9526, 0x444453207c000000071008001000000010000000800000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000020000000040000004458543100000000000000000000000000000000000000000010000000000000000000000000000000000000201000005555800266d200005555b52da6d200005555fe80c150000055555e7ca7b2000055a50585c4da00280d2f020b43f2002880c0687ee16000005c5e77df035100008df5555563da00000d0d25ad63f20050e820e07b86d200005f58585e00100000b5355555418900008a0f555583790000f05f555540080000b0d05555, 1); +UPDATE clan_data SET crest_id=9526, ally_id=300000017, ally_name='SilverUnion', ally_crest_id=10018 WHERE clan_id=300000024; +INSERT INTO crests (crest_id, data, type) VALUES (9527, 0x444453207c000000071008001000000008000000400000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000020000000040000004458543100000000000000000000000000000000000000000010000000000000000000000000000000000000c1d0000055551535a1e0000055555c5864a100000d89a92923c90000eaca6268c2e80000c9c96bed03c100006b6b717303b100000d25555522b9000072785555, 3); +INSERT INTO crests (crest_id, data, type) VALUES (9528, 0x444453207c000000071008001000000010000000800000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000020000000040000004458543100000000000000000000000000000000000000000010000000000000000000000000000000000000dfff000055555545dff700005555fcf1dff7000055554f53bff70000555555549ff7000035f575f59fef0700507755557fff070003555555ea2800007c5e5e5edff7000035455555ffff000050715151bff7000001515151bff70000555455550100000025055555ffff000051d45555dfff0000514555552000000000085555, 1); +UPDATE clan_data SET crest_id=9528, ally_id=300000025, ally_name='NorthernUnion', ally_crest_id=10027 WHERE clan_id=300000025; +INSERT INTO crests (crest_id, data, type) VALUES (9529, 0x444453207c000000071008001000000010000000800000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000020000000040000004458543100000000000000000000000000000000000000000010000000000000000000000000000000000000324a00005555f501924200005555ff00933a00005555ff00b04a000055555fc0dade020095a99989d3f7080015ff15009dff020054ff54005ff70500577f6662ffe60000899901157cef0100001500159cff0000005402543fef0000626640547ff70000015555557eef0000005555557eef0000005555557ff7000040555555, 1); +UPDATE clan_data SET crest_id=9529, ally_id=300000025, ally_name='NorthernUnion', ally_crest_id=10027 WHERE clan_id=300000026; +INSERT INTO crests (crest_id, data, type) VALUES (9530, 0x444453207c000000071008001000000010000000800000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000020000000040000004458543100000000000000000000000000000000000000000010000000000000000000000000000000000000ec83000055555515bbf7000055555512fdff0000555555008c73000055555554d6f70000b52d6929f9ff200040051000dcff000054555555dcf700005c615561f8ff0000292d09b5f9ff200000000154fbff200054004015f8ff00007060605ceb7b000015555555dbf7000002555555dbff000000555555cb73000054555555, 1); +UPDATE clan_data SET crest_id=9530, ally_id=300000025, ally_name='NorthernUnion', ally_crest_id=10027 WHERE clan_id=300000027; +INSERT INTO crests (crest_id, data, type) VALUES (9531, 0x444453207c0000000710080010000000100000008000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000200000000400000044585431000000000000000000000000000000000000000000100000000000000000000000000000000000009b310000555500805829000055550000134a00005555a0006f39000055558000bfd6d6105ff515357fef6b08ff7ed4ac7ff7d339f5ad0df8d5830710fa78fc7e9fef90183535b557ffffca390060600336842908aaff5f78cd410200a0fa7e7fb139000000805555ad390000e8bf55550a210000a0ab555507080000e0e05555, 1); +UPDATE clan_data SET crest_id=9531, ally_id=300000025, ally_name='NorthernUnion', ally_crest_id=10027 WHERE clan_id=300000028; +INSERT INTO crests (crest_id, data, type) VALUES (9532, 0x444453207c000000071008001000000010000000800000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000020000000040000004458543100000000000000000000000000000000000000000010000000000000000000000000000000000000ecfc00005555aa8aafed00005555f8f389a2000055558fbf02c200005555020a0cfd0010c0fe6e6e19d70030fdeb070f9def4408c953c0009cff0020f5fcd05befa30008db2b1b5dbbf763418cb042007cdf2151000e0d2f59e70000705e5e56d4c5000015d555557ef700003ddb555579ee00008ceb55550f7c000055515555, 1); +UPDATE clan_data SET crest_id=9532, ally_id=300000025, ally_name='NorthernUnion', ally_crest_id=10027 WHERE clan_id=300000029; +INSERT INTO crests (crest_id, data, type) VALUES (9533, 0x444453207c000000071008001000000010000000800000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000020000000040000004458543100000000000000000000000000000000000000000010000000000000000000000000000000000000430800005555d527f76b00005555f161d97b000055555372610800005555fc52578c01005595554596ed0a00597b177db78b060051a37d5eb57300005555555cd9630008cbcaada515840300496145c5dd63060058529696dd730300586a5757714a000035f555554e4200003ffb5555334a00003ffd55552100000000085555, 1); +UPDATE clan_data SET crest_id=9533, ally_id=300000025, ally_name='NorthernUnion', ally_crest_id=10027 WHERE clan_id=300000030; +INSERT INTO crests (crest_id, data, type) VALUES (9534, 0x444453207c000000071008001000000010000000800000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000020000000040000004458543100000000000000000000000000000000000000000010000000000000000000000000000000000000fef700005555552bffff000055558270aa52000055555605600800005555fff1dff70000a8952a3effff0000dc007c5cffff0000892a35359eef000055560ee0ffff000025c17857ffff000070c32d95ffff000015951520ffff01005c5c5ca821000000b2725555107c000035555555ffff000000755555dad60000e0555555, 1); +UPDATE clan_data SET crest_id=9534, ally_id=300000025, ally_name='NorthernUnion', ally_crest_id=10027 WHERE clan_id=300000031; +INSERT INTO crests (crest_id, data, type) VALUES (9535, 0x444453207c00000007100800100000001000000080000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000002000000004000000445854310000000000000000000000000000000000000000001000000000000000000000000000000000000041ff0000555500002aff00005555c030dfff00005555030effff000055550000eafea0a1202240908cfe00289c1795005cff002836d656aafeffa49900000107ffff40a1904000005eff0028aa95979cccfe00382254d4342aff40a906812020ffff000000005555deff0000b0c05555e8fe00000c03555521ff000000005555, 1); +UPDATE clan_data SET crest_id=9535, ally_id=300000025, ally_name='NorthernUnion', ally_crest_id=10027 WHERE clan_id=300000032; +INSERT INTO crests (crest_id, data, type) VALUES (9536, 0x444453207c0000000710080010000000080000004000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000200000000400000044585431000000000000000000000000000000000000000000100000000000000000000000000000000000003aef00005555550b18e60000555555c89cff20202b2f3fb557deaa724c48484a17c60030b0afb05e38de0018c8c8c855f3a400008255555575cd0000c0555555, 3); +INSERT INTO crests (crest_id, data, type) VALUES (9537, 0x444453207c0000000710080010000000100000008000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000200000000400000044585431000000000000000000000000000000000000000000100000000000000000000000000000000000000300000055551f1f04e2000055552b2b51db00005555b0b00500000055555c5c864100005555d5150ce5eb18adaf0b8a4dcd872890dae082c641000057555f540e9c0000951515d5f2fe27b30ef6cef799ff8b8bffbf3f4e2d9c00005654545520000000088c5555aedd00000aad555516ff0000605a55550100000002005555, 1); +UPDATE clan_data SET crest_id=9537, ally_id=300000033, ally_name='OldUnion', ally_crest_id=10036 WHERE clan_id=300000033; +INSERT INTO crests (crest_id, data, type) VALUES (9538, 0x444453207c000000071008001000000010000000800000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000020000000040000004458543100000000000000000000000000000000000000000010000000000000000000000000000000000000f07b000055555515ffff000055550000bfef0000555540a02108000055558b1ad6bd000095155515ffff20000200959b3edf0000a0a055a941080000cf3effffd7bd000015555555ffff000060a125e9fff700008252565a01000000fffffdf501000000f5755555ffff0000f1055555d7b500005254555501000000d5575555, 1); +UPDATE clan_data SET crest_id=9538, ally_id=300000033, ally_name='OldUnion', ally_crest_id=10036 WHERE clan_id=300000034; +INSERT INTO crests (crest_id, data, type) VALUES (9539, 0x444453207c000000071008001000000010000000800000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000020000000040000004458543100000000000000000000000000000000000000000010000000000000000000000000000000000000230000005555f73fdff7000055550db39ff70000555562fe2000000055550201ed41000035155555dff7ad310404f305bff70200bcce725f030000005cfc5e5e6d52000055551515ffffcc3901030200bfd604005c5ed7bf516b0000555556542c4a000015d55555ffff000000e35555bff70000e07f5555450800007c7e5555, 1); +UPDATE clan_data SET crest_id=9539, ally_id=300000033, ally_name='OldUnion', ally_crest_id=10036 WHERE clan_id=300000035; +INSERT INTO crests (crest_id, data, type) VALUES (9540, 0x444453207c000000071008001000000010000000800000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000020000000040000004458543100000000000000000000000000000000000000000010000000000000000000000000000000000000dfff000055558054fbac00005555a8ffac5a00005555e0552521000055555c55bfff28002454d414ffff461858606cc4ffff0000c261725040080000e31967d9bff72a0034240054dfff0710ce359855ffff00005854145595ad000055555155dff7000054805555da9c0000ffa85555ad5a000055e85555c318000055545555, 1); +UPDATE clan_data SET crest_id=9540, ally_id=300000033, ally_name='OldUnion', ally_crest_id=10036 WHERE clan_id=300000036; +INSERT INTO crests (crest_id, data, type) VALUES (9541, 0x444453207c000000071008001000000010000000800000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000020000000040000004458543100000000000000000000000000000000000000000010000000000000000000000000000000000000a731000055557f00dbd600005555550ab7ad0000555555fc493100005555fd0efff704112589f3dadfef8719007fddbfffff03005fd65ee89bcec618775fef2779b60200f3efffd578bec61837bdddf5dfff0000fed5ab00bff701002f8be05ee3180000f4d55555b39c00003d55555515a50000e855555546290000b0555555, 1); +UPDATE clan_data SET crest_id=9541, ally_id=300000033, ally_name='OldUnion', ally_crest_id=10036 WHERE clan_id=300000037; +INSERT INTO crests (crest_id, data, type) VALUES (9542, 0x444453207c000000071008001000000010000000800000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000020000000040000004458543100000000000000000000000000000000000000000010000000000000000000000000000000000000200800005555ff082bff0000555505a106fe0000555550502018000055557f0210ff2010413cf18536f70010a1858483cfe50008505010808fed0020413c4e522fff0008c585b131f1f64028aa2a2821efe50038a0a020408ffd000852524e4c4ff700003141555533ff0000851555558fd5000050545555ece5000048415555, 1); +UPDATE clan_data SET crest_id=9542, ally_id=300000033, ally_name='OldUnion', ally_crest_id=10036 WHERE clan_id=300000038; +INSERT INTO crests (crest_id, data, type) VALUES (9543, 0x444453207c000000071008001000000010000000800000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000020000000040000004458543100000000000000000000000000000000000000000010000000000000000000000000000000000000ffff000055550000ffff00005555b0085dff00005555800affff000055550200ffff253900240708ffff8340c34040605eff02400d2d3534dfff694aa0604000ffff242900808034ffff37ce60a8e36a7dff25490d002aa8beff2f84a2f8ef7dbeff00002c805555feef000000a05555fef7000082005555feff0000eac05555, 1); +UPDATE clan_data SET crest_id=9543, ally_id=300000033, ally_name='OldUnion', ally_crest_id=10036 WHERE clan_id=300000039; +INSERT INTO crests (crest_id, data, type) VALUES (9544, 0x444453207c000000071008001000000010000000800000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000020000000040000004458543100000000000000000000000000000000000000000010000000000000000000000000000000000000dfd60000555500f49fad0000555500f5bf9d00005555007fdab500005555404fbfde0f0014545454f5ff2810404000105aef0b00059595949fde00006c65674fbfd62700545c9454f3f743105c025a551ce70c08912805557fd600004f6f4c6f5fe70000a8555555f7bd000000555555dabd000000555555d9b5000040555555, 1); +UPDATE clan_data SET crest_id=9544, ally_id=300000033, ally_name='OldUnion', ally_crest_id=10036 WHERE clan_id=300000040; +INSERT INTO crests (crest_id, data, type) VALUES (9545, 0x444453207c0000000710080010000000080000004000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000200000000400000044585431000000000000000000000000000000000000000000100000000000000000000000000000000000007153000055555ff2f25200005555fd8b3353a50050da587ef35225008b0b55550e53a4003e3e9d15ffffa510a8a5fafd4e5300003df55555ffff0000f8555555, 3); +INSERT INTO crests (crest_id, data, type) VALUES (9546, 0x444453207c0000000710080010000000100000008000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000200000000400000044585431000000000000000000000000000000000000000000100000000000000000000000000000000000004fff0000555500fcf3e50000555500af0ebd0000555500ae4a9300005555a0b097f63030545454d6ffff4d410101fb00deff87480a827f607fff0738d8d7d5d53fee4e4056d69617feff401800a0f87edeff48407060e2fa687a03483bbb3f398d8300003c805555c5490000e0a05555654900002aaa5555a57200002b0a5555, 1); +UPDATE clan_data SET crest_id=9546, ally_id=300000041, ally_name='WildUnion', ally_crest_id=10045 WHERE clan_id=300000041; +INSERT INTO crests (crest_id, data, type) VALUES (9547, 0x444453207c00000007100800100000001000000080000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000002000000004000000445854310000000000000000000000000000000000000000001000000000000000000000000000000000000055ae0000555500fc56cf0000555500fd17bf0000555500fffef700005555023ef095e019545454b4f8bea01955f52b02d9b60322bd8be8a878dfc0191e171517f5858722a4ceca0e39bf8a2baf252eb6d9b6c121807e787a15c7a2211715151573750000ac005555f58d0000ff00555533ae0000ff00555517c7000037285555, 1); +UPDATE clan_data SET crest_id=9547, ally_id=300000041, ally_name='WildUnion', ally_crest_id=10045 WHERE clan_id=300000042; +INSERT INTO crests (crest_id, data, type) VALUES (9548, 0x444453207c0000000710080010000000100000008000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000200000000400000044585431000000000000000000000000000000000000000000100000000000000000000000000000000000000684000055550bd4f6ff000055550a40b8f700005555a055a77b00005555e01ddaff000857560600fbffc020010504804cc600005557ff78b7ff0000dd979715f7ff000000405657f0ffc02080616979c99c000078575555b8ff000015159595ab940000562b5555f7ff000075025555b4f7000055e85555a973000035e85555, 1); +UPDATE clan_data SET crest_id=9548, ally_id=300000041, ally_name='WildUnion', ally_crest_id=10045 WHERE clan_id=300000043; +INSERT INTO crests (crest_id, data, type) VALUES (9549, 0x444453207c000000071008001000000010000000800000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000020000000040000004458543100000000000000000000000000000000000000000010000000000000000000000000000000000000feff000055550000ffff000055550038ffff000055550000ffff000055550000ffffe3180000b8dcffff294a1c3cbcdcffffe83900000009ffff0f7c00200835ffffe3189c383898ffffcb5a1c3c3c14ffff0842cd4f4fc5ffff8629bb2a022dffff0000b8005555ffff0000a8005555ffff00000a005555deff00000e005555, 1); +UPDATE clan_data SET crest_id=9549, ally_id=300000041, ally_name='WildUnion', ally_crest_id=10045 WHERE clan_id=300000044; +INSERT INTO crests (crest_id, data, type) VALUES (9550, 0x444453207c00000007100800100000001000000080000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000002000000004000000445854310000000000000000000000000000000000000000001000000000000000000000000000000000000048420000555555350f84000055552ba2dbd600005555ea0b9ace00005555555caa4a00002d897b7bad730000d617aa721cdf0000d57e0b25bff7010050c38ea503210000d94dc5b5cf8300007bab985755a50000050b5ed555ad0000058feb7a21080000f0cf5555442900002a255555eb5a00000beb55558a5200005c555555, 1); +UPDATE clan_data SET crest_id=9550, ally_id=300000041, ally_name='WildUnion', ally_crest_id=10045 WHERE clan_id=300000045; +INSERT INTO crests (crest_id, data, type) VALUES (9551, 0x444453207c0000000710080010000000100000008000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000200000000400000044585431000000000000000000000000000000000000000000100000000000000000000000000000000000000100000055555555410800005555fd78200000005555489d0100000055555dffffff000000414141ffff000001050505ffff000040410505ffff000055414155ffff000041414100ffff000005050501ffff000005054140ffff00005541415520000000185755552000000064a5555520000000835755550100000055555555, 1); +UPDATE clan_data SET crest_id=9551, ally_id=300000041, ally_name='WildUnion', ally_crest_id=10045 WHERE clan_id=300000046; +INSERT INTO crests (crest_id, data, type) VALUES (9552, 0x444453207c00000007100800100000001000000080000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000002000000004000000445854310000000000000000000000000000000000000000001000000000000000000000000000000000000053f7000055551581c2ff000055550000c9ff0000555550624008000055557a0a69fe00080125955522fe20300000000148ff00186058180622f6000855514040cddd000055551505e1fd00180509905423fe00200000002104fe001040404050b3c50000415555552010000008f555554cd50000155555556bd5000050555555, 1); +UPDATE clan_data SET crest_id=9552, ally_id=300000041, ally_name='WildUnion', ally_crest_id=10045 WHERE clan_id=300000047; +INSERT INTO crests (crest_id, data, type) VALUES (9553, 0x444453207c000000071008001000000010000000800000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000020000000040000004458543100000000000000000000000000000000000000000010000000000000000000000000000000000000ffff000055555505ffff000055551485ffff000055551452ffff000055555550ffff000011511181ffff1184e0f0034fffff704a0f0f4053ffff000044454443ffff0000a0915111ffff514acf03505cffff0d3a53400735ffff00000b464544ffff000005555555ffff0000e5945555dfff00005b165555ffff000050555555, 1); +UPDATE clan_data SET crest_id=9553, ally_id=300000041, ally_name='WildUnion', ally_crest_id=10045 WHERE clan_id=300000048; +INSERT INTO crests (crest_id, data, type) VALUES (9554, 0x444453207c0000000710080010000000080000004000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000200000000400000044585431000000000000000000000000000000000000000000100000000000000000000000000000000000000d5a000055550ecb495100005555808f728b0418d93d7b7eb5ac67307d7bf9d894b402205f6d6d8d7dee0520dd7273d558bd00002fd75555ad610000a2aa5555, 3); +INSERT INTO crests (crest_id, data, type) VALUES (9555, 0x444453207c000000071008001000000010000000800000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000020000000040000004458543100000000000000000000000000000000000000000010000000000000000000000000000000000000456900005555fa22a68100005555af00a7a900005555faa0868900005555fe28e8a10038dbb3939366b10040f5abfd2bc7a9006855ca7e0848b20050959dd119e7a10048939b939bc6a10050f921dd2d08ba00689e2b57f807b20060d1999ddd65910000b2a25555c6990000af025555c7b10000aa805555859900002a2a5555, 1); +UPDATE clan_data SET crest_id=9555, ally_id=300000049, ally_name='RoyalUnion', ally_crest_id=10054 WHERE clan_id=300000049; +INSERT INTO crests (crest_id, data, type) VALUES (9556, 0x444453207c00000007100800100000001000000080000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000002000000004000000445854310000000000000000000000000000000000000000001000000000000000000000000000000000000054f700005555550172f700005555550450ef00005555551053ef00005555554075ef00005151515170f720084444444490f7400811111111211800007e7b6b2a8ff72008a25151516dff2010aa44444491f74008bb111111a68a000080ff555556ef00000155555572ef00000455555556f700001055555595ef000040555555, 1); +UPDATE clan_data SET crest_id=9556, ally_id=300000049, ally_name='RoyalUnion', ally_crest_id=10054 WHERE clan_id=300000050; +INSERT INTO crests (crest_id, data, type) VALUES (9557, 0x444453207c0000000710080010000000100000008000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000200000000400000044585431000000000000000000000000000000000000000000100000000000000000000000000000000000002efc00005555aa0290fc00005555aa00fcdc00005555ff00bddc00005555fff013fe00601f7f434332fe0050004147dfa5e10060f5ebfa8ccffe69207f474040b9fe09301151a5a90bfe00a855d554000ffe20881f777112adfe0080c0c0eae919cd000003ff555519d5000000ff55556ffc00000caa55552dfc000088aa5555, 1); +UPDATE clan_data SET crest_id=9557, ally_id=300000049, ally_name='RoyalUnion', ally_crest_id=10054 WHERE clan_id=300000051; +INSERT INTO crests (crest_id, data, type) VALUES (9558, 0x444453207c000000071008001000000010000000800000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000020000000040000004458543100000000000000000000000000000000000000000010000000000000000000000000000000000000ffff000055550000ffff00005555b0085dff00005555800affff000055550200ffff253900240708ffff8340c34040605eff02400d2d3534dfff694aa0604000ffff242900808034ffff37ce60a8e36a7dff25490d002aa8beff2f84a2f8ef7dbeff00002c805555feef000000a05555fef7000082005555feff0000eac05555, 1); +UPDATE clan_data SET crest_id=9558, ally_id=300000049, ally_name='RoyalUnion', ally_crest_id=10054 WHERE clan_id=300000052; +INSERT INTO crests (crest_id, data, type) VALUES (9559, 0x444453207c000000071008001000000010000000800000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000020000000040000004458543100000000000000000000000000000000000000000010000000000000000000000000000000000000ed5200005555a8a8ea310000555500004b2a00005555000088410000555508a0ffffc93157577515f7b5aa315555dff30b630641fafa7a78449943407a725252beffcb3917595555d6bda831b89dddb5eb6ac250e87edf7e02818130f0f87ad64b420000000255559fff00003fbf55558751000028005555ae520000ea0a5555, 1); +UPDATE clan_data SET crest_id=9559, ally_id=300000049, ally_name='RoyalUnion', ally_crest_id=10054 WHERE clan_id=300000053; +INSERT INTO crests (crest_id, data, type) VALUES (9560, 0x444453207c000000071008001000000010000000800000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000020000000040000004458543100000000000000000000000000000000000000000010000000000000000000000000000000000000ff39000055552f2dffff000055550352ffff00005555a0a1183a00005555585c1f3a00002d2d2d2dffff0000424a4a4adfff1a5b70787878554201005c5c5c5cdf3100002d2d2d2ddfff01004a4a4a42fffffa5278787870553a00005c5c5c5cfe3900002d2d5555dfff000052025555dfff0000a1a05555394200005c785555, 1); +UPDATE clan_data SET crest_id=9560, ally_id=300000049, ally_name='RoyalUnion', ally_crest_id=10054 WHERE clan_id=300000054; +INSERT INTO crests (crest_id, data, type) VALUES (9561, 0x444453207c000000071008001000000010000000800000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000020000000040000004458543100000000000000000000000000000000000000000010000000000000000000000000000000000000e87100005555ff33a88100005555ff00849100005555ff00878900005555ff30a69100285311133345a90028d529f52985a1004055805c00a68900381531313386a1004819119191e7810030f103d50165b90058bc005ea0a69100481111111186910000f333555567a10000ff00555585910000ea005555659900003f305555, 1); +UPDATE clan_data SET crest_id=9561, ally_id=300000049, ally_name='RoyalUnion', ally_crest_id=10054 WHERE clan_id=300000055; +INSERT INTO crests (crest_id, data, type) VALUES (9562, 0x444453207c000000071008001000000010000000800000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000020000000040000004458543100000000000000000000000000000000000000000010000000000000000000000000000000000000005100005555fb00005100005555ffa0e05800005555ff20c05800005555ff00e7fe00480202cbc98cfe0050e8828d2506ff80b9ab22929ac6fe60b1ca8886a6c7fe0050c9cb0202cafe0058058dc27a23fe00303735090923fe00385c5c6060e058000000ff555500510000e0df55552051000003fd555520590000e07f5555, 1); +UPDATE clan_data SET crest_id=9562, ally_id=300000049, ally_name='RoyalUnion', ally_crest_id=10054 WHERE clan_id=300000056; +INSERT INTO crests (crest_id, data, type) VALUES (9563, 0x444453207c000000071008001000000008000000400000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000020000000040000004458543100000000000000000000000000000000000000000010000000000000000000000000000000000000fff700005555ff2fffef00005555fff8bff70b192f70e8e9ffefea08f80f2f6cfff7a708abed792dffe7c7008e7bed78fff700002fff5555ffef0000f8ff5555, 3); +INSERT INTO crests (crest_id, data, type) VALUES (9564, 0x444453207c00000007100800100000001000000080000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000002000000004000000445854310000000000000000000000000000000000000000001000000000000000000000000000000000000051cc0000555502fc96dd0000555500ff59f60000555500fffbf60000555580bf3fa53418543e365cbfef51187d6ac00f5fefb210f5ca628297de37003735323a96d54e185cdcdc9cbfff73000b22de57dfff37080028d555ffbd9018171ca2bdd9e60000fe02555519e70000ff00555598de0000ff00555513d500003f805555, 1); +UPDATE clan_data SET crest_id=9564, ally_id=300000057, ally_name='UnitedUnion', ally_crest_id=10063 WHERE clan_id=300000057; +INSERT INTO crests (crest_id, data, type) VALUES (9565, 0x444453207c00000007100800100000001000000080000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000002000000004000000445854310000000000000000000000000000000000000000001000000000000000000000000000000000000072bd00005555005493bd00005555a0550fad00005555205d4d9c0000555500154eb5001054544424afbd0008253515028fbd401058565408f0ac000895959198edac00080c6454540dad0008889db5bdeeac00102256567e2d940008309195150dad00005c085555509c0000550055550d940000550055551094000095a05555, 1); +UPDATE clan_data SET crest_id=9565, ally_id=300000057, ally_name='UnitedUnion', ally_crest_id=10063 WHERE clan_id=300000058; +INSERT INTO crests (crest_id, data, type) VALUES (9566, 0x444453207c0000000710080010000000100000008000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000200000000400000044585431000000000000000000000000000000000000000000100000000000000000000000000000000000006812000055551505ffff000055551f1fdfff00005555f4f48d13000055555868ffe76300fdffff00ffff42001f1f1f00ffff2200f4f4f400ffd7080a5f7fdf00ee3361005502220affff2000151b1f1fffff410054e4f4f47134800055a8a8ea4d130000292d5555bff700001f1f5555ffff0000f4f455556d0b0000a0685555, 1); +UPDATE clan_data SET crest_id=9566, ally_id=300000057, ally_name='UnitedUnion', ally_crest_id=10063 WHERE clan_id=300000059; +INSERT INTO crests (crest_id, data, type) VALUES (9567, 0x444453207c0000000710080010000000100000008000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000200000000400000044585431000000000000000000000000000000000000000000100000000000000000000000000000000000001de7000055555515fed60000555501a8bdad00005555507e4208000055558280ffff00008585a1a1ffe66d313a3a3e1f3def8a10545454540d4200007e5c48489dce200081a1c5c5dcee3310175515151cef0e00545554544a31000040707e5eb473000015555555b3520000f8a155554f390000afe0555507290000dc575555, 1); +UPDATE clan_data SET crest_id=9567, ally_id=300000057, ally_name='UnitedUnion', ally_crest_id=10063 WHERE clan_id=300000060; +INSERT INTO crests (crest_id, data, type) VALUES (9568, 0x444453207c0000000710080010000000100000008000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000200000000400000044585431000000000000000000000000000000000000000000100000000000000000000000000000000000006218000055553f2f92d3000055555522dfff000055555582e42000005555d55c0bba0000352535154fdb00302a2af868deff0038030b5555feff000056585557d7de0000d5555535bcff2020add5eb00feffec837b7d6d00deff000057555558b4de000009c25555f2c50000e855555577ce00002d555555feff0000600b5555, 1); +UPDATE clan_data SET crest_id=9568, ally_id=300000057, ally_name='UnitedUnion', ally_crest_id=10063 WHERE clan_id=300000061; +INSERT INTO crests (crest_id, data, type) VALUES (9569, 0x444453207c00000007100800100000001000000080000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000002000000004000000445854310000000000000000000000000000000000000000001000000000000000000000000000000000000087ff000055550000e4ff00005555000ae2ff0000555500a847ff00005555002a6effe7a4b868f83c29df403bf2f47e55ace6ca0b0b3ff5d5f0fea0a21f1716144eff88b43cbc7c7cebee2000fffe5c602af76000ffbf3509d1fea0a114161715a5ff0000a8005555e2ff00000a005555e1ff0000e000555526ff00003e005555, 1); +UPDATE clan_data SET crest_id=9569, ally_id=300000057, ally_name='UnitedUnion', ally_crest_id=10063 WHERE clan_id=300000062; +INSERT INTO crests (crest_id, data, type) VALUES (9570, 0x444453207c000000071008001000000010000000800000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000020000000040000004458543100000000000000000000000000000000000000000010000000000000000000000000000000000000e9ff000055550505caff000055555758cdee00005555d515edff00005555585ce4c5000015555555e8ff000060290589d1fe0100f5707caeeaff20005555b50afeff00005595896a21f700000a16d555ffff40c35f7ae283ecffe051020382602000000015105555f5ff000055155555f6ff000000a05555a2ff000078575555, 1); +UPDATE clan_data SET crest_id=9570, ally_id=300000057, ally_name='UnitedUnion', ally_crest_id=10063 WHERE clan_id=300000063; +INSERT INTO crests (crest_id, data, type) VALUES (9571, 0x444453207c0000000710080010000000100000008000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000200000000400000044585431000000000000000000000000000000000000000000100000000000000000000000000000000000007cff0000555515459cff000055555045bcff0000555505519cff0000555554517dff0008d14545451dff00401d1f1f7f1dff0040f4f4f4fd7dff0000475151515cff0008454545f11dff02381d1f171f1cff005074f4d4f41bff00007153514fdcf6000045155555ddff000065505555bcff000059055555dbee000051545555, 1); +UPDATE clan_data SET crest_id=9571, ally_id=300000057, ally_name='UnitedUnion', ally_crest_id=10063 WHERE clan_id=300000064; +INSERT INTO crests (crest_id, data, type) VALUES (9572, 0x444453207c000000071008001000000008000000400000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000020000000040000004458543100000000000000000000000000000000000000000010000000000000000000000000000000000000a8620000555557c74b4d00005555c9cd4dbc0020b8afaac90b7c4000b6f7ebb30d9c0000bae9e1a553a58000dbd64d656591000025b55555b39400004f7e5555, 3); +INSERT INTO crests (crest_id, data, type) VALUES (9573, 0x444453207c000000071008001000000010000000800000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000020000000040000004458543100000000000000000000000000000000000000000010000000000000000000000000000000000000c8990000555500f80fbc00005555025f58e6000055550255feff00005555001549a200102cfc5e56eec302080215155517e6000802555456ffff000010151515a69100005c5c5c7c30bc010015151555d4cc000054555454ffff000015151515089a0000fc005555afc300005502555538d6000055005555ffff000015005555, 1); +UPDATE clan_data SET crest_id=9573, ally_id=300000065, ally_name='DarkUnion', ally_crest_id=10072 WHERE clan_id=300000065; +INSERT INTO crests (crest_id, data, type) VALUES (9574, 0x444453207c000000071008001000000010000000800000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000020000000040000004458543100000000000000000000000000000000000000000010000000000000000000000000000000000000821000005555f5ccffff000055555101a310000055559512e318000055556549ffff000035550909ffff6208c0021500ffff000055014006ffff000041406160ffff00000d055501ffff01002b000180ffff0000450d4c51ffff0000614041415ace000051555555dfff000051515555ffff0000505555557eef000041555555, 1); +UPDATE clan_data SET crest_id=9574, ally_id=300000065, ally_name='DarkUnion', ally_crest_id=10072 WHERE clan_id=300000066; +INSERT INTO crests (crest_id, data, type) VALUES (9575, 0x444453207c0000000710080010000000100000008000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000200000000400000044585431000000000000000000000000000000000000000000100000000000000000000000000000000000004421000055559517f6b500005555000078c600005555002a99ce00005555625ab29c000055d5353555b5694aaff338bddbdee841abbfdb4d14a5000078585a5e34a500003595353538c6aa5282976aef99ce0842fd0ea4af95ad00005e5c5656149d00002dad5555d3a40000c822555514ad0000822055550b5b000054545555, 1); +UPDATE clan_data SET crest_id=9575, ally_id=300000065, ally_name='DarkUnion', ally_crest_id=10072 WHERE clan_id=300000067; +INSERT INTO crests (crest_id, data, type) VALUES (9576, 0x444453207c0000000710080010000000100000008000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000200000000400000044585431000000000000000000000000000000000000000000100000000000000000000000000000000000009ace0000555555f3210000005555905a200000005555029cbbce0000555555cf7ef70100adb5354fffff00005776b425ffff0000d59d1f58dfff00007a5e5cf1dfff0000003fd555ffff0000f754524fffff00005f1585e1ffff000000fc57552000000062e955551ce70000456555553ce700005159555520000000394b5555, 1); +UPDATE clan_data SET crest_id=9576, ally_id=300000065, ally_name='DarkUnion', ally_crest_id=10072 WHERE clan_id=300000068; +INSERT INTO crests (crest_id, data, type) VALUES (9577, 0x444453207c000000071008001000000010000000800000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000020000000040000004458543100000000000000000000000000000000000000000010000000000000000000000000000000000000ffff000055550000ffff000055550050ffff000055550005ffff000055550000dff7dfad00aaff55ffff0700d0d0dadaffff0600070707a7ffffbf9d00aabf551f85bd2a00aaaa57fff721009a9a5a1efff72200a6a6a5f47f859d2200aaffd51f3b000000005555fc3a0000f0a055551d4300000f0a5555ff32000000005555, 1); +UPDATE clan_data SET crest_id=9577, ally_id=300000065, ally_name='DarkUnion', ally_crest_id=10072 WHERE clan_id=300000069; +INSERT INTO crests (crest_id, data, type) VALUES (9578, 0x444453207c00000007100800100000001000000080000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000002000000004000000445854310000000000000000000000000000000000000000001000000000000000000000000000000000000079ad0000555555153ea50000555521ba389d00005555522b38c6000055555515bfd60100c5e9391abfd6290001500447dfce060070c1444998ce0000545119537fd6030038d96da5bfd62900045001257fce050050954ad07fce0100d6746d5a5bad0000155555553fa50000b20155551fa50000ae50555579ad000054555555, 1); +UPDATE clan_data SET crest_id=9578, ally_id=300000065, ally_name='DarkUnion', ally_crest_id=10072 WHERE clan_id=300000070; +INSERT INTO crests (crest_id, data, type) VALUES (9579, 0x444453207c00000007100800100000001000000080000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000002000000004000000445854310000000000000000000000000000000000000000001000000000000000000000000000000000000079fe00005555ff0bd4fd00005555ae8068e30000555500802fff00005555aa8f3ae7075a098989a918af523da86bee6f3ab7c329fa03f273b1f7600987048484d5fee571a1a1a1e139970753cecec87f7bd7412173530357dee74000a4a4a4a512fe0000f3aa555546fc0000aa0055554cfe00002a00555569ff000020005555, 1); +UPDATE clan_data SET crest_id=9579, ally_id=300000065, ally_name='DarkUnion', ally_crest_id=10072 WHERE clan_id=300000071; +INSERT INTO crests (crest_id, data, type) VALUES (9580, 0x444453207c000000071008001000000010000000800000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000020000000040000004458543100000000000000000000000000000000000000000010000000000000000000000000000000000000000800005555020b003000005555bf2fc5b800005555cd0b447900005555f22800300000d5d5df0bc3d00010f52d0d2b83e000b08900aa69e3c800b0cbfeb581c3d00040bd09092f82e000a8ede068aaa2d800a83b3e818a82e800680000aadae4c000000828555581e80000020a5555a2d0000000205555a691000030385555, 1); +UPDATE clan_data SET crest_id=9580, ally_id=300000065, ally_name='DarkUnion', ally_crest_id=10072 WHERE clan_id=300000072; +INSERT INTO crests (crest_id, data, type) VALUES (9581, 0x444453207c00000007100800100000000800000040000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000002000000004000000445854310000000000000000000000000000000000000000001000000000000000000000000000000000000057a5000055550080272900005555545638a50721a0c0c0408e5200005d59b5c5789400004060626ab57b00004d6373905683000080005555337300003e245555, 3); +INSERT INTO crests (crest_id, data, type) VALUES (9582, 0x444453207c0000000710080010000000100000008000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000200000000400000044585431000000000000000000000000000000000000000000100000000000000000000000000000000000006a830000555500022a830000555500004b7b000055550000497b00005555000035e760004e6a4aaa97d76000c6e586aa78df4100935a92aa36e76000b1a9a1aa57d7a000aa4a6a4098cf8000aa86a5869ac78100aa925a9298d76000aaa1a9a1b9ce000080005555b7d6000020005555f9de00008a005555b8ce000008005555, 1); +UPDATE clan_data SET crest_id=9582, ally_id=300000073, ally_name='GoldenUnion', ally_crest_id=10081 WHERE clan_id=300000073; +INSERT INTO crests (crest_id, data, type) VALUES (9583, 0x444453207c0000000710080010000000100000008000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000200000000400000044585431000000000000000000000000000000000000000000100000000000000000000000000000000000001a950000555580a8ffff00005555aa027c7c0000555500aa1c6c000055550e00ffff514acb0be555ffff0f3a030fd705ffffef31ff785f94bfd72e22fff3c661dfefe918f31d4559dff76921c41b900ddfff0d00fc0c5950bfe70c00eccddbf52c29000020005555f1310000b3a255559fff0000dcfd5555db9c0000ffbc5555, 1); +UPDATE clan_data SET crest_id=9583, ally_id=300000073, ally_name='GoldenUnion', ally_crest_id=10081 WHERE clan_id=300000074; +INSERT INTO crests (crest_id, data, type) VALUES (9584, 0x444453207c000000071008001000000010000000800000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000020000000040000004458543100000000000000000000000000000000000000000010000000000000000000000000000000000000400800005555f8fa200800005555962240000000555541a3400800005555968092ef00005501550590ff20085501510151ef20005550511172ef20005140510037df00005501555573ef600811015101aff700085151511054ef000851551441200000000a4a555520080000b280555540000000328b55554000000028d75555, 1); +UPDATE clan_data SET crest_id=9584, ally_id=300000073, ally_name='GoldenUnion', ally_crest_id=10081 WHERE clan_id=300000075; +INSERT INTO crests (crest_id, data, type) VALUES (9585, 0x444453207c000000071008001000000010000000800000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000020000000040000004458543100000000000000000000000000000000000000000010000000000000000000000000000000000000002800005555bf2f03b9000055550baa24b900005555e0ab003000005555565c45a90008b525858dc691003856253313868900281f58eccc469900005e58507225a100008d8d25b586910030331305d645810030c4cc501f87a100007252585e002000002f95555504b10000a20b5555e4b800008ae05555002800007c565555, 1); +UPDATE clan_data SET crest_id=9585, ally_id=300000073, ally_name='GoldenUnion', ally_crest_id=10081 WHERE clan_id=300000076; +INSERT INTO crests (crest_id, data, type) VALUES (9586, 0x444453207c000000071008001000000010000000800000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000020000000040000004458543100000000000000000000000000000000000000000010000000000000000000000000000000000000020000005555f0286d2900005555f52bad39000055555f62410800005555f6f00d290000d5f5b535bff70a00fd3f3fcfbfff4b297dfcfcffd27b0000555756546e31000035b595559ff70821f3f30ffdfaf70a5bf3f1c06312840000545457554108000033925555328400002d5555557184000070555555400000009b4b5555, 1); +UPDATE clan_data SET crest_id=9586, ally_id=300000073, ally_name='GoldenUnion', ally_crest_id=10081 WHERE clan_id=300000077; +INSERT INTO crests (crest_id, data, type) VALUES (9587, 0x444453207c00000007100800100000001000000080000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000002000000004000000445854310000000000000000000000000000000000000000001000000000000000000000000000000000000020000000555500c0bd9b00005555a52dfcbc000055556a0004000000555578f841000000202030a0bd8209008fb37b7b1bc506000a0125a55684010054565654021800002d2dbfffaf810410f3fbedfd109a06602f32652bf25100005c5e5f5a020000000f0d5555252000002baf5555727900002faf5555d8610000587a5555, 1); +UPDATE clan_data SET crest_id=9587, ally_id=300000073, ally_name='GoldenUnion', ally_crest_id=10081 WHERE clan_id=300000078; +INSERT INTO crests (crest_id, data, type) VALUES (9588, 0x444453207c000000071008001000000010000000800000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000020000000040000004458543100000000000000000000000000000000000000000010000000000000000000000000000000000000f97b00005555f5351fbe00005555befc5fff00005555ff03bff7000055555540dfff040005555505fff72c00523b8baaffff68008ac080799fc503007c5f55559ff70200cd3d5555dcc60e000925b595dff72b0054801a14f73102007a787f6acf410000fd8d55557fef0000fd8f55555fef00003cff5555ec200000c0e05555, 1); +UPDATE clan_data SET crest_id=9588, ally_id=300000073, ally_name='GoldenUnion', ally_crest_id=10081 WHERE clan_id=300000079; +INSERT INTO crests (crest_id, data, type) VALUES (9589, 0x444453207c000000071008001000000010000000800000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000020000000040000004458543100000000000000000000000000000000000000000010000000000000000000000000000000000000230800005555af0f1fce00005555b535188c00005555545c4108000055552880da7b0000d535f5f5dfff3300352ab5adbff7340856a0587a9a7b02005f5c5757300020002d35d5d51fbe0a003fbfbf95f77b0c00f0fcfc7f300821005c5c575720000000c0f05555b57200003db55555f0480000f87c55552000000003005555, 1); +UPDATE clan_data SET crest_id=9589, ally_id=300000073, ally_name='GoldenUnion', ally_crest_id=10081 WHERE clan_id=300000080; +INSERT INTO crests (crest_id, data, type) VALUES (9590, 0x444453207c0000000710080010000000080000004000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000200000000400000044585431000000000000000000000000000000000000000000100000000000000000000000000000000000006d1a00005555aa2abd96000055550f8b586dc70095d5e5c595544701a05fff5d7554c700e9e3e2aaf24b0601afaff700b42b000080005555377d00002a0a5555, 3); +INSERT INTO crests (crest_id, data, type) VALUES (9591, 0x444453207c0000000710080010000000100000008000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000200000000400000044585431000000000000000000000000000000000000000000100000000000000000000000000000000000003ddf00005555aa02bfef00005555aa289fe700005555fea8ce5b00005555aa883ddfd594a1a9a1a1d8ce8f6b78eaa8e815a5ee52f7e8bcf8cd6ba829e86868681ddff59cb1a1a1a1d9c6f5947c7c786c159df17bd454545caf6bc9316e6e6c68ffef00002aaa5555ffef0000e0aa5555ffef00000efe5555ffef0000fcff5555, 1); +UPDATE clan_data SET crest_id=9591, ally_id=300000081, ally_name='StormUnion', ally_crest_id=10090 WHERE clan_id=300000081; +INSERT INTO crests (crest_id, data, type) VALUES (9592, 0x444453207c000000071008001000000010000000800000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000020000000040000004458543100000000000000000000000000000000000000000010000000000000000000000000000000000000801800005555e525ea5a00005555af0aca5a00005555faa8e11800005555575847520000b5b52525f8de064af5fdbf2f3ae76852577f7e78ca6200085e5e5e78c95a000025b5b5159cf788522dadfb5fb7d60642f8feff7fea5a0000785e5e5eac7b000025c55555675200000abd5555664a000080fe5555c11800007c5f5555, 1); +UPDATE clan_data SET crest_id=9592, ally_id=300000081, ally_name='StormUnion', ally_crest_id=10090 WHERE clan_id=300000082; +INSERT INTO crests (crest_id, data, type) VALUES (9593, 0x444453207c000000071008001000000010000000800000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000020000000040000004458543100000000000000000000000000000000000000000010000000000000000000000000000000000000430800005555d527f76b00005555f161d97b000055555372610800005555fc52578c01005595554596ed0a00597b177db78b060051a37d5eb57300005555555cd9630008cbcaada515840300496145c5dd63060058529696dd730300586a5757714a000035f555554e4200003ffb5555334a00003ffd55552100000000085555, 1); +UPDATE clan_data SET crest_id=9593, ally_id=300000081, ally_name='StormUnion', ally_crest_id=10090 WHERE clan_id=300000083; +INSERT INTO crests (crest_id, data, type) VALUES (9594, 0x444453207c000000071008001000000010000000800000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000020000000040000004458543100000000000000000000000000000000000000000010000000000000000000000000000000000000490000005555b52fc82d00005555bf03e723000055555a7c600800005555833158080000bd2d2d2da6261a000d0d0da5f24403087bfcfcff0942000055717e7f920800003dbdf5d532010900000002ad6d43000082e272558000200075fc575540000000293d5555660800000bfd555540000000f378555501000000ffff5555, 1); +UPDATE clan_data SET crest_id=9594, ally_id=300000081, ally_name='StormUnion', ally_crest_id=10090 WHERE clan_id=300000084; +INSERT INTO crests (crest_id, data, type) VALUES (9595, 0x444453207c0000000710080010000000100000008000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000200000000400000044585431000000000000000000000000000000000000000000100000000000000000000000000000000000002228000055553f2fab82000055557f024230000055557a7c2000000055550000b9fd0000b5b5b535beffb3bcc3ad3e3f5eff00085f78c882c96900005555575c4b9a000025b5d5d53eff67610b0bbbd7bfff476920080bd79fff00085e585858400800000e0f5555e44000003e775555896900003ffd5555fae50000585a5555, 1); +UPDATE clan_data SET crest_id=9595, ally_id=300000081, ally_name='StormUnion', ally_crest_id=10090 WHERE clan_id=300000085; +INSERT INTO crests (crest_id, data, type) VALUES (9596, 0x444453207c00000007100800100000001000000080000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000002000000004000000445854310000000000000000000000000000000000000000001000000000000000000000000000000000000092fc00005555ff03d3fc00005555ae00addb000055550800d5d400005555002a76fd8078a1213121fbfe8bcafdeaa8d4f4fca9c90afa7e42b7fd2baa9293919396fd6078213131a11bffacd254a8ead555fdaad96a7efb2a58fd4ca291939392b3fc000003ff5555b3fc000080ab55556cdb0000000a5555d4cc00002a005555, 1); +UPDATE clan_data SET crest_id=9596, ally_id=300000081, ally_name='StormUnion', ally_crest_id=10090 WHERE clan_id=300000086; +INSERT INTO crests (crest_id, data, type) VALUES (9597, 0x444453207c000000071008001000000010000000800000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000020000000040000004458543100000000000000000000000000000000000000000010000000000000000000000000000000000000eaf300005555aa0271fc00005555fa0098ec00005555ff007ccc00005555fff0b5fd8068975d434351fd0068004147f585c90168d5ffebacd5fd0038f74742481ffe094091518d8b73fd20a85fd5540093fda0781f77519011fe209940406ae936cd000003ff5555d7dd000022df55558fec00008caf55552bfc00008caa5555, 1); +UPDATE clan_data SET crest_id=9597, ally_id=300000081, ally_name='StormUnion', ally_crest_id=10090 WHERE clan_id=300000087; +INSERT INTO crests (crest_id, data, type) VALUES (9598, 0x444453207c0000000710080010000000100000008000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000200000000400000044585431000000000000000000000000000000000000000000100000000000000000000000000000000000000100000055555555410800005555fd78200000005555489d0100000055555dffffff000000414141ffff000001050505ffff000040410505ffff000055414155ffff000041414100ffff000005050501ffff000005054140ffff00005541415520000000185755552000000064a5555520000000835755550100000055555555, 1); +UPDATE clan_data SET crest_id=9598, ally_id=300000081, ally_name='StormUnion', ally_crest_id=10090 WHERE clan_id=300000088; +INSERT INTO crests (crest_id, data, type) VALUES (9599, 0x444453207c000000071008001000000008000000400000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000020000000040000004458543100000000000000000000000000000000000000000010000000000000000000000000000000000000e9ee0000555580c0ffff0000555582cfe7fe0a634ae2ca8affff8b834542607a6affc75a4a4afbffffff0000e9a28fc2149d00002a7f55557cf70000cad55555, 3); +INSERT INTO crests (crest_id, data, type) VALUES (9600, 0x444453207c000000071008001000000010000000800000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000020000000040000004458543100000000000000000000000000000000000000000010000000000000000000000000000000000000c631000055555715fdff000055552d027bff0000555578a881300000555577fcfeff000095252505fcff237380a098a875ffe028a0a8b6ad8cdb0008565c585019ff00000525359554ff216b40e0dcfed1fd4039a1b0fefe07ea000058585e5ee240000037d55555cdd30000022f555529f20000a0e85555004000005c5e5555, 1); +UPDATE clan_data SET crest_id=9600, ally_id=300000089, ally_name='SilentUnion', ally_crest_id=10099 WHERE clan_id=300000089; +INSERT INTO crests (crest_id, data, type) VALUES (9601, 0x444453207c0000000710080010000000100000008000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000200000000400000044585431000000000000000000000000000000000000000000100000000000000000000000000000000000009452000055552df9dfff00005555021dbfff000055558054b55200005555786fdfff00005dd97101bfff0a0015151500dfff090054545400dfff000075674d40ffff0000015159dddfff0a0800151515dfff0a0800545454ffff00004045677594520000f92d5555ffff000015025555dfff000054805555544a00006f785555, 1); +UPDATE clan_data SET crest_id=9601, ally_id=300000089, ally_name='SilentUnion', ally_crest_id=10099 WHERE clan_id=300000090; +INSERT INTO crests (crest_id, data, type) VALUES (9602, 0x444453207c000000071008001000000010000000800000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000020000000040000004458543100000000000000000000000000000000000000000010000000000000000000000000000000000000200800005555ff082bff0000555505a106fe0000555550502018000055557f0210ff2010413cf18536f70010a1858483cfe50008505010808fed0020413c4e522fff0008c585b131f1f64028aa2a2821efe50038a0a020408ffd000852524e4c4ff700003141555533ff0000851555558fd5000050545555ece5000048415555, 1); +UPDATE clan_data SET crest_id=9602, ally_id=300000089, ally_name='SilentUnion', ally_crest_id=10099 WHERE clan_id=300000091; +INSERT INTO crests (crest_id, data, type) VALUES (9603, 0x444453207c000000071008001000000010000000800000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000020000000040000004458543100000000000000000000000000000000000000000010000000000000000000000000000000000000ffff0000555500c09fef00005555a0ae5de700005555be2bffff000055550000ffffc510bcaa7850dff7c510cae0dc44ffffc4100f030201ffffbacea02a2184ffff8829004080f8dff703004372705ddff72000035855fdffffa208fffd0500b2730000282b5555d26b00000ae05555fff700000f005555ffff000000005555, 1); +UPDATE clan_data SET crest_id=9603, ally_id=300000089, ally_name='SilentUnion', ally_crest_id=10099 WHERE clan_id=300000092; +INSERT INTO crests (crest_id, data, type) VALUES (9604, 0x444453207c00000007100800100000001000000080000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000002000000004000000445854310000000000000000000000000000000000000000001000000000000000000000000000000000000000d800005555e0a0002000005555d6f8002800005555953d20d8000055550b0a83a8003080afb5bdecac0020df9f1f1f2cad0018f7f6f4f4a3a0002002ea5e7a6368001882e0787aa47a0018152d09ad859a00185678607a6160001880030da582400000a22b555521390000af8a555543410000ffa255554138000000a05555, 1); +UPDATE clan_data SET crest_id=9604, ally_id=300000089, ally_name='SilentUnion', ally_crest_id=10099 WHERE clan_id=300000093; +INSERT INTO crests (crest_id, data, type) VALUES (9605, 0x444453207c000000071008001000000010000000800000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000020000000040000004458543100000000000000000000000000000000000000000010000000000000000000000000000000000000a3a90000555508a8a2a100005555aa0a449100005555bfb0e3a10000555500aac5810040eebe1e37a4d1005802002db542e1004872e0dedee78900182b2d35f7e5a900203f5edaf8a9b20018888b0df507ca001088f25857c5b10018f5b5af2be49900002a20555543a900002f2e5555a4a10000fcb85555a3990000aa005555, 1); +UPDATE clan_data SET crest_id=9605, ally_id=300000089, ally_name='SilentUnion', ally_crest_id=10099 WHERE clan_id=300000094; +INSERT INTO crests (crest_id, data, type) VALUES (9606, 0x444453207c0000000710080010000000100000008000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000200000000400000044585431000000000000000000000000000000000000000000100000000000000000000000000000000000002621000055557f3f5fff00005555958bbfff0000555554830449000055557f58d2830000d515d5557fffa828fd9d03009fff2238575814404e8b01005f5f5b53fdee00001595d5d5bfffac4900151515ffff4260c0004057dcfe0000585353532108000000bc5555bfff0000bf8055553cff0000ff0f55555dff00005b545555, 1); +UPDATE clan_data SET crest_id=9606, ally_id=300000089, ally_name='SilentUnion', ally_crest_id=10099 WHERE clan_id=300000095; +INSERT INTO crests (crest_id, data, type) VALUES (9607, 0x444453207c000000071008001000000010000000800000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000020000000040000004458543100000000000000000000000000000000000000000010000000000000000000000000000000000000fff7000055552509fff7000055555840fff7000055550903fff7000055555040ffff2f53090a0a0afffff37340800000fffffbb5090f2b03ffff8721c0a81c28fffff1630a0a0a09ffff4621381c20c0ffff2f53020a0a09ffff681900808040fff7000009255555fff7000040705555fff7000009b55555ffff0000705e5555, 1); +UPDATE clan_data SET crest_id=9607, ally_id=300000089, ally_name='SilentUnion', ally_crest_id=10099 WHERE clan_id=300000096; +INSERT INTO crests (crest_id, data, type) VALUES (9608, 0x444453207c0000000710080010000000080000004000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000200000000400000044585431000000000000000000000000000000000000000000100000000000000000000000000000000000007fe70000555500001fff0000555528b8ffff751bfbef9f257effa420facbc1e1dff7ad01159dd5d53ce70348627b7a6a748c00003f3f55559ad60000ce865555, 3); +INSERT INTO crests (crest_id, data, type) VALUES (9609, 0x444453207c000000071008001000000010000000800000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000020000000040000004458543100000000000000000000000000000000000000000010000000000000000000000000000000000000400800005555a323c241000055557517c02000005555f76c2000000055553505ebf60000d5bd09b5cdfe80491fa08022ccfe205a67a000a22cde0000557e5057601000003fe7f5d9d4ee20080dcbe1e9d8f60000585a7353610801003ab5ffff40000000c5dd555575ff000089ad5555d3f60000505655550100000000005555, 1); +UPDATE clan_data SET crest_id=9609, ally_id=300000097, ally_name='FreeLeague', ally_crest_id=10108 WHERE clan_id=300000097; +INSERT INTO crests (crest_id, data, type) VALUES (9610, 0x444453207c000000071008001000000010000000800000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000020000000040000004458543100000000000000000000000000000000000000000010000000000000000000000000000000000000400800005555f8fa200800005555962240000000555541a3400800005555968092ef00005501550590ff20085501510151ef20005550511172ef20005140510037df00005501555573ef600811015101aff700085151511054ef000851551441200000000a4a555520080000b280555540000000328b55554000000028d75555, 1); +UPDATE clan_data SET crest_id=9610, ally_id=300000097, ally_name='FreeLeague', ally_crest_id=10108 WHERE clan_id=300000098; +INSERT INTO crests (crest_id, data, type) VALUES (9611, 0x444453207c0000000710080010000000100000008000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000200000000400000044585431000000000000000000000000000000000000000000100000000000000000000000000000000000004208000055558ae0dffe00005555552b1efe0000555555e861000000555582b85fff0100d53525051ffff5b0025c57553ffd4d5880affe5ffcd20000575c58507ffe0000052535d5bffd1188ffff5caa3ccb2b485fdfb5a01cd2000050585e5720080000386e555516bb00000bf5555537bb0000f85f5555031000007c775555, 1); +UPDATE clan_data SET crest_id=9611, ally_id=300000097, ally_name='FreeLeague', ally_crest_id=10108 WHERE clan_id=300000099; +INSERT INTO crests (crest_id, data, type) VALUES (9612, 0x444453207c000000071008001000000010000000800000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000020000000040000004458543100000000000000000000000000000000000000000010000000000000000000000000000000000000610800005555b2b2410800005555eb478b7300005555c5d5610800005555f6cf6bac200055fd0b9789cc000075cfc8a88a83000877585ebc2c6b000075496d5faeac0000d5b535fd4ded0008f8f8ff55edd400102f0fff55f1cd00007e424b79200800008ed75555ac7b0000d5c555556eac0000007f55550a7b00005c555555, 1); +UPDATE clan_data SET crest_id=9612, ally_id=300000097, ally_name='FreeLeague', ally_crest_id=10108 WHERE clan_id=300000100; +INSERT INTO crests (crest_id, data, type) VALUES (9613, 0x444453207c000000071008001000000010000000800000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000020000000040000004458543100000000000000000000000000000000000000000010000000000000000000000000000000000000ffff000055550150dfff00005555005591df000055553b16ffff000055554005dfff000054545454b282000835f57fb374f7c00017191b1affff000015151515deff01005454d4d4f38a08009f74a15534ef600019191855ffff000815151615dfff0000d00155557fff0000fb00555553ef0000181b5555feff000006405555, 1); +UPDATE clan_data SET crest_id=9613, ally_id=300000097, ally_name='FreeLeague', ally_crest_id=10108 WHERE clan_id=300000101; +INSERT INTO crests (crest_id, data, type) VALUES (9614, 0x444453207c0000000710080010000000100000008000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000200000000400000044585431000000000000000000000000000000000000000000100000000000000000000000000000000000000bbe000055555525edff000055550002f2ff000055558080eab50000555555582c8c20004152565656ff01001152515597ff2000448545554c8c000041a59595ecbd0000575b692597f7000055524145d6f7000055854151cbbd0000d5a56958efc5000015555555b5ef000002555555d7f7000080555555cebd000054555555, 1); +UPDATE clan_data SET crest_id=9614, ally_id=300000097, ally_name='FreeLeague', ally_crest_id=10108 WHERE clan_id=300000102; +INSERT INTO crests (crest_id, data, type) VALUES (9615, 0x444453207c00000007100800100000001000000080000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000002000000004000000445854310000000000000000000000000000000000000000001000000000000000000000000000000000000021000000555580c0d5ef00005555d5356a9500005555d7dca9b1000055555a78f6e700005555d535faf700108da3280af6ffe0585c62c820499500005e5e5e58fbff00108db32a05f7ff406202548484f8ff205a88151a1ef6ff600078e2a850f7ff000005055555d1ff00000c8c55554cff00003a3e5555f3ff000050505555, 1); +UPDATE clan_data SET crest_id=9615, ally_id=300000097, ally_name='FreeLeague', ally_crest_id=10108 WHERE clan_id=300000103; +INSERT INTO crests (crest_id, data, type) VALUES (9616, 0x444453207c0000000710080010000000100000008000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000200000000400000044585431000000000000000000000000000000000000000000100000000000000000000000000000000000004000000055550d2d6b4a00005555950d757b0000555583aa2829000055557f5ca139000055555515b4d600005555ed706d8a0300a9ada022ecda0008575e6240b8ff0000b5252901b5ff01005cd65756aeb30008fbde95358ec301084260705e2ef70000092555550ef70000a86855558d8b00008b5d555500100000282f5555, 1); +UPDATE clan_data SET crest_id=9616, ally_id=300000097, ally_name='FreeLeague', ally_crest_id=10108 WHERE clan_id=300000104; +INSERT INTO crests (crest_id, data, type) VALUES (9617, 0x444453207c0000000710080010000000080000004000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000200000000400000044585431000000000000000000000000000000000000000000100000000000000000000000000000000000004c7b00005555ff3fec7200005555fffc95c58030153797175dffe71874efbfbfeee4a030169cfcf8f7cdc038afaa22552fed0000e8e0555527290000030a5555, 3); +INSERT INTO crests (crest_id, data, type) VALUES (9618, 0x444453207c0000000710080010000000100000008000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000200000000400000044585431000000000000000000000000000000000000000000100000000000000000000000000000000000002100000055558812a51800005555fd3f5ace000055557f3ffff700005555555c2200000077db9b0f9ff70100d5f5e927ffff0c4a2d0fc2e09bce0300e8aa7e5f6c52010095250985ffffca39350d83e2dfff200080be7e5f1063000054575555c839000015555555bff70000f8f55555a93900005856555501000000aaaa5555, 1); +UPDATE clan_data SET crest_id=9618, ally_id=300000105, ally_name='IronLeague', ally_crest_id=10117 WHERE clan_id=300000105; +INSERT INTO crests (crest_id, data, type) VALUES (9619, 0x444453207c000000071008001000000010000000800000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000020000000040000004458543100000000000000000000000000000000000000000010000000000000000000000000000000000000000800005555e0a01f9600005555b585df9e000055555652010000005555a0809fd60400555581fcffbf0000a5a5aa2a7f872200525a2aaaffc701005555402adfde0000bc815555ffbf01002aaaa5a51f7f0100080a5252ffb701000240555501000000aaa055553fa6000085955555bfa600005256555501000000a0ea5555, 1); +UPDATE clan_data SET crest_id=9619, ally_id=300000105, ally_name='IronLeague', ally_crest_id=10117 WHERE clan_id=300000106; +INSERT INTO crests (crest_id, data, type) VALUES (9620, 0x444453207c000000071008001000000010000000800000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000020000000040000004458543100000000000000000000000000000000000000000010000000000000000000000000000000000000266100005555bf0f2579000055553f0be57000005555aa2ae56000005555def06679001827ef898f0481004825143eaba891006035bbf353457120087a7af0f0257900182f090f0da26800508bf9eb2da6910058fb7a58ffa3680030586082fe046100000f0e5555a26800000a825555e36800000aaa555504710000ea805555, 1); +UPDATE clan_data SET crest_id=9620, ally_id=300000105, ally_name='IronLeague', ally_crest_id=10117 WHERE clan_id=300000107; +INSERT INTO crests (crest_id, data, type) VALUES (9621, 0x444453207c000000071008001000000010000000800000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000020000000040000004458543100000000000000000000000000000000000000000010000000000000000000000000000000000000e969000055550fbf91ba000055558a3f4fb2000055555f70235900005555220a2a9a0138545303ab74c3295057fadf94539b016068a20a2a4fa30060fdeea0c82dc3ce2000c0f05817738f303d2dafba7a736900a8aa2ab5976405587aeaaaa09a9b0000a8ea5555362a0000f85e5555cc0900003fb755557a4d000002035555, 1); +UPDATE clan_data SET crest_id=9621, ally_id=300000105, ally_name='IronLeague', ally_crest_id=10117 WHERE clan_id=300000108; +INSERT INTO crests (crest_id, data, type) VALUES (9622, 0x444453207c000000071008001000000010000000800000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000020000000040000004458543100000000000000000000000000000000000000000010000000000000000000000000000000000000ffff000055550000ffff00005555b008bfff00005555800affff000055550200deff276900240708ffff0150c3404040dfff00580d2d3d34dfffc440a060c000ffff234100008036ffffd7ed60a043ebffff25590d00aaaaffff709ca078de75bdff00002ca05555ddff000080285555fef70000a20055555cdf0000c2805555, 1); +UPDATE clan_data SET crest_id=9622, ally_id=300000105, ally_name='IronLeague', ally_crest_id=10117 WHERE clan_id=300000109; +INSERT INTO crests (crest_id, data, type) VALUES (9623, 0x444453207c0000000710080010000000100000008000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000200000000400000044585431000000000000000000000000000000000000000000100000000000000000000000000000000000009e00000055550000941000005555c0c0a83e000055550101e1070000555500009f561e00555555805a2307006a7a7a584a568000010101d5b236691cffffab2d3f471004e05555551104030058606040b6b10318d50101011d7d714a2daaaaaa0f04000000005555110400004040555578c10000030355551ff8000000005555, 1); +UPDATE clan_data SET crest_id=9623, ally_id=300000105, ally_name='IronLeague', ally_crest_id=10117 WHERE clan_id=300000110; +INSERT INTO crests (crest_id, data, type) VALUES (9624, 0x444453207c0000000710080010000000100000008000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000200000000400000044585431000000000000000000000000000000000000000000100000000000000000000000000000000000004b890000555505bd72aa00005555803f8ab2000055555f70e76100005555f3cf05c900185e7b0b0314c315285e5adebc6ad3005068822a2a0ba328000b08a060ced22c400ac0d07810a3b8310f25d55556536800000000155274004078e0a080f6bb0000a8ea5555954a0000fc575555660000002e9755551f1600000a035555, 1); +UPDATE clan_data SET crest_id=9624, ally_id=300000105, ally_name='IronLeague', ally_crest_id=10117 WHERE clan_id=300000111; +INSERT INTO crests (crest_id, data, type) VALUES (9625, 0x444453207c00000007100800100000001000000080000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000002000000004000000445854310000000000000000000000000000000000000000001000000000000000000000000000000000000017bf0000555500dcb9ce0000555500ddbad60000555554542000000055550000d8ce000050d1d151facec01015151515d8ce000054555501b9d6000055555540dad6200051d35150d8d6a11815151515f9ce021950140000d9ce400045041044b8de000054005555d8d6000075005555d8d600005d005555d9d6000041505555, 1); +UPDATE clan_data SET crest_id=9625, ally_id=300000105, ally_name='IronLeague', ally_crest_id=10117 WHERE clan_id=300000112; +INSERT INTO crests (crest_id, data, type) VALUES (9626, 0x444453207c0000000710080010000000080000004000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000200000000400000044585431000000000000000000000000000000000000000000100000000000000000000000000000000000002000000055553555ff1f000055552535cb1a000055d52626ff27000025adbbfbb64d451915affee7f85d0000fa7a707c2c2300006941555541000000e0ff5555, 3); +INSERT INTO crests (crest_id, data, type) VALUES (9627, 0x444453207c0000000710080010000000100000008000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000200000000400000044585431000000000000000000000000000000000000000000100000000000000000000000000000000000002110000055552800e9710000555555544008000055550b0056ef000055555144daff000015d5057dffbf00085357aaa8ffaf00001545aa2affdf00001555545541100000621eddddffef0000a1851515fff700004a5254546100000094bdff7a2000000002025555dfff000005015555fff7000050405555083a000055515555, 1); +UPDATE clan_data SET crest_id=9627, ally_id=300000113, ally_name='SilverLeague', ally_crest_id=10126 WHERE clan_id=300000113; +INSERT INTO crests (crest_id, data, type) VALUES (9628, 0x444453207c00000007100800100000001000000080000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000002000000004000000445854310000000000000000000000000000000000000000001000000000000000000000000000000000000060100000555545ca457900005555f50d8689000055555ff8201000005555ba2836ff001849261415fcfe0028ed49555521a900306bad092914ff20086198145496ff001005515a162ffe0008fcf1254591ee00083f4f5851d6ff00085065a59440100000808e555592de000052555555b3e60000855555552010000002ea5555, 1); +UPDATE clan_data SET crest_id=9628, ally_id=300000113, ally_name='SilverLeague', ally_crest_id=10126 WHERE clan_id=300000114; +INSERT INTO crests (crest_id, data, type) VALUES (9629, 0x444453207c000000071008001000000010000000800000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000020000000040000004458543100000000000000000000000000000000000000000010000000000000000000000000000000000000410800005555cbca410800005555f88f410800005555abcf410800005555f65479ce000055dfab2bffff0000555de200ffff000055f58900ffff000055e5eac099ce0000e9ad3595ffffc21025af80abffffc31870f000e0dfff0000e362585c400000000dfd5555ef83000035555555108400005c55555520000000c2705555, 1); +UPDATE clan_data SET crest_id=9629, ally_id=300000113, ally_name='SilverLeague', ally_crest_id=10126 WHERE clan_id=300000115; +INSERT INTO crests (crest_id, data, type) VALUES (9630, 0x444453207c00000007100800100000001000000080000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000002000000004000000445854310000000000000000000000000000000000000000001000000000000000000000000000000000000039c6000055555c5698b50000555561799dd600005555e05eb9b500005555a179cc5a0100565c5c5ecd5a020051535151ce5a0200d65e58f8b17b0200595951b12d630100565c5cfc0e630100515151790a420100dc765c5e0e630200515951f1eb390000f8df555547290000f37d5555c5180000f87f555509420000f1d95555, 1); +UPDATE clan_data SET crest_id=9630, ally_id=300000113, ally_name='SilverLeague', ally_crest_id=10126 WHERE clan_id=300000116; +INSERT INTO crests (crest_id, data, type) VALUES (9631, 0x444453207c000000071008001000000010000000800000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000020000000040000004458543100000000000000000000000000000000000000000010000000000000000000000000000000000000b8c70000555585c5f29f0000555580ff107e0000555580ff2f84000055555053749f000085c5c5e58325e0037c7ede5ee118e018881010804e8c0000535b5959949d0000c58545456d640200baa055ff894b00007ea0555fec5a000051525951f07b0000451555551084000055a05555aa52000055005555c831000051545555, 1); +UPDATE clan_data SET crest_id=9631, ally_id=300000113, ally_name='SilverLeague', ally_crest_id=10126 WHERE clan_id=300000117; +INSERT INTO crests (crest_id, data, type) VALUES (9632, 0x444453207c00000007100800100000001000000080000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000002000000004000000445854310000000000000000000000000000000000000000001000000000000000000000000000000000000077de0000555500a0b6e600005555000077e600005555000099de00005555880077e6cc83d28a2822f8f66762aaaa2a37b7e6b3c59ffffc4a56de8549bcd4dc2077ded4d57d77df0576de8449b537080036de52c5ac8aaa6296e66a930000a27257de00000000555556d600000020555536ee00008000555514de0000aa005555, 1); +UPDATE clan_data SET crest_id=9632, ally_id=300000113, ally_name='SilverLeague', ally_crest_id=10126 WHERE clan_id=300000118; +INSERT INTO crests (crest_id, data, type) VALUES (9633, 0x444453207c000000071008001000000010000000800000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000020000000040000004458543100000000000000000000000000000000000000000010000000000000000000000000000000000000086200005555387ee5c8000055550b2f6be300005555827e5df700005555881565390008dfdef6944af100300d2f2b83b8cc00307bab17f7dfff010015959596bdef0000d65454543c9c0600f7f6c289b9590800e2a87a7a662002003c2fb73f5fef000056a85555156300003d00555538310000f8a05555ae200000af0a5555, 1); +UPDATE clan_data SET crest_id=9633, ally_id=300000113, ally_name='SilverLeague', ally_crest_id=10126 WHERE clan_id=300000119; +INSERT INTO crests (crest_id, data, type) VALUES (9634, 0x444453207c00000007100800100000001000000080000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000002000000004000000445854310000000000000000000000000000000000000000001000000000000000000000000000000000000041ff0000555500002aff00005555c030dfff00005555030effff000055550000eafea0a1202240908cfe00289c1795005cff002836d656aafeffa49900000107ffff40a1904000005eff0028aa95979cccfe00382254d4342aff40a906812020ffff000000005555deff0000b0c05555e8fe00000c03555521ff000000005555, 1); +UPDATE clan_data SET crest_id=9634, ally_id=300000113, ally_name='SilverLeague', ally_crest_id=10126 WHERE clan_id=300000120; +INSERT INTO crests (crest_id, data, type) VALUES (9635, 0x444453207c000000071008001000000008000000400000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000020000000040000004458543100000000000000000000000000000000000000000010000000000000000000000000000000000000f9ee0000555555cbc3800000555555bc16d68230c3e95d5d04a90000f8525cc800c16120df9a9a3a20d920205c7e5cac20c900002a55555520d100005c555555, 3); +INSERT INTO crests (crest_id, data, type) VALUES (9636, 0x444453207c0000000710080010000000100000008000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000200000000400000044585431000000000000000000000000000000000000000000100000000000000000000000000000000000002108000055558d005db50000555555207fc600005555558e51630000555555549fff001017171db5bfef901083810516dff7331886c62696bff70100d475f55a909b0000155555555fffcb18aaaaa2217fff4c28aaea44c63dfe00005e54545701000000203055559ece0000045555557fd6000088555555bfd6000052555555, 1); +UPDATE clan_data SET crest_id=9636, ally_id=300000121, ally_name='NorthernLeague', ally_crest_id=10135 WHERE clan_id=300000121; +INSERT INTO crests (crest_id, data, type) VALUES (9637, 0x444453207c0000000710080010000000100000008000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000200000000400000044585431000000000000000000000000000000000000000000100000000000000000000000000000000000004100000055550000610000005555a3082d22000055557dc3200000005555050d210800000000c0227a8d4200a509e3a2ff5e2a00ea0a2d2f973c00005756545c53630000d5951595fc4a27008aca2eb5f92b09002ab50b8a733300005c565657ea39000015555555ea390000f05555554a190000f05f5555220000002a055555, 1); +UPDATE clan_data SET crest_id=9637, ally_id=300000121, ally_name='NorthernLeague', ally_crest_id=10135 WHERE clan_id=300000122; +INSERT INTO crests (crest_id, data, type) VALUES (9638, 0x444453207c000000071008001000000010000000800000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000020000000040000004458543100000000000000000000000000000000000000000010000000000000000000000000000000000000ffff000055550000ffff000055550050ffff000055550005ffff000055550000dff7dfad00aaff55ffff0700d0d0dadaffff0600070707a7ffffbf9d00aabf551f85bd2a00aaaa57fff721009a9a5a1efff72200a6a6a5f47f859d2200aaffd51f3b000000005555fc3a0000f0a055551d4300000f0a5555ff32000000005555, 1); +UPDATE clan_data SET crest_id=9638, ally_id=300000121, ally_name='NorthernLeague', ally_crest_id=10135 WHERE clan_id=300000123; +INSERT INTO crests (crest_id, data, type) VALUES (9639, 0x444453207c000000071008001000000010000000800000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000020000000040000004458543100000000000000000000000000000000000000000010000000000000000000000000000000000000086200005555387ee5c8000055550b2f6be300005555827e5df700005555881565390008dfdef6944af100300d2f2b83b8cc00307bab17f7dfff010015959596bdef0000d65454543c9c0600f7f6c289b9590800e2a87a7a662002003c2fb73f5fef000056a85555156300003d00555538310000f8a05555ae200000af0a5555, 1); +UPDATE clan_data SET crest_id=9639, ally_id=300000121, ally_name='NorthernLeague', ally_crest_id=10135 WHERE clan_id=300000124; +INSERT INTO crests (crest_id, data, type) VALUES (9640, 0x444453207c000000071008001000000010000000800000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000020000000040000004458543100000000000000000000000000000000000000000010000000000000000000000000000000000000b8c70000555585c5f29f0000555580ff107e0000555580ff2f84000055555053749f000085c5c5e58325e0037c7ede5ee118e018881010804e8c0000535b5959949d0000c58545456d640200baa055ff894b00007ea0555fec5a000051525951f07b0000451555551084000055a05555aa52000055005555c831000051545555, 1); +UPDATE clan_data SET crest_id=9640, ally_id=300000121, ally_name='NorthernLeague', ally_crest_id=10135 WHERE clan_id=300000125; +INSERT INTO crests (crest_id, data, type) VALUES (9641, 0x444453207c000000071008001000000010000000800000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000020000000040000004458543100000000000000000000000000000000000000000010000000000000000000000000000000000000f84a0000555580805132000055550000dabd00005555ff30d4390000555580a29884ea293e7a7a7ebfe7f229565652415732d4186b587959f6bc1000575b6d47183a6b19e0ea6afe9aef021903f1f2c7b3ff0810d35062033bbd051041556d62b9e70000ff00555574df0000ff005555b3d5000057005555d4dd000055005555, 1); +UPDATE clan_data SET crest_id=9641, ally_id=300000121, ally_name='NorthernLeague', ally_crest_id=10135 WHERE clan_id=300000126; +INSERT INTO crests (crest_id, data, type) VALUES (9642, 0x444453207c000000071008001000000010000000800000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000020000000040000004458543100000000000000000000000000000000000000000010000000000000000000000000000000000000ed3900005555fd3f33840000555555023484000055555580ed3900005555fffc8608030007a50d05dff7060015952b15dff705005454e85467080200f078705047080100bfbf250df88302000fcb7e57d883020070e3b5f56808010076575a70490800000bab555524000000f0785555270000002db5555549080000e0ea5555, 1); +UPDATE clan_data SET crest_id=9642, ally_id=300000121, ally_name='NorthernLeague', ally_crest_id=10135 WHERE clan_id=300000127; +INSERT INTO crests (crest_id, data, type) VALUES (9643, 0x444453207c0000000710080010000000100000008000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000200000000400000044585431000000000000000000000000000000000000000000100000000000000000000000000000000000004b520000555555357fc6000055553537ffb5000055555cfc306b000055555554949400001595d5d5ffde020096d4342cffe66910280c2a1859ad000054565757f79c0000d5d595159ff7ed39ae3aa86cdfe6020034371797f17b000057575754f27b00001555555552630000e2d555556b520000165655552e63000054555555, 1); +UPDATE clan_data SET crest_id=9643, ally_id=300000121, ally_name='NorthernLeague', ally_crest_id=10135 WHERE clan_id=300000128; +INSERT INTO crests (crest_id, data, type) VALUES (9644, 0x444453207c000000071008001000000008000000400000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000020000000040000004458543100000000000000000000000000000000000000000010000000000000000000000000000000000000aedc00005555f2f2aac300005555e2c0b4f5805096b2b29c6adb4070e4a6aeaa6cdc6330b8ba9cdaa8a24250a8aaf6e470e40000e2625555cde40000e0e25555, 3); +INSERT INTO crests (crest_id, data, type) VALUES (9645, 0x444453207c000000071008001000000010000000800000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000020000000040000004458543100000000000000000000000000000000000000000010000000000000000000000000000000000000f9b40000555500aa39a50000555500ea17a500005555000b369d00005555003c3fd76e325aebdf02fbb5aa212a5eaaaa3fdfca2937b5ebaaded6c7180a8e578a76ad8a19ff00ea5a3caecb29ffaa55531dbe0919ffaa5b5856a52911ff00a7f6f9940000af825555d784000000fa55551dbe0000f8bf55555eae0000bf025555, 1); +UPDATE clan_data SET crest_id=9645, ally_id=300000129, ally_name='OldLeague', ally_crest_id=10144 WHERE clan_id=300000129; +INSERT INTO crests (crest_id, data, type) VALUES (9646, 0x444453207c000000071008001000000010000000800000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000020000000040000004458543100000000000000000000000000000000000000000010000000000000000000000000000000000000f464000055552f2fffe7000055558a8a514c00005555a000f35c00005555aaa0d35ca1002dab2aaaffef4d4b8f0b026fffef4d3bfd890381ffef935cbaf7605fffe731447d03f7aafff7ce534ac0c2efffefec3a79a2c0e21465281afefc7a7cb78500000bff55551475000088aa5555ffef0000a2a25555d78500007cfe5555, 1); +UPDATE clan_data SET crest_id=9646, ally_id=300000129, ally_name='OldLeague', ally_crest_id=10144 WHERE clan_id=300000130; +INSERT INTO crests (crest_id, data, type) VALUES (9647, 0x444453207c0000000710080010000000100000008000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000200000000400000044585431000000000000000000000000000000000000000000100000000000000000000000000000000000004208000055552a38faa4000055555529fb83000055557508dfde000055555554d99c000095a5298adf9c1600c25c5655f6301708ddd5273efff700005353540a3dad0000e228886a3fce0200f8f22ae596390f00abaaf895dff70200a22bf354108c00005015555598b50000e2b85555bfef00009bb05555ffff000054555555, 1); +UPDATE clan_data SET crest_id=9647, ally_id=300000129, ally_name='OldLeague', ally_crest_id=10144 WHERE clan_id=300000131; +INSERT INTO crests (crest_id, data, type) VALUES (9648, 0x444453207c000000071008001000000010000000800000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000020000000040000004458543100000000000000000000000000000000000000000010000000000000000000000000000000000000631800005555e1831bd60000555555409de60000555555e0e42000005555cfdf1fff011017050189befeee810000a8dadffef2a2a88a22853cee0100555e50501fff0208800005075efeca60560cda289ffe8d810929b1883bde0100504054509ef600001d775555bffe000000d055551efe000000545555c41800005cca5555, 1); +UPDATE clan_data SET crest_id=9648, ally_id=300000129, ally_name='OldLeague', ally_crest_id=10144 WHERE clan_id=300000132; +INSERT INTO crests (crest_id, data, type) VALUES (9649, 0x444453207c000000071008001000000010000000800000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000020000000040000004458543100000000000000000000000000000000000000000010000000000000000000000000000000000000410800005555584affff0000555551012100000055550c2a200800005555858affff000025550909ffff0100c0021500ffff000075014006ffff020041406160ffff000005055501ffff00002b000120ffff0000450d4c51ffff020061404141ffff000051555555ffff000051515555ffff000050555555ffff000041555555, 1); +UPDATE clan_data SET crest_id=9649, ally_id=300000129, ally_name='OldLeague', ally_crest_id=10144 WHERE clan_id=300000133; +INSERT INTO crests (crest_id, data, type) VALUES (9650, 0x444453207c000000071008001000000010000000800000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000020000000040000004458543100000000000000000000000000000000000000000010000000000000000000000000000000000000bace0000555585011bcf000055551500dad6000055555600b9ce000055555450dfd600004545c5457ff70d0055555451ffff470800001004b9ce0000545454547ece000045454505fff70d0041051515ffff4a0805010080bace200054545454420000002bcc5555bfef000010055555fff70000a85e555540000000e87a5555, 1); +UPDATE clan_data SET crest_id=9650, ally_id=300000129, ally_name='OldLeague', ally_crest_id=10144 WHERE clan_id=300000134; +INSERT INTO crests (crest_id, data, type) VALUES (9651, 0x444453207c000000071008001000000010000000800000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000020000000040000004458543100000000000000000000000000000000000000000010000000000000000000000000000000000000200000005555000001180000555589d5fdd6000055555515ffff000055550100480801005555bf0fd7430100d509032f3fd7420015000000ffff9dce36bd1fb78d0800000d0d0d2d9b330f00353535059fb70200000042575fdf010040405555480800002dbf555529000000e07a555563000000f8ff55550100000000005555, 1); +UPDATE clan_data SET crest_id=9651, ally_id=300000129, ally_name='OldLeague', ally_crest_id=10144 WHERE clan_id=300000135; +INSERT INTO crests (crest_id, data, type) VALUES (9652, 0x444453207c000000071008001000000010000000800000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000020000000040000004458543100000000000000000000000000000000000000000010000000000000000000000000000000000000cafd00005555ff03effd00005555f50f2ffd000055557ffca27100005555ffc06afe00280c0f0dcd29fe0030735cdcdccffd2078055154142efe4070404450406cfe0010c3f0775510fe20285c73f105cdfd0058373d0f54cefd4008cfcf705f4010000032fb5555c15800000dfd5555c2500000fc57555500100000705c5555, 1); +UPDATE clan_data SET crest_id=9652, ally_id=300000129, ally_name='OldLeague', ally_crest_id=10144 WHERE clan_id=300000136; +INSERT INTO crests (crest_id, data, type) VALUES (9653, 0x444453207c00000007100800100000000800000040000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000002000000004000000445854310000000000000000000000000000000000000000001000000000000000000000000000000000000075c500005555cdcfe0a0000055552a2a5de700004b63e1e112e52030cdcd49ffffff4000e1abbff599de6160577ee84031a40000b515555597d50000727f5555, 3); +INSERT INTO crests (crest_id, data, type) VALUES (9654, 0x444453207c000000071008001000000010000000800000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000020000000040000004458543100000000000000000000000000000000000000000010000000000000000000000000000000000000bfff0000555500fcdfff0000555500dfffff00005555005fdfff00005555003dffffe418fc681810ffffc61801040400ffffc11805414101ffff811034101004ffffe7204018187cffffa018050444d0ffff0119414141d1bfff2421012a2a3f9fff0000fc005555dfff0000f50055557fff0000ff0055559fff00003f005555, 1); +UPDATE clan_data SET crest_id=9654, ally_id=300000137, ally_name='WildLeague', ally_crest_id=10153 WHERE clan_id=300000137; +INSERT INTO crests (crest_id, data, type) VALUES (9655, 0x444453207c000000071008001000000010000000800000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000020000000040000004458543100000000000000000000000000000000000000000010000000000000000000000000000000000000ffff000055555501fff7000055555550ffff000055555505ffff000055555540ffff000001c1c1c1dfff0000505f5e5edff7000005f5b5b5ffff000040434343ffff010055017191ffff010055007799ffff000055007799ffff010055404749ffff000001555555ffff000000555555ffff000000555555ffff000040555555, 1); +UPDATE clan_data SET crest_id=9655, ally_id=300000137, ally_name='WildLeague', ally_crest_id=10153 WHERE clan_id=300000138; +INSERT INTO crests (crest_id, data, type) VALUES (9656, 0x444453207c0000000710080010000000100000008000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000200000000400000044585431000000000000000000000000000000000000000000100000000000000000000000000000000000002400000055555525a41000005555af0204210000555555f42110000055552f2a92180200b5250d0d116101005efe2f2fbdff000801ffffffdcff000054534f3fd12001000d0d25b5106104002737de5ebaff0010ffffff01fdff01003f4f5354210000000838555564100000008b5555e3200000f4d7555542000000a5a05555, 1); +UPDATE clan_data SET crest_id=9656, ally_id=300000137, ally_name='WildLeague', ally_crest_id=10153 WHERE clan_id=300000139; +INSERT INTO crests (crest_id, data, type) VALUES (9657, 0x444453207c00000007100800100000001000000080000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000002000000004000000445854310000000000000000000000000000000000000000001000000000000000000000000000000000000050cc0000555500024ecc0000555500000ec40000555580006cb300005555aa20d7fe2449aaaa25feb7fe2872aeeadcffadbb899278e85b2a8fabc658fffe5f00cfb300100008855530c400080000d75571c4000800aad75571c4002080eaaa81201000000008555521100000882255550010000028005555afb3000009d55555, 1); +UPDATE clan_data SET crest_id=9657, ally_id=300000137, ally_name='WildLeague', ally_crest_id=10153 WHERE clan_id=300000140; +INSERT INTO crests (crest_id, data, type) VALUES (9658, 0x444453207c000000071008001000000010000000800000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000020000000040000004458543100000000000000000000000000000000000000000010000000000000000000000000000000000000ffff000055550000deff000055550028dfff000055550002dfff000055550000dfffa4b800c060609aff80682f8b835fbeff81600309ab55deff0b7b00000209ffff83a07060c080bdffa8a1bf83818dffffe2602d090983ffffcea300000001fdff000000005555bdff0000aa005555feff000082205555ffff000003005555, 1); +UPDATE clan_data SET crest_id=9658, ally_id=300000137, ally_name='WildLeague', ally_crest_id=10153 WHERE clan_id=300000141; +INSERT INTO crests (crest_id, data, type) VALUES (9659, 0x444453207c000000071008001000000010000000800000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000020000000040000004458543100000000000000000000000000000000000000000010000000000000000000000000000000000000dbd60000555500a8fff70000555500aafff70000555500aa39d700005555000cb9d6ca52a8fc54049defea5ababfa5e0fff76a6a8b30af8dfeffa3218b80908cd9cee1102cbcfcd4fff72000a0565ea8fef700080a018282feffa3298aa2ac90d8ce000054005555fff70000a2005555fef70000bf005555feff000080aa5555, 1); +UPDATE clan_data SET crest_id=9659, ally_id=300000137, ally_name='WildLeague', ally_crest_id=10153 WHERE clan_id=300000142; +INSERT INTO crests (crest_id, data, type) VALUES (9660, 0x444453207c000000071008001000000010000000800000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000020000000040000004458543100000000000000000000000000000000000000000010000000000000000000000000000000000000feff000055550000fdff000055550000feff000055550000ffff0000555500005bff4cf400aabf95faffee41a0c0c355daff104a0a03c3553bffaef300aafc56b3fea0d03f3f55559fde05207d416a5f9fde05207d41a9f5b4fea0d0bcfc555520a80000000a55558dd400000fff55558dd40000f0ff555500a8000000a05555, 1); +UPDATE clan_data SET crest_id=9660, ally_id=300000137, ally_name='WildLeague', ally_crest_id=10153 WHERE clan_id=300000143; +INSERT INTO crests (crest_id, data, type) VALUES (9661, 0x444453207c000000071008001000000010000000800000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000020000000040000004458543100000000000000000000000000000000000000000010000000000000000000000000000000000000230000005555f73fdff7000055550db39ff70000555562fe2000000055550201ed41000035155555dff7ad310404f305bff70200bcce725f030000005cfc5e5e6d52000055551515ffffcc3901030200bfd604005c5ed7bf516b0000555556542c4a000015d55555ffff000000e35555bff70000e07f5555450800007c7e5555, 1); +UPDATE clan_data SET crest_id=9661, ally_id=300000137, ally_name='WildLeague', ally_crest_id=10153 WHERE clan_id=300000144; +INSERT INTO crests (crest_id, data, type) VALUES (9662, 0x444453207c000000071008001000000008000000400000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000020000000040000004458543100000000000000000000000000000000000000000010000000000000000000000000000000000000feff00005555f0e0477200005555509efeff00004070585e50940000d595f5cd7bf700005757fef870940000cbe3b5a5feff0000f8a85555a1a0000025275555, 3); +INSERT INTO crests (crest_id, data, type) VALUES (9663, 0x444453207c000000071008001000000010000000800000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000020000000040000004458543100000000000000000000000000000000000000000010000000000000000000000000000000000000200000005555e0e0fb9500005555f32fcd3a000055555594b06b0000555555820319000055555545157500000d09090dbfa64300de628b2f5cb604006f7e6e4e107c00002d155555b874c82929fffffd53744200adcbab5e197545004a6b6f6d01000000200055556821000000ff55552629000078555555620000000feb5555, 1); +UPDATE clan_data SET crest_id=9663, ally_id=300000145, ally_name='RoyalLeague', ally_crest_id=10162 WHERE clan_id=300000145; +INSERT INTO crests (crest_id, data, type) VALUES (9664, 0x444453207c000000071008001000000010000000800000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000020000000040000004458543100000000000000000000000000000000000000000010000000000000000000000000000000000000c66100005555f535277200005555ffcc221000005555e2ca620800005555bf86266a0000f515d5d5b3f6001851c07f7f8591000055f5c50d6208000086afb2ae400000006baf2f3feca46000151500410e952000515114510f95010055505455200000000080555560000000025555550e950000155555550c95000055505555, 1); +UPDATE clan_data SET crest_id=9664, ally_id=300000145, ally_name='RoyalLeague', ally_crest_id=10162 WHERE clan_id=300000146; +INSERT INTO crests (crest_id, data, type) VALUES (9665, 0x444453207c0000000710080010000000100000008000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000200000000400000044585431000000000000000000000000000000000000000000100000000000000000000000000000000000007fff0000555514f17fff0000555545c47fff0000555551137fff00005555144f9fff0528c51500d5ddfec478414540d5ddfea378415101575fff0d08535400577fff0c08d50015c5befea370f5404541befe8270570151415fff0c08570054539fff0000f11455555fff0000444555555fff0000115155559fff00004f145555, 1); +UPDATE clan_data SET crest_id=9665, ally_id=300000145, ally_name='RoyalLeague', ally_crest_id=10162 WHERE clan_id=300000147; +INSERT INTO crests (crest_id, data, type) VALUES (9666, 0x444453207c000000071008001000000010000000800000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000020000000040000004458543100000000000000000000000000000000000000000010000000000000000000000000000000000000b8b5000055550a0abbee00005555000219ee00005555003eb8d50000555580a09ce65194e5adad2f9fff27514278c040bcfe854875571501bcf6a2488aa389a8bde6b07bfbcfef89bfff6a00004f54567fff28080d351d85fdfef28bf0e8ceda7ece00002aaa55557fe60000e00255553fe7000000805555fede000088aa5555, 1); +UPDATE clan_data SET crest_id=9666, ally_id=300000145, ally_name='RoyalLeague', ally_crest_id=10162 WHERE clan_id=300000148; +INSERT INTO crests (crest_id, data, type) VALUES (9667, 0x444453207c00000007100800100000001000000080000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000002000000004000000445854310000000000000000000000000000000000000000001000000000000000000000000000000000000011cc00005555ff0b92dc00005555ff008fcc00005555fd004ec400005555ffc05aff2018a9e95d2579ff40407a250002b8ff804055208020b8ff60286a755860dcff201005012139dbff33d648bae4f1b6ff70eec83baa9ab5ff802048426e48d8ee00000155555518f7000000775555d3f6000000fd5555b2ee000040755555, 1); +UPDATE clan_data SET crest_id=9667, ally_id=300000145, ally_name='RoyalLeague', ally_crest_id=10162 WHERE clan_id=300000149; +INSERT INTO crests (crest_id, data, type) VALUES (9668, 0x444453207c0000000710080010000000100000008000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000200000000400000044585431000000000000000000000000000000000000000000100000000000000000000000000000000000006e1800005555b52db41800005555aa804910000055555eaca91800005555552e59180200b5ad2f0fd81813006a0ab7a5d5200700250f0a0a93201500a07b7def791006002d2d2aba14290b008a8020702f3103000b0ac078ce20030800000b094808000020bf555552080000e0f2555549080000e0fa5555881800008bff5555, 1); +UPDATE clan_data SET crest_id=9668, ally_id=300000145, ally_name='RoyalLeague', ally_crest_id=10162 WHERE clan_id=300000150; diff --git a/src_mobius/mobius/L2J_Mobius_CT_0_Interlude/dist/game/config/Custom/FakePlayers.ini b/src_mobius/mobius/L2J_Mobius_CT_0_Interlude/dist/game/config/Custom/FakePlayers.ini index 31ebaf8..9116092 100644 --- a/src_mobius/mobius/L2J_Mobius_CT_0_Interlude/dist/game/config/Custom/FakePlayers.ini +++ b/src_mobius/mobius/L2J_Mobius_CT_0_Interlude/dist/game/config/Custom/FakePlayers.ini @@ -1,38 +1,103 @@ -# --------------------------------------------------------------------------- -# Fake players -# --------------------------------------------------------------------------- -# Our fake player system uses the existing NPC system, allowing fake players -# to function seamlessly like NPCs with minimal impact on server performance. - -# Enable fake players. -EnableFakePlayers = False - -# Enable chatting with fake players. -FakePlayerChat = True - -# Enable shots usage for fake players. -FakePlayerUseShots = True - -# Reward PvP kills by killing fake players. -FakePlayerKillsRewardPvP = True - -# Fake player kills apply karma rules. -FakePlayerUnflaggedKillsKarma = True - -# Fake players can be attacked without PvP flagging. -FakePlayerAutoAttackable = False - -# Aggressive AI fake players attack nearby monsters. -FakePlayerAggroMonsters = True - -# Aggressive AI fake players attack nearby players. -FakePlayerAggroPlayers = False - -# Aggressive AI fake players attack nearby fake players. -FakePlayerAggroFPC = False - -# Fake players can drop items when killing monsters. -FakePlayerCanDropItems = True - -# Fake players can pickup dropped items. -FakePlayerCanPickup = True +# --------------------------------------------------------------------------- +# Fake players +# --------------------------------------------------------------------------- +# Our fake player system uses the existing NPC system, allowing fake players +# to function seamlessly like NPCs with minimal impact on server performance. + +# Enable fake players. +EnableFakePlayers = True + +# Enable chatting with fake players. +FakePlayerChat = True + +# Enable shots usage for fake players. +FakePlayerUseShots = True + +# Reward PvP kills by killing fake players. +FakePlayerKillsRewardPvP = True + +# Fake player kills apply karma rules. +FakePlayerUnflaggedKillsKarma = True + +# Fake players can be attacked without PvP flagging. +FakePlayerAutoAttackable = False + +# Aggressive AI fake players attack nearby monsters. +FakePlayerAggroMonsters = True + +# Aggressive AI fake players attack nearby players. +FakePlayerAggroPlayers = True + +# Aggressive AI fake players attack nearby fake players. +FakePlayerAggroFPC = False + +# Fake players can drop items when killing monsters. +FakePlayerCanDropItems = True + +# Fake players can pickup dropped items. +FakePlayerCanPickup = True + + +# --------------------------------------------------------------------------- +# SPP additions: LLM chat and AI brain +# --------------------------------------------------------------------------- + +# Generate fake player chat lines with a local LLM (Ollama). +# When Ollama is not running, bots silently fall back to FakePlayerChatData.xml templates. +FakePlayerLlmChat = True + +# Ollama generate endpoint. +FakePlayerLlmUrl = http://127.0.0.1:11434/api/generate + +# Ollama model name (run: ollama pull gemma3). +FakePlayerLlmModel = gemma3 + +# Language the bots chat in. +FakePlayerLlmLanguage = русский + +# LLM request timeout, milliseconds. +FakePlayerLlmTimeout = 15000 + +# Chance (%) per AI tick that an idle bot says something when a player is nearby. +FakePlayerAmbientChatChance = 25 + +# Chance (%) that a bot taunts when engaging a player or comments while assisting. +FakePlayerCombatChatChance = 60 + +# Chance (%) that a bot answers a general chat message said near it. +FakePlayerLocalChatReplyChance = 40 + +# Fake player AI tick in seconds (helper assist, ambient chat). +FakePlayerAiTick = 5 + +# Real progression: bots gain exp from monsters they kill, level up, +# and migrate to higher level zones with better gear (see BOTS.md). +FakePlayerProgression = False + +# Multiplier for exp bots receive from kills. +FakePlayerXpRate = 3 + +# Trading simulation: bots periodically go to town, sit down with a private +# store (sell after successful farming, buy otherwise), shout in trade chat, +# close the shop after TradeDuration minutes and return to farming. +FakePlayerTrading = True + +# Shop lifetime, minutes. +FakePlayerTradeDuration = 60 + +# Pause between shops, minutes (plus random up to 30 min). +FakePlayerTradeCooldown = 120 + +# Trade chat shout interval, seconds. +FakePlayerTradeShoutInterval = 180 + +# Chance (%) to actually open a shop when the time comes. +FakePlayerTradeChance = 30 + +# NOTE: with FakePlayerProgression = False the NPC bot population is off and the +# world is populated by headless players only (see FakePlayerHeadlessCount). +# +# Headless players: real Player instances without a client. They can join +# real parties (invite them - they auto accept), share exp, fight beside you. +# Prototype: they farm near Giran. 0 = disabled. +FakePlayerHeadlessCount = 500 diff --git a/src_mobius/mobius/L2J_Mobius_CT_0_Interlude/dist/game/config/General.ini b/src_mobius/mobius/L2J_Mobius_CT_0_Interlude/dist/game/config/General.ini index fb73efb..0d3cc51 100644 --- a/src_mobius/mobius/L2J_Mobius_CT_0_Interlude/dist/game/config/General.ini +++ b/src_mobius/mobius/L2J_Mobius_CT_0_Interlude/dist/game/config/General.ini @@ -269,7 +269,7 @@ MaxMonsterAnimation = 60 # Turn off for a grid and neighbors occurs after the specified number of seconds have passed during which a grid has had no players in or in any of its neighbors. # The always on option allows to ignore all this and let all grids be active at all times (not suggested). # Default: False -GridsAlwaysOn = False +GridsAlwaysOn = True # Default: 1 GridNeighborTurnOnTime = 1 diff --git a/src_mobius/mobius/L2J_Mobius_CT_0_Interlude/dist/game/data/FakePlayerChatData.xml b/src_mobius/mobius/L2J_Mobius_CT_0_Interlude/dist/game/data/FakePlayerChatData.xml index f5da5bf..d21c1b2 100644 --- a/src_mobius/mobius/L2J_Mobius_CT_0_Interlude/dist/game/data/FakePlayerChatData.xml +++ b/src_mobius/mobius/L2J_Mobius_CT_0_Interlude/dist/game/data/FakePlayerChatData.xml @@ -1,24 +1,31 @@ - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src_mobius/mobius/L2J_Mobius_CT_0_Interlude/dist/game/data/FakePlayerChatLines.xml b/src_mobius/mobius/L2J_Mobius_CT_0_Interlude/dist/game/data/FakePlayerChatLines.xml new file mode 100644 index 0000000..3a67f2d --- /dev/null +++ b/src_mobius/mobius/L2J_Mobius_CT_0_Interlude/dist/game/data/FakePlayerChatLines.xml @@ -0,0 +1,1586 @@ + + + + #greet_word#[, {player}][, #greet_tail#] + #greet_word# #greet_word# + привет + (хай|здаров|йо|дароу)[ как (сам|оно|фарм)] + прив[, {player}] + ну привет[, {player}] + здарова [народ] + йо[, как оно] + го здоров[, {player}] + здаров, {player}[, как фарм] + приветик [всем] + хай хай + о, {player}, здарова + здорово[, как сам] + рад видеть[, {player}] + хай, гг всем + здарова, братва + здарова, [бля] как оно + ну здарова[, {player}] + привет [народ], как фарм + хай как сам + здарова + приветик + йо + добрый вечер всем + хеллоу + дароу + привет как фарм + здаров как оно + ну привет + дароу как сам как дела + приветствую + #hello# + + здарова, [все] свои тут + о, соклан, дароу + наши, братва, привет + здаров[, свои] + о, свои[, привет] + хай, соклан + здарова, соклановец + о, наши[, привет] + + + {player}, а ты тут как тут, живой + о, {player}, не сдох еще, бля + {player}, [все] помню, не думай + о, а вот и (ты|обидчик) + ну привет, {player}, помню тебя + опа, {player}[, не забыл я] + не забыл, как ты меня валил[, {player}] + + + {enemyclan} мимо проходит молча + кв не здороваются, {player} + тишина тебе, {player}, не соклан + вражинам не здороваемся + с {enemyclan} не разговариваю + иди мимо, кв + {enemyclan} — молчание в ответ + + + {player}, [сколько лет], здарова + о, {player}, рад тебя видеть снова + {player}, ты ж выручал меня, привет + {player}, дружище, привет + о, {player}, ты ж мне помогал[, привет] + + + #hello.helper# + {player}, чем помочь + + + #hello.pkk# + + + #hello.neutral# + + + привет, я тут {level} взял кстати + привет[, кстати], только что {level} дотянул + + + здарова, дд на месте? + йо, баф есть у кого? + здарова, фулка есть место? + ку, го фармить + здаров, точка +4 еще жива? + дароу, банки [все] заполнены? + здарова, гк вызвали уже? + прив, соски есть у кого + здарова, кто фулку набирает + йо, слился с пати, го снова + привет, инет у кого лагает? + здарова, паровоз [собираем] или как + здарова, [бля] опять я тут + здарова, братва, кто на месте + хай, лвл ап го дальше + + + чет не понял[, ты о чем] + ты по делу или как + хз о чем ты + не понял, повтори + (чо|че) надо + занят, фармлю[, потом] + давай попроще [объясни] + ~lol~ ты о чем [вообще] + напиши по-другому[, не понял] + ты кому вообще пишешь + не до тебя щас[, занят] + ась? + что [там] у тебя + не разобрал[, повтори плиз] + занят фармом[, потом спишемся] + давай по существу + плиз репит, не понял + братан, ты о чем + ты по делу спрашиваешь [или] нет + щас, [дай] отвечу + чет не понял ты о чем + не понял повтори + занят щас пиши позже + ты кто вообще + чо надо + не в теме о чем ты + давай попроще объясни + я в фарме сейчас не до трепа + чето не разобрал + можешь яснее + лол ты о чем вообще + занят фармлю потом отвечу + #filler# #whisper_ask# + #whisper_ask#[, #tail_soft#] + братан, #whisper_ask# + + занят щас, #afk_reason# + не до трепа, дд нужен в фулку + чо надо, я в фарме сижу + ты по делу или трещишь без толку + не до тебя, точу +4 щас + лагает [все], потом [спишемся] + манны нет, [даже] печатать лень ~lol~ + занят, гк вызываю + чет не в тему щас, сорян + не до тебя, ксанули только что моба, разбираюсь + харош спамить, бля, я в фарме + братан, не до тебя, фарм + вейт, изи отвечу + #afk_reason#[, потом отвечу] + + + в {zone} стою + в {zone} фармлю [щас] + на споте в {zone}[, подтягивайся] + сам глянь на карте[, лень] + не скажу, конкурентов [и так] много + на респе в {zone} + далеко[, не найдешь] + стою там же, где [всегда] + в {zone}, [если] интересно + хожу [по разным] по спотам + на дальнем споте[, {zone}] + спалю спот — [сам] прибежишь фармить + у рб [ошиваюсь], в {zone} + старый спот в {zone}[, ищи] + туда [не так просто] найдешь[, сам поищи] + хз, сам [ищи] бегай + го в {zone}, тут я + да у речки, не важно + в {zone} фармлю щас + сам гляни на карте, лень + возле {zone} где-то тусуюсь + на споте в {zone} стою + хз, покрутись по локам + в {zone}, подтягивайся сюда + не скажу, конкурентов и так много + сижу в {zone}, будь как дома + {level} лвл, топчусь в {zone} + братва спалит спот раньше меня + + {boss} ждет, не до тебя + рейд на {boss} важнее, извини + не до тебя, на (рб|{boss}) идем [всей пати] + на рб выдвигаемся, потом спишемся + мы на {boss} метим, извини, не до тебя + + + лавку свою держу в {town}[, забегай] + стою на рынке в {town} + в {town} стою, лавку держу[, заходи] + на площади в {town}, торгую + торгую в {town}[, подходи, если по делу] + + + в {town} [почти] добрался, [за] шмотом + сваливаю со спота, город {town} ждет + переезжаю [как раз], перерос спот + в город двигаю[, за шмотом] + + + {enemyclan}, координаты свои не отдам + для {enemyclan} — военная тайна + тебе не скажу, (вражина|кв) + ага, щас, коорды врагу [сдал] + + + {zone}, [раз] такой смелый — заходи + долг [свой] верну, приходи в {zone} + иди сюда, узнаешь + подходи в {zone}, [как раз] должок вернем + + + ты кто вообще такой, [чтоб] спрашивать + для незнакомцев координаты закрыты, секрет + первый раз тебя вижу[, а зачем тебе] + не скажу первому встречному + + + в {zone} стою, точку [свою] держу + точку [свою] в {zone} держу, не ксань + фулка тут в {zone}, [не подходи чужой] + спот мой[, {zone}], застолбил + в вх [сгонял], [потом] в {zone} вернусь + паровоз [держим] в {zone}[, го других ищи] + {zone}, [но] соски на нуле [если что] + далеко[, за 2кк] спот не продам ~lol~ + не скажу нахрен, {zone}, отвали + братва спот в {zone} держит крепко + + + не торгую щас[, сорян] + в {town} на рынке глянь + не продаю, самому надо + на аукцион глянь [лучше] + без понятия[, не считал] + спроси в {town} на площади + не помню [если честно] цену + дорого [для тебя] будет + не продажное[, для себя берег] + торгашей [лучше] в {town} поспрашивай + могу [и] отдать, но не щас + цена кусается[, если честно] + давай [чуть] позже [к вопросу] вернемся + не приставай, не продаю нахрен + братва не продает, извини + не торгую щас, сорян + в гиране на рынке глянь + цены не мои, я не куплю + пшел в гиран, там дешевле + спроси у крамарей на маркете + не в теме цен щас + гиран рулит, там весь товар + закрыт магаз, потом мб + не торгаш я, извини + на аукцион глянь лучше + без понятия, не считал + не продаю нахрен, отстань + + {item} есть [в наличии], {price} и забирай + скидка на {item}[, если] сегодня берешь + {item} за {price}[, налетай] + лавка открыта: {item}, {price} + {price} за {item}, [для тебя] без торга + торг [возможен] если адекватный + {item}, {price}, [не дороже] не отдам + + + {item} есть, но по рынку [цену узнай] в {town} + дорого[, я на заточку коплю] + за {price} не отдам, [самому надо] + могу за 2кк отдать[, забирай] + лям за {item}, [не меньше] + сотку [адены] и забирай + на скупщика [лучше] иди, [я не торгую] + кк [приличная] цена, но не мое дело + не продаю нахрен, [нашел дурака] + братва [торгует] в {town}, не я + + + го, (бегу|лечу) + держись, (лечу|спешу)[ к тебе] + уже в пути + ок бегу[, жди] + ага, (две сек|щас буду) + секунду, [уже] бегу + иду[, держись там] + ща подтянусь + го, [уже] выдвигаюсь + не бросим[, бегу] + жди, [почти] добежал + телепорт возьму[, быстрее будет] + го, ласт хит [твой] держи + братан, бегу, держись + уже [почти] рядом[, чуть-чуть] + го, бегу + держись, лечу + ок бегу, жди + давай, щас буду + лечу к тебе + ага бегу, две сек + норм, спешу + уже стартанул к тебе + окай, на подходе + держись там, спешу + го помогу, погнал + #offer_help# + го, вп, уже бегу + + го, хилку [кину] щас + ресну [сейчас], жди + го, баф [закину] на бегу + бегу, соски [есть], не переживай + го, [твой] дд на подходе + держись, [уже] телепортом лечу + го, гк возьму, [быстрее так] + бегу, манны [ещё] хватит + #res_talk# + го, вытащу [из трупов] + бегу нахрен, держись + го, вп, ресну сейчас + + + занят [щас], фармлю + не могу[, сорян] + фарм важнее[, извини] + сам разберись[, я в фарме] + не сейчас, лвл качаю + далеко я[, не успею] + хилки [почти] кончились[, самому мало] + не в тему щас[, занят другим] + прости, [но] не могу [сейчас] + рб фармлю[, не отвлекаюсь] + сам виноват [наверное], разбирайся + не мой [это] вопрос + занят [важным делом], позже [может] + не до тебя нахрен щас + старый [я] уже для таких дел ~lol~ + занят щас, фармлю + не могу, сорян + спота не кину, сам справишься + в дюле щас, не могу + фарм важнее, извини + занят, потом мб + нет времени щас, сорян + сам разберись, я в фарме + занято все, крутись сам + не могу отойти, тут мобы + позже гляну, щас занят + + ты меня валил, а теперь [помощи] просишь + карма [видно] сработала, {player} + ты меня валил, а теперь нахрен помощи просишь + тебе? помочь? ~lol~ + после того раза — нет уж + память у меня хорошая, {player} + с чего вдруг я тебе помогать буду + + + манны нет, #mana_talk# + соски кончились, самому надо + точу щас, [не до тебя] + фулка занята, [не могу] + в вх сижу, разбираю шмот + паровоз [веду], [не могу отойти] + гк [далеко], не успею + рб фармим, [занят] всей пати + хилки [все] на исходе + не могу нахрен, [сам видишь] + братва, не могу, занят + #afk_reason#[, не могу] + + + соло качаюсь[, извини] + пати [уже] фулл + не, я (соляр|соло) щас + пас[, соло удобнее] + не беру никого [щас] + мест [больше] нет[, сорян] + своей пати хватает + качаюсь [сам] под класс[, не обижайся] + экспу делить неохота[, извини] + потом может[, щас соло] + команда [уже] набрана + братва, мест нет + не сегодня[, в другой раз] + фулл кп [уже], опоздал + не набираю [щас] никого + соло качаюсь, извини + скоро выхожу, не в тему + пати уже фулл + без пати норм, спс + не, я соляр щас + занят фармом, потом мб + пати полная уже + пас, соло удобнее + скоро офф, не успею + не беру никого щас + сам по себе катаюсь + пати нет мест, сорян + братва, мест правда нет + + фулка [уже] набрана + дд [уже] есть, [хила бы] лучше + кп фулл, [некуда] + соло [фармлю], [никого не ксаню] + твинка [качаю], не до пати + на олимпе [щас], не до кп + в вх [зависла], потом может + мест нет нахрен, [отвали] + братва, [и так] фулка + #need_class#[, а не просто тело] + + + го, принял + давай, бегу [к тебе] + ок го[, вместе веселее] + ага, погнали [фармить] + го го, показывай спот + го[, беру] + давай[, в пати] зови + го фармить[, вместе быстрее] + принял[, выдвигаюсь] + го, где [встречаемся] стоишь + давай, [заодно] и рб глянем + го, изи фарм [будет] вместе + го, братва[, погнали] + го, только флаг не хватай зря + го, наконец-то пати + давай, бегу к тебе + ок го, вместе веселее + го, я рядом буду + ага, погнали фармить + принял, держись рядом + ок, прикрываю тебя + #offer_party# + го, вп будет + + + ну и ладно[, живи] + окай[, спс за инфу] + ладно, проехали + не в настроении спорить + ~lol~ ладно[, проехали] + ну ты (даешь|тип) [конечно] + как скажешь[, ладно] + окай, [спорить не буду] проехали + ну че[, бывает] + проехали[, дальше фармим] + не буду [даже] спорить + ну ты [и] тип конечно ~lol~ + ладно тебе[, чего сразу] + остынь[, я мирно] + хорошо[, проехали], без обид + ну и ладно, живи + окай, спс за инфу + устал я от такого + ну ты и тип + ладно проехали + окай окай, как скажешь + ну кек, проехали + хах ладно проехали + фигня, забей + ну и пусть, мне пофиг + ну ты даешь конечно + #tail_soft#[, проехали] + + ладно, [не до дюлей] мне + окай, [проехали], точку [лучше] буду точить + фигня[, го дальше] фармить + лан[, проехали], инет лагает и так + рофл, ладно [проехали] + ладно нахрен, проехали + братва, [не] обижайся + #tail_soft#[, го дальше] + + + еще раз скажи[, дюль го] + ты нарвался[, готовься] + #threat# + язык прикуси[, лошок] + еще слово и (труп|на респ) + завали (хлебало|пасть), клоун + щас сам #threat_verb# + повтори[, я не расслышал] + ты сам напросился + щас [ты] пожалеешь [об этом] + договорился[, все, дюль] + сейчас узнаешь почему [я так] + закрой рот, [пока] цел + братва не любит [таких] выскочек + хочешь дюль — го, [раз такой смелый] + еще раз скажи, дюль го + заткнись, а то прилетит + ты нарвался, готовься + кинь еще раз, увидишь + слился бы ты уже + на дюль вызываю, готовься + язык прикуси, лошок + еще слово и труп + запомню тебя, бегай пока + с тобой разберусь на споте + готовь мыло, встретимся + + еще слово — [и на] респ [пойдешь] + дюль го, [покажу] класс + точка +6 против твоего фулла, го + [сам] нарвешься на респ [если продолжишь] + флаг [тебе] обеспечу [быстро] + карму [заработай] сначала[, потом] говори + завали (хлебало|пасть) нахрен + щас урою нахрен, а потом так и быть ресну + братва [так] не любит [нахалов] + гг тебе [заранее], слился уже + #threat.ganker# + репорт [на] гм кину[, если] не заткнешься + + + не за что + да не вопрос + пожалста[, обращайся] + без проблем + да ладно[, свои люди] + норм все[, рад помочь] + всегда рад [помочь] + чем смог[, тем помог] + сочтемся [как-нибудь] + свои люди[, сочтемся] + ерунда[, забей] + нп, го дальше + свои, братва, не за что + обращайся [если] что + было приятно [помочь] + пожалста, обращайся + норм все, рад помочь + да ладно, свои люди + хах пожалуйста + рад что помогло + обращайся еще + норм, го дальше катать + да не за что, бро + пасиб и тебе + #thanks_word#[, #thanks_tail#] + + свои, [чо там] сочтемся + не за что, го фармить дальше + рад помочь, [го] дальше паровозом + не парься, [го] в вх метнемся + не благодари нахрен, свои же + братва своих не бросает + #thanks_word#[, го дальше] + обращайся, [если] рес нужен будет + + + сам ты бот + живой я[, не начинай] + ору с вопроса + бот это ты [наверное] + ~lol~ конечно нет + играю я[, не парься] + обидно даже[, я живой] + рофлишь? [я] живой + нет, [просто] задрот я [обычный] + бот бы так не тупил ~lol~ + живее всех живых + может ты бот, [а не я] + не бот[, просто] много фармлю + давай без [этих] обвинений + проверь сам, [если] сомневаешься + живой я, не начинай + норм человек тут сижу + бот это ты наверное + обидно даже, я живой + кек, конечно нет + играю я, не парься + с чего вдруг + не, реальный чел + смешно, я не скрипт + ты первый спросил, странно + бот бы так нахрен не тупил + + бот бы фармил без афк, а я [то] отхожу + живой я, [просто] задрот[, чайник вон закипел] + проверь по пингу[, у бота] не лагает так + бот бы не тупил на точке + бот бы нахрен так не фармил + живой, [просто] мамка звала [только что] + рофл, [конечно] живой + #afk_reason#[, какой я бот] + + + го дюль + давай, го на спот + не щас[, занят] + го[, только не ной потом] + может позже[, щас фарм] + давай глянем кто круче + го, на нейтралку [сходим] + го, ставки [делаем] есть? + не [сегодня], в другой раз + давай[, но] без обид потом + го, покажу [тебе] класс + старый[, я] уже для дюлей ~lol~ + го, гг заранее + го, братва [пусть] смотрит + го, но я предупредил + не щас, занят + дюль потом, лан + го, готовсь + слился бы ты сам + ок го, две сек + не хочу, лень + го, только не ной потом + согласен, го уже + может позже, щас фарм + го, фри килл будет + + го дюль, [покажу] точку +6 + дд [есть] у меня хороший, [го смотри] + фулка [моя] круче, го дюль + давай[, только] манны наберу [сначала] + го нахрен дюль, чего тянешь + го, гг вперед + братва пусть смотрит[, го] + дюль го[, ставки] на 2кк? + #res_talk#[, если сольюсь] + го, шмот фул [есть], не переживай + + + хз, ничего нового + тихо все[, как обычно] + не слышал ничего + без понятия[, я не в теме] + тишина [полная] + ничего интересного [не слышал] + все [как] тихо-мирно + новостей [особо] нет + сам [бы] хотел [что-то] узнать + не в курсе[, я в фарме сижу] + давно [никого] не видел [в чате] + тишина на серверах [сегодня] + братва молчит [что-то] + может [что] завтра [появится], хз + все стандартно[, ничего нового] + тихо все, как обычно + нет инфы у меня + без понятия, я не в теме + ничего интересного не было + слухи не по мне + хз, сам не в курсе + тишина полная + не следил за новостями + ничего такого не видел + без понятия чо там + #rumor_lead#[, но] ничего конкретного + {crowd} человек в чате, а новостей ноль + {boss} вроде [как] пал, но [это] не точно + слышал [что-то] про {enemyclan}, но не уверен + в {zone} вроде движ, но не в теме + {mob} говорят задропали [что-то] новое, врать не буду + {daytime}, а слухов вообще никаких + + {boss} лег, дроп делим + с {boss} [только что] вернулись, все живы + мы [только что] {boss} завалили [всей пати] + с рейда идем, вот и новости + дроп [хороший] взяли, все довольны + + + {enemyclan} гангают активно, вот и новости + в {zone} не протолкнуться от пк, вот и слухи + меня [вот] гангнули только что, вот те новость + на споте пк лютует, [вот что нового] + пк [реально] лютует[, вот такие новости] + + + кстати, {level} лвл взял, [если] интересно + новость дня — я {level} [лвл] + я вот[, кстати], лвл взял [только что] + новость такая — я {level} [лвл] стал + + + хз, [я] в вх сидел весь день + тихо[, только] точка +4 [у всех] не встает + слухов нет, [зато] дроп [у меня] жирный + ничего, [кроме] лагов [не слышал] + рынок [весь] стух сегодня + олимп [сегодня] тоже тихий + новостей [нет], только гм [бы найти] + хз нахрен, я [сам] не в теме + братва молчит [про] слухи + #olympiad_talk# + + + го, удачи + пока[, бб] + давай, до скорого + увидимся [на споте] + бб[, катайся хорошо] + го[, отдыхать] пора + выхожу[, всем удачи] + до завтра[, всем пока] + го спать[, всем гг] + ладно, я [это] отключаюсь + бывай[, до связи] + бб, гг всем + бывайте, братва + го, [хорошего] дня всем + все, [я] в оффлайн + пока, бб + бб, катайся хорошо + пока пока + го отдыхай + увидимся + бб, го дальше фармить + окай, бывай + пока, го спать наверн + до встречи на споте + бб бб + #bye_lead#[, #goodbye#] + #bye_lead#[, #tail_soft#] + + все, на рб побежал + го, рб ждет, некогда + убегаю, рейд на {boss} начинается + + + бб, го точить [шмот] дальше + пока, [в] вх метнусь + го спать, [завтра] в школу + бб, мамка зовет + отбой, [завтра] на работу + пока, го чайник [ставить] + все нахрен, спать пора + бывайте, братва, го отдыхать + #afk_reason#[, бб всем] + пока, го соски [закупать] на завтра + + + ага + норм[, го] + ну да + окай + точно + согласен + да норм + ес + точняк + го, [все] норм + ага, [именно] так + все верно + конечно + йеп, го + точно, братан + норм, го + ага го + ну ок + именно + ага, все так + окай го дальше + тема, го + + факт + агась + точнячок + го, [все] по плану + йеп го дальше + точняк, братан + + + норм[, фармлю] + (норм|нормас|пойдет)[, а у тебя] + да ниче[, качаюсь потихоньку] + фарм да фарм[, как всегда] + живой[, и то хорошо] ~lol~ + пойдет[, дроп только грустный] + потихоньку [ковыряюсь] + как [всегда] обычно + неплохо[, дроп [сегодня] радует] + устал [немного], но [все] норм + бывало и хуже + хорошо[, лвл почти] взял + так себе[, если честно] + класс[, красота] ~lol~ + терпимо[, фармлю дальше] + #how_feel#[, #how_detail#] + #how_feel#[, а у тебя] + гуд, дамаг [сегодня] хороший + {mob} задолбали[, а так] норм + в {zone} тесно[, но] фармлю + {boss} ждем[, а так] неплохо + {crowd} человек на споте[, но] терпимо + {daytime} самое [то] время[, фармлю] + {drop} с {mob} [наконец] упал, радость + + злой хожу, {enemyclan} погангали + на респе чаще, чем на споте, сегодня + паршиво, гангнули [только что] + бывало и лучше[, пк достали] + не очень[, вынесли только что] + + + заряжен на {boss}, погнали + боевой настрой, {boss} ждет + отлично, на рб идем [всей пати] + на подъеме[, идем на рб] + + + радость [прям], {level} взял + летаю от счастья, {level} наконец + кайф, [только что] лвл взял + отлично[, {level} взял] + + + сижу в лавке, жду покупателей + считаю прибыль, норм идет + торгую[, стою в лавке] + нормально[, распродаю шмот] + + + #ping_talk#, а так норм + дроп [сегодня] жирный, радуюсь + точка встала [наконец], красота + манны [как раз] хватает + фулка [собралась], веселее + мобов [спокойно] фармлю, никто не ксанул + соски [есть еще], норм + хреново, #ping_talk# + братан, норм, фармлю + гк [только что] взял, все путем + вх [разобрал], норм + #shot_talk#[, а так норм] + + + че капсишь + капс (отключи|сломался)? + не ори [так] + у тебя капс залип ~lol~ + потише[, я рядом] + чего [так] орешь + капс лок [видимо] нажал + не глухой я[, потише] + ору [в ответ] тоже могу + успокойся [для начала] + клавиатура [что ли] сломалась + братан, тише + заглуши капс нахрен + громко [очень], потише + харош орать нахрен + + капс [реально] жмет у тебя + пинг [тебе] что ли скачет, [что орешь] + клава [видно] залипла + харош орать нахрен, нервы + братан, потише + успокойся, [я ж] рядом стою + + + я ж сказал: {prev} + сказал же: {prev} + повторяю[, для глухих]: {prev} + {prev}. все + глухой? {prev} + еще раз: {prev} + {prev}[, я ж говорил] + читай [внимательнее]: {prev} + {prev}, [точка] + не расслышал что ли: {prev} + заново [повторю]: {prev} + {prev}[, все, хватит спрашивать] + {prev}, бля, [сколько можно] повторять + старую пластинку [опять] крутить: {prev} + + {prev}, [сколько раз] повторять + глухня? {prev} + {prev}, [читай выше] + {prev}, бля, [читай] внимательно + братан, {prev}, [я ж] сказал + {prev}[, все, отстань] + + + хз[, сам думаю] + тоже интересно [кстати] + без понятия[, сорян] + вот и мне интересно + у меня тот же вопрос + хороший вопрос[, кстати] + сам [бы] хотел знать + не в курсе[, но интересно] + поддерживаю вопрос + тоже думал [об этом] + кто знает — отзовитесь + загадка [прям] + старый вопрос[, ответа нет] + молчит [что-то] чат на это + #ask_back# + братва тоже гадает + + + {level} [лвл][, а ты] + {level}, а что + не скажу[, секрет] + качаюсь помаленьку, {level} + хз, забыл сам ~lol~ + давно [уже] {level} + недавно [до] {level} дотянул + {level}[, нормально] качаюсь + секрет [фирмы], не скажу + {level} всего[, медленно качаюсь] + а сам [ты] какой [лвл] + {level}[, а что, мало?] + братан, {level} у меня + не важно[, сколько], главное фан + {level} лвл, норм такой + {level} чутка, хватает + не скажу, секрет + хз, забыл сам + {level} лвл щас + норм лвл, {level} + не важно какой лвл + {level}, скоро выше + средний лвл, {level} + {level} лвл, а ты + {level}, го дальше рашить + братан, {level}, норм такой + + {level}, [дд] качаю + {level}, [хил] на подходе + {level}, [не скажу] секрет фирмы + {level} [лвл], точка [+4] стоит + {level}, бля, а тебе зачем + братан, {level}, [норм такой] + {level}, го рашить дальше + {level}, [манны] как раз хватает + + + {target} (лови ганг|готовься) ~lol~ + {target} на (респ|бижу) [сейчас] + #taunt#, {target} + {target} [даже] не (пытайся|дергайся|mat:рыпайся нахрен) + втыкаю {target} за фан + {target} не плачь потом + {target}, го знакомиться [с респом] + {target} сейчас [будет] больно + флаг мне не помеха, {target} + {target}, карма подождет + {target}, [это] твой последний спот + готовь хилку, {target}[, а лучше две] + {target} за спот [этот] плачено кровью [будет] + старт, {target}[, погнали] + {target}, ты попал нахрен + {target}, изи килл го + {target} лови ганг лол + ало {target} готовься + {target} на бижу сейчас упадет + хех {target} не убежишь + {target} сори за нервы + го вносить {target} по бырому + {target} держи привет с точки + кек {target} даже не пытайся + {target} щас будет больно + лол {target} слишком легкая цель + {target} на респ отправляйся + {target}, #gank_tease#[, #tail_laugh#] + {target}, готовься[, бля], щас будет больно + + {target}, #threat.ganker# + {target}, #threat.ganker#, [это] не личное + + + {target}, точка +4 [твоя] не спасет + {target}, дд у меня жирный, [го знакомиться] + {target}, соски [заряжены], го + {target}, [твой] спот теперь мой, гуляй + {target}, флаг мне побоку, [го] + {target}, за 2кк [душу продашь щас] + {target}, гк [вызывай], [респ] ждет + {target}, манны [у тебя] на побег хватит? + {target}, шмот фул, [а толку] ноль + {target}, отхила [не будет] + {target}, [бля], ты попал конкретно + {target}, изи фраг, го + {target}, братва [на респ] отправит + #enchant_talk#[, {target}] + + + {target} за нубов ответишь + красный увидел — (бьем|валим) [без разговоров] + {target} карма настигла + {target} время платить [по счетам] + новичков не тронь [больше], {target} + {target}, [ты] красный — [значит] цель + справедливость [есть] существует, {target} + {target}, [пк-репутация] дороже жизни + низких [не] обижай, {target} + {target} получишь [сполна] по заслугам + карма минус [значит] мишень, {target} + {target}, [хватит] беспредельничать + {target}, братва накажет + {target}, [твои] жертвы [все] отомщены + за слабых [вписываюсь], {target} + красный увидел бьем без разговоров + {target} справедливость пришла + фиолетовый {target} получи возмездие + хватит нубов резать {target} + пк хантер на охоте го + {target} за слитый лвл отвечай + таких как {target} надо валить + {target} думал безнаказанно будет + новичков не тронь больше {target} + {target} время платить по счетам + красный флаг вижу бью сразу + {target} справедливый суд идет + {target}, братва справедливость уважает + + {target}, #threat.pkk# + + + + {target} клан против клана[, го] + за клан вносим, {target} + кв, {target}[, не жди пощады] + {target} наша территория [наш фарм] + бьем {target}, это война + {target}, {enemyclan}, [лучше] сдавайтесь + война объявлена, {target} + {target}, [это] за территорию + не разбегайтесь, {target}[, война есть война] + {target}, {enemyclan} [здесь] не пройдет + клан [наш] сильнее, {target} + {target}, готовьтесь [к войне], кв + {target}, братва идет войной + {target}, за респ[, за спот], бьемся + {target}, {enemyclan}, [вы] попали нахрен + {target} клан против клана го + вражина {target} по кв получай + {target} за клан вносим + клановая война {target} не жди пощады + {target} видел красный клан бьем + го {target} это личное клан на клан + {target} наша территория наш фарм + вражеский клан {target} штурмуем + {target} за прошлый рейд отвечай + кв началась {target} готовься + {target} клан ставит на паузу твой фарм + бьем {target} это война + {target} сегодня без пощады кв + клан сказал валить {target} вот и валим + {enemyclan}, вам [тут] бля не жить + + + {player} [ну все] запомнил тебя + {player} это не конец + {player} за это ответишь + {player} на карандаш [взял] + ~lol~ {player} жди реванша + {player} повезло [один раз] + {player}, [ладно], 1:0, но не последний раз + {player}, на респе [встретимся] снова + {player}, [это было] везение [чистое] + {player}, [запомни] это надолго + {player}, реванш [будет] скоро + {player}, [ну] неплохо [сыграно], но + {player}, [бля] повезло тебе + {player}, братва [не] забудет + {player}, [следующий раз] иначе будет + гг, {player}[, но это раунд один] + {player} ну все запомнил тебя + слился от {player} но еще встретимся + рофл {player} жди реванша + {player} повезло один раз + {player} следующий раз по другому будет + {player} запомню это надолго + блин {player} ну ты труп следующий + {player} это временно поднимусь и вернусь + {player} на карандаш взял + {player} еще посчитаемся + {player} везунчик сегодня + {player} готовься к реваншу + {player}, #revenge_vow#[ #revenge_when#] + {player}, [бля], ладно, реванш будет + + {player}, точку +4 [видно] качнул удачно + {player}, [ладно], дд у тебя жирный + {player}, ман [у меня] кончился не вовремя + {player}, [это] лаг решил[, не ты] + {player}, инет [у меня] лагнул, [а то бы] + {player}, гк [возьму] и на респ + {player}, [бля], повезло [нахрен] + {player}, братва [это] запомнит + #res_talk#[, {player}] + {player}, реванш [будет], [точку подтяну] до +6 + + + о, {player}, это же ты меня валил + опа, {player}[, а вот и обидчик] + {player} должок за прошлый раз + попался, {player}[, наконец то] + {player} реванш будет [сейчас] + {player}, [я] помню [тебя] хорошо + долго ждал [этой встречи], {player} + {player}, [настал] час расплаты + не уйдешь [в этот раз], {player} + {player}, [сейчас] сквитаемся + {player}, [судьба] свела [нас] снова + старый должок, {player}[, пора закрыть] + {player}, [готовься], это личное + {player}, [бля] сейчас получишь [сполна] + о {player} это же ты меня валил + {player} узнал тебя не забыл ничего + опа {player} а вот и обидчик + {player} долго же я тебя ждал + {player} помню как ты меня гангнул + попался {player} наконец то + {player} вот и встретились снова + {player} не думал что увижу тебя тут + {player} а я тебя не забыл + вот это встреча {player} готовься + {player} реванш будет сейчас + {player} судьба свела опять + {player} тот самый гангер + {player}, #revenge_vow#[, #revenge_when#] + {player}, [бля], вот и свиделись + + + о, {player}[, привет], спасибо [еще раз] за помощь + {player} рад видеть [тебя] + {player} респект [тебе] за тот раз + {player} го снова пофармим [вместе] + {player}, [сколько лет], как оно + {player}, [до сих пор] помню [ту] помощь + хорошего человека [сразу] видно, {player} + {player}, [го в пати], за старое + {player}, свои люди[, всегда рад] + {player}, [может] дюль[, но] по-дружески + {player}, братва своих не забывает + {player}, [если что] обращайся [снова] + рад [что] встретил [тебя], {player} + {player}, [го] вместе на рб + о {player} привет спасибо еще раз за помощь + {player} рад видеть тебя + {player} ты же мне тогда помог + привет {player} должник твой все еще + {player} классно что встретились + {player} помню как ты вытащил меня + {player} респект тебе за тот раз + вот это встреча {player} рад + {player} спасибо что тогда помог + {player} хорошего человека помню + давно не виделись {player} все ок + {player} ты мне тогда жизнь спас + {player} го снова пофармим вместе + рад тебя видеть {player} привет + {player}, гг тогда было + + + #smalltalk# + #grounded_talk# + кто спот застолбил тут + без пати [тут] скучно [очень] + кто знает где рб [респавнится] + #class_talk# + #quest_talk# + #afk_talk# + #spoil_talk# + #weather_talk# + го кто-нибудь в дюль, [а то] скучно + олимп сегодня [кто-нибудь] заходил + замок [опять] на осаде трясется + банки заполнены[, в инвентаре] места нет + свитки возврата [все] кончились[, бегом в город] + кто продает [аренду] телепорт свиток + точку держим[, пока] можем + фармлю потихоньку[, план такой] + план простой — кач и фарм + дроп сегодня вообще никакой + респ долгий как обычно + цены на бижу совсем ку ку + скучно фармить один и тот же спот + сервер лагает опять + адену никто не берет уже + кто знает где рб респавнится + фарм сегодня прям не идет + опять никакой дроп с моба + точка занята была с утра + кто в курсе патч когда + скилл денег стоит как крыло дракона + без пати тут скучно очень + кто продает шмот дешево + #complain_what#[, ]#complain_how# + #craft_talk# + #crash_talk# + #raidqueue_talk# + #reseller_talk# + #twink_talk# + #academy_talk# + #brag# + #rumor_lead#[, ]#complain_what# + фарм сегодня изи, но скучно + {crowd} человек уже на споте, тесно + кто-нибудь видел {boss}, [не пойму] жив или нет + {mob} тут спамят так[, что] жесть + {enemyclan} опять на споте ошиваются + {daytime}, а [народу] как в час пик + {drop} с {mob} [сегодня] хоть [раз] упал бы + + {enemyclan} сегодня совсем оборзели, гангают + на респе чаще бываю, чем на споте + настроение ноль, гангнули [только что] + пк на споте, фарм встал + сижу отхожу [после ганга] + (слили|внесли) [меня] только что, обидно + день не задался, [уже] на респе побывал + кто-нибудь видел (пкшника|красного)? [он тут бегает] + полчаса фарма (слито|коту под хвост) + + + {level} [лвл] взял, жизнь налаживается + апнулся до {level}, теперь полегче + после лвл апа фарм [прям] веселее + новый скилл [решает] вообще + + + торговля [сегодня] бодро идет + в {town} народ активно [что-то] покупает + торговля сегодня (идет|не идет) + в лавке сижу, скучно [но надо] + + + {daytime}, а я тут все фармлю + ночью [даже] пк реже встречаются + ночью тише[, и] спокойнее фармить + в это время [обычно] мало народу + + + {item} [свежий] завезли, налетай + лавку в {town} [только что] открыл + лавку [вот] открыл, налетай + торговать [решил] начал, гляньте + + + #enchant_talk# + #mana_talk# + #shot_talk# + #gm_talk# + #olympiad_talk# + #wh_talk# + #ping_talk# + #afk_reason# + #need_class# + точка +4 весь вечер не встает, [бесит] + паровоз [гоняем] без остановки [сегодня] + гк дорогой стал[, при] такой инфляции + фулка [сегодня] не собирается никак + манны [у всех] не хватает, [видно] патч [подрезал] + кто продает лям [адены] под расчет + дроп [сегодня] такой, что хоть плачь + паровозом [тут] никто фармить не хочет + олимп [сегодня] лагает страшно + вх забит[, весь] город стоит + точка +4, бля, четвертый раз не встает + братва, [заточка это] как лотерея + фарм изи, но манны нет + + + {level} #lvl_get#[, го #lvl_next#] + [ееее ]{level} лвл #lvl_get# + {level} #lvl_get#, [теперь ]го #lvl_next# + ееее наконец {level} [лвл] + вот и {level}[, го дальше] + дотянул до {level}[, кайф] + {level} есть, го (дальше|скилы покупать) + долбил долбил и вот {level} + {level}[, наконец-то] + ура, {level} [лвл] мой + {level} взял[, дальше качаем] + не зря фармил — {level} + вот это {level}[, красота] + гг мне, {level} [лвл] есть + {level}, братва, все получилось + {level}[, теперь] новый скилл го брать + долго шел[, но] {level} мой + ееее наконец {level} лвл + вот и {level} го дальше + дотянул до {level} кайф + {level} лвл го новый спот искать + ура {level} наконец то + лвл {level} взял всем спасибо + {level} го статы качать + {level} лвл красота + наконец пофармил на {level} + {level} есть го дальше рашить + лвл ап {level} наконец дождался + {level} лвл го скилы покупать + #levelup_joy# + вп мне, левел есть + + + гз + гз гз + поздравляю [бро] + красава[, {player}] + гц [с лвлом] + мои поздравления[, {player}] + красавчик[, {player}] + молодец[, {player}] + так держать[, {player}] + растешь[, {player}] + гз, {player}[, заслужил] + гз, вп + красава, братан + {player}, [ну] наконец-то + #praise#[, {player}] + красава, бля, заслужил + + + все, дорос[, пора в город] + перерос спот[, двигаю] + в город метнусь [за экипом][, пока] + с вами было приятно + спот пройден[, го новый левел] + адена [есть] на шмот[, еду в город] + пора [и] честь знать[, ухожу] + новый спот [зовет], пока [всем] + апнул [лвл] и [сразу] спот мал стал + в город [сгоняю], скоро [вернусь] может + тут [я] все выжал[, дальше двигаю] + пора, братва, двигаю дальше + спасибо за компанию[, го дальше] + закрываю [этот] спот[, следующий] + все дорос пора в город + го в город за шмотом всем удачи + перерос спот двигаю в город + пока народ иду апать шмот + хватит с меня этого спота + дальше некуда расти тут + в город метнусь за экипом пока + всем пис го фармить дальше + локация мала стала + спот пройден го новый левел + в город затарюсь и обратно го + перерос спот пора двигать + #migrate_bye# + хорош, пора в город[, бля] + + + го валим {boss} [всей пати] + {boss} сегодня (умирает|твой день умирать) + фокус {boss}[, все вместе] + {boss} прощайся с хп + рб {boss}, пришли за дропом + {boss}, [готовься], пати в сборе + го на {boss}[, все по позициям] + {boss} [сегодня] падет [точно] + фул пати на {boss}[, го] + {boss}, дроп [твой] уже наш + танк [держи] агро на {boss} + хилы [на позиции], го {boss} + го {boss}, дэмэдж давайте + {boss}, братва пришла [за дропом] + го валим {boss} всей пати + {boss} сегодня твой день умирать + пати готова {boss} го + налетай на {boss} все разом + {boss} держись сейчас будет жарко + вот и {boss} го фокусим + все по позициям бьем {boss} + {boss} без шансов го + рб {boss} пришли за дропом + {boss} готовься к урону + го общий пул на {boss} + {boss} мы тут за аденой + фокус {boss} все вместе + #raid_call# + {boss}, готовься[, бля], к урону + + + {town}, лавка открыта: {item} за {price} + продаю {item}[, дешево], {price} + {item} по {price}[, налетай пока есть] + лавка в {town}: {item}[, все свежее] + распродажа: {item} за {price} [только сегодня] + {item} [срочно] продаю, {price}, [торг] уместен + меняю {item} [на] адену[, {price}] + {town}, [заходи], {item} ждет [своего] хозяина + все по акции: {item} — {price} + {item} за {price}[, последний] экземпляр + скупаю {item}[, дам] {price} + {town}, [лавка] закрывается[, налетай на] {item} + {item} за {price}, братва, [налетай] + {item} за {price}, изи цена, налетай + {town} лавка открыта {msg} + продаю в {town} {msg} + {msg} налетай пока не раскупили + {town} торгую {msg} дешево + лавка {msg} все свежее + го покупай {msg} в {town} + {msg} цена приятная зацени + торговец тут {msg} подходи + {town} {msg} последний день акции + распродажа {msg} только сегодня + {msg} налетай гоу пока есть + лавка возле {town} {msg} + {msg} самые низкие цены + открыл точку {msg} го смотреть + {item} #trade_price_tail#[, #trade_pitch#] + {town}, {item} #trade_price_tail# + {item} #trade_price_tail#, братва, налетай + + {item} за 2кк[, налетай] + {item} лям[, отдам сразу] + сотку [адены] за {item}[, го] + {town}, {item} [прямо] из вх [достал] + кк [чистыми] за {item} + {item} б грейд[, {price}] + {item} с грейд[, {price}, налетай] + соски [оптом], {price} + шоты [пачками], {price} + #wh_talk# + {item} [срочно], за 2кк [отдам], [не торгуюсь] + {item} за {price}, нахрен, [налетай] + {item}, братва, {price}, [забирай] + торгую {msg}, [го] в {town} + + + {player} го в пати[, вместе быстрее] + {player} давай вместе фармить + го пати, {player}[, скучно одному] + возьму в пати[, го] {player} + {player}, [место] в пати есть, го + {player}, го [вдвоем] экспу качаем + не одному [же] фармить, {player}, го + {player}, го, [вместе] веселее + {player}, кп [собираю], го с нами + го, {player}, [покажу] спот [хороший] + {player}, го, братва, вместе + {player}, го[, потом] поделим дроп + {player}, го фармить, [место свободно] + объединяемся, {player}, [го] пати + {player} го в пати, вместе быстрее + го пати {player}, скучно одному + {player} может в пару? опыт капает + возьму в пати, го {player} + {player} го качаться вместе, тут норм спот + давай в дуо {player}, быстрее пойдет + {player} го со мной, прикрою + #offer_party#[, {player}] + #address# го в пати + {player}, го, изи фарм вместе + + + сюда! меня гангают + помогите, пк на споте + свои, ко мне [быстро] + хелп, вносят меня + народ, подтягивайтесь[, пвп] + sos, [меня] бьют [толпой] + помогите [срочно], флаг [уже] на мне + ко мне, [нужна] помощь + гангают! [все] сюда + вносят [меня], хелп + тревога, пк [на] споте + быстрее [сюда], убивают + [кто] рядом — [срочно] сюда + клан, [ко мне], [нужна] подмога + свои, ко мне быстро + клан, сюда, тут дерутся + народ, подтягивайтесь, пвп + #call_help_urgency#[, ]#tail_urge# + ко мне[, ]#call_help_urgency# + сюда[, бля], вносят меня + + #res_talk# + манны нет, [а] бьют, хелп + хилку [срочно], [умираю] + дд нужен [срочно], вносят + сюда бля, [срочно], вносят + братва, [все] сюда, бьют + флаг [уже] на мне, [все] сюда + #need_class#[, срочно] + точку [мою] отжимают, [все] сюда + долбят [меня] тут, все сюда + манны нет вообще, [добивают], хелп + #shot_talk#[, хелп] + + + ищу пати [в {zone}], {level} лвл + кп {level}+ го, есть места + пати на споты в {zone}, го го + ищу кп, (дд|хил) {level} + го пати[, {zone}], {level} лвл [нужен] + нужен [еще] один [человек] в кп, {level}+ + формирую пати [на] {zone}[, го] + ищу [толковый] кп[, {level}] лвл + {zone}, [собираю] кп, го стучите + нужны [люди] в пати, {zone} + го фармить пати [в] {zone}[, {level}+] + лфп, {zone}, {level}+, го + братва, го в кп, {zone} + кп [почти] собран[, {level}+], го [последний] + го кп[, бля], чего тянем + + #need_class# + ищу кп, {level}+, [дд особенно нужен] + хил ищем[, дд полно уже] + танка [ищем] позарез + бафера [бы], [а то] голяком идем + кп [собираю], [манны] на всех хватит + го паровозом вместе, {zone} + фулка [почти], [дд] последний нужен + {zone}, кп го, соски [свои] берите + го кп[, бля], [дд] где + лфп, {level}+, дд го + братва, [в] кп го, {zone} + #need_class#[, {level}+] + дд или хил, го в фулку + + + #agree# + да, {msg}, [точно] подмечено + у меня та же фигня [кстати] + точно [подмечено], {msg} + {msg}[, ну] точно + аналогично [у меня] + не одному [мне так] кажется [видимо] + {msg} — [чистая] правда + старая [это] тема, {msg} + +1 [к сказанному], {msg} + и то верно + {msg}[, вот] реально + поддерживаю[, {msg}] + жиза, {msg} + {msg}, [вот] это в точку + точно, братва, {msg} + мысль [дельная], {msg} + {msg}, у нас в {zone} так же + точно, у {mob} та же история + {crowd} человек тут [все] это подтвердят + {daytime}, и правда, [все] так + {boss} [тоже] [самое], подтверждаю + точно, братва, у нас в {zone} то же самое + + {msg}, [у меня] так же [с точкой] + точно, [у] меня манны [тоже] нет + {msg}, [даже] гк [так же] думает ~lol~ + #ping_talk#[, {msg}] + в точку, [дд] тоже нужен + {msg}, бля, [в яблочко] + братва [то же самое] говорит, {msg} + согласен, [шоты] тоже кончаются быстро + точно подмечено, [вх] у всех забит + #gm_talk# + + + {player} держись бегу помогаю + го вместе добьем {player} + {player} я тут подсоблю + на помощь {player} не переживай + {player} втроем веселее фармить + подключаюсь {player} бьем моба + {player} лови баф и хил + не один {player} я рядом + {player} го дружно вынесем + подмога подъехала {player} + {player} держим агро вместе + я в пати заходи {player} + {player} щас быстро завалим + на выручку {player} бегу + {player}, братва уже бежит + + + ладно, я дальше сам, удачи + все, разбегаемся, спс за компанию + пойду по своим делам, бб + норм пофармили, я дальше + отойду, удачи в фарме + все на сегодня, бывай + бывай, братва, го дальше + + + #store_goods#[85:, #store_price_word#][45:, #store_mood#] + + diff --git a/src_mobius/mobius/L2J_Mobius_CT_0_Interlude/dist/game/data/FakePlayerCombat.xml b/src_mobius/mobius/L2J_Mobius_CT_0_Interlude/dist/game/data/FakePlayerCombat.xml new file mode 100644 index 0000000..2c41108 --- /dev/null +++ b/src_mobius/mobius/L2J_Mobius_CT_0_Interlude/dist/game/data/FakePlayerCombat.xml @@ -0,0 +1,96 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src_mobius/mobius/L2J_Mobius_CT_0_Interlude/dist/game/data/FakePlayerIntents.xml b/src_mobius/mobius/L2J_Mobius_CT_0_Interlude/dist/game/data/FakePlayerIntents.xml new file mode 100644 index 0000000..bbd20f9 --- /dev/null +++ b/src_mobius/mobius/L2J_Mobius_CT_0_Interlude/dist/game/data/FakePlayerIntents.xml @@ -0,0 +1,20 @@ + + + + бот|боты|скрипт|макрос|программ + лох|лош|нуб|дурак|дура|дебил|идиот|туп|мусор|чмо|клоун|днище|бомж|крыса|слаб|отстой|пшел|пшла|заткни + спс|спасиб|пасиб|благодар|сенкс|thx|ty|респект|красав + дуэль|дюль|1в1|1x1|1х1|соло|выйдем|стыкнемся|пвп + помо|хелп|помощ|хиль|отхил|хил|рес|ресни|спаси|выруч|бафни|баф|подсоб + пати|парти|групп|пл|инвайт|прими|возьми + какой|скок|сколько|че|чолвл|левел|уровен|лева + почем|цена|цену|купи|продай|продаш|скупа|стоит|аден + что|чо|че|какие|слышнов|слыш|происход|творится|интересн + где|куда|далеко + пока|бб|бай|досвид|бывай|споки|удачи + как|че|чо|чтодела|сам|оно|как|жизнь|делаешь|поживаешь|фарм|настрой + привет|прив|хай|здаров|здоров|ку|йо|хелло|дратути|салют|даров + да|ага|ок|окей|норм|пон|ясн|угу|лан|ладно + diff --git a/src_mobius/mobius/L2J_Mobius_CT_0_Interlude/dist/game/data/FakePlayerPhrases.xml b/src_mobius/mobius/L2J_Mobius_CT_0_Interlude/dist/game/data/FakePlayerPhrases.xml new file mode 100644 index 0000000..3ee83cc --- /dev/null +++ b/src_mobius/mobius/L2J_Mobius_CT_0_Interlude/dist/game/data/FakePlayerPhrases.xml @@ -0,0 +1,119 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src_mobius/mobius/L2J_Mobius_CT_0_Interlude/dist/game/data/FakePlayerPools.xml b/src_mobius/mobius/L2J_Mobius_CT_0_Interlude/dist/game/data/FakePlayerPools.xml new file mode 100644 index 0000000..1a7ff83 --- /dev/null +++ b/src_mobius/mobius/L2J_Mobius_CT_0_Interlude/dist/game/data/FakePlayerPools.xml @@ -0,0 +1,1038 @@ + + + + #threat_verb#[ #threat_when#] + #threat_verb#[, #threat_when#] + [#threat_when#, ]#threat_verb# + #threat_verb# и точка + #threat_verb#[, серьезно] + щас #threat_verb# + #threat_verb#[, не сомневайся] + обещаю: #threat_verb#[ #threat_when#] + #threat_verb#, [в натуре] #threat_when# + точно [тебе говорю], #threat_verb# + #threat_verb#[, я не шучу] + [серьезно, ]#threat_verb#[ #threat_when#] + готовься + лови + держись + сейчас начнется + это будет быстро + сам напросился + + + снесу (тебя|твою тушку) + отправлю на респ + разберу [по частям] + вынесу [с одной руки] + вынесу нахрен + урою бля + закатаю [в асфальт] + сделаю (жмурика|дохляка) + положу [на респе] + выбью [весь] хп + занесу на кладбище [заранее] + завалю, братва подтвердит + кину изи килл по тебе + размажу (нахрен|бля) + + + прямо щас + как флаг словишь + на этом [самом] споте + пока хилки нет + сразу после ресса + без разговоров [и предупреждений] + как только [твоя] пати разбежится + пока баф не кончился + на [следующем] респе + и плевать на карму + хоть с (кп|пати), хоть один + как стемнеет [и станет веселее] + если [еще раз] сюда сунешься + прямо у тебя на глазах + + + (даже|лучше) не (пытайся|дергайся|mat:рыпайся нахрен) + беги пока можешь + ты труп [по факту] + изи фраг + фри килл изи + нуб (обнаружен|спалился) + даже не (пыхти|старайся)[, бесполезно] + слился бы сразу[, легче было бы] + школьника прислали? ~lol~ + пацаны, гляньте на этого + гг вп, [можешь] сдавайся + куда собрался[, стой] + даже не рыпайся нахрен, слабак + три [пикселя] хп и в панике уже + лол + слабо + кек + не тяни + кто так играет + ну и ну + это всё? + смешно даже + давай ещё раз + серьёзно? + жалко смотреть + ауф + + + респ (долгий|конченый) [как обычно] + дроп сегодня (никакой|ноль|грустный) + цены на бижу [совсем] ку ку + скучно фармить [одному] + сервер (лагает|тупит) [опять] + адена [ощутимо] дешевеет + клан [новых] людей ищет, стучите в тс + кто видел нормальный кп на споте [сегодня] + в прайм [опять] лагает [все] + хилок [вечно] не хватает + нпц квестовый (глючит|тупит) [третий день] + #weather_talk# + дроп никакой + респ долгий + скучно тут + фарм не идёт + вечно так + сегодня тихо + народу мало + монстры тупят + опять пусто + время тянется + как обычно фигня + ничего не падает + + + опять эти {mob} по полчаса респятся + {drop} упал, хоть что-то [за час] + нас тут {crowd} рыл на точке[, тесно] + кто в курсе, {boss} ап или нет + {daytime}, а народу как в праздник + в {zone} сегодня не протолкнуться + {mob} тут злые [сегодня], хп [прям] много + жду {drop} [уже] третий час [подряд] + {boss} видел кто, время респа не знает? + в {zone} [опять] пк ходит[, осторожно] + {crowd} человек на спот [это] перебор + {daytime} самое время фармить, [пока] тихо + точку в {zone} [опять] заняли [раньше нас] + {mob} дают мало опыта[, но {drop} радует] + + + да уж[, точно] + вот вот + жиза + и не говори + +1 + реально + ну да[, есть такое] + подтверждаю + стопудово + факт + именно + в точку + + + [на дворе] {daytime}, а я все [сижу] фармлю + погода [шепчет], самое время (кач|фарм) + {daytime} [уже], а респ так и не сдвинулся + ночью фармить [даже] спокойнее[, людей меньше] + утром сервер [почти] пустой + вечером [всегда какой-то] движ на споте + днем [как обычно] школьники набегают ~lol~ + под утро самая жара на рб [если что] + + + какой класс [вообще] сейчас (топ|силен) + думаю (задуалиться|перекатиться)[, надоел класс] + мой класс [ну реально] слабый на пвп + бафер в пати важнее дд, [по-моему] + хилы вечно (в дефиците|нарасхват) + орк дд [сейчас] неплохо (фармит|качается) + мага (перекачал|перекатил) в саппорта + танку без пати совсем тяжко + рыцарь на рб [всегда] нужен + лук классы [щас] неплохо фармят + + + квест на {level} [лвл] кто-нибудь проходил + квестовый нпц [опять] не отвечает + сабов квест муторный[, но] надо делать + кто знает, где [этот] квестовый предмет падает + квест на класс (сложный|долгий) [реально] + забыл квест сдать[, вот дурак] + квестовая цепочка [эта] бесконечная [прям] + за квест [хоть] адены [немного] дают + + + афк 5 мин[, не бейте] + отошел [на] пару минут[, не трогайте] + афк[, чайник закипел], верните на респ если что + две минуты афк[, буду скоро] + отхожу [ненадолго], бот стоит + афк[, звонок], скоро буду + чуть отойду[, спот придержите] + + + кто спойлера видел [на споте] + заспойлить бы {mob}[, самому лень] + спойлер [давно] не в кп[, а зря] + спойлом можно [неплохо] поднять + спойлеров [щас] совсем не видно + кто спойлит {mob}, го в пати + заспойлил, а раскопать (забыл|не успел) + + + соски + бижа + D грейд + C грейд + ресы + дроп + кожа и клыки + руда + ключи + хилки + оружие + шмот + + + дёшево + дорого + по рынку + быстро + торг + ниже рынка + цена норм + без торга + оптом + за адену + выгодно + распродажа + + + налетай + всё честно + смотри товар + заходи + не наглей + цена одна + берёшь или мимо + не торгуюсь + подходи + помогу с выбором + всем добра + спрашивай + только по делу + без базара + цена фикс + коротко и ясно + + + прив + хай + ку + здарова + йо + дратути + хаюшки + приветик + здоров + хей + ку ку + дарова + + + привет дружище + хай рад видеть + о привет + здарова кэп + приветствую путник + хай как сам + о живой красава + дарова товарищ + привет соратник + хай на связи + здарова боец + приветик рад встрече + + + здесь + на месте + прив по делу + коротко здарова + я тут + на связи + здесь я + прив без соплей + слушаю + готов + здесь есть дело + прив к делу + + + прив + хай + ку + здарова + йо + дарова + + + {player}, + эй {player} + слышь {player} + {player} слушай + ты {player}? + {player} а ты + смотри {player} + {player} эй + алло {player} + {player} чё как + эй ты {player} + {player} стоять + + + эт самое + слуш + короче + блин + оу + так + ну + в общем + кароч + а ну + слушай + хм + + + ща будет больно + готовься + лови + пиши завещание + беги пока можешь + держись + сейчас начнется + не заскучаешь + щас как дам + приготовься к боли + это будет быстро + молись + + + за нубов ответишь + карма догнала + сам напросился + справедливость близко + расплата близко + возмездие пришло + получай по заслугам + карма не дремлет + за грехи плати + итог закономерен + ты это заслужил + долг платежом красен + + + я тут кинг + спот мой + нас больше + я тут главный + без меня никак + топ сервера + все знают кто я + лучший фармер тут + равных нет + мой лут мой спот + первый в рейтинге + никто не сравнится + + + щас подсоблю + лечу + прикрою + держись я рядом + помогу если что + бафну сейчас + хилка идёт + на подхвате + вытащу тебя + подмога уже близко + врач в чате + спокуха я тут + + + го в пати + давай вдвоём + го дуо + в группу го + может пати? + го фармить вместе + зови в группу + давай в саппорт + го парой качаться + кинь инвайт + го на дуал + вместе веселее + + + красава + четко + уважение + вот это скилл + силён + так держать + молодец реально + это база + ты машина + четкий удар + вот это игра + респект тебе + + + бб + удачи + го дальше + пока + до скорого + отдыхать пошел + увидимся + счастливо + го отдыхать + на этом всё + давай пока + до связи + + + лаги + цены кусаются + конкуренты на споте + опять руберы + сервер тормозит + дорого всё + очередь на респе + толпа на споте + рынок обвалился + адена дешевеет + опять фулл на локе + пинг скачет + + + а ты откуда + сам как + чё качаешь + а класс какой + ты соло? + давно играешь? + а клан есть? + сам где фармишь + на каком лвл + а сервер давно? + ты из какого клана + отряд есть? + + + дошел до {level} + {level} наконец-то + ура {level} лвл + вот и {level} + добил {level} + {level} закрыл + наконец-то левел + ура прокачался + вот это радость + левел есть + наконец пробил кап + качнулся ура + + + перерос спот + пора валить отсюда + тут мне мелко + иду выше + спот не по мне + ухожу на новый спот + тут всё отфармил + пора на новую точку + здесь больше нечего ловить + ищу спот получше + хватит с меня тут + двигаю дальше + + + го на {boss} + собираем на {boss} + {boss} спавнится скоро + нужен рейд на {boss} + кто на {boss}? + {boss} ждёт нас + го на рб + собираем рейд + нужны бойцы на босса + кто в рейд? + сбор на рб го + рейд стартует скоро + + + продаю дёшево + налетай + торг уместен + лучшая цена тут + забирай пока есть + свежий товар + скидка только сегодня + отдам недорого + подходи не стесняйся + акция сейчас + лучший расклад в городе + всё по адене + + + слышал? + народ говорит + болтают тут + поговаривают + слух ходит + в чате пишут + народ шепчется + знаешь новость? + кое-что расскажу + слухи ходят разные + люди говорят странное + байка новая есть + + + лол + кек + ахах + хех + :D + хаха + ну и смех + кек пацаны + ору + рофл + смешно вышло + хах + + + сорян + без обид + шучу + не со зла + это я так + не обижайся + мир + просто шутка + извини если что + не всерьез + полегче принимай + это не в обиду + + + го + давай + бегом + живо + пошевелись + время идёт + не тупи го + быстрее давай + чего ждешь + поторопись + время не ждёт + шевелись давай + + + есть + взял + получен + дотянул + наконец то + с горем пополам + #lvl_get_hard# + + + выдрочил + задрочил наконец + выгрыз [зубами] + вымучил нахрен + + + дальше + скилы покупать + новый спот искать + шмот обновлять + статы качать + рашить дальше + + + привет + хай + здаров + йо + дароу + ку + прив + здарова братва + хеллоу + + + как (сам|оно|фарм|дела|кач) + че нового + как жизнь + + + #complain# + точка в {zone} вечно занята + {crowd} человек на споте это капец + {mob} с респа не слезают + дроп с {mob} совсем не радует + {boss} третий день не могу дождаться + {enemyclan} весь фарм разгоняет + очередь на {boss} как в кассу в обед + заточка [опять] не идет + крафт сегодня вообще не прет + клиент [опять] вылетел на самом интересном + скупщики цены [совсем] обвалили + твинка тащить скучно + академия [опять] пустая стоит + + + бесит + задолбало [уже] + реально достало + ппц как неприятно + руки опускаются + который день подряд + сил моих нет + вообще труба + надоело хуже [некуда] + кошмар просто + #complain_how_hard# + + + бесит нахрен, дальше некуда + задолбало в дым, если честно + достало бля реально + нахрен нервы жгут эти респы + хорош бесить уже + сил моих нет нахрен + + + заточка [сегодня] совсем не идет + крафт [такое] дело дорогое + заточил наконец [оружие], руки трясутся + скрутка [опять] сломала камень + заточка [это] лотерея чистой воды + крафтеров [толковых] совсем мало осталось + рецепт крафта [где-то] потерял + заточить бы [до +6], да боязно + крафт денег [реально] стоит как крыло дракона + соулшоты на заточку [все] спустил + братва, заточка это как лотерея, по кайфу[, если] зайдет + заточка [эта] нахрен всю адену съела + + + клиент [опять] вылетел [прямо] на респе + вылетел [на самом] интересном месте + игра [третий раз] крашнулась [за час] + фризит [все] перед рб[, как назло] + вылет [и] опять на кассе[, обидно] + клиент виснет на загрузке + пропатчился и [сразу] вылет + драйвера [что ли] обновить [надо] + вылетаю [ровно] на боссе [каждый раз] + клиент [этот] совсем нестабильный стал + клиент крашнулся, фикс когда + вылетело [нахрен] прямо перед дропом + + + очередь на {boss} уже на два часа + кто в очереди на рб первый + лист ожидания на {boss} [опять] длинный + записываюсь на {boss}, кто десятый + очередь [эта] на рб дольше самого рб + ждем респа {boss} уже час + занял очередь [на рб] с утра + на {boss} собралась толпа народу, не протолкнуться + кп до нас уже третий заходит на {boss} + очередь на рб двигается хуже черепахи + братва в очереди на рб уже с обеда стоит + очередь эта на рб реально задолбала нахрен + + + скупщики [опять] цены обвалили + скупщик [этот] дешевле рынка берет + скупщикам [только] дропни, а не продавай напрямую + скупщик в {town} [сегодня] неплохо берет + скупщики [весь] рынок [под себя] держат + без скупщика [и] не продашь толком + скупщик [опять] куда-то [весь] делся + скупщики [сговорились], цену [все] держат низкую + лучше [сам] продай, чем скупщику за бесценок + скупщик в {town} [самый] честный[, говорят] + скупщики [эти] совсем оборзели нахрен + + + твинка [опять] качаю, скучно [если честно] + твинк [этот] быстрее [основного] качается + на твинке [гораздо] проще фармить + твинков [уже] три [штуки] развел + твинк [под] саппорта качаю + твинку шмот с основного [перекидываю] + без твинка [щас] никуда [на сервере] + твинк мой уже {level} лвл [почти] + качаю твинка параллельно[, чтобы] не скучно было + трудно [и] на твинке и на мейне [успевать] + твинк мой изи качается + твинка братве в пати беру всегда + + + академия [клановая] сегодня [опять] пустая + в академии [народ] редко [кто] бывает + набор в академию [клан] открыт[, кстати] + академия [это] для новичков [самое то] + из академии [уже] в основу двоих перевели + академия [клановая] хорошо [молодых] подтягивает + кто в академии, го [все] в кп + академия [пока] маленькая, [но] растет + командир [из] академии [никого] не гонит + в академии сейчас учат азам [пвп] + академия, братва, это кузница кадров + + + лови ганг + держись крепче + щас будет весело + не пытайся [даже] бежать + респ [твой] уже ждет + флаг мне не помеха + карма подождет + точка эта [теперь] моя + попался [ты] удачно + хилка не спасет + изи килл го + #gank_tease_hard# + + + сдавайся сразу, легче будет + бесполезно это нахрен + получишь щас по щам + хорош пыхтеть, слился уже + куда собрался, нахрен, стоять + харош бегать, поймаю все равно + нытье свое прибереги + сопли подбери и дерись уже + + + запомнил тебя крепко + не забуду это никогда + посчитаемся еще + поквитаемся обязательно + долг [этот] верну + это не конец, это только начало + реванш будет за мной + на карандаш взял тебя + встретимся еще на споте + братва это не забудет + #revenge_vow_hard# + + + бля, запомнил + нахрен не забуду + получишь ты свое обязательно + попомнишь бля этот день + должок этот с процентами верну + хорош радоваться, рано еще + сочтемся бля обязательно + + + на респе + в следующий раз + скоро уже + когда меньше всего ждешь + рано [или] поздно + на следующем споте + не сегодня, [так] завтра + при первой [же] встрече + когда флаг твой слетит + как [только] один останешься + время [это] покажет + очень скоро + + + за {price} + по {price} + всего за {price} + цена {price} + отдам за {price} + {price} и забирай + дешевле не найдешь, {price} + {price}, торг слабый + {price} ровно + за {price} без обмана + {price}, налетай + {price}, изи цена + + + ты по делу [пишешь] или как + поясни нормально, не понял + че [хочешь] надо-то + давай [конкретнее] объясни + ты о чем вообще пишешь + не разобрал[, повтори] + пиши [яснее] по-другому + ты кому это вообще пишешь + занят [щас], но слушаю + братан, ты по делу [или] как + #whisper_ask_hard# + + + ты по делу пишешь, бля, или нет + хорош спамить нахрен + че надо, короче, нахрен + не тупи, пиши нормально + бля, не понял вообще, ты о чем + харош воду лить, пиши суть + нахрен мне твои загадки, пиши прямо + + + ладно + все на сегодня + пора мне + ну все + на этом [все], пожалуй + закругляюсь + пора [и] честь знать + хватит на сегодня + все, [я] пожалуй + бб всем, гг + #bye_lead_hard# + + + все нахрен, спать + хватит бля на сегодня + задолбался, все + харош, на сегодня, бля + все бля, выключаюсь + хорош уже сидеть, пора + харош, все, оффлайн + + + срочно + быстрее [сюда] + не тяните + прямо [щас] нужна + очень срочно надо + времени [совсем] нет + что есть духу бегите + пожалуйста [быстрее] + умоляю[, сюда] быстрее + братва, [сюда] бегом + #call_help_urgency_hard# + + + бля, быстрее сюда + нахрен, тяните давайте + сдохну щас, бля + харош тупить, бегом + быстрее бля, не успеваю + нахрен ждать больше не могу + + + норм + пойдет + так себе + класс + терпимо + неплохо + бывало и хуже + отлично + средне + гуд + #how_feel_hard# + + + херово, если честно + хреново маленько + так себе, бля, если честно + паршиво бля + фигово, если начистоту + хреновастенько + не очень, если по-чесноку + + + фармлю потихоньку + дроп радует + качаюсь помаленьку + устал [немного] + на подъеме сегодня + лвл почти взял + рб ждем + торгую помаленьку + отдыхаю чутка + в фарме весь день + + + не за что + пожалста + без проблем + да ладно + всегда рад + сочтемся + ерунда + обращайся + да не вопрос + нп + свои, братва + + + обращайся[, если] что + свои люди [же] + рад[, что] помогло + го дальше + не парься + было [не] сложно + в любое время + чем смог + заходи еще + не благодари нахрен + + + дд нужен [в фулку] + хил нужен позарез + танк нужен, агрить некому + бафер нужен, без баф как без рук + нужен дд, а то фулка не едет + саппорт бы, а то тухло [совсем] + орка дд бы, самое то + хила бы, а то отхила [вообще] нет + (дд|дамагер) нужен [в фулку] + танка ищем, агро кидать некому + дд нужен нахрен, а то никак + братва, дд нужен, го стучите + + + манны нет вообще + ман кончился, сижу на банках + сидим на мане, ждем + манна на нуле, реснуть бы + ман сожрал в ноль + маны нет ни капли + манник бы сюда + манна на нуле, кастовать нечем + ману пью бочками [уже] + манны впритык, экономлю + манны нет нахрен вообще + + + точу +4[, хоть бы не слетело] + точка +4 не встала, [все] слилось + слил шмот на заточке [опять] + овер +6 хочу[, но] страшно + б грейд точу потихоньку + с грейд заточил[, норм] пока + точка встала +6[, красота] + шмот фул +4 хочу собрать + заточка сожрала весь запас свитков + слился шмот, [заново копить] на новый + точка [эта], бля, опять не встала + братва, точка +6 это как в лотерею + + + чайник [закипел] + мамка зовет [есть] + перекур [на пять минут] + брб две мин + в дверь звонят + уроки [блин] делать надо + завтра в школу[, спать] пора + завтра на работу[, отбой] скоро + комп [что-то] завис + телефон звонит[, отойду] + + + инет [опять] лагает + пинг скачет [как бешеный] + фпс просел [в ноль] + комп виснет [на рб как назло] + роутер [опять] глючит + пинг [сегодня] конский + лагаю [страшно], сорян + фризы [жуткие] на респе + инет [сегодня] отваливается + пинг под 300[, не играбельно] + инет [этот], бля, ваще не тянет + + + соски кончились [совсем] + шоты на нуле, [бегу в] город + сп кончился, [подождите] чуть + бсое кончился, [бегу] покупать + шоты б грейда [дорогие стали] + на шотах вся адена уходит + без сосок как без рук + шотов [взял] на неделю вперед + свитков бсое [не осталось] + спойл-шоты [тоже] кончились + соски [эти], бля, опять кончились + + + читер [этот] спидхакает[, точно] + гм бы [сюда] позвать + репорт [на него] кину + бан [ему] бы, [читеру] + гм [никого] не найдешь [щас] + спидхак [у него] точно + жалобу [на] гм отправил + забанят [его] рано или поздно + гм онлайн[, кто-нибудь] видел? + читерская контора[, эти боты] + читер [этот], бля, спидхакает в наглую + + + олимп [сегодня] заходил кто + герой [в этом] сезоне кто будет + очки [на олимпе] коплю потихоньку + на олимпе слился [опять] + гера [бы] сделать[, мечта] + олимпийка [эта] нервы жрет + бои [на олимпе] нонстоп идут + герой прошлого [сезона] красавчик + рейтинг [на олимпе] почти набрал + олимп [штука] дело такое + братва, на олимпе как обычно рубка + + + в вх [сгоняю] за шмотом + клановый вх [почти] забит + гк вызову[, быстрее так] + тп [возьму] до города + вх [в городе] переполнен + гк [этот] недешево берет + в {town} [го] метнусь + вх личный [почти] под завязку + тп свиток [последний] потратил + гк дешевле[, чем] бегать + вх [этот], бля, опять забит + + + (рес|ресни|подними) плз + рес нужен[, я на респе] + подними, [если] не сложно + ресни [давай], [хилки кончились] + рес плиз, [я тут] стою трупом + подними меня, [я рядом] + рес давай, [время] идет + ресни уже, [чего ждешь] + труп [лежу], рес нужен + рес плз[, а то респ далеко] + ресни уже, бля, чего тянешь + + diff --git a/src_mobius/mobius/L2J_Mobius_CT_0_Interlude/dist/game/data/FakePlayerProgression.xml b/src_mobius/mobius/L2J_Mobius_CT_0_Interlude/dist/game/data/FakePlayerProgression.xml new file mode 100644 index 0000000..abd16d0 --- /dev/null +++ b/src_mobius/mobius/L2J_Mobius_CT_0_Interlude/dist/game/data/FakePlayerProgression.xml @@ -0,0 +1,9345 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src_mobius/mobius/L2J_Mobius_CT_0_Interlude/dist/game/data/dashboard.html b/src_mobius/mobius/L2J_Mobius_CT_0_Interlude/dist/game/data/dashboard.html new file mode 100644 index 0000000..12a0524 --- /dev/null +++ b/src_mobius/mobius/L2J_Mobius_CT_0_Interlude/dist/game/data/dashboard.html @@ -0,0 +1,186 @@ + + + + +SPP: боты живьём + + + +
+
+

SPP боты

+
живой срез мира, обновление каждые 5 сек
+
Итого
+
+
Фильтр
+ +
+ + +
+
Боты
+
+
+
+ +
+ + + diff --git a/src_mobius/mobius/L2J_Mobius_CT_0_Interlude/dist/game/data/scripts/handlers/chat/channels/ChatGeneral.java b/src_mobius/mobius/L2J_Mobius_CT_0_Interlude/dist/game/data/scripts/handlers/chat/channels/ChatGeneral.java index 57b1a0a..4c6006b 100644 --- a/src_mobius/mobius/L2J_Mobius_CT_0_Interlude/dist/game/data/scripts/handlers/chat/channels/ChatGeneral.java +++ b/src_mobius/mobius/L2J_Mobius_CT_0_Interlude/dist/game/data/scripts/handlers/chat/channels/ChatGeneral.java @@ -27,6 +27,10 @@ import org.l2jmobius.gameserver.handler.IChatHandler; import org.l2jmobius.gameserver.handler.IVoicedCommandHandler; import org.l2jmobius.gameserver.handler.VoicedCommandHandler; import org.l2jmobius.gameserver.network.SystemMessageId; +import org.l2jmobius.commons.util.Rnd; +import org.l2jmobius.gameserver.config.custom.FakePlayersConfig; +import org.l2jmobius.gameserver.managers.FakePlayerChatManager; +import org.l2jmobius.gameserver.entity.actor.Npc; import org.l2jmobius.gameserver.network.enums.ChatType; import org.l2jmobius.gameserver.network.serverpackets.CreatureSay; @@ -119,6 +123,26 @@ public class ChatGeneral implements IChatHandler }); activeChar.sendPacket(cs); + + // Headless bots nearby may react to general chat. + if (FakePlayersConfig.FAKE_PLAYERS_ENABLED && FakePlayersConfig.FAKE_PLAYER_CHAT && (Rnd.get(100) < FakePlayersConfig.FAKE_PLAYER_LOCAL_CHAT_REPLY_CHANCE)) + { + final Player headless = World.getNearestVisibleObjectInRange(activeChar, Player.class, 1250, nearby -> nearby.isHeadlessBot() && !nearby.isDead()); + if (headless != null) + { + org.l2jmobius.gameserver.managers.FakePlayerHeadlessManager.getInstance().onLocalChat(activeChar, headless, text); + } + } + + // Fake players may react to nearby general chat. + if (FakePlayersConfig.FAKE_PLAYERS_ENABLED && FakePlayersConfig.FAKE_PLAYER_CHAT && (Rnd.get(100) < FakePlayersConfig.FAKE_PLAYER_LOCAL_CHAT_REPLY_CHANCE)) + { + final Npc fpc = World.getNearestVisibleObjectInRange(activeChar, Npc.class, 1250, nearby -> nearby.isFakePlayer() && !nearby.isDead()); + if (fpc != null) + { + FakePlayerChatManager.getInstance().manageLocalChat(activeChar, fpc, text); + } + } } } diff --git a/src_mobius/mobius/L2J_Mobius_CT_0_Interlude/dist/game/data/scripts/handlers/chat/channels/ChatWhisper.java b/src_mobius/mobius/L2J_Mobius_CT_0_Interlude/dist/game/data/scripts/handlers/chat/channels/ChatWhisper.java index 7567f39..1cb823b 100644 --- a/src_mobius/mobius/L2J_Mobius_CT_0_Interlude/dist/game/data/scripts/handlers/chat/channels/ChatWhisper.java +++ b/src_mobius/mobius/L2J_Mobius_CT_0_Interlude/dist/game/data/scripts/handlers/chat/channels/ChatWhisper.java @@ -62,6 +62,15 @@ public class ChatWhisper implements IChatHandler return; } + // Headless bots are real players - answer their whispers with the bot pipeline. + final Player headlessTarget = org.l2jmobius.gameserver.entity.World.getPlayer(target); + if ((headlessTarget != null) && headlessTarget.isHeadlessBot()) + { + org.l2jmobius.gameserver.managers.FakePlayerHeadlessManager.getInstance().onWhisper(activeChar, headlessTarget, text); + activeChar.sendPacket(new CreatureSay(activeChar, ChatType.WHISPER, target, text)); + return; + } + if (FakePlayersConfig.FAKE_PLAYERS_ENABLED && (FakePlayerData.getInstance().getProperName(target) != null)) { if (FakePlayerData.getInstance().isTalkable(target)) @@ -99,7 +108,7 @@ public class ChatWhisper implements IChatHandler return; } - if ((receiver.getClient() == null) || receiver.getClient().isDetached()) + if (!receiver.isHeadlessBot() && ((receiver.getClient() == null) || receiver.getClient().isDetached())) { activeChar.sendMessage("Player is in offline mode."); return; diff --git a/src_mobius/mobius/L2J_Mobius_CT_0_Interlude/dist/game/data/spawns/Others/FakePlayers.xml b/src_mobius/mobius/L2J_Mobius_CT_0_Interlude/dist/game/data/spawns/Others/FakePlayers.xml index 61bbdc2..6729430 100644 --- a/src_mobius/mobius/L2J_Mobius_CT_0_Interlude/dist/game/data/spawns/Others/FakePlayers.xml +++ b/src_mobius/mobius/L2J_Mobius_CT_0_Interlude/dist/game/data/spawns/Others/FakePlayers.xml @@ -1,5 +1,5 @@ - + diff --git a/src_mobius/mobius/L2J_Mobius_CT_0_Interlude/dist/game/data/stats/npcs/custom/fpc_trader_00.xml b/src_mobius/mobius/L2J_Mobius_CT_0_Interlude/dist/game/data/stats/npcs/custom/fpc_trader_00.xml new file mode 100644 index 0000000..8a61d95 --- /dev/null +++ b/src_mobius/mobius/L2J_Mobius_CT_0_Interlude/dist/game/data/stats/npcs/custom/fpc_trader_00.xml @@ -0,0 +1,26883 @@ + + + + HUMAN + FEMALE + + + + + + + + + + + + + + FAKE_PLAYER + + + + + + + + + + + + + HUMAN + FEMALE + + + + + + + + + + + + + + FAKE_PLAYER + + + + + + + + + + + + + HUMAN + FEMALE + + + + + + + + + + + + + + FAKE_PLAYER + + + + + + + + + + + + + HUMAN + FEMALE + + + + + + + + + + + + + + FAKE_PLAYER + + + + + + + + + + + + + HUMAN + FEMALE + + + + + + + + + + + + + + FAKE_PLAYER + + + + + + + + + + + + + HUMAN + FEMALE + + + + + + + + + + + + + + FAKE_PLAYER + + + + + + + + + + + + + HUMAN + FEMALE + + + + + + + + + + + + + + FAKE_PLAYER + + + + + + + + + + + + + HUMAN + FEMALE + + + + + + + + + + + + + + FAKE_PLAYER + + + + + + + + + + + + + HUMAN + FEMALE + + + + + + + + + + + + + + FAKE_PLAYER + + + + + + + + + + + + + HUMAN + FEMALE + + + + + + + + + + + + + + FAKE_PLAYER + + + + + + + + + + + + + HUMAN + FEMALE + + + + + + + + + + + + + + FAKE_PLAYER + + + + + + + + + + + + + HUMAN + FEMALE + + + + + + + + + + + + + + FAKE_PLAYER + + + + + + + + + + + + + HUMAN + FEMALE + + + + + + + + + + + + + + FAKE_PLAYER + + + + + + + + + + + + + HUMAN + FEMALE + + + + + + + + + + + + + + FAKE_PLAYER + + + + + + + + + + + + + HUMAN + FEMALE + + + + + + + + + + + + + + FAKE_PLAYER + + + + + + + + + + + + + HUMAN + FEMALE + + + + + + + + + + + + + + FAKE_PLAYER + + + + + + + + + + + + + HUMAN + MALE + + + + + + + + + + + + + + FAKE_PLAYER + + + + + + + + + + + + + HUMAN + MALE + + + + + + + + + + + + + + FAKE_PLAYER + + + + + + + + + + + + + HUMAN + MALE + + + + + + + + + + + + + + FAKE_PLAYER + + + + + + + + + + + + + HUMAN + MALE + + + + + + + + + + + + + + FAKE_PLAYER + + + + + + + + + + + + + HUMAN + MALE + + + + + + + + + + + + + + FAKE_PLAYER + + + + + + + + + + + + + HUMAN + MALE + + + + + + + + + + + + + + FAKE_PLAYER + + + + + + + + + + + + + HUMAN + MALE + + + + + + + + + + + + + + FAKE_PLAYER + + + + + + + + + + + + + HUMAN + MALE + + + + + + + + + + + + + + FAKE_PLAYER + + + + + + + + + + + + + HUMAN + MALE + + + + + + + + + + + + + + FAKE_PLAYER + + + + + + + + + + + + + HUMAN + MALE + + + + + + + + + + + + + + FAKE_PLAYER + + + + + + + + + + + + + HUMAN + MALE + + + + + + + + + + + + + + FAKE_PLAYER + + + + + + + + + + + + + HUMAN + MALE + + + + + + + + + + + + + + FAKE_PLAYER + + + + + + + + + + + + + HUMAN + MALE + + + + + + + + + + + + + + FAKE_PLAYER + + + + + + + + + + + + + HUMAN + MALE + + + + + + + + + + + + + + FAKE_PLAYER + + + + + + + + + + + + + HUMAN + MALE + + + + + + + + + + + + + + FAKE_PLAYER + + + + + + + + + + + + + HUMAN + MALE + + + + + + + + + + + + + + FAKE_PLAYER + + + + + + + + + + + + + HUMAN + MALE + + + + + + + + + + + + + + FAKE_PLAYER + + + + + + + + + + + + + HUMAN + MALE + + + + + + + + + + + + + + FAKE_PLAYER + + + + + + + + + + + + + HUMAN + MALE + + + + + + + + + + + + + + FAKE_PLAYER + + + + + + + + + + + + + HUMAN + MALE + + + + + + + + + + + + + + FAKE_PLAYER + + + + + + + + + + + + + HUMAN + MALE + + + + + + + + + + + + + + FAKE_PLAYER + + + + + + + + + + + + + HUMAN + MALE + + + + + + + + + + + + + + FAKE_PLAYER + + + + + + + + + + + + + HUMAN + MALE + + + + + + + + + + + + + + FAKE_PLAYER + + + + + + + + + + + + + HUMAN + MALE + + + + + + + + + + + + + + FAKE_PLAYER + + + + + + + + + + + + + HUMAN + MALE + + + + + + + + + + + + + + FAKE_PLAYER + + + + + + + + + + + + + HUMAN + MALE + + + + + + + + + + + + + + FAKE_PLAYER + + + + + + + + + + + + + HUMAN + MALE + + + + + + + + + + + + + + FAKE_PLAYER + + + + + + + + + + + + + HUMAN + MALE + + + + + + + + + + + + + + FAKE_PLAYER + + + + + + + + + + + + + HUMAN + MALE + + + + + + + + + + + + + + FAKE_PLAYER + + + + + + + + + + + + + HUMAN + MALE + + + + + + + + + + + + + + FAKE_PLAYER + + + + + + + + + + + + + HUMAN + MALE + + + + + + + + + + + + + + FAKE_PLAYER + + + + + + + + + + + + + HUMAN + MALE + + + + + + + + + + + + + + FAKE_PLAYER + + + + + + + + + + + + + HUMAN + MALE + + + + + + + + + + + + + + FAKE_PLAYER + + + + + + + + + + + + + HUMAN + MALE + + + + + + + + + + + + + + FAKE_PLAYER + + + + + + + + + + + + + HUMAN + MALE + + + + + + + + + + + + + + FAKE_PLAYER + + + + + + + + + + + + + HUMAN + MALE + + + + + + + + + + + + + + FAKE_PLAYER + + + + + + + + + + + + + HUMAN + MALE + + + + + + + + + + + + + + FAKE_PLAYER + + + + + + + + + + + + + HUMAN + MALE + + + + + + + + + + + + + + FAKE_PLAYER + + + + + + + + + + + + + HUMAN + MALE + + + + + + + + + + + + + + FAKE_PLAYER + + + + + + + + + + + + + HUMAN + MALE + + + + + + + + + + + + + + FAKE_PLAYER + + + + + + + + + + + + + HUMAN + MALE + + + + + + + + + + + + + + FAKE_PLAYER + + + + + + + + + + + + + HUMAN + MALE + + + + + + + + + + + + + + FAKE_PLAYER + + + + + + + + + + + + + HUMAN + MALE + + + + + + + + + + + + + + FAKE_PLAYER + + + + + + + + + + + + + HUMAN + MALE + + + + + + + + + + + + + + FAKE_PLAYER + + + + + + + + + + + + + HUMAN + MALE + + + + + + + + + + + + + + FAKE_PLAYER + + + + + + + + + + + + + HUMAN + MALE + + + + + + + + + + + + + + FAKE_PLAYER + + + + + + + + + + + + + HUMAN + MALE + + + + + + + + + + + + + + FAKE_PLAYER + + + + + + + + + + + + + HUMAN + MALE + + + + + + + + + + + + + + FAKE_PLAYER + + + + + + + + + + + + + HUMAN + FEMALE + + + + + + + + + + + + + + FAKE_PLAYER + + + + + + + + + + + + + HUMAN + FEMALE + + + + + + + + + + + + + + FAKE_PLAYER + + + + + + + + + + + + + HUMAN + FEMALE + + + + + + + + + + + + + + FAKE_PLAYER + + + + + + + + + + + + + HUMAN + FEMALE + + + + + + + + + + + + + + FAKE_PLAYER + + + + + + + + + + + + + HUMAN + FEMALE + + + + + + + + + + + + + + FAKE_PLAYER + + + + + + + + + + + + + HUMAN + FEMALE + + + + + + + + + + + + + + FAKE_PLAYER + + + + + + + + + + + + + HUMAN + FEMALE + + + + + + + + + + + + + + FAKE_PLAYER + + + + + + + + + + + + + HUMAN + FEMALE + + + + + + + + + + + + + + FAKE_PLAYER + + + + + + + + + + + + + HUMAN + FEMALE + + + + + + + + + + + + + + FAKE_PLAYER + + + + + + + + + + + + + HUMAN + FEMALE + + + + + + + + + + + + + + FAKE_PLAYER + + + + + + + + + + + + + HUMAN + FEMALE + + + + + + + + + + + + + + FAKE_PLAYER + + + + + + + + + + + + + HUMAN + FEMALE + + + + + + + + + + + + + + FAKE_PLAYER + + + + + + + + + + + + + HUMAN + FEMALE + + + + + + + + + + + + + + FAKE_PLAYER + + + + + + + + + + + + + HUMAN + FEMALE + + + + + + + + + + + + + + FAKE_PLAYER + + + + + + + + + + + + + HUMAN + FEMALE + + + + + + + + + + + + + + FAKE_PLAYER + + + + + + + + + + + + + HUMAN + FEMALE + + + + + + + + + + + + + + FAKE_PLAYER + + + + + + + + + + + + + HUMAN + MALE + + + + + + + + + + + + + + FAKE_PLAYER + + + + + + + + + + + + + HUMAN + MALE + + + + + + + + + + + + + + FAKE_PLAYER + + + + + + + + + + + + + HUMAN + MALE + + + + + + + + + + + + + + FAKE_PLAYER + + + + + + + + + + + + + HUMAN + MALE + + + + + + + + + + + + + + FAKE_PLAYER + + + + + + + + + + + + + HUMAN + MALE + + + + + + + + + + + + + + FAKE_PLAYER + + + + + + + + + + + + + HUMAN + MALE + + + + + + + + + + + + + + FAKE_PLAYER + + + + + + + + + + + + + HUMAN + MALE + + + + + + + + + + + + + + FAKE_PLAYER + + + + + + + + + + + + + HUMAN + MALE + + + + + + + + + + + + + + FAKE_PLAYER + + + + + + + + + + + + + HUMAN + MALE + + + + + + + + + + + + + + FAKE_PLAYER + + + + + + + + + + + + + HUMAN + MALE + + + + + + + + + + + + + + FAKE_PLAYER + + + + + + + + + + + + + HUMAN + MALE + + + + + + + + + + + + + + FAKE_PLAYER + + + + + + + + + + + + + HUMAN + MALE + + + + + + + + + + + + + + FAKE_PLAYER + + + + + + + + + + + + + HUMAN + MALE + + + + + + + + + + + + + + FAKE_PLAYER + + + + + + + + + + + + + HUMAN + MALE + + + + + + + + + + + + + + FAKE_PLAYER + + + + + + + + + + + + + HUMAN + MALE + + + + + + + + + + + + + + FAKE_PLAYER + + + + + + + + + + + + + HUMAN + MALE + + + + + + + + + + + + + + FAKE_PLAYER + + + + + + + + + + + + + HUMAN + MALE + + + + + + + + + + + + + + FAKE_PLAYER + + + + + + + + + + + + + HUMAN + MALE + + + + + + + + + + + + + + FAKE_PLAYER + + + + + + + + + + + + + HUMAN + MALE + + + + + + + + + + + + + + FAKE_PLAYER + + + + + + + + + + + + + HUMAN + MALE + + + + + + + + + + + + + + FAKE_PLAYER + + + + + + + + + + + + + HUMAN + MALE + + + + + + + + + + + + + + FAKE_PLAYER + + + + + + + + + + + + + HUMAN + MALE + + + + + + + + + + + + + + FAKE_PLAYER + + + + + + + + + + + + + HUMAN + MALE + + + + + + + + + + + + + + FAKE_PLAYER + + + + + + + + + + + + + HUMAN + MALE + + + + + + + + + + + + + + FAKE_PLAYER + + + + + + + + + + + + + HUMAN + MALE + + + + + + + + + + + + + + FAKE_PLAYER + + + + + + + + + + + + + HUMAN + MALE + + + + + + + + + + + + + + FAKE_PLAYER + + + + + + + + + + + + + HUMAN + MALE + + + + + + + + + + + + + + FAKE_PLAYER + + + + + + + + + + + + + HUMAN + MALE + + + + + + + + + + + + + + FAKE_PLAYER + + + + + + + + + + + + + HUMAN + MALE + + + + + + + + + + + + + + FAKE_PLAYER + + + + + + + + + + + + + HUMAN + MALE + + + + + + + + + + + + + + FAKE_PLAYER + + + + + + + + + + + + + HUMAN + MALE + + + + + + + + + + + + + + FAKE_PLAYER + + + + + + + + + + + + + HUMAN + MALE + + + + + + + + + + + + + + FAKE_PLAYER + + + + + + + + + + + + + HUMAN + MALE + + + + + + + + + + + + + + FAKE_PLAYER + + + + + + + + + + + + + HUMAN + MALE + + + + + + + + + + + + + + FAKE_PLAYER + + + + + + + + + + + + + HUMAN + MALE + + + + + + + + + + + + + + FAKE_PLAYER + + + + + + + + + + + + + HUMAN + MALE + + + + + + + + + + + + + + FAKE_PLAYER + + + + + + + + + + + + + HUMAN + MALE + + + + + + + + + + + + + + FAKE_PLAYER + + + + + + + + + + + + + HUMAN + MALE + + + + + + + + + + + + + + FAKE_PLAYER + + + + + + + + + + + + + HUMAN + MALE + + + + + + + + + + + + + + FAKE_PLAYER + + + + + + + + + + + + + HUMAN + MALE + + + + + + + + + + + + + + FAKE_PLAYER + + + + + + + + + + + + + HUMAN + MALE + + + + + + + + + + + + + + FAKE_PLAYER + + + + + + + + + + + + + HUMAN + MALE + + + + + + + + + + + + + + FAKE_PLAYER + + + + + + + + + + + + + HUMAN + MALE + + + + + + + + + + + + + + FAKE_PLAYER + + + + + + + + + + + + + HUMAN + MALE + + + + + + + + + + + + + + FAKE_PLAYER + + + + + + + + + + + + + HUMAN + MALE + + + + + + + + + + + + + + FAKE_PLAYER + + + + + + + + + + + + + HUMAN + MALE + + + + + + + + + + + + + + FAKE_PLAYER + + + + + + + + + + + + + HUMAN + MALE + + + + + + + + + + + + + + FAKE_PLAYER + + + + + + + + + + + + + HUMAN + MALE + + + + + + + + + + + + + + FAKE_PLAYER + + + + + + + + + + + + + HUMAN + FEMALE + + + + + + + + + + + + + + FAKE_PLAYER + + + + + + + + + + + + + HUMAN + FEMALE + + + + + + + + + + + + + + FAKE_PLAYER + + + + + + + + + + + + + HUMAN + FEMALE + + + + + + + + + + + + + + FAKE_PLAYER + + + + + + + + + + + + + HUMAN + FEMALE + + + + + + + + + + + + + + FAKE_PLAYER + + + + + + + + + + + + + HUMAN + FEMALE + + + + + + + + + + + + + + FAKE_PLAYER + + + + + + + + + + + + + HUMAN + FEMALE + + + + + + + + + + + + + + FAKE_PLAYER + + + + + + + + + + + + + HUMAN + FEMALE + + + + + + + + + + + + + + FAKE_PLAYER + + + + + + + + + + + + + HUMAN + FEMALE + + + + + + + + + + + + + + FAKE_PLAYER + + + + + + + + + + + + + HUMAN + FEMALE + + + + + + + + + + + + + + FAKE_PLAYER + + + + + + + + + + + + + HUMAN + FEMALE + + + + + + + + + + + + + + FAKE_PLAYER + + + + + + + + + + + + + HUMAN + FEMALE + + + + + + + + + + + + + + FAKE_PLAYER + + + + + + + + + + + + + HUMAN + FEMALE + + + + + + + + + + + + + + FAKE_PLAYER + + + + + + + + + + + + + HUMAN + FEMALE + + + + + + + + + + + + + + FAKE_PLAYER + + + + + + + + + + + + + HUMAN + FEMALE + + + + + + + + + + + + + + FAKE_PLAYER + + + + + + + + + + + + + HUMAN + FEMALE + + + + + + + + + + + + + + FAKE_PLAYER + + + + + + + + + + + + + HUMAN + FEMALE + + + + + + + + + + + + + + FAKE_PLAYER + + + + + + + + + + + + + HUMAN + MALE + + + + + + + + + + + + + + FAKE_PLAYER + + + + + + + + + + + + + HUMAN + MALE + + + + + + + + + + + + + + FAKE_PLAYER + + + + + + + + + + + + + HUMAN + MALE + + + + + + + + + + + + + + FAKE_PLAYER + + + + + + + + + + + + + HUMAN + MALE + + + + + + + + + + + + + + FAKE_PLAYER + + + + + + + + + + + + + HUMAN + MALE + + + + + + + + + + + + + + FAKE_PLAYER + + + + + + + + + + + + + HUMAN + MALE + + + + + + + + + + + + + + FAKE_PLAYER + + + + + + + + + + + + + HUMAN + MALE + + + + + + + + + + + + + + FAKE_PLAYER + + + + + + + + + + + + + HUMAN + MALE + + + + + + + + + + + + + + FAKE_PLAYER + + + + + + + + + + + + + HUMAN + MALE + + + + + + + + + + + + + + FAKE_PLAYER + + + + + + + + + + + + + HUMAN + MALE + + + + + + + + + + + + + + FAKE_PLAYER + + + + + + + + + + + + + HUMAN + MALE + + + + + + + + + + + + + + FAKE_PLAYER + + + + + + + + + + + + + HUMAN + MALE + + + + + + + + + + + + + + FAKE_PLAYER + + + + + + + + + + + + + HUMAN + MALE + + + + + + + + + + + + + + FAKE_PLAYER + + + + + + + + + + + + + HUMAN + MALE + + + + + + + + + + + + + + FAKE_PLAYER + + + + + + + + + + + + + HUMAN + MALE + + + + + + + + + + + + + + FAKE_PLAYER + + + + + + + + + + + + + HUMAN + MALE + + + + + + + + + + + + + + FAKE_PLAYER + + + + + + + + + + + + + ORC + MALE + + + + + + + + + + + + + + FAKE_PLAYER + + + + + + + + + + + + + ORC + MALE + + + + + + + + + + + + + + FAKE_PLAYER + + + + + + + + + + + + + ORC + MALE + + + + + + + + + + + + + + FAKE_PLAYER + + + + + + + + + + + + + ORC + MALE + + + + + + + + + + + + + + FAKE_PLAYER + + + + + + + + + + + + + ORC + MALE + + + + + + + + + + + + + + FAKE_PLAYER + + + + + + + + + + + + + ORC + MALE + + + + + + + + + + + + + + FAKE_PLAYER + + + + + + + + + + + + + ORC + MALE + + + + + + + + + + + + + + FAKE_PLAYER + + + + + + + + + + + + + ORC + MALE + + + + + + + + + + + + + + FAKE_PLAYER + + + + + + + + + + + + + ORC + MALE + + + + + + + + + + + + + + FAKE_PLAYER + + + + + + + + + + + + + ORC + MALE + + + + + + + + + + + + + + FAKE_PLAYER + + + + + + + + + + + + + ORC + MALE + + + + + + + + + + + + + + FAKE_PLAYER + + + + + + + + + + + + + ORC + MALE + + + + + + + + + + + + + + FAKE_PLAYER + + + + + + + + + + + + + ORC + MALE + + + + + + + + + + + + + + FAKE_PLAYER + + + + + + + + + + + + + ORC + MALE + + + + + + + + + + + + + + FAKE_PLAYER + + + + + + + + + + + + + ORC + MALE + + + + + + + + + + + + + + FAKE_PLAYER + + + + + + + + + + + + + ORC + MALE + + + + + + + + + + + + + + FAKE_PLAYER + + + + + + + + + + + + + ORC + MALE + + + + + + + + + + + + + + FAKE_PLAYER + + + + + + + + + + + + + ORC + MALE + + + + + + + + + + + + + + FAKE_PLAYER + + + + + + + + + + + + + ORC + MALE + + + + + + + + + + + + + + FAKE_PLAYER + + + + + + + + + + + + + ORC + MALE + + + + + + + + + + + + + + FAKE_PLAYER + + + + + + + + + + + + + ORC + MALE + + + + + + + + + + + + + + FAKE_PLAYER + + + + + + + + + + + + + ORC + MALE + + + + + + + + + + + + + + FAKE_PLAYER + + + + + + + + + + + + + ORC + MALE + + + + + + + + + + + + + + FAKE_PLAYER + + + + + + + + + + + + + ORC + MALE + + + + + + + + + + + + + + FAKE_PLAYER + + + + + + + + + + + + + ORC + MALE + + + + + + + + + + + + + + FAKE_PLAYER + + + + + + + + + + + + + ORC + MALE + + + + + + + + + + + + + + FAKE_PLAYER + + + + + + + + + + + + + ORC + MALE + + + + + + + + + + + + + + FAKE_PLAYER + + + + + + + + + + + + + ORC + MALE + + + + + + + + + + + + + + FAKE_PLAYER + + + + + + + + + + + + + ORC + MALE + + + + + + + + + + + + + + FAKE_PLAYER + + + + + + + + + + + + + ORC + MALE + + + + + + + + + + + + + + FAKE_PLAYER + + + + + + + + + + + + + ORC + MALE + + + + + + + + + + + + + + FAKE_PLAYER + + + + + + + + + + + + + ORC + MALE + + + + + + + + + + + + + + FAKE_PLAYER + + + + + + + + + + + + + ORC + FEMALE + + + + + + + + + + + + + + FAKE_PLAYER + + + + + + + + + + + + + ORC + FEMALE + + + + + + + + + + + + + + FAKE_PLAYER + + + + + + + + + + + + + ORC + FEMALE + + + + + + + + + + + + + + FAKE_PLAYER + + + + + + + + + + + + + ORC + FEMALE + + + + + + + + + + + + + + FAKE_PLAYER + + + + + + + + + + + + + ORC + FEMALE + + + + + + + + + + + + + + FAKE_PLAYER + + + + + + + + + + + + + ORC + FEMALE + + + + + + + + + + + + + + FAKE_PLAYER + + + + + + + + + + + + + ORC + FEMALE + + + + + + + + + + + + + + FAKE_PLAYER + + + + + + + + + + + + + ORC + FEMALE + + + + + + + + + + + + + + FAKE_PLAYER + + + + + + + + + + + + + ORC + FEMALE + + + + + + + + + + + + + + FAKE_PLAYER + + + + + + + + + + + + + ORC + FEMALE + + + + + + + + + + + + + + FAKE_PLAYER + + + + + + + + + + + + + ORC + FEMALE + + + + + + + + + + + + + + FAKE_PLAYER + + + + + + + + + + + + + ORC + FEMALE + + + + + + + + + + + + + + FAKE_PLAYER + + + + + + + + + + + + + ORC + FEMALE + + + + + + + + + + + + + + FAKE_PLAYER + + + + + + + + + + + + + ORC + FEMALE + + + + + + + + + + + + + + FAKE_PLAYER + + + + + + + + + + + + + ORC + FEMALE + + + + + + + + + + + + + + FAKE_PLAYER + + + + + + + + + + + + + ORC + FEMALE + + + + + + + + + + + + + + FAKE_PLAYER + + + + + + + + + + + + + ORC + MALE + + + + + + + + + + + + + + FAKE_PLAYER + + + + + + + + + + + + + ORC + MALE + + + + + + + + + + + + + + FAKE_PLAYER + + + + + + + + + + + + + ORC + MALE + + + + + + + + + + + + + + FAKE_PLAYER + + + + + + + + + + + + + ORC + MALE + + + + + + + + + + + + + + FAKE_PLAYER + + + + + + + + + + + + + ORC + MALE + + + + + + + + + + + + + + FAKE_PLAYER + + + + + + + + + + + + + ORC + MALE + + + + + + + + + + + + + + FAKE_PLAYER + + + + + + + + + + + + + ORC + MALE + + + + + + + + + + + + + + FAKE_PLAYER + + + + + + + + + + + + + ORC + MALE + + + + + + + + + + + + + + FAKE_PLAYER + + + + + + + + + + + + + ORC + MALE + + + + + + + + + + + + + + FAKE_PLAYER + + + + + + + + + + + + + ORC + MALE + + + + + + + + + + + + + + FAKE_PLAYER + + + + + + + + + + + + + ORC + MALE + + + + + + + + + + + + + + FAKE_PLAYER + + + + + + + + + + + + + ORC + MALE + + + + + + + + + + + + + + FAKE_PLAYER + + + + + + + + + + + + + ORC + MALE + + + + + + + + + + + + + + FAKE_PLAYER + + + + + + + + + + + + + ORC + MALE + + + + + + + + + + + + + + FAKE_PLAYER + + + + + + + + + + + + + ORC + MALE + + + + + + + + + + + + + + FAKE_PLAYER + + + + + + + + + + + + + ORC + MALE + + + + + + + + + + + + + + FAKE_PLAYER + + + + + + + + + + + + + ORC + MALE + + + + + + + + + + + + + + FAKE_PLAYER + + + + + + + + + + + + + ORC + MALE + + + + + + + + + + + + + + FAKE_PLAYER + + + + + + + + + + + + + ORC + MALE + + + + + + + + + + + + + + FAKE_PLAYER + + + + + + + + + + + + + ORC + MALE + + + + + + + + + + + + + + FAKE_PLAYER + + + + + + + + + + + + + ORC + MALE + + + + + + + + + + + + + + FAKE_PLAYER + + + + + + + + + + + + + ORC + MALE + + + + + + + + + + + + + + FAKE_PLAYER + + + + + + + + + + + + + ORC + MALE + + + + + + + + + + + + + + FAKE_PLAYER + + + + + + + + + + + + + ORC + MALE + + + + + + + + + + + + + + FAKE_PLAYER + + + + + + + + + + + + + ORC + MALE + + + + + + + + + + + + + + FAKE_PLAYER + + + + + + + + + + + + + ORC + MALE + + + + + + + + + + + + + + FAKE_PLAYER + + + + + + + + + + + + + ORC + MALE + + + + + + + + + + + + + + FAKE_PLAYER + + + + + + + + + + + + + ORC + MALE + + + + + + + + + + + + + + FAKE_PLAYER + + + + + + + + + + + + + ORC + MALE + + + + + + + + + + + + + + FAKE_PLAYER + + + + + + + + + + + + + ORC + MALE + + + + + + + + + + + + + + FAKE_PLAYER + + + + + + + + + + + + + ORC + MALE + + + + + + + + + + + + + + FAKE_PLAYER + + + + + + + + + + + + + ORC + MALE + + + + + + + + + + + + + + FAKE_PLAYER + + + + + + + + + + + + + HUMAN + MALE + + + + + + + + + + + + + + FAKE_PLAYER + + + + + + + + + + + + + HUMAN + MALE + + + + + + + + + + + + + + FAKE_PLAYER + + + + + + + + + + + + + HUMAN + MALE + + + + + + + + + + + + + + FAKE_PLAYER + + + + + + + + + + + + + HUMAN + MALE + + + + + + + + + + + + + + FAKE_PLAYER + + + + + + + + + + + + + HUMAN + MALE + + + + + + + + + + + + + + FAKE_PLAYER + + + + + + + + + + + + + HUMAN + MALE + + + + + + + + + + + + + + FAKE_PLAYER + + + + + + + + + + + + + HUMAN + MALE + + + + + + + + + + + + + + FAKE_PLAYER + + + + + + + + + + + + + HUMAN + MALE + + + + + + + + + + + + + + FAKE_PLAYER + + + + + + + + + + + + + HUMAN + MALE + + + + + + + + + + + + + + FAKE_PLAYER + + + + + + + + + + + + + HUMAN + MALE + + + + + + + + + + + + + + FAKE_PLAYER + + + + + + + + + + + + + HUMAN + MALE + + + + + + + + + + + + + + FAKE_PLAYER + + + + + + + + + + + + + HUMAN + MALE + + + + + + + + + + + + + + FAKE_PLAYER + + + + + + + + + + + + + HUMAN + MALE + + + + + + + + + + + + + + FAKE_PLAYER + + + + + + + + + + + + + HUMAN + MALE + + + + + + + + + + + + + + FAKE_PLAYER + + + + + + + + + + + + + HUMAN + MALE + + + + + + + + + + + + + + FAKE_PLAYER + + + + + + + + + + + + + HUMAN + MALE + + + + + + + + + + + + + + FAKE_PLAYER + + + + + + + + + + + + + HUMAN + FEMALE + + + + + + + + + + + + + + FAKE_PLAYER + + + + + + + + + + + + + HUMAN + FEMALE + + + + + + + + + + + + + + FAKE_PLAYER + + + + + + + + + + + + + HUMAN + FEMALE + + + + + + + + + + + + + + FAKE_PLAYER + + + + + + + + + + + + + HUMAN + FEMALE + + + + + + + + + + + + + + FAKE_PLAYER + + + + + + + + + + + + + HUMAN + FEMALE + + + + + + + + + + + + + + FAKE_PLAYER + + + + + + + + + + + + + HUMAN + FEMALE + + + + + + + + + + + + + + FAKE_PLAYER + + + + + + + + + + + + + HUMAN + FEMALE + + + + + + + + + + + + + + FAKE_PLAYER + + + + + + + + + + + + + HUMAN + FEMALE + + + + + + + + + + + + + + FAKE_PLAYER + + + + + + + + + + + + + HUMAN + FEMALE + + + + + + + + + + + + + + FAKE_PLAYER + + + + + + + + + + + + + HUMAN + FEMALE + + + + + + + + + + + + + + FAKE_PLAYER + + + + + + + + + + + + + HUMAN + FEMALE + + + + + + + + + + + + + + FAKE_PLAYER + + + + + + + + + + + + + HUMAN + FEMALE + + + + + + + + + + + + + + FAKE_PLAYER + + + + + + + + + + + + + HUMAN + FEMALE + + + + + + + + + + + + + + FAKE_PLAYER + + + + + + + + + + + + + HUMAN + FEMALE + + + + + + + + + + + + + + FAKE_PLAYER + + + + + + + + + + + + + HUMAN + FEMALE + + + + + + + + + + + + + + FAKE_PLAYER + + + + + + + + + + + + + HUMAN + FEMALE + + + + + + + + + + + + + + FAKE_PLAYER + + + + + + + + + + + + + HUMAN + MALE + + + + + + + + + + + + + + FAKE_PLAYER + + + + + + + + + + + + + HUMAN + MALE + + + + + + + + + + + + + + FAKE_PLAYER + + + + + + + + + + + + + HUMAN + MALE + + + + + + + + + + + + + + FAKE_PLAYER + + + + + + + + + + + + + HUMAN + MALE + + + + + + + + + + + + + + FAKE_PLAYER + + + + + + + + + + + + + HUMAN + MALE + + + + + + + + + + + + + + FAKE_PLAYER + + + + + + + + + + + + + HUMAN + MALE + + + + + + + + + + + + + + FAKE_PLAYER + + + + + + + + + + + + + HUMAN + MALE + + + + + + + + + + + + + + FAKE_PLAYER + + + + + + + + + + + + + HUMAN + MALE + + + + + + + + + + + + + + FAKE_PLAYER + + + + + + + + + + + + + HUMAN + MALE + + + + + + + + + + + + + + FAKE_PLAYER + + + + + + + + + + + + + HUMAN + MALE + + + + + + + + + + + + + + FAKE_PLAYER + + + + + + + + + + + + + HUMAN + MALE + + + + + + + + + + + + + + FAKE_PLAYER + + + + + + + + + + + + + HUMAN + MALE + + + + + + + + + + + + + + FAKE_PLAYER + + + + + + + + + + + + + HUMAN + MALE + + + + + + + + + + + + + + FAKE_PLAYER + + + + + + + + + + + + + HUMAN + MALE + + + + + + + + + + + + + + FAKE_PLAYER + + + + + + + + + + + + + HUMAN + MALE + + + + + + + + + + + + + + FAKE_PLAYER + + + + + + + + + + + + + HUMAN + MALE + + + + + + + + + + + + + + FAKE_PLAYER + + + + + + + + + + + + + HUMAN + MALE + + + + + + + + + + + + + + FAKE_PLAYER + + + + + + + + + + + + + HUMAN + MALE + + + + + + + + + + + + + + FAKE_PLAYER + + + + + + + + + + + + + HUMAN + MALE + + + + + + + + + + + + + + FAKE_PLAYER + + + + + + + + + + + + + HUMAN + MALE + + + + + + + + + + + + + + FAKE_PLAYER + + + + + + + + + + + + + HUMAN + MALE + + + + + + + + + + + + + + FAKE_PLAYER + + + + + + + + + + + + + HUMAN + MALE + + + + + + + + + + + + + + FAKE_PLAYER + + + + + + + + + + + + + HUMAN + MALE + + + + + + + + + + + + + + FAKE_PLAYER + + + + + + + + + + + + + HUMAN + MALE + + + + + + + + + + + + + + FAKE_PLAYER + + + + + + + + + + + + + HUMAN + MALE + + + + + + + + + + + + + + FAKE_PLAYER + + + + + + + + + + + + + HUMAN + MALE + + + + + + + + + + + + + + FAKE_PLAYER + + + + + + + + + + + + + HUMAN + MALE + + + + + + + + + + + + + + FAKE_PLAYER + + + + + + + + + + + + + HUMAN + MALE + + + + + + + + + + + + + + FAKE_PLAYER + + + + + + + + + + + + + HUMAN + MALE + + + + + + + + + + + + + + FAKE_PLAYER + + + + + + + + + + + + + HUMAN + MALE + + + + + + + + + + + + + + FAKE_PLAYER + + + + + + + + + + + + + HUMAN + MALE + + + + + + + + + + + + + + FAKE_PLAYER + + + + + + + + + + + + + HUMAN + MALE + + + + + + + + + + + + + + FAKE_PLAYER + + + + + + + + + + + + + HUMAN + MALE + + + + + + + + + + + + + + FAKE_PLAYER + + + + + + + + + + + + + HUMAN + MALE + + + + + + + + + + + + + + FAKE_PLAYER + + + + + + + + + + + + + HUMAN + MALE + + + + + + + + + + + + + + FAKE_PLAYER + + + + + + + + + + + + + HUMAN + MALE + + + + + + + + + + + + + + FAKE_PLAYER + + + + + + + + + + + + + HUMAN + MALE + + + + + + + + + + + + + + FAKE_PLAYER + + + + + + + + + + + + + HUMAN + MALE + + + + + + + + + + + + + + FAKE_PLAYER + + + + + + + + + + + + + HUMAN + MALE + + + + + + + + + + + + + + FAKE_PLAYER + + + + + + + + + + + + + HUMAN + MALE + + + + + + + + + + + + + + FAKE_PLAYER + + + + + + + + + + + + + HUMAN + MALE + + + + + + + + + + + + + + FAKE_PLAYER + + + + + + + + + + + + + HUMAN + MALE + + + + + + + + + + + + + + FAKE_PLAYER + + + + + + + + + + + + + HUMAN + MALE + + + + + + + + + + + + + + FAKE_PLAYER + + + + + + + + + + + + + HUMAN + MALE + + + + + + + + + + + + + + FAKE_PLAYER + + + + + + + + + + + + + HUMAN + MALE + + + + + + + + + + + + + + FAKE_PLAYER + + + + + + + + + + + + + HUMAN + MALE + + + + + + + + + + + + + + FAKE_PLAYER + + + + + + + + + + + + + HUMAN + MALE + + + + + + + + + + + + + + FAKE_PLAYER + + + + + + + + + + + + + HUMAN + MALE + + + + + + + + + + + + + + FAKE_PLAYER + + + + + + + + + + + + + DARK_ELF + FEMALE + + + + + + + + + + + + + + FAKE_PLAYER + + + + + + + + + + + + + DARK_ELF + FEMALE + + + + + + + + + + + + + + FAKE_PLAYER + + + + + + + + + + + + + DARK_ELF + FEMALE + + + + + + + + + + + + + + FAKE_PLAYER + + + + + + + + + + + + + DARK_ELF + FEMALE + + + + + + + + + + + + + + FAKE_PLAYER + + + + + + + + + + + + + DARK_ELF + FEMALE + + + + + + + + + + + + + + FAKE_PLAYER + + + + + + + + + + + + + DARK_ELF + FEMALE + + + + + + + + + + + + + + FAKE_PLAYER + + + + + + + + + + + + + DARK_ELF + FEMALE + + + + + + + + + + + + + + FAKE_PLAYER + + + + + + + + + + + + + DARK_ELF + FEMALE + + + + + + + + + + + + + + FAKE_PLAYER + + + + + + + + + + + + + DARK_ELF + FEMALE + + + + + + + + + + + + + + FAKE_PLAYER + + + + + + + + + + + + + DARK_ELF + FEMALE + + + + + + + + + + + + + + FAKE_PLAYER + + + + + + + + + + + + + DARK_ELF + FEMALE + + + + + + + + + + + + + + FAKE_PLAYER + + + + + + + + + + + + + DARK_ELF + FEMALE + + + + + + + + + + + + + + FAKE_PLAYER + + + + + + + + + + + + + DARK_ELF + FEMALE + + + + + + + + + + + + + + FAKE_PLAYER + + + + + + + + + + + + + DARK_ELF + FEMALE + + + + + + + + + + + + + + FAKE_PLAYER + + + + + + + + + + + + + DARK_ELF + FEMALE + + + + + + + + + + + + + + FAKE_PLAYER + + + + + + + + + + + + + DARK_ELF + FEMALE + + + + + + + + + + + + + + FAKE_PLAYER + + + + + + + + + + + + + DARK_ELF + MALE + + + + + + + + + + + + + + FAKE_PLAYER + + + + + + + + + + + + + DARK_ELF + MALE + + + + + + + + + + + + + + FAKE_PLAYER + + + + + + + + + + + + + DARK_ELF + MALE + + + + + + + + + + + + + + FAKE_PLAYER + + + + + + + + + + + + + DARK_ELF + MALE + + + + + + + + + + + + + + FAKE_PLAYER + + + + + + + + + + + + + DARK_ELF + MALE + + + + + + + + + + + + + + FAKE_PLAYER + + + + + + + + + + + + + DARK_ELF + MALE + + + + + + + + + + + + + + FAKE_PLAYER + + + + + + + + + + + + + DARK_ELF + MALE + + + + + + + + + + + + + + FAKE_PLAYER + + + + + + + + + + + + + DARK_ELF + MALE + + + + + + + + + + + + + + FAKE_PLAYER + + + + + + + + + + + + + DARK_ELF + MALE + + + + + + + + + + + + + + FAKE_PLAYER + + + + + + + + + + + + + DARK_ELF + MALE + + + + + + + + + + + + + + FAKE_PLAYER + + + + + + + + + + + + + DARK_ELF + MALE + + + + + + + + + + + + + + FAKE_PLAYER + + + + + + + + + + + + + DARK_ELF + MALE + + + + + + + + + + + + + + FAKE_PLAYER + + + + + + + + + + + + + DARK_ELF + MALE + + + + + + + + + + + + + + FAKE_PLAYER + + + + + + + + + + + + + DARK_ELF + MALE + + + + + + + + + + + + + + FAKE_PLAYER + + + + + + + + + + + + + DARK_ELF + MALE + + + + + + + + + + + + + + FAKE_PLAYER + + + + + + + + + + + + + DARK_ELF + MALE + + + + + + + + + + + + + + FAKE_PLAYER + + + + + + + + + + + + + DARK_ELF + MALE + + + + + + + + + + + + + + FAKE_PLAYER + + + + + + + + + + + + + DARK_ELF + MALE + + + + + + + + + + + + + + FAKE_PLAYER + + + + + + + + + + + + + DARK_ELF + MALE + + + + + + + + + + + + + + FAKE_PLAYER + + + + + + + + + + + + + DARK_ELF + MALE + + + + + + + + + + + + + + FAKE_PLAYER + + + + + + + + + + + + + DARK_ELF + MALE + + + + + + + + + + + + + + FAKE_PLAYER + + + + + + + + + + + + + DARK_ELF + MALE + + + + + + + + + + + + + + FAKE_PLAYER + + + + + + + + + + + + + DARK_ELF + MALE + + + + + + + + + + + + + + FAKE_PLAYER + + + + + + + + + + + + + DARK_ELF + MALE + + + + + + + + + + + + + + FAKE_PLAYER + + + + + + + + + + + + + DARK_ELF + MALE + + + + + + + + + + + + + + FAKE_PLAYER + + + + + + + + + + + + + DARK_ELF + MALE + + + + + + + + + + + + + + FAKE_PLAYER + + + + + + + + + + + + + DARK_ELF + MALE + + + + + + + + + + + + + + FAKE_PLAYER + + + + + + + + + + + + + DARK_ELF + MALE + + + + + + + + + + + + + + FAKE_PLAYER + + + + + + + + + + + + + DARK_ELF + MALE + + + + + + + + + + + + + + FAKE_PLAYER + + + + + + + + + + + + + DARK_ELF + MALE + + + + + + + + + + + + + + FAKE_PLAYER + + + + + + + + + + + + + DARK_ELF + MALE + + + + + + + + + + + + + + FAKE_PLAYER + + + + + + + + + + + + + DARK_ELF + MALE + + + + + + + + + + + + + + FAKE_PLAYER + + + + + + + + + + + + + DARK_ELF + MALE + + + + + + + + + + + + + + FAKE_PLAYER + + + + + + + + + + + + + DARK_ELF + MALE + + + + + + + + + + + + + + FAKE_PLAYER + + + + + + + + + + + + + DARK_ELF + MALE + + + + + + + + + + + + + + FAKE_PLAYER + + + + + + + + + + + + + DARK_ELF + MALE + + + + + + + + + + + + + + FAKE_PLAYER + + + + + + + + + + + + + DARK_ELF + MALE + + + + + + + + + + + + + + FAKE_PLAYER + + + + + + + + + + + + + DARK_ELF + MALE + + + + + + + + + + + + + + FAKE_PLAYER + + + + + + + + + + + + + DARK_ELF + MALE + + + + + + + + + + + + + + FAKE_PLAYER + + + + + + + + + + + + + DARK_ELF + MALE + + + + + + + + + + + + + + FAKE_PLAYER + + + + + + + + + + + + + DARK_ELF + MALE + + + + + + + + + + + + + + FAKE_PLAYER + + + + + + + + + + + + + DARK_ELF + MALE + + + + + + + + + + + + + + FAKE_PLAYER + + + + + + + + + + + + + DARK_ELF + MALE + + + + + + + + + + + + + + FAKE_PLAYER + + + + + + + + + + + + + DARK_ELF + MALE + + + + + + + + + + + + + + FAKE_PLAYER + + + + + + + + + + + + + DARK_ELF + MALE + + + + + + + + + + + + + + FAKE_PLAYER + + + + + + + + + + + + + DARK_ELF + MALE + + + + + + + + + + + + + + FAKE_PLAYER + + + + + + + + + + + + + DARK_ELF + MALE + + + + + + + + + + + + + + FAKE_PLAYER + + + + + + + + + + + + + DARK_ELF + MALE + + + + + + + + + + + + + + FAKE_PLAYER + + + + + + + + + + + + + DARK_ELF + FEMALE + + + + + + + + + + + + + + FAKE_PLAYER + + + + + + + + + + + + + DARK_ELF + FEMALE + + + + + + + + + + + + + + FAKE_PLAYER + + + + + + + + + + + + + DARK_ELF + FEMALE + + + + + + + + + + + + + + FAKE_PLAYER + + + + + + + + + + + + + DARK_ELF + FEMALE + + + + + + + + + + + + + + FAKE_PLAYER + + + + + + + + + + + + + DARK_ELF + FEMALE + + + + + + + + + + + + + + FAKE_PLAYER + + + + + + + + + + + + + DARK_ELF + FEMALE + + + + + + + + + + + + + + FAKE_PLAYER + + + + + + + + + + + + + DARK_ELF + FEMALE + + + + + + + + + + + + + + FAKE_PLAYER + + + + + + + + + + + + + DARK_ELF + FEMALE + + + + + + + + + + + + + + FAKE_PLAYER + + + + + + + + + + + + + DARK_ELF + FEMALE + + + + + + + + + + + + + + FAKE_PLAYER + + + + + + + + + + + + + DARK_ELF + FEMALE + + + + + + + + + + + + + + FAKE_PLAYER + + + + + + + + + + + + + DARK_ELF + FEMALE + + + + + + + + + + + + + + FAKE_PLAYER + + + + + + + + + + + + + DARK_ELF + FEMALE + + + + + + + + + + + + + + FAKE_PLAYER + + + + + + + + + + + + + DARK_ELF + FEMALE + + + + + + + + + + + + + + FAKE_PLAYER + + + + + + + + + + + + + DARK_ELF + FEMALE + + + + + + + + + + + + + + FAKE_PLAYER + + + + + + + + + + + + + DARK_ELF + FEMALE + + + + + + + + + + + + + + FAKE_PLAYER + + + + + + + + + + + + + DARK_ELF + FEMALE + + + + + + + + + + + + + + FAKE_PLAYER + + + + + + + + + + + + + HUMAN + MALE + + + + + + + + + + + + + + FAKE_PLAYER + + + + + + + + + + + + + HUMAN + MALE + + + + + + + + + + + + + + FAKE_PLAYER + + + + + + + + + + + + + HUMAN + MALE + + + + + + + + + + + + + + FAKE_PLAYER + + + + + + + + + + + + + HUMAN + MALE + + + + + + + + + + + + + + FAKE_PLAYER + + + + + + + + + + + + + HUMAN + MALE + + + + + + + + + + + + + + FAKE_PLAYER + + + + + + + + + + + + + HUMAN + MALE + + + + + + + + + + + + + + FAKE_PLAYER + + + + + + + + + + + + + HUMAN + MALE + + + + + + + + + + + + + + FAKE_PLAYER + + + + + + + + + + + + + HUMAN + MALE + + + + + + + + + + + + + + FAKE_PLAYER + + + + + + + + + + + + + HUMAN + MALE + + + + + + + + + + + + + + FAKE_PLAYER + + + + + + + + + + + + + HUMAN + MALE + + + + + + + + + + + + + + FAKE_PLAYER + + + + + + + + + + + + + HUMAN + MALE + + + + + + + + + + + + + + FAKE_PLAYER + + + + + + + + + + + + + HUMAN + MALE + + + + + + + + + + + + + + FAKE_PLAYER + + + + + + + + + + + + + HUMAN + MALE + + + + + + + + + + + + + + FAKE_PLAYER + + + + + + + + + + + + + HUMAN + MALE + + + + + + + + + + + + + + FAKE_PLAYER + + + + + + + + + + + + + HUMAN + MALE + + + + + + + + + + + + + + FAKE_PLAYER + + + + + + + + + + + + + HUMAN + MALE + + + + + + + + + + + + + + FAKE_PLAYER + + + + + + + + + + + + + HUMAN + MALE + + + + + + + + + + + + + + FAKE_PLAYER + + + + + + + + + + + + + HUMAN + MALE + + + + + + + + + + + + + + FAKE_PLAYER + + + + + + + + + + + + + HUMAN + MALE + + + + + + + + + + + + + + FAKE_PLAYER + + + + + + + + + + + + + HUMAN + MALE + + + + + + + + + + + + + + FAKE_PLAYER + + + + + + + + + + + + + HUMAN + MALE + + + + + + + + + + + + + + FAKE_PLAYER + + + + + + + + + + + + + HUMAN + MALE + + + + + + + + + + + + + + FAKE_PLAYER + + + + + + + + + + + + + HUMAN + MALE + + + + + + + + + + + + + + FAKE_PLAYER + + + + + + + + + + + + + HUMAN + MALE + + + + + + + + + + + + + + FAKE_PLAYER + + + + + + + + + + + + + HUMAN + MALE + + + + + + + + + + + + + + FAKE_PLAYER + + + + + + + + + + + + + HUMAN + MALE + + + + + + + + + + + + + + FAKE_PLAYER + + + + + + + + + + + + + HUMAN + MALE + + + + + + + + + + + + + + FAKE_PLAYER + + + + + + + + + + + + + HUMAN + MALE + + + + + + + + + + + + + + FAKE_PLAYER + + + + + + + + + + + + + HUMAN + MALE + + + + + + + + + + + + + + FAKE_PLAYER + + + + + + + + + + + + + HUMAN + MALE + + + + + + + + + + + + + + FAKE_PLAYER + + + + + + + + + + + + + HUMAN + MALE + + + + + + + + + + + + + + FAKE_PLAYER + + + + + + + + + + + + + HUMAN + MALE + + + + + + + + + + + + + + FAKE_PLAYER + + + + + + + + + + + + + HUMAN + MALE + + + + + + + + + + + + + + FAKE_PLAYER + + + + + + + + + + + + + HUMAN + MALE + + + + + + + + + + + + + + FAKE_PLAYER + + + + + + + + + + + + + HUMAN + MALE + + + + + + + + + + + + + + FAKE_PLAYER + + + + + + + + + + + + + HUMAN + MALE + + + + + + + + + + + + + + FAKE_PLAYER + + + + + + + + + + + + + HUMAN + MALE + + + + + + + + + + + + + + FAKE_PLAYER + + + + + + + + + + + + + HUMAN + MALE + + + + + + + + + + + + + + FAKE_PLAYER + + + + + + + + + + + + + HUMAN + MALE + + + + + + + + + + + + + + FAKE_PLAYER + + + + + + + + + + + + + HUMAN + MALE + + + + + + + + + + + + + + FAKE_PLAYER + + + + + + + + + + + + + HUMAN + MALE + + + + + + + + + + + + + + FAKE_PLAYER + + + + + + + + + + + + + HUMAN + MALE + + + + + + + + + + + + + + FAKE_PLAYER + + + + + + + + + + + + + HUMAN + MALE + + + + + + + + + + + + + + FAKE_PLAYER + + + + + + + + + + + + + HUMAN + MALE + + + + + + + + + + + + + + FAKE_PLAYER + + + + + + + + + + + + + HUMAN + MALE + + + + + + + + + + + + + + FAKE_PLAYER + + + + + + + + + + + + + HUMAN + MALE + + + + + + + + + + + + + + FAKE_PLAYER + + + + + + + + + + + + + HUMAN + MALE + + + + + + + + + + + + + + FAKE_PLAYER + + + + + + + + + + + + + HUMAN + MALE + + + + + + + + + + + + + + FAKE_PLAYER + + + + + + + + + + + + + HUMAN + FEMALE + + + + + + + + + + + + + + FAKE_PLAYER + + + + + + + + + + + + + HUMAN + FEMALE + + + + + + + + + + + + + + FAKE_PLAYER + + + + + + + + + + + + + HUMAN + FEMALE + + + + + + + + + + + + + + FAKE_PLAYER + + + + + + + + + + + + + HUMAN + FEMALE + + + + + + + + + + + + + + FAKE_PLAYER + + + + + + + + + + + + + HUMAN + FEMALE + + + + + + + + + + + + + + FAKE_PLAYER + + + + + + + + + + + + + HUMAN + FEMALE + + + + + + + + + + + + + + FAKE_PLAYER + + + + + + + + + + + + + HUMAN + FEMALE + + + + + + + + + + + + + + FAKE_PLAYER + + + + + + + + + + + + + HUMAN + FEMALE + + + + + + + + + + + + + + FAKE_PLAYER + + + + + + + + + + + + + HUMAN + FEMALE + + + + + + + + + + + + + + FAKE_PLAYER + + + + + + + + + + + + + HUMAN + FEMALE + + + + + + + + + + + + + + FAKE_PLAYER + + + + + + + + + + + + + HUMAN + FEMALE + + + + + + + + + + + + + + FAKE_PLAYER + + + + + + + + + + + + + HUMAN + FEMALE + + + + + + + + + + + + + + FAKE_PLAYER + + + + + + + + + + + + + HUMAN + FEMALE + + + + + + + + + + + + + + FAKE_PLAYER + + + + + + + + + + + + + HUMAN + FEMALE + + + + + + + + + + + + + + FAKE_PLAYER + + + + + + + + + + + + + HUMAN + FEMALE + + + + + + + + + + + + + + FAKE_PLAYER + + + + + + + + + + + + + HUMAN + FEMALE + + + + + + + + + + + + + + FAKE_PLAYER + + + + + + + + + + + + + HUMAN + MALE + + + + + + + + + + + + + + FAKE_PLAYER + + + + + + + + + + + + + HUMAN + MALE + + + + + + + + + + + + + + FAKE_PLAYER + + + + + + + + + + + + + HUMAN + MALE + + + + + + + + + + + + + + FAKE_PLAYER + + + + + + + + + + + + + HUMAN + MALE + + + + + + + + + + + + + + FAKE_PLAYER + + + + + + + + + + + + + HUMAN + MALE + + + + + + + + + + + + + + FAKE_PLAYER + + + + + + + + + + + + + HUMAN + MALE + + + + + + + + + + + + + + FAKE_PLAYER + + + + + + + + + + + + + HUMAN + MALE + + + + + + + + + + + + + + FAKE_PLAYER + + + + + + + + + + + + + HUMAN + MALE + + + + + + + + + + + + + + FAKE_PLAYER + + + + + + + + + + + + + HUMAN + MALE + + + + + + + + + + + + + + FAKE_PLAYER + + + + + + + + + + + + + HUMAN + MALE + + + + + + + + + + + + + + FAKE_PLAYER + + + + + + + + + + + + + HUMAN + MALE + + + + + + + + + + + + + + FAKE_PLAYER + + + + + + + + + + + + + HUMAN + MALE + + + + + + + + + + + + + + FAKE_PLAYER + + + + + + + + + + + + + HUMAN + MALE + + + + + + + + + + + + + + FAKE_PLAYER + + + + + + + + + + + + + HUMAN + MALE + + + + + + + + + + + + + + FAKE_PLAYER + + + + + + + + + + + + + HUMAN + MALE + + + + + + + + + + + + + + FAKE_PLAYER + + + + + + + + + + + + + HUMAN + MALE + + + + + + + + + + + + + + FAKE_PLAYER + + + + + + + + + + + + + ELF + MALE + + + + + + + + + + + + + + FAKE_PLAYER + + + + + + + + + + + + + ELF + MALE + + + + + + + + + + + + + + FAKE_PLAYER + + + + + + + + + + + + + ELF + MALE + + + + + + + + + + + + + + FAKE_PLAYER + + + + + + + + + + + + + ELF + MALE + + + + + + + + + + + + + + FAKE_PLAYER + + + + + + + + + + + + + ELF + MALE + + + + + + + + + + + + + + FAKE_PLAYER + + + + + + + + + + + + + ELF + MALE + + + + + + + + + + + + + + FAKE_PLAYER + + + + + + + + + + + + + ELF + MALE + + + + + + + + + + + + + + FAKE_PLAYER + + + + + + + + + + + + + ELF + MALE + + + + + + + + + + + + + + FAKE_PLAYER + + + + + + + + + + + + + ELF + MALE + + + + + + + + + + + + + + FAKE_PLAYER + + + + + + + + + + + + + ELF + MALE + + + + + + + + + + + + + + FAKE_PLAYER + + + + + + + + + + + + + ELF + MALE + + + + + + + + + + + + + + FAKE_PLAYER + + + + + + + + + + + + + ELF + MALE + + + + + + + + + + + + + + FAKE_PLAYER + + + + + + + + + + + + + ELF + MALE + + + + + + + + + + + + + + FAKE_PLAYER + + + + + + + + + + + + + ELF + MALE + + + + + + + + + + + + + + FAKE_PLAYER + + + + + + + + + + + + + ELF + MALE + + + + + + + + + + + + + + FAKE_PLAYER + + + + + + + + + + + + + ELF + MALE + + + + + + + + + + + + + + FAKE_PLAYER + + + + + + + + + + + + + ELF + MALE + + + + + + + + + + + + + + FAKE_PLAYER + + + + + + + + + + + + + ELF + MALE + + + + + + + + + + + + + + FAKE_PLAYER + + + + + + + + + + + + + ELF + MALE + + + + + + + + + + + + + + FAKE_PLAYER + + + + + + + + + + + + + ELF + MALE + + + + + + + + + + + + + + FAKE_PLAYER + + + + + + + + + + + + + ELF + MALE + + + + + + + + + + + + + + FAKE_PLAYER + + + + + + + + + + + + + ELF + MALE + + + + + + + + + + + + + + FAKE_PLAYER + + + + + + + + + + + + + ELF + MALE + + + + + + + + + + + + + + FAKE_PLAYER + + + + + + + + + + + + + ELF + MALE + + + + + + + + + + + + + + FAKE_PLAYER + + + + + + + + + + + + + ELF + MALE + + + + + + + + + + + + + + FAKE_PLAYER + + + + + + + + + + + + + ELF + MALE + + + + + + + + + + + + + + FAKE_PLAYER + + + + + + + + + + + + + ELF + MALE + + + + + + + + + + + + + + FAKE_PLAYER + + + + + + + + + + + + + ELF + MALE + + + + + + + + + + + + + + FAKE_PLAYER + + + + + + + + + + + + + ELF + MALE + + + + + + + + + + + + + + FAKE_PLAYER + + + + + + + + + + + + + ELF + MALE + + + + + + + + + + + + + + FAKE_PLAYER + + + + + + + + + + + + + ELF + MALE + + + + + + + + + + + + + + FAKE_PLAYER + + + + + + + + + + + + + ELF + MALE + + + + + + + + + + + + + + FAKE_PLAYER + + + + + + + + + + + + + ELF + FEMALE + + + + + + + + + + + + + + FAKE_PLAYER + + + + + + + + + + + + + ELF + FEMALE + + + + + + + + + + + + + + FAKE_PLAYER + + + + + + + + + + + + + ELF + FEMALE + + + + + + + + + + + + + + FAKE_PLAYER + + + + + + + + + + + + + ELF + FEMALE + + + + + + + + + + + + + + FAKE_PLAYER + + + + + + + + + + + + + ELF + FEMALE + + + + + + + + + + + + + + FAKE_PLAYER + + + + + + + + + + + + + ELF + FEMALE + + + + + + + + + + + + + + FAKE_PLAYER + + + + + + + + + + + + + ELF + FEMALE + + + + + + + + + + + + + + FAKE_PLAYER + + + + + + + + + + + + + ELF + FEMALE + + + + + + + + + + + + + + FAKE_PLAYER + + + + + + + + + + + + + ELF + FEMALE + + + + + + + + + + + + + + FAKE_PLAYER + + + + + + + + + + + + + ELF + FEMALE + + + + + + + + + + + + + + FAKE_PLAYER + + + + + + + + + + + + + ELF + FEMALE + + + + + + + + + + + + + + FAKE_PLAYER + + + + + + + + + + + + + ELF + FEMALE + + + + + + + + + + + + + + FAKE_PLAYER + + + + + + + + + + + + + ELF + FEMALE + + + + + + + + + + + + + + FAKE_PLAYER + + + + + + + + + + + + + ELF + FEMALE + + + + + + + + + + + + + + FAKE_PLAYER + + + + + + + + + + + + + ELF + FEMALE + + + + + + + + + + + + + + FAKE_PLAYER + + + + + + + + + + + + + ELF + FEMALE + + + + + + + + + + + + + + FAKE_PLAYER + + + + + + + + + + + + + ELF + MALE + + + + + + + + + + + + + + FAKE_PLAYER + + + + + + + + + + + + + ELF + MALE + + + + + + + + + + + + + + FAKE_PLAYER + + + + + + + + + + + + + ELF + MALE + + + + + + + + + + + + + + FAKE_PLAYER + + + + + + + + + + + + + ELF + MALE + + + + + + + + + + + + + + FAKE_PLAYER + + + + + + + + + + + + + ELF + MALE + + + + + + + + + + + + + + FAKE_PLAYER + + + + + + + + + + + + + ELF + MALE + + + + + + + + + + + + + + FAKE_PLAYER + + + + + + + + + + + + + ELF + MALE + + + + + + + + + + + + + + FAKE_PLAYER + + + + + + + + + + + + + ELF + MALE + + + + + + + + + + + + + + FAKE_PLAYER + + + + + + + + + + + + + ELF + MALE + + + + + + + + + + + + + + FAKE_PLAYER + + + + + + + + + + + + + ELF + MALE + + + + + + + + + + + + + + FAKE_PLAYER + + + + + + + + + + + + + ELF + MALE + + + + + + + + + + + + + + FAKE_PLAYER + + + + + + + + + + + + + ELF + MALE + + + + + + + + + + + + + + FAKE_PLAYER + + + + + + + + + + + + + ELF + MALE + + + + + + + + + + + + + + FAKE_PLAYER + + + + + + + + + + + + + ELF + MALE + + + + + + + + + + + + + + FAKE_PLAYER + + + + + + + + + + + + + ELF + MALE + + + + + + + + + + + + + + FAKE_PLAYER + + + + + + + + + + + + + ELF + MALE + + + + + + + + + + + + + + FAKE_PLAYER + + + + + + + + + + + + + ELF + MALE + + + + + + + + + + + + + + FAKE_PLAYER + + + + + + + + + + + + + ELF + MALE + + + + + + + + + + + + + + FAKE_PLAYER + + + + + + + + + + + + + ELF + MALE + + + + + + + + + + + + + + FAKE_PLAYER + + + + + + + + + + + + + ELF + MALE + + + + + + + + + + + + + + FAKE_PLAYER + + + + + + + + + + + + + ELF + MALE + + + + + + + + + + + + + + FAKE_PLAYER + + + + + + + + + + + + + ELF + MALE + + + + + + + + + + + + + + FAKE_PLAYER + + + + + + + + + + + + + ELF + MALE + + + + + + + + + + + + + + FAKE_PLAYER + + + + + + + + + + + + + ELF + MALE + + + + + + + + + + + + + + FAKE_PLAYER + + + + + + + + + + + + + ELF + MALE + + + + + + + + + + + + + + FAKE_PLAYER + + + + + + + + + + + + + ELF + MALE + + + + + + + + + + + + + + FAKE_PLAYER + + + + + + + + + + + + + ELF + MALE + + + + + + + + + + + + + + FAKE_PLAYER + + + + + + + + + + + + + ELF + MALE + + + + + + + + + + + + + + FAKE_PLAYER + + + + + + + + + + + + + ELF + MALE + + + + + + + + + + + + + + FAKE_PLAYER + + + + + + + + + + + + + ELF + MALE + + + + + + + + + + + + + + FAKE_PLAYER + + + + + + + + + + + + + ELF + MALE + + + + + + + + + + + + + + FAKE_PLAYER + + + + + + + + + + + + + ELF + MALE + + + + + + + + + + + + + + FAKE_PLAYER + + + + + + + + + + + + + HUMAN + MALE + + + + + + + + + + + + + + FAKE_PLAYER + + + + + + + + + + + + + HUMAN + MALE + + + + + + + + + + + + + + FAKE_PLAYER + + + + + + + + + + + + + HUMAN + MALE + + + + + + + + + + + + + + FAKE_PLAYER + + + + + + + + + + + + + HUMAN + MALE + + + + + + + + + + + + + + FAKE_PLAYER + + + + + + + + + + + + + HUMAN + MALE + + + + + + + + + + + + + + FAKE_PLAYER + + + + + + + + + + + + + HUMAN + MALE + + + + + + + + + + + + + + FAKE_PLAYER + + + + + + + + + + + + + HUMAN + MALE + + + + + + + + + + + + + + FAKE_PLAYER + + + + + + + + + + + + + HUMAN + MALE + + + + + + + + + + + + + + FAKE_PLAYER + + + + + + + + + + + + + HUMAN + MALE + + + + + + + + + + + + + + FAKE_PLAYER + + + + + + + + + + + + + HUMAN + MALE + + + + + + + + + + + + + + FAKE_PLAYER + + + + + + + + + + + + + HUMAN + MALE + + + + + + + + + + + + + + FAKE_PLAYER + + + + + + + + + + + + + HUMAN + MALE + + + + + + + + + + + + + + FAKE_PLAYER + + + + + + + + + + + + + HUMAN + MALE + + + + + + + + + + + + + + FAKE_PLAYER + + + + + + + + + + + + + HUMAN + MALE + + + + + + + + + + + + + + FAKE_PLAYER + + + + + + + + + + + + + HUMAN + MALE + + + + + + + + + + + + + + FAKE_PLAYER + + + + + + + + + + + + + HUMAN + MALE + + + + + + + + + + + + + + FAKE_PLAYER + + + + + + + + + + + + + HUMAN + FEMALE + + + + + + + + + + + + + + FAKE_PLAYER + + + + + + + + + + + + + HUMAN + FEMALE + + + + + + + + + + + + + + FAKE_PLAYER + + + + + + + + + + + + + HUMAN + FEMALE + + + + + + + + + + + + + + FAKE_PLAYER + + + + + + + + + + + + + HUMAN + FEMALE + + + + + + + + + + + + + + FAKE_PLAYER + + + + + + + + + + + + + HUMAN + FEMALE + + + + + + + + + + + + + + FAKE_PLAYER + + + + + + + + + + + + + HUMAN + FEMALE + + + + + + + + + + + + + + FAKE_PLAYER + + + + + + + + + + + + + HUMAN + FEMALE + + + + + + + + + + + + + + FAKE_PLAYER + + + + + + + + + + + + + HUMAN + FEMALE + + + + + + + + + + + + + + FAKE_PLAYER + + + + + + + + + + + + + HUMAN + FEMALE + + + + + + + + + + + + + + FAKE_PLAYER + + + + + + + + + + + + + HUMAN + FEMALE + + + + + + + + + + + + + + FAKE_PLAYER + + + + + + + + + + + + + HUMAN + FEMALE + + + + + + + + + + + + + + FAKE_PLAYER + + + + + + + + + + + + + HUMAN + FEMALE + + + + + + + + + + + + + + FAKE_PLAYER + + + + + + + + + + + + + HUMAN + FEMALE + + + + + + + + + + + + + + FAKE_PLAYER + + + + + + + + + + + + + HUMAN + FEMALE + + + + + + + + + + + + + + FAKE_PLAYER + + + + + + + + + + + + + HUMAN + FEMALE + + + + + + + + + + + + + + FAKE_PLAYER + + + + + + + + + + + + + HUMAN + FEMALE + + + + + + + + + + + + + + FAKE_PLAYER + + + + + + + + + + + + + HUMAN + MALE + + + + + + + + + + + + + + FAKE_PLAYER + + + + + + + + + + + + + HUMAN + MALE + + + + + + + + + + + + + + FAKE_PLAYER + + + + + + + + + + + + + HUMAN + MALE + + + + + + + + + + + + + + FAKE_PLAYER + + + + + + + + + + + + + HUMAN + MALE + + + + + + + + + + + + + + FAKE_PLAYER + + + + + + + + + + + + + HUMAN + MALE + + + + + + + + + + + + + + FAKE_PLAYER + + + + + + + + + + + + + HUMAN + MALE + + + + + + + + + + + + + + FAKE_PLAYER + + + + + + + + + + + + + HUMAN + MALE + + + + + + + + + + + + + + FAKE_PLAYER + + + + + + + + + + + + + HUMAN + MALE + + + + + + + + + + + + + + FAKE_PLAYER + + + + + + + + + + + + + HUMAN + MALE + + + + + + + + + + + + + + FAKE_PLAYER + + + + + + + + + + + + + HUMAN + MALE + + + + + + + + + + + + + + FAKE_PLAYER + + + + + + + + + + + + + HUMAN + MALE + + + + + + + + + + + + + + FAKE_PLAYER + + + + + + + + + + + + + HUMAN + MALE + + + + + + + + + + + + + + FAKE_PLAYER + + + + + + + + + + + + + HUMAN + MALE + + + + + + + + + + + + + + FAKE_PLAYER + + + + + + + + + + + + + HUMAN + MALE + + + + + + + + + + + + + + FAKE_PLAYER + + + + + + + + + + + + + HUMAN + MALE + + + + + + + + + + + + + + FAKE_PLAYER + + + + + + + + + + + + + HUMAN + MALE + + + + + + + + + + + + + + FAKE_PLAYER + + + + + + + + + + + + + HUMAN + MALE + + + + + + + + + + + + + + FAKE_PLAYER + + + + + + + + + + + + + HUMAN + MALE + + + + + + + + + + + + + + FAKE_PLAYER + + + + + + + + + + + + + HUMAN + MALE + + + + + + + + + + + + + + FAKE_PLAYER + + + + + + + + + + + + + HUMAN + MALE + + + + + + + + + + + + + + FAKE_PLAYER + + + + + + + + + + + + + HUMAN + MALE + + + + + + + + + + + + + + FAKE_PLAYER + + + + + + + + + + + + + HUMAN + MALE + + + + + + + + + + + + + + FAKE_PLAYER + + + + + + + + + + + + + HUMAN + MALE + + + + + + + + + + + + + + FAKE_PLAYER + + + + + + + + + + + + + HUMAN + MALE + + + + + + + + + + + + + + FAKE_PLAYER + + + + + + + + + + + + + HUMAN + MALE + + + + + + + + + + + + + + FAKE_PLAYER + + + + + + + + + + + + + HUMAN + MALE + + + + + + + + + + + + + + FAKE_PLAYER + + + + + + + + + + + + + HUMAN + MALE + + + + + + + + + + + + + + FAKE_PLAYER + + + + + + + + + + + + + HUMAN + MALE + + + + + + + + + + + + + + FAKE_PLAYER + + + + + + + + + + + + + HUMAN + MALE + + + + + + + + + + + + + + FAKE_PLAYER + + + + + + + + + + + + + HUMAN + MALE + + + + + + + + + + + + + + FAKE_PLAYER + + + + + + + + + + + + + HUMAN + MALE + + + + + + + + + + + + + + FAKE_PLAYER + + + + + + + + + + + + + HUMAN + MALE + + + + + + + + + + + + + + FAKE_PLAYER + + + + + + + + + + + + + HUMAN + MALE + + + + + + + + + + + + + + FAKE_PLAYER + + + + + + + + + + + + + HUMAN + MALE + + + + + + + + + + + + + + FAKE_PLAYER + + + + + + + + + + + + + HUMAN + MALE + + + + + + + + + + + + + + FAKE_PLAYER + + + + + + + + + + + + + HUMAN + MALE + + + + + + + + + + + + + + FAKE_PLAYER + + + + + + + + + + + + + HUMAN + MALE + + + + + + + + + + + + + + FAKE_PLAYER + + + + + + + + + + + + + HUMAN + MALE + + + + + + + + + + + + + + FAKE_PLAYER + + + + + + + + + + + + + HUMAN + MALE + + + + + + + + + + + + + + FAKE_PLAYER + + + + + + + + + + + + + HUMAN + MALE + + + + + + + + + + + + + + FAKE_PLAYER + + + + + + + + + + + + + HUMAN + MALE + + + + + + + + + + + + + + FAKE_PLAYER + + + + + + + + + + + + + HUMAN + MALE + + + + + + + + + + + + + + FAKE_PLAYER + + + + + + + + + + + + + HUMAN + MALE + + + + + + + + + + + + + + FAKE_PLAYER + + + + + + + + + + + + + HUMAN + MALE + + + + + + + + + + + + + + FAKE_PLAYER + + + + + + + + + + + + + HUMAN + MALE + + + + + + + + + + + + + + FAKE_PLAYER + + + + + + + + + + + + + HUMAN + MALE + + + + + + + + + + + + + + FAKE_PLAYER + + + + + + + + + + + + + HUMAN + MALE + + + + + + + + + + + + + + FAKE_PLAYER + + + + + + + + + + + + + HUMAN + MALE + + + + + + + + + + + + + + FAKE_PLAYER + + + + + + + + + + + + + ELF + FEMALE + + + + + + + + + + + + + + FAKE_PLAYER + + + + + + + + + + + + + ELF + FEMALE + + + + + + + + + + + + + + FAKE_PLAYER + + + + + + + + + + + + + ELF + FEMALE + + + + + + + + + + + + + + FAKE_PLAYER + + + + + + + + + + + + + ELF + FEMALE + + + + + + + + + + + + + + FAKE_PLAYER + + + + + + + + + + + + + ELF + FEMALE + + + + + + + + + + + + + + FAKE_PLAYER + + + + + + + + + + + + + ELF + FEMALE + + + + + + + + + + + + + + FAKE_PLAYER + + + + + + + + + + + + + ELF + FEMALE + + + + + + + + + + + + + + FAKE_PLAYER + + + + + + + + + + + + + ELF + FEMALE + + + + + + + + + + + + + + FAKE_PLAYER + + + + + + + + + + + + + ELF + FEMALE + + + + + + + + + + + + + + FAKE_PLAYER + + + + + + + + + + + + + ELF + FEMALE + + + + + + + + + + + + + + FAKE_PLAYER + + + + + + + + + + + + + ELF + FEMALE + + + + + + + + + + + + + + FAKE_PLAYER + + + + + + + + + + + + + ELF + FEMALE + + + + + + + + + + + + + + FAKE_PLAYER + + + + + + + + + + + + + ELF + FEMALE + + + + + + + + + + + + + + FAKE_PLAYER + + + + + + + + + + + + + ELF + FEMALE + + + + + + + + + + + + + + FAKE_PLAYER + + + + + + + + + + + + + ELF + FEMALE + + + + + + + + + + + + + + FAKE_PLAYER + + + + + + + + + + + + + ELF + FEMALE + + + + + + + + + + + + + + FAKE_PLAYER + + + + + + + + + + + + + ELF + MALE + + + + + + + + + + + + + + FAKE_PLAYER + + + + + + + + + + + + + ELF + MALE + + + + + + + + + + + + + + FAKE_PLAYER + + + + + + + + + + + + + ELF + MALE + + + + + + + + + + + + + + FAKE_PLAYER + + + + + + + + + + + + + ELF + MALE + + + + + + + + + + + + + + FAKE_PLAYER + + + + + + + + + + + + + ELF + MALE + + + + + + + + + + + + + + FAKE_PLAYER + + + + + + + + + + + + + ELF + MALE + + + + + + + + + + + + + + FAKE_PLAYER + + + + + + + + + + + + + ELF + MALE + + + + + + + + + + + + + + FAKE_PLAYER + + + + + + + + + + + + + ELF + MALE + + + + + + + + + + + + + + FAKE_PLAYER + + + + + + + + + + + + + ELF + MALE + + + + + + + + + + + + + + FAKE_PLAYER + + + + + + + + + + + + + ELF + MALE + + + + + + + + + + + + + + FAKE_PLAYER + + + + + + + + + + + + + ELF + MALE + + + + + + + + + + + + + + FAKE_PLAYER + + + + + + + + + + + + + ELF + MALE + + + + + + + + + + + + + + FAKE_PLAYER + + + + + + + + + + + + + ELF + MALE + + + + + + + + + + + + + + FAKE_PLAYER + + + + + + + + + + + + + ELF + MALE + + + + + + + + + + + + + + FAKE_PLAYER + + + + + + + + + + + + + ELF + MALE + + + + + + + + + + + + + + FAKE_PLAYER + + + + + + + + + + + + + ELF + MALE + + + + + + + + + + + + + + FAKE_PLAYER + + + + + + + + + + + + + ELF + MALE + + + + + + + + + + + + + + FAKE_PLAYER + + + + + + + + + + + + + ELF + MALE + + + + + + + + + + + + + + FAKE_PLAYER + + + + + + + + + + + + + ELF + MALE + + + + + + + + + + + + + + FAKE_PLAYER + + + + + + + + + + + + + ELF + MALE + + + + + + + + + + + + + + FAKE_PLAYER + + + + + + + + + + + + + ELF + MALE + + + + + + + + + + + + + + FAKE_PLAYER + + + + + + + + + + + + + ELF + MALE + + + + + + + + + + + + + + FAKE_PLAYER + + + + + + + + + + + + + ELF + MALE + + + + + + + + + + + + + + FAKE_PLAYER + + + + + + + + + + + + + ELF + MALE + + + + + + + + + + + + + + FAKE_PLAYER + + + + + + + + + + + + + ELF + MALE + + + + + + + + + + + + + + FAKE_PLAYER + + + + + + + + + + + + + ELF + MALE + + + + + + + + + + + + + + FAKE_PLAYER + + + + + + + + + + + + + ELF + MALE + + + + + + + + + + + + + + FAKE_PLAYER + + + + + + + + + + + + + ELF + MALE + + + + + + + + + + + + + + FAKE_PLAYER + + + + + + + + + + + + + ELF + MALE + + + + + + + + + + + + + + FAKE_PLAYER + + + + + + + + + + + + + ELF + MALE + + + + + + + + + + + + + + FAKE_PLAYER + + + + + + + + + + + + + ELF + MALE + + + + + + + + + + + + + + FAKE_PLAYER + + + + + + + + + + + + + ELF + MALE + + + + + + + + + + + + + + FAKE_PLAYER + + + + + + + + + + + + + ELF + MALE + + + + + + + + + + + + + + FAKE_PLAYER + + + + + + + + + + + + + ELF + MALE + + + + + + + + + + + + + + FAKE_PLAYER + + + + + + + + + + + + + ELF + MALE + + + + + + + + + + + + + + FAKE_PLAYER + + + + + + + + + + + + + ELF + MALE + + + + + + + + + + + + + + FAKE_PLAYER + + + + + + + + + + + + + ELF + MALE + + + + + + + + + + + + + + FAKE_PLAYER + + + + + + + + + + + + + ELF + MALE + + + + + + + + + + + + + + FAKE_PLAYER + + + + + + + + + + + + + ELF + MALE + + + + + + + + + + + + + + FAKE_PLAYER + + + + + + + + + + + + + ELF + MALE + + + + + + + + + + + + + + FAKE_PLAYER + + + + + + + + + + + + + ELF + MALE + + + + + + + + + + + + + + FAKE_PLAYER + + + + + + + + + + + + + ELF + MALE + + + + + + + + + + + + + + FAKE_PLAYER + + + + + + + + + + + + + ELF + MALE + + + + + + + + + + + + + + FAKE_PLAYER + + + + + + + + + + + + + ELF + MALE + + + + + + + + + + + + + + FAKE_PLAYER + + + + + + + + + + + + + ELF + MALE + + + + + + + + + + + + + + FAKE_PLAYER + + + + + + + + + + + + + ELF + MALE + + + + + + + + + + + + + + FAKE_PLAYER + + + + + + + + + + + + + ELF + MALE + + + + + + + + + + + + + + FAKE_PLAYER + + + + + + + + + + + + + ELF + MALE + + + + + + + + + + + + + + FAKE_PLAYER + + + + + + + + + + + + + ELF + FEMALE + + + + + + + + + + + + + + FAKE_PLAYER + + + + + + + + + + + + + ELF + FEMALE + + + + + + + + + + + + + + FAKE_PLAYER + + + + + + + + + + + + + ELF + FEMALE + + + + + + + + + + + + + + FAKE_PLAYER + + + + + + + + + + + + + ELF + FEMALE + + + + + + + + + + + + + + FAKE_PLAYER + + + + + + + + + + + + + ELF + FEMALE + + + + + + + + + + + + + + FAKE_PLAYER + + + + + + + + + + + + + ELF + FEMALE + + + + + + + + + + + + + + FAKE_PLAYER + + + + + + + + + + + + + ELF + FEMALE + + + + + + + + + + + + + + FAKE_PLAYER + + + + + + + + + + + + + ELF + FEMALE + + + + + + + + + + + + + + FAKE_PLAYER + + + + + + + + + + + + + ELF + FEMALE + + + + + + + + + + + + + + FAKE_PLAYER + + + + + + + + + + + + + ELF + FEMALE + + + + + + + + + + + + + + FAKE_PLAYER + + + + + + + + + + + + + ELF + FEMALE + + + + + + + + + + + + + + FAKE_PLAYER + + + + + + + + + + + + + ELF + FEMALE + + + + + + + + + + + + + + FAKE_PLAYER + + + + + + + + + + + + + ELF + FEMALE + + + + + + + + + + + + + + FAKE_PLAYER + + + + + + + + + + + + + ELF + FEMALE + + + + + + + + + + + + + + FAKE_PLAYER + + + + + + + + + + + + + ELF + FEMALE + + + + + + + + + + + + + + FAKE_PLAYER + + + + + + + + + + + + + ELF + FEMALE + + + + + + + + + + + + + + FAKE_PLAYER + + + + + + + + + + + + + DARK_ELF + MALE + + + + + + + + + + + + + + FAKE_PLAYER + + + + + + + + + + + + + DARK_ELF + MALE + + + + + + + + + + + + + + FAKE_PLAYER + + + + + + + + + + + + + DARK_ELF + MALE + + + + + + + + + + + + + + FAKE_PLAYER + + + + + + + + + + + + + DARK_ELF + MALE + + + + + + + + + + + + + + FAKE_PLAYER + + + + + + + + + + + + + DARK_ELF + MALE + + + + + + + + + + + + + + FAKE_PLAYER + + + + + + + + + + + + + DARK_ELF + MALE + + + + + + + + + + + + + + FAKE_PLAYER + + + + + + + + + + + + + DARK_ELF + MALE + + + + + + + + + + + + + + FAKE_PLAYER + + + + + + + + + + + + + DARK_ELF + MALE + + + + + + + + + + + + + + FAKE_PLAYER + + + + + + + + + + + + + DARK_ELF + MALE + + + + + + + + + + + + + + FAKE_PLAYER + + + + + + + + + + + + + DARK_ELF + MALE + + + + + + + + + + + + + + FAKE_PLAYER + + + + + + + + + + + + + DARK_ELF + MALE + + + + + + + + + + + + + + FAKE_PLAYER + + + + + + + + + + + + + DARK_ELF + MALE + + + + + + + + + + + + + + FAKE_PLAYER + + + + + + + + + + + + + DARK_ELF + MALE + + + + + + + + + + + + + + FAKE_PLAYER + + + + + + + + + + + + + DARK_ELF + MALE + + + + + + + + + + + + + + FAKE_PLAYER + + + + + + + + + + + + + DARK_ELF + MALE + + + + + + + + + + + + + + FAKE_PLAYER + + + + + + + + + + + + + DARK_ELF + MALE + + + + + + + + + + + + + + FAKE_PLAYER + + + + + + + + + + + + + DARK_ELF + MALE + + + + + + + + + + + + + + FAKE_PLAYER + + + + + + + + + + + + + DARK_ELF + MALE + + + + + + + + + + + + + + FAKE_PLAYER + + + + + + + + + + + + + DARK_ELF + MALE + + + + + + + + + + + + + + FAKE_PLAYER + + + + + + + + + + + + + DARK_ELF + MALE + + + + + + + + + + + + + + FAKE_PLAYER + + + + + + + + + + + + + DARK_ELF + MALE + + + + + + + + + + + + + + FAKE_PLAYER + + + + + + + + + + + + + DARK_ELF + MALE + + + + + + + + + + + + + + FAKE_PLAYER + + + + + + + + + + + + + DARK_ELF + MALE + + + + + + + + + + + + + + FAKE_PLAYER + + + + + + + + + + + + + DARK_ELF + MALE + + + + + + + + + + + + + + FAKE_PLAYER + + + + + + + + + + + + + DARK_ELF + MALE + + + + + + + + + + + + + + FAKE_PLAYER + + + + + + + + + + + + + DARK_ELF + MALE + + + + + + + + + + + + + + FAKE_PLAYER + + + + + + + + + + + + + DARK_ELF + MALE + + + + + + + + + + + + + + FAKE_PLAYER + + + + + + + + + + + + + DARK_ELF + MALE + + + + + + + + + + + + + + FAKE_PLAYER + + + + + + + + + + + + + DARK_ELF + MALE + + + + + + + + + + + + + + FAKE_PLAYER + + + + + + + + + + + + + DARK_ELF + MALE + + + + + + + + + + + + + + FAKE_PLAYER + + + + + + + + + + + + + DARK_ELF + MALE + + + + + + + + + + + + + + FAKE_PLAYER + + + + + + + + + + + + + DARK_ELF + MALE + + + + + + + + + + + + + + FAKE_PLAYER + + + + + + + + + + + + + DARK_ELF + MALE + + + + + + + + + + + + + + FAKE_PLAYER + + + + + + + + + + + + + DARK_ELF + MALE + + + + + + + + + + + + + + FAKE_PLAYER + + + + + + + + + + + + + DARK_ELF + MALE + + + + + + + + + + + + + + FAKE_PLAYER + + + + + + + + + + + + + DARK_ELF + MALE + + + + + + + + + + + + + + FAKE_PLAYER + + + + + + + + + + + + + DARK_ELF + MALE + + + + + + + + + + + + + + FAKE_PLAYER + + + + + + + + + + + + + DARK_ELF + MALE + + + + + + + + + + + + + + FAKE_PLAYER + + + + + + + + + + + + + DARK_ELF + MALE + + + + + + + + + + + + + + FAKE_PLAYER + + + + + + + + + + + + + DARK_ELF + MALE + + + + + + + + + + + + + + FAKE_PLAYER + + + + + + + + + + + + + DARK_ELF + MALE + + + + + + + + + + + + + + FAKE_PLAYER + + + + + + + + + + + + + DARK_ELF + MALE + + + + + + + + + + + + + + FAKE_PLAYER + + + + + + + + + + + + + DARK_ELF + MALE + + + + + + + + + + + + + + FAKE_PLAYER + + + + + + + + + + + + + DARK_ELF + MALE + + + + + + + + + + + + + + FAKE_PLAYER + + + + + + + + + + + + + DARK_ELF + MALE + + + + + + + + + + + + + + FAKE_PLAYER + + + + + + + + + + + + + DARK_ELF + MALE + + + + + + + + + + + + + + FAKE_PLAYER + + + + + + + + + + + + + DARK_ELF + MALE + + + + + + + + + + + + + + FAKE_PLAYER + + + + + + + + + + + + + DARK_ELF + MALE + + + + + + + + + + + + + + FAKE_PLAYER + + + + + + + + + + + + + DARK_ELF + FEMALE + + + + + + + + + + + + + + FAKE_PLAYER + + + + + + + + + + + + + DARK_ELF + FEMALE + + + + + + + + + + + + + + FAKE_PLAYER + + + + + + + + + + + + + DARK_ELF + FEMALE + + + + + + + + + + + + + + FAKE_PLAYER + + + + + + + + + + + + + DARK_ELF + FEMALE + + + + + + + + + + + + + + FAKE_PLAYER + + + + + + + + + + + + + DARK_ELF + FEMALE + + + + + + + + + + + + + + FAKE_PLAYER + + + + + + + + + + + + + DARK_ELF + FEMALE + + + + + + + + + + + + + + FAKE_PLAYER + + + + + + + + + + + + + DARK_ELF + FEMALE + + + + + + + + + + + + + + FAKE_PLAYER + + + + + + + + + + + + + DARK_ELF + FEMALE + + + + + + + + + + + + + + FAKE_PLAYER + + + + + + + + + + + + + DARK_ELF + FEMALE + + + + + + + + + + + + + + FAKE_PLAYER + + + + + + + + + + + + + DARK_ELF + FEMALE + + + + + + + + + + + + + + FAKE_PLAYER + + + + + + + + + + + + + DARK_ELF + FEMALE + + + + + + + + + + + + + + FAKE_PLAYER + + + + + + + + + + + + + DARK_ELF + FEMALE + + + + + + + + + + + + + + FAKE_PLAYER + + + + + + + + + + + + + DARK_ELF + FEMALE + + + + + + + + + + + + + + FAKE_PLAYER + + + + + + + + + + + + + DARK_ELF + FEMALE + + + + + + + + + + + + + + FAKE_PLAYER + + + + + + + + + + + + + DARK_ELF + FEMALE + + + + + + + + + + + + + + FAKE_PLAYER + + + + + + + + + + + + + DARK_ELF + FEMALE + + + + + + + + + + + + + + FAKE_PLAYER + + + + + + + + + + + + + DARK_ELF + MALE + + + + + + + + + + + + + + FAKE_PLAYER + + + + + + + + + + + + + DARK_ELF + MALE + + + + + + + + + + + + + + FAKE_PLAYER + + + + + + + + + + + + + DARK_ELF + MALE + + + + + + + + + + + + + + FAKE_PLAYER + + + + + + + + + + + + + DARK_ELF + MALE + + + + + + + + + + + + + + FAKE_PLAYER + + + + + + + + + + + + + DARK_ELF + MALE + + + + + + + + + + + + + + FAKE_PLAYER + + + + + + + + + + + + + DARK_ELF + MALE + + + + + + + + + + + + + + FAKE_PLAYER + + + + + + + + + + + + + DARK_ELF + MALE + + + + + + + + + + + + + + FAKE_PLAYER + + + + + + + + + + + + + DARK_ELF + MALE + + + + + + + + + + + + + + FAKE_PLAYER + + + + + + + + + + + + + DARK_ELF + MALE + + + + + + + + + + + + + + FAKE_PLAYER + + + + + + + + + + + + + DARK_ELF + MALE + + + + + + + + + + + + + + FAKE_PLAYER + + + + + + + + + + + + + DARK_ELF + MALE + + + + + + + + + + + + + + FAKE_PLAYER + + + + + + + + + + + + + DARK_ELF + MALE + + + + + + + + + + + + + + FAKE_PLAYER + + + + + + + + + + + + + DARK_ELF + MALE + + + + + + + + + + + + + + FAKE_PLAYER + + + + + + + + + + + + + DARK_ELF + MALE + + + + + + + + + + + + + + FAKE_PLAYER + + + + + + + + + + + + + DARK_ELF + MALE + + + + + + + + + + + + + + FAKE_PLAYER + + + + + + + + + + + + + DARK_ELF + MALE + + + + + + + + + + + + + + FAKE_PLAYER + + + + + + + + + + + + + HUMAN + MALE + + + + + + + + + + + + + + FAKE_PLAYER + + + + + + + + + + + + + HUMAN + MALE + + + + + + + + + + + + + + FAKE_PLAYER + + + + + + + + + + + + + HUMAN + MALE + + + + + + + + + + + + + + FAKE_PLAYER + + + + + + + + + + + + + HUMAN + MALE + + + + + + + + + + + + + + FAKE_PLAYER + + + + + + + + + + + + + HUMAN + MALE + + + + + + + + + + + + + + FAKE_PLAYER + + + + + + + + + + + + + HUMAN + MALE + + + + + + + + + + + + + + FAKE_PLAYER + + + + + + + + + + + + + HUMAN + MALE + + + + + + + + + + + + + + FAKE_PLAYER + + + + + + + + + + + + + HUMAN + MALE + + + + + + + + + + + + + + FAKE_PLAYER + + + + + + + + + + + + + HUMAN + MALE + + + + + + + + + + + + + + FAKE_PLAYER + + + + + + + + + + + + + HUMAN + MALE + + + + + + + + + + + + + + FAKE_PLAYER + + + + + + + + + + + + + HUMAN + MALE + + + + + + + + + + + + + + FAKE_PLAYER + + + + + + + + + + + + + HUMAN + MALE + + + + + + + + + + + + + + FAKE_PLAYER + + + + + + + + + + + + + HUMAN + MALE + + + + + + + + + + + + + + FAKE_PLAYER + + + + + + + + + + + + + HUMAN + MALE + + + + + + + + + + + + + + FAKE_PLAYER + + + + + + + + + + + + + HUMAN + MALE + + + + + + + + + + + + + + FAKE_PLAYER + + + + + + + + + + + + + HUMAN + MALE + + + + + + + + + + + + + + FAKE_PLAYER + + + + + + + + + + + + + HUMAN + MALE + + + + + + + + + + + + + + FAKE_PLAYER + + + + + + + + + + + + + HUMAN + MALE + + + + + + + + + + + + + + FAKE_PLAYER + + + + + + + + + + + + + HUMAN + MALE + + + + + + + + + + + + + + FAKE_PLAYER + + + + + + + + + + + + + HUMAN + MALE + + + + + + + + + + + + + + FAKE_PLAYER + + + + + + + + + + + + + HUMAN + MALE + + + + + + + + + + + + + + FAKE_PLAYER + + + + + + + + + + + + + HUMAN + MALE + + + + + + + + + + + + + + FAKE_PLAYER + + + + + + + + + + + + + HUMAN + MALE + + + + + + + + + + + + + + FAKE_PLAYER + + + + + + + + + + + + + HUMAN + MALE + + + + + + + + + + + + + + FAKE_PLAYER + + + + + + + + + + + + + HUMAN + MALE + + + + + + + + + + + + + + FAKE_PLAYER + + + + + + + + + + + + + HUMAN + MALE + + + + + + + + + + + + + + FAKE_PLAYER + + + + + + + + + + + + + HUMAN + MALE + + + + + + + + + + + + + + FAKE_PLAYER + + + + + + + + + + + + + HUMAN + MALE + + + + + + + + + + + + + + FAKE_PLAYER + + + + + + + + + + + + + HUMAN + MALE + + + + + + + + + + + + + + FAKE_PLAYER + + + + + + + + + + + + + HUMAN + MALE + + + + + + + + + + + + + + FAKE_PLAYER + + + + + + + + + + + + + HUMAN + MALE + + + + + + + + + + + + + + FAKE_PLAYER + + + + + + + + + + + + + HUMAN + MALE + + + + + + + + + + + + + + FAKE_PLAYER + + + + + + + + + + + + + HUMAN + FEMALE + + + + + + + + + + + + + + FAKE_PLAYER + + + + + + + + + + + + + HUMAN + FEMALE + + + + + + + + + + + + + + FAKE_PLAYER + + + + + + + + + + + + + HUMAN + FEMALE + + + + + + + + + + + + + + FAKE_PLAYER + + + + + + + + + + + + + HUMAN + FEMALE + + + + + + + + + + + + + + FAKE_PLAYER + + + + + + + + + + + + + HUMAN + FEMALE + + + + + + + + + + + + + + FAKE_PLAYER + + + + + + + + + + + + + HUMAN + FEMALE + + + + + + + + + + + + + + FAKE_PLAYER + + + + + + + + + + + + + HUMAN + FEMALE + + + + + + + + + + + + + + FAKE_PLAYER + + + + + + + + + + + + + HUMAN + FEMALE + + + + + + + + + + + + + + FAKE_PLAYER + + + + + + + + + + + + + HUMAN + FEMALE + + + + + + + + + + + + + + FAKE_PLAYER + + + + + + + + + + + + + HUMAN + FEMALE + + + + + + + + + + + + + + FAKE_PLAYER + + + + + + + + + + + + + HUMAN + FEMALE + + + + + + + + + + + + + + FAKE_PLAYER + + + + + + + + + + + + + HUMAN + FEMALE + + + + + + + + + + + + + + FAKE_PLAYER + + + + + + + + + + + + + HUMAN + FEMALE + + + + + + + + + + + + + + FAKE_PLAYER + + + + + + + + + + + + + HUMAN + FEMALE + + + + + + + + + + + + + + FAKE_PLAYER + + + + + + + + + + + + + HUMAN + FEMALE + + + + + + + + + + + + + + FAKE_PLAYER + + + + + + + + + + + + + HUMAN + FEMALE + + + + + + + + + + + + + + FAKE_PLAYER + + + + + + + + + + + + + HUMAN + MALE + + + + + + + + + + + + + + FAKE_PLAYER + + + + + + + + + + + + + HUMAN + MALE + + + + + + + + + + + + + + FAKE_PLAYER + + + + + + + + + + + + + HUMAN + MALE + + + + + + + + + + + + + + FAKE_PLAYER + + + + + + + + + + + + + HUMAN + MALE + + + + + + + + + + + + + + FAKE_PLAYER + + + + + + + + + + + + + HUMAN + MALE + + + + + + + + + + + + + + FAKE_PLAYER + + + + + + + + + + + + + HUMAN + MALE + + + + + + + + + + + + + + FAKE_PLAYER + + + + + + + + + + + + + HUMAN + MALE + + + + + + + + + + + + + + FAKE_PLAYER + + + + + + + + + + + + + HUMAN + MALE + + + + + + + + + + + + + + FAKE_PLAYER + + + + + + + + + + + + + HUMAN + MALE + + + + + + + + + + + + + + FAKE_PLAYER + + + + + + + + + + + + + HUMAN + MALE + + + + + + + + + + + + + + FAKE_PLAYER + + + + + + + + + + + + + HUMAN + MALE + + + + + + + + + + + + + + FAKE_PLAYER + + + + + + + + + + + + + HUMAN + MALE + + + + + + + + + + + + + + FAKE_PLAYER + + + + + + + + + + + + + HUMAN + MALE + + + + + + + + + + + + + + FAKE_PLAYER + + + + + + + + + + + + + HUMAN + MALE + + + + + + + + + + + + + + FAKE_PLAYER + + + + + + + + + + + + + HUMAN + MALE + + + + + + + + + + + + + + FAKE_PLAYER + + + + + + + + + + + + + HUMAN + MALE + + + + + + + + + + + + + + FAKE_PLAYER + + + + + + + + + + + + + HUMAN + MALE + + + + + + + + + + + + + + FAKE_PLAYER + + + + + + + + + + + + + HUMAN + MALE + + + + + + + + + + + + + + FAKE_PLAYER + + + + + + + + + + + + + HUMAN + MALE + + + + + + + + + + + + + + FAKE_PLAYER + + + + + + + + + + + + + HUMAN + MALE + + + + + + + + + + + + + + FAKE_PLAYER + + + + + + + + + + + + + HUMAN + MALE + + + + + + + + + + + + + + FAKE_PLAYER + + + + + + + + + + + + + HUMAN + MALE + + + + + + + + + + + + + + FAKE_PLAYER + + + + + + + + + + + + + HUMAN + MALE + + + + + + + + + + + + + + FAKE_PLAYER + + + + + + + + + + + + + HUMAN + MALE + + + + + + + + + + + + + + FAKE_PLAYER + + + + + + + + + + + + + HUMAN + MALE + + + + + + + + + + + + + + FAKE_PLAYER + + + + + + + + + + + + + HUMAN + MALE + + + + + + + + + + + + + + FAKE_PLAYER + + + + + + + + + + + + + HUMAN + MALE + + + + + + + + + + + + + + FAKE_PLAYER + + + + + + + + + + + + + HUMAN + MALE + + + + + + + + + + + + + + FAKE_PLAYER + + + + + + + + + + + + + HUMAN + MALE + + + + + + + + + + + + + + FAKE_PLAYER + + + + + + + + + + + + + HUMAN + MALE + + + + + + + + + + + + + + FAKE_PLAYER + + + + + + + + + + + + + HUMAN + MALE + + + + + + + + + + + + + + FAKE_PLAYER + + + + + + + + + + + + + HUMAN + MALE + + + + + + + + + + + + + + FAKE_PLAYER + + + + + + + + + + + + + DWARF + MALE + + + + + + + + + + + + + + FAKE_PLAYER + + + + + + + + + + + + + DWARF + MALE + + + + + + + + + + + + + + FAKE_PLAYER + + + + + + + + + + + + + DWARF + MALE + + + + + + + + + + + + + + FAKE_PLAYER + + + + + + + + + + + + + DWARF + MALE + + + + + + + + + + + + + + FAKE_PLAYER + + + + + + + + + + + + + DWARF + MALE + + + + + + + + + + + + + + FAKE_PLAYER + + + + + + + + + + + + + DWARF + MALE + + + + + + + + + + + + + + FAKE_PLAYER + + + + + + + + + + + + + DWARF + MALE + + + + + + + + + + + + + + FAKE_PLAYER + + + + + + + + + + + + + DWARF + MALE + + + + + + + + + + + + + + FAKE_PLAYER + + + + + + + + + + + + + DWARF + MALE + + + + + + + + + + + + + + FAKE_PLAYER + + + + + + + + + + + + + DWARF + MALE + + + + + + + + + + + + + + FAKE_PLAYER + + + + + + + + + + + + + DWARF + MALE + + + + + + + + + + + + + + FAKE_PLAYER + + + + + + + + + + + + + DWARF + MALE + + + + + + + + + + + + + + FAKE_PLAYER + + + + + + + + + + + + + DWARF + MALE + + + + + + + + + + + + + + FAKE_PLAYER + + + + + + + + + + + + + DWARF + MALE + + + + + + + + + + + + + + FAKE_PLAYER + + + + + + + + + + + + + DWARF + MALE + + + + + + + + + + + + + + FAKE_PLAYER + + + + + + + + + + + + + DWARF + MALE + + + + + + + + + + + + + + FAKE_PLAYER + + + + + + + + + + + + + DWARF + FEMALE + + + + + + + + + + + + + + FAKE_PLAYER + + + + + + + + + + + + + DWARF + FEMALE + + + + + + + + + + + + + + FAKE_PLAYER + + + + + + + + + + + + + DWARF + FEMALE + + + + + + + + + + + + + + FAKE_PLAYER + + + + + + + + + + + + + DWARF + FEMALE + + + + + + + + + + + + + + FAKE_PLAYER + + + + + + + + + + + + + DWARF + FEMALE + + + + + + + + + + + + + + FAKE_PLAYER + + + + + + + + + + + + + DWARF + FEMALE + + + + + + + + + + + + + + FAKE_PLAYER + + + + + + + + + + + + + DWARF + FEMALE + + + + + + + + + + + + + + FAKE_PLAYER + + + + + + + + + + + + + DWARF + FEMALE + + + + + + + + + + + + + + FAKE_PLAYER + + + + + + + + + + + + + DWARF + FEMALE + + + + + + + + + + + + + + FAKE_PLAYER + + + + + + + + + + + + + DWARF + FEMALE + + + + + + + + + + + + + + FAKE_PLAYER + + + + + + + + + + + + + DWARF + FEMALE + + + + + + + + + + + + + + FAKE_PLAYER + + + + + + + + + + + + + DWARF + FEMALE + + + + + + + + + + + + + + FAKE_PLAYER + + + + + + + + + + + + + DWARF + FEMALE + + + + + + + + + + + + + + FAKE_PLAYER + + + + + + + + + + + + + DWARF + FEMALE + + + + + + + + + + + + + + FAKE_PLAYER + + + + + + + + + + + + + DWARF + FEMALE + + + + + + + + + + + + + + FAKE_PLAYER + + + + + + + + + + + + + DWARF + FEMALE + + + + + + + + + + + + + + FAKE_PLAYER + + + + + + + + + + + + + DWARF + MALE + + + + + + + + + + + + + + FAKE_PLAYER + + + + + + + + + + + + + DWARF + MALE + + + + + + + + + + + + + + FAKE_PLAYER + + + + + + + + + + + + + DWARF + MALE + + + + + + + + + + + + + + FAKE_PLAYER + + + + + + + + + + + + + DWARF + MALE + + + + + + + + + + + + + + FAKE_PLAYER + + + + + + + + + + + + + DWARF + MALE + + + + + + + + + + + + + + FAKE_PLAYER + + + + + + + + + + + + + DWARF + MALE + + + + + + + + + + + + + + FAKE_PLAYER + + + + + + + + + + + + + DWARF + MALE + + + + + + + + + + + + + + FAKE_PLAYER + + + + + + + + + + + + + DWARF + MALE + + + + + + + + + + + + + + FAKE_PLAYER + + + + + + + + + + + + + DWARF + MALE + + + + + + + + + + + + + + FAKE_PLAYER + + + + + + + + + + + + + DWARF + MALE + + + + + + + + + + + + + + FAKE_PLAYER + + + + + + + + + + + + + DWARF + MALE + + + + + + + + + + + + + + FAKE_PLAYER + + + + + + + + + + + + + DWARF + MALE + + + + + + + + + + + + + + FAKE_PLAYER + + + + + + + + + + + + + DWARF + MALE + + + + + + + + + + + + + + FAKE_PLAYER + + + + + + + + + + + + + DWARF + MALE + + + + + + + + + + + + + + FAKE_PLAYER + + + + + + + + + + + + + DWARF + MALE + + + + + + + + + + + + + + FAKE_PLAYER + + + + + + + + + + + + + DWARF + MALE + + + + + + + + + + + + + + FAKE_PLAYER + + + + + + + + + + + + + DWARF + MALE + + + + + + + + + + + + + + FAKE_PLAYER + + + + + + + + + + + + + DWARF + MALE + + + + + + + + + + + + + + FAKE_PLAYER + + + + + + + + + + + + + DWARF + MALE + + + + + + + + + + + + + + FAKE_PLAYER + + + + + + + + + + + + + DWARF + MALE + + + + + + + + + + + + + + FAKE_PLAYER + + + + + + + + + + + + + DWARF + MALE + + + + + + + + + + + + + + FAKE_PLAYER + + + + + + + + + + + + + DWARF + MALE + + + + + + + + + + + + + + FAKE_PLAYER + + + + + + + + + + + + + DWARF + MALE + + + + + + + + + + + + + + FAKE_PLAYER + + + + + + + + + + + + + DWARF + MALE + + + + + + + + + + + + + + FAKE_PLAYER + + + + + + + + + + + + + DWARF + MALE + + + + + + + + + + + + + + FAKE_PLAYER + + + + + + + + + + + + + DWARF + MALE + + + + + + + + + + + + + + FAKE_PLAYER + + + + + + + + + + + + + DWARF + MALE + + + + + + + + + + + + + + FAKE_PLAYER + + + + + + + + + + + + + DWARF + MALE + + + + + + + + + + + + + + FAKE_PLAYER + + + + + + + + + + + + + DWARF + MALE + + + + + + + + + + + + + + FAKE_PLAYER + + + + + + + + + + + + + DWARF + MALE + + + + + + + + + + + + + + FAKE_PLAYER + + + + + + + + + + + + + DWARF + MALE + + + + + + + + + + + + + + FAKE_PLAYER + + + + + + + + + + + + + DWARF + MALE + + + + + + + + + + + + + + FAKE_PLAYER + + + + + + + + + + + + + DWARF + MALE + + + + + + + + + + + + + + FAKE_PLAYER + + + + + + + + + + + + + DWARF + MALE + + + + + + + + + + + + + + FAKE_PLAYER + + + + + + + + + + + + + DWARF + MALE + + + + + + + + + + + + + + FAKE_PLAYER + + + + + + + + + + + + + DWARF + MALE + + + + + + + + + + + + + + FAKE_PLAYER + + + + + + + + + + + + + DWARF + MALE + + + + + + + + + + + + + + FAKE_PLAYER + + + + + + + + + + + + + DWARF + MALE + + + + + + + + + + + + + + FAKE_PLAYER + + + + + + + + + + + + + DWARF + MALE + + + + + + + + + + + + + + FAKE_PLAYER + + + + + + + + + + + + + DWARF + MALE + + + + + + + + + + + + + + FAKE_PLAYER + + + + + + + + + + + + + DWARF + MALE + + + + + + + + + + + + + + FAKE_PLAYER + + + + + + + + + + + + + DWARF + MALE + + + + + + + + + + + + + + FAKE_PLAYER + + + + + + + + + + + + + DWARF + MALE + + + + + + + + + + + + + + FAKE_PLAYER + + + + + + + + + + + + + DWARF + MALE + + + + + + + + + + + + + + FAKE_PLAYER + + + + + + + + + + + + + DWARF + MALE + + + + + + + + + + + + + + FAKE_PLAYER + + + + + + + + + + + + + DWARF + MALE + + + + + + + + + + + + + + FAKE_PLAYER + + + + + + + + + + + + + DWARF + MALE + + + + + + + + + + + + + + FAKE_PLAYER + + + + + + + + + + + + + DWARF + MALE + + + + + + + + + + + + + + FAKE_PLAYER + + + + + + + + + + + + diff --git a/src_mobius/mobius/L2J_Mobius_CT_0_Interlude/dist/game/data/xsd/FakePlayerChatLines.xsd b/src_mobius/mobius/L2J_Mobius_CT_0_Interlude/dist/game/data/xsd/FakePlayerChatLines.xsd new file mode 100644 index 0000000..70ee895 --- /dev/null +++ b/src_mobius/mobius/L2J_Mobius_CT_0_Interlude/dist/game/data/xsd/FakePlayerChatLines.xsd @@ -0,0 +1,33 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src_mobius/mobius/L2J_Mobius_CT_0_Interlude/java/org/l2jmobius/gameserver/GameServer.java b/src_mobius/mobius/L2J_Mobius_CT_0_Interlude/java/org/l2jmobius/gameserver/GameServer.java index ea741b0..b1dca78 100644 --- a/src_mobius/mobius/L2J_Mobius_CT_0_Interlude/java/org/l2jmobius/gameserver/GameServer.java +++ b/src_mobius/mobius/L2J_Mobius_CT_0_Interlude/java/org/l2jmobius/gameserver/GameServer.java @@ -1,493 +1,511 @@ -/* - * Copyright (c) 2013 L2jMobius - * - * Permission is hereby granted, free of charge, to any person obtaining a copy - * of this software and associated documentation files (the "Software"), to deal - * in the Software without restriction, including without limitation the rights - * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell - * copies of the Software, and to permit persons to whom the Software is - * furnished to do so, subject to the following conditions: - * - * The above copyright notice and this permission notice shall be - * included in all copies or substantial portions of the Software. - * - * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR - * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, - * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE - * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, - * WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR - * IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. - */ -package org.l2jmobius.gameserver; - -import java.awt.Toolkit; -import java.io.File; -import java.io.FileInputStream; -import java.io.InputStream; -import java.net.InetSocketAddress; -import java.time.Duration; -import java.util.logging.Level; -import java.util.logging.LogManager; -import java.util.logging.Logger; - -import org.l2jmobius.commons.config.InterfaceConfig; -import org.l2jmobius.commons.database.DatabaseFactory; -import org.l2jmobius.commons.network.ConnectionManager; -import org.l2jmobius.commons.threads.ThreadPool; -import org.l2jmobius.commons.time.TimeUtil; -import org.l2jmobius.commons.util.StringUtil; -import org.l2jmobius.gameserver.cache.HtmCache; -import org.l2jmobius.gameserver.config.ConfigLoader; -import org.l2jmobius.gameserver.config.DevelopmentConfig; -import org.l2jmobius.gameserver.config.GeneralConfig; -import org.l2jmobius.gameserver.config.ServerConfig; -import org.l2jmobius.gameserver.config.custom.CustomMailManagerConfig; -import org.l2jmobius.gameserver.config.custom.MultilingualSupportConfig; -import org.l2jmobius.gameserver.config.custom.OfflinePlayConfig; -import org.l2jmobius.gameserver.config.custom.OfflineTradeConfig; -import org.l2jmobius.gameserver.config.custom.PremiumSystemConfig; -import org.l2jmobius.gameserver.config.custom.SellBuffsConfig; -import org.l2jmobius.gameserver.config.custom.WeddingConfig; -import org.l2jmobius.gameserver.data.AugmentationData; -import org.l2jmobius.gameserver.data.MerchantPriceConfigTable; -import org.l2jmobius.gameserver.data.SchemeBufferTable; -import org.l2jmobius.gameserver.data.sql.AnnouncementsTable; -import org.l2jmobius.gameserver.data.sql.CharInfoTable; -import org.l2jmobius.gameserver.data.sql.CharSummonTable; -import org.l2jmobius.gameserver.data.sql.ClanHallTable; -import org.l2jmobius.gameserver.data.sql.ClanTable; -import org.l2jmobius.gameserver.data.sql.CrestTable; -import org.l2jmobius.gameserver.data.sql.OfflinePlayTable; -import org.l2jmobius.gameserver.data.sql.OfflineTraderTable; -import org.l2jmobius.gameserver.data.xml.AdminData; -import org.l2jmobius.gameserver.data.xml.ArmorSetData; -import org.l2jmobius.gameserver.data.xml.BuyListData; -import org.l2jmobius.gameserver.data.xml.CategoryData; -import org.l2jmobius.gameserver.data.xml.ClassListData; -import org.l2jmobius.gameserver.data.xml.CubicData; -import org.l2jmobius.gameserver.data.xml.DoorData; -import org.l2jmobius.gameserver.data.xml.DynamicExpRateData; -import org.l2jmobius.gameserver.data.xml.EnchantItemData; -import org.l2jmobius.gameserver.data.xml.EnchantItemGroupsData; -import org.l2jmobius.gameserver.data.xml.EnchantItemHPBonusData; -import org.l2jmobius.gameserver.data.xml.EnchantSkillTreeData; -import org.l2jmobius.gameserver.data.xml.ExperienceData; -import org.l2jmobius.gameserver.data.xml.ExperienceLossData; -import org.l2jmobius.gameserver.data.xml.FenceData; -import org.l2jmobius.gameserver.data.xml.FishData; -import org.l2jmobius.gameserver.data.xml.FishingMonstersData; -import org.l2jmobius.gameserver.data.xml.FishingRodsData; -import org.l2jmobius.gameserver.data.xml.HennaData; -import org.l2jmobius.gameserver.data.xml.HitConditionBonusData; -import org.l2jmobius.gameserver.data.xml.InitialEquipmentData; -import org.l2jmobius.gameserver.data.xml.InitialShortcutData; -import org.l2jmobius.gameserver.data.xml.ItemData; -import org.l2jmobius.gameserver.data.xml.KarmaLossData; -import org.l2jmobius.gameserver.data.xml.LevelUpCrystalData; -import org.l2jmobius.gameserver.data.xml.MapRegionData; -import org.l2jmobius.gameserver.data.xml.MultisellData; -import org.l2jmobius.gameserver.data.xml.NpcData; -import org.l2jmobius.gameserver.data.xml.NpcNameLocalisationData; -import org.l2jmobius.gameserver.data.xml.OptionData; -import org.l2jmobius.gameserver.data.xml.PetDataTable; -import org.l2jmobius.gameserver.data.xml.PetSkillData; -import org.l2jmobius.gameserver.data.xml.PlayerTemplateData; -import org.l2jmobius.gameserver.data.xml.RecipeData; -import org.l2jmobius.gameserver.data.xml.SendMessageLocalisationData; -import org.l2jmobius.gameserver.data.xml.SiegeScheduleData; -import org.l2jmobius.gameserver.data.xml.SkillData; -import org.l2jmobius.gameserver.data.xml.SkillLearnData; -import org.l2jmobius.gameserver.data.xml.SkillTreeData; -import org.l2jmobius.gameserver.data.xml.SpawnData; -import org.l2jmobius.gameserver.data.xml.StaticObjectData; -import org.l2jmobius.gameserver.data.xml.TeleporterData; -import org.l2jmobius.gameserver.entity.World; -import org.l2jmobius.gameserver.entity.groups.matching.PartyMatchRoomList; -import org.l2jmobius.gameserver.entity.groups.matching.PartyMatchWaitingList; -import org.l2jmobius.gameserver.entity.spawns.AutoSpawnHandler; -import org.l2jmobius.gameserver.geoengine.GeoEngine; -import org.l2jmobius.gameserver.handler.EffectHandler; -import org.l2jmobius.gameserver.managers.AntiFeedManager; -import org.l2jmobius.gameserver.managers.BoatManager; -import org.l2jmobius.gameserver.managers.CHSiegeManager; -import org.l2jmobius.gameserver.managers.CaptchaManager; -import org.l2jmobius.gameserver.managers.CastleManager; -import org.l2jmobius.gameserver.managers.CastleManorManager; -import org.l2jmobius.gameserver.managers.ClanHallAuctionManager; -import org.l2jmobius.gameserver.managers.CoupleManager; -import org.l2jmobius.gameserver.managers.CursedWeaponsManager; -import org.l2jmobius.gameserver.managers.CustomMailManager; -import org.l2jmobius.gameserver.managers.DailyResetManager; -import org.l2jmobius.gameserver.managers.DayNightSpawnManager; -import org.l2jmobius.gameserver.managers.DimensionalRiftManager; -import org.l2jmobius.gameserver.managers.EventDropManager; -import org.l2jmobius.gameserver.managers.FakePlayerChatManager; -import org.l2jmobius.gameserver.managers.FishingChampionshipManager; -import org.l2jmobius.gameserver.managers.GlobalVariablesManager; -import org.l2jmobius.gameserver.managers.GrandBossManager; -import org.l2jmobius.gameserver.managers.IdManager; -import org.l2jmobius.gameserver.managers.InstanceManager; -import org.l2jmobius.gameserver.managers.ItemsOnGroundManager; -import org.l2jmobius.gameserver.managers.MercTicketManager; -import org.l2jmobius.gameserver.managers.PcCafePointsManager; -import org.l2jmobius.gameserver.managers.PetitionManager; -import org.l2jmobius.gameserver.managers.PrecautionaryRestartManager; -import org.l2jmobius.gameserver.managers.PremiumManager; -import org.l2jmobius.gameserver.managers.PunishmentManager; -import org.l2jmobius.gameserver.managers.RaidBossPointsManager; -import org.l2jmobius.gameserver.managers.RaidBossSpawnManager; -import org.l2jmobius.gameserver.managers.ScriptManager; -import org.l2jmobius.gameserver.managers.SellBuffsManager; -import org.l2jmobius.gameserver.managers.ServerRestartManager; -import org.l2jmobius.gameserver.managers.SiegeManager; -import org.l2jmobius.gameserver.managers.WalkingManager; -import org.l2jmobius.gameserver.managers.ZoneManager; -import org.l2jmobius.gameserver.managers.games.LotteryManager; -import org.l2jmobius.gameserver.managers.games.MonsterRaceManager; -import org.l2jmobius.gameserver.mechanics.events.EventDispatcher; -import org.l2jmobius.gameserver.mechanics.events.EventType; -import org.l2jmobius.gameserver.mechanics.events.holders.OnServerStart; -import org.l2jmobius.gameserver.mechanics.olympiad.Hero; -import org.l2jmobius.gameserver.mechanics.olympiad.Olympiad; -import org.l2jmobius.gameserver.mechanics.sevensigns.SevenSigns; -import org.l2jmobius.gameserver.mechanics.sevensigns.SevenSignsFestival; -import org.l2jmobius.gameserver.network.GameClient; -import org.l2jmobius.gameserver.network.GamePacketHandler; -import org.l2jmobius.gameserver.network.SystemMessageId; -import org.l2jmobius.gameserver.scripting.ScriptEngine; -import org.l2jmobius.gameserver.taskmanagers.GameTimeTaskManager; -import org.l2jmobius.gameserver.taskmanagers.ItemLifeTimeTaskManager; -import org.l2jmobius.gameserver.taskmanagers.ItemsAutoDestroyTaskManager; -import org.l2jmobius.gameserver.ui.Gui; -import org.l2jmobius.gameserver.util.DeadlockWatcher; - -public class GameServer -{ - private static final Logger LOGGER = Logger.getLogger(GameServer.class.getName()); - - private static final long START_TIME = System.currentTimeMillis(); - private long _sectionStartTime = START_TIME; - private String _previousSectionName = null; - - public GameServer() throws Exception - { - // GUI - InterfaceConfig.load(); - if (InterfaceConfig.ENABLE_GUI) - { - System.out.println("GameServer: Running in GUI mode."); - new Gui(); - } - - // Create log folder - final File logFolder = new File(".", "log"); - logFolder.mkdir(); - - // Create input stream for log file -- or store file data into memory. - try (InputStream is = new FileInputStream(new File("./log.cfg"))) - { - LogManager.getLogManager().readConfiguration(is); - } - - // Initialize config - ConfigLoader.init(); - - printSection("Database"); - DatabaseFactory.init(); - - printSection("ThreadPool"); - ThreadPool.init(); - - // Start game time task manager early. - GameTimeTaskManager.getInstance(); - - printSection("IdManager"); - IdManager.getInstance(); - - printSection("Scripting Engine"); - EventDispatcher.getInstance(); - ScriptEngine.getInstance(); - - printSection("World"); - InstanceManager.getInstance(); - World.init(); - MapRegionData.getInstance(); - AnnouncementsTable.getInstance(); - GlobalVariablesManager.getInstance(); - - printSection("Data"); - CategoryData.getInstance(); - CubicData.getInstance(); - DynamicExpRateData.getInstance(); - - printSection("Skills"); - EffectHandler.getInstance().executeScript(); - EnchantSkillTreeData.getInstance(); - SkillTreeData.getInstance(); - SkillData.getInstance(); - PetSkillData.getInstance(); - - printSection("Items"); - ItemData.getInstance(); - EnchantItemGroupsData.getInstance(); - EnchantItemData.getInstance(); - OptionData.getInstance(); - EnchantItemHPBonusData.getInstance(); - MerchantPriceConfigTable.getInstance().loadInstances(); - BuyListData.getInstance(); - MultisellData.getInstance(); - RecipeData.getInstance(); - ArmorSetData.getInstance(); - FishData.getInstance(); - FishingMonstersData.getInstance(); - FishingRodsData.getInstance(); - HennaData.getInstance(); - PcCafePointsManager.getInstance(); - ItemLifeTimeTaskManager.getInstance(); - - printSection("Characters"); - ClassListData.getInstance(); - InitialEquipmentData.getInstance(); - InitialShortcutData.getInstance(); - ExperienceData.getInstance(); - ExperienceLossData.getInstance(); - KarmaLossData.getInstance(); - HitConditionBonusData.getInstance(); - PlayerTemplateData.getInstance(); - CharInfoTable.getInstance(); - AdminData.getInstance(); - RaidBossPointsManager.getInstance(); - PetDataTable.getInstance(); - CharSummonTable.getInstance().init(); - CaptchaManager.getInstance(); - - if (PremiumSystemConfig.PREMIUM_SYSTEM_ENABLED) - { - LOGGER.info("PremiumManager: Premium system is enabled."); - PremiumManager.getInstance(); - } - - printSection("Clans"); - ClanTable.getInstance(); - CHSiegeManager.getInstance(); - ClanHallTable.getInstance(); - ClanHallAuctionManager.getInstance(); - - printSection("Geodata"); - GeoEngine.getInstance(); - - printSection("NPCs"); - DoorData.getInstance(); - FenceData.getInstance(); - SkillLearnData.getInstance(); - NpcData.getInstance(); - LevelUpCrystalData.getInstance(); - FakePlayerChatManager.getInstance(); - WalkingManager.getInstance(); - StaticObjectData.getInstance(); - CastleManager.getInstance().loadInstances(); - SchemeBufferTable.getInstance(); - ZoneManager.getInstance(); - GrandBossManager.getInstance().initZones(); - EventDropManager.getInstance(); - - printSection("Olympiad"); - Olympiad.getInstance(); - Hero.getInstance(); - - printSection("Seven Signs"); - SevenSigns.getInstance(); - - // Call to load caches. - printSection("Cache"); - HtmCache.getInstance(); - CrestTable.getInstance(); - TeleporterData.getInstance(); - PartyMatchWaitingList.getInstance(); - PartyMatchRoomList.getInstance(); - PetitionManager.getInstance(); - AugmentationData.getInstance(); - CursedWeaponsManager.getInstance(); - - if (SellBuffsConfig.SELLBUFF_ENABLED) - { - SellBuffsManager.getInstance(); - } - - if (MultilingualSupportConfig.MULTILANG_ENABLE) - { - SystemMessageId.loadLocalisations(); - SendMessageLocalisationData.getInstance(); - NpcNameLocalisationData.getInstance(); - } - - printSection("Scripts"); - ScriptManager.getInstance(); - BoatManager.getInstance(); - - try - { - LOGGER.info("Loading server scripts..."); - ScriptEngine.getInstance().executeScript(ScriptEngine.MASTER_HANDLER_FILE); - ScriptEngine.getInstance().executeScriptList(); - } - catch (Exception e) - { - LOGGER.log(Level.WARNING, "Failed to execute script list!", e); - } - - SpawnData.getInstance(); - DayNightSpawnManager.getInstance().trim().notifyChangeMode(); - DimensionalRiftManager.getInstance(); - RaidBossSpawnManager.getInstance(); - - printSection("Siege"); - SiegeManager.getInstance().getSieges(); - CastleManager.getInstance().activateInstances(); - SiegeScheduleData.getInstance(); - MerchantPriceConfigTable.getInstance().updateReferences(); - CastleManorManager.getInstance(); - MercTicketManager.getInstance(); - ScriptManager.getInstance().report(); - - if (GeneralConfig.SAVE_DROPPED_ITEM) - { - ItemsOnGroundManager.getInstance(); - } - - if ((GeneralConfig.AUTODESTROY_ITEM_AFTER > 0) || (GeneralConfig.HERB_AUTO_DESTROY_TIME > 0)) - { - ItemsAutoDestroyTaskManager.getInstance(); - } - - MonsterRaceManager.getInstance(); - LotteryManager.getInstance(); - SevenSigns.getInstance().spawnSevenSignsNPC(); - SevenSignsFestival.getInstance(); - AutoSpawnHandler.getInstance(); - LOGGER.info("AutoSpawnHandler: Loaded " + AutoSpawnHandler.getInstance().size() + " handlers in total."); - - if (WeddingConfig.ALLOW_WEDDING) - { - CoupleManager.getInstance(); - } - - if (GeneralConfig.ALT_FISH_CHAMPIONSHIP_ENABLED) - { - FishingChampionshipManager.getInstance(); - } - - DailyResetManager.getInstance(); - AntiFeedManager.getInstance().registerEvent(AntiFeedManager.GAME_ID); - - if (OfflinePlayConfig.ENABLE_OFFLINE_PLAY_COMMAND) - { - AntiFeedManager.getInstance().registerEvent(AntiFeedManager.OFFLINE_PLAY); - } - - if (CustomMailManagerConfig.CUSTOM_MAIL_MANAGER_ENABLED) - { - CustomMailManager.getInstance(); - } - - if (EventDispatcher.getInstance().hasListener(EventType.ON_SERVER_START)) - { - EventDispatcher.getInstance().notifyEventAsync(new OnServerStart()); - } - - PunishmentManager.getInstance(); - - Runtime.getRuntime().addShutdownHook(Shutdown.getInstance()); - LOGGER.info("IdManager: Free ObjectID's remaining: " + IdManager.getInstance().getAvailableIdCount()); - - if ((OfflineTradeConfig.OFFLINE_TRADE_ENABLE || OfflineTradeConfig.OFFLINE_CRAFT_ENABLE) && OfflineTradeConfig.RESTORE_OFFLINERS) - { - OfflineTraderTable.getInstance().restoreOfflineTraders(); - } - - if (OfflinePlayConfig.ENABLE_OFFLINE_PLAY_COMMAND && OfflinePlayConfig.RESTORE_AUTO_PLAY_OFFLINERS) - { - OfflinePlayTable.getInstance().restoreOfflinePlayers(); - } - - if (ServerConfig.SERVER_RESTART_SCHEDULE_ENABLED) - { - ServerRestartManager.getInstance(); - } - - if (ServerConfig.PRECAUTIONARY_RESTART_ENABLED) - { - PrecautionaryRestartManager.getInstance(); - } - - if (ServerConfig.DEADLOCK_WATCHER) - { - final DeadlockWatcher deadlockWatcher = new DeadlockWatcher(Duration.ofSeconds(ServerConfig.DEADLOCK_CHECK_INTERVAL), () -> - { - if (ServerConfig.RESTART_ON_DEADLOCK) - { - World.broadcastToAllOnlinePlayers("Server has stability issues - restarting now."); - Shutdown.getInstance().startShutdown(null, 60, true); - } - }); - deadlockWatcher.setDaemon(true); - deadlockWatcher.start(); - } - - System.gc(); - final long totalMem = Runtime.getRuntime().maxMemory() / 1048576; - LOGGER.info(StringUtil.concat(getClass().getSimpleName(), ": Started, using ", getUsedMemoryMB(), " of ", totalMem, " MB total memory.")); - LOGGER.info(StringUtil.concat(getClass().getSimpleName(), ": Maximum number of connected players is ", ServerConfig.MAXIMUM_ONLINE_USERS, ".")); - LOGGER.info(StringUtil.concat(getClass().getSimpleName(), ": Server loaded in ", ((System.currentTimeMillis() - START_TIME) / 1000), " seconds.")); - - new ConnectionManager<>(new InetSocketAddress(ServerConfig.PORT_GAME), GameClient::new, new GamePacketHandler()); - - LoginServerThread.getInstance().start(); - - Toolkit.getDefaultToolkit().beep(); - } - - private void printSection(String section) - { - if (DevelopmentConfig.LOG_SERVER_LOAD_TIMES) - { - // Calculate elapsed time for previous section. - final long currentTime = System.currentTimeMillis(); - final long sectionElapsed = currentTime - _sectionStartTime; - - // Log elapsed time for previous section if not the first section. - if (_previousSectionName != null) - { - LOGGER.info(StringUtil.concat("...section [ ", _previousSectionName, " ] loaded in ", TimeUtil.formatDuration(sectionElapsed), ".")); - } - - // Update for next measurement. - _previousSectionName = section; - _sectionStartTime = currentTime; - } - - // Build and log the new section header. - final StringBuilder sb = new StringBuilder(61); - sb.append("=[ ").append(section).append(" ]"); - while (sb.length() < 61) - { - sb.insert(0, '-'); - } - LOGGER.info(sb.toString()); - } - - public long getUsedMemoryMB() - { - return (Runtime.getRuntime().totalMemory() - Runtime.getRuntime().freeMemory()) / 1048576; - } - - public static long getStartTime() - { - return START_TIME; - } - - public static void main(String[] args) throws Exception - { - new GameServer(); - } -} +/* + * Copyright (c) 2013 L2jMobius + * + * Permission is hereby granted, free of charge, to any person obtaining a copy + * of this software and associated documentation files (the "Software"), to deal + * in the Software without restriction, including without limitation the rights + * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell + * copies of the Software, and to permit persons to whom the Software is + * furnished to do so, subject to the following conditions: + * + * The above copyright notice and this permission notice shall be + * included in all copies or substantial portions of the Software. + * + * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR + * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, + * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE + * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, + * WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR + * IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. + */ +package org.l2jmobius.gameserver; + +import java.awt.Toolkit; +import java.io.File; +import java.io.FileInputStream; +import java.io.InputStream; +import java.net.InetSocketAddress; +import java.time.Duration; +import java.util.logging.Level; +import java.util.logging.LogManager; +import java.util.logging.Logger; + +import org.l2jmobius.commons.config.InterfaceConfig; +import org.l2jmobius.commons.database.DatabaseFactory; +import org.l2jmobius.commons.network.ConnectionManager; +import org.l2jmobius.commons.threads.ThreadPool; +import org.l2jmobius.commons.time.TimeUtil; +import org.l2jmobius.commons.util.StringUtil; +import org.l2jmobius.gameserver.cache.HtmCache; +import org.l2jmobius.gameserver.config.ConfigLoader; +import org.l2jmobius.gameserver.config.DevelopmentConfig; +import org.l2jmobius.gameserver.config.GeneralConfig; +import org.l2jmobius.gameserver.config.ServerConfig; +import org.l2jmobius.gameserver.config.custom.CustomMailManagerConfig; +import org.l2jmobius.gameserver.config.custom.MultilingualSupportConfig; +import org.l2jmobius.gameserver.config.custom.OfflinePlayConfig; +import org.l2jmobius.gameserver.config.custom.OfflineTradeConfig; +import org.l2jmobius.gameserver.config.custom.PremiumSystemConfig; +import org.l2jmobius.gameserver.config.custom.SellBuffsConfig; +import org.l2jmobius.gameserver.config.custom.WeddingConfig; +import org.l2jmobius.gameserver.data.AugmentationData; +import org.l2jmobius.gameserver.data.MerchantPriceConfigTable; +import org.l2jmobius.gameserver.data.SchemeBufferTable; +import org.l2jmobius.gameserver.data.sql.AnnouncementsTable; +import org.l2jmobius.gameserver.data.sql.CharInfoTable; +import org.l2jmobius.gameserver.data.sql.CharSummonTable; +import org.l2jmobius.gameserver.data.sql.ClanHallTable; +import org.l2jmobius.gameserver.data.sql.ClanTable; +import org.l2jmobius.gameserver.data.sql.CrestTable; +import org.l2jmobius.gameserver.data.sql.OfflinePlayTable; +import org.l2jmobius.gameserver.data.sql.OfflineTraderTable; +import org.l2jmobius.gameserver.data.xml.AdminData; +import org.l2jmobius.gameserver.data.xml.ArmorSetData; +import org.l2jmobius.gameserver.data.xml.BuyListData; +import org.l2jmobius.gameserver.data.xml.CategoryData; +import org.l2jmobius.gameserver.data.xml.ClassListData; +import org.l2jmobius.gameserver.data.xml.CubicData; +import org.l2jmobius.gameserver.data.xml.DoorData; +import org.l2jmobius.gameserver.data.xml.DynamicExpRateData; +import org.l2jmobius.gameserver.data.xml.EnchantItemData; +import org.l2jmobius.gameserver.data.xml.EnchantItemGroupsData; +import org.l2jmobius.gameserver.data.xml.EnchantItemHPBonusData; +import org.l2jmobius.gameserver.data.xml.EnchantSkillTreeData; +import org.l2jmobius.gameserver.data.xml.ExperienceData; +import org.l2jmobius.gameserver.data.xml.ExperienceLossData; +import org.l2jmobius.gameserver.data.xml.FenceData; +import org.l2jmobius.gameserver.data.xml.FishData; +import org.l2jmobius.gameserver.data.xml.FishingMonstersData; +import org.l2jmobius.gameserver.data.xml.FishingRodsData; +import org.l2jmobius.gameserver.data.xml.HennaData; +import org.l2jmobius.gameserver.data.xml.HitConditionBonusData; +import org.l2jmobius.gameserver.data.xml.InitialEquipmentData; +import org.l2jmobius.gameserver.data.xml.InitialShortcutData; +import org.l2jmobius.gameserver.data.xml.ItemData; +import org.l2jmobius.gameserver.data.xml.KarmaLossData; +import org.l2jmobius.gameserver.data.xml.LevelUpCrystalData; +import org.l2jmobius.gameserver.data.xml.MapRegionData; +import org.l2jmobius.gameserver.data.xml.MultisellData; +import org.l2jmobius.gameserver.data.xml.NpcData; +import org.l2jmobius.gameserver.data.xml.NpcNameLocalisationData; +import org.l2jmobius.gameserver.data.xml.OptionData; +import org.l2jmobius.gameserver.data.xml.PetDataTable; +import org.l2jmobius.gameserver.data.xml.PetSkillData; +import org.l2jmobius.gameserver.data.xml.PlayerTemplateData; +import org.l2jmobius.gameserver.data.xml.RecipeData; +import org.l2jmobius.gameserver.data.xml.SendMessageLocalisationData; +import org.l2jmobius.gameserver.data.xml.SiegeScheduleData; +import org.l2jmobius.gameserver.data.xml.SkillData; +import org.l2jmobius.gameserver.data.xml.SkillLearnData; +import org.l2jmobius.gameserver.data.xml.SkillTreeData; +import org.l2jmobius.gameserver.data.xml.SpawnData; +import org.l2jmobius.gameserver.data.xml.StaticObjectData; +import org.l2jmobius.gameserver.data.xml.TeleporterData; +import org.l2jmobius.gameserver.entity.World; +import org.l2jmobius.gameserver.entity.groups.matching.PartyMatchRoomList; +import org.l2jmobius.gameserver.entity.groups.matching.PartyMatchWaitingList; +import org.l2jmobius.gameserver.entity.spawns.AutoSpawnHandler; +import org.l2jmobius.gameserver.geoengine.GeoEngine; +import org.l2jmobius.gameserver.handler.EffectHandler; +import org.l2jmobius.gameserver.managers.AntiFeedManager; +import org.l2jmobius.gameserver.managers.BoatManager; +import org.l2jmobius.gameserver.managers.CHSiegeManager; +import org.l2jmobius.gameserver.managers.CaptchaManager; +import org.l2jmobius.gameserver.managers.CastleManager; +import org.l2jmobius.gameserver.managers.CastleManorManager; +import org.l2jmobius.gameserver.managers.ClanHallAuctionManager; +import org.l2jmobius.gameserver.managers.CoupleManager; +import org.l2jmobius.gameserver.managers.CursedWeaponsManager; +import org.l2jmobius.gameserver.managers.CustomMailManager; +import org.l2jmobius.gameserver.managers.DailyResetManager; +import org.l2jmobius.gameserver.managers.DayNightSpawnManager; +import org.l2jmobius.gameserver.managers.DimensionalRiftManager; +import org.l2jmobius.gameserver.managers.EventDropManager; +import org.l2jmobius.gameserver.managers.FakePlayerAiTaskManager; +import org.l2jmobius.gameserver.managers.FakePlayerChatLines; +import org.l2jmobius.gameserver.managers.FakePlayerChatManager; +import org.l2jmobius.gameserver.managers.FakePlayerCombatData; +import org.l2jmobius.gameserver.managers.FakePlayerMemoryManager; +import org.l2jmobius.gameserver.managers.FakePlayerDashboard; +import org.l2jmobius.gameserver.managers.FakePlayerHeadlessManager; +import org.l2jmobius.gameserver.managers.FakePlayerIntentParser; +import org.l2jmobius.gameserver.managers.FakePlayerRumorManager; +import org.l2jmobius.gameserver.managers.FakePlayerProgressionManager; +import org.l2jmobius.gameserver.managers.FishingChampionshipManager; +import org.l2jmobius.gameserver.managers.GlobalVariablesManager; +import org.l2jmobius.gameserver.managers.GrandBossManager; +import org.l2jmobius.gameserver.managers.IdManager; +import org.l2jmobius.gameserver.managers.InstanceManager; +import org.l2jmobius.gameserver.managers.ItemsOnGroundManager; +import org.l2jmobius.gameserver.managers.MercTicketManager; +import org.l2jmobius.gameserver.managers.PcCafePointsManager; +import org.l2jmobius.gameserver.managers.PetitionManager; +import org.l2jmobius.gameserver.managers.PrecautionaryRestartManager; +import org.l2jmobius.gameserver.managers.PremiumManager; +import org.l2jmobius.gameserver.managers.PunishmentManager; +import org.l2jmobius.gameserver.managers.RaidBossPointsManager; +import org.l2jmobius.gameserver.managers.RaidBossSpawnManager; +import org.l2jmobius.gameserver.managers.ScriptManager; +import org.l2jmobius.gameserver.managers.SellBuffsManager; +import org.l2jmobius.gameserver.managers.ServerRestartManager; +import org.l2jmobius.gameserver.managers.SiegeManager; +import org.l2jmobius.gameserver.managers.WalkingManager; +import org.l2jmobius.gameserver.managers.ZoneManager; +import org.l2jmobius.gameserver.managers.games.LotteryManager; +import org.l2jmobius.gameserver.managers.games.MonsterRaceManager; +import org.l2jmobius.gameserver.mechanics.events.EventDispatcher; +import org.l2jmobius.gameserver.mechanics.events.EventType; +import org.l2jmobius.gameserver.mechanics.events.holders.OnServerStart; +import org.l2jmobius.gameserver.mechanics.olympiad.Hero; +import org.l2jmobius.gameserver.mechanics.olympiad.Olympiad; +import org.l2jmobius.gameserver.mechanics.sevensigns.SevenSigns; +import org.l2jmobius.gameserver.mechanics.sevensigns.SevenSignsFestival; +import org.l2jmobius.gameserver.network.GameClient; +import org.l2jmobius.gameserver.network.GamePacketHandler; +import org.l2jmobius.gameserver.network.SystemMessageId; +import org.l2jmobius.gameserver.scripting.ScriptEngine; +import org.l2jmobius.gameserver.taskmanagers.GameTimeTaskManager; +import org.l2jmobius.gameserver.taskmanagers.ItemLifeTimeTaskManager; +import org.l2jmobius.gameserver.taskmanagers.ItemsAutoDestroyTaskManager; +import org.l2jmobius.gameserver.ui.Gui; +import org.l2jmobius.gameserver.util.DeadlockWatcher; + +public class GameServer +{ + private static final Logger LOGGER = Logger.getLogger(GameServer.class.getName()); + + private static final long START_TIME = System.currentTimeMillis(); + private long _sectionStartTime = START_TIME; + private String _previousSectionName = null; + + public GameServer() throws Exception + { + // GUI + InterfaceConfig.load(); + if (InterfaceConfig.ENABLE_GUI) + { + System.out.println("GameServer: Running in GUI mode."); + new Gui(); + } + + // Create log folder + final File logFolder = new File(".", "log"); + logFolder.mkdir(); + + // Create input stream for log file -- or store file data into memory. + try (InputStream is = new FileInputStream(new File("./log.cfg"))) + { + LogManager.getLogManager().readConfiguration(is); + } + + // Initialize config + ConfigLoader.init(); + + printSection("Database"); + DatabaseFactory.init(); + + printSection("ThreadPool"); + ThreadPool.init(); + + // Start game time task manager early. + GameTimeTaskManager.getInstance(); + + printSection("IdManager"); + IdManager.getInstance(); + + printSection("Scripting Engine"); + EventDispatcher.getInstance(); + ScriptEngine.getInstance(); + + printSection("World"); + InstanceManager.getInstance(); + World.init(); + MapRegionData.getInstance(); + AnnouncementsTable.getInstance(); + GlobalVariablesManager.getInstance(); + + printSection("Data"); + CategoryData.getInstance(); + CubicData.getInstance(); + DynamicExpRateData.getInstance(); + + printSection("Skills"); + EffectHandler.getInstance().executeScript(); + EnchantSkillTreeData.getInstance(); + SkillTreeData.getInstance(); + SkillData.getInstance(); + PetSkillData.getInstance(); + + printSection("Items"); + ItemData.getInstance(); + EnchantItemGroupsData.getInstance(); + EnchantItemData.getInstance(); + OptionData.getInstance(); + EnchantItemHPBonusData.getInstance(); + MerchantPriceConfigTable.getInstance().loadInstances(); + BuyListData.getInstance(); + MultisellData.getInstance(); + RecipeData.getInstance(); + ArmorSetData.getInstance(); + FishData.getInstance(); + FishingMonstersData.getInstance(); + FishingRodsData.getInstance(); + HennaData.getInstance(); + PcCafePointsManager.getInstance(); + ItemLifeTimeTaskManager.getInstance(); + + printSection("Characters"); + ClassListData.getInstance(); + InitialEquipmentData.getInstance(); + InitialShortcutData.getInstance(); + ExperienceData.getInstance(); + ExperienceLossData.getInstance(); + KarmaLossData.getInstance(); + HitConditionBonusData.getInstance(); + PlayerTemplateData.getInstance(); + CharInfoTable.getInstance(); + AdminData.getInstance(); + RaidBossPointsManager.getInstance(); + PetDataTable.getInstance(); + CharSummonTable.getInstance().init(); + CaptchaManager.getInstance(); + + if (PremiumSystemConfig.PREMIUM_SYSTEM_ENABLED) + { + LOGGER.info("PremiumManager: Premium system is enabled."); + PremiumManager.getInstance(); + } + + printSection("Clans"); + ClanTable.getInstance(); + CHSiegeManager.getInstance(); + ClanHallTable.getInstance(); + ClanHallAuctionManager.getInstance(); + + printSection("Geodata"); + GeoEngine.getInstance(); + + printSection("NPCs"); + DoorData.getInstance(); + FenceData.getInstance(); + SkillLearnData.getInstance(); + NpcData.getInstance(); + LevelUpCrystalData.getInstance(); + FakePlayerChatManager.getInstance(); + FakePlayerCombatData.getInstance(); + FakePlayerAiTaskManager.getInstance(); + FakePlayerChatLines.getInstance(); + FakePlayerMemoryManager.getInstance(); + FakePlayerRumorManager.getInstance(); + FakePlayerIntentParser.getInstance(); + FakePlayerDashboard.getInstance(); + WalkingManager.getInstance(); + StaticObjectData.getInstance(); + CastleManager.getInstance().loadInstances(); + SchemeBufferTable.getInstance(); + ZoneManager.getInstance(); + GrandBossManager.getInstance().initZones(); + EventDropManager.getInstance(); + + printSection("Olympiad"); + Olympiad.getInstance(); + Hero.getInstance(); + + printSection("Seven Signs"); + SevenSigns.getInstance(); + + // Call to load caches. + printSection("Cache"); + HtmCache.getInstance(); + CrestTable.getInstance(); + TeleporterData.getInstance(); + PartyMatchWaitingList.getInstance(); + PartyMatchRoomList.getInstance(); + PetitionManager.getInstance(); + AugmentationData.getInstance(); + CursedWeaponsManager.getInstance(); + + if (SellBuffsConfig.SELLBUFF_ENABLED) + { + SellBuffsManager.getInstance(); + } + + if (MultilingualSupportConfig.MULTILANG_ENABLE) + { + SystemMessageId.loadLocalisations(); + SendMessageLocalisationData.getInstance(); + NpcNameLocalisationData.getInstance(); + } + + printSection("Scripts"); + ScriptManager.getInstance(); + BoatManager.getInstance(); + + try + { + LOGGER.info("Loading server scripts..."); + ScriptEngine.getInstance().executeScript(ScriptEngine.MASTER_HANDLER_FILE); + ScriptEngine.getInstance().executeScriptList(); + } + catch (Exception e) + { + LOGGER.log(Level.WARNING, "Failed to execute script list!", e); + } + + SpawnData.getInstance(); + FakePlayerProgressionManager.getInstance(); + FakePlayerHeadlessManager.getInstance(); + DayNightSpawnManager.getInstance().trim().notifyChangeMode(); + DimensionalRiftManager.getInstance(); + RaidBossSpawnManager.getInstance(); + + printSection("Siege"); + SiegeManager.getInstance().getSieges(); + CastleManager.getInstance().activateInstances(); + SiegeScheduleData.getInstance(); + MerchantPriceConfigTable.getInstance().updateReferences(); + CastleManorManager.getInstance(); + MercTicketManager.getInstance(); + ScriptManager.getInstance().report(); + + if (GeneralConfig.SAVE_DROPPED_ITEM) + { + ItemsOnGroundManager.getInstance(); + } + + if ((GeneralConfig.AUTODESTROY_ITEM_AFTER > 0) || (GeneralConfig.HERB_AUTO_DESTROY_TIME > 0)) + { + ItemsAutoDestroyTaskManager.getInstance(); + } + + MonsterRaceManager.getInstance(); + LotteryManager.getInstance(); + SevenSigns.getInstance().spawnSevenSignsNPC(); + SevenSignsFestival.getInstance(); + AutoSpawnHandler.getInstance(); + LOGGER.info("AutoSpawnHandler: Loaded " + AutoSpawnHandler.getInstance().size() + " handlers in total."); + + if (WeddingConfig.ALLOW_WEDDING) + { + CoupleManager.getInstance(); + } + + if (GeneralConfig.ALT_FISH_CHAMPIONSHIP_ENABLED) + { + FishingChampionshipManager.getInstance(); + } + + DailyResetManager.getInstance(); + AntiFeedManager.getInstance().registerEvent(AntiFeedManager.GAME_ID); + + if (OfflinePlayConfig.ENABLE_OFFLINE_PLAY_COMMAND) + { + AntiFeedManager.getInstance().registerEvent(AntiFeedManager.OFFLINE_PLAY); + } + + if (CustomMailManagerConfig.CUSTOM_MAIL_MANAGER_ENABLED) + { + CustomMailManager.getInstance(); + } + + if (EventDispatcher.getInstance().hasListener(EventType.ON_SERVER_START)) + { + EventDispatcher.getInstance().notifyEventAsync(new OnServerStart()); + } + + PunishmentManager.getInstance(); + + Runtime.getRuntime().addShutdownHook(Shutdown.getInstance()); + LOGGER.info("IdManager: Free ObjectID's remaining: " + IdManager.getInstance().getAvailableIdCount()); + + if ((OfflineTradeConfig.OFFLINE_TRADE_ENABLE || OfflineTradeConfig.OFFLINE_CRAFT_ENABLE) && OfflineTradeConfig.RESTORE_OFFLINERS) + { + OfflineTraderTable.getInstance().restoreOfflineTraders(); + } + + if (OfflinePlayConfig.ENABLE_OFFLINE_PLAY_COMMAND && OfflinePlayConfig.RESTORE_AUTO_PLAY_OFFLINERS) + { + OfflinePlayTable.getInstance().restoreOfflinePlayers(); + } + + if (ServerConfig.SERVER_RESTART_SCHEDULE_ENABLED) + { + ServerRestartManager.getInstance(); + } + + if (ServerConfig.PRECAUTIONARY_RESTART_ENABLED) + { + PrecautionaryRestartManager.getInstance(); + } + + if (ServerConfig.DEADLOCK_WATCHER) + { + final DeadlockWatcher deadlockWatcher = new DeadlockWatcher(Duration.ofSeconds(ServerConfig.DEADLOCK_CHECK_INTERVAL), () -> + { + if (ServerConfig.RESTART_ON_DEADLOCK) + { + World.broadcastToAllOnlinePlayers("Server has stability issues - restarting now."); + Shutdown.getInstance().startShutdown(null, 60, true); + } + }); + deadlockWatcher.setDaemon(true); + deadlockWatcher.start(); + } + + System.gc(); + final long totalMem = Runtime.getRuntime().maxMemory() / 1048576; + LOGGER.info(StringUtil.concat(getClass().getSimpleName(), ": Started, using ", getUsedMemoryMB(), " of ", totalMem, " MB total memory.")); + LOGGER.info(StringUtil.concat(getClass().getSimpleName(), ": Maximum number of connected players is ", ServerConfig.MAXIMUM_ONLINE_USERS, ".")); + LOGGER.info(StringUtil.concat(getClass().getSimpleName(), ": Server loaded in ", ((System.currentTimeMillis() - START_TIME) / 1000), " seconds.")); + + new ConnectionManager<>(new InetSocketAddress(ServerConfig.PORT_GAME), GameClient::new, new GamePacketHandler()); + + LoginServerThread.getInstance().start(); + + Toolkit.getDefaultToolkit().beep(); + } + + private void printSection(String section) + { + if (DevelopmentConfig.LOG_SERVER_LOAD_TIMES) + { + // Calculate elapsed time for previous section. + final long currentTime = System.currentTimeMillis(); + final long sectionElapsed = currentTime - _sectionStartTime; + + // Log elapsed time for previous section if not the first section. + if (_previousSectionName != null) + { + LOGGER.info(StringUtil.concat("...section [ ", _previousSectionName, " ] loaded in ", TimeUtil.formatDuration(sectionElapsed), ".")); + } + + // Update for next measurement. + _previousSectionName = section; + _sectionStartTime = currentTime; + } + + // Build and log the new section header. + final StringBuilder sb = new StringBuilder(61); + sb.append("=[ ").append(section).append(" ]"); + while (sb.length() < 61) + { + sb.insert(0, '-'); + } + LOGGER.info(sb.toString()); + } + + public long getUsedMemoryMB() + { + return (Runtime.getRuntime().totalMemory() - Runtime.getRuntime().freeMemory()) / 1048576; + } + + public static long getStartTime() + { + return START_TIME; + } + + public static void main(String[] args) throws Exception + { + new GameServer(); + } +} diff --git a/src_mobius/mobius/L2J_Mobius_CT_0_Interlude/java/org/l2jmobius/gameserver/ai/AttackableAI.java b/src_mobius/mobius/L2J_Mobius_CT_0_Interlude/java/org/l2jmobius/gameserver/ai/AttackableAI.java index 953e918..c83d47b 100644 --- a/src_mobius/mobius/L2J_Mobius_CT_0_Interlude/java/org/l2jmobius/gameserver/ai/AttackableAI.java +++ b/src_mobius/mobius/L2J_Mobius_CT_0_Interlude/java/org/l2jmobius/gameserver/ai/AttackableAI.java @@ -491,11 +491,15 @@ public class AttackableAI extends CreatureAI return; } - if (npc.isFakePlayer() && npc.isAggressive()) + if (npc.isFakePlayer()) { final List droppedItems = npc.getFakePlayerDrops(); if (droppedItems.isEmpty()) { + if (!npc.isAggressive()) + { + return; + } final Creature nearestTarget = World.getNearestVisibleObjectInRange(npc, Creature.class, npc.getAggroRange(), t -> (t != _actor) && !t.isDead() && ((FakePlayersConfig.FAKE_PLAYER_AGGRO_FPC && t.isFakePlayer()) || (FakePlayersConfig.FAKE_PLAYER_AGGRO_MONSTERS && t.isMonster() && !t.isFakePlayer()) || (FakePlayersConfig.FAKE_PLAYER_AGGRO_PLAYERS && t.isPlayer())) && (npc.getHating(t) == 0)); if (nearestTarget != null) { @@ -2748,4 +2752,4 @@ public class AttackableAI extends CreatureAI return true; } -} \ No newline at end of file +} \ No newline at end of file diff --git a/src_mobius/mobius/L2J_Mobius_CT_0_Interlude/java/org/l2jmobius/gameserver/config/custom/FakePlayersConfig.java b/src_mobius/mobius/L2J_Mobius_CT_0_Interlude/java/org/l2jmobius/gameserver/config/custom/FakePlayersConfig.java index 85a290c..d57a317 100644 --- a/src_mobius/mobius/L2J_Mobius_CT_0_Interlude/java/org/l2jmobius/gameserver/config/custom/FakePlayersConfig.java +++ b/src_mobius/mobius/L2J_Mobius_CT_0_Interlude/java/org/l2jmobius/gameserver/config/custom/FakePlayersConfig.java @@ -43,6 +43,23 @@ public class FakePlayersConfig public static boolean FAKE_PLAYER_AGGRO_FPC; public static boolean FAKE_PLAYER_CAN_DROP_ITEMS; public static boolean FAKE_PLAYER_CAN_PICKUP; + public static boolean FAKE_PLAYER_LLM_CHAT; + public static String FAKE_PLAYER_LLM_URL; + public static String FAKE_PLAYER_LLM_MODEL; + public static String FAKE_PLAYER_LLM_LANGUAGE; + public static int FAKE_PLAYER_LLM_TIMEOUT; + public static int FAKE_PLAYER_AMBIENT_CHAT_CHANCE; + public static int FAKE_PLAYER_COMBAT_CHAT_CHANCE; + public static int FAKE_PLAYER_LOCAL_CHAT_REPLY_CHANCE; + public static int FAKE_PLAYER_AI_TICK; + public static boolean FAKE_PLAYER_PROGRESSION; + public static double FAKE_PLAYER_XP_RATE; + public static int FAKE_PLAYER_HEADLESS_COUNT; + public static boolean FAKE_PLAYER_TRADING; + public static int FAKE_PLAYER_TRADE_DURATION; + public static int FAKE_PLAYER_TRADE_COOLDOWN; + public static int FAKE_PLAYER_TRADE_SHOUT_INTERVAL; + public static int FAKE_PLAYER_TRADE_CHANCE; public static void load() { @@ -58,5 +75,22 @@ public class FakePlayersConfig FAKE_PLAYER_AGGRO_FPC = config.getBoolean("FakePlayerAggroFPC", false); FAKE_PLAYER_CAN_DROP_ITEMS = config.getBoolean("FakePlayerCanDropItems", false); FAKE_PLAYER_CAN_PICKUP = config.getBoolean("FakePlayerCanPickup", false); + FAKE_PLAYER_LLM_CHAT = config.getBoolean("FakePlayerLlmChat", false); + FAKE_PLAYER_LLM_URL = config.getString("FakePlayerLlmUrl", "http://127.0.0.1:11434/api/generate"); + FAKE_PLAYER_LLM_MODEL = config.getString("FakePlayerLlmModel", "gemma3"); + FAKE_PLAYER_LLM_LANGUAGE = config.getString("FakePlayerLlmLanguage", "русский"); + FAKE_PLAYER_LLM_TIMEOUT = config.getInt("FakePlayerLlmTimeout", 15000); + FAKE_PLAYER_AMBIENT_CHAT_CHANCE = config.getInt("FakePlayerAmbientChatChance", 30); + FAKE_PLAYER_COMBAT_CHAT_CHANCE = config.getInt("FakePlayerCombatChatChance", 60); + FAKE_PLAYER_LOCAL_CHAT_REPLY_CHANCE = config.getInt("FakePlayerLocalChatReplyChance", 40); + FAKE_PLAYER_AI_TICK = config.getInt("FakePlayerAiTick", 5); + FAKE_PLAYER_PROGRESSION = config.getBoolean("FakePlayerProgression", false); + FAKE_PLAYER_XP_RATE = config.getDouble("FakePlayerXpRate", 3); + FAKE_PLAYER_HEADLESS_COUNT = config.getInt("FakePlayerHeadlessCount", 20); + FAKE_PLAYER_TRADING = config.getBoolean("FakePlayerTrading", false); + FAKE_PLAYER_TRADE_DURATION = config.getInt("FakePlayerTradeDuration", 60); + FAKE_PLAYER_TRADE_COOLDOWN = config.getInt("FakePlayerTradeCooldown", 120); + FAKE_PLAYER_TRADE_SHOUT_INTERVAL = config.getInt("FakePlayerTradeShoutInterval", 180); + FAKE_PLAYER_TRADE_CHANCE = config.getInt("FakePlayerTradeChance", 30); } } diff --git a/src_mobius/mobius/L2J_Mobius_CT_0_Interlude/java/org/l2jmobius/gameserver/entity/actor/Attackable.java b/src_mobius/mobius/L2J_Mobius_CT_0_Interlude/java/org/l2jmobius/gameserver/entity/actor/Attackable.java index 4f95312..8d7ba11 100644 --- a/src_mobius/mobius/L2J_Mobius_CT_0_Interlude/java/org/l2jmobius/gameserver/entity/actor/Attackable.java +++ b/src_mobius/mobius/L2J_Mobius_CT_0_Interlude/java/org/l2jmobius/gameserver/entity/actor/Attackable.java @@ -62,6 +62,7 @@ import org.l2jmobius.gameserver.entity.groups.Party; import org.l2jmobius.gameserver.entity.item.ItemTemplate; import org.l2jmobius.gameserver.entity.item.holders.ItemHolder; import org.l2jmobius.gameserver.entity.item.instance.Item; +import org.l2jmobius.gameserver.managers.FakePlayerProgressionManager; import org.l2jmobius.gameserver.managers.CursedWeaponsManager; import org.l2jmobius.gameserver.managers.EventDropManager; import org.l2jmobius.gameserver.managers.PcCafePointsManager; @@ -318,6 +319,18 @@ public class Attackable extends Npc return false; } + // Fake player progression. + if ((killer != null) && killer.isFakePlayer() && !isFakePlayer() && (killer instanceof Npc fakeKiller)) + { + FakePlayerProgressionManager.getInstance().onKill(fakeKiller, this); + } + + // Fake player memory: remember the player who killed this bot. + if (isFakePlayer() && (killer != null) && (killer.asPlayer() != null)) + { + FakePlayerProgressionManager.getInstance().onBotKilled(this, killer.asPlayer()); + } + // Delayed notification. if (killer != null) { diff --git a/src_mobius/mobius/L2J_Mobius_CT_0_Interlude/java/org/l2jmobius/gameserver/entity/actor/Npc.java b/src_mobius/mobius/L2J_Mobius_CT_0_Interlude/java/org/l2jmobius/gameserver/entity/actor/Npc.java index 6dd6cb9..3524b4a 100644 --- a/src_mobius/mobius/L2J_Mobius_CT_0_Interlude/java/org/l2jmobius/gameserver/entity/actor/Npc.java +++ b/src_mobius/mobius/L2J_Mobius_CT_0_Interlude/java/org/l2jmobius/gameserver/entity/actor/Npc.java @@ -1866,7 +1866,28 @@ public class Npc extends Creature @Override public String getName() { - return getTemplate().getName(); + final String customName = super.getName(); + return (customName != null) && !customName.isEmpty() ? customName : getTemplate().getName(); + } + + private int _fakePlayerClanId = 0; + + /** + * @return per instance clan override for fake players, falling back to the template value. + */ + public int getFakePlayerClanId() + { + if (_fakePlayerClanId > 0) + { + return _fakePlayerClanId; + } + final FakePlayerHolder holder = getTemplate().getFakePlayerInfo(); + return (holder != null) ? holder.getClanId() : 0; + } + + public void setFakePlayerClanId(int clanId) + { + _fakePlayerClanId = clanId; } @Override diff --git a/src_mobius/mobius/L2J_Mobius_CT_0_Interlude/java/org/l2jmobius/gameserver/entity/actor/Player.java b/src_mobius/mobius/L2J_Mobius_CT_0_Interlude/java/org/l2jmobius/gameserver/entity/actor/Player.java index 899b3a5..1f9d064 100644 --- a/src_mobius/mobius/L2J_Mobius_CT_0_Interlude/java/org/l2jmobius/gameserver/entity/actor/Player.java +++ b/src_mobius/mobius/L2J_Mobius_CT_0_Interlude/java/org/l2jmobius/gameserver/entity/actor/Player.java @@ -4300,6 +4300,18 @@ public class Player extends Playable return getAllyId() == 0 ? 0 : _clan.getAllyCrestId(); } + private boolean _headlessBot = false; + + public boolean isHeadlessBot() + { + return _headlessBot; + } + + public void setHeadlessBot(boolean value) + { + _headlessBot = value; + } + @Override public void sendPacket(ServerPacket packet) { @@ -5020,6 +5032,12 @@ public class Player extends Playable return false; } + // Headless bot memory: remember the player who killed it. + if (_headlessBot && (killer != null) && (killer.asPlayer() != null) && (killer != this)) + { + org.l2jmobius.gameserver.managers.FakePlayerHeadlessManager.getInstance().onBotKilled(this, killer.asPlayer()); + } + if (isMounted()) { stopFeed(); diff --git a/src_mobius/mobius/L2J_Mobius_CT_0_Interlude/java/org/l2jmobius/gameserver/managers/FakePlayerAiTaskManager.java b/src_mobius/mobius/L2J_Mobius_CT_0_Interlude/java/org/l2jmobius/gameserver/managers/FakePlayerAiTaskManager.java new file mode 100644 index 0000000..98d6641 --- /dev/null +++ b/src_mobius/mobius/L2J_Mobius_CT_0_Interlude/java/org/l2jmobius/gameserver/managers/FakePlayerAiTaskManager.java @@ -0,0 +1,464 @@ +/* + * Copyright (c) 2013 L2jMobius + * + * Permission is hereby granted, free of charge, to any person obtaining a copy + * of this software and associated documentation files (the "Software"), to deal + * in the Software without restriction, including without limitation the rights + * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell + * copies of the Software, and to permit persons to whom the Software is + * furnished to do so, subject to the following conditions: + * + * The above copyright notice and this permission notice shall be + * included in all copies or substantial portions of the Software. + * + * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR + * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, + * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE + * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, + * WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR + * IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. + */ +package org.l2jmobius.gameserver.managers; + +import java.util.ArrayList; +import java.util.List; +import java.util.Map; +import java.util.concurrent.ConcurrentHashMap; +import java.util.logging.Logger; + +import org.l2jmobius.commons.threads.ThreadPool; +import org.l2jmobius.commons.util.Rnd; +import org.l2jmobius.gameserver.config.custom.FakePlayersConfig; +import org.l2jmobius.gameserver.entity.World; +import org.l2jmobius.gameserver.data.sql.ClanTable; +import org.l2jmobius.gameserver.entity.WorldObject; +import org.l2jmobius.gameserver.entity.clan.Clan; +import org.l2jmobius.gameserver.entity.actor.Attackable; +import org.l2jmobius.gameserver.entity.actor.Npc; +import org.l2jmobius.gameserver.entity.actor.Player; +import org.l2jmobius.gameserver.entity.actor.instance.Monster; + +/** + * Periodic "brain" for fake players. + * Built-in AttackableAI already handles aggression (farm and gank) for aggressive + * fake player templates, while WalkingManager handles route movement. This task adds: + *
    + *
  • Helper personality: assist nearby real players against monsters.
  • + *
  • Combat taunts: one line when a fake player engages a real player.
  • + *
  • Ambient chatter when real players are around.
  • + *
+ * Personality is read from npc template parameter "fpcPersonality" (ganker, helper, neutral). + * @author Mobius SPP + */ +public class FakePlayerAiTaskManager +{ + private static final Logger LOGGER = Logger.getLogger(FakePlayerAiTaskManager.class.getName()); + + private static final int LIST_REFRESH_TICKS = 12; + private static final int PLAYER_NOTICE_RANGE = 900; + private static final int AMBIENT_RANGE = 700; + private static final long AMBIENT_COOLDOWN = 90000; + private static final long TAUNT_COOLDOWN = 20000; + + + + + private final List _fakePlayers = new ArrayList<>(); + private final Map _states = new ConcurrentHashMap<>(); + private int _tick = 0; + + private static class BotState + { + long lastChat = 0; + long lastHelpCredit = 0; + long lastHelpCall = 0; + int lastPvpTargetId = 0; + int companionPlayerId = 0; + long companionUntil = 0; + int pendingInvitePlayerId = 0; + long pendingInviteUntil = 0; + } + + protected FakePlayerAiTaskManager() + { + if (FakePlayersConfig.FAKE_PLAYERS_ENABLED) + { + final long interval = Math.max(2, FakePlayersConfig.FAKE_PLAYER_AI_TICK) * 1000; + ThreadPool.scheduleAtFixedRate(this::tick, interval, interval); + LOGGER.info(getClass().getSimpleName() + ": Started with " + (interval / 1000) + " second tick."); + } + } + + private void tick() + { + try + { + if ((_tick % LIST_REFRESH_TICKS) == 0) + { + refreshList(); + } + _tick++; + + synchronized (_fakePlayers) + { + for (Npc npc : _fakePlayers) + { + try + { + handleBot(npc); + } + catch (Exception e) + { + // Never let a single bot break the loop. + } + } + } + } + catch (Exception e) + { + // Task must survive. + } + } + + private void refreshList() + { + synchronized (_fakePlayers) + { + _fakePlayers.clear(); + for (WorldObject object : World.getVisibleObjects()) + { + if ((object instanceof Npc npc) && npc.isFakePlayer()) + { + _fakePlayers.add(npc); + } + } + } + } + + private void handleBot(Npc npc) + { + if (npc.isDead() || !npc.isSpawned()) + { + _states.remove(npc.getObjectId()); + return; + } + + final BotState state = _states.computeIfAbsent(npc.getObjectId(), key -> new BotState()); + final long now = System.currentTimeMillis(); + + // Busy collecting loot - let core AI finish the pickup. + if (!npc.isInCombat() && !npc.getFakePlayerDrops().isEmpty()) + { + return; + } + + // Companion mode: escort the player, assist their targets. + if (state.companionPlayerId != 0) + { + if (now >= state.companionUntil) + { + state.companionPlayerId = 0; + FakePlayerChatManager.getInstance().manageEventChat(npc, "Ты пофармил с игроком в паре и теперь уходишь по своим делам. Попрощайся.", FakePlayerChatLines.getInstance().pick("companion_done", null), "companion_done"); + } + else + { + final WorldObject companionObject = World.findObject(state.companionPlayerId); + if (!(companionObject instanceof Player companion) || companion.isDead() || (npc.calculateDistance2D(companion) > 4000)) + { + state.companionPlayerId = 0; + } + else + { + if (!npc.isInCombat() && (npc instanceof Attackable attackableComp)) + { + final WorldObject companionTarget = companion.getTarget(); + if ((companionTarget instanceof Monster monster) && companion.isInCombat() && !monster.isDead()) + { + attackableComp.addDamageHate(monster, 0, 300); + npc.setRunning(); + npc.getAI().setIntentionAttack(monster); + } + else if (npc.calculateDistance2D(companion) > 250) + { + npc.setRunning(); + npc.getAI().setIntentionFollow(companion); + } + } + return; + } + } + } + + // Combat: taunt once per new player victim. + final WorldObject target = npc.getTarget(); + + // Credit players who help this bot kill its monster target. + if (npc.isInCombat() && (target instanceof Monster monsterTarget) && ((now - state.lastHelpCredit) > 300000)) + { + final Player helperPlayer = World.getNearestVisibleObjectInRange(npc, Player.class, 900, nearby -> !nearby.isDead() && nearby.isInCombat() && (nearby.getTarget() == monsterTarget)); + if (helperPlayer != null) + { + state.lastHelpCredit = now; + FakePlayerMemoryManager.getInstance().onHelpedBy(FakePlayerProgressionManager.getInstance().getCharacterId(npc.getObjectId()), helperPlayer.getName()); + } + } + + if (npc.isInCombat() && (target instanceof Player victim)) + { + // Losing the fight: call clanmates for help. + if ((npc.getCurrentHp() < (npc.getMaxHp() * 0.6)) && ((now - state.lastHelpCall) > 30000)) + { + state.lastHelpCall = now; + FakePlayerChatManager.getInstance().broadcastShout(npc, FakePlayerChatLines.getInstance().pick("call_help", null)); + final int clanId = npc.getFakePlayerClanId(); + World.forEachVisibleObjectInRange(npc, Npc.class, 1500, ally -> + { + if (ally.isFakePlayer() && (ally != npc) && !ally.isDead() && !ally.isInCombat() && (ally.getFakePlayerClanId() == clanId) && (ally instanceof Attackable allyAttackable)) + { + allyAttackable.addDamageHate(victim, 0, 400); + ally.setRunning(); + ally.getAI().setIntentionAttack(victim); + } + }); + } + + if ((victim.getObjectId() != state.lastPvpTargetId) && ((now - state.lastChat) > TAUNT_COOLDOWN)) + { + state.lastPvpTargetId = victim.getObjectId(); + state.lastChat = now; + if (Rnd.get(100) < FakePlayersConfig.FAKE_PLAYER_COMBAT_CHAT_CHANCE) + { + FakePlayerChatManager.getInstance().manageEventChat(npc, "Ты только что напал на игрока по имени " + victim.getName() + ". Крикни ему что-нибудь дерзкое или насмешливое.", FakePlayerChatLines.getInstance().compose(botIdOf(npc), "gank_start", personalityOf(npc), "target", victim.getName()), "gank_start"); + } + } + return; + } + state.lastPvpTargetId = 0; + + // Clan war: any bot attacks members of clans at war with its own clan. + final int botClanId = npc.getFakePlayerClanId(); + if ((botClanId > 0) && !npc.isInCombat() && (npc instanceof Attackable attackableWar)) + { + final Clan botClan = ClanTable.getInstance().getClan(botClanId); + if (botClan != null) + { + final Player enemy = World.getNearestVisibleObjectInRange(npc, Player.class, PLAYER_NOTICE_RANGE, nearby -> !nearby.isDead() && !nearby.isInvisible() && (nearby.getClan() != null) && (botClan.isAtWarWith(nearby.getClanId()) || nearby.getClan().isAtWarWith(botClanId))); + if (enemy != null) + { + attackableWar.addDamageHate(enemy, 0, 300); + npc.setRunning(); + npc.getAI().setIntentionAttack(enemy); + if ((now - state.lastChat) > TAUNT_COOLDOWN) + { + state.lastChat = now; + if (Rnd.get(100) < FakePlayersConfig.FAKE_PLAYER_COMBAT_CHAT_CHANCE) + { + FakePlayerChatManager.getInstance().manageEventChat(npc, "Клан игрока " + enemy.getName() + " в состоянии войны с твоим кланом. Ты его атакуешь. Крикни боевую фразу про клановую войну.", FakePlayerChatLines.getInstance().compose(botIdOf(npc), "war_start", personalityOf(npc), "target", enemy.getName()), "war_start"); + } + } + return; + } + } + } + + // Helper personality: assist nearby real players. + final String personality = npc.getTemplate().getParameters().getString("fpcPersonality", npc.isAggressive() ? "ganker" : "neutral"); + if ("helper".equals(personality) && !npc.isInCombat() && (npc instanceof Attackable attackable)) + { + final Monster assistTarget = findAssistTarget(npc); + if (assistTarget != null) + { + attackable.addDamageHate(assistTarget, 0, 100); + npc.setRunning(); + npc.getAI().setIntentionAttack(assistTarget); + if ((now - state.lastChat) > TAUNT_COOLDOWN) + { + state.lastChat = now; + if (Rnd.get(100) < FakePlayersConfig.FAKE_PLAYER_COMBAT_CHAT_CHANCE) + { + FakePlayerChatManager.getInstance().manageEventChat(npc, "Ты помогаешь игроку убить монстра " + assistTarget.getName() + ". Скажи что-нибудь короткое и дружелюбное.", FakePlayerChatLines.getInstance().compose(botIdOf(npc), "assist", personalityOf(npc), "player", "друг"), "assist"); + } + } + return; + } + } + + // PKK personality: hunt flagged (purple) and red (karma) players. + if ("pkk".equals(personality) && !npc.isInCombat() && (npc instanceof Attackable attackablePkk)) + { + final Player criminal = World.getNearestVisibleObjectInRange(npc, Player.class, PLAYER_NOTICE_RANGE, nearby -> !nearby.isDead() && !nearby.isInvisible() && ((nearby.getKarma() > 0) || (nearby.getPvpFlag() != 0))); + if (criminal != null) + { + attackablePkk.addDamageHate(criminal, 0, 200); + npc.setRunning(); + npc.getAI().setIntentionAttack(criminal); + if ((now - state.lastChat) > TAUNT_COOLDOWN) + { + state.lastChat = now; + if (Rnd.get(100) < FakePlayersConfig.FAKE_PLAYER_COMBAT_CHAT_CHANCE) + { + FakePlayerChatManager.getInstance().manageEventChat(npc, "Ты охотник на ПК. Рядом " + ((criminal.getKarma() > 0) ? "красный ник (убийца) " : "игрок с PvP-флагом ") + criminal.getName() + " - ты его атакуешь. Крикни что-нибудь про правосудие.", FakePlayerChatLines.getInstance().compose(botIdOf(npc), "pkk_start", personalityOf(npc), "target", criminal.getName()), "pkk_start"); + } + } + return; + } + } + + // Non aggressive personalities farm monsters on their own (progression needs kills). + if (!"ganker".equals(personality) && !npc.isInCombat() && (npc instanceof Attackable attackableFarm) && (Rnd.get(100) < 60)) + { + final Monster farmTarget = World.getNearestVisibleObjectInRange(npc, Monster.class, 600, monster -> !monster.isDead() && !monster.isFakePlayer() && !monster.isRaid()); + if (farmTarget != null) + { + attackableFarm.addDamageHate(farmTarget, 0, 50); + npc.getAI().setIntentionAttack(farmTarget); + return; + } + } + + // Gossip: idle bots exchange stories with distortion (rumor spread). + if (!npc.isInCombat() && (Rnd.get(100) < 3)) + { + final Npc listener = World.getNearestVisibleObjectInRange(npc, Npc.class, 300, other -> other.isFakePlayer() && (other != npc) && !other.isDead()); + if (listener != null) + { + final int tellerId = FakePlayerProgressionManager.getInstance().getCharacterId(npc.getObjectId()); + final int listenerId = FakePlayerProgressionManager.getInstance().getCharacterId(listener.getObjectId()); + final FakePlayerRumorManager.Story passed = FakePlayerRumorManager.getInstance().gossip(tellerId, listenerId); + if ((passed != null) && (World.getNearestVisibleObjectInRange(npc, Player.class, AMBIENT_RANGE, p -> !p.isDead()) != null)) + { + // Player nearby overhears the gossip. + FakePlayerChatManager.getInstance().broadcastToNearby(npc, "слышал? " + FakePlayerRumorManager.getInstance().tell(passed).replace(" ты ", " " + passed.subject + " ")); + } + } + } + + // Ambient chatter when real players are around. + if (((now - state.lastChat) > AMBIENT_COOLDOWN) && (Rnd.get(100) < FakePlayersConfig.FAKE_PLAYER_AMBIENT_CHAT_CHANCE)) + { + final Player nearby = World.getNearestVisibleObjectInRange(npc, Player.class, AMBIENT_RANGE, player -> !player.isDead() && !player.isInvisible()); + if (nearby != null) + { + state.lastChat = now; + final int botId = FakePlayerProgressionManager.getInstance().getCharacterId(npc.getObjectId()); + final FakePlayerMemoryManager.Memory memory = FakePlayerMemoryManager.getInstance().get(botId, nearby.getName()); + final FakePlayerRumorManager.Story rumor = FakePlayerRumorManager.getInstance().bestAbout(botId, nearby.getName()); + if ((rumor != null) && (Rnd.get(100) < 50) && ((memory == null) || ((memory.score > -2) && (memory.score < 2)))) + { + // The bot heard things about this player and says so. + FakePlayerChatManager.getInstance().manageEventChat(npc, "Рядом игрок " + nearby.getName() + ". " + FakePlayerRumorManager.getInstance().describeFor(botId, nearby.getName()) + " Скажи ему об этом в своей манере.", FakePlayerRumorManager.getInstance().tell(rumor)); + } + else if ((memory != null) && (memory.score <= -2)) + { + FakePlayerChatManager.getInstance().manageEventChat(npc, "Рядом игрок " + nearby.getName() + ", который раньше убивал тебя " + memory.kills + " раз. Ты его узнал. Скажи что-нибудь злопамятное.", FakePlayerChatLines.getInstance().compose(botIdOf(npc), "revenge_meet", personalityOf(npc), "player", nearby.getName()), "revenge_meet"); + } + else if ((memory != null) && (memory.score >= 2)) + { + FakePlayerChatManager.getInstance().manageEventChat(npc, "Рядом игрок " + nearby.getName() + ", который раньше помогал тебе. Ты его узнал. Поприветствуй тепло.", FakePlayerChatLines.getInstance().compose(botIdOf(npc), "friendly_meet", personalityOf(npc), "player", nearby.getName()), "friendly_meet"); + } + else if ((("helper".equals(personality)) || ("neutral".equals(personality))) && (state.companionPlayerId == 0) && (Rnd.get(100) < 25)) + { + // Invite the player to team up; a "yes" within a minute starts companion mode. + state.pendingInvitePlayerId = nearby.getObjectId(); + state.pendingInviteUntil = now + 60000; + FakePlayerChatManager.getInstance().manageEventChat(npc, "Рядом игрок " + nearby.getName() + ". Позови его в пати пофармить вместе.", FakePlayerChatLines.getInstance().pick("invite_player", "player", nearby.getName()), "invite_player"); + } + else if (Rnd.get(100) < 12) + { + // Sometimes the "ambient" slot becomes a party search in the trade channel. + final int level = FakePlayerProgressionManager.getInstance().getLevel(npc.getObjectId()); + final String zone = FakePlayerProgressionManager.getInstance().getZoneName(npc.getObjectId()); + final java.util.Map lfpSlots = new java.util.HashMap<>(2); + lfpSlots.put("level", String.valueOf((level > 0) ? level : npc.getTemplate().getLevel())); + if (!zone.isEmpty()) + { + lfpSlots.put("zone", zone); + } + final String lfpLine = FakePlayerChatLines.getInstance().speak(botIdOf(npc), "lfp", null, lfpSlots, true, null); + if (lfpLine != null) + { + FakePlayerChatManager.getInstance().broadcastTrade(npc, lfpLine); + } + } + else + { + FakePlayerChatManager.getInstance().manageEventChat(npc, "Рядом с тобой игрок " + nearby.getName() + ". Скажи в чат что-нибудь бытовое про фарм, дроп, спот или сервер.", FakePlayerChatLines.getInstance().compose(botIdOf(npc), "ambient", personalityOf(npc), null), "ambient"); + } + } + } + } + + private Monster findAssistTarget(Npc npc) + { + final Player player = World.getNearestVisibleObjectInRange(npc, Player.class, PLAYER_NOTICE_RANGE, nearby -> !nearby.isDead() && nearby.isInCombat()); + if (player == null) + { + return null; + } + + // Player's current target. + final WorldObject playerTarget = player.getTarget(); + if ((playerTarget instanceof Monster monster) && !monster.isDead() && !monster.isFakePlayer() && (npc.calculateDistance2D(monster) < 2000)) + { + return monster; + } + + // Monster attacking the player. + return World.getNearestVisibleObjectInRange(npc, Monster.class, PLAYER_NOTICE_RANGE, monster -> !monster.isDead() && !monster.isFakePlayer() && (monster.getTarget() == player)); + } + + /** + * Starts companion mode: the bot follows the player and assists their targets. + * @param npc the bot. + * @param player the player. + * @param minutes duration. + */ + public void startCompanion(Npc npc, Player player, int minutes) + { + final BotState state = _states.computeIfAbsent(npc.getObjectId(), key -> new BotState()); + state.companionPlayerId = player.getObjectId(); + state.companionUntil = System.currentTimeMillis() + (minutes * 60000L); + state.pendingInvitePlayerId = 0; + } + + /** + * @param npc the bot. + * @param player the player. + * @return true when this bot recently invited this player and the invite is still valid. + */ + public boolean hasPendingInvite(Npc npc, Player player) + { + final BotState state = _states.get(npc.getObjectId()); + return (state != null) && (state.pendingInvitePlayerId == player.getObjectId()) && (System.currentTimeMillis() < state.pendingInviteUntil); + } + + /** + * @param npcObjectId bot object id. + * @return true when the bot is currently escorting a player. + */ + public boolean isCompanion(int npcObjectId) + { + final BotState state = _states.get(npcObjectId); + return (state != null) && (state.companionPlayerId != 0) && (System.currentTimeMillis() < state.companionUntil); + } + + private static int botIdOf(Npc npc) + { + return FakePlayerProgressionManager.getInstance().getCharacterId(npc.getObjectId()); + } + + private static String personalityOf(Npc npc) + { + return npc.getTemplate().getParameters().getString("fpcPersonality", "neutral"); + } + + public static FakePlayerAiTaskManager getInstance() + { + return SingletonHolder.INSTANCE; + } + + private static class SingletonHolder + { + protected static final FakePlayerAiTaskManager INSTANCE = new FakePlayerAiTaskManager(); + } +} diff --git a/src_mobius/mobius/L2J_Mobius_CT_0_Interlude/java/org/l2jmobius/gameserver/managers/FakePlayerBotContext.java b/src_mobius/mobius/L2J_Mobius_CT_0_Interlude/java/org/l2jmobius/gameserver/managers/FakePlayerBotContext.java new file mode 100644 index 0000000..f90441f --- /dev/null +++ b/src_mobius/mobius/L2J_Mobius_CT_0_Interlude/java/org/l2jmobius/gameserver/managers/FakePlayerBotContext.java @@ -0,0 +1,135 @@ +/* + * Copyright (c) 2013 L2jMobius + * + * Permission is hereby granted, free of charge, to any person obtaining a copy + * of this software and associated documentation files (the "Software"), to deal + * in the Software without restriction, including without limitation the rights + * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell + * copies of the Software, and to permit persons to whom the Software is + * furnished to do so, subject to the following conditions: + * + * The above copyright notice and this permission notice shall be + * included in all copies or substantial portions of the Software. + * + * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR + * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, + * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE + * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, + * WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR + * IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. + */ +package org.l2jmobius.gameserver.managers; + +import java.util.HashMap; +import java.util.Map; +import java.util.concurrent.ConcurrentHashMap; + +/** + * What a bot is doing right now and what recently happened to it - the facts + * that feed the seam rule lottery (plan=trade/raid/migrate, event=ganked/ + * levelup/raid_finished/opened_store). Updated by one-line hooks at the + * places that already emit the corresponding chat events. In-memory only: + * after a restart bots simply have an empty short-term memory, which is fine. + * @author Mobius SPP + */ +public class FakePlayerBotContext +{ + private static final long EVENT_TTL = 10 * 60 * 1000; + + private static class Context + { + volatile String plan = "farm"; + volatile long planUntil; + volatile String event = ""; + volatile long eventUntil; + volatile String boss = ""; + } + + private static final Map CONTEXTS = new ConcurrentHashMap<>(); + + private FakePlayerBotContext() + { + } + + private static Context contextOf(int botId) + { + return CONTEXTS.computeIfAbsent(botId, k -> new Context()); + } + + /** + * @param botId bot character id. + * @param plan farm / trade / raid / migrate / pvp / idle. + * @param durationMs how long the plan holds (afterwards it decays to "farm"). + */ + public static void setPlan(int botId, String plan, long durationMs) + { + if (botId <= 0) + { + return; + } + final Context context = contextOf(botId); + context.plan = plan; + context.planUntil = System.currentTimeMillis() + durationMs; + } + + public static void setEvent(int botId, String event) + { + if (botId <= 0) + { + return; + } + final Context context = contextOf(botId); + context.event = event; + context.eventUntil = System.currentTimeMillis() + EVENT_TTL; + } + + /** + * @param botId bot character id. + * @param boss raid boss name for the {boss} slot while the raid plan holds. + */ + public static void setRaid(int botId, String boss, long durationMs) + { + if (botId <= 0) + { + return; + } + setPlan(botId, "raid", durationMs); + contextOf(botId).boss = boss; + } + + /** + * @param botId bot character id. + * @return current facts: plan and (when fresh) event. + */ + public static Map facts(int botId) + { + final Map facts = new HashMap<>(2); + final Context context = (botId > 0) ? CONTEXTS.get(botId) : null; + if (context == null) + { + return facts; + } + final long now = System.currentTimeMillis(); + facts.put("plan", (now < context.planUntil) ? context.plan : "farm"); + if ((now < context.eventUntil) && !context.event.isEmpty()) + { + facts.put("event", context.event); + } + return facts; + } + + /** + * @param botId bot character id. + * @return grounding slots that follow from the context ({boss} during a raid). + */ + public static Map slots(int botId) + { + final Map slots = new HashMap<>(1); + final Context context = (botId > 0) ? CONTEXTS.get(botId) : null; + if ((context != null) && (System.currentTimeMillis() < context.planUntil) && "raid".equals(context.plan) && !context.boss.isEmpty()) + { + slots.put("boss", context.boss); + } + return slots; + } +} diff --git a/src_mobius/mobius/L2J_Mobius_CT_0_Interlude/java/org/l2jmobius/gameserver/managers/FakePlayerBrain.java b/src_mobius/mobius/L2J_Mobius_CT_0_Interlude/java/org/l2jmobius/gameserver/managers/FakePlayerBrain.java new file mode 100644 index 0000000..643c903 --- /dev/null +++ b/src_mobius/mobius/L2J_Mobius_CT_0_Interlude/java/org/l2jmobius/gameserver/managers/FakePlayerBrain.java @@ -0,0 +1,348 @@ +/* + * Copyright (c) 2013 L2jMobius + * + * Permission is hereby granted, free of charge, to any person obtaining a copy + * of this software and associated documentation files (the "Software"), to deal + * in the Software without restriction, including without limitation the rights + * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell + * copies of the Software, and to permit persons to whom the Software is + * furnished to do so, subject to the following conditions: + * + * The above copyright notice and this permission notice shall be + * included in all copies or substantial portions of the Software. + * + * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR + * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, + * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE + * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, + * WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR + * IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. + */ +package org.l2jmobius.gameserver.managers; + +import java.util.List; + +import org.l2jmobius.commons.util.Rnd; +import org.l2jmobius.gameserver.entity.World; +import org.l2jmobius.gameserver.entity.WorldObject; +import org.l2jmobius.gameserver.entity.actor.Creature; +import org.l2jmobius.gameserver.entity.actor.Player; +import org.l2jmobius.gameserver.entity.actor.instance.Monster; +import org.l2jmobius.gameserver.entity.groups.Party; +import org.l2jmobius.gameserver.entity.item.enums.ItemProcessType; +import org.l2jmobius.gameserver.managers.FakePlayerCombatData.BotSkill; +import org.l2jmobius.gameserver.managers.FakePlayerCombatData.Profile; +import org.l2jmobius.gameserver.mechanics.skill.Skill; + +/** + * Game sense for headless bots: what to do right now. + * Priority order (first match wins), inspired by how real farming bots are built: + * survival, upkeep, party role, combat, loot, farming. + * @author Mobius SPP + */ +public class FakePlayerBrain +{ + private static final int HEAL_POTION = 1061; // Healing Potion + private static final int MELEE_RANGE = 80; + private static final int BOW_RANGE = 500; + + /** + * Runtime combat memory of a bot. + */ + public static class CombatState + { + public long nextSelfBuff = 0; + public long restingUntil = 0; + public long lastPotion = 0; + public long fleeingUntil = 0; + } + + /** + * Tries to act. Returns true when the brain took control this tick. + * @param bot the headless bot. + * @param state its combat state. + * @param aggressive true when the bot may pick fights on its own. + * @return true when an action was taken. + */ + public static boolean act(Player bot, CombatState state, boolean aggressive) + { + final long now = System.currentTimeMillis(); + final Profile profile = FakePlayerCombatData.getInstance().getProfile(bot.getPlayerClass().getId()); + final int hpPercent = (int) ((bot.getCurrentHp() * 100) / Math.max(1, bot.getMaxHp())); + final int mpPercent = (int) ((bot.getCurrentMp() * 100) / Math.max(1, bot.getMaxMp())); + + // 1. Survival: heal, drink, run away. + if (hpPercent < 55) + { + if (castHeal(bot, bot, profile, hpPercent)) + { + return true; + } + if ((hpPercent < 40) && ((now - state.lastPotion) > 15000) && drinkPotion(bot)) + { + state.lastPotion = now; + return true; + } + if (hpPercent < 25) + { + final Creature threat = nearestThreat(bot); + if (threat != null) + { + state.fleeingUntil = now + 12000; + flee(bot, threat); + return true; + } + } + } + if (now < state.fleeingUntil) + { + return true; // Keep running. + } + + // 2. Upkeep: rest when safe and low, refresh self buffs. + if (state.restingUntil > now) + { + if ((hpPercent > 85) && (mpPercent > 75)) + { + state.restingUntil = 0; + bot.standUp(); + } + return true; + } + if (!bot.isInCombat() && (nearestThreat(bot) == null) && ((hpPercent < 45) || (mpPercent < 35))) + { + state.restingUntil = now + 120000; + bot.sitDown(); + return true; + } + if ((now > state.nextSelfBuff) && !bot.isInCombat()) + { + state.nextSelfBuff = now + 180000; + if (castSelfBuffs(bot, profile)) + { + return true; + } + } + + // 3. Party role: healers keep the party alive. + final Party party = bot.getParty(); + if ((party != null) && "healer".equals(profile.role)) + { + Player wounded = null; + int worst = 100; + for (Player member : party.getMembers()) + { + final int memberHp = (int) ((member.getCurrentHp() * 100) / Math.max(1, member.getMaxHp())); + if (!member.isDead() && (memberHp < worst) && (bot.calculateDistance2D(member) < 900)) + { + worst = memberHp; + wounded = member; + } + } + if ((wounded != null) && (worst < 75) && castHeal(bot, wounded, profile, worst)) + { + return true; + } + } + + // 4. Combat: use skills by condition, keep proper distance. + final WorldObject target = bot.getTarget(); + if ((target instanceof Creature victim) && !victim.isDead() && bot.isInCombat()) + { + final int targetHp = (int) ((victim.getCurrentHp() * 100) / Math.max(1, victim.getMaxHp())); + if (castOffensive(bot, victim, profile, targetHp, mpPercent)) + { + return true; + } + keepDistance(bot, victim, profile); + return true; + } + + // 5. Farming: pick a sensible monster. + if (aggressive && !bot.isInCombat()) + { + final Monster prey = pickPrey(bot); + if (prey != null) + { + bot.setTarget(prey); + bot.getAI().setIntentionAttack(prey); + return true; + } + } + return false; + } + + /** + * Monster worth attacking: close to our level, reachable, not a raid. + * @param bot the bot. + * @return the prey or null. + */ + private static Monster pickPrey(Player bot) + { + final int level = bot.getLevel(); + return World.getNearestVisibleObjectInRange(bot, Monster.class, 1100, monster -> !monster.isDead() && !monster.isRaid() && !monster.isRaidMinion() && !monster.isFakePlayer() // + && (Math.abs(monster.getLevel() - level) <= 8) // не бьём слишком сильных и не тратим время на слабых + && (Math.abs(monster.getZ() - bot.getZ()) < 200) // не пытаемся достать тех, кто выше/ниже + && ((monster.getTarget() == null) || (monster.getTarget() == bot))); // не воруем чужую цель + } + + private static Creature nearestThreat(Player bot) + { + return World.getNearestVisibleObjectInRange(bot, Creature.class, 600, creature -> !creature.isDead() && (creature.getTarget() == bot) && (creature.isMonster() || creature.isPlayer())); + } + + private static void flee(Player bot, Creature threat) + { + final int dx = bot.getX() - threat.getX(); + final int dy = bot.getY() - threat.getY(); + final double length = Math.max(1, Math.sqrt((dx * dx) + (dy * dy))); + final int targetX = bot.getX() + (int) ((dx / length) * 900); + final int targetY = bot.getY() + (int) ((dy / length) * 900); + bot.setRunning(); + bot.getAI().setIntentionMoveTo(new org.l2jmobius.gameserver.entity.Location(targetX, targetY, bot.getZ())); + } + + private static boolean drinkPotion(Player bot) + { + if (bot.getInventory().getItemByItemId(HEAL_POTION) == null) + { + bot.addItem(ItemProcessType.NONE, HEAL_POTION, 20, bot, false); + } + final org.l2jmobius.gameserver.entity.item.instance.Item potion = bot.getInventory().getItemByItemId(HEAL_POTION); + if (potion == null) + { + return false; + } + bot.useEquippableItem(potion, false); + return true; + } + + private static boolean castSelfBuffs(Player bot, Profile profile) + { + for (BotSkill entry : profile.self) + { + final Skill skill = bot.getKnownSkill(entry.id); + if ((skill == null) || bot.isSkillDisabled(skill) || (bot.getCurrentMp() < skill.getMpConsume())) + { + continue; + } + if (bot.isAffectedBySkill(entry.id)) + { + continue; + } + bot.setTarget(bot); + return bot.useMagic(skill, true, false); + } + return false; + } + + private static boolean castHeal(Player bot, Player patient, Profile profile, int patientHp) + { + for (BotSkill entry : profile.heal) + { + if (patientHp > entry.minHp) + { + continue; + } + final Skill skill = bot.getKnownSkill(entry.id); + if ((skill == null) || bot.isSkillDisabled(skill) || (bot.getCurrentMp() < skill.getMpConsume())) + { + continue; + } + bot.setTarget(patient); + return bot.useMagic(skill, true, false); + } + return false; + } + + private static boolean castOffensive(Player bot, Creature victim, Profile profile, int targetHp, int mpPercent) + { + for (BotSkill entry : profile.offensive) + { + if ((targetHp > entry.maxTargetHp) || (mpPercent < entry.minMp)) + { + continue; + } + final Skill skill = bot.getKnownSkill(entry.id); + if ((skill == null) || bot.isSkillDisabled(skill) || (bot.getCurrentMp() < skill.getMpConsume())) + { + continue; + } + if ((skill.getCastRange() > 0) && (bot.calculateDistance2D(victim) > skill.getCastRange())) + { + continue; + } + bot.setTarget(victim); + if (bot.useMagic(skill, true, false)) + { + return true; + } + } + return false; + } + + /** + * Archers and mages should not stand in melee; fighters should close in. + * @param bot the bot. + * @param victim its target. + * @param profile combat profile. + */ + private static void keepDistance(Player bot, Creature victim, Profile profile) + { + final boolean ranged = "archer".equals(profile.role) || "mage".equals(profile.role) || "healer".equals(profile.role); + final double distance = bot.calculateDistance2D(victim); + if (ranged) + { + if (distance < 250) // отходим, чтобы стрелять + { + final int dx = bot.getX() - victim.getX(); + final int dy = bot.getY() - victim.getY(); + final double length = Math.max(1, Math.sqrt((dx * dx) + (dy * dy))); + bot.setRunning(); + bot.getAI().setIntentionMoveTo(new org.l2jmobius.gameserver.entity.Location(bot.getX() + (int) ((dx / length) * 400), bot.getY() + (int) ((dy / length) * 400), bot.getZ())); + return; + } + if (distance > BOW_RANGE) + { + bot.getAI().setIntentionAttack(victim); + } + return; + } + if (distance > MELEE_RANGE) + { + bot.getAI().setIntentionAttack(victim); + } + } + + /** + * @param bot the bot. + * @return short human readable description of what the brain would do now. + */ + public static String describe(Player bot) + { + final Profile profile = FakePlayerCombatData.getInstance().getProfile(bot.getPlayerClass().getId()); + final int hp = (int) ((bot.getCurrentHp() * 100) / Math.max(1, bot.getMaxHp())); + final int mp = (int) ((bot.getCurrentMp() * 100) / Math.max(1, bot.getMaxMp())); + final StringBuilder sb = new StringBuilder(); + sb.append(bot.getName()).append(" lvl").append(bot.getLevel()).append(' ').append(bot.getPlayerClass()).append('\n'); + sb.append(" роль: ").append(profile.role).append(" | HP ").append(hp).append("% MP ").append(mp).append("%\n"); + sb.append(" скиллы боя: "); + for (BotSkill entry : profile.offensive) + { + final Skill skill = bot.getKnownSkill(entry.id); + sb.append(entry.id).append(skill != null ? "+" : "-").append(' '); + } + sb.append("\n лечение: "); + for (BotSkill entry : profile.heal) + { + final Skill skill = bot.getKnownSkill(entry.id); + sb.append(entry.id).append(skill != null ? "+" : "-").append(' '); + } + sb.append("\n (+ есть у бота, - не выучен)"); + return sb.toString(); + } + + private FakePlayerBrain() + { + } +} diff --git a/src_mobius/mobius/L2J_Mobius_CT_0_Interlude/java/org/l2jmobius/gameserver/managers/FakePlayerChatLines.java b/src_mobius/mobius/L2J_Mobius_CT_0_Interlude/java/org/l2jmobius/gameserver/managers/FakePlayerChatLines.java new file mode 100644 index 0000000..3018175 --- /dev/null +++ b/src_mobius/mobius/L2J_Mobius_CT_0_Interlude/java/org/l2jmobius/gameserver/managers/FakePlayerChatLines.java @@ -0,0 +1,792 @@ +/* + * Copyright (c) 2013 L2jMobius + * + * Permission is hereby granted, free of charge, to any person obtaining a copy + * of this software and associated documentation files (the "Software"), to deal + * in the Software without restriction, including without limitation the rights + * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell + * copies of the Software, and to permit persons to whom the Software is + * furnished to do so, subject to the following conditions: + * + * The above copyright notice and this permission notice shall be + * included in all copies or substantial portions of the Software. + * + * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR + * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, + * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE + * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, + * WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR + * IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. + */ +package org.l2jmobius.gameserver.managers; + +import java.io.File; +import java.util.ArrayDeque; +import java.util.ArrayList; +import java.util.Collections; +import java.util.HashMap; +import java.util.LinkedHashMap; +import java.util.List; +import java.util.Map; +import java.util.concurrent.ConcurrentHashMap; +import java.util.concurrent.atomic.AtomicLong; +import java.util.logging.Logger; + +import org.w3c.dom.Document; + +import org.l2jmobius.commons.util.IXmlReader; +import org.l2jmobius.commons.util.Rnd; +import org.l2jmobius.gameserver.util.StatSet; + +/** + * Chat "seam" engine for fake players (Seams 2.0). One seam = one situation; + * a reply is chosen by a weighted rule lottery over context facts, assembled + * from morph templates ("[optional]", "(a|b)", "#pool#" recursion, trait + * variants), grounded through {slot} substitution, personalized by the bot's + * idiolect and guarded by a template-level anti-repeat with a global cooldown. + * Prototyped and tested in the sandbox artifact, ported 1:1. + * @author Mobius SPP + */ +public class FakePlayerChatLines implements IXmlReader +{ + private static final Logger LOGGER = Logger.getLogger(FakePlayerChatLines.class.getName()); + + private static final int TEMPLATE_COOLDOWN_MESSAGES = 25; + private static final int SAID_MEMORY = 12; + private static final int MORPH_DEPTH_LIMIT = 8; + private static final String[] TRAITS = + { + "mat", + "eng", + "old" + }; + + /** One line of a seam or pool: text plus an optional trait gate. */ + private static class LineDef + { + final String text; + final String trait; + + LineDef(String text, String trait) + { + this.text = text; + this.trait = ((trait == null) || trait.isEmpty()) ? null : trait; + } + } + + /** A weighted context rule inside a seam. */ + private static class Rule + { + final List need = new ArrayList<>(); // Each: {fact, value} - all must hold. + final List like = new ArrayList<>(); // Each: {fact, value, weight} - matched ones add weight. + final List lines = new ArrayList<>(); + String label = ""; + } + + private static class Seam + { + final List base = new ArrayList<>(); + final List rules = new ArrayList<>(); + } + + private final Map _seams = new HashMap<>(); + private final Map> _pools = new HashMap<>(); + + // Anti-repeat state: per bot said memory (template + surface), global template cooldown. + private final Map> _said = new ConcurrentHashMap<>(); + private final Map _lastTemplateUse = new ConcurrentHashMap<>(); + private final AtomicLong _messageIndex = new AtomicLong(); + + protected FakePlayerChatLines() + { + load(); + } + + @Override + public void load() + { + _seams.clear(); + _pools.clear(); + parseDatapackFile("data/FakePlayerChatLines.xml"); + parseDatapackFile("data/FakePlayerPools.xml"); + int lineCount = 0; + for (Seam seam : _seams.values()) + { + lineCount += seam.base.size(); + for (Rule rule : seam.rules) + { + lineCount += rule.lines.size(); + } + } + int poolLines = 0; + for (List lines : _pools.values()) + { + poolLines += lines.size(); + } + LOGGER.info(getClass().getSimpleName() + ": Loaded " + lineCount + " lines in " + _seams.size() + " seams, " + poolLines + " lines in " + _pools.size() + " pools."); + } + + @Override + public void parseDocument(Document document, File file) + { + forEach(document, "pools", listNode -> forEach(listNode, "pool", poolNode -> + { + final StatSet set = new StatSet(parseAttributes(poolNode)); + final List lines = _pools.computeIfAbsent(set.getString("key"), k -> new ArrayList<>()); + forEach(poolNode, "line", lineNode -> + { + final StatSet lineSet = new StatSet(parseAttributes(lineNode)); + lines.add(new LineDef(lineNode.getTextContent(), lineSet.getString("trait", ""))); + }); + })); + + forEach(document, "lines", listNode -> forEach(listNode, "seam", seamNode -> + { + final StatSet set = new StatSet(parseAttributes(seamNode)); + final Seam seam = _seams.computeIfAbsent(set.getString("key"), k -> new Seam()); + forEach(seamNode, "line", lineNode -> + { + final StatSet lineSet = new StatSet(parseAttributes(lineNode)); + seam.base.add(new LineDef(lineNode.getTextContent(), lineSet.getString("trait", ""))); + }); + forEach(seamNode, "rule", ruleNode -> + { + final StatSet ruleSet = new StatSet(parseAttributes(ruleNode)); + final Rule rule = new Rule(); + final String needString = ruleSet.getString("need", ""); + final String likeString = ruleSet.getString("like", ""); + rule.label = (needString.isEmpty() ? "" : ("need:" + needString + " ")) + (likeString.isEmpty() ? "" : ("like:" + likeString)); + if (!needString.isEmpty()) + { + for (String part : needString.split(",")) + { + final String[] kv = part.trim().split("="); + if (kv.length == 2) + { + rule.need.add(kv); + } + } + } + if (!likeString.isEmpty()) + { + for (String part : likeString.split(",")) + { + final String[] cw = part.trim().split(":"); + final String[] kv = cw[0].split("="); + if (kv.length == 2) + { + rule.like.add(new Object[] + { + kv[0], + kv[1], + (cw.length > 1) ? Integer.parseInt(cw[1]) : 1 + }); + } + } + } + forEach(ruleNode, "line", lineNode -> + { + final StatSet lineSet = new StatSet(parseAttributes(lineNode)); + rule.lines.add(new LineDef(lineNode.getTextContent(), lineSet.getString("trait", ""))); + }); + seam.rules.add(rule); + }); + })); + } + + // ======================== Public API ======================== + + /** + * Full pipeline: rule lottery over facts, morph, slots, idiolect style, anti-repeat. + * @param botId bot character id (0 = generic style, no repeat tracking). + * @param key seam key. + * @param facts context facts (personality, asker, plan, event...; may be null). + * @param slots slot values; missing slots drop the line (may be null). + * @param optional true for unsolicited background chatter: a repeat is never + * accepted and null is returned instead (silence beats repetition). + * @param mirror incoming message analysis for style mirroring (may be null). + * @return the styled line, or null. + */ + public String speak(int botId, String key, Map facts, Map slots, boolean optional, FakePlayerIdiolect.Mirror mirror) + { + return speak(botId, key, facts, slots, optional, mirror, false); + } + + /** + * Private-channel variant (whisper): the global template cooldown models + * "it was just said in the air nearby", which whispers are not part of - + * so it is neither checked nor written. Per-bot anti-repeat still applies. + */ + public String speakPrivate(int botId, String key, Map facts, Map slots, FakePlayerIdiolect.Mirror mirror) + { + return speak(botId, key, facts, slots, false, mirror, true); + } + + private String speak(int botId, String key, Map facts, Map slots, boolean optional, FakePlayerIdiolect.Mirror mirror, boolean privateReply) + { + final Seam seam = _seams.get(key); + if (seam == null) + { + return null; + } + + final FakePlayerIdiolect idiolect = FakePlayerIdiolect.of(botId); + final Map effectiveFacts; + if (botId > 0) + { + // The bot's own situation (plan, recent event) feeds the rule lottery automatically. + effectiveFacts = FakePlayerBotContext.facts(botId); + if (facts != null) + { + effectiveFacts.putAll(facts); + } + } + else + { + effectiveFacts = (facts == null) ? new HashMap<>(1) : facts; + } + effectiveFacts.putIfAbsent("daytime", daytimeNow()); + final Map effectiveSlots = withDefaults(slots, idiolect, effectiveFacts); + + List group = filterTraits(chooseGroup(seam, effectiveFacts), idiolect); + if (group.isEmpty()) + { + group = filterTraits(seam.base, idiolect); + if (group.isEmpty()) + { + return null; + } + } + + double chattiness = idiolect.chattiness; + if ((mirror != null) && mirror.shortMessage) + { + chattiness *= 0.4; + } + + for (int attempt = 0; attempt < 14; attempt++) + { + final LineDef raw = group.get(Rnd.get(group.size())); + final String morphed = morph(raw.text, idiolect, chattiness, 0); + final String filled = fillSlots(morphed, effectiveSlots); + if (filled == null) + { + if (attempt == 6) + { + final List reroll = filterTraits(chooseGroup(seam, effectiveFacts), idiolect); + if (!reroll.isEmpty()) + { + group = reroll; + } + } + continue; + } + if (filled.matches("[\\d\\s]+")) + { + continue; // Degenerate line: all words were optional, only a number left. + } + // Pool-reference templates are identified by the expanded string, plain ones by the raw template. + final String template = key + "|" + (raw.text.indexOf('#') >= 0 ? morphed : raw.text); + final String repeat = isRepeat(botId, template, filled, privateReply); + if (repeat != null) + { + if (optional || (attempt < 10)) + { + if ((attempt == 4) || (attempt == 8)) + { + final List reroll = filterTraits(chooseGroup(seam, effectiveFacts), idiolect); + if (!reroll.isEmpty()) + { + group = reroll; + } + } + continue; + } + } + remember(botId, template, filled, privateReply); + return idiolect.stylePass(filled, mirror); + } + return null; + } + + // --- Compatibility wrappers (existing call sites keep working unchanged) --- + + public String pick(String key, Map slots) + { + return speak(0, key, null, slots, false, null); + } + + public String pick(String key, String slotName, String slotValue) + { + return speak(0, key, null, singleSlot(slotName, slotValue), false, null); + } + + public String pickFor(int botId, String key, Map slots) + { + return speak(botId, key, null, slots, false, null); + } + + public String pickFor(int botId, String key, String slotName, String slotValue) + { + return speak(botId, key, null, singleSlot(slotName, slotValue), false, null); + } + + public String compose(int botId, String key, String personality, Map slots) + { + final Map facts = new HashMap<>(1); + facts.put("personality", (personality == null) || personality.isEmpty() ? "neutral" : personality); + return speak(botId, key, facts, slots, false, null); + } + + public String compose(int botId, String key, String personality, String slotName, String slotValue) + { + return compose(botId, key, personality, singleSlot(slotName, slotValue)); + } + + /** + * @return seam key - base line texts view (dashboard). + */ + public Map> seams() + { + final Map> view = new LinkedHashMap<>(); + for (Map.Entry entry : _seams.entrySet()) + { + final List texts = new ArrayList<>(entry.getValue().base.size()); + for (LineDef line : entry.getValue().base) + { + texts.add(line.text); + } + view.put(entry.getKey(), texts); + } + return Collections.unmodifiableMap(view); + } + + // ======================== Rule lottery ======================== + + private List chooseGroup(Seam seam, Map facts) + { + final List groups = new ArrayList<>(); // {score, lines} + if (!seam.base.isEmpty()) + { + groups.add(new Object[] + { + 1, + seam.base + }); + } + for (Rule rule : seam.rules) + { + boolean needFailed = false; + for (String[] condition : rule.need) + { + if (!condition[1].equals(facts.get(condition[0]))) + { + needFailed = true; + break; + } + } + if (needFailed) + { + continue; + } + int likeHits = 0; + int score = rule.need.isEmpty() ? 1 : 2; + for (Object[] condition : rule.like) + { + if (condition[1].equals(facts.get(condition[0]))) + { + likeHits++; + score += (Integer) condition[2]; + } + } + if (!rule.like.isEmpty() && rule.need.isEmpty() && (likeHits == 0)) + { + continue; // A like-only rule needs at least one matching fact. + } + if (!rule.need.isEmpty() && rule.like.isEmpty()) + { + score = 100; // A pure need rule overrides the base. + } + groups.add(new Object[] + { + score, + rule.lines + }); + } + if (groups.isEmpty()) + { + return seam.base; + } + // A matched pure-need rule is absolute: the lottery runs only among such rules. + final List needOnly = new ArrayList<>(1); + for (Object[] group : groups) + { + if (((Integer) group[0]) >= 100) + { + needOnly.add(group); + } + } + final List pool = needOnly.isEmpty() ? groups : needOnly; + int total = 0; + for (Object[] group : pool) + { + total += (Integer) group[0]; + } + int roll = Rnd.get(total); + for (Object[] group : pool) + { + roll -= (Integer) group[0]; + if (roll < 0) + { + @SuppressWarnings("unchecked") + final List lines = (List) group[1]; + return lines; + } + } + @SuppressWarnings("unchecked") + final List lines = (List) pool.get(pool.size() - 1)[1]; + return lines; + } + + private static List filterTraits(List lines, FakePlayerIdiolect idiolect) + { + final List result = new ArrayList<>(lines.size()); + for (LineDef line : lines) + { + if ((line.trait == null) || idiolect.hasTrait(line.trait)) + { + result.add(line); + } + } + return result; + } + + // ======================== Morph engine ======================== + + /** + * Expands a morph template: "[optional]" / "[30:optional]" chunks, + * "(a|b|mat:c)" alternations and "#pool#" recursion. + */ + private String morph(String template, FakePlayerIdiolect idiolect, double chattiness, int depth) + { + if (depth > MORPH_DEPTH_LIMIT) + { + return ""; + } + final StringBuilder out = new StringBuilder(template.length()); + int i = 0; + while (i < template.length()) + { + final char ch = template.charAt(i); + if (ch == '[') + { + final int close = findClose(template, i + 1, '[', ']'); + if (close < 0) + { + out.append(ch); + i++; + continue; + } + String inner = template.substring(i + 1, close); + int chance = 50; + final int colon = inner.indexOf(':'); + if ((colon > 0) && inner.substring(0, colon).chars().allMatch(Character::isDigit)) + { + chance = Integer.parseInt(inner.substring(0, colon)); + inner = inner.substring(colon + 1); + } + final double probability = Math.min(0.95, (chance / 100.0) * chattiness); + if (Rnd.get(1000) < (probability * 1000)) + { + out.append(morph(inner, idiolect, chattiness, depth + 1)); + } + i = close + 1; + } + else if (ch == '(') + { + final int close = findClose(template, i + 1, '(', ')'); + if (close < 0) + { + out.append(ch); + i++; + continue; + } + final List alternatives = new ArrayList<>(); + for (String alternative : splitTop(template.substring(i + 1, close))) + { + final int prefixEnd = alternative.indexOf(':'); + if (prefixEnd > 0) + { + final String prefix = alternative.substring(0, prefixEnd); + if (isTrait(prefix)) + { + if (idiolect.hasTrait(prefix)) + { + alternatives.add(alternative.substring(prefixEnd + 1)); + } + continue; + } + } + alternatives.add(alternative); + } + if (!alternatives.isEmpty()) + { + out.append(morph(alternatives.get(Rnd.get(alternatives.size())), idiolect, chattiness, depth + 1)); + } + i = close + 1; + } + else if (ch == '#') + { + final int close = template.indexOf('#', i + 1); + if (close < 0) + { + out.append(ch); + i++; + continue; + } + final String poolKey = template.substring(i + 1, close); + final String expanded = expandPool(poolKey, idiolect, chattiness, depth); + if (expanded != null) + { + out.append(expanded); + } + i = close + 1; + } + else + { + out.append(ch); + i++; + } + } + return out.toString(); + } + + private String expandPool(String poolKey, FakePlayerIdiolect idiolect, double chattiness, int depth) + { + // A pool with the personality suffix would go here; personality is a fact, + // kept simple: direct key then vocabulary partition + trait filter. + final List pool = _pools.get(poolKey); + if ((pool == null) || pool.isEmpty()) + { + return null; + } + final List owned = new ArrayList<>(pool.size()); + for (int index = 0; index < pool.size(); index++) + { + final LineDef line = pool.get(index); + if ((line.trait != null) && !idiolect.hasTrait(line.trait)) + { + continue; + } + if (!idiolect.ownsPoolLine(poolKey, pool.size(), index)) + { + continue; + } + owned.add(line); + } + if (owned.isEmpty()) + { + return null; + } + return morph(owned.get(Rnd.get(owned.size())).text, idiolect, chattiness, depth + 1); + } + + private static boolean isTrait(String prefix) + { + for (String trait : TRAITS) + { + if (trait.equals(prefix)) + { + return true; + } + } + return false; + } + + private static int findClose(String text, int from, char open, char close) + { + int depth = 1; + for (int i = from; i < text.length(); i++) + { + final char ch = text.charAt(i); + if (ch == open) + { + depth++; + } + else if (ch == close) + { + depth--; + if (depth == 0) + { + return i; + } + } + } + return -1; + } + + private static List splitTop(String text) + { + final List parts = new ArrayList<>(); + int depth = 0; + final StringBuilder current = new StringBuilder(); + for (int i = 0; i < text.length(); i++) + { + final char ch = text.charAt(i); + if ((ch == '(') || (ch == '[')) + { + depth++; + } + else if ((ch == ')') || (ch == ']')) + { + depth--; + } + if ((ch == '|') && (depth == 0)) + { + parts.add(current.toString()); + current.setLength(0); + } + else + { + current.append(ch); + } + } + parts.add(current.toString()); + return parts; + } + + // ======================== Slots ======================== + + private static Map withDefaults(Map slots, FakePlayerIdiolect idiolect, Map facts) + { + final Map result = (slots == null) ? new HashMap<>(4) : new HashMap<>(slots); + // The bot's own shop assortment grounds trade lines when the caller has nothing better. + if (idiolect.charId > 0) + { + result.putIfAbsent("item", idiolect.storeItem); + result.putIfAbsent("price", idiolect.storePrice); + for (Map.Entry slot : FakePlayerBotContext.slots(idiolect.charId).entrySet()) + { + result.putIfAbsent(slot.getKey(), slot.getValue()); + } + } + result.putIfAbsent("daytime", facts.getOrDefault("daytime", daytimeNow())); + // The idiolect decides how the bot addresses people. + final String player = result.get("player"); + if (player != null) + { + result.put("player", idiolect.addressForm(player)); + } + final String target = result.get("target"); + if (target != null) + { + result.put("target", idiolect.addressForm(target)); + } + return result; + } + + public static String daytimeNow() + { + final int hour = java.time.LocalTime.now().getHour(); + if (hour < 6) + { + return "ночь"; + } + if (hour < 12) + { + return "утро"; + } + if (hour < 18) + { + return "день"; + } + return "вечер"; + } + + private static String fillSlots(String line, Map slots) + { + String result = line; + for (Map.Entry slot : slots.entrySet()) + { + result = result.replace("{" + slot.getKey() + "}", slot.getValue()); + } + return (result.indexOf('{') >= 0) ? null : result; + } + + private static Map singleSlot(String name, String value) + { + final Map slots = new HashMap<>(1); + if ((name != null) && (value != null)) + { + slots.put(name, value); + } + return slots; + } + + // ======================== Anti-repeat ======================== + + private String isRepeat(int botId, String template, String surface, boolean privateReply) + { + if (botId > 0) + { + final ArrayDeque said = _said.get(botId); + if (said != null) + { + synchronized (said) + { + if (said.contains(template) || said.contains(surface)) + { + return "self"; + } + } + } + } + if (!privateReply) + { + final Long lastUse = _lastTemplateUse.get(template); + if ((lastUse != null) && ((_messageIndex.get() - lastUse) < TEMPLATE_COOLDOWN_MESSAGES)) + { + return "cooldown"; + } + } + return null; + } + + private void remember(int botId, String template, String surface, boolean privateReply) + { + if (botId > 0) + { + final ArrayDeque said = _said.computeIfAbsent(botId, k -> new ArrayDeque<>()); + synchronized (said) + { + said.addLast(template); + said.addLast(surface); + while (said.size() > (SAID_MEMORY * 2)) + { + said.removeFirst(); + } + } + } + if (privateReply) + { + return; + } + _lastTemplateUse.put(template, _messageIndex.getAndIncrement()); + if (_lastTemplateUse.size() > 4000) + { + // Rare cleanup: drop entries far outside the cooldown window. + final long now = _messageIndex.get(); + _lastTemplateUse.entrySet().removeIf(entry -> (now - entry.getValue()) > (TEMPLATE_COOLDOWN_MESSAGES * 4)); + } + } + + public static FakePlayerChatLines getInstance() + { + return SingletonHolder.INSTANCE; + } + + private static class SingletonHolder + { + protected static final FakePlayerChatLines INSTANCE = new FakePlayerChatLines(); + } +} diff --git a/src_mobius/mobius/L2J_Mobius_CT_0_Interlude/java/org/l2jmobius/gameserver/managers/FakePlayerChatManager.java b/src_mobius/mobius/L2J_Mobius_CT_0_Interlude/java/org/l2jmobius/gameserver/managers/FakePlayerChatManager.java index d0ce21d..b92f8e4 100644 --- a/src_mobius/mobius/L2J_Mobius_CT_0_Interlude/java/org/l2jmobius/gameserver/managers/FakePlayerChatManager.java +++ b/src_mobius/mobius/L2J_Mobius_CT_0_Interlude/java/org/l2jmobius/gameserver/managers/FakePlayerChatManager.java @@ -22,7 +22,9 @@ package org.l2jmobius.gameserver.managers; import java.io.File; import java.util.ArrayList; +import java.util.HashMap; import java.util.List; +import java.util.Map; import java.util.logging.Logger; import org.w3c.dom.Document; @@ -34,7 +36,9 @@ import org.l2jmobius.gameserver.config.custom.FakePlayersConfig; import org.l2jmobius.gameserver.data.SpawnTable; import org.l2jmobius.gameserver.data.holders.FakePlayerChatHolder; import org.l2jmobius.gameserver.data.xml.FakePlayerData; +import org.l2jmobius.gameserver.entity.World; import org.l2jmobius.gameserver.entity.actor.Npc; +import org.l2jmobius.gameserver.entity.actor.holders.npc.FakePlayerHolder; import org.l2jmobius.gameserver.entity.actor.Player; import org.l2jmobius.gameserver.entity.spawns.Spawn; import org.l2jmobius.gameserver.geoengine.GeoEngine; @@ -52,6 +56,7 @@ public class FakePlayerChatManager implements IXmlReader private static final List MESSAGES = new ArrayList<>(); private static final int MIN_DELAY = 5000; private static final int MAX_DELAY = 15000; + private static final int LOCAL_CHAT_RADIUS = 1250; protected FakePlayerChatManager() { @@ -69,6 +74,10 @@ public class FakePlayerChatManager implements IXmlReader MESSAGES.clear(); parseDatapackFile("data/FakePlayerChatData.xml"); LOGGER.info(getClass().getSimpleName() + ": Loaded " + MESSAGES.size() + " chat templates."); + if (FakePlayersConfig.FAKE_PLAYER_LLM_CHAT) + { + LOGGER.info(getClass().getSimpleName() + ": LLM chat enabled (" + FakePlayersConfig.FAKE_PLAYER_LLM_MODEL + " at " + FakePlayersConfig.FAKE_PLAYER_LLM_URL + ")."); + } } } } @@ -103,6 +112,50 @@ public class FakePlayerChatManager implements IXmlReader return; } + final Npc fpcNpc = findNpc(fpcName); + final Understanding understanding = (fpcNpc != null) ? understand(player, fpcNpc, message) : null; + if ((understanding != null) && understanding.silent) + { + return; // The bot ignores the stranger, like real players sometimes do. + } + if ((fpcNpc != null) && FakePlayerLlmService.getInstance().isEnabled()) + { + final int botId = FakePlayerProgressionManager.getInstance().getCharacterId(fpcNpc.getObjectId()); + final String hint = ((understanding != null) && !understanding.llmHint.isEmpty()) ? " (суть его сообщения: " + understanding.llmHint + ")" : ""; + FakePlayerLlmService.getInstance().generate(buildPersonaFor(fpcNpc, player.getName()), "Игрок " + player.getName() + " написал тебе в личные сообщения: \"" + message + "\"." + hint, reply -> + { + sendChat(player, fpcName, reply); + FakePlayerMemoryManager.getInstance().addNote(botId, player.getName(), "он писал: " + message + " / я ответил: " + reply); + }, () -> + { + if ((understanding != null) && (understanding.responseLine != null)) + { + sendChat(player, fpcName, understanding.responseLine); + } + else + { + managePatternResponce(player, fpcName, message); + } + }); + return; + } + + if ((understanding != null) && (understanding.responseLine != null)) + { + sendChat(player, fpcName, understanding.responseLine); + return; + } + + managePatternResponce(player, fpcName, message); + } + + private void managePatternResponce(Player player, String fpcName, String message) + { + if (player == null) + { + return; + } + final String text = message.toLowerCase(); // tricky question @@ -134,6 +187,162 @@ public class FakePlayerChatManager implements IXmlReader } } + final String answer = findPatternAnswer(fpcName, message); + if (answer != null) + { + sendChat(player, fpcName, answer); + return; + } + + // No pattern matched: generic whisper answer seam. + final String fallback = FakePlayerChatLines.getInstance().pick("whisper_default", null); + if (fallback != null) + { + sendChat(player, fpcName, fallback); + } + } + + /** + * Reaction of a fake player to a general chat message said nearby. + * @param player the player who spoke. + * @param npc the fake player npc that will answer. + * @param message the said text. + */ + public void manageLocalChat(Player player, Npc npc, String message) + { + if ((player == null) || (npc == null)) + { + return; + } + + final Understanding understanding = understand(player, npc, message); + if ((understanding != null) && understanding.silent) + { + return; + } + final Runnable patternFallback = () -> + { + if ((understanding != null) && (understanding.responseLine != null)) + { + broadcastToNearby(npc, understanding.responseLine); + return; + } + final String answer = findPatternAnswer(npc.getName(), message); + if (answer != null) + { + broadcastToNearby(npc, answer); + } + }; + + if (FakePlayerLlmService.getInstance().isEnabled()) + { + final int botId = FakePlayerProgressionManager.getInstance().getCharacterId(npc.getObjectId()); + final String hint = ((understanding != null) && !understanding.llmHint.isEmpty()) ? " (суть: " + understanding.llmHint + ")" : ""; + ThreadPool.schedule(() -> FakePlayerLlmService.getInstance().generate(buildPersonaFor(npc, player.getName()), "Игрок " + player.getName() + " сказал рядом с тобой в общий чат: \"" + message + "\"." + hint, reply -> + { + broadcastToNearby(npc, reply); + FakePlayerMemoryManager.getInstance().addNote(botId, player.getName(), "он сказал: " + message + " / я: " + reply); + }, patternFallback), Rnd.get(4000, 10000)); + } + else + { + ThreadPool.schedule(patternFallback, Rnd.get(3000, 8000)); + } + } + + /** + * Makes a fake player comment an event in local chat. LLM only, silent when unavailable. + * @param npc the fake player npc. + * @param instruction event description for the LLM. + */ + public void manageEventChat(Npc npc, String instruction) + { + manageEventChat(npc, instruction, (String) null); + } + + /** + * Makes a fake player comment an event in local chat. + * Uses the LLM when available, otherwise falls back to one of the given template lines. + * @param npc the fake player npc. + * @param instruction event description for the LLM. + * @param fallbackLines template lines used when the LLM is unavailable (may be null). + */ + public void manageEventChat(Npc npc, String instruction, String[] fallbackLines) + { + manageEventChat(npc, instruction, ((fallbackLines == null) || (fallbackLines.length == 0)) ? null : fallbackLines[Rnd.get(fallbackLines.length)]); + } + + /** + * Event comment with a single prepared fallback line (usually from FakePlayerChatLines). + * @param npc the fake player npc. + * @param instruction LLM instruction. + * @param fallbackLine line to say when the LLM is unavailable (may be null). + */ + public void manageEventChat(Npc npc, String instruction, String fallbackLine) + { + manageEventChat(npc, instruction, fallbackLine, ""); + } + + /** + * Event comment with a known seam - the seam travels with the line so the + * heard system can classify it without guessing. + * @param npc the fake player npc. + * @param instruction LLM instruction. + * @param fallbackLine line to say when the LLM is unavailable (may be null). + * @param seam the seam the fallback line came from. + */ + public void manageEventChat(Npc npc, String instruction, String fallbackLine, String seam) + { + if ((npc == null) || !FakePlayersConfig.FAKE_PLAYER_CHAT) + { + return; + } + + final Runnable fallback = (fallbackLine == null) ? null : () -> broadcastToNearby(npc, fallbackLine, seam); + if (FakePlayerLlmService.getInstance().isEnabled()) + { + FakePlayerLlmService.getInstance().generate(buildPersona(npc), instruction, reply -> broadcastToNearby(npc, reply, seam), fallback); + } + else if (fallback != null) + { + // A human needs a moment to type even a battle cry. + ThreadPool.schedule(fallback, Rnd.get(800, 2500)); + } + } + + /** + * Persona including the bot's memory about a specific player. + * @param npc the bot. + * @param playerName the player it interacts with. + * @return persona prompt. + */ + public String buildPersonaFor(Npc npc, String playerName) + { + final String base = buildPersona(npc); + final int botId = FakePlayerProgressionManager.getInstance().getCharacterId(npc.getObjectId()); + final String memory = FakePlayerMemoryManager.getInstance().describe(botId, playerName); + final String rumors = FakePlayerRumorManager.getInstance().describeFor(botId, playerName); + final StringBuilder sb = new StringBuilder(base); + if (!memory.isEmpty()) + { + sb.append(' ').append(memory); + } + if (!rumors.isEmpty()) + { + sb.append(' ').append(rumors); + } + return sb.toString(); + } + + /** + * Finds a template answer for the given text using FakePlayerChatData patterns. + * @param fpcName fake player name (or template name). + * @param message the text said to the bot. + * @return an answer or null when no pattern matches. + */ + public String findPatternAnswer(String fpcName, String message) + { + final String text = message.toLowerCase(); for (FakePlayerChatHolder chatHolder : MESSAGES) { if (!chatHolder.getFpcName().equals(fpcName) && !chatHolder.getFpcName().equals("ALL")) @@ -147,7 +356,7 @@ public class FakePlayerChatManager implements IXmlReader { if (text.equals(chatHolder.getSearchText().get(0))) { - sendChat(player, fpcName, chatHolder.getAnswers().get(Rnd.get(chatHolder.getAnswers().size()))); + return chatHolder.getAnswers().get(Rnd.get(chatHolder.getAnswers().size())); } break; } @@ -155,7 +364,7 @@ public class FakePlayerChatManager implements IXmlReader { if (text.startsWith(chatHolder.getSearchText().get(0))) { - sendChat(player, fpcName, chatHolder.getAnswers().get(Rnd.get(chatHolder.getAnswers().size()))); + return chatHolder.getAnswers().get(Rnd.get(chatHolder.getAnswers().size())); } break; } @@ -169,15 +378,391 @@ public class FakePlayerChatManager implements IXmlReader allFound = false; } } - if (allFound) { - sendChat(player, fpcName, chatHolder.getAnswers().get(Rnd.get(chatHolder.getAnswers().size()))); + return chatHolder.getAnswers().get(Rnd.get(chatHolder.getAnswers().size())); } break; } } } + return null; + } + + public void broadcastToNearby(Npc npc, String message) + { + broadcastToNearby(npc, message, ""); + } + + public void broadcastToNearby(Npc npc, String message, String seam) + { + if ((npc == null) || npc.isDead() || !npc.isSpawned()) + { + return; + } + + World.broadcastToVisiblePlayersInRange(npc, new CreatureSay(npc, ChatType.GENERAL, npc.getName(), message), LOCAL_CHAT_RADIUS); + FakePlayerHeardManager.getInstance().onSpeech(npc, message, seam); + } + + /** + * Broadcast without the heard hook - used for pickup replies (depth 1). + * @param npc the bot. + * @param message the line. + */ + /** + * A dead bot's chat line (players type after dying - the corpse is still + * there and the chat works). No isDead guard, delivered while the corpse + * has not decayed yet. + * @param npc the dead bot. + * @param message the line. + * @param seam seam hint for the heard system. + */ + public void broadcastDeathCry(Npc npc, String message, String seam) + { + if ((npc == null) || (message == null) || message.isEmpty()) + { + return; + } + World.broadcastToVisiblePlayersInRange(npc, new CreatureSay(npc, ChatType.GENERAL, npc.getName(), message), LOCAL_CHAT_RADIUS); + FakePlayerHeardManager.getInstance().onSpeech(npc, message, seam); + } + + public void broadcastRaw(Npc npc, String message) + { + if ((npc == null) || npc.isDead() || !npc.isSpawned()) + { + return; + } + World.broadcastToVisiblePlayersInRange(npc, new CreatureSay(npc, ChatType.GENERAL, npc.getName(), message), LOCAL_CHAT_RADIUS); + } + + /** + * Region-wide shout (call for help and similar). + * @param npc the bot. + * @param message the line. + */ + public void broadcastShout(Npc npc, String message) + { + if ((npc == null) || (message == null) || npc.isDead() || !npc.isSpawned()) + { + return; + } + World.broadcastToVisiblePlayersInRange(npc, new CreatureSay(npc, ChatType.SHOUT, npc.getName(), message), 6000); + } + + /** + * Trade channel line (party search, sales). + * @param npc the bot. + * @param message the line. + */ + public void broadcastTrade(Npc npc, String message) + { + if ((npc == null) || (message == null) || npc.isDead() || !npc.isSpawned()) + { + return; + } + World.broadcastToVisiblePlayersInRange(npc, new CreatureSay(npc, ChatType.TRADE, npc.getName(), message), 9000); + } + + public String buildPersona(Npc npc) + { + final StringBuilder sb = new StringBuilder(256); + sb.append("Ты — "); + sb.append(npc.getName()); + sb.append(", обычный игрок на сервере Lineage 2 Interlude"); + final FakePlayerHolder info = npc.getTemplate().getFakePlayerInfo(); + if (info != null) + { + sb.append(", класс: "); + sb.append(info.getPlayerClass()); + sb.append(", уровень "); + sb.append(npc.getTemplate().getLevel()); + } + sb.append(". Сейчас ты фармишь мобов в поле."); + final String extra = npc.getTemplate().getParameters().getString("fpcPersona", ""); + if (!extra.isEmpty()) + { + sb.append(' '); + sb.append(extra); + } + return sb.toString(); + } + + /** + * Result of understanding an incoming message. + */ + public static class Understanding + { + public String intentKey; + public String responseLine; + public String llmHint; + public boolean silent; // The bot decided to ignore the message. + } + + public static String intentHint(String key) + { + return INTENT_HINTS.getOrDefault(key, ""); + } + + private static final Map INTENT_HINTS = Map.ofEntries( + Map.entry("greeting", "он поздоровался"), + Map.entry("bye", "он прощается"), + Map.entry("insult", "он оскорбил тебя"), + Map.entry("thanks", "он поблагодарил тебя"), + Map.entry("botcheck", "он спрашивает, не бот ли ты - отнекивайся"), + Map.entry("duel", "он вызывает тебя на дуэль"), + Map.entry("ask_help", "он просит помощи"), + Map.entry("ask_party", "он зовет тебя в пати"), + Map.entry("ask_level", "он спрашивает твой уровень"), + Map.entry("ask_price", "он спрашивает про цены или торговлю"), + Map.entry("ask_rumors", "он спрашивает что нового"), + Map.entry("ask_where", "он спрашивает где ты или куда идти"), + Map.entry("yes_ok", "он согласился"), + Map.entry("how_are_you", "он спрашивает как дела")); + + /** + * Understands an incoming message: matches an intent, applies world effects + * (memory, aggression, running to help) and prepares a template response. + * @param player the speaking player. + * @param npc the addressed bot. + * @param message the raw message. + * @return understanding or null when no intent matched. + */ + // --- Stance memory: a decision (duel/party/help/insult mode) sticks to the pair bot+player. --- + + private static final long STANCE_TTL = 15 * 60 * 1000; + + private static class Stance + { + final String seam; + final String text; + final long timestamp = System.currentTimeMillis(); + + Stance(String seam, String text) + { + this.seam = seam; + this.text = text; + } + } + + private static final Map STANCES = new java.util.concurrent.ConcurrentHashMap<>(); + private static final Map FIRST_CONTACT = new java.util.concurrent.ConcurrentHashMap<>(); + private static final java.util.Set STANCE_INTENTS = java.util.Set.of("duel", "ask_party", "ask_help", "insult"); + + public Understanding understand(org.l2jmobius.gameserver.entity.actor.Player player, Npc npc, String message) + { + final int botId = FakePlayerProgressionManager.getInstance().getCharacterId(npc.getObjectId()); + final FakePlayerIdiolect idiolect = FakePlayerIdiolect.of(botId); + final FakePlayerIdiolect.Mirror mirror = FakePlayerIdiolect.Mirror.of(message); + final String personality = npc.getTemplate().getParameters().getString("fpcPersonality", "neutral"); + final FakePlayerMemoryManager.Memory memory = FakePlayerMemoryManager.getInstance().get(botId, player.getName()); + final String asker = (memory == null) ? "stranger" : ((memory.kills > 0) ? "killed_me" : ((memory.helps > 0) ? "helped_me" : "stranger")); + final Map facts = new HashMap<>(); + facts.put("personality", personality); + facts.put("asker", asker); + final Map slots = new HashMap<>(); + slots.put("player", player.getName()); + + final FakePlayerIntentParser.Intent intent = FakePlayerIntentParser.getInstance().parse(message); + final long now = System.currentTimeMillis(); + final String contactKey = botId + "|" + player.getName(); + + // Silence: only a stranger's FIRST message can be ignored, and never a trade question. + final Long firstSeen = FIRST_CONTACT.putIfAbsent(contactKey, now); + if ((firstSeen == null) && "stranger".equals(asker) && ((intent == null) || !"ask_price".equals(intent.key)) && (Rnd.get(1000) < (int) (idiolect.silence * 1000))) + { + final Understanding ignored = new Understanding(); + ignored.silent = true; + ignored.llmHint = ""; + return ignored; + } + if (FIRST_CONTACT.size() > 5000) + { + FIRST_CONTACT.entrySet().removeIf(entry -> (now - entry.getValue()) > STANCE_TTL); + } + + // Caps-lock: sometimes the reaction is to the shouting itself. + int letters = 0; + int upper = 0; + for (int i = 0; i < message.length(); i++) + { + final char ch = message.charAt(i); + if (Character.isLetter(ch)) + { + letters++; + if (Character.isUpperCase(ch)) + { + upper++; + } + } + } + if ((letters > 3) && (upper > (letters * 0.7)) && (Rnd.get(100) < 35)) + { + final String capsReply = FakePlayerChatLines.getInstance().speakPrivate(botId, "reply_caps", facts, slots, mirror); + if (capsReply != null) + { + final Understanding result = new Understanding(); + result.intentKey = "caps"; + result.llmHint = "он пишет капсом"; + result.responseLine = capsReply; + return result; + } + } + + if (intent == null) + { + return null; + } + + final Understanding result = new Understanding(); + result.intentKey = intent.key; + result.llmHint = INTENT_HINTS.getOrDefault(intent.key, ""); + String seam = intent.seam; + + // Stance memory: a repeated question gets the same position, not a new roll. + final String stanceKey = contactKey + "|" + intent.key; + Stance stance = STANCE_INTENTS.contains(intent.key) ? STANCES.get(stanceKey) : null; + if ((stance != null) && ((now - stance.timestamp) > STANCE_TTL)) + { + STANCES.remove(stanceKey); + stance = null; + } + if (stance != null) + { + if ("insult".equals(intent.key)) + { + seam = stance.seam; // Same reaction mode, fresh wording. + } + else + { + final Map againSlots = new HashMap<>(slots); + againSlots.put("prev", stance.text); + final String again = FakePlayerChatLines.getInstance().speakPrivate(botId, "reply_again", facts, againSlots, mirror); + result.responseLine = (again != null) ? again : stance.text; + return result; + } + } + + switch (intent.key) + { + case "insult": + { + FakePlayerMemoryManager.getInstance().adjustScore(botId, player.getName(), -1); + if (stance == null) + { + final boolean aggressive = "ganker".equals(personality) || "pkk".equals(personality) || (Rnd.get(100) < 50); + seam = aggressive ? "reply_insult_aggro" : "reply_insult_soft"; + } + if ("ganker".equals(personality) && (npc instanceof org.l2jmobius.gameserver.entity.actor.Attackable attackable) && (npc.calculateDistance2D(player) < 2000)) + { + attackable.addDamageHate(player, 0, 500); + npc.setRunning(); + npc.getAI().setIntentionAttack(player); + } + break; + } + case "greeting": + { + if ("killed_me".equals(asker) && (Rnd.get(100) < 60)) + { + seam = "revenge_meet"; + } + else if ("helped_me".equals(asker) && (Rnd.get(100) < 60)) + { + seam = "friendly_meet"; + } + break; + } + case "thanks": + { + FakePlayerMemoryManager.getInstance().adjustScore(botId, player.getName(), 1); + break; + } + case "ask_party": + { + final boolean willing = !"ganker".equals(personality) && !npc.isInCombat() && (npc.calculateDistance2D(player) < 2500); + if (willing) + { + FakePlayerAiTaskManager.getInstance().startCompanion(npc, player, 15); + seam = "party_accept"; + } + break; + } + case "yes_ok": + { + if (FakePlayerAiTaskManager.getInstance().hasPendingInvite(npc, player)) + { + FakePlayerAiTaskManager.getInstance().startCompanion(npc, player, 15); + seam = "party_accept"; + } + break; + } + case "ask_help": + { + final boolean willing = (!"ganker".equals(personality) || "helped_me".equals(asker)) && !npc.isInCombat() && (npc.calculateDistance2D(player) < 3000) && !"killed_me".equals(asker); + seam = willing ? "reply_help_yes" : "reply_help_no"; + if (willing && (npc instanceof org.l2jmobius.gameserver.entity.actor.Attackable attackable)) + { + final org.l2jmobius.gameserver.entity.WorldObject playerTarget = player.getTarget(); + if ((playerTarget instanceof org.l2jmobius.gameserver.entity.actor.instance.Monster monster) && !monster.isDead()) + { + attackable.addDamageHate(monster, 0, 200); + npc.setRunning(); + npc.getAI().setIntentionAttack(monster); + } + else + { + npc.setRunning(); + npc.getAI().setIntentionMoveTo(new org.l2jmobius.gameserver.entity.Location(player.getX(), player.getY(), player.getZ())); + } + } + break; + } + case "ask_rumors": + { + final FakePlayerRumorManager.Story story = FakePlayerRumorManager.getInstance().bestAny(botId); + if (story != null) + { + result.responseLine = "слышал? " + FakePlayerRumorManager.getInstance().tellThird(story); + } + break; + } + case "ask_where": + { + final String zone = FakePlayerProgressionManager.getInstance().getZoneName(npc.getObjectId()); + slots.put("zone", zone.isEmpty() ? "поле" : zone); + break; + } + case "ask_level": + { + final int level = FakePlayerProgressionManager.getInstance().getLevel(npc.getObjectId()); + slots.put("level", String.valueOf(level > 0 ? level : npc.getTemplate().getLevel())); + break; + } + } + + if ((result.responseLine == null) && !seam.isEmpty()) + { + result.responseLine = FakePlayerChatLines.getInstance().speakPrivate(botId, seam, facts, slots, mirror); + } + + // A fresh decision on duel/party/help/insult becomes the bot's stance. + if ((stance == null) && (result.responseLine != null) && STANCE_INTENTS.contains(intent.key)) + { + STANCES.put(stanceKey, new Stance(seam, result.responseLine)); + if (STANCES.size() > 5000) + { + STANCES.entrySet().removeIf(entry -> (now - entry.getValue().timestamp) > STANCE_TTL); + } + } + return result; + } + + private Npc findNpc(String fpcName) + { + final Spawn spawn = SpawnTable.getInstance().getAnySpawn(FakePlayerData.getInstance().getNpcIdByName(fpcName)); + return (spawn != null) ? spawn.getLastSpawn() : null; } public void sendChat(Player player, String fpcName, String message) diff --git a/src_mobius/mobius/L2J_Mobius_CT_0_Interlude/java/org/l2jmobius/gameserver/managers/FakePlayerCombatData.java b/src_mobius/mobius/L2J_Mobius_CT_0_Interlude/java/org/l2jmobius/gameserver/managers/FakePlayerCombatData.java new file mode 100644 index 0000000..6dcea7a --- /dev/null +++ b/src_mobius/mobius/L2J_Mobius_CT_0_Interlude/java/org/l2jmobius/gameserver/managers/FakePlayerCombatData.java @@ -0,0 +1,149 @@ +/* + * Copyright (c) 2013 L2jMobius + * + * Permission is hereby granted, free of charge, to any person obtaining a copy + * of this software and associated documentation files (the "Software"), to deal + * in the Software without restriction, including without limitation the rights + * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell + * copies of the Software, and to permit persons to whom the Software is + * furnished to do so, subject to the following conditions: + * + * The above copyright notice and this permission notice shall be + * included in all copies or substantial portions of the Software. + * + * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR + * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, + * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE + * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, + * WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR + * IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. + */ +package org.l2jmobius.gameserver.managers; + +import java.io.File; +import java.util.ArrayList; +import java.util.Comparator; +import java.util.HashMap; +import java.util.List; +import java.util.Map; +import java.util.logging.Logger; + +import org.w3c.dom.Document; + +import org.l2jmobius.commons.util.IXmlReader; +import org.l2jmobius.gameserver.util.StatSet; + +/** + * Combat profiles for bots: which skills a class uses, in what order and under + * which conditions. Data driven (data/FakePlayerCombat.xml) so the behaviour can + * be tuned without recompiling. + * @author Mobius SPP + */ +public class FakePlayerCombatData implements IXmlReader +{ + private static final Logger LOGGER = Logger.getLogger(FakePlayerCombatData.class.getName()); + + /** + * One skill entry with its usage conditions. + */ + public static class BotSkill + { + public int id; + public int priority; + public int maxTargetHp = 100; + public int minMp = 0; + public int minHp = 100; + } + + /** + * Combat profile of a single class. + */ + public static class Profile + { + public String role = "fighter"; + public final List offensive = new ArrayList<>(); + public final List self = new ArrayList<>(); + public final List heal = new ArrayList<>(); + } + + private final Map _profiles = new HashMap<>(); + private Profile _default = new Profile(); + + protected FakePlayerCombatData() + { + load(); + } + + @Override + public void load() + { + _profiles.clear(); + parseDatapackFile("data/FakePlayerCombat.xml"); + LOGGER.info(getClass().getSimpleName() + ": Loaded combat profiles for " + _profiles.size() + " classes."); + } + + @Override + public void parseDocument(Document document, File file) + { + forEach(document, "combat", listNode -> + { + forEach(listNode, "class", classNode -> + { + final StatSet set = new StatSet(parseAttributes(classNode)); + final Profile profile = new Profile(); + profile.role = set.getString("role", "fighter"); + fill(classNode, profile); + _profiles.put(set.getInt("id"), profile); + }); + + forEach(listNode, "default", defaultNode -> + { + final StatSet set = new StatSet(parseAttributes(defaultNode)); + final Profile profile = new Profile(); + profile.role = set.getString("role", "fighter"); + fill(defaultNode, profile); + _default = profile; + }); + }); + } + + private void fill(org.w3c.dom.Node classNode, Profile profile) + { + forEach(classNode, "offensive", node -> profile.offensive.add(skill(node, false))); + forEach(classNode, "self", node -> profile.self.add(skill(node, false))); + forEach(classNode, "heal", node -> profile.heal.add(skill(node, true))); + profile.offensive.sort(Comparator.comparingInt(s -> s.priority)); + profile.heal.sort(Comparator.comparingInt(s -> s.priority)); + } + + private BotSkill skill(org.w3c.dom.Node node, boolean healing) + { + final StatSet set = new StatSet(parseAttributes(node)); + final BotSkill skill = new BotSkill(); + skill.id = set.getInt("id"); + skill.priority = set.getInt("priority", 10); + skill.maxTargetHp = set.getInt("maxTargetHp", 100); + skill.minMp = set.getInt("minMp", 0); + skill.minHp = set.getInt("minHp", healing ? 70 : 100); + return skill; + } + + /** + * @param classId player class id. + * @return the profile for this class, never null. + */ + public Profile getProfile(int classId) + { + return _profiles.getOrDefault(classId, _default); + } + + public static FakePlayerCombatData getInstance() + { + return SingletonHolder.INSTANCE; + } + + private static class SingletonHolder + { + protected static final FakePlayerCombatData INSTANCE = new FakePlayerCombatData(); + } +} diff --git a/src_mobius/mobius/L2J_Mobius_CT_0_Interlude/java/org/l2jmobius/gameserver/managers/FakePlayerDashboard.java b/src_mobius/mobius/L2J_Mobius_CT_0_Interlude/java/org/l2jmobius/gameserver/managers/FakePlayerDashboard.java new file mode 100644 index 0000000..87b505a --- /dev/null +++ b/src_mobius/mobius/L2J_Mobius_CT_0_Interlude/java/org/l2jmobius/gameserver/managers/FakePlayerDashboard.java @@ -0,0 +1,299 @@ +/* + * Copyright (c) 2013 L2jMobius + * + * Permission is hereby granted, free of charge, to any person obtaining a copy + * of this software and associated documentation files (the "Software"), to deal + * in the Software without restriction, including without limitation the rights + * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell + * copies of the Software, and to permit persons to whom the Software is + * furnished to do so, subject to the following conditions: + * + * The above copyright notice and this permission notice shall be + * included in all copies or substantial portions of the Software. + * + * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR + * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, + * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE + * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, + * WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR + * IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. + */ +package org.l2jmobius.gameserver.managers; + +import java.io.IOException; +import java.io.OutputStream; +import java.net.InetSocketAddress; +import java.net.URLDecoder; +import java.nio.charset.StandardCharsets; +import java.nio.file.Files; +import java.nio.file.Paths; +import java.util.HashMap; +import java.util.List; +import java.util.Map; +import java.util.concurrent.Executors; +import java.util.logging.Level; +import java.util.logging.Logger; + +import com.sun.net.httpserver.HttpExchange; +import com.sun.net.httpserver.HttpServer; + +import org.l2jmobius.gameserver.config.custom.FakePlayersConfig; + +/** + * Tiny embedded HTTP dashboard: live bot map and a dialog tester with seam breakdown. + * Endpoints: / (html), /api/bots, /api/seams, /api/test?msg=...&personality=... + * @author Mobius SPP + */ +public class FakePlayerDashboard +{ + private static final Logger LOGGER = Logger.getLogger(FakePlayerDashboard.class.getName()); + private static final int PORT = 7780; + + protected FakePlayerDashboard() + { + if (!FakePlayersConfig.FAKE_PLAYERS_ENABLED) + { + return; + } + + try + { + final HttpServer server = HttpServer.create(new InetSocketAddress("0.0.0.0", PORT), 0); + server.setExecutor(Executors.newFixedThreadPool(2)); + server.createContext("/", exchange -> respondFile(exchange)); + server.createContext("/api/bots", exchange -> + { + final String npcs = FakePlayerProgressionManager.getInstance().statusJson(); + final String headless = FakePlayerHeadlessManager.getInstance().statusJson(); + final String merged = headless.isEmpty() ? npcs : (npcs.length() > 2 ? npcs.substring(0, npcs.length() - 1) + "," + headless + "]" : "[" + headless + "]"); + respond(exchange, "application/json", merged); + }); + server.createContext("/api/seams", exchange -> respond(exchange, "application/json", seamsJson())); + server.createContext("/api/phrase", exchange -> respond(exchange, "application/json", phraseJson(exchange))); + server.createContext("/api/cmd", exchange -> respond(exchange, "application/json", cmdJson(exchange))); + server.createContext("/api/test", exchange -> respond(exchange, "application/json", testJson(exchange))); + server.start(); + LOGGER.info(getClass().getSimpleName() + ": Listening on port " + PORT + " (http://127.0.0.1:" + PORT + "/)."); + } + catch (Exception e) + { + LOGGER.log(Level.WARNING, getClass().getSimpleName() + ": Could not start.", e); + } + } + + private void respondFile(HttpExchange exchange) throws IOException + { + byte[] body; + try + { + body = Files.readAllBytes(Paths.get("./data/dashboard.html")); + } + catch (Exception e) + { + body = "dashboard.html not found in game/data".getBytes(StandardCharsets.UTF_8); + } + exchange.getResponseHeaders().set("Content-Type", "text/html; charset=utf-8"); + exchange.sendResponseHeaders(200, body.length); + try (OutputStream os = exchange.getResponseBody()) + { + os.write(body); + } + } + + private void respond(HttpExchange exchange, String type, String content) throws IOException + { + final byte[] body = content.getBytes(StandardCharsets.UTF_8); + exchange.getResponseHeaders().set("Content-Type", type + "; charset=utf-8"); + exchange.sendResponseHeaders(200, body.length); + try (OutputStream os = exchange.getResponseBody()) + { + os.write(body); + } + } + + private static String esc(String value) + { + final StringBuilder sb = new StringBuilder(); + for (char c : value.toCharArray()) + { + switch (c) + { + case '"': + sb.append("\\\""); + break; + case '\\': + sb.append("\\\\"); + break; + case '\n': + case '\r': + sb.append(' '); + break; + default: + sb.append(c); + } + } + return sb.toString(); + } + + private String seamsJson() + { + final StringBuilder sb = new StringBuilder(1 << 16); + sb.append('{'); + boolean firstSeam = true; + for (Map.Entry> entry : FakePlayerChatLines.getInstance().seams().entrySet()) + { + if (!firstSeam) + { + sb.append(','); + } + firstSeam = false; + sb.append('"').append(esc(entry.getKey())).append("\":["); + boolean firstLine = true; + for (String line : entry.getValue()) + { + if (!firstLine) + { + sb.append(','); + } + firstLine = false; + sb.append('"').append(esc(line)).append('"'); + } + sb.append(']'); + } + return sb.append('}').toString(); + } + + private Map query(HttpExchange exchange) + { + final Map result = new HashMap<>(); + final String query = exchange.getRequestURI().getRawQuery(); + if (query != null) + { + for (String pair : query.split("&")) + { + final int eq = pair.indexOf('='); + if (eq > 0) + { + result.put(pair.substring(0, eq), URLDecoder.decode(pair.substring(eq + 1), StandardCharsets.UTF_8)); + } + } + } + return result; + } + + private String phraseJson(HttpExchange exchange) + { + final Map params = query(exchange); + final String key = params.getOrDefault("key", "ambient"); + final String personality = params.getOrDefault("personality", "neutral"); + final Map slots = new HashMap<>(); + slots.put("player", params.getOrDefault("player", "Vanger")); + slots.put("target", params.getOrDefault("player", "Vanger")); + slots.put("level", "42"); + slots.put("boss", "Core"); + slots.put("zone", "Cruma"); + slots.put("town", "Giran"); + slots.put("msg", "продам дроп"); + final StringBuilder sb = new StringBuilder("["); + for (int i = 0; i < 8; i++) + { + final String line = FakePlayerChatLines.getInstance().compose(0, key, personality, slots); + if (i > 0) + { + sb.append(','); + } + sb.append('"').append(esc((line != null) ? line : "")).append('"'); + } + return sb.append(']').toString(); + } + + private String cmdJson(HttpExchange exchange) + { + final Map params = query(exchange); + final String command = params.getOrDefault("do", ""); + final String name = params.getOrDefault("name", ""); + final String argument = params.getOrDefault("arg", ""); + String result; + try + { + result = FakePlayerHeadlessManager.getInstance().debugCommand(command, name, argument); + } + catch (Exception e) + { + result = "error: " + e; + } + return "{\"result\":\"" + esc(result) + "\"}"; + } + + private String testJson(HttpExchange exchange) + { + String message = ""; + String personality = "neutral"; + final String query = exchange.getRequestURI().getRawQuery(); + if (query != null) + { + for (String pair : query.split("&")) + { + final int eq = pair.indexOf('='); + if (eq > 0) + { + final String key = pair.substring(0, eq); + final String value = URLDecoder.decode(pair.substring(eq + 1), StandardCharsets.UTF_8); + if (key.equals("msg")) + { + message = value; + } + else if (key.equals("personality")) + { + personality = value; + } + } + } + } + + final String normalized = FakePlayerIntentParser.getInstance().normalize(message); + final FakePlayerIntentParser.Intent intent = FakePlayerIntentParser.getInstance().parse(message); + String seam = ""; + String hint = ""; + String line = ""; + if (intent != null) + { + hint = FakePlayerChatManager.intentHint(intent.key); + seam = intent.seam; + // Mirror the effect-dependent seam choices of the live pipeline (dry run). + switch (intent.key) + { + case "insult": + seam = ("ganker".equals(personality) || "pkk".equals(personality)) ? "reply_insult_aggro" : "reply_insult_soft"; + break; + case "ask_help": + seam = "ganker".equals(personality) ? "reply_help_no" : "reply_help_yes"; + break; + case "ask_party": + seam = "ganker".equals(personality) ? "reply_party_no" : "party_accept"; + break; + } + if (!seam.isEmpty()) + { + final Map slots = new HashMap<>(); + slots.put("player", "Tester"); + slots.put("zone", "Cruma"); + slots.put("level", "42"); + final String picked = FakePlayerChatLines.getInstance().compose(0, seam, personality, slots); + line = (picked != null) ? picked : ""; + } + } + + return "{\"normalized\":\"" + esc(normalized) + "\",\"intent\":\"" + esc(intent != null ? intent.key : "") + "\",\"hint\":\"" + esc(hint) + "\",\"seam\":\"" + esc(seam) + "\",\"line\":\"" + esc(line) + "\"}"; + } + + public static FakePlayerDashboard getInstance() + { + return SingletonHolder.INSTANCE; + } + + private static class SingletonHolder + { + protected static final FakePlayerDashboard INSTANCE = new FakePlayerDashboard(); + } +} diff --git a/src_mobius/mobius/L2J_Mobius_CT_0_Interlude/java/org/l2jmobius/gameserver/managers/FakePlayerHeadlessManager.java b/src_mobius/mobius/L2J_Mobius_CT_0_Interlude/java/org/l2jmobius/gameserver/managers/FakePlayerHeadlessManager.java new file mode 100644 index 0000000..dcf9a57 --- /dev/null +++ b/src_mobius/mobius/L2J_Mobius_CT_0_Interlude/java/org/l2jmobius/gameserver/managers/FakePlayerHeadlessManager.java @@ -0,0 +1,1585 @@ +/* + * Copyright (c) 2013 L2jMobius + * + * Permission is hereby granted, free of charge, to any person obtaining a copy + * of this software and associated documentation files (the "Software"), to deal + * in the Software without restriction, including without limitation the rights + * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell + * copies of the Software, and to permit persons to whom the Software is + * furnished to do so, subject to the following conditions: + * + * The above copyright notice and this permission notice shall be + * included in all copies or substantial portions of the Software. + * + * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR + * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, + * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE + * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, + * WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR + * IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. + */ +package org.l2jmobius.gameserver.managers; + +import java.sql.Connection; +import java.sql.ResultSet; +import java.sql.Statement; +import java.util.ArrayList; +import java.util.HashMap; +import java.util.List; +import java.util.Map; +import java.util.concurrent.ConcurrentHashMap; +import java.util.logging.Level; +import java.util.logging.Logger; + +import org.l2jmobius.commons.database.DatabaseFactory; +import org.l2jmobius.gameserver.data.sql.ClanTable; +import org.l2jmobius.commons.threads.ThreadPool; +import org.l2jmobius.commons.util.Rnd; +import org.l2jmobius.gameserver.config.custom.FakePlayersConfig; +import org.l2jmobius.gameserver.entity.Location; +import org.l2jmobius.gameserver.entity.World; +import org.l2jmobius.gameserver.entity.WorldObject; +import org.l2jmobius.gameserver.entity.actor.Player; +import org.l2jmobius.gameserver.data.xml.MapRegionData; +import org.l2jmobius.gameserver.entity.actor.enums.player.PrivateStoreType; +import org.l2jmobius.gameserver.entity.actor.enums.player.TeleportWhereType; +import org.l2jmobius.gameserver.entity.actor.instance.Monster; +import org.l2jmobius.gameserver.entity.clan.Clan; +import org.l2jmobius.gameserver.entity.item.enums.ItemProcessType; +import org.l2jmobius.gameserver.entity.groups.Party; +import org.l2jmobius.gameserver.network.enums.ChatType; +import org.l2jmobius.gameserver.network.serverpackets.CreatureSay; +import org.l2jmobius.gameserver.network.serverpackets.JoinParty; + +/** + * Headless players: real Player instances restored from the seeded characters, + * living in the world without a network client. They can join real parties, + * share experience and behave like actual party members. + * Prototype: basic farm AI, auto party accept, auto revive. + * @author Mobius SPP + */ +public class FakePlayerHeadlessManager +{ + private static final Logger LOGGER = Logger.getLogger(FakePlayerHeadlessManager.class.getName()); + + private static final Location[] SPOTS = + { + new Location(83400, 147900, -3404), // Giran town edge + new Location(91280, 145900, -3500), // east of Giran + new Location(73700, 142800, -3600), // west field + new Location(82900, 138000, -3464), // south field + new Location(89200, 125900, -3200), // toward Alligator + }; + + private static final Location TRADE_SPOT = new Location(83396, 147904, -3404); // Giran center + // Экипировка по тирам (уровни 8/20/30/40/50/59/68/74): грейд подобран под экспертизу, + // иначе игрок получает штраф и бегает медленно. + private static final int[] SWORDS = { 2, 143, 143, 84, 84, 141, 150, 150 }; + private static final int[] BLUNTS = { 4, 182, 182, 201, 201, 7834, 7895, 7895 }; + private static final int[] DAGGERS = { 216, 222, 222, 242, 242, 243, 236, 236 }; + private static final int[] BOWS = { 14, 277, 277, 285, 285, 287, 289, 289 }; + private static final int[] STAVES = { 176, 185, 185, 198, 198, 209, 4904, 4904 }; + private static final int[] HEAVY_CHEST = { 26, 350, 350, 356, 356, 359, 2383, 2383 }; + private static final int[] LIGHT_CHEST = { 3899, 396, 396, 401, 401, 402, 2394, 2394 }; + private static final int[] ROBE_CHEST = { 430, 438, 438, 440, 440, 450, 459, 459 }; + private static final int[] HEAVY_LEGS = { 34, 379, 379, 382, 382, 384, 388, 388 }; + private static final int[] LIGHT_LEGS = { 30, 415, 415, 419, 419, 423, 2389, 2389 }; + private static final int[] ROBE_LEGS = { 464, 468, 468, 472, 472, 482, 2405, 2405 }; + private static final boolean[] HEAVY_ONEPIECE = { false, false, false, true, true, true, true, true }; + private static final boolean[] LIGHT_ONEPIECE = { false, true, true, true, true, true, true, true }; + private static final boolean[] ROBE_ONEPIECE = { true, true, true, true, true, true, true, true }; + private static final int[] SOULSHOTS = { 1835, 1463, 1463, 1464, 1464, 1465, 1466, 1466 }; + private static final int[] SPIRITSHOTS = { 3947, 3948, 3948, 3949, 3949, 3950, 3951, 3951 }; + + private static final String[] TITLES = + { + "", "", "", "", "", // most players have no title + "ищу клан", "куплю адену", "продам всё", "не бей", "afk", "фарм", "торгую", "пк ловлю", + "мимо", "новичок", "тут был", "Гиран", "Дион", "Аден", "хочу спать", "качаюсь", + "без обид", "мирный", "за кланы", "рб хантер", "спойлер", "бафер", "тащу", "нуб" + }; + + private static final String[] STORE_MSGS = { "продам дроп с фарма", "скупаю ресы дорого", "распродажа, налетай", "продам D грейд дешево", "куплю бижу" }; + + /** + * Per bot runtime state (mirrors what NPC bots keep in their managers). + */ + private static class BotState + { + int seedId; + String personality = "neutral"; + String race = ""; + String zone = ""; + int lastLevel = 1; + long lastChat = 0; + long lastHelpCredit = 0; + int lastPvpTargetId = 0; + long partyCooldown = 0; + int forcedTargetId = 0; + long forcedUntil = 0; + final FakePlayerBrain.CombatState combat = new FakePlayerBrain.CombatState(); + long nextGearCheck = 0; + int gearTier = -1; + } + + private static final int NOTICE_RANGE = 1000; + private static final long AMBIENT_COOLDOWN = 90000; + private static final long TAUNT_COOLDOWN = 20000; + + private final List _bots = new ArrayList<>(); + private final Map _states = new ConcurrentHashMap<>(); + private final Map _reviveAt = new ConcurrentHashMap<>(); + private final Map _tradeUntil = new ConcurrentHashMap<>(); + private final Map _nextTradeAt = new ConcurrentHashMap<>(); + + protected FakePlayerHeadlessManager() + { + if (!FakePlayersConfig.FAKE_PLAYERS_ENABLED || (FakePlayersConfig.FAKE_PLAYER_HEADLESS_COUNT <= 0)) + { + LOGGER.info(getClass().getSimpleName() + ": Disabled."); + return; + } + + spawnAll(FakePlayersConfig.FAKE_PLAYER_HEADLESS_COUNT); + ThreadPool.scheduleAtFixedRate(this::tick, 5000, 3000); + LOGGER.info(getClass().getSimpleName() + ": Spawned " + _bots.size() + " headless players."); + } + + private void spawnAll(int count) + { + // Pick characters spread across all levels (levels 1..76 in the seed). + final List charIds = new ArrayList<>(); + final String query = FakePlayersConfig.FAKE_PLAYER_PROGRESSION + // NPC bots active: only the reserved tail belongs to headless players. + ? "SELECT charId FROM characters WHERE account_name='sppbots' ORDER BY charId DESC LIMIT " + count + // Headless only world: take a level spread sample of the whole population. + : "SELECT charId FROM characters WHERE account_name='sppbots' ORDER BY RAND() LIMIT " + count; + try (Connection con = DatabaseFactory.getConnection(); + Statement statement = con.createStatement(); + ResultSet rset = statement.executeQuery(query)) + { + while (rset.next()) + { + charIds.add(rset.getInt(1)); + } + } + catch (Exception e) + { + LOGGER.log(Level.WARNING, getClass().getSimpleName() + ": Could not list characters.", e); + return; + } + + for (int charId : charIds) + { + try + { + final Player player = Player.load(charId); + if (player == null) + { + continue; + } + player.setHeadlessBot(true); + + // Identity from the seeded population: personality, race, home zone. + final BotState state = new BotState(); + final FakePlayerProgressionManager.SeedInfo seed = FakePlayerProgressionManager.getInstance().getSeedInfo(player.getName()); + if (seed != null) + { + state.seedId = seed.id; + state.personality = seed.personality; + state.race = seed.race; + } + state.lastLevel = player.getLevel(); + _states.put(player.getObjectId(), state); + + // Экипируем не сразу: сервер пересчитывает уровень из опыта после загрузки, + // иначе новичок может получить шмот по «бумажному» уровню из базы. + final Player equipTarget = player; + ThreadPool.schedule(() -> equipAndTeach(equipTarget), 3000); + + // Believable player title instead of a personality label. + final String title = TITLES[Rnd.get(TITLES.length)]; + if (!title.isEmpty()) + { + player.setTitle(title); + } + else + { + player.setTitle(""); + } + // Restore clan membership so crests and clan wars work like for real players. + if (player.getClanId() > 0) + { + final Clan clan = ClanTable.getInstance().getClan(player.getClanId()); + if (clan != null) + { + player.setClan(clan); + player.setPledgeType(0); + player.setPowerGrade(6); + + } + } + _nextTradeAt.put(player.getObjectId(), System.currentTimeMillis() + Rnd.get(600000, 7200000)); + // Place the bot in a level appropriate farming zone (shared zone table). + Location spot = SPOTS[Rnd.get(SPOTS.length)]; + final BotState placedState = _states.get(player.getObjectId()); + final Object[] picked = FakePlayerProgressionManager.getInstance().pickSpot(player.getLevel(), (placedState != null) ? placedState.race : ""); + if (picked != null) + { + spot = (Location) picked[0]; + if (placedState != null) + { + placedState.zone = (String) picked[1]; + } + } + player.getStatus().setCurrentHp(player.getMaxHp()); + player.getStatus().setCurrentMp(player.getMaxMp()); + player.getStatus().setCurrentCp(player.getMaxCp()); + player.spawnMe(spot.getX() + Rnd.get(-400, 400), spot.getY() + Rnd.get(-400, 400), spot.getZ()); + player.setRunning(); + _bots.add(player); + } + catch (Exception e) + { + LOGGER.log(Level.WARNING, getClass().getSimpleName() + ": Could not load char " + charId, e); + } + } + } + + /** + * Auto accept a party invite - mirrors RequestAnswerJoinParty (response 1). + * @param requestor the inviting player. + * @param target the headless bot. + */ + public void autoAcceptParty(Player requestor, Player target) + { + ThreadPool.schedule(() -> + { + try + { + requestor.sendPacket(new JoinParty(1)); + if (requestor.isInParty()) + { + if (requestor.getParty().getMemberCount() < 9) + { + target.joinParty(requestor.getParty()); + } + } + else + { + requestor.setParty(new Party(requestor, requestor.getPartyDistributionType())); + target.joinParty(requestor.getParty()); + } + target.setActiveRequester(null); + requestor.onTransactionResponse(); + } + catch (Exception e) + { + LOGGER.log(Level.WARNING, getClass().getSimpleName() + ": Party accept failed.", e); + } + }, 1000 + Rnd.get(1500)); + } + + private void tick() + { + final long now = System.currentTimeMillis(); + for (Player bot : _bots) + { + try + { + handle(bot, now); + } + catch (Exception e) + { + // Keep the loop alive. + } + } + } + + private void handle(Player bot, long now) + { + // Safety net: a headless bot must never stay decayed after a teleport. + if (!bot.isSpawned()) + { + bot.setTeleporting(true); + bot.onTeleported(); + bot.broadcastUserInfo(); + return; + } + + if (bot.isDead()) + { + final Long at = _reviveAt.get(bot.getObjectId()); + if (at == null) + { + _reviveAt.put(bot.getObjectId(), now + 15000); + } + else if (now >= at) + { + _reviveAt.remove(bot.getObjectId()); + + // Respawn in the nearest town, exactly like a player pressing "to village". + final Location town = MapRegionData.getInstance().getTeleToLocation(bot, TeleportWhereType.TOWN); + if (town != null) + { + teleport(bot, town); + } + bot.doRevive(); + bot.getStatus().setCurrentHp(bot.getMaxHp() * 0.7); + bot.getStatus().setCurrentMp(bot.getMaxMp() * 0.7); + bot.broadcastUserInfo(); + + // Head back to the farming zone after a short break. + final BotState state = _states.get(bot.getObjectId()); + final Object[] spot = FakePlayerProgressionManager.getInstance().pickSpot(bot.getLevel(), (state != null) ? state.race : ""); + if (spot != null) + { + final Location back = (Location) spot[0]; + if (state != null) + { + state.zone = (String) spot[1]; + } + ThreadPool.schedule(() -> + { + if (!bot.isDead()) + { + teleport(bot, back); + } + }, 20000 + Rnd.get(40000)); + } + } + return; + } + + // Party behavior: stay with the leader, assist their target. + final Party party = bot.getParty(); + if (party != null) + { + final Player leader = party.getLeader(); + if ((leader != null) && (leader != bot) && !leader.isHeadlessBot()) + { + if (bot.calculateDistance2D(leader) > 3000) + { + teleport(bot, leader.getLocation()); + return; + } + final WorldObject leaderTarget = leader.getTarget(); + if ((leaderTarget instanceof Monster monster) && leader.isInCombat() && !monster.isDead()) + { + if (bot.getTarget() != monster) + { + bot.setTarget(monster); + } + bot.getAI().setIntentionAttack(monster); + return; + } + if (!bot.isInCombat() && (bot.calculateDistance2D(leader) > 250)) + { + bot.getAI().setIntentionFollow(leader); + return; + } + return; + } + } + + // Раз в минуту сверяем экипировку с уровнем: после апа тира надо переодеться, + // а после отката уровня - снять слишком высокий грейд. + final BotState gearState = _states.get(bot.getObjectId()); + if ((gearState != null) && (now > gearState.nextGearCheck)) + { + gearState.nextGearCheck = now + 60000; + if ((bot.getExpertisePenaltyBonus() > 0) || (FakePlayerProgressionManager.tierOf(bot.getLevel()) != gearState.gearTier)) + { + gearState.gearTier = FakePlayerProgressionManager.tierOf(bot.getLevel()); + equipAndTeach(bot); + } + } + + // Заблокированная цель (ганг / дебаг-команда): не отвлекаемся на мобов. + final BotState focus = _states.get(bot.getObjectId()); + if ((focus != null) && (focus.forcedTargetId != 0)) + { + if (now >= focus.forcedUntil) + { + focus.forcedTargetId = 0; + } + else + { + final WorldObject victim = World.findObject(focus.forcedTargetId); + if ((victim instanceof Player victimPlayer) && !victimPlayer.isDead() && (bot.calculateDistance2D(victimPlayer) < 3000)) + { + if ((bot.getTarget() != victimPlayer) || !bot.isAttackingNow()) + { + bot.setTarget(victimPlayer); + bot.getAI().setIntentionAttack(victimPlayer); + } + return; + } + focus.forcedTargetId = 0; + } + } + + // Game sense: survival, upkeep, party role, combat rotation, target picking. + // Runs before the "life" logic so a bot never trades or wanders while it is + // bleeding out or has a monster on its back. + final BotState brainState = _states.get(bot.getObjectId()); + if (brainState != null) + { + final boolean hunts = !_tradeUntil.containsKey(bot.getObjectId()); + if (FakePlayerBrain.act(bot, brainState.combat, hunts)) + { + return; + } + } + + // Private store shift: sit in Giran with a real sell store. + final Long tradeEnd = _tradeUntil.get(bot.getObjectId()); + if (tradeEnd != null) + { + if (now < tradeEnd) + { + return; + } + _tradeUntil.remove(bot.getObjectId()); + bot.setPrivateStoreType(PrivateStoreType.NONE); + bot.standUp(); + bot.broadcastUserInfo(); + _nextTradeAt.put(bot.getObjectId(), now + Rnd.get(1800000, 5400000)); + } + else + { + final Long tradeAt = _nextTradeAt.get(bot.getObjectId()); + if ((tradeAt != null) && (now >= tradeAt) && !bot.isInCombat() && (bot.getParty() == null) && !bot.isDead()) + { + // A bot goes to the market only when it actually has farmed loot to sell. + if (!sellableLoot(bot).isEmpty() && (Rnd.get(100) < FakePlayersConfig.FAKE_PLAYER_TRADE_CHANCE)) + { + openStore(bot, now); + return; + } + _nextTradeAt.put(bot.getObjectId(), now + Rnd.get(600000, 1800000)); + } + } + + final BotState state = _states.get(bot.getObjectId()); + if (state != null) + { + // Real level ups happen by themselves (they earn real exp) - react and migrate. + if (bot.getLevel() > state.lastLevel) + { + final int oldTier = FakePlayerProgressionManager.tierOf(state.lastLevel); + final int newTier = FakePlayerProgressionManager.tierOf(bot.getLevel()); + state.lastLevel = bot.getLevel(); + if (newTier != oldTier) + { + eventChat(bot, "Ты апнул " + bot.getLevel() + " уровень и перерос эту локацию. Попрощайся, уходишь на новый спот.", "migrate", null, null); + final Object[] spot = FakePlayerProgressionManager.getInstance().pickSpot(bot.getLevel(), state.race); + if (spot != null) + { + teleport(bot, (Location) spot[0]); + state.zone = (String) spot[1]; + } + } + else + { + final Map slots = new HashMap<>(); + slots.put("level", String.valueOf(bot.getLevel())); + FakePlayerBotContext.setEvent(seedIdOf(bot), "levelup"); + if ((bot.getClan() != null) && (Rnd.get(100) < 40)) + { + final BotState levelState = _states.get(bot.getObjectId()); + final String clanLine = FakePlayerChatLines.getInstance().compose((levelState != null) ? levelState.seedId : 0, "levelup", (levelState != null) ? levelState.personality : "neutral", slots); + if (clanLine != null) + { + bot.getClan().broadcastToOnlineMembers(new CreatureSay(bot, ChatType.CLAN, bot.getName(), clanLine)); + } + } + else + { + eventChat(bot, "Ты только что взял " + bot.getLevel() + " уровень. Порадуйся одной фразой.", "levelup", slots, null); + } + } + return; + } + + // Credit players helping this bot with its monster. + final WorldObject current = bot.getTarget(); + if (bot.isInCombat() && (current instanceof Monster monsterTarget) && ((now - state.lastHelpCredit) > 300000)) + { + final Player helper = World.getNearestVisibleObjectInRange(bot, Player.class, 900, other -> !other.isDead() && !other.isHeadlessBot() && other.isInCombat() && (other.getTarget() == monsterTarget)); + if (helper != null) + { + state.lastHelpCredit = now; + FakePlayerMemoryManager.getInstance().onHelpedBy(state.seedId, helper.getName()); + } + } + + // Personality actions against real players. + if (!bot.isInCombat() && (bot.getParty() == null)) + { + Player victim = null; + String seam = null; + String instruction = null; + if ("ganker".equals(state.personality)) + { + victim = World.getNearestVisibleObjectInRange(bot, Player.class, NOTICE_RANGE, other -> !other.isDead() && !other.isHeadlessBot() && !other.isInvisible() && !other.isGM()); + seam = "gank_start"; + instruction = "Ты нападаешь на игрока. Крикни что-нибудь дерзкое."; + } + else if ("pkk".equals(state.personality)) + { + victim = World.getNearestVisibleObjectInRange(bot, Player.class, NOTICE_RANGE, other -> !other.isDead() && !other.isHeadlessBot() && ((other.getKarma() > 0) || (other.getPvpFlag() != 0))); + seam = "pkk_start"; + instruction = "Ты охотник на ПК и нападаешь на нарушителя. Крикни про правосудие."; + } + if ((victim != null) && (victim.getObjectId() != state.lastPvpTargetId)) + { + state.lastPvpTargetId = victim.getObjectId(); + state.lastChat = now; + forceTarget(bot, victim, 45); + eventChat(bot, instruction, seam, Map.of("target", victim.getName()), victim.getName()); + return; + } + + // Helpers assist real players fighting monsters. + if ("helper".equals(state.personality)) + { + final Player ally = World.getNearestVisibleObjectInRange(bot, Player.class, NOTICE_RANGE, other -> !other.isDead() && !other.isHeadlessBot() && other.isInCombat()); + if (ally != null) + { + final WorldObject allyTarget = ally.getTarget(); + if ((allyTarget instanceof Monster monster) && !monster.isDead()) + { + bot.setTarget(monster); + bot.getAI().setIntentionAttack(monster); + if ((now - state.lastChat) > TAUNT_COOLDOWN) + { + state.lastChat = now; + eventChat(bot, "Ты помогаешь игроку " + ally.getName() + " убить монстра. Скажи что-то дружелюбное.", "assist", Map.of("player", ally.getName()), ally.getName()); + } + return; + } + } + } + } + + // Ambient talk when a real player is around (memory and rumors aware). + if (((now - state.lastChat) > AMBIENT_COOLDOWN) && (Rnd.get(100) < FakePlayersConfig.FAKE_PLAYER_AMBIENT_CHAT_CHANCE)) + { + final Player nearby = World.getNearestVisibleObjectInRange(bot, Player.class, 700, other -> !other.isDead() && !other.isHeadlessBot() && !other.isInvisible()); + if (nearby != null) + { + state.lastChat = now; + final FakePlayerMemoryManager.Memory memory = FakePlayerMemoryManager.getInstance().get(state.seedId, nearby.getName()); + final FakePlayerRumorManager.Story rumor = FakePlayerRumorManager.getInstance().bestAbout(state.seedId, nearby.getName()); + if ((memory != null) && (memory.score <= -2)) + { + eventChat(bot, "Рядом игрок " + nearby.getName() + ", который тебя убивал. Скажи что-то злопамятное.", "revenge_meet", Map.of("player", nearby.getName()), nearby.getName()); + } + else if ((memory != null) && (memory.score >= 2)) + { + eventChat(bot, "Рядом игрок " + nearby.getName() + ", который тебе помогал. Поприветствуй тепло.", "friendly_meet", Map.of("player", nearby.getName()), nearby.getName()); + } + else if (rumor != null) + { + say(bot, FakePlayerRumorManager.getInstance().tell(rumor)); + } + else if ((("helper".equals(state.personality)) || ("neutral".equals(state.personality))) && (Rnd.get(100) < 30)) + { + eventChat(bot, "Рядом игрок " + nearby.getName() + ". Позови его в пати.", "invite_player", Map.of("player", nearby.getName()), nearby.getName()); + } + else + { + eventChat(bot, "Рядом игрок. Скажи что-нибудь бытовое про фарм, дроп или спот.", "ambient", null, null); + } + } + } + + // Squads: headless bots of the same clan form REAL parties with each other. + if ((bot.getParty() == null) && (now > state.partyCooldown) && (bot.getClanId() > 0) && (Rnd.get(100) < 10)) + { + state.partyCooldown = now + 300000; + final Player mate = World.getNearestVisibleObjectInRange(bot, Player.class, 1200, other -> other.isHeadlessBot() && (other != bot) && !other.isDead() && (other.getParty() == null) && (other.getClanId() == bot.getClanId())); + if (mate != null) + { + final Party squad = new Party(bot, bot.getPartyDistributionType()); + bot.setParty(squad); + mate.joinParty(squad); + say(bot, FakePlayerChatLines.getInstance().compose(state.seedId, "invite_player", state.personality, "player", mate.getName()), "invite_player"); + } + } + } + + // Clan war PvP: attack players and headless bots of enemy clans. + if (!bot.isInCombat() && (bot.getClan() != null) && (Rnd.get(100) < 40)) + { + final Clan clan = bot.getClan(); + final Player enemy = World.getNearestVisibleObjectInRange(bot, Player.class, 1200, other -> !other.isDead() && (other != bot) && (other.getClan() != null) && (clan.isAtWarWith(other.getClanId()) || other.getClan().isAtWarWith(clan.getId()))); + if (enemy != null) + { + forceTarget(bot, enemy, 45); + return; + } + } + + if (bot.isInCombat() || bot.isAttackingNow()) + { + return; + } + + // Grab the loot that dropped from the last kills. + pickupLoot(bot); + + // Nothing to fight nearby - wander a bit inside the zone. + if (Rnd.get(100) < 30) + { + bot.getAI().setIntentionMoveTo(new Location(bot.getX() + Rnd.get(-800, 800), bot.getY() + Rnd.get(-800, 800), bot.getZ())); + } + } + + /** + * Says a line in local chat as this bot (real player broadcast). + * @param bot the headless player. + * @param message the text. + */ + public void say(Player bot, String message) + { + if ((bot == null) || (message == null) || message.isEmpty() || bot.isDead()) + { + return; + } + bot.broadcastPacket(new CreatureSay(bot, ChatType.GENERAL, bot.getName(), message)); + FakePlayerHeardManager.getInstance().onSpeech(bot, message); + } + + public void say(Player bot, String message, String seam) + { + if ((bot == null) || (message == null) || message.isEmpty() || bot.isDead()) + { + return; + } + bot.broadcastPacket(new CreatureSay(bot, ChatType.GENERAL, bot.getName(), message)); + FakePlayerHeardManager.getInstance().onSpeech(bot, message, seam); + } + + /** + * Say without the heard hook - used for pickup replies (depth 1). + * @param bot the headless bot. + * @param message the line. + */ + public void sayRaw(Player bot, String message) + { + if ((bot == null) || (message == null) || message.isEmpty() || bot.isDead()) + { + return; + } + bot.broadcastPacket(new CreatureSay(bot, ChatType.GENERAL, bot.getName(), message)); + } + + /** + * @param player any player. + * @return true when the player is one of the headless bots. + */ + public boolean isBot(Player player) + { + return (player != null) && _states.containsKey(player.getObjectId()); + } + + /** + * @param bot a headless bot. + * @return its seed character id (idiolect/anti-repeat identity), 0 when unknown. + */ + public int seedIdOf(Player bot) + { + final BotState state = (bot == null) ? null : _states.get(bot.getObjectId()); + return (state != null) ? state.seedId : 0; + } + + /** + * @param bot a headless bot. + * @return its personality, "neutral" when unknown. + */ + public String personalityOf(Player bot) + { + final BotState state = (bot == null) ? null : _states.get(bot.getObjectId()); + return (state != null) ? state.personality : "neutral"; + } + + private void whisper(Player bot, Player to, String message) + { + if ((message == null) || message.isEmpty()) + { + return; + } + to.sendPacket(new CreatureSay(bot, ChatType.WHISPER, bot.getName(), message)); + } + + /** + * Persona for the LLM, including this bot's memory and rumors about the target. + * @param bot the headless player. + * @param about player name the bot talks to or about. + * @return prompt text. + */ + private String persona(Player bot, String about) + { + final BotState state = _states.get(bot.getObjectId()); + final StringBuilder sb = new StringBuilder(256); + sb.append("Ты - ").append(bot.getName()).append(", игрок на сервере Lineage 2 Interlude, класс ").append(bot.getPlayerClass()).append(", уровень ").append(bot.getLevel()).append('.'); + if (state != null) + { + if (!state.zone.isEmpty()) + { + sb.append(" Твой спот: ").append(state.zone).append('.'); + } + switch (state.personality) + { + case "ganker": + sb.append(" Ты пкшер: задираешь чужаков на споте, дерзкий, пишешь коротко."); + break; + case "pkk": + sb.append(" Ты охотник на ПК: презираешь убийц новичков, говоришь о справедливости."); + break; + case "helper": + sb.append(" Ты дружелюбный игрок: помогаешь прохожим, зовешь в пати."); + break; + default: + sb.append(" Ты спокойно фармишь, болтаешь о дропе, ценах и сервере."); + } + if (about != null) + { + final String memory = FakePlayerMemoryManager.getInstance().describe(state.seedId, about); + if (!memory.isEmpty()) + { + sb.append(' ').append(memory); + } + final String rumors = FakePlayerRumorManager.getInstance().describeFor(state.seedId, about); + if (!rumors.isEmpty()) + { + sb.append(' ').append(rumors); + } + } + } + return sb.toString(); + } + + /** + * Event comment: LLM when available, seam line otherwise. + * @param bot the bot. + * @param instruction LLM instruction. + * @param seam seam key for the fallback. + * @param slots seam slots. + * @param about player the event is about (memory context), may be null. + */ + private void eventChat(Player bot, String instruction, String seam, Map slots, String about) + { + final BotState state = _states.get(bot.getObjectId()); + final int seedId = (state != null) ? state.seedId : 0; + final String mood = (state != null) ? state.personality : "neutral"; + final String fallback = FakePlayerChatLines.getInstance().compose(seedId, seam, mood, slots); + if (FakePlayerLlmService.getInstance().isEnabled()) + { + FakePlayerLlmService.getInstance().generate(persona(bot, about), instruction, reply -> say(bot, reply, seam), () -> say(bot, fallback, seam)); + } + else + { + say(bot, fallback, seam); + } + } + + /** + * Called from ChatWhisper when a player whispers a headless bot. + * @param player the speaker. + * @param bot the headless bot. + * @param message the text. + */ + public void onWhisper(Player player, Player bot, String message) + { + final BotState state = _states.get(bot.getObjectId()); + final int seedId = (state != null) ? state.seedId : 0; + final String personality = (state != null) ? state.personality : "neutral"; + final String reply = understand(player, bot, message, personality, seedId); + if (FakePlayerLlmService.getInstance().isEnabled()) + { + final String hint = FakePlayerChatManager.intentHint(lastIntent(message)); + FakePlayerLlmService.getInstance().generate(persona(bot, player.getName()), "Игрок " + player.getName() + " написал тебе в личные сообщения: \"" + message + "\"." + (hint.isEmpty() ? "" : " (суть: " + hint + ")"), answer -> + { + whisper(bot, player, answer); + FakePlayerMemoryManager.getInstance().addNote(seedId, player.getName(), "он писал: " + message + " / я: " + answer); + }, () -> whisper(bot, player, (reply != null) ? reply : FakePlayerChatLines.getInstance().pick("whisper_default", null))); + return; + } + whisper(bot, player, (reply != null) ? reply : FakePlayerChatLines.getInstance().pick("whisper_default", null)); + } + + /** + * Called from ChatGeneral when a player speaks near a headless bot. + * @param player the speaker. + * @param bot the headless bot. + * @param message the text. + */ + public void onLocalChat(Player player, Player bot, String message) + { + final BotState state = _states.get(bot.getObjectId()); + final int seedId = (state != null) ? state.seedId : 0; + final String personality = (state != null) ? state.personality : "neutral"; + final String reply = understand(player, bot, message, personality, seedId); + ThreadPool.schedule(() -> + { + if (FakePlayerLlmService.getInstance().isEnabled()) + { + final String hint = FakePlayerChatManager.intentHint(lastIntent(message)); + FakePlayerLlmService.getInstance().generate(persona(bot, player.getName()), "Игрок " + player.getName() + " сказал рядом с тобой: \"" + message + "\"." + (hint.isEmpty() ? "" : " (суть: " + hint + ")"), answer -> say(bot, answer), () -> say(bot, reply)); + } + else if (reply != null) + { + say(bot, reply); + } + }, Rnd.get(3000, 8000)); + } + + private String lastIntent(String message) + { + final FakePlayerIntentParser.Intent intent = FakePlayerIntentParser.getInstance().parse(message); + return (intent != null) ? intent.key : ""; + } + + /** + * Applies the intent effects for a headless bot and returns the template reply. + * @param player speaker. + * @param bot headless bot. + * @param message text. + * @param personality bot personality. + * @param seedId memory id. + * @return reply line or null. + */ + private String understand(Player player, Player bot, String message, String personality, int seedId) + { + final FakePlayerIntentParser.Intent intent = FakePlayerIntentParser.getInstance().parse(message); + if (intent == null) + { + return null; + } + + String seam = intent.seam; + final Map slots = new HashMap<>(); + slots.put("player", player.getName()); + final BotState state = _states.get(bot.getObjectId()); + slots.put("zone", ((state != null) && !state.zone.isEmpty()) ? state.zone : "поле"); + slots.put("level", String.valueOf(bot.getLevel())); + + switch (intent.key) + { + case "insult": + { + FakePlayerMemoryManager.getInstance().adjustScore(seedId, player.getName(), -1); + final boolean aggressive = "ganker".equals(personality) || "pkk".equals(personality); + seam = aggressive ? "reply_insult_aggro" : "reply_insult_soft"; + if (aggressive && (bot.calculateDistance2D(player) < 1500)) + { + forceTarget(bot, player, 45); + } + break; + } + case "thanks": + { + FakePlayerMemoryManager.getInstance().adjustScore(seedId, player.getName(), 1); + break; + } + case "ask_help": + { + final boolean willing = !"ganker".equals(personality) && (bot.calculateDistance2D(player) < 3000); + seam = willing ? "reply_help_yes" : "reply_help_no"; + if (willing) + { + final WorldObject playerTarget = player.getTarget(); + if ((playerTarget instanceof Monster monster) && !monster.isDead()) + { + bot.setTarget(monster); + bot.getAI().setIntentionAttack(monster); + } + else + { + bot.getAI().setIntentionFollow(player); + } + } + break; + } + case "ask_party": + { + // Real party: the bot invites the player back, the client shows a normal invite. + seam = "ganker".equals(personality) ? "reply_party_no" : "party_accept"; + break; + } + case "ask_rumors": + { + final FakePlayerRumorManager.Story story = FakePlayerRumorManager.getInstance().bestAny(seedId); + if (story != null) + { + return "слышал? " + FakePlayerRumorManager.getInstance().tellThird(story); + } + break; + } + } + return seam.isEmpty() ? null : FakePlayerChatLines.getInstance().compose(seedId, seam, personality, slots); + } + + /** + * Called from Player.doDie when a headless bot is killed by a player. + * @param bot the dead bot. + * @param killer the killer. + */ + public void onBotKilled(Player bot, Player killer) + { + final BotState state = _states.get(bot.getObjectId()); + if (state == null) + { + return; + } + FakePlayerMemoryManager.getInstance().onKilledBy(state.seedId, killer.getName()); + FakePlayerBotContext.setEvent(state.seedId, "ganked"); + final String deathCry = FakePlayerChatLines.getInstance().compose(state.seedId, "killed_by", state.personality, "player", killer.getName()); + if (deathCry != null) + { + ThreadPool.schedule(() -> + { + if (bot != null) + { + // The bot lies dead for a while - dead players still type. + bot.broadcastPacket(new CreatureSay(bot, ChatType.GENERAL, bot.getName(), deathCry)); + FakePlayerHeardManager.getInstance().onSpeech(bot, deathCry, "killed_by"); + } + }, Rnd.get(1500, 4000)); + } + + // Nearby bots witness the kill (rumor seed) - both headless and NPC ones. + final String victimName = bot.getName(); + World.forEachVisibleObjectInRange(bot, Player.class, 900, witness -> + { + if (witness.isHeadlessBot() && (witness != bot)) + { + final BotState witnessState = _states.get(witness.getObjectId()); + if (witnessState != null) + { + FakePlayerRumorManager.getInstance().addWitnessed(witnessState.seedId, (killer.getKarma() > 0) ? "pk" : "kill", killer.getName(), victimName); + } + } + }); + } + + /** + * Opens a real private sell store in Giran: gives the bot goods if the + * inventory is empty, fills the trade list and sits down. + * @param bot the headless player. + * @param now current time. + */ + /** + * @param bot the bot. + * @return farmed items the bot can put in a private store (no adena, nothing equipped). + */ + private List sellableLoot(Player bot) + { + final List result = new ArrayList<>(); + for (org.l2jmobius.gameserver.entity.item.instance.Item item : bot.getInventory().getItems()) + { + if ((item == null) || item.isEquipped() || (item.getId() == 57) || !item.isSellable() || !item.isTradeable()) + { + continue; + } + result.add(item); + } + return result; + } + + /** + * Picks up loot dropped by this bot's kills, so its store has real goods. + * @param bot the bot. + */ + private void pickupLoot(Player bot) + { + World.forEachVisibleObjectInRange(bot, org.l2jmobius.gameserver.entity.item.instance.Item.class, 250, item -> + { + if (!item.isSpawned() || (bot.getInventory().getSize() > 60)) + { + return; + } + final int owner = item.getOwnerId(); + if ((owner != 0) && (owner != bot.getObjectId())) + { + return; // Someone else's drop. + } + bot.doPickupItem(item); + }); + } + + private void openStore(Player bot, long now) + { + try + { + // Stop whatever the bot was doing, then travel to the market. + bot.getAI().setIntentionActive(); + bot.stopMove(null); + teleport(bot, TRADE_SPOT.getX() + Rnd.get(-250, 250), TRADE_SPOT.getY() + Rnd.get(-250, 250), TRADE_SPOT.getZ()); + // Reserve the slot right away so the trader cap is honoured. + final long tradeFor = Rnd.get(1200000, 3600000); + _tradeUntil.put(bot.getObjectId(), now + tradeFor); + FakePlayerBotContext.setPlan(seedIdOf(bot), "trade", tradeFor); + FakePlayerBotContext.setEvent(seedIdOf(bot), "opened_store"); + ThreadPool.schedule(() -> finishStore(bot), 1200); + + } + catch (Exception e) + { + _tradeUntil.remove(bot.getObjectId()); + _nextTradeAt.put(bot.getObjectId(), now + 600000); + } + } + + /** + * Second half of opening a store - runs after the teleport actually landed. + * @param bot the bot. + */ + private void finishStore(Player bot) + { + final long now = System.currentTimeMillis(); + try + { + if (bot.isDead() || !bot.isSpawned()) + { + _tradeUntil.remove(bot.getObjectId()); + _nextTradeAt.put(bot.getObjectId(), now + 300000); + return; + } + + // Sell what was actually farmed. + final List loot = sellableLoot(bot); + if (loot.isEmpty()) + { + _tradeUntil.remove(bot.getObjectId()); + _nextTradeAt.put(bot.getObjectId(), now + 900000); + return; + } + + bot.getSellList().clear(); + int listed = 0; + for (org.l2jmobius.gameserver.entity.item.instance.Item item : loot) + { + if (listed >= 6) + { + break; + } + final int base = Math.max(1, item.getReferencePrice()); + final int price = (int) Math.min(Integer.MAX_VALUE, base * (80 + Rnd.get(90)) / 100L); + bot.getSellList().addItem(item.getObjectId(), (int) Math.min(item.getCount(), 5000), price); + listed++; + } + if (listed == 0) + { + _tradeUntil.remove(bot.getObjectId()); + _nextTradeAt.put(bot.getObjectId(), now + 900000); + return; + } + final BotState storeState = _states.get(bot.getObjectId()); + final String title = FakePlayerChatLines.getInstance().compose((storeState != null) ? storeState.seedId : 0, "store_title", (storeState != null) ? storeState.personality : "neutral", null); + final String caption = ((title != null) && !title.isEmpty()) ? title : STORE_MSGS[Rnd.get(STORE_MSGS.length)]; + bot.getSellList().setTitle(caption); + bot.setStoreName(caption); + bot.sitDown(); + bot.setPrivateStoreType(PrivateStoreType.SELL); + bot.broadcastUserInfo(); + // Without this the store caption stays invisible for everyone around. + bot.broadcastPacket(new org.l2jmobius.gameserver.network.serverpackets.PrivateStoreMsgSell(bot)); + } + catch (Exception e) + { + _nextTradeAt.put(bot.getObjectId(), now + 600000); + } + } + + /** + * Teleports a headless bot and finishes the teleport by hand: a normal player + * returns to the world when its client confirms the teleport, a headless one + * has no client, so without this it stays decayed (invisible) forever. + * @param bot the bot. + * @param x target x. + * @param y target y. + * @param z target z. + */ + public void teleport(Player bot, int x, int y, int z) + { + bot.teleToLocation(x, y, z); + ThreadPool.schedule(() -> + { + try + { + bot.onTeleported(); + bot.broadcastUserInfo(); + } + catch (Exception e) + { + // Ignore - next tick will retry through the visibility check. + } + }, 500); + } + + private void teleport(Player bot, Location location) + { + teleport(bot, location.getX(), location.getY(), location.getZ()); + } + + /** + * Выдаёт боту скиллы его класса и экипировку по уровню: сид-персонажи приходят + * из базы голыми и без скиллов, поэтому раньше они дрались кулаками. + * @param bot the bot. + */ + private void equipAndTeach(Player bot) + { + try + { + bot.giveAvailableSkills(true, true, true); + bot.sendSkillList(); + + // Снимаем всё, что не по уровню (например, после пересчёта уровня из опыта). + for (org.l2jmobius.gameserver.entity.item.instance.Item worn : bot.getInventory().getItems()) + { + if (worn.isEquipped() && (worn.getTemplate().getCrystalType().getLevel() > gradeForLevel(bot.getLevel()))) + { + bot.getInventory().unEquipItemInSlot(worn.getLocationSlot()); + } + } + + final int tier = Math.min(7, FakePlayerProgressionManager.tierOf(bot.getLevel())); + final boolean mage = bot.isMageClass(); + final int classId = bot.getPlayerClass().getId(); + final boolean archer = (classId == 9) || (classId == 24) || (classId == 37) || (classId == 92) || (classId == 102) || (classId == 109); + final boolean dagger = (classId == 8) || (classId == 23) || (classId == 36) || (classId == 93) || (classId == 101) || (classId == 108); + final boolean blunt = (classId == 15) || (classId == 16) || (classId == 30) || (classId == 97) || (classId == 105) || (classId == 116); + + final int weaponId = mage ? STAVES[tier] : archer ? BOWS[tier] : dagger ? DAGGERS[tier] : blunt ? BLUNTS[tier] : SWORDS[tier]; + final int chestId = mage ? ROBE_CHEST[tier] : (archer || dagger) ? LIGHT_CHEST[tier] : HEAVY_CHEST[tier]; + final boolean onepiece = mage ? ROBE_ONEPIECE[tier] : (archer || dagger) ? LIGHT_ONEPIECE[tier] : HEAVY_ONEPIECE[tier]; + final int legsId = mage ? ROBE_LEGS[tier] : (archer || dagger) ? LIGHT_LEGS[tier] : HEAVY_LEGS[tier]; + + giveAndWear(bot, weaponId); + giveAndWear(bot, chestId); + if (!onepiece) + { + giveAndWear(bot, legsId); + } + + // Шоты того же грейда, что оружие - иначе просто не сработают. + final int shotId = mage ? SPIRITSHOTS[tier] : SOULSHOTS[tier]; + if (bot.getInventory().getItemByItemId(shotId) == null) + { + bot.addItem(ItemProcessType.NONE, shotId, 5000, bot, false); + } + bot.refreshExpertisePenalty(); + bot.broadcastUserInfo(); + } + catch (Exception e) + { + LOGGER.log(Level.WARNING, getClass().getSimpleName() + ": Could not equip " + bot.getName(), e); + } + } + + /** + * @param level character level. + * @return highest crystal grade level the character may wear without penalty. + */ + private static int gradeForLevel(int level) + { + if (level >= 76) + { + return 5; // S + } + if (level >= 61) + { + return 4; // A + } + if (level >= 52) + { + return 3; // B + } + if (level >= 40) + { + return 2; // C + } + if (level >= 20) + { + return 1; // D + } + return 0; // NG + } + + private void giveAndWear(Player bot, int itemId) + { + if (itemId <= 0) + { + return; + } + org.l2jmobius.gameserver.entity.item.instance.Item item = bot.getInventory().getItemByItemId(itemId); + if (item == null) + { + item = bot.addItem(ItemProcessType.NONE, itemId, 1, bot, false); + } + if ((item != null) && !item.isEquipped()) + { + bot.useEquippableItem(item, false); + } + } + + /** + * Держит бота на цели, чтобы рутинный фарм не перебивал ганг. + * @param bot the bot. + * @param target the victim. + * @param seconds focus duration. + */ + private void forceTarget(Player bot, Player target, int seconds) + { + final BotState state = _states.get(bot.getObjectId()); + if (state != null) + { + state.forcedTargetId = target.getObjectId(); + state.forcedUntil = System.currentTimeMillis() + (seconds * 1000L); + } + bot.setTarget(target); + bot.getAI().setIntentionAttack(target); + } + + private Player findBot(String name) + { + for (Player bot : _bots) + { + if (bot.getName().equalsIgnoreCase(name)) + { + return bot; + } + } + return null; + } + + /** + * Debug commands for the dashboard: force behaviors without waiting for timers. + * @param command command name. + * @param name bot name (empty = pick a random suitable bot). + * @param argument optional argument (player name / text / count). + * @return human readable result. + */ + public String debugCommand(String command, String name, String argument) + { + final long now = System.currentTimeMillis(); + Player bot = name.isEmpty() ? null : findBot(name); + if ((bot == null) && !_bots.isEmpty() && name.isEmpty()) + { + for (int i = 0; i < 40; i++) + { + final Player candidate = _bots.get(Rnd.get(_bots.size())); + if (!candidate.isDead()) + { + bot = candidate; + break; + } + } + } + + switch (command) + { + case "list": + { + final StringBuilder sb = new StringBuilder(); + int shown = 0; + for (Player player : _bots) + { + if (shown++ >= 25) + { + break; + } + final BotState state = _states.get(player.getObjectId()); + sb.append(player.getName()).append(" lvl").append(player.getLevel()).append(' ').append((state != null) ? state.personality : "?").append(' ').append((state != null) ? state.zone : "").append(player.isDead() ? " [dead]" : "").append('\n'); + } + return "headless: " + _bots.size() + "\n" + sb; + } + case "trade": + { + if (bot == null) + { + return "bot not found"; + } + _tradeUntil.remove(bot.getObjectId()); + openStore(bot, now); + return bot.getName() + ": лавка открыта в Гиране"; + } + case "tradeall": + { + int count = 0; + final int limit = argument.isEmpty() ? 10 : Math.min(50, Integer.parseInt(argument)); + for (Player player : _bots) + { + if ((count >= limit) || player.isDead() || (player.getParty() != null)) + { + continue; + } + if (!_tradeUntil.containsKey(player.getObjectId())) + { + openStore(player, now); + count++; + } + } + return "лавок открыто: " + count; + } + case "closeshop": + { + if (bot == null) + { + return "bot not found"; + } + _tradeUntil.remove(bot.getObjectId()); + bot.setPrivateStoreType(PrivateStoreType.NONE); + bot.standUp(); + bot.broadcastUserInfo(); + return bot.getName() + ": лавка закрыта"; + } + case "come": + { + final Player target = World.getPlayer(argument); + if ((bot == null) || (target == null)) + { + return "usage: come&name=&arg="; + } + teleport(bot, target.getLocation()); + return bot.getName() + " телепортирован к " + target.getName(); + } + case "party": + { + final Player target = World.getPlayer(argument); + if ((bot == null) || (target == null)) + { + return "usage: party&arg="; + } + teleport(bot, target.getLocation()); + if (target.getParty() == null) + { + final Party party = new Party(target, target.getPartyDistributionType()); + target.setParty(party); + bot.joinParty(party); + } + else + { + bot.joinParty(target.getParty()); + } + say(bot, FakePlayerChatLines.getInstance().compose(0, "party_accept", "neutral", null), "party_accept"); + return bot.getName() + " в пати с " + target.getName(); + } + case "gank": + { + final Player target = World.getPlayer(argument); + if ((bot == null) || (target == null)) + { + return "usage: gank&arg="; + } + final Player ganker = bot; + teleport(ganker, target.getX() + 150, target.getY() + 150, target.getZ()); + ThreadPool.schedule(() -> forceTarget(ganker, target, 90), 1400); + say(bot, FakePlayerChatLines.getInstance().compose(0, "gank_start", "ganker", "target", target.getName()), "gank_start"); + return bot.getName() + " атакует " + target.getName(); + } + case "equip": + { + if (bot == null) + { + return "bot not found"; + } + equipAndTeach(bot); + return bot.getName() + ": выдан шмот и скиллы (" + bot.getSkills().size() + ")"; + } + case "equipall": + { + int done = 0; + for (Player player : _bots) + { + if (!player.isDead()) + { + equipAndTeach(player); + done++; + } + } + return "переодето ботов: " + done; + } + case "brain": + { + if (bot == null) + { + return "bot not found"; + } + return FakePlayerBrain.describe(bot); + } + case "gear": + { + if (bot == null) + { + return "bot not found"; + } + final StringBuilder sb = new StringBuilder(bot.getName() + " lvl" + bot.getLevel() + " " + bot.getPlayerClass() + "\n"); + for (org.l2jmobius.gameserver.entity.item.instance.Item item : bot.getInventory().getItems()) + { + if (item.isEquipped()) + { + sb.append(" [").append(item.getTemplate().getCrystalType()).append("] ").append(item.getTemplate().getName()).append('\n'); + } + } + sb.append(" штраф экспертизы: ").append(bot.getExpertisePenaltyBonus()); + return sb.toString(); + } + case "levelup": + { + if (bot == null) + { + return "bot not found"; + } + bot.getStat().addLevel((byte) 1); + return bot.getName() + " теперь " + bot.getLevel() + " уровня (реакция придёт на следующем тике)"; + } + case "migrate": + { + if (bot == null) + { + return "bot not found"; + } + final BotState state = _states.get(bot.getObjectId()); + final Object[] spot = FakePlayerProgressionManager.getInstance().pickSpot(bot.getLevel(), (state != null) ? state.race : ""); + if (spot == null) + { + return "no zone"; + } + teleport(bot, (Location) spot[0]); + if (state != null) + { + state.zone = (String) spot[1]; + } + say(bot, FakePlayerChatLines.getInstance().compose(0, "migrate", (state != null) ? state.personality : "neutral", null), "migrate"); + return bot.getName() + " переехал в " + ((state != null) ? state.zone : ""); + } + case "say": + { + if (bot == null) + { + return "bot not found"; + } + if (argument.isEmpty()) + { + eventChat(bot, "Скажи что-нибудь бытовое про фарм.", "ambient", null, null); + return bot.getName() + ": сказал реплику из шва ambient"; + } + say(bot, argument); + return bot.getName() + ": " + argument; + } + case "kill": + { + if (bot == null) + { + return "bot not found"; + } + bot.getStatus().setCurrentHp(1); + bot.doDie(bot); + return bot.getName() + " убит (встанет в городе через ~15 сек)"; + } + case "rumor": + { + if ((bot == null) || argument.isEmpty()) + { + return "usage: rumor&arg="; + } + final BotState state = _states.get(bot.getObjectId()); + if (state == null) + { + return "no state"; + } + FakePlayerRumorManager.getInstance().addWitnessed(state.seedId, "kill", argument, "кого-то"); + return bot.getName() + " теперь помнит слух про " + argument; + } + case "clanwar": + { + final Player target = World.getPlayer(argument); + if (target == null) + { + return "usage: clanwar&arg="; + } + if ((target.getClan() == null) || (bot == null) || (bot.getClan() == null)) + { + return "нужен клан у игрока и у бота"; + } + ClanTable.getInstance().storeClanWars(bot.getClanId(), target.getClanId()); + return "война: " + bot.getClan().getName() + " против " + target.getClan().getName(); + } + } + return "unknown command"; + } + + /** + * @return JSON array of headless bots for the dashboard. + */ + public String statusJson() + { + final StringBuilder sb = new StringBuilder(1 << 14); + boolean first = true; + for (Player bot : _bots) + { + final BotState state = _states.get(bot.getObjectId()); + if (!first) + { + sb.append(','); + } + first = false; + String activity = "idle"; + if (bot.isDead()) + { + activity = "dead"; + } + else if (_tradeUntil.containsKey(bot.getObjectId())) + { + activity = "trading"; + } + else if (bot.getParty() != null) + { + activity = "party"; + } + else if (bot.isInCombat()) + { + activity = "combat"; + } + else if (bot.isMoving()) + { + activity = "moving"; + } + final String target = (bot.getTarget() != null) ? bot.getTarget().getName() : ""; + sb.append("{\"id\":").append((state != null) ? state.seedId : 0) + .append(",\"name\":\"").append(bot.getName().replace('"', ' ')) + .append("\",\"level\":").append(bot.getLevel()) + .append(",\"personality\":\"").append((state != null) ? state.personality : "neutral") + .append("\",\"race\":\"").append((state != null) ? state.race : "") + .append("\",\"clanId\":").append(bot.getClanId()) + .append(",\"zone\":\"").append((state != null) ? state.zone : "") + .append("\",\"activity\":\"").append(activity) + .append("\",\"target\":\"").append(target.replace('"', ' ')) + .append("\",\"hp\":").append((int) (bot.getCurrentHp() * 100 / Math.max(1, bot.getMaxHp()))) + .append(",\"headless\":true") + .append(",\"x\":").append(bot.getX()).append(",\"y\":").append(bot.getY()).append(",\"z\":").append(bot.getZ()) + .append('}'); + } + return sb.toString(); + } + + public int size() + { + return _bots.size(); + } + + public static FakePlayerHeadlessManager getInstance() + { + return SingletonHolder.INSTANCE; + } + + private static class SingletonHolder + { + protected static final FakePlayerHeadlessManager INSTANCE = new FakePlayerHeadlessManager(); + } +} diff --git a/src_mobius/mobius/L2J_Mobius_CT_0_Interlude/java/org/l2jmobius/gameserver/managers/FakePlayerHeardManager.java b/src_mobius/mobius/L2J_Mobius_CT_0_Interlude/java/org/l2jmobius/gameserver/managers/FakePlayerHeardManager.java new file mode 100644 index 0000000..966876e --- /dev/null +++ b/src_mobius/mobius/L2J_Mobius_CT_0_Interlude/java/org/l2jmobius/gameserver/managers/FakePlayerHeardManager.java @@ -0,0 +1,230 @@ +/* + * Copyright (c) 2013 L2jMobius + * + * Permission is hereby granted, free of charge, to any person obtaining a copy + * of this software and associated documentation files (the "Software"), to deal + * in the Software without restriction, including without limitation the rights + * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell + * copies of the Software, and to permit persons to whom the Software is + * furnished to do so, subject to the following conditions: + * + * The above copyright notice and this permission notice shall be + * included in all copies or substantial portions of the Software. + * + * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR + * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, + * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE + * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, + * WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR + * IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. + */ +package org.l2jmobius.gameserver.managers; + +import java.util.ArrayList; +import java.util.HashMap; +import java.util.List; +import java.util.Map; +import java.util.concurrent.atomic.AtomicLong; +import java.util.regex.Pattern; + +import org.l2jmobius.commons.threads.ThreadPool; +import org.l2jmobius.commons.util.Rnd; +import org.l2jmobius.gameserver.entity.World; +import org.l2jmobius.gameserver.entity.actor.Creature; +import org.l2jmobius.gameserver.entity.actor.Npc; +import org.l2jmobius.gameserver.entity.actor.Player; + +/** + * The "ear" of the fake player population: every public bot line passes + * through here, and nearby bots sometimes pick the topic up - agreeing with a + * complaint, shrugging at a question, congratulating a level up. One pickup + * per line at most (depth 1), commercial/functional lines are never picked up. + * Sandbox-tested logic (overheard / overheard_q / grats seams). + * @author Mobius SPP + */ +public class FakePlayerHeardManager +{ + private static final int HEAR_RANGE = 1250; + private static final int PICKUP_CHANCE = 10; // Percent. + private static final int GRATS_CHANCE = 12; // Percent, per neighbour. + private static final int GRATS_MAX = 2; + private static final long GLOBAL_THROTTLE = 8000; // At most one pickup per N ms server-wide. + + private static final Pattern QUESTION = Pattern.compile("^(кто|где|когда|скок|сколько|почем)\\b.*|.*\\?.*", Pattern.UNICODE_CHARACTER_CLASS); + private static final Pattern COMMERCIAL = Pattern.compile(".*(лавка|продаю|продает|скупа|распродажа|налетай|торгую|акци|цены|меняю|покупай|торговец|зацени|ждет (своего )?хозяина|открыл точку|ищу (кп|пати)|лфп|нужн|формирую пати|собран|собираю|стучите|(кп|пати).{0,25}\\bго\\b|\\bго\\b.{0,25}(кп|пати)|за \\d+к|по \\d+к|\\d+ ?кк?\\b|лям|сотк|грейд|соски|шоты|бсое|свитки|кристалл|рецепт|уголь|бижа|банки|дешевле|отдам|вх\\b|под завязку|гк вызову).*", Pattern.UNICODE_CHARACTER_CLASS); + private static final Pattern LEVELUP = Pattern.compile(".*\\b\\d{1,2}\\b.*", Pattern.UNICODE_CHARACTER_CLASS); + + private final AtomicLong _lastPickup = new AtomicLong(); + + protected FakePlayerHeardManager() + { + } + + public static boolean isQuestionLine(String text) + { + return QUESTION.matcher(text).matches(); + } + + public static boolean isCommercialLine(String text) + { + return COMMERCIAL.matcher(text).matches(); + } + + public static boolean isLevelupLine(String text) + { + return LEVELUP.matcher(text).matches(); + } + + /** + * Called for every public line a bot says (never for pickup replies - depth 1). + * @param speaker the bot that spoke (npc fake player or headless player). + * @param text the said line. + */ + public void onSpeech(Creature speaker, String text) + { + onSpeech(speaker, text, ""); + } + + /** + * @param speaker the bot that spoke. + * @param text the said line. + * @param seam the seam the line came from ("" when unknown, e.g. an LLM line - + * then text heuristics decide). + */ + public void onSpeech(Creature speaker, String text, String seam) + { + if ((speaker == null) || (text == null) || text.isEmpty()) + { + return; + } + + // The seam is the ground truth; heuristics only cover seamless (LLM) lines. + final boolean known = (seam != null) && !seam.isEmpty(); + final boolean levelup = known ? "levelup".equals(seam) : isLevelupLine(text); + final boolean commercial = known ? ("trade_shout".equals(seam) || "lfp".equals(seam) || "store_title".equals(seam) || "call_help".equals(seam) || "grats".equals(seam) || "overheard".equals(seam) || "overheard_q".equals(seam)) : isCommercialLine(text); + if (!levelup && commercial) + { + return; // Nobody "agrees" with an advertisement (or a pickup - depth 1). + } + + final long now = System.currentTimeMillis(); + if (!levelup) + { + if (Rnd.get(100) >= PICKUP_CHANCE) + { + return; + } + final long last = _lastPickup.get(); + if (((now - last) < GLOBAL_THROTTLE) || !_lastPickup.compareAndSet(last, now)) + { + return; + } + } + + final List listeners = new ArrayList<>(); + for (Npc npc : World.getVisibleObjectsInRange(speaker, Npc.class, HEAR_RANGE)) + { + if ((npc != speaker) && npc.getTemplate().isFakePlayer() && !npc.isDead()) + { + listeners.add(npc); + } + } + for (Player player : World.getVisibleObjectsInRange(speaker, Player.class, HEAR_RANGE)) + { + if ((player != speaker) && FakePlayerHeadlessManager.getInstance().isBot(player) && !player.isDead()) + { + listeners.add(player); + } + } + if (listeners.isEmpty()) + { + return; + } + + if (levelup) + { + int congratulated = 0; + for (Creature listener : listeners) + { + if (congratulated >= GRATS_MAX) + { + break; + } + if (Rnd.get(100) >= GRATS_CHANCE) + { + continue; + } + congratulated++; + final Map slots = new HashMap<>(1); + slots.put("player", speaker.getName()); + scheduleReply(listener, "grats", slots); + } + return; + } + + final Creature listener = listeners.get(Rnd.get(listeners.size())); + final boolean question = isQuestionLine(text); + final Map slots = new HashMap<>(1); + final String[] words = text.split("\\s+"); + final StringBuilder echo = new StringBuilder(); + for (int i = 0; (i < words.length) && (i < 3); i++) + { + if (i > 0) + { + echo.append(' '); + } + echo.append(words[i]); + } + slots.put("msg", echo.toString()); + scheduleReply(listener, question ? "overheard_q" : "overheard", slots); + } + + private void scheduleReply(Creature listener, String seam, Map slots) + { + ThreadPool.schedule(() -> + { + final int botId; + final String personality; + if (listener instanceof Npc npc) + { + botId = FakePlayerProgressionManager.getInstance().getCharacterId(npc.getObjectId()); + personality = npc.getTemplate().getParameters().getString("fpcPersonality", "neutral"); + } + else if (listener instanceof Player player) + { + botId = FakePlayerHeadlessManager.getInstance().seedIdOf(player); + personality = FakePlayerHeadlessManager.getInstance().personalityOf(player); + } + else + { + return; + } + final Map facts = new HashMap<>(1); + facts.put("personality", personality); + // Optional mode: silence beats repetition for background reactions. + final String reply = FakePlayerChatLines.getInstance().speak(botId, seam, facts, slots, true, null); + if (reply == null) + { + return; + } + if (listener instanceof Npc npc) + { + FakePlayerChatManager.getInstance().broadcastRaw(npc, reply); + } + else if (listener instanceof Player player) + { + FakePlayerHeadlessManager.getInstance().sayRaw(player, reply); + } + }, Rnd.get(2000, 6000)); + } + + public static FakePlayerHeardManager getInstance() + { + return SingletonHolder.INSTANCE; + } + + private static class SingletonHolder + { + protected static final FakePlayerHeardManager INSTANCE = new FakePlayerHeardManager(); + } +} diff --git a/src_mobius/mobius/L2J_Mobius_CT_0_Interlude/java/org/l2jmobius/gameserver/managers/FakePlayerIdiolect.java b/src_mobius/mobius/L2J_Mobius_CT_0_Interlude/java/org/l2jmobius/gameserver/managers/FakePlayerIdiolect.java new file mode 100644 index 0000000..c93893a --- /dev/null +++ b/src_mobius/mobius/L2J_Mobius_CT_0_Interlude/java/org/l2jmobius/gameserver/managers/FakePlayerIdiolect.java @@ -0,0 +1,319 @@ +/* + * Copyright (c) 2013 L2jMobius + * + * Permission is hereby granted, free of charge, to any person obtaining a copy + * of this software and associated documentation files (the "Software"), to deal + * in the Software without restriction, including without limitation the rights + * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell + * copies of the Software, and to permit persons to whom the Software is + * furnished to do so, subject to the following conditions: + * + * The above copyright notice and this permission notice shall be + * included in all copies or substantial portions of the Software. + * + * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR + * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, + * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE + * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, + * WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR + * IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. + */ +package org.l2jmobius.gameserver.managers; + +import java.util.Map; +import java.util.concurrent.ConcurrentHashMap; +import java.util.regex.Matcher; +import java.util.regex.Pattern; + +/** + * Personal speech style of a fake player, derived deterministically from the + * character id (nothing is stored, survives restarts by construction). + * Mirrors the sandbox StylePass 1:1: laughter/filler markers, "go" form, + * comma habits, personal vocabulary partition and a private shop assortment. + * @author Mobius SPP + */ +public class FakePlayerIdiolect +{ + private static final Map CACHE = new ConcurrentHashMap<>(); + + private static final String[] LAUGHS = + { + "кек", + "лол", + ")))", + "ахах", + "хех" + }; + private static final String[] FILLERS = + { + "ну", + "короч", + "прям", + "вообще", + "эт самое" + }; + private static final String[] GO_FORMS = + { + "го", + "гоу", + "погнали", + "го го" + }; + private static final String[] GOODS = + { + "соски D", + "бижа D", + "свитки тп", + "дубина+3", + "кристаллы D", + "банки хп", + "рецепты C", + "уголь духа" + }; + private static final Pattern CONJ_PATTERN = Pattern.compile("\\s(?:а|но|что|чтобы|если|когда|который|пока|хотя)\\s"); + private static final Pattern GO_PATTERN = Pattern.compile("\\bго\\b", Pattern.UNICODE_CHARACTER_CLASS); + + /** Era chat contractions, applied per word with the bot's personal slang intensity. */ + private static final Object[][] CONTRACTIONS = + { + { Pattern.compile("\\bсейчас\\b", Pattern.UNICODE_CHARACTER_CLASS), "щас" }, + { Pattern.compile("\\bвообще\\b", Pattern.UNICODE_CHARACTER_CLASS), "ваще" }, + { Pattern.compile("\\bтолько\\b", Pattern.UNICODE_CHARACTER_CLASS), "тока" }, + { Pattern.compile("\\bсколько\\b", Pattern.UNICODE_CHARACTER_CLASS), "скок" }, + { Pattern.compile("\\bнормально\\b", Pattern.UNICODE_CHARACTER_CLASS), "норм" }, + { Pattern.compile("\\bспасибо\\b", Pattern.UNICODE_CHARACTER_CLASS), "спс" }, + { Pattern.compile("\\bпожалуйста\\b", Pattern.UNICODE_CHARACTER_CLASS), "плз" }, + { Pattern.compile("\\bчто\\b", Pattern.UNICODE_CHARACTER_CLASS), "че" }, + { Pattern.compile("\\bчего\\b", Pattern.UNICODE_CHARACTER_CLASS), "чо" }, + { Pattern.compile("\\bкто-нибудь\\b", Pattern.UNICODE_CHARACTER_CLASS), "кто-нить" }, + { Pattern.compile("\\bчто-нибудь\\b", Pattern.UNICODE_CHARACTER_CLASS), "че-нить" }, + { Pattern.compile("\\bкороче\\b", Pattern.UNICODE_CHARACTER_CLASS), "короч" }, + { Pattern.compile("\\bнаверное\\b", Pattern.UNICODE_CHARACTER_CLASS), "наверн" }, + { Pattern.compile("\\bсегодня\\b", Pattern.UNICODE_CHARACTER_CLASS), "сёдня" }, + { Pattern.compile("\\bздесь\\b", Pattern.UNICODE_CHARACTER_CLASS), "тут" }, + { Pattern.compile("\\bпосмотри\\b", Pattern.UNICODE_CHARACTER_CLASS), "глянь" } + }; + + public final int charId; + public final double chattiness; // 0.4..1.6, scales optional chunk chance. + public final double punct; // 0 / 0.6 / 1 - comma habits. + public final String laugh; + public final String filler; + public final String go; + public final boolean shortAddress; // Shortens long nicknames. + public final boolean yo; // "che" -> "chyo". + public final double silence; // 0..0.3 chance to ignore a stranger's first message. + public final boolean traitMat; + public final boolean traitEng; + public final boolean traitOld; + public final double loudness; // Channel preference (shout/trade lover). + public final double slang; // 0..1 - how hard the bot contracts words (щас/ваще/тока). + public final String storeItem; + public final String storePrice; + private final int _vocabSeed; + + private FakePlayerIdiolect(int charId) + { + this.charId = charId; + final long[] state = + { + hash32("idio" + charId) + }; + chattiness = round2(0.4 + (next(state) * 1.2)); + final double[] punctRoll = + { + 0, + 0, + 0.6, + 1 + }; + punct = punctRoll[(int) (next(state) * 4)]; + laugh = LAUGHS[(int) (next(state) * LAUGHS.length)]; + filler = FILLERS[(int) (next(state) * FILLERS.length)]; + go = GO_FORMS[(int) (next(state) * GO_FORMS.length)]; + shortAddress = next(state) > 0.66; + yo = next(state) < 0.3; + silence = round2(next(state) * 0.3); + traitMat = next(state) < 0.35; + traitEng = next(state) < 0.3; + traitOld = next(state) < 0.25; + loudness = round2(next(state)); + storeItem = GOODS[(int) (next(state) * GOODS.length)]; + slang = round2(next(state)); + storePrice = ((5 + (int) (next(state) * 45)) * 10) + "к"; + _vocabSeed = hash32("vocab" + charId); + } + + public static FakePlayerIdiolect of(int charId) + { + return CACHE.computeIfAbsent(charId <= 0 ? 0 : charId, FakePlayerIdiolect::new); + } + + public boolean hasTrait(String trait) + { + switch (trait) + { + case "mat": + { + return traitMat; + } + case "eng": + { + return traitEng; + } + case "old": + { + return traitOld; + } + } + return false; + } + + /** + * @param poolKey pool name. + * @param size pool size. + * @param index line index. + * @return true when this line belongs to the bot's personal vocabulary subset of the pool. + */ + public boolean ownsPoolLine(String poolKey, int size, int index) + { + if (size <= 5) + { + return true; + } + final int keep = Math.max(4, (int) Math.ceil(size * 0.6)); + final int[] order = new int[size]; + for (int i = 0; i < size; i++) + { + order[i] = i; + } + final long[] state = + { + _vocabSeed ^ hash32(poolKey) + }; + for (int i = size - 1; i > 0; i--) + { + final int j = (int) (next(state) * (i + 1)); + final int tmp = order[i]; + order[i] = order[j]; + order[j] = tmp; + } + for (int i = 0; i < keep; i++) + { + if (order[i] == index) + { + return true; + } + } + return false; + } + + /** + * Incoming message analysis for style mirroring. + */ + public static class Mirror + { + public boolean noPunct; + public boolean shortMessage; + + public static Mirror of(String incoming) + { + final Mirror mirror = new Mirror(); + mirror.noPunct = !incoming.matches(".*[,.!?].*"); + mirror.shortMessage = incoming.trim().split("\\s+").length <= 2; + return mirror; + } + } + + /** + * Applies the personal style to an assembled line: laughter/filler markers, + * "go" form, "yo" habit and comma rules; mirrors the interlocutor when given. + * @param text assembled line (slots already filled). + * @param mirror incoming message analysis (may be null). + * @return styled line. + */ + public String stylePass(String text, Mirror mirror) + { + String result = text.replace("~lol~", laugh).replace("~f~", filler); + if (!"го".equals(go)) + { + result = GO_PATTERN.matcher(result).replaceAll(go); + } + if (yo) + { + result = result.replaceAll("\\bче\\b", "чё").replaceAll("\\bчо\\b", "чё"); + } + if (slang > 0.15) + { + for (Object[] contraction : CONTRACTIONS) + { + if (Math.random() < (slang * 0.8)) + { + result = ((Pattern) contraction[0]).matcher(result).replaceAll((String) contraction[1]); + } + } + } + double effectivePunct = punct; + if ((mirror != null) && mirror.noPunct) + { + effectivePunct = Math.min(effectivePunct, 0.3); + } + if (effectivePunct > 0) + { + final Matcher matcher = CONJ_PATTERN.matcher(result); + final StringBuilder sb = new StringBuilder(); + while (matcher.find()) + { + matcher.appendReplacement(sb, (Math.random() < effectivePunct ? "," : "") + Matcher.quoteReplacement(matcher.group())); + } + matcher.appendTail(sb); + result = sb.toString(); + } + else + { + result = result.replace(",", ""); + } + return result.replaceAll("\\s+", " ").replaceAll("\\s,", ",").replaceAll(",\\s*,+", ",").replaceAll("\\s+([:.!?])", "$1").trim(); + } + + /** + * @param nick interlocutor nickname. + * @return the form of address this bot uses (full or shortened nick). + */ + public String addressForm(String nick) + { + if (shortAddress && (nick != null) && (nick.length() > 5)) + { + return nick.substring(0, 4); + } + return nick; + } + + // --- Deterministic PRNG, same as the sandbox (fnv1a hash + mulberry32) --- + + static int hash32(String text) + { + int hash = 0x811C9DC5; + for (int i = 0; i < text.length(); i++) + { + hash ^= text.charAt(i); + hash *= 0x01000193; + } + return hash; + } + + private static double next(long[] state) + { + int seed = (int) state[0]; + seed += 0x6D2B79F5; + state[0] = seed; + int t = (seed ^ (seed >>> 15)) * (1 | seed); + t = (t + ((t ^ (t >>> 7)) * (61 | t))) ^ t; + return ((t ^ (t >>> 14)) & 0xFFFFFFFFL) / 4294967296.0; + } + + private static double round2(double value) + { + return Math.round(value * 100.0) / 100.0; + } +} diff --git a/src_mobius/mobius/L2J_Mobius_CT_0_Interlude/java/org/l2jmobius/gameserver/managers/FakePlayerIntentParser.java b/src_mobius/mobius/L2J_Mobius_CT_0_Interlude/java/org/l2jmobius/gameserver/managers/FakePlayerIntentParser.java new file mode 100644 index 0000000..61c528f --- /dev/null +++ b/src_mobius/mobius/L2J_Mobius_CT_0_Interlude/java/org/l2jmobius/gameserver/managers/FakePlayerIntentParser.java @@ -0,0 +1,300 @@ +/* + * Copyright (c) 2013 L2jMobius + * + * Permission is hereby granted, free of charge, to any person obtaining a copy + * of this software and associated documentation files (the "Software"), to deal + * in the Software without restriction, including without limitation the rights + * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell + * copies of the Software, and to permit persons to whom the Software is + * furnished to do so, subject to the following conditions: + * + * The above copyright notice and this permission notice shall be + * included in all copies or substantial portions of the Software. + * + * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR + * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, + * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE + * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, + * WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR + * IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. + */ +package org.l2jmobius.gameserver.managers; + +import java.io.File; +import java.util.ArrayList; +import java.util.List; +import java.util.logging.Logger; + +import org.w3c.dom.Document; + +import org.l2jmobius.commons.util.IXmlReader; +import org.l2jmobius.gameserver.util.StatSet; + +/** + * Understands incoming player messages without an LLM: normalizes the text + * (lowercase, translit decode, repeat squashing), tokenizes it and matches it + * against the intent lexicon (data/FakePlayerIntents.xml). An intent matches + * when every alternative group has at least one prefix hit among the tokens. + * @author Mobius SPP + */ +public class FakePlayerIntentParser implements IXmlReader +{ + private static final Logger LOGGER = Logger.getLogger(FakePlayerIntentParser.class.getName()); + + public static class Intent + { + public String key; + public String seam; + public int maxTokens; + final List groups = new ArrayList<>(); + } + + private final List _intents = new ArrayList<>(); + + protected FakePlayerIntentParser() + { + load(); + } + + @Override + public void load() + { + _intents.clear(); + parseDatapackFile("data/FakePlayerIntents.xml"); + LOGGER.info(getClass().getSimpleName() + ": Loaded " + _intents.size() + " intents."); + } + + @Override + public void parseDocument(Document document, File file) + { + forEach(document, "intents", listNode -> forEach(listNode, "intent", intentNode -> + { + final StatSet set = new StatSet(parseAttributes(intentNode)); + final Intent intent = new Intent(); + intent.key = set.getString("key"); + intent.seam = set.getString("seam", ""); + intent.maxTokens = set.getInt("maxTokens", 99); + forEach(intentNode, "m", groupNode -> intent.groups.add(groupNode.getTextContent().split("\\|"))); + _intents.add(intent); + })); + } + + /** + * Normalizes a message: lowercase, latin-leet to russian, squashed repeats. + * @param message raw text. + * @return normalized text. + */ + public String normalize(String message) + { + String text = message.toLowerCase(); + // Latin leet used by russian players -> russian letters. + text = text.replace("ii", "п").replace("ji", "л").replace("bi", "ы").replace("io", "ю"); + final StringBuilder sb = new StringBuilder(text.length()); + char previous = 0; + int repeat = 0; + for (char c : text.toCharArray()) + { + // Digits used as letters inside words. + if (c == '4') + { + c = 'ч'; + } + else if (c == '3') + { + c = 'з'; + } + else if (c == '6') + { + c = 'б'; + } + if (c == previous) + { + repeat++; + if (repeat >= 2) + { + continue; // Squash "приииивет". + } + } + else + { + repeat = 0; + } + previous = c; + sb.append(c); + } + return sb.toString(); + } + + /** + * Phonetic latin-to-russian transliteration ("privet" - "привет", "xelp" - "хелп"). + * @param text normalized text. + * @return transliterated text. + */ + public String phonetic(String text) + { + String result = text.replace("sh", "ш").replace("ch", "ч").replace("zh", "ж").replace("yu", "ю").replace("ya", "я").replace("kh", "х").replace("ts", "ц"); + final StringBuilder sb = new StringBuilder(result.length()); + for (char c : result.toCharArray()) + { + final int index = "abvgdezijklmnoprstufhxcyq".indexOf(c); + sb.append((index >= 0) ? "абвгдезийклмнопрстуфхxцык".charAt(index) : c); + } + return sb.toString().replace('x', 'х'); + } + + /** + * @param message the raw player message. + * @return the matched intent, or null. + */ + public Intent parse(String message) + { + final String normalizedText = normalize(message); + final String[] rawTokens = normalizedText.split("[^a-zа-яё0-9]+"); + final String[] phoneticTokens = phonetic(normalizedText).split("[^a-zа-яё0-9]+"); + final String[] tokens = new String[rawTokens.length + phoneticTokens.length]; + System.arraycopy(rawTokens, 0, tokens, 0, rawTokens.length); + System.arraycopy(phoneticTokens, 0, tokens, rawTokens.length, phoneticTokens.length); + int tokenCount = 0; + for (String token : rawTokens) + { + if (!token.isEmpty()) + { + tokenCount++; + } + } + if (tokenCount == 0) + { + return null; + } + + for (Intent intent : _intents) + { + if (tokenCount > intent.maxTokens) + { + continue; + } + boolean all = true; + for (String[] group : intent.groups) + { + boolean any = false; + for (String token : tokens) + { + if (token.isEmpty()) + { + continue; + } + for (String stem : group) + { + if (token.startsWith(stem) || ((stem.length() > 3) && fuzzyPrefix(token, stem))) + { + any = true; + break; + } + } + if (any) + { + break; + } + } + if (!any) + { + all = false; + break; + } + } + if (all) + { + return intent; + } + } + return null; + } + + /** + * Typo tolerant prefix match: the token's prefix is within Damerau-Levenshtein + * distance 1 of the stem ("помгите" matches stem "помо"). + * @param token message token. + * @param stem lexicon stem. + * @return true when the prefix is close enough. + */ + private static boolean fuzzyPrefix(String token, String stem) + { + final int length = stem.length(); + if (token.length() >= length) + { + if (withinOneEdit(token.substring(0, length), stem)) + { + return true; + } + } + if (token.length() >= (length + 1)) + { + return withinOneEdit(token.substring(0, length + 1), stem); + } + return false; + } + + private static boolean withinOneEdit(String a, String b) + { + if (a.equals(b)) + { + return true; + } + final int la = a.length(); + final int lb = b.length(); + if (Math.abs(la - lb) > 1) + { + return false; + } + if (la == lb) + { + int differences = 0; + boolean swap = false; + for (int i = 0; i < la; i++) + { + if (a.charAt(i) != b.charAt(i)) + { + differences++; + if ((differences == 2) && (i > 0) && (a.charAt(i) == b.charAt(i - 1)) && (a.charAt(i - 1) == b.charAt(i))) + { + swap = true; + } + } + } + return (differences <= 1) || ((differences == 2) && swap); + } + final String shorter = (la < lb) ? a : b; + final String longer = (la < lb) ? b : a; + int i = 0; + int j = 0; + int differences = 0; + while ((i < shorter.length()) && (j < longer.length())) + { + if (shorter.charAt(i) == longer.charAt(j)) + { + i++; + j++; + } + else + { + differences++; + if (differences > 1) + { + return false; + } + j++; + } + } + return true; + } + + public static FakePlayerIntentParser getInstance() + { + return SingletonHolder.INSTANCE; + } + + private static class SingletonHolder + { + protected static final FakePlayerIntentParser INSTANCE = new FakePlayerIntentParser(); + } +} diff --git a/src_mobius/mobius/L2J_Mobius_CT_0_Interlude/java/org/l2jmobius/gameserver/managers/FakePlayerLlmService.java b/src_mobius/mobius/L2J_Mobius_CT_0_Interlude/java/org/l2jmobius/gameserver/managers/FakePlayerLlmService.java new file mode 100644 index 0000000..22068b2 --- /dev/null +++ b/src_mobius/mobius/L2J_Mobius_CT_0_Interlude/java/org/l2jmobius/gameserver/managers/FakePlayerLlmService.java @@ -0,0 +1,311 @@ +/* + * Copyright (c) 2013 L2jMobius + * + * Permission is hereby granted, free of charge, to any person obtaining a copy + * of this software and associated documentation files (the "Software"), to deal + * in the Software without restriction, including without limitation the rights + * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell + * copies of the Software, and to permit persons to whom the Software is + * furnished to do so, subject to the following conditions: + * + * The above copyright notice and this permission notice shall be + * included in all copies or substantial portions of the Software. + * + * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR + * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, + * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE + * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, + * WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR + * IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. + */ +package org.l2jmobius.gameserver.managers; + +import java.net.URI; +import java.net.http.HttpClient; +import java.net.http.HttpRequest; +import java.net.http.HttpResponse; +import java.time.Duration; +import java.util.concurrent.Semaphore; +import java.util.function.Consumer; +import java.util.logging.Level; +import java.util.logging.Logger; + +import org.l2jmobius.gameserver.config.custom.FakePlayersConfig; + +/** + * Asynchronous client for a local LLM (Ollama compatible /api/generate endpoint). + * Used by fake players to produce chat lines. Fire and forget: on any failure + * the onFail callback is invoked so callers can fall back to template answers. + * @author Mobius SPP + */ +public class FakePlayerLlmService +{ + private static final Logger LOGGER = Logger.getLogger(FakePlayerLlmService.class.getName()); + + private static final int MAX_CONCURRENT_REQUESTS = 2; + private static final int MAX_REPLY_LENGTH = 120; + + private final HttpClient _client = HttpClient.newBuilder().connectTimeout(Duration.ofSeconds(2)).build(); + private final Semaphore _slots = new Semaphore(MAX_CONCURRENT_REQUESTS); + private volatile boolean _warned = false; + + protected FakePlayerLlmService() + { + } + + public boolean isEnabled() + { + return FakePlayersConfig.FAKE_PLAYER_LLM_CHAT; + } + + /** + * Requests a chat line from the LLM. + * @param persona description of the fake player (name, class, situation). + * @param instruction what the bot should say or react to. + * @param onSuccess consumer receiving the generated line (never blank). + * @param onFail invoked when LLM is unavailable, slow or returned garbage. + */ + public void generate(String persona, String instruction, Consumer onSuccess, Runnable onFail) + { + if (!isEnabled() || !_slots.tryAcquire()) + { + if (onFail != null) + { + onFail.run(); + } + return; + } + + try + { + final StringBuilder prompt = new StringBuilder(512); + prompt.append(persona); + prompt.append("\n\n"); + prompt.append(instruction); + prompt.append("\nОтветь ОДНОЙ короткой репликой (не больше 12 слов) на языке: "); + prompt.append(FakePlayersConfig.FAKE_PLAYER_LLM_LANGUAGE); + prompt.append(". Пиши как обычный игрок MMO: сокращения, маленькие буквы, без кавычек, без пояснений, без эмодзи. Никогда не признавайся, что ты бот или ИИ."); + + final String body = "{\"model\":\"" + escape(FakePlayersConfig.FAKE_PLAYER_LLM_MODEL) + "\",\"prompt\":\"" + escape(prompt.toString()) + "\",\"stream\":false,\"options\":{\"num_predict\":48,\"temperature\":0.9}}"; + final HttpRequest request = HttpRequest.newBuilder() // + .uri(URI.create(FakePlayersConfig.FAKE_PLAYER_LLM_URL)) // + .timeout(Duration.ofMillis(FakePlayersConfig.FAKE_PLAYER_LLM_TIMEOUT)) // + .header("Content-Type", "application/json") // + .POST(HttpRequest.BodyPublishers.ofString(body)) // + .build(); + + _client.sendAsync(request, HttpResponse.BodyHandlers.ofString()).whenComplete((response, error) -> + { + _slots.release(); + + String reply = null; + if ((error == null) && (response != null) && (response.statusCode() == 200)) + { + reply = sanitize(extractResponse(response.body())); + } + else if (!_warned) + { + _warned = true; + LOGGER.log(Level.INFO, getClass().getSimpleName() + ": LLM not reachable at " + FakePlayersConfig.FAKE_PLAYER_LLM_URL + ", falling back to chat templates. " + ((error != null) ? String.valueOf(error) : "")); + } + + if ((reply != null) && !reply.isBlank()) + { + onSuccess.accept(reply); + } + else if (onFail != null) + { + onFail.run(); + } + }); + } + catch (Exception e) + { + _slots.release(); + if (onFail != null) + { + onFail.run(); + } + } + } + + /** + * Extracts the value of the "response" field from an Ollama JSON reply without external libraries. + * @param json the raw JSON string. + * @return the decoded value or null. + */ + private String extractResponse(String json) + { + final int keyIndex = json.indexOf("\"response\""); + if (keyIndex < 0) + { + return null; + } + + int index = json.indexOf('"', json.indexOf(':', keyIndex) + 1); + if (index < 0) + { + return null; + } + + final StringBuilder sb = new StringBuilder(); + index++; + while (index < json.length()) + { + final char c = json.charAt(index); + if (c == '\\') + { + index++; + if (index >= json.length()) + { + break; + } + final char escaped = json.charAt(index); + switch (escaped) + { + case 'n': + { + sb.append(' '); + break; + } + case 't': + { + sb.append(' '); + break; + } + case 'u': + { + if ((index + 4) < json.length()) + { + try + { + sb.append((char) Integer.parseInt(json.substring(index + 1, index + 5), 16)); + } + catch (NumberFormatException ignored) + { + // Skip malformed escape. + } + index += 4; + } + break; + } + default: + { + sb.append(escaped); + break; + } + } + } + else if (c == '"') + { + break; + } + else + { + sb.append(c); + } + index++; + } + return sb.toString(); + } + + private String sanitize(String text) + { + if (text == null) + { + return null; + } + + String result = text.trim(); + + // Strip reasoning blocks some models produce. + final int thinkEnd = result.lastIndexOf(""); + if (thinkEnd >= 0) + { + result = result.substring(thinkEnd + "".length()).trim(); + } + + // Strip wrapping quotes. + if ((result.length() > 1) && ((result.charAt(0) == '"') || (result.charAt(0) == '«'))) + { + result = result.substring(1); + } + if ((result.length() > 1) && ((result.charAt(result.length() - 1) == '"') || (result.charAt(result.length() - 1) == '»'))) + { + result = result.substring(0, result.length() - 1); + } + + // Keep single line. + final int newLine = result.indexOf('\n'); + if (newLine > 0) + { + result = result.substring(0, newLine); + } + + result = result.trim(); + if (result.length() > MAX_REPLY_LENGTH) + { + result = result.substring(0, MAX_REPLY_LENGTH); + } + return result; + } + + private String escape(String text) + { + final StringBuilder sb = new StringBuilder(text.length() + 16); + for (int i = 0; i < text.length(); i++) + { + final char c = text.charAt(i); + switch (c) + { + case '"': + { + sb.append("\\\""); + break; + } + case '\\': + { + sb.append("\\\\"); + break; + } + case '\n': + { + sb.append("\\n"); + break; + } + case '\r': + { + break; + } + case '\t': + { + sb.append("\\t"); + break; + } + default: + { + if (c < 0x20) + { + sb.append(String.format("\\u%04x", (int) c)); + } + else + { + sb.append(c); + } + break; + } + } + } + return sb.toString(); + } + + public static FakePlayerLlmService getInstance() + { + return SingletonHolder.INSTANCE; + } + + private static class SingletonHolder + { + protected static final FakePlayerLlmService INSTANCE = new FakePlayerLlmService(); + } +} diff --git a/src_mobius/mobius/L2J_Mobius_CT_0_Interlude/java/org/l2jmobius/gameserver/managers/FakePlayerMemoryManager.java b/src_mobius/mobius/L2J_Mobius_CT_0_Interlude/java/org/l2jmobius/gameserver/managers/FakePlayerMemoryManager.java new file mode 100644 index 0000000..f3b90c7 --- /dev/null +++ b/src_mobius/mobius/L2J_Mobius_CT_0_Interlude/java/org/l2jmobius/gameserver/managers/FakePlayerMemoryManager.java @@ -0,0 +1,231 @@ +/* + * Copyright (c) 2013 L2jMobius + * + * Permission is hereby granted, free of charge, to any person obtaining a copy + * of this software and associated documentation files (the "Software"), to deal + * in the Software without restriction, including without limitation the rights + * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell + * copies of the Software, and to permit persons to whom the Software is + * furnished to do so, subject to the following conditions: + * + * The above copyright notice and this permission notice shall be + * included in all copies or substantial portions of the Software. + * + * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR + * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, + * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE + * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, + * WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR + * IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. + */ +package org.l2jmobius.gameserver.managers; + +import java.sql.Connection; +import java.sql.PreparedStatement; +import java.sql.ResultSet; +import java.sql.Statement; +import java.util.Map; +import java.util.concurrent.ConcurrentHashMap; +import java.util.logging.Level; +import java.util.logging.Logger; + +import org.l2jmobius.commons.database.DatabaseFactory; +import org.l2jmobius.commons.threads.ThreadPool; +import org.l2jmobius.gameserver.config.custom.FakePlayersConfig; + +/** + * Long term memory of fake players about real players. + * A bot remembers who killed it, who helped it and what was said, and this + * memory changes both its LLM persona and its template line selection. + * @author Mobius SPP + */ +public class FakePlayerMemoryManager +{ + private static final Logger LOGGER = Logger.getLogger(FakePlayerMemoryManager.class.getName()); + + public static class Memory + { + public int score = 0; + public int kills = 0; + public int helps = 0; + public String note = ""; + public long updated = 0; + boolean dirty = false; + } + + private final Map> _memories = new ConcurrentHashMap<>(); + + protected FakePlayerMemoryManager() + { + if (!FakePlayersConfig.FAKE_PLAYERS_ENABLED) + { + return; + } + + try (Connection con = DatabaseFactory.getConnection(); + Statement statement = con.createStatement()) + { + statement.execute("CREATE TABLE IF NOT EXISTS fake_player_memory (bot_id INT NOT NULL, player VARCHAR(35) NOT NULL, score INT NOT NULL DEFAULT 0, kills INT NOT NULL DEFAULT 0, helps INT NOT NULL DEFAULT 0, note VARCHAR(255) NOT NULL DEFAULT '', updated BIGINT NOT NULL DEFAULT 0, PRIMARY KEY (bot_id, player))"); + try (ResultSet rset = statement.executeQuery("SELECT bot_id, player, score, kills, helps, note, updated FROM fake_player_memory")) + { + int count = 0; + while (rset.next()) + { + final Memory memory = new Memory(); + memory.score = rset.getInt("score"); + memory.kills = rset.getInt("kills"); + memory.helps = rset.getInt("helps"); + memory.note = rset.getString("note"); + memory.updated = rset.getLong("updated"); + _memories.computeIfAbsent(rset.getInt("bot_id"), key -> new ConcurrentHashMap<>()).put(rset.getString("player").toLowerCase(), memory); + count++; + } + LOGGER.info(getClass().getSimpleName() + ": Loaded " + count + " memories."); + } + } + catch (Exception e) + { + LOGGER.log(Level.WARNING, getClass().getSimpleName() + ": Could not initialize.", e); + } + + ThreadPool.scheduleAtFixedRate(this::save, 120000, 120000); + } + + public Memory get(int botId, String playerName) + { + final Map map = _memories.get(botId); + return (map != null) ? map.get(playerName.toLowerCase()) : null; + } + + private Memory getOrCreate(int botId, String playerName) + { + return _memories.computeIfAbsent(botId, key -> new ConcurrentHashMap<>()).computeIfAbsent(playerName.toLowerCase(), key -> new Memory()); + } + + public void onKilledBy(int botId, String playerName) + { + if (botId <= 0) + { + return; + } + final Memory memory = getOrCreate(botId, playerName); + memory.kills++; + memory.score -= 3; + memory.updated = System.currentTimeMillis(); + memory.dirty = true; + } + + public void onHelpedBy(int botId, String playerName) + { + if (botId <= 0) + { + return; + } + final Memory memory = getOrCreate(botId, playerName); + memory.helps++; + memory.score += 1; + memory.updated = System.currentTimeMillis(); + memory.dirty = true; + } + + public void adjustScore(int botId, String playerName, int delta) + { + if (botId <= 0) + { + return; + } + final Memory memory = getOrCreate(botId, playerName); + memory.score += delta; + memory.updated = System.currentTimeMillis(); + memory.dirty = true; + } + + public void addNote(int botId, String playerName, String note) + { + if (botId <= 0) + { + return; + } + final Memory memory = getOrCreate(botId, playerName); + memory.note = note.length() > 250 ? note.substring(0, 250) : note; + memory.updated = System.currentTimeMillis(); + memory.dirty = true; + } + + /** + * @param botId the bot character id. + * @param playerName the player. + * @return a russian text summary of what the bot remembers about the player, or empty string. + */ + public String describe(int botId, String playerName) + { + final Memory memory = get(botId, playerName); + if (memory == null) + { + return ""; + } + + final StringBuilder sb = new StringBuilder(160); + if (memory.kills > 0) + { + sb.append("Этот игрок убивал тебя ").append(memory.kills).append(" раз - ты его помнишь и держишь обиду. "); + } + if (memory.helps > 0) + { + sb.append("Этот игрок помогал тебе в бою ").append(memory.helps).append(" раз - ты ему благодарен. "); + } + if (!memory.note.isEmpty()) + { + sb.append("Из прошлого разговора: ").append(memory.note); + } + return sb.toString().trim(); + } + + private void save() + { + try (Connection con = DatabaseFactory.getConnection(); + PreparedStatement statement = con.prepareStatement("REPLACE INTO fake_player_memory (bot_id, player, score, kills, helps, note, updated) VALUES (?,?,?,?,?,?,?)")) + { + int batch = 0; + for (Map.Entry> botEntry : _memories.entrySet()) + { + for (Map.Entry entry : botEntry.getValue().entrySet()) + { + final Memory memory = entry.getValue(); + if (!memory.dirty) + { + continue; + } + memory.dirty = false; + statement.setInt(1, botEntry.getKey()); + statement.setString(2, entry.getKey()); + statement.setInt(3, memory.score); + statement.setInt(4, memory.kills); + statement.setInt(5, memory.helps); + statement.setString(6, memory.note); + statement.setLong(7, memory.updated); + statement.addBatch(); + batch++; + } + } + if (batch > 0) + { + statement.executeBatch(); + } + } + catch (Exception e) + { + LOGGER.log(Level.WARNING, getClass().getSimpleName() + ": Could not save.", e); + } + } + + public static FakePlayerMemoryManager getInstance() + { + return SingletonHolder.INSTANCE; + } + + private static class SingletonHolder + { + protected static final FakePlayerMemoryManager INSTANCE = new FakePlayerMemoryManager(); + } +} diff --git a/src_mobius/mobius/L2J_Mobius_CT_0_Interlude/java/org/l2jmobius/gameserver/managers/FakePlayerProgressionManager.java b/src_mobius/mobius/L2J_Mobius_CT_0_Interlude/java/org/l2jmobius/gameserver/managers/FakePlayerProgressionManager.java new file mode 100644 index 0000000..6be2666 --- /dev/null +++ b/src_mobius/mobius/L2J_Mobius_CT_0_Interlude/java/org/l2jmobius/gameserver/managers/FakePlayerProgressionManager.java @@ -0,0 +1,1312 @@ +/* + * Copyright (c) 2013 L2jMobius + * + * Permission is hereby granted, free of charge, to any person obtaining a copy + * of this software and associated documentation files (the "Software"), to deal + * in the Software without restriction, including without limitation the rights + * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell + * copies of the Software, and to permit persons to whom the Software is + * furnished to do so, subject to the following conditions: + * + * The above copyright notice and this permission notice shall be + * included in all copies or substantial portions of the Software. + * + * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR + * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, + * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE + * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, + * WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR + * IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. + */ +package org.l2jmobius.gameserver.managers; + +import java.io.File; +import java.sql.Connection; +import java.sql.PreparedStatement; +import java.sql.ResultSet; +import java.sql.Statement; +import java.util.ArrayList; +import java.util.HashMap; +import java.util.List; +import java.util.Map; +import java.util.concurrent.ConcurrentHashMap; +import java.util.logging.Level; +import java.util.logging.Logger; + +import org.w3c.dom.Document; + +import org.l2jmobius.commons.database.DatabaseFactory; +import org.l2jmobius.commons.threads.ThreadPool; +import org.l2jmobius.commons.util.IXmlReader; +import org.l2jmobius.commons.util.Rnd; +import org.l2jmobius.gameserver.ai.Intention; +import org.l2jmobius.gameserver.config.custom.FakePlayersConfig; +import org.l2jmobius.gameserver.data.SpawnTable; +import org.l2jmobius.gameserver.managers.CastleManager; +import org.l2jmobius.gameserver.data.xml.FakePlayerData; +import org.l2jmobius.gameserver.data.xml.NpcData; +import org.l2jmobius.gameserver.entity.Location; +import org.l2jmobius.gameserver.entity.actor.Attackable; +import org.l2jmobius.gameserver.entity.actor.Npc; +import org.l2jmobius.gameserver.entity.actor.templates.NpcTemplate; +import org.l2jmobius.gameserver.entity.World; +import org.l2jmobius.gameserver.entity.spawns.Spawn; +import org.l2jmobius.gameserver.network.enums.ChatType; +import org.l2jmobius.gameserver.network.serverpackets.CreatureSay; +import org.l2jmobius.gameserver.util.StatSet; + +/** + * Real progression for fake players. + * Each fake "character" has a persistent level and exp stored in database. + * Killing monsters grants the monster's exp reward (scaled by config). When a + * character outgrows its tier it "goes to town" (despawns) and comes back in a + * higher tier template (better gear, higher class) inside a level appropriate zone. + * Template id convention: TEMPLATE_BASE + (charId - 1) * TIERS + tier. + * @author Mobius SPP + */ +public class FakePlayerProgressionManager implements IXmlReader +{ + private static final Logger LOGGER = Logger.getLogger(FakePlayerProgressionManager.class.getName()); + + public static final int TEMPLATE_BASE = 82000; + public static final int SELL_TEMPLATE_BASE = 86000; + public static final int BUY_TEMPLATE_BASE = 90000; + public static final int TIERS = 8; + private static final int[] TIER_MIN_LEVEL = { 1, 15, 25, 35, 45, 55, 64, 72 }; + private static final int MAX_LEVEL = 76; + private static final long MOVE_INTERVAL = 10000; + private static final int SAVE_EVERY_TICKS = 30; + private static final int MAX_MOVE_STEP = 3000; + + + + private static class ZoneInfo + { + String name; + String race = ""; + int minLevel; + int maxLevel; + final List points = new ArrayList<>(); + } + + private static class CharacterInfo + { + int id; + String name; + String personality; + String race = ""; + int variant = 0; + int clanId = 0; + int startLevel; + } + + private static class CharacterState + { + CharacterInfo info; + int level; + long exp; + int tier = -1; + String zoneName; + Spawn spawn; + Npc npc; + long lastMove = 0; + boolean dirty = false; + boolean migrating = false; + boolean trading = false; + boolean raiding = false; + long raidUntil = 0; + int squadLeaderId = 0; + long nextTradeAt = 0; + long tradeEndsAt = 0; + long lastShoutAt = 0; + long expAtLastTrade = 0; + int levelAtLastTrade = 0; + String shoutLine = null; + } + + private final List _zones = new ArrayList<>(); + private final List _towns = new ArrayList<>(); + private final Map _characters = new HashMap<>(); + private final long[] _expToNext = new long[MAX_LEVEL + 2]; + private final Map _states = new ConcurrentHashMap<>(); + private final Map _byNpcObjectId = new ConcurrentHashMap<>(); + private final Map _castleMoodAt = new ConcurrentHashMap<>(); + private long _nextRaidAt = System.currentTimeMillis() + 1800000; + private long _raidEndsAt = 0; + private int _raidBossObjectId = 0; + private int _tick = 0; + + + + protected FakePlayerProgressionManager() + { + if (!FakePlayersConfig.FAKE_PLAYERS_ENABLED) + { + LOGGER.info(getClass().getSimpleName() + ": Disabled."); + return; + } + + // Zones, towns and seed characters are shared data: headless players need them + // even when the NPC bot population is turned off. + load(); + + if (!FakePlayersConfig.FAKE_PLAYER_PROGRESSION) + { + LOGGER.info(getClass().getSimpleName() + ": NPC bots disabled, loaded " + _zones.size() + " zones and " + _characters.size() + " seed characters for headless players."); + return; + } + + ensureTable(); + loadStates(); + buildSquads(); + spawnAll(); + ThreadPool.scheduleAtFixedRate(this::tick, MOVE_INTERVAL, MOVE_INTERVAL); + LOGGER.info(getClass().getSimpleName() + ": Managing " + _states.size() + " characters in " + _zones.size() + " zones."); + } + + @Override + public void load() + { + _zones.clear(); + _characters.clear(); + parseDatapackFile("data/FakePlayerProgression.xml"); + } + + @Override + public void parseDocument(Document document, File file) + { + forEach(document, "list", listNode -> + { + forEach(listNode, "expTable", expNode -> forEach(expNode, "level", levelNode -> + { + final StatSet set = new StatSet(parseAttributes(levelNode)); + final int level = set.getInt("value"); + if ((level > 0) && (level < _expToNext.length)) + { + _expToNext[level] = set.getLong("expToNext"); + } + })); + + forEach(listNode, "zone", zoneNode -> + { + final StatSet set = new StatSet(parseAttributes(zoneNode)); + final ZoneInfo zone = new ZoneInfo(); + zone.name = set.getString("name"); + zone.race = set.getString("race", ""); + zone.minLevel = set.getInt("minLevel"); + zone.maxLevel = set.getInt("maxLevel"); + forEach(zoneNode, "point", pointNode -> + { + final StatSet point = new StatSet(parseAttributes(pointNode)); + zone.points.add(new Location(point.getInt("x"), point.getInt("y"), point.getInt("z"))); + }); + if (!zone.points.isEmpty()) + { + _zones.add(zone); + } + }); + + forEach(listNode, "town", townNode -> + { + final StatSet set = new StatSet(parseAttributes(townNode)); + final ZoneInfo town = new ZoneInfo(); + town.name = set.getString("name"); + town.race = set.getString("race", ""); + town.minLevel = set.getInt("minLevel"); + town.maxLevel = set.getInt("maxLevel"); + forEach(townNode, "point", pointNode -> + { + final StatSet point = new StatSet(parseAttributes(pointNode)); + town.points.add(new Location(point.getInt("x"), point.getInt("y"), point.getInt("z"))); + }); + if (!town.points.isEmpty()) + { + _towns.add(town); + } + }); + + forEach(listNode, "character", characterNode -> + { + final StatSet set = new StatSet(parseAttributes(characterNode)); + final CharacterInfo info = new CharacterInfo(); + info.id = set.getInt("id"); + info.name = set.getString("name"); + info.personality = set.getString("personality", "neutral"); + info.race = set.getString("race", ""); + info.variant = set.getInt("variant", 0); + info.clanId = set.getInt("clanId", 0); + info.startLevel = set.getInt("startLevel", 1); + _characters.put(info.id, info); + }); + }); + } + + private void ensureTable() + { + try (Connection con = DatabaseFactory.getConnection(); + Statement statement = con.createStatement()) + { + statement.execute("CREATE TABLE IF NOT EXISTS fake_player_progress (char_id INT NOT NULL PRIMARY KEY, level INT NOT NULL, exp BIGINT NOT NULL DEFAULT 0)"); + } + catch (Exception e) + { + LOGGER.log(Level.WARNING, getClass().getSimpleName() + ": Could not create table.", e); + } + } + + private void loadStates() + { + final Map stored = new HashMap<>(); + final Map storedExp = new HashMap<>(); + try (Connection con = DatabaseFactory.getConnection(); + Statement statement = con.createStatement(); + ResultSet rset = statement.executeQuery("SELECT char_id, level, exp FROM fake_player_progress")) + { + while (rset.next()) + { + stored.put(rset.getInt(1), new int[] { rset.getInt(2) }); + storedExp.put(rset.getInt(1), rset.getLong(3)); + } + } + catch (Exception e) + { + LOGGER.log(Level.WARNING, getClass().getSimpleName() + ": Could not read progress.", e); + } + + int maxCharacterId = 0; + for (CharacterInfo info : _characters.values()) + { + maxCharacterId = Math.max(maxCharacterId, info.id); + } + final int headlessFrom = maxCharacterId - FakePlayersConfig.FAKE_PLAYER_HEADLESS_COUNT; + + for (CharacterInfo info : _characters.values()) + { + if (info.id > headlessFrom) + { + continue; // Reserved for headless players. + } + final CharacterState state = new CharacterState(); + state.info = info; + if (stored.containsKey(info.id)) + { + state.level = Math.min(MAX_LEVEL, Math.max(1, stored.get(info.id)[0])); + state.exp = storedExp.getOrDefault(info.id, 0L); + } + else + { + state.level = Math.min(MAX_LEVEL, Math.max(1, info.startLevel)); + state.exp = 0; + state.dirty = true; + } + state.expAtLastTrade = state.exp; + state.levelAtLastTrade = state.level; + state.nextTradeAt = System.currentTimeMillis() + Rnd.get(600000, FakePlayersConfig.FAKE_PLAYER_TRADE_COOLDOWN * 60000); + _states.put(info.id, state); + } + saveDirty(); + } + + private void saveDirty() + { + try (Connection con = DatabaseFactory.getConnection(); + PreparedStatement statement = con.prepareStatement("REPLACE INTO fake_player_progress (char_id, level, exp) VALUES (?, ?, ?)")) + { + for (CharacterState state : _states.values()) + { + if (state.dirty) + { + statement.setInt(1, state.info.id); + statement.setInt(2, state.level); + statement.setLong(3, state.exp); + statement.addBatch(); + state.dirty = false; + } + } + statement.executeBatch(); + } + catch (Exception e) + { + LOGGER.log(Level.WARNING, getClass().getSimpleName() + ": Could not save progress.", e); + } + } + + public static int tierOf(int level) + { + int tier = 0; + for (int i = 0; i < TIER_MIN_LEVEL.length; i++) + { + if (level >= TIER_MIN_LEVEL[i]) + { + tier = i; + } + } + return tier; + } + + private ZoneInfo pickZone(int level, String race) + { + final List matches = new ArrayList<>(); + for (ZoneInfo zone : _zones) + { + if ((level >= zone.minLevel) && (level <= zone.maxLevel)) + { + // Racial starting areas host only their own race - a bot cannot plausibly travel there otherwise. + if (!zone.race.isEmpty() && !zone.race.equals(race)) + { + continue; + } + matches.add(zone); + } + } + if (matches.isEmpty()) + { + ZoneInfo best = null; + int bestDistance = Integer.MAX_VALUE; + for (ZoneInfo zone : _zones) + { + if (!zone.race.isEmpty() && !zone.race.equals(race)) + { + continue; + } + final int distance = (level < zone.minLevel) ? (zone.minLevel - level) : (level - zone.maxLevel); + if (distance < bestDistance) + { + bestDistance = distance; + best = zone; + } + } + return best; + } + return matches.get(Rnd.get(matches.size())); + } + + /** + * Groups gankers and pk hunters of the same personality and level band into small squads + * that roam together. Followers spawn and move near their leader. + */ + private void buildSquads() + { + final Map> buckets = new HashMap<>(); + for (CharacterState state : _states.values()) + { + final String personality = state.info.personality; + if (!"ganker".equals(personality) && !"pkk".equals(personality)) + { + continue; + } + buckets.computeIfAbsent(personality + "_" + tierOf(state.level) + "_" + state.info.race + "_" + state.info.clanId, key -> new ArrayList<>()).add(state); + } + + int squads = 0; + for (List bucket : buckets.values()) + { + int index = 0; + while ((bucket.size() - index) >= 2) + { + final int size = Math.min(2 + Rnd.get(3), bucket.size() - index); + final CharacterState leader = bucket.get(index); + for (int i = 1; i < size; i++) + { + bucket.get(index + i).squadLeaderId = leader.info.id; + } + index += size; + squads++; + // Leave some loners between squads. + index += Rnd.get(2); + } + } + LOGGER.info(getClass().getSimpleName() + ": Formed " + squads + " roaming squads."); + } + + private void spawnAll() + { + // Leaders and loners first, followers second so they can join their leader. + for (CharacterState state : _states.values()) + { + if (state.squadLeaderId == 0) + { + try + { + spawnCharacter(state); + } + catch (Exception e) + { + LOGGER.log(Level.WARNING, getClass().getSimpleName() + ": Could not spawn " + state.info.name, e); + } + } + } + for (CharacterState state : _states.values()) + { + if (state.squadLeaderId != 0) + { + try + { + spawnCharacter(state); + } + catch (Exception e) + { + LOGGER.log(Level.WARNING, getClass().getSimpleName() + ": Could not spawn " + state.info.name, e); + } + } + } + } + + private void spawnCharacter(CharacterState state) throws Exception + { + final int tier = tierOf(state.level); + final int templateId = TEMPLATE_BASE + (state.info.variant * TIERS) + tier; + final NpcTemplate template = NpcData.getInstance().getTemplate(templateId); + if (template == null) + { + return; + } + + ZoneInfo zone = null; + Location point = null; + final CharacterState leader = (state.squadLeaderId != 0) ? _states.get(state.squadLeaderId) : null; + if ((leader != null) && !leader.trading && !leader.raiding && (leader.spawn != null) && (leader.zoneName != null)) + { + for (ZoneInfo z : _zones) + { + if (z.name.equals(leader.zoneName)) + { + zone = z; + break; + } + } + if (zone != null) + { + point = new Location(leader.spawn.getX() + Rnd.get(-150, 150), leader.spawn.getY() + Rnd.get(-150, 150), leader.spawn.getZ()); + } + } + if (zone == null) + { + zone = pickZone(state.level, state.info.race); + } + if (zone == null) + { + return; + } + if (point == null) + { + point = zone.points.get(Rnd.get(zone.points.size())); + } + final Spawn spawn = new Spawn(template); + spawn.setXYZ(point); + spawn.setAmount(1); + spawn.setHeading(Rnd.get(65535)); + spawn.setRespawnDelay(60 + Rnd.get(120)); + SpawnTable.getInstance().addSpawn(spawn); + spawn.init(); + + state.tier = tier; + state.zoneName = zone.name; + state.spawn = spawn; + state.npc = spawn.getLastSpawn(); + state.migrating = false; + state.trading = false; + state.raiding = false; + if (state.npc != null) + { + _byNpcObjectId.put(state.npc.getObjectId(), state); + applyIdentity(state.npc, state); + } + + // Point whisper lookups at the currently spawned tier template. + registerIdentity(state.info.name, templateId); + } + + private ZoneInfo pickTown(int level, String race) + { + final List matches = new ArrayList<>(); + for (ZoneInfo town : _towns) + { + if ((level >= town.minLevel) && (level <= town.maxLevel) && (town.race.isEmpty() || town.race.equals(race))) + { + matches.add(town); + } + } + if (matches.isEmpty()) + { + for (ZoneInfo town : _towns) + { + if (town.race.isEmpty() || town.race.equals(race)) + { + matches.add(town); + } + } + } + return matches.isEmpty() ? null : matches.get(Rnd.get(matches.size())); + } + + private void spawnTrader(CharacterState state, boolean sell) throws Exception + { + final int tier = tierOf(state.level); + final int templateId = (sell ? SELL_TEMPLATE_BASE : BUY_TEMPLATE_BASE) + (state.info.variant * TIERS) + tier; + final NpcTemplate template = NpcData.getInstance().getTemplate(templateId); + final ZoneInfo town = pickTown(state.level, state.info.race); + if ((template == null) || (town == null)) + { + return; + } + + final Location point = town.points.get(Rnd.get(town.points.size())); + final Spawn spawn = new Spawn(template); + spawn.setXYZ(point); + spawn.setAmount(1); + spawn.setHeading(Rnd.get(65535)); + spawn.setRespawnDelay(60); + SpawnTable.getInstance().addSpawn(spawn); + spawn.init(); + + state.tier = tier; + state.spawn = spawn; + state.npc = spawn.getLastSpawn(); + state.trading = true; + state.tradeEndsAt = System.currentTimeMillis() + (FakePlayersConfig.FAKE_PLAYER_TRADE_DURATION * 60000L); + FakePlayerBotContext.setPlan(state.info.id, "trade", FakePlayersConfig.FAKE_PLAYER_TRADE_DURATION * 60000L); + FakePlayerBotContext.setEvent(state.info.id, "opened_store"); + state.lastShoutAt = 0; + final String storeMessage = (template.getFakePlayerInfo() != null) ? template.getFakePlayerInfo().getPrivateStoreMessage() : ""; + final java.util.HashMap slots = new java.util.HashMap<>(); + slots.put("town", town.name); + slots.put("msg", storeMessage); + final String seamLine = FakePlayerChatLines.getInstance().pick("trade_shout", slots); + state.shoutLine = (seamLine != null) ? seamLine : (storeMessage + " - " + town.name); + if (state.npc != null) + { + _byNpcObjectId.put(state.npc.getObjectId(), state); + applyIdentity(state.npc, state); + final Npc npc = state.npc; + FakePlayerLlmService.getInstance().generate(FakePlayerChatManager.getInstance().buildPersona(npc), "Ты открыл в городе " + town.name + " торговую лавку с сообщением \"" + storeMessage + "\". Придумай короткую зазывалку для торгового чата (без кавычек).", reply -> state.shoutLine = reply, null); + } + registerIdentity(state.info.name, templateId); + LOGGER.info(getClass().getSimpleName() + ": " + state.info.name + " opened a " + (sell ? "sell" : "buy") + " shop in " + town.name + "."); + } + + private void handleTrade(CharacterState state) + { + if (!FakePlayersConfig.FAKE_PLAYER_TRADING) + { + return; + } + + final long now = System.currentTimeMillis(); + + if (state.trading) + { + final Npc npc = (state.spawn != null) ? state.spawn.getLastSpawn() : null; + if ((npc == null) || (now >= state.tradeEndsAt)) + { + // Close shop and go back to farming. + state.trading = false; + state.expAtLastTrade = state.exp; + state.levelAtLastTrade = state.level; + state.nextTradeAt = now + (FakePlayersConfig.FAKE_PLAYER_TRADE_COOLDOWN * 60000L) + Rnd.get(0, 1800000); + LOGGER.info(getClass().getSimpleName() + ": " + state.info.name + " closed the shop."); + despawnCharacter(state); + try + { + spawnCharacter(state); + } + catch (Exception e) + { + // Try again next trade cycle. + } + return; + } + + // Trade channel shout. + if ((now - state.lastShoutAt) >= (FakePlayersConfig.FAKE_PLAYER_TRADE_SHOUT_INTERVAL * 1000L)) + { + state.lastShoutAt = now; + if (state.shoutLine != null) + { + World.broadcastToVisiblePlayersInRange(npc, new CreatureSay(npc, ChatType.TRADE, npc.getName(), state.shoutLine), 9000); + } + } + return; + } + + if (now < state.nextTradeAt) + { + return; + } + + final Npc npc = (state.spawn != null) ? state.spawn.getLastSpawn() : null; + if ((npc == null) || npc.isDead() || npc.isInCombat() || state.raiding || FakePlayerAiTaskManager.getInstance().isCompanion(npc.getObjectId())) + { + state.nextTradeAt = now + 300000; + return; + } + + if (Rnd.get(100) >= FakePlayersConfig.FAKE_PLAYER_TRADE_CHANCE) + { + state.nextTradeAt = now + 600000; + return; + } + + // Sell when the bot has farmed since the last trade (loot to sell), buy otherwise. + final long threshold = ((state.level > 0) && (state.level < _expToNext.length)) ? (_expToNext[state.level] / 5) : 10000; + final boolean sell = (state.level > state.levelAtLastTrade) || (state.exp > (state.expAtLastTrade + threshold)); + despawnCharacter(state); + try + { + spawnTrader(state, sell); + } + catch (Exception e) + { + state.trading = false; + state.nextTradeAt = now + 600000; + try + { + spawnCharacter(state); + } + catch (Exception ignored) + { + // Respawn on next tick refresh. + } + } + } + + private void applyIdentity(Npc npc, CharacterState state) + { + npc.setName(state.info.name); + npc.setFakePlayerClanId(state.info.clanId); + npc.broadcastInfo(); + } + + private void registerIdentity(String name, int templateId) + { + FakePlayerData.getInstance().addFakePlayerId(name, templateId); + FakePlayerData.getInstance().addFakePlayerName(name.toLowerCase(), name); + FakePlayerData.getInstance().addTalkableFakePlayerName(name.toLowerCase()); + } + + private void despawnCharacter(CharacterState state) + { + if (state.npc != null) + { + _byNpcObjectId.remove(state.npc.getObjectId()); + } + if (state.spawn != null) + { + state.spawn.stopRespawn(); + final Npc npc = state.spawn.getLastSpawn(); + if (npc != null) + { + npc.deleteMe(); + } + SpawnTable.getInstance().removeSpawn(state.spawn); + } + state.spawn = null; + state.npc = null; + } + + /** + * Called when a fake player kills a monster. + * @param killer the fake player npc. + * @param victim the killed monster. + */ + public void onKill(Npc killer, Attackable victim) + { + if (!FakePlayersConfig.FAKE_PLAYER_PROGRESSION) + { + return; + } + + final CharacterState state = _byNpcObjectId.get(killer.getObjectId()); + if ((state == null) || state.migrating || (state.level >= MAX_LEVEL)) + { + return; + } + + final long reward = (long) (victim.getTemplate().getExp() * FakePlayersConfig.FAKE_PLAYER_XP_RATE); + if (reward <= 0) + { + return; + } + + state.exp += reward; + state.dirty = true; + + boolean leveled = false; + while ((state.level < MAX_LEVEL) && (_expToNext[state.level] > 0) && (state.exp >= _expToNext[state.level])) + { + state.exp -= _expToNext[state.level]; + state.level++; + leveled = true; + } + + if (leveled) + { + final int newTier = tierOf(state.level); + if (newTier != state.tier) + { + migrate(state); + } + else if (Rnd.get(100) < 40) + { + FakePlayerBotContext.setEvent(state.info.id, "levelup"); + FakePlayerChatManager.getInstance().manageEventChat(state.npc, "Ты только что взял " + state.level + " уровень. Порадуйся в чат одной короткой фразой.", FakePlayerChatLines.getInstance().pick("levelup", "level", String.valueOf(state.level)), "levelup"); + } + saveDirty(); + } + } + + private void migrate(CharacterState state) + { + state.migrating = true; + final Npc npc = state.npc; + if (npc != null) + { + FakePlayerBotContext.setPlan(state.info.id, "migrate", 180000); + FakePlayerChatManager.getInstance().manageEventChat(npc, "Ты апнул " + state.level + " уровень и перерос эту локацию. Попрощайся: уходишь в город за новым шмотом.", FakePlayerChatLines.getInstance().pick("migrate", null), "migrate"); + } + + // Leave in a moment, come back somewhere better dressed. + ThreadPool.schedule(() -> despawnCharacter(state), 8000 + Rnd.get(7000)); + ThreadPool.schedule(() -> + { + try + { + spawnCharacter(state); + } + catch (Exception e) + { + LOGGER.log(Level.WARNING, getClass().getSimpleName() + ": Migration failed for " + state.info.name, e); + } + }, 60000 + Rnd.get(120000)); + } + + private void tick() + { + try + { + _tick++; + for (CharacterState state : _states.values()) + { + try + { + handleTrade(state); + if (!state.trading) + { + handleMovement(state); + } + } + catch (Exception e) + { + // Keep the loop alive. + } + } + + if ((_tick % SAVE_EVERY_TICKS) == 0) + { + saveDirty(); + } + + handleCastleMood(); + handleRaidEvent(); + } + catch (Exception e) + { + // Task must survive. + } + } + + private void handleMovement(CharacterState state) + { + final Npc npc = (state.spawn != null) ? state.spawn.getLastSpawn() : null; + if ((npc == null) || npc.isDead()) + { + return; + } + + if (npc != state.npc) + { + // Respawned instance. + if (state.npc != null) + { + _byNpcObjectId.remove(state.npc.getObjectId()); + } + state.npc = npc; + _byNpcObjectId.put(npc.getObjectId(), state); + applyIdentity(npc, state); + } + + if (npc.isInCombat() || (npc.getAI().getIntention() == Intention.ATTACK)) + { + return; + } + + // Do not interrupt loot pickup. + if (!npc.getFakePlayerDrops().isEmpty()) + { + return; + } + + // Raiding bots stay with the boss. + if (state.raiding) + { + return; + } + + // Escorting a player: the companion logic owns movement. + if (FakePlayerAiTaskManager.getInstance().isCompanion(npc.getObjectId())) + { + return; + } + + // Squad followers stick to their leader. + if (state.squadLeaderId != 0) + { + final CharacterState leader = _states.get(state.squadLeaderId); + if ((leader != null) && !leader.trading && !leader.raiding && !leader.migrating && (leader.spawn != null) && leader.zoneName != null && leader.zoneName.equals(state.zoneName)) + { + final long now2 = System.currentTimeMillis(); + if ((now2 - state.lastMove) < MOVE_INTERVAL) + { + return; + } + state.lastMove = now2; + final Location follow = new Location(leader.spawn.getX() + Rnd.get(-120, 120), leader.spawn.getY() + Rnd.get(-120, 120), leader.spawn.getZ()); + if (npc.calculateDistance2D(follow.getX(), follow.getY(), follow.getZ()) > 4000) + { + npc.teleToLocation(follow); + } + state.spawn.setXYZ(follow); + npc.setRunning(); + npc.getAI().setIntentionMoveTo(follow); + return; + } + } + + final long now = System.currentTimeMillis(); + if ((now - state.lastMove) < (MOVE_INTERVAL * (1 + Rnd.get(3)))) + { + return; + } + state.lastMove = now; + + ZoneInfo zone = null; + for (ZoneInfo z : _zones) + { + if (z.name.equals(state.zoneName)) + { + zone = z; + break; + } + } + if (zone == null) + { + return; + } + + // Prefer a reachable next point, fall back to any zone point. + Location next = null; + for (int attempt = 0; attempt < 5; attempt++) + { + final Location candidate = zone.points.get(Rnd.get(zone.points.size())); + if (npc.calculateDistance2D(candidate.getX(), candidate.getY(), candidate.getZ()) < MAX_MOVE_STEP) + { + next = candidate; + break; + } + } + if (next == null) + { + next = zone.points.get(Rnd.get(zone.points.size())); + npc.teleToLocation(next); + } + + // Move the leash anchor along so built-in AI does not drag the bot back. + state.spawn.setXYZ(next); + if (Rnd.nextBoolean()) + { + npc.setRunning(); + } + else + { + npc.setWalking(); + } + npc.getAI().setIntentionMoveTo(next); + } + + /** + * Periodically sends a squad of high level bots to hunt a live raid boss. + */ + private void handleRaidEvent() + { + final long now = System.currentTimeMillis(); + + // Active raid: check end conditions. + if (_raidBossObjectId != 0) + { + final org.l2jmobius.gameserver.entity.WorldObject bossObject = World.findObject(_raidBossObjectId); + final boolean bossGone = (bossObject == null) || !(bossObject instanceof Npc bossNpc) || bossNpc.isDead(); + if (bossGone || (now >= _raidEndsAt)) + { + for (CharacterState state : _states.values()) + { + if (state.raiding) + { + state.raiding = false; + FakePlayerBotContext.setPlan(state.info.id, "farm", 0); + FakePlayerBotContext.setEvent(state.info.id, "raid_finished"); + despawnCharacter(state); + try + { + spawnCharacter(state); + } + catch (Exception ignored) + { + // Next refresh will retry. + } + } + } + LOGGER.info(getClass().getSimpleName() + ": Raid event finished (" + (bossGone ? "boss dead" : "timeout") + ")."); + _raidBossObjectId = 0; + _nextRaidAt = now + 1800000 + Rnd.get(0, 3600000); + } + return; + } + + if (now < _nextRaidAt) + { + return; + } + + // Pick a live raid boss of a reasonable level. + final List bosses = new ArrayList<>(); + for (Npc boss : RaidBossSpawnManager.getInstance().getBosses().values()) + { + if ((boss != null) && !boss.isDead() && (boss.getTemplate().getLevel() >= 55) && (boss.getTemplate().getLevel() <= 80)) + { + bosses.add(boss); + } + } + if (bosses.isEmpty()) + { + _nextRaidAt = now + 3600000; + return; + } + final Npc boss = bosses.get(Rnd.get(bosses.size())); + + // Pick the raid squad: up to 5 high level bots that are free right now. + final List party = new ArrayList<>(); + for (CharacterState state : _states.values()) + { + if ((state.level >= 60) && !state.trading && !state.migrating && !state.raiding && (state.spawn != null) && (state.spawn.getLastSpawn() != null) && !state.spawn.getLastSpawn().isDead()) + { + party.add(state); + if (party.size() >= 5) + { + break; + } + } + } + if (party.size() < 3) + { + _nextRaidAt = now + 1800000; + return; + } + + _raidBossObjectId = boss.getObjectId(); + _raidEndsAt = now + 1500000; // 25 minutes. + boolean first = true; + for (CharacterState state : party) + { + FakePlayerBotContext.setRaid(state.info.id, boss.getName(), 25 * 60000L); + state.raiding = true; + final Npc npc = state.spawn.getLastSpawn(); + final Location spot = new Location(boss.getX() + Rnd.get(-200, 200), boss.getY() + Rnd.get(-200, 200), boss.getZ()); + state.spawn.setXYZ(spot); + npc.teleToLocation(spot); + if (npc instanceof Attackable attackable) + { + attackable.addDamageHate(boss, 0, 1000); + npc.setRunning(); + npc.getAI().setIntentionAttack(boss); + } + if (first) + { + first = false; + FakePlayerChatManager.getInstance().manageEventChat(npc, "Вы с пати пришли убивать рейд-босса " + boss.getName() + ". Крикни боевой клич.", FakePlayerChatLines.getInstance().pick("raid_start", "boss", boss.getName()), "raid_start"); + } + } + LOGGER.info(getClass().getSimpleName() + ": Raid event started - " + party.size() + " bots vs " + boss.getName() + " (lvl " + boss.getTemplate().getLevel() + ")."); + } + + /** + * Bot clan lords change their castle tax rate now and then, depending on "mood". + */ + private void handleCastleMood() + { + final long now = System.currentTimeMillis(); + for (org.l2jmobius.gameserver.mechanics.siege.Castle castle : CastleManager.getInstance().getCastles()) + { + final int ownerId = castle.getOwnerId(); + if ((ownerId < 300000001) || (ownerId > 300000999)) + { + continue; // Not a seeded bot clan. + } + + final long next = _castleMoodAt.computeIfAbsent(castle.getResidenceId(), key -> now + Rnd.get(1800000, 14400000)); + if (now < next) + { + continue; + } + _castleMoodAt.put(castle.getResidenceId(), now + Rnd.get(3 * 3600000, 8 * 3600000)); + + final int oldTax = castle.getTaxPercent(); + int newTax = Math.max(0, Math.min(15, oldTax + Rnd.get(-7, 7))); + if (newTax == oldTax) + { + newTax = (oldTax == 0) ? Rnd.get(1, 5) : 0; + } + castle.setTaxPercent(newTax); + final org.l2jmobius.gameserver.entity.clan.Clan owner = org.l2jmobius.gameserver.data.sql.ClanTable.getInstance().getClan(ownerId); + LOGGER.info(getClass().getSimpleName() + ": Lord mood swing - " + ((owner != null) ? owner.getName() : ownerId) + " set " + castle.getName() + " tax to " + newTax + "% (was " + oldTax + "%)."); + } + } + + /** + * @param npcObjectId object id of a fake player npc. + * @return the managed character id, or 0 when unknown. + */ + public int getCharacterId(int npcObjectId) + { + final CharacterState state = _byNpcObjectId.get(npcObjectId); + return (state != null) ? state.info.id : 0; + } + + /** + * @param npcObjectId npc object id. + * @return zone name the bot lives in, or empty string. + */ + public String getZoneName(int npcObjectId) + { + final CharacterState state = _byNpcObjectId.get(npcObjectId); + return ((state != null) && (state.zoneName != null)) ? state.zoneName : ""; + } + + /** + * @param npcObjectId npc object id. + * @return the bot's tracked level, or 0. + */ + public int getLevel(int npcObjectId) + { + final CharacterState state = _byNpcObjectId.get(npcObjectId); + return (state != null) ? state.level : 0; + } + + /** + * Called when a fake player dies from a real player. Feeds bot memory and produces a death line. + * @param npc the dead bot. + * @param killer the player. + */ + public void onBotKilled(Npc npc, org.l2jmobius.gameserver.entity.actor.Player killer) + { + final CharacterState state = _byNpcObjectId.get(npc.getObjectId()); + if (state == null) + { + return; + } + FakePlayerMemoryManager.getInstance().onKilledBy(state.info.id, killer.getName()); + + // Nearby bots witness the kill and remember the story (rumor seed). + final String victimName = state.info.name; + World.forEachVisibleObjectInRange(npc, Npc.class, 900, witness -> + { + if (witness.isFakePlayer() && (witness != npc)) + { + final int witnessId = getCharacterId(witness.getObjectId()); + if (witnessId > 0) + { + FakePlayerRumorManager.getInstance().addWitnessed(witnessId, (killer.getKarma() > 0) ? "pk" : "kill", killer.getName(), victimName); + } + } + }); + FakePlayerBotContext.setEvent(getCharacterId(npc.getObjectId()), "ganked"); + // Dying is salient: the victim reacts reliably (and always after a typing pause, + // so the witness shouts may legitimately come first by a second). + if (Rnd.get(100) < Math.max(FakePlayersConfig.FAKE_PLAYER_COMBAT_CHAT_CHANCE, 75)) + { + final String deathCry = FakePlayerChatLines.getInstance().compose(getCharacterId(npc.getObjectId()), "killed_by", state.info.personality, "player", killer.getName()); + if (deathCry != null) + { + org.l2jmobius.commons.threads.ThreadPool.schedule(() -> FakePlayerChatManager.getInstance().broadcastDeathCry(npc, deathCry, "killed_by"), Rnd.get(1500, 4000)); + } + } + } + + private static String json(String value) + { + if (value == null) + { + return "\"\""; + } + final StringBuilder sb = new StringBuilder("\""); + for (char c : value.toCharArray()) + { + switch (c) + { + case '"': + sb.append("\\\""); + break; + case '\\': + sb.append("\\\\"); + break; + case '\n': + case '\r': + sb.append(' '); + break; + default: + sb.append(c); + } + } + return sb.append('"').toString(); + } + + /** + * @return JSON array with the live state of all managed bots (for the dashboard). + */ + public String statusJson() + { + final StringBuilder sb = new StringBuilder(1 << 20); + sb.append('['); + boolean first = true; + for (CharacterState state : _states.values()) + { + final Npc npc = (state.spawn != null) ? state.spawn.getLastSpawn() : null; + if (!first) + { + sb.append(','); + } + first = false; + String activity = "idle"; + String target = ""; + int x = 0, y = 0, z = 0, hp = 0; + if (npc != null) + { + x = npc.getX(); + y = npc.getY(); + z = npc.getZ(); + hp = (int) (npc.getCurrentHp() * 100 / Math.max(1, npc.getMaxHp())); + if (npc.isDead()) + { + activity = "dead"; + } + else if (state.trading) + { + activity = "trading"; + } + else if (state.raiding) + { + activity = "raiding"; + } + else if (FakePlayerAiTaskManager.getInstance().isCompanion(npc.getObjectId())) + { + activity = "companion"; + } + else if (npc.isInCombat()) + { + activity = "combat"; + } + else if (npc.isMoving()) + { + activity = "moving"; + } + final org.l2jmobius.gameserver.entity.WorldObject targetObject = npc.getTarget(); + if (targetObject != null) + { + target = targetObject.getName(); + } + } + else + { + activity = state.migrating ? "migrating" : "despawned"; + } + sb.append("{\"id\":").append(state.info.id) + .append(",\"name\":").append(json(state.info.name)) + .append(",\"level\":").append(state.level) + .append(",\"personality\":").append(json(state.info.personality)) + .append(",\"race\":").append(json(state.info.race)) + .append(",\"clanId\":").append(state.info.clanId) + .append(",\"zone\":").append(json(state.zoneName != null ? state.zoneName : "")) + .append(",\"activity\":").append(json(activity)) + .append(",\"target\":").append(json(target)) + .append(",\"hp\":").append(hp) + .append(",\"x\":").append(x).append(",\"y\":").append(y).append(",\"z\":").append(z) + .append('}'); + } + return sb.append(']').toString(); + } + + /** + * Static description of a seeded character (used by headless players). + */ + public static class SeedInfo + { + public int id; + public String name; + public String personality; + public String race; + public int clanId; + public int startLevel; + } + + /** + * @param name character name. + * @return seed info or null. + */ + public SeedInfo getSeedInfo(String name) + { + for (CharacterInfo info : _characters.values()) + { + if (info.name.equalsIgnoreCase(name)) + { + final SeedInfo seed = new SeedInfo(); + seed.id = info.id; + seed.name = info.name; + seed.personality = info.personality; + seed.race = info.race; + seed.clanId = info.clanId; + seed.startLevel = info.startLevel; + return seed; + } + } + return null; + } + + /** + * Picks a farming spot for a level and race (shared zone table). + * @param level character level. + * @param race race name. + * @return location and zone name, or null. + */ + public Object[] pickSpot(int level, String race) + { + final ZoneInfo zone = pickZone(level, race); + if (zone == null) + { + return null; + } + return new Object[] + { + zone.points.get(Rnd.get(zone.points.size())), + zone.name + }; + } + + public static FakePlayerProgressionManager getInstance() + { + return SingletonHolder.INSTANCE; + } + + private static class SingletonHolder + { + protected static final FakePlayerProgressionManager INSTANCE = new FakePlayerProgressionManager(); + } +} diff --git a/src_mobius/mobius/L2J_Mobius_CT_0_Interlude/java/org/l2jmobius/gameserver/managers/FakePlayerRumorManager.java b/src_mobius/mobius/L2J_Mobius_CT_0_Interlude/java/org/l2jmobius/gameserver/managers/FakePlayerRumorManager.java new file mode 100644 index 0000000..07bb2d0 --- /dev/null +++ b/src_mobius/mobius/L2J_Mobius_CT_0_Interlude/java/org/l2jmobius/gameserver/managers/FakePlayerRumorManager.java @@ -0,0 +1,372 @@ +/* + * Copyright (c) 2013 L2jMobius + * + * Permission is hereby granted, free of charge, to any person obtaining a copy + * of this software and associated documentation files (the "Software"), to deal + * in the Software without restriction, including without limitation the rights + * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell + * copies of the Software, and to permit persons to whom the Software is + * furnished to do so, subject to the following conditions: + * + * The above copyright notice and this permission notice shall be + * included in all copies or substantial portions of the Software. + * + * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR + * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, + * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE + * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, + * WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR + * IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. + */ +package org.l2jmobius.gameserver.managers; + +import java.sql.Connection; +import java.sql.PreparedStatement; +import java.sql.ResultSet; +import java.sql.Statement; +import java.util.ArrayList; +import java.util.List; +import java.util.Map; +import java.util.concurrent.ConcurrentHashMap; +import java.util.logging.Level; +import java.util.logging.Logger; + +import org.l2jmobius.commons.database.DatabaseFactory; +import org.l2jmobius.commons.threads.ThreadPool; +import org.l2jmobius.commons.util.Rnd; +import org.l2jmobius.gameserver.config.custom.FakePlayersConfig; + +/** + * Rumor system for fake players, ported from the user's agent simulation + * ("Округа": stories with confidence, hops, escalation and distortion on retelling). + * Bots witness events about real players, gossip them to each other with distortion, + * and retell them to the player with an evidence hedge. + * @author Mobius SPP + */ +public class FakePlayerRumorManager +{ + private static final Logger LOGGER = Logger.getLogger(FakePlayerRumorManager.class.getName()); + + private static final int MAX_STORIES_PER_BOT = 10; + + public static class Story + { + public String kind; // kill, help, pk + public String subject; // player name the story is about + public String object; // bot/victim name + public double conf; + public int hops; + public int scale; + public long time; + public boolean seen; + boolean dirty = true; + + String key() + { + return kind + "|" + subject.toLowerCase() + "|" + object.toLowerCase(); + } + } + + // Escalation ladders, the "esc" arrays of the original system. + private static final String[] ESC_KILL = { "гангнул", "разобрал на споте", "вырезал всех на точке", "терроризирует всю локацию", "пол сервера в страхе держит" }; + private static final String[] ESC_HELP = { "подсобил в бою", "вытащил из верной смерти", "спас целую пати", "всем на споте помогает", "святой человек, всех спасает" }; + private static final String[] ESC_PK = { "заПКшил", "режет всех подряд", "красный ходит, лютует", "вся округа от него красная" }; + + // Evidence hedges. + private static final String[] HEDGE_SEEN = { "сам видел как ты", "своими глазами видел - ты", "при мне ты" }; + private static final String[] HEDGE_HEARD = { "говорят ты", "слышал ты", "народ говорит ты" }; + private static final String[] HEDGE_WEAK = { "брешут будто ты", "болтают что ты", "не знаю верить ли, но ты вроде" }; + private static final String[] HEDGE_LEGEND = { "вся округа говорит что ты", "уже легенды ходят как ты", "все споты знают что ты" }; + + private final Map> _stories = new ConcurrentHashMap<>(); + + protected FakePlayerRumorManager() + { + if (!FakePlayersConfig.FAKE_PLAYERS_ENABLED) + { + return; + } + + try (Connection con = DatabaseFactory.getConnection(); + Statement statement = con.createStatement()) + { + statement.execute("CREATE TABLE IF NOT EXISTS fake_player_rumor (bot_id INT NOT NULL, kind VARCHAR(10) NOT NULL, subject VARCHAR(35) NOT NULL, object VARCHAR(35) NOT NULL, conf DOUBLE NOT NULL, hops INT NOT NULL, scale INT NOT NULL, time BIGINT NOT NULL, seen TINYINT NOT NULL, PRIMARY KEY (bot_id, kind, subject, object))"); + try (ResultSet rset = statement.executeQuery("SELECT bot_id, kind, subject, object, conf, hops, scale, time, seen FROM fake_player_rumor")) + { + int count = 0; + while (rset.next()) + { + final Story story = new Story(); + story.kind = rset.getString("kind"); + story.subject = rset.getString("subject"); + story.object = rset.getString("object"); + story.conf = rset.getDouble("conf"); + story.hops = rset.getInt("hops"); + story.scale = rset.getInt("scale"); + story.time = rset.getLong("time"); + story.seen = rset.getInt("seen") > 0; + story.dirty = false; + _stories.computeIfAbsent(rset.getInt("bot_id"), key -> new ArrayList<>()).add(story); + count++; + } + LOGGER.info(getClass().getSimpleName() + ": Loaded " + count + " rumors."); + } + } + catch (Exception e) + { + LOGGER.log(Level.WARNING, getClass().getSimpleName() + ": Could not initialize.", e); + } + + ThreadPool.scheduleAtFixedRate(this::save, 180000, 180000); + } + + /** + * A bot directly witnessed an event about a player. + * @param botId witness bot character id. + * @param kind kill / help / pk. + * @param playerName the player the story is about. + * @param objectName the victim / beneficiary name. + */ + public void addWitnessed(int botId, String kind, String playerName, String objectName) + { + if (botId <= 0) + { + return; + } + final Story story = new Story(); + story.kind = kind; + story.subject = playerName; + story.object = objectName; + story.conf = 0.95; + story.hops = 0; + story.scale = 0; + story.time = System.currentTimeMillis(); + story.seen = true; + add(botId, story); + } + + private void add(int botId, Story story) + { + final List list = _stories.computeIfAbsent(botId, key -> new ArrayList<>()); + synchronized (list) + { + for (Story existing : list) + { + if (existing.key().equals(story.key())) + { + // Refresh: direct witness beats hearsay, higher scale sticks. + if (story.seen || (story.conf > existing.conf)) + { + existing.conf = Math.max(existing.conf, story.conf); + existing.seen = existing.seen || story.seen; + existing.scale = Math.max(existing.scale, story.scale); + existing.time = story.time; + existing.dirty = true; + } + return; + } + } + list.add(story); + if (list.size() > MAX_STORIES_PER_BOT) + { + list.sort((a, b) -> Double.compare(a.conf, b.conf)); + list.remove(0); + } + } + } + + /** + * Gossip transfer with distortion - the distort() of the original system: + * confidence decays, hops grow, sometimes the story escalates. + * @param fromBotId teller. + * @param toBotId listener. + * @return the transferred story or null. + */ + public Story gossip(int fromBotId, int toBotId) + { + final List from = _stories.get(fromBotId); + if ((from == null) || from.isEmpty() || (fromBotId == toBotId)) + { + return null; + } + Story story; + synchronized (from) + { + final List candidates = new ArrayList<>(); + for (Story s : from) + { + if (s.conf > 0.25) + { + candidates.add(s); + } + } + if (candidates.isEmpty()) + { + return null; + } + story = candidates.get(Rnd.get(candidates.size())); + } + + final Story copy = new Story(); + copy.kind = story.kind; + copy.subject = story.subject; + copy.object = story.object; + copy.conf = Math.max(0.1, Math.min(0.95, story.conf * (0.72 + Rnd.get(20) / 100.0))); + copy.hops = story.hops + 1; + copy.scale = story.scale + ((Rnd.get(100) < 22) ? 1 : 0); // изба сказителя не завезена - искажаем смело + copy.time = story.time; + copy.seen = false; + add(toBotId, copy); + return copy; + } + + /** + * @param botId the bot. + * @param playerName the player. + * @return the strongest story this bot has about the player, or null. + */ + public Story bestAbout(int botId, String playerName) + { + final List list = _stories.get(botId); + if (list == null) + { + return null; + } + synchronized (list) + { + Story best = null; + for (Story story : list) + { + if (story.subject.equalsIgnoreCase(playerName) && (story.conf > 0.2)) + { + if ((best == null) || ((story.conf + (story.kind.equals("kill") ? 0.3 : 0) + (story.scale * 0.1)) > (best.conf + (best.kind.equals("kill") ? 0.3 : 0) + (best.scale * 0.1)))) + { + best = story; + } + } + } + return best; + } + } + + /** + * @param botId bot. + * @return the strongest story of any subject, or null. + */ + public Story bestAny(int botId) + { + final List list = _stories.get(botId); + if (list == null) + { + return null; + } + synchronized (list) + { + Story best = null; + for (Story story : list) + { + if ((story.conf > 0.25) && ((best == null) || (story.conf > best.conf))) + { + best = story; + } + } + return best; + } + } + + /** + * Renders a story about a third person ("слышал? X гангнул Y"). + * @param story the story. + * @return text. + */ + public String tellThird(Story story) + { + final String[] esc = story.kind.equals("kill") ? ESC_KILL : story.kind.equals("help") ? ESC_HELP : ESC_PK; + final String body = esc[Math.min(story.scale, esc.length - 1)]; + return story.subject + " " + (story.kind.equals("pk") ? body : (body + " " + story.object)); + } + + /** + * Renders a story as a line said TO the player - hedge + escalated body. + * @param story the story. + * @return text like "говорят ты вырезал всех на точке у MaJIou". + */ + public String tell(Story story) + { + final String[] esc = story.kind.equals("kill") ? ESC_KILL : story.kind.equals("help") ? ESC_HELP : ESC_PK; + final String body = esc[Math.min(story.scale, esc.length - 1)]; + final String[] hedge = (story.seen && (story.hops == 0)) ? HEDGE_SEEN : (story.hops > 3) ? HEDGE_LEGEND : (story.conf < 0.45) ? HEDGE_WEAK : HEDGE_HEARD; + final String withObject = story.kind.equals("pk") ? body : (body + " " + story.object); + return hedge[Rnd.get(hedge.length)] + " " + withObject; + } + + /** + * @param botId bot. + * @param playerName player. + * @return russian summary of rumors for the LLM persona, or empty string. + */ + public String describeFor(int botId, String playerName) + { + final Story story = bestAbout(botId, playerName); + if (story == null) + { + return ""; + } + final String source = story.seen && (story.hops == 0) ? "Ты сам видел" : "Ты слышал от других (пересказ " + story.hops + " раз, можешь ошибаться)"; + final String[] esc = story.kind.equals("kill") ? ESC_KILL : story.kind.equals("help") ? ESC_HELP : ESC_PK; + return source + ": этот игрок " + esc[Math.min(story.scale, esc.length - 1)] + (story.kind.equals("pk") ? "" : " " + story.object) + "."; + } + + private void save() + { + try (Connection con = DatabaseFactory.getConnection(); + PreparedStatement statement = con.prepareStatement("REPLACE INTO fake_player_rumor (bot_id, kind, subject, object, conf, hops, scale, time, seen) VALUES (?,?,?,?,?,?,?,?,?)")) + { + int batch = 0; + for (Map.Entry> entry : _stories.entrySet()) + { + final List list = entry.getValue(); + synchronized (list) + { + for (Story story : list) + { + if (!story.dirty) + { + continue; + } + story.dirty = false; + statement.setInt(1, entry.getKey()); + statement.setString(2, story.kind); + statement.setString(3, story.subject); + statement.setString(4, story.object); + statement.setDouble(5, story.conf); + statement.setInt(6, story.hops); + statement.setInt(7, story.scale); + statement.setLong(8, story.time); + statement.setInt(9, story.seen ? 1 : 0); + statement.addBatch(); + batch++; + } + } + } + if (batch > 0) + { + statement.executeBatch(); + } + } + catch (Exception e) + { + LOGGER.log(Level.WARNING, getClass().getSimpleName() + ": Could not save.", e); + } + } + + public static FakePlayerRumorManager getInstance() + { + return SingletonHolder.INSTANCE; + } + + private static class SingletonHolder + { + protected static final FakePlayerRumorManager INSTANCE = new FakePlayerRumorManager(); + } +} diff --git a/src_mobius/mobius/L2J_Mobius_CT_0_Interlude/java/org/l2jmobius/gameserver/network/clientpackets/RequestJoinParty.java b/src_mobius/mobius/L2J_Mobius_CT_0_Interlude/java/org/l2jmobius/gameserver/network/clientpackets/RequestJoinParty.java index dcc14d1..d1c3cb6 100644 --- a/src_mobius/mobius/L2J_Mobius_CT_0_Interlude/java/org/l2jmobius/gameserver/network/clientpackets/RequestJoinParty.java +++ b/src_mobius/mobius/L2J_Mobius_CT_0_Interlude/java/org/l2jmobius/gameserver/network/clientpackets/RequestJoinParty.java @@ -63,7 +63,7 @@ public class RequestJoinParty extends ClientPacket return; } - if ((target.getClient() == null) || target.getClient().isDetached()) + if (!target.isHeadlessBot() && ((target.getClient() == null) || target.getClient().isDetached())) { requestor.sendMessage("Player is in offline mode."); return; @@ -231,6 +231,11 @@ public class RequestJoinParty extends ClientPacket // in case a leader change has happened, use party's mode target.sendPacket(new AskJoinParty(requestor.getName(), party.getDistributionType())); party.setPendingInvitation(true); + + if (target.isHeadlessBot()) + { + org.l2jmobius.gameserver.managers.FakePlayerHeadlessManager.getInstance().autoAcceptParty(requestor, target); + } } else { @@ -258,6 +263,11 @@ public class RequestJoinParty extends ClientPacket target.setActiveRequester(requestor); requestor.onTransactionRequest(target); requestor.setPartyDistributionType(partyDistributionType); + + if (target.isHeadlessBot()) + { + org.l2jmobius.gameserver.managers.FakePlayerHeadlessManager.getInstance().autoAcceptParty(requestor, target); + } } else { diff --git a/src_mobius/mobius/L2J_Mobius_CT_0_Interlude/java/org/l2jmobius/gameserver/network/serverpackets/FakePlayerInfo.java b/src_mobius/mobius/L2J_Mobius_CT_0_Interlude/java/org/l2jmobius/gameserver/network/serverpackets/FakePlayerInfo.java index ede9f3e..d8de64d 100644 --- a/src_mobius/mobius/L2J_Mobius_CT_0_Interlude/java/org/l2jmobius/gameserver/network/serverpackets/FakePlayerInfo.java +++ b/src_mobius/mobius/L2J_Mobius_CT_0_Interlude/java/org/l2jmobius/gameserver/network/serverpackets/FakePlayerInfo.java @@ -72,7 +72,7 @@ public class FakePlayerInfo extends ServerPacket _flyRunSpd = npc.isFlying() ? _runSpd : 0; _flyWalkSpd = npc.isFlying() ? _walkSpd : 0; _fpcHolder = npc.getTemplate().getFakePlayerInfo(); - _clan = ClanTable.getInstance().getClan(_fpcHolder.getClanId()); + _clan = ClanTable.getInstance().getClan(npc.getFakePlayerClanId()); } @Override diff --git a/src_mobius/mobius/L2J_Mobius_CT_0_Interlude/java/org/l2jmobius/gameserver/util/FakePlayerNameGenerator.java b/src_mobius/mobius/L2J_Mobius_CT_0_Interlude/java/org/l2jmobius/gameserver/util/FakePlayerNameGenerator.java new file mode 100644 index 0000000..d2928a9 --- /dev/null +++ b/src_mobius/mobius/L2J_Mobius_CT_0_Interlude/java/org/l2jmobius/gameserver/util/FakePlayerNameGenerator.java @@ -0,0 +1,526 @@ +/* + * Copyright (c) 2013 L2jMobius + * + * Permission is hereby granted, free of charge, to any person obtaining a copy + * of this software and associated documentation files (the "Software"), to deal + * in the Software without restriction, including without limitation the rights + * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell + * copies of the Software, and to permit persons to whom the Software is + * furnished to do so, subject to the following conditions: + * + * The above copyright notice and this permission notice shall be + * included in all copies or substantial portions of the Software. + * + * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR + * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, + * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE + * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, + * WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR + * IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. + */ +package org.l2jmobius.gameserver.util; + +import java.util.ArrayList; +import java.util.HashMap; +import java.util.HashSet; +import java.util.List; +import java.util.Map; +import java.util.Random; +import java.util.Set; +import java.util.regex.Pattern; + +/** + * Генератор ников для фейк-игроков. Порт nickgen.html / nickgen.py — логика 1:1.
+ * Ник состоит из 1-3 частей; русские слова рендерятся транслитом ("ZlojGnom") или + * псевдокириллицей ("TpaBka", "IIeJIbMeHb"), английские — с шансом l33t-цифр ("Ki4iga"). + * Декорации: цифровой суффикс ("OldRogue38"), обёртка "xX...Xx", lowercase, капс-хвост ("HolodOK"). + * Результат всегда соответствует [A-Za-z0-9]{3,16} (лимит клиента Interlude). + */ +public class FakePlayerNameGenerator +{ + private static final String[] RU_ADJ = + { + "злой", "добрый", "старый", "дикий", "мелкий", "жирный", "хитрый", "бешеный", "мамкин", "просто", + "лысый", "грозный", "тихий", "сонный", "голодный", "кривой", "ржавый", "бодрый", "унылый", "модный", + "четкий", "дерзкий", "борзый", "лютый", "шустрый", "реальный", "угарный", "наглый" + }; + private static final String[] RU_NOUN = + { + "гном", "пес", "кот", "волк", "сухарь", "травка", "пельмень", "колбаса", "мармелад", "чума", + "ведьмак", "сквозняк", "холодок", "бомж", "топор", "кабан", "хомяк", "огурец", "батон", "чеснок", + "валенок", "тапок", "кефир", "компот", "барсук", "ежик", "мухомор", "лопата", "кирпич", "шашлык", + "беляш", "танкист", "дед", "сосед", "медоед", "каратель", "монах", + "гопник", "чебурек", "шаурма", "семки", "пацан", "браток", "кент", "батя", "гараж", "подъезд", + "чушпан", "задрот", "нуб", "читер", "красавчик", "нагибатор", "убиватор", "терминатор" + }; + private static final String[] RU_NAME = + { + "олег", "вася", "дашка", "ленка", "федор", "санек", "толик", "серега", "витек", "петруха", + "колян", "димон", "настя", "машка", "гриша", "степан", "юрец", "макс", + "жека", "вован", "толян", "саня", "диман", "леха", "андрюха", "кирюха", "паша", "стас", + "руслан", "тимур", "натаха", "светка", "танюха", "ирка", "вовчик", "петрович", "палыч" + }; + private static final String[] RU_SURNAME = + { + "пупкин", "сидоров", "петров", "иванов", "смирнов", "кузнецов", "козлов", "волков", "зайцев", "медведев" + }; + private static final String[] PREFIXES = + { + "MC", "Dj", "Mr" + }; + private static final String[] EN_ADJ = + { + "Dark", "Shadow", "Storm", "Night", "Blood", "Ghost", "Crazy", "Old", "Swift", "Silent", + "Grim", "Mad", "Evil", "Frost", "Iron", "Black", "Wild", "Lone", "Sweet", "True" + }; + private static final String[] EN_NOUN = + { + "Slayer", "Reaper", "Hunter", "Killer", "Knight", "Rogue", "Monk", "Rider", "Arrow", "Blade", + "Master", "Lord", "King", "Sniper", "Mage", "Angel", "Demon", "Raven", "Wolf", "Dragon", + "Fire", "Ice", "Death", "Star", "Dream", "Soul", "Fang", "Claw", "Bishop", "Titan" + }; + + private static final String RU_LETTERS = "абвгдеёжзийклмнопрстуфхцчшщъыьэюя"; + /** Транслит: кириллица -> латиница. */ + private static final String[] TRANSLIT = + { + "a", "b", "v", "g", "d", "e", "e", "zh", "z", "i", "j", "k", "l", "m", "n", "o", "p", "r", + "s", "t", "u", "f", "h", "c", "ch", "sh", "sch", "", "y", "", "e", "yu", "ya" + }; + /** Псевдокириллица: латинские двойники (null = нет похожего, берётся транслит). */ + private static final String[] FAKE_CYR = + { + "a", "6", "B", "r", null, "e", "e", null, "3", "u", "u", "K", "JI", "M", "H", "o", "II", "p", + "c", "T", "y", null, "x", null, "4", "LLI", null, "", "bI", "b", "3", "IO", "9I" + }; + + private static final Map TRANSLIT_MAP = new HashMap<>(); + private static final Map FAKE_CYR_MAP = new HashMap<>(); + private static final Map LEET_MAP = new HashMap<>(); + private static final Pattern VALID = Pattern.compile("[A-Za-z0-9]{3,16}"); + static + { + for (int i = 0; i < RU_LETTERS.length(); i++) + { + TRANSLIT_MAP.put(RU_LETTERS.charAt(i), TRANSLIT[i]); + FAKE_CYR_MAP.put(RU_LETTERS.charAt(i), FAKE_CYR[i]); + } + LEET_MAP.put('e', '3'); + LEET_MAP.put('o', '0'); + LEET_MAP.put('a', '4'); + LEET_MAP.put('i', '1'); + LEET_MAP.put('s', '5'); + } + + private final Random _rnd; + private final boolean _translit; + private final boolean _fakeCyr; + private final boolean _leet; + private final boolean _digits; + private final boolean _wrap; + private final int[] _weights; + + public FakePlayerNameGenerator() + { + this(new Random()); + } + + public FakePlayerNameGenerator(long seed) + { + this(new Random(seed)); + } + + public FakePlayerNameGenerator(Random rnd) + { + this(rnd, true, true, true, true, true, new int[] + { + 25, 55, 20 + }); + } + + /** + * @param rnd источник случайности + * @param translit разрешить транслит русских слов + * @param fakeCyr разрешить псевдокириллицу + * @param leet разрешить l33t-цифры в английских словах + * @param digits разрешить цифровой суффикс + * @param wrap разрешить обёртку xX...Xx + * @param weights веса числа частей ника {1 часть, 2 части, 3 части} + */ + public FakePlayerNameGenerator(Random rnd, boolean translit, boolean fakeCyr, boolean leet, boolean digits, boolean wrap, int[] weights) + { + _rnd = rnd; + _translit = translit; + _fakeCyr = fakeCyr; + _leet = leet; + _digits = digits; + _wrap = wrap; + _weights = weights; + } + + private boolean chance(int pct) + { + return _rnd.nextInt(100) < pct; + } + + private String pick(String[] arr) + { + return arr[_rnd.nextInt(arr.length)]; + } + + private String translitWord(String word) + { + final StringBuilder sb = new StringBuilder(); + for (int i = 0; i < word.length(); i++) + { + final char ch = word.charAt(i); + String t = TRANSLIT_MAP.getOrDefault(ch, String.valueOf(ch)); + if ((ch == 'й') && chance(50)) + { + t = "y"; + } + if ((ch == 'в') && chance(15)) + { + t = "w"; // Wowan-стиль + } + if (ch == 'х') + { + t = chance(40) ? "x" : (chance(30) ? "kh" : "h"); // Xyligan-стиль + } + sb.append(t); + } + if (sb.length() > 0) + { + sb.setCharAt(0, Character.toUpperCase(sb.charAt(0))); + } + return sb.toString(); + } + + private String fakeCyrWord(String word) + { + final StringBuilder sb = new StringBuilder(); + for (int i = 0; i < word.length(); i++) + { + final char ch = word.charAt(i); + final String f = FAKE_CYR_MAP.get(ch); + if (f != null) + { + sb.append(f); + } + else if (FAKE_CYR_MAP.containsKey(ch)) + { + sb.append(TRANSLIT_MAP.get(ch)); // нет двойника — транслит буквы + } + else + { + sb.append(ch); + } + } + return sb.toString(); + } + + private String leetWord(String word) + { + final StringBuilder sb = new StringBuilder(); + int used = 0; + for (int i = 0; i < word.length(); i++) + { + final char ch = word.charAt(i); + final Character l = LEET_MAP.get(Character.toLowerCase(ch)); + if ((l != null) && (used < 2) && chance(45)) + { + sb.append(l); + used++; + } + else + { + sb.append(ch); + } + } + return sb.toString(); + } + + private boolean isRussian(String word) + { + for (int i = 0; i < word.length(); i++) + { + if (RU_LETTERS.indexOf(word.charAt(i)) >= 0) + { + return true; + } + } + return false; + } + + /** Часть ника: слово + флаг "это фамилия" (для декорации -ov -> -OFF). */ + private static final class Part + { + private final String _word; + private final boolean _surname; + + Part(String word, boolean surname) + { + _word = word; + _surname = surname; + } + + String word() + { + return _word; + } + + boolean surname() + { + return _surname; + } + } + + private List buildParts(boolean russian, int n) + { + final List parts = new ArrayList<>(3); + if (russian) + { + switch (n) + { + case 1: + { + final int v = _rnd.nextInt(100); + if (v < 45) + { + parts.add(new Part(pick(RU_NOUN), false)); + } + else if (v < 80) + { + parts.add(new Part(pick(RU_NAME), false)); + } + else + { + parts.add(new Part(pick(RU_SURNAME), true)); + } + break; + } + case 2: + { + final int v = _rnd.nextInt(4); + if (v == 0) + { + parts.add(new Part(pick(RU_ADJ), false)); + parts.add(new Part(pick(RU_NOUN), false)); + } + else if (v == 1) + { + parts.add(new Part(pick(RU_ADJ), false)); + parts.add(new Part(pick(RU_NAME), false)); + } + else if (v == 2) + { + parts.add(new Part(pick(RU_NOUN), false)); + parts.add(new Part(pick(RU_NOUN), false)); + } + else + { + // VasyaPupkin + parts.add(new Part(pick(RU_NAME), false)); + parts.add(new Part(pick(RU_SURNAME), true)); + } + break; + } + default: + { + parts.add(new Part(pick(RU_ADJ), false)); + if (chance(50)) + { + parts.add(new Part(pick(RU_NOUN), false)); + parts.add(new Part(pick(RU_NOUN), false)); + } + else + { + parts.add(new Part(pick(RU_NAME), false)); + parts.add(new Part(pick(RU_SURNAME), true)); + } + break; + } + } + } + else + { + switch (n) + { + case 1: + { + parts.add(new Part(pick(EN_NOUN), false)); + break; + } + case 2: + { + parts.add(new Part(pick(EN_ADJ), false)); + parts.add(new Part(pick(EN_NOUN), false)); + break; + } + default: + { + final String first = pick(EN_ADJ); + String second; + if (chance(50)) + { + do + { + second = pick(EN_ADJ); + } + while (second.equals(first)); + } + else + { + second = pick(EN_NOUN); + } + parts.add(new Part(first, false)); + parts.add(new Part(second, false)); + parts.add(new Part(pick(EN_NOUN), false)); + break; + } + } + } + return parts; + } + + /** + * @return один ник в стиле сида (валидность НЕ гарантируется — используй {@link #generateBatch(int, Set)}). + */ + public String generateOne() + { + // Число частей по весам. + final int total = Math.max(_weights[0] + _weights[1] + _weights[2], 1); + final int roll = _rnd.nextInt(total); + final int n = (roll < _weights[0]) ? 1 : (roll < (_weights[0] + _weights[1])) ? 2 : 3; + + final boolean russian = chance(70); + final List parts = buildParts(russian, n); + // Редкая смесь языков в 2-3-частных никах. + if ((n > 1) && chance(15)) + { + parts.set(parts.size() - 1, new Part(russian ? pick(EN_NOUN) : translitWord(pick(RU_NOUN)), false)); + } + + // Режим рендера русских слов — один на весь ник. + final List modes = new ArrayList<>(2); + if (_translit) + { + modes.add("translit"); + } + if (_fakeCyr) + { + modes.add("fakeCyr"); + } + final String ruMode = modes.isEmpty() ? "translit" : modes.get(_rnd.nextInt(modes.size())); + + final StringBuilder sb = new StringBuilder(); + for (Part part : parts) + { + final String word = part.word(); + if (isRussian(word)) + { + if ("fakeCyr".equals(ruMode)) + { + sb.append(fakeCyrWord(word)); + } + else + { + String t = translitWord(word); + // Фамилии на -ov: SmirnOFF / Smirnoff. + if (part.surname() && t.toLowerCase().endsWith("ov") && chance(50)) + { + t = t.substring(0, t.length() - 2) + (chance(40) ? "OFF" : "off"); + } + sb.append(t); + } + } + else + { + sb.append((_leet && chance(20)) ? leetWord(word) : word); + } + } + String nick = sb.toString(); + + // Декорации (стиль сида: dashka, ZloyPES, HolodOK, OldRogue38, MCVovan95, xXDarkSlayerXx). + if ("translit".equals(ruMode)) + { + if (chance(12)) + { + nick = nick.toLowerCase(); + } + else if (chance(12) && (nick.length() > 4)) + { + final int k = 2 + _rnd.nextInt(2); + nick = nick.substring(0, nick.length() - k) + nick.substring(nick.length() - k).toUpperCase(); + } + } + if (_digits && chance(28) && (nick.length() <= 14)) + { + final int v = _rnd.nextInt(100); + final String suf; + if (v < 45) + { + suf = chance(50) ? String.valueOf(1 + _rnd.nextInt(9)) : String.valueOf(10 + _rnd.nextInt(90)); + } + else if (v < 80) + { + suf = String.format("%02d", (85 + _rnd.nextInt(23)) % 100); // год рождения 85..07 + } + else + { + suf = String.valueOf(1985 + _rnd.nextInt(23)); // 1985..2007 + } + if ((nick.length() + suf.length()) <= 16) + { + nick += suf; + } + } + if (chance(4) && (nick.length() <= 13)) + { + nick += "RUS"; + } + boolean prefixed = false; + if (chance(6) && (nick.length() <= 14)) + { + nick = pick(PREFIXES) + nick; // MCVovan + prefixed = true; + } + if (_wrap && !prefixed && chance(4) && (nick.length() <= 12)) + { + nick = "xX" + nick + "Xx"; + } + return nick; + } + + /** + * @param count сколько ников сгенерировать + * @param taken занятые имена в lowercase (пополняется); null — только уникальность внутри батча + * @return count уникальных ников, каждый соответствует [A-Za-z0-9]{3,16} + */ + public List generateBatch(int count, Set taken) + { + final Set used = (taken != null) ? taken : new HashSet<>(); + final List out = new ArrayList<>(count); + int guard = count * 200; + while ((out.size() < count) && (guard-- > 0)) + { + final String nick = generateOne(); + if (VALID.matcher(nick).matches() && !used.contains(nick.toLowerCase())) + { + used.add(nick.toLowerCase()); + out.add(nick); + } + } + return out; + } + + public static void main(String[] args) + { + final int count = (args.length > 0) ? Integer.parseInt(args[0]) : 30; + final FakePlayerNameGenerator gen = (args.length > 1) ? new FakePlayerNameGenerator(Long.parseLong(args[1])) : new FakePlayerNameGenerator(); + for (String nick : gen.generateBatch(count, null)) + { + System.out.println(nick); + } + } +} diff --git a/start.ps1 b/start.ps1 new file mode 100644 index 0000000..d546bf4 --- /dev/null +++ b/start.ps1 @@ -0,0 +1,108 @@ +# L2 Interlude SPP - запуск одной командой (Docker-вариант). +# Использование: +# powershell -ExecutionPolicy Bypass -File start.ps1 # поднять всё +# powershell -ExecutionPolicy Bypass -File start.ps1 -Down # остановить +# powershell -ExecutionPolicy Bypass -File start.ps1 -Reset # остановить и стереть базу (полный сброс) +# powershell -ExecutionPolicy Bypass -File start.ps1 -Client "D:\Games\L2Interlude" # + запустить клиент +param( + [switch]$Down, + [switch]$Reset, + [string]$Client = "" +) + +$ErrorActionPreference = "Stop" +$Base = $PSScriptRoot +$ServerDir = Join-Path $Base "server" +$Zip = Join-Path $Base "server_interlude.zip" +$Compose = Join-Path $ServerDir "docker\docker-compose.yml" + +function Compose { docker compose -f $Compose @args } + +# --- Docker есть? --- +try { docker info *>$null } catch { + Write-Host "Docker не запущен или не установлен. Поставь Docker Desktop и запусти его." -ForegroundColor Red + exit 1 +} + +# --- Остановка / сброс --- +if ($Down -or $Reset) { + if (Test-Path $Compose) { + if ($Reset) { + Compose down -v + Write-Host "Остановлено, база стёрта. Следующий запуск начнёт с чистой базы (боты - со стартовых уровней)." -ForegroundColor Yellow + } else { + Compose down + Write-Host "Остановлено. Прогресс ботов и персонажи сохранены." -ForegroundColor Green + } + } else { + Write-Host "Сервер ещё не разворачивался, останавливать нечего." + } + exit 0 +} + +# --- Распаковка сервера при первом запуске --- +if (-not (Test-Path (Join-Path $ServerDir "game"))) { + if (-not (Test-Path $Zip)) { + Write-Host "Не найден $Zip" -ForegroundColor Red + exit 1 + } + Write-Host "Распаковываю сервер (~700 МБ, минуту-другую)..." + New-Item -ItemType Directory -Force -Path $ServerDir | Out-Null + Expand-Archive -Path $Zip -DestinationPath $Base -Force + # в архиве корневая папка server_interlude - переименуем в server + if (Test-Path (Join-Path $Base "server_interlude\game")) { + if (Test-Path $ServerDir) { Remove-Item $ServerDir -Recurse -Force } + Rename-Item (Join-Path $Base "server_interlude") $ServerDir + } +} + +# --- Docker-файлы внутрь папки сервера --- +if (-not (Test-Path $Compose)) { + Copy-Item -Recurse -Force (Join-Path $Base "docker") (Join-Path $ServerDir "docker") +} + +# --- Поднимаем --- +Write-Host "Собираю и запускаю контейнеры (первый раз - несколько минут)..." +Compose up --build -d + +# --- Ждём готовности гейм-сервера --- +Write-Host "Жду старта гейм-сервера (загрузка геодаты ~1 мин)..." +$deadline = (Get-Date).AddMinutes(10) +$ready = $false +while ((Get-Date) -lt $deadline) { + Start-Sleep -Seconds 5 + $logs = Compose logs game --tail 100 2>$null | Out-String + if ($logs -match "Registered on login") { $ready = $true; break } + if ($logs -match "OutOfMemoryError") { + Write-Host "Гейм-серверу не хватило памяти. Docker Desktop -> Settings -> Resources: дай WSL2 минимум 6 ГБ RAM." -ForegroundColor Red + exit 1 + } +} + +if ($ready) { + Write-Host "" + Write-Host "=== Сервер готов ===" -ForegroundColor Green + Write-Host "Логин-сервер: 127.0.0.1:2106" + Write-Host "В клиенте: system\l2.ini -> ServerAddr=127.0.0.1, запускать system\l2.exe" + Write-Host "Аккаунт: любые логин/пароль на экране входа - создастся сам." + Write-Host "" + Write-Host "Админка (после первого входа в игру):" + Write-Host " docker compose -f `"$Compose`" exec db mariadb -uroot -pl2j l2jmobiusinterlude -e `"UPDATE accounts SET accessLevel=100 WHERE login='ЛОГИН'`"" -ForegroundColor DarkGray + Write-Host "Логи: docker compose -f `"$Compose`" logs -f game" + Write-Host "Стоп: powershell -File start.ps1 -Down" +} else { + Write-Host "Гейм-сервер не отрапортовал готовность за 10 минут. Смотри логи:" -ForegroundColor Red + Write-Host " docker compose -f `"$Compose`" logs game --tail 50" + exit 1 +} + +# --- Клиент --- +if ($Client -ne "") { + $l2exe = Join-Path $Client "system\l2.exe" + if (Test-Path $l2exe) { + Write-Host "Запускаю клиент..." + Start-Process -FilePath $l2exe -WorkingDirectory (Join-Path $Client "system") + } else { + Write-Host "Не нашёл $l2exe - проверь путь к клиенту." -ForegroundColor Yellow + } +}