mirror of
https://github.com/TrinityCore/TrinityCore.git
synced 2026-01-16 15:40:45 +01:00
3348 lines
132 KiB
SQL
3348 lines
132 KiB
SQL
-- MySQL dump 10.13 Distrib 8.0.39, for Linux (x86_64)
|
||
--
|
||
-- Host: localhost Database: auth
|
||
-- ------------------------------------------------------
|
||
-- Server version 8.0.39-0ubuntu0.22.04.1
|
||
|
||
/*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */;
|
||
/*!40101 SET @OLD_CHARACTER_SET_RESULTS=@@CHARACTER_SET_RESULTS */;
|
||
/*!40101 SET @OLD_COLLATION_CONNECTION=@@COLLATION_CONNECTION */;
|
||
/*!50503 SET NAMES utf8mb4 */;
|
||
/*!40103 SET @OLD_TIME_ZONE=@@TIME_ZONE */;
|
||
/*!40103 SET TIME_ZONE='+00:00' */;
|
||
/*!40014 SET @OLD_UNIQUE_CHECKS=@@UNIQUE_CHECKS, UNIQUE_CHECKS=0 */;
|
||
/*!40014 SET @OLD_FOREIGN_KEY_CHECKS=@@FOREIGN_KEY_CHECKS, FOREIGN_KEY_CHECKS=0 */;
|
||
/*!40101 SET @OLD_SQL_MODE=@@SQL_MODE, SQL_MODE='NO_AUTO_VALUE_ON_ZERO' */;
|
||
/*!40111 SET @OLD_SQL_NOTES=@@SQL_NOTES, SQL_NOTES=0 */;
|
||
|
||
--
|
||
-- Table structure for table `account`
|
||
--
|
||
|
||
DROP TABLE IF EXISTS `account`;
|
||
/*!40101 SET @saved_cs_client = @@character_set_client */;
|
||
/*!50503 SET character_set_client = utf8mb4 */;
|
||
CREATE TABLE `account` (
|
||
`id` int unsigned NOT NULL AUTO_INCREMENT COMMENT 'Identifier',
|
||
`username` varchar(32) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
|
||
`salt` binary(32) NOT NULL,
|
||
`verifier` binary(32) NOT NULL,
|
||
`session_key_auth` binary(40) DEFAULT NULL,
|
||
`session_key_bnet` varbinary(64) DEFAULT NULL,
|
||
`totp_secret` varbinary(128) DEFAULT NULL,
|
||
`email` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
|
||
`reg_mail` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
|
||
`joindate` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP,
|
||
`last_ip` varchar(15) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '127.0.0.1',
|
||
`last_attempt_ip` varchar(15) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '127.0.0.1',
|
||
`failed_logins` int unsigned NOT NULL DEFAULT '0',
|
||
`locked` tinyint unsigned NOT NULL DEFAULT '0',
|
||
`lock_country` varchar(2) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '00',
|
||
`last_login` timestamp NULL DEFAULT NULL,
|
||
`online` tinyint unsigned NOT NULL DEFAULT '0',
|
||
`expansion` tinyint unsigned NOT NULL DEFAULT '10',
|
||
`mutetime` bigint NOT NULL DEFAULT '0',
|
||
`mutereason` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
|
||
`muteby` varchar(50) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
|
||
`client_build` int unsigned NOT NULL DEFAULT '0',
|
||
`locale` tinyint unsigned NOT NULL DEFAULT '0',
|
||
`os` varchar(4) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
|
||
`timezone_offset` smallint NOT NULL DEFAULT '0',
|
||
`recruiter` int unsigned NOT NULL DEFAULT '0',
|
||
`battlenet_account` int unsigned DEFAULT NULL,
|
||
`battlenet_index` tinyint unsigned DEFAULT NULL,
|
||
PRIMARY KEY (`id`),
|
||
UNIQUE KEY `idx_username` (`username`),
|
||
UNIQUE KEY `uk_bnet_acc` (`battlenet_account`,`battlenet_index`),
|
||
CONSTRAINT `fk_bnet_acc` FOREIGN KEY (`battlenet_account`) REFERENCES `battlenet_accounts` (`id`)
|
||
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci COMMENT='Account System';
|
||
/*!40101 SET character_set_client = @saved_cs_client */;
|
||
|
||
--
|
||
-- Dumping data for table `account`
|
||
--
|
||
|
||
LOCK TABLES `account` WRITE;
|
||
/*!40000 ALTER TABLE `account` DISABLE KEYS */;
|
||
/*!40000 ALTER TABLE `account` ENABLE KEYS */;
|
||
UNLOCK TABLES;
|
||
|
||
--
|
||
-- Table structure for table `account_access`
|
||
--
|
||
|
||
DROP TABLE IF EXISTS `account_access`;
|
||
/*!40101 SET @saved_cs_client = @@character_set_client */;
|
||
/*!50503 SET character_set_client = utf8mb4 */;
|
||
CREATE TABLE `account_access` (
|
||
`AccountID` int unsigned NOT NULL,
|
||
`SecurityLevel` tinyint unsigned NOT NULL,
|
||
`RealmID` int NOT NULL DEFAULT '-1',
|
||
`Comment` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
|
||
PRIMARY KEY (`AccountID`,`RealmID`)
|
||
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
|
||
/*!40101 SET character_set_client = @saved_cs_client */;
|
||
|
||
--
|
||
-- Dumping data for table `account_access`
|
||
--
|
||
|
||
LOCK TABLES `account_access` WRITE;
|
||
/*!40000 ALTER TABLE `account_access` DISABLE KEYS */;
|
||
/*!40000 ALTER TABLE `account_access` ENABLE KEYS */;
|
||
UNLOCK TABLES;
|
||
|
||
--
|
||
-- Table structure for table `account_banned`
|
||
--
|
||
|
||
DROP TABLE IF EXISTS `account_banned`;
|
||
/*!40101 SET @saved_cs_client = @@character_set_client */;
|
||
/*!50503 SET character_set_client = utf8mb4 */;
|
||
CREATE TABLE `account_banned` (
|
||
`id` int unsigned NOT NULL DEFAULT '0' COMMENT 'Account id',
|
||
`bandate` int unsigned NOT NULL DEFAULT '0',
|
||
`unbandate` int unsigned NOT NULL DEFAULT '0',
|
||
`bannedby` varchar(50) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
|
||
`banreason` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
|
||
`active` tinyint unsigned NOT NULL DEFAULT '1',
|
||
PRIMARY KEY (`id`,`bandate`)
|
||
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci COMMENT='Ban List';
|
||
/*!40101 SET character_set_client = @saved_cs_client */;
|
||
|
||
--
|
||
-- Dumping data for table `account_banned`
|
||
--
|
||
|
||
LOCK TABLES `account_banned` WRITE;
|
||
/*!40000 ALTER TABLE `account_banned` DISABLE KEYS */;
|
||
/*!40000 ALTER TABLE `account_banned` ENABLE KEYS */;
|
||
UNLOCK TABLES;
|
||
|
||
--
|
||
-- Table structure for table `account_last_played_character`
|
||
--
|
||
|
||
DROP TABLE IF EXISTS `account_last_played_character`;
|
||
/*!40101 SET @saved_cs_client = @@character_set_client */;
|
||
/*!50503 SET character_set_client = utf8mb4 */;
|
||
CREATE TABLE `account_last_played_character` (
|
||
`accountId` int unsigned NOT NULL,
|
||
`region` tinyint unsigned NOT NULL,
|
||
`battlegroup` tinyint unsigned NOT NULL,
|
||
`realmId` int unsigned DEFAULT NULL,
|
||
`characterName` varchar(12) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
|
||
`characterGUID` bigint unsigned DEFAULT NULL,
|
||
`lastPlayedTime` int unsigned DEFAULT NULL,
|
||
PRIMARY KEY (`accountId`,`region`,`battlegroup`)
|
||
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
|
||
/*!40101 SET character_set_client = @saved_cs_client */;
|
||
|
||
--
|
||
-- Dumping data for table `account_last_played_character`
|
||
--
|
||
|
||
LOCK TABLES `account_last_played_character` WRITE;
|
||
/*!40000 ALTER TABLE `account_last_played_character` DISABLE KEYS */;
|
||
/*!40000 ALTER TABLE `account_last_played_character` ENABLE KEYS */;
|
||
UNLOCK TABLES;
|
||
|
||
--
|
||
-- Table structure for table `account_muted`
|
||
--
|
||
|
||
DROP TABLE IF EXISTS `account_muted`;
|
||
/*!40101 SET @saved_cs_client = @@character_set_client */;
|
||
/*!50503 SET character_set_client = utf8mb4 */;
|
||
CREATE TABLE `account_muted` (
|
||
`guid` int unsigned NOT NULL DEFAULT '0' COMMENT 'Global Unique Identifier',
|
||
`mutedate` int unsigned NOT NULL DEFAULT '0',
|
||
`mutetime` int unsigned NOT NULL DEFAULT '0',
|
||
`mutedby` varchar(50) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
|
||
`mutereason` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
|
||
PRIMARY KEY (`guid`,`mutedate`)
|
||
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci COMMENT='mute List';
|
||
/*!40101 SET character_set_client = @saved_cs_client */;
|
||
|
||
--
|
||
-- Dumping data for table `account_muted`
|
||
--
|
||
|
||
LOCK TABLES `account_muted` WRITE;
|
||
/*!40000 ALTER TABLE `account_muted` DISABLE KEYS */;
|
||
/*!40000 ALTER TABLE `account_muted` ENABLE KEYS */;
|
||
UNLOCK TABLES;
|
||
|
||
--
|
||
-- Table structure for table `autobroadcast`
|
||
--
|
||
|
||
DROP TABLE IF EXISTS `autobroadcast`;
|
||
/*!40101 SET @saved_cs_client = @@character_set_client */;
|
||
/*!50503 SET character_set_client = utf8mb4 */;
|
||
CREATE TABLE `autobroadcast` (
|
||
`realmid` int NOT NULL DEFAULT '-1',
|
||
`id` tinyint unsigned NOT NULL AUTO_INCREMENT,
|
||
`weight` tinyint unsigned DEFAULT '1',
|
||
`text` longtext CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
|
||
PRIMARY KEY (`id`,`realmid`)
|
||
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
|
||
/*!40101 SET character_set_client = @saved_cs_client */;
|
||
|
||
--
|
||
-- Dumping data for table `autobroadcast`
|
||
--
|
||
|
||
LOCK TABLES `autobroadcast` WRITE;
|
||
/*!40000 ALTER TABLE `autobroadcast` DISABLE KEYS */;
|
||
/*!40000 ALTER TABLE `autobroadcast` ENABLE KEYS */;
|
||
UNLOCK TABLES;
|
||
|
||
--
|
||
-- Table structure for table `battle_pet_declinedname`
|
||
--
|
||
|
||
DROP TABLE IF EXISTS `battle_pet_declinedname`;
|
||
/*!40101 SET @saved_cs_client = @@character_set_client */;
|
||
/*!50503 SET character_set_client = utf8mb4 */;
|
||
CREATE TABLE `battle_pet_declinedname` (
|
||
`guid` bigint NOT NULL,
|
||
`genitive` varchar(12) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
|
||
`dative` varchar(12) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
|
||
`accusative` varchar(12) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
|
||
`instrumental` varchar(12) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
|
||
`prepositional` varchar(12) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
|
||
PRIMARY KEY (`guid`),
|
||
CONSTRAINT `fk_battle_pet__battle_pet_declinedname` FOREIGN KEY (`guid`) REFERENCES `battle_pets` (`guid`)
|
||
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
|
||
/*!40101 SET character_set_client = @saved_cs_client */;
|
||
|
||
--
|
||
-- Dumping data for table `battle_pet_declinedname`
|
||
--
|
||
|
||
LOCK TABLES `battle_pet_declinedname` WRITE;
|
||
/*!40000 ALTER TABLE `battle_pet_declinedname` DISABLE KEYS */;
|
||
/*!40000 ALTER TABLE `battle_pet_declinedname` ENABLE KEYS */;
|
||
UNLOCK TABLES;
|
||
|
||
--
|
||
-- Table structure for table `battle_pet_slots`
|
||
--
|
||
|
||
DROP TABLE IF EXISTS `battle_pet_slots`;
|
||
/*!40101 SET @saved_cs_client = @@character_set_client */;
|
||
/*!50503 SET character_set_client = utf8mb4 */;
|
||
CREATE TABLE `battle_pet_slots` (
|
||
`id` tinyint NOT NULL,
|
||
`battlenetAccountId` int NOT NULL,
|
||
`battlePetGuid` bigint NOT NULL,
|
||
`locked` tinyint NOT NULL DEFAULT '1',
|
||
PRIMARY KEY (`id`,`battlenetAccountId`)
|
||
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
|
||
/*!40101 SET character_set_client = @saved_cs_client */;
|
||
|
||
--
|
||
-- Dumping data for table `battle_pet_slots`
|
||
--
|
||
|
||
LOCK TABLES `battle_pet_slots` WRITE;
|
||
/*!40000 ALTER TABLE `battle_pet_slots` DISABLE KEYS */;
|
||
/*!40000 ALTER TABLE `battle_pet_slots` ENABLE KEYS */;
|
||
UNLOCK TABLES;
|
||
|
||
--
|
||
-- Table structure for table `battle_pets`
|
||
--
|
||
|
||
DROP TABLE IF EXISTS `battle_pets`;
|
||
/*!40101 SET @saved_cs_client = @@character_set_client */;
|
||
/*!50503 SET character_set_client = utf8mb4 */;
|
||
CREATE TABLE `battle_pets` (
|
||
`guid` bigint NOT NULL,
|
||
`battlenetAccountId` int NOT NULL,
|
||
`species` int NOT NULL,
|
||
`breed` smallint NOT NULL,
|
||
`displayId` int NOT NULL DEFAULT '0',
|
||
`level` smallint NOT NULL DEFAULT '1',
|
||
`exp` smallint NOT NULL DEFAULT '0',
|
||
`health` int NOT NULL DEFAULT '1',
|
||
`quality` tinyint NOT NULL DEFAULT '0',
|
||
`flags` smallint NOT NULL DEFAULT '0',
|
||
`name` varchar(12) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
|
||
`nameTimestamp` bigint NOT NULL DEFAULT '0',
|
||
`owner` bigint DEFAULT NULL,
|
||
`ownerRealmId` int DEFAULT NULL,
|
||
PRIMARY KEY (`guid`)
|
||
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
|
||
/*!40101 SET character_set_client = @saved_cs_client */;
|
||
|
||
--
|
||
-- Dumping data for table `battle_pets`
|
||
--
|
||
|
||
LOCK TABLES `battle_pets` WRITE;
|
||
/*!40000 ALTER TABLE `battle_pets` DISABLE KEYS */;
|
||
/*!40000 ALTER TABLE `battle_pets` ENABLE KEYS */;
|
||
UNLOCK TABLES;
|
||
|
||
--
|
||
-- Table structure for table `battlenet_account_bans`
|
||
--
|
||
|
||
DROP TABLE IF EXISTS `battlenet_account_bans`;
|
||
/*!40101 SET @saved_cs_client = @@character_set_client */;
|
||
/*!50503 SET character_set_client = utf8mb4 */;
|
||
CREATE TABLE `battlenet_account_bans` (
|
||
`id` int unsigned NOT NULL DEFAULT '0' COMMENT 'Account id',
|
||
`bandate` int unsigned NOT NULL DEFAULT '0',
|
||
`unbandate` int unsigned NOT NULL DEFAULT '0',
|
||
`bannedby` varchar(50) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
|
||
`banreason` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
|
||
PRIMARY KEY (`id`,`bandate`)
|
||
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci COMMENT='Ban List';
|
||
/*!40101 SET character_set_client = @saved_cs_client */;
|
||
|
||
--
|
||
-- Dumping data for table `battlenet_account_bans`
|
||
--
|
||
|
||
LOCK TABLES `battlenet_account_bans` WRITE;
|
||
/*!40000 ALTER TABLE `battlenet_account_bans` DISABLE KEYS */;
|
||
/*!40000 ALTER TABLE `battlenet_account_bans` ENABLE KEYS */;
|
||
UNLOCK TABLES;
|
||
|
||
--
|
||
-- Table structure for table `battlenet_account_heirlooms`
|
||
--
|
||
|
||
DROP TABLE IF EXISTS `battlenet_account_heirlooms`;
|
||
/*!40101 SET @saved_cs_client = @@character_set_client */;
|
||
/*!50503 SET character_set_client = utf8mb4 */;
|
||
CREATE TABLE `battlenet_account_heirlooms` (
|
||
`accountId` int unsigned NOT NULL,
|
||
`itemId` int unsigned NOT NULL DEFAULT '0',
|
||
`flags` int unsigned NOT NULL DEFAULT '0',
|
||
PRIMARY KEY (`accountId`,`itemId`)
|
||
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
|
||
/*!40101 SET character_set_client = @saved_cs_client */;
|
||
|
||
--
|
||
-- Dumping data for table `battlenet_account_heirlooms`
|
||
--
|
||
|
||
LOCK TABLES `battlenet_account_heirlooms` WRITE;
|
||
/*!40000 ALTER TABLE `battlenet_account_heirlooms` DISABLE KEYS */;
|
||
/*!40000 ALTER TABLE `battlenet_account_heirlooms` ENABLE KEYS */;
|
||
UNLOCK TABLES;
|
||
|
||
--
|
||
-- Table structure for table `battlenet_account_mounts`
|
||
--
|
||
|
||
DROP TABLE IF EXISTS `battlenet_account_mounts`;
|
||
/*!40101 SET @saved_cs_client = @@character_set_client */;
|
||
/*!50503 SET character_set_client = utf8mb4 */;
|
||
CREATE TABLE `battlenet_account_mounts` (
|
||
`battlenetAccountId` int unsigned NOT NULL,
|
||
`mountSpellId` int unsigned NOT NULL,
|
||
`flags` tinyint unsigned NOT NULL DEFAULT '0',
|
||
PRIMARY KEY (`battlenetAccountId`,`mountSpellId`)
|
||
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
|
||
/*!40101 SET character_set_client = @saved_cs_client */;
|
||
|
||
--
|
||
-- Dumping data for table `battlenet_account_mounts`
|
||
--
|
||
|
||
LOCK TABLES `battlenet_account_mounts` WRITE;
|
||
/*!40000 ALTER TABLE `battlenet_account_mounts` DISABLE KEYS */;
|
||
/*!40000 ALTER TABLE `battlenet_account_mounts` ENABLE KEYS */;
|
||
UNLOCK TABLES;
|
||
|
||
--
|
||
-- Table structure for table `battlenet_account_toys`
|
||
--
|
||
|
||
DROP TABLE IF EXISTS `battlenet_account_toys`;
|
||
/*!40101 SET @saved_cs_client = @@character_set_client */;
|
||
/*!50503 SET character_set_client = utf8mb4 */;
|
||
CREATE TABLE `battlenet_account_toys` (
|
||
`accountId` int unsigned NOT NULL,
|
||
`itemId` int NOT NULL DEFAULT '0',
|
||
`isFavourite` tinyint(1) DEFAULT '0',
|
||
`hasFanfare` tinyint(1) DEFAULT '0',
|
||
PRIMARY KEY (`accountId`,`itemId`)
|
||
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
|
||
/*!40101 SET character_set_client = @saved_cs_client */;
|
||
|
||
--
|
||
-- Dumping data for table `battlenet_account_toys`
|
||
--
|
||
|
||
LOCK TABLES `battlenet_account_toys` WRITE;
|
||
/*!40000 ALTER TABLE `battlenet_account_toys` DISABLE KEYS */;
|
||
/*!40000 ALTER TABLE `battlenet_account_toys` ENABLE KEYS */;
|
||
UNLOCK TABLES;
|
||
|
||
--
|
||
-- Table structure for table `battlenet_account_transmog_illusions`
|
||
--
|
||
|
||
DROP TABLE IF EXISTS `battlenet_account_transmog_illusions`;
|
||
/*!40101 SET @saved_cs_client = @@character_set_client */;
|
||
/*!50503 SET character_set_client = utf8mb4 */;
|
||
CREATE TABLE `battlenet_account_transmog_illusions` (
|
||
`battlenetAccountId` int unsigned NOT NULL,
|
||
`blobIndex` smallint unsigned NOT NULL,
|
||
`illusionMask` int unsigned NOT NULL DEFAULT '0',
|
||
PRIMARY KEY (`battlenetAccountId`,`blobIndex`),
|
||
CONSTRAINT `battlenet_account_transmog_illusions_ibfk_1` FOREIGN KEY (`battlenetAccountId`) REFERENCES `battlenet_accounts` (`id`) ON DELETE RESTRICT ON UPDATE RESTRICT
|
||
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
|
||
/*!40101 SET character_set_client = @saved_cs_client */;
|
||
|
||
--
|
||
-- Dumping data for table `battlenet_account_transmog_illusions`
|
||
--
|
||
|
||
LOCK TABLES `battlenet_account_transmog_illusions` WRITE;
|
||
/*!40000 ALTER TABLE `battlenet_account_transmog_illusions` DISABLE KEYS */;
|
||
/*!40000 ALTER TABLE `battlenet_account_transmog_illusions` ENABLE KEYS */;
|
||
UNLOCK TABLES;
|
||
|
||
--
|
||
-- Table structure for table `battlenet_accounts`
|
||
--
|
||
|
||
DROP TABLE IF EXISTS `battlenet_accounts`;
|
||
/*!40101 SET @saved_cs_client = @@character_set_client */;
|
||
/*!50503 SET character_set_client = utf8mb4 */;
|
||
CREATE TABLE `battlenet_accounts` (
|
||
`id` int unsigned NOT NULL AUTO_INCREMENT COMMENT 'Identifier',
|
||
`email` varchar(320) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
|
||
`srp_version` tinyint NOT NULL DEFAULT '1',
|
||
`salt` binary(32) NOT NULL,
|
||
`verifier` blob NOT NULL,
|
||
`joindate` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP,
|
||
`last_ip` varchar(15) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '127.0.0.1',
|
||
`failed_logins` int unsigned NOT NULL DEFAULT '0',
|
||
`locked` tinyint unsigned NOT NULL DEFAULT '0',
|
||
`lock_country` varchar(2) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '00',
|
||
`last_login` timestamp NULL DEFAULT NULL,
|
||
`online` tinyint unsigned NOT NULL DEFAULT '0',
|
||
`locale` tinyint unsigned NOT NULL DEFAULT '0',
|
||
`os` varchar(4) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
|
||
`LastCharacterUndelete` int unsigned NOT NULL DEFAULT '0',
|
||
`LoginTicket` varchar(64) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
|
||
`LoginTicketExpiry` int unsigned DEFAULT NULL,
|
||
PRIMARY KEY (`id`)
|
||
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci COMMENT='Account System';
|
||
/*!40101 SET character_set_client = @saved_cs_client */;
|
||
|
||
--
|
||
-- Dumping data for table `battlenet_accounts`
|
||
--
|
||
|
||
LOCK TABLES `battlenet_accounts` WRITE;
|
||
/*!40000 ALTER TABLE `battlenet_accounts` DISABLE KEYS */;
|
||
/*!40000 ALTER TABLE `battlenet_accounts` ENABLE KEYS */;
|
||
UNLOCK TABLES;
|
||
|
||
--
|
||
-- Table structure for table `battlenet_item_appearances`
|
||
--
|
||
|
||
DROP TABLE IF EXISTS `battlenet_item_appearances`;
|
||
/*!40101 SET @saved_cs_client = @@character_set_client */;
|
||
/*!50503 SET character_set_client = utf8mb4 */;
|
||
CREATE TABLE `battlenet_item_appearances` (
|
||
`battlenetAccountId` int unsigned NOT NULL,
|
||
`blobIndex` smallint unsigned NOT NULL,
|
||
`appearanceMask` int unsigned NOT NULL DEFAULT '0',
|
||
PRIMARY KEY (`battlenetAccountId`,`blobIndex`),
|
||
CONSTRAINT `fk_battlenet_item_appearances` FOREIGN KEY (`battlenetAccountId`) REFERENCES `battlenet_accounts` (`id`)
|
||
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
|
||
/*!40101 SET character_set_client = @saved_cs_client */;
|
||
|
||
--
|
||
-- Dumping data for table `battlenet_item_appearances`
|
||
--
|
||
|
||
LOCK TABLES `battlenet_item_appearances` WRITE;
|
||
/*!40000 ALTER TABLE `battlenet_item_appearances` DISABLE KEYS */;
|
||
/*!40000 ALTER TABLE `battlenet_item_appearances` ENABLE KEYS */;
|
||
UNLOCK TABLES;
|
||
|
||
--
|
||
-- Table structure for table `battlenet_item_favorite_appearances`
|
||
--
|
||
|
||
DROP TABLE IF EXISTS `battlenet_item_favorite_appearances`;
|
||
/*!40101 SET @saved_cs_client = @@character_set_client */;
|
||
/*!50503 SET character_set_client = utf8mb4 */;
|
||
CREATE TABLE `battlenet_item_favorite_appearances` (
|
||
`battlenetAccountId` int unsigned NOT NULL,
|
||
`itemModifiedAppearanceId` int unsigned NOT NULL,
|
||
PRIMARY KEY (`battlenetAccountId`,`itemModifiedAppearanceId`),
|
||
CONSTRAINT `fk_battlenet_item_favorite_appearances` FOREIGN KEY (`battlenetAccountId`) REFERENCES `battlenet_accounts` (`id`)
|
||
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
|
||
/*!40101 SET character_set_client = @saved_cs_client */;
|
||
|
||
--
|
||
-- Dumping data for table `battlenet_item_favorite_appearances`
|
||
--
|
||
|
||
LOCK TABLES `battlenet_item_favorite_appearances` WRITE;
|
||
/*!40000 ALTER TABLE `battlenet_item_favorite_appearances` DISABLE KEYS */;
|
||
/*!40000 ALTER TABLE `battlenet_item_favorite_appearances` ENABLE KEYS */;
|
||
UNLOCK TABLES;
|
||
|
||
--
|
||
-- Table structure for table `build_auth_key`
|
||
--
|
||
|
||
DROP TABLE IF EXISTS `build_auth_key`;
|
||
/*!40101 SET @saved_cs_client = @@character_set_client */;
|
||
/*!50503 SET character_set_client = utf8mb4 */;
|
||
CREATE TABLE `build_auth_key` (
|
||
`build` int NOT NULL,
|
||
`platform` char(4) CHARACTER SET ascii COLLATE ascii_bin NOT NULL,
|
||
`arch` char(4) CHARACTER SET ascii COLLATE ascii_bin NOT NULL,
|
||
`type` char(4) CHARACTER SET ascii COLLATE ascii_bin NOT NULL,
|
||
`key` binary(16) NOT NULL,
|
||
PRIMARY KEY (`build`,`platform`,`arch`,`type`)
|
||
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
|
||
/*!40101 SET character_set_client = @saved_cs_client */;
|
||
|
||
--
|
||
-- Dumping data for table `build_auth_key`
|
||
--
|
||
|
||
LOCK TABLES `build_auth_key` WRITE;
|
||
/*!40000 ALTER TABLE `build_auth_key` DISABLE KEYS */;
|
||
INSERT INTO `build_auth_key` VALUES
|
||
(25549,'Mac','x64','WoW',_binary 'f<EFBFBD>^ <09>pa&y_\<5C><>\<5C>'),
|
||
(25549,'Win','x64','WoW',_binary 'RbN\<5C>\<5C>\<5C><>\<5C>\<5C>?]g<>5\<5C>'),
|
||
(25549,'Win','x86','WoW',_binary '<EFBFBD>YO\<5C>^<><7F><EFBFBD>ٝ<EFBFBD>6J<36><4A>'),
|
||
(25996,'Mac','x64','WoW',_binary '!<0B>I\<5C>\<5C>l<EFBFBD><6C><EFBFBD>\<5C><>\<5C><1E>'),
|
||
(25996,'Win','x64','WoW',_binary '\<5C><><EFBFBD>-j!t<>\<5C>8\<5C>rm+'),
|
||
(25996,'Win','x86','WoW',_binary '#ŜYc\<5C>\<5C>[r<><13>x\<5C>\<5C>'),
|
||
(26124,'Mac','x64','WoW',_binary '\<5C>ʙz<CA99>\<5C>\<5C>\<5C>Te\<5C>) <20><>N'),
|
||
(26124,'Win','x64','WoW',_binary 'F\<5C>\<5C>{<7B>{<7B><>\<5C>SC^ ?'),
|
||
(26124,'Win','x86','WoW',_binary '<EFBFBD><EFBFBD>Z\<5C>r\<5C>\<5C>l<>\<5C>z<EFBFBD>\\9'),
|
||
(26365,'Mac','x64','WoW',_binary '\<5C>\<5C><>`\'mk@\n<EFBFBD><EFBFBD><EFBFBD>]Q<EFBFBD>'),
|
||
(26365,'Win','x64','WoW',_binary 'Y<EFBFBD>?0r<EFBFBD>EKA<EFBFBD>\<EFBFBD><EFBFBD>\<EFBFBD>P<'),
|
||
(26365,'Win','x86','WoW',_binary '*<EFBFBD><EFBFBD>\<EFBFBD><EFBFBD><EFBFBD>,<EFBFBD>\<EFBFBD><EFBFBD>\Z<EFBFBD>:'),
|
||
(26654,'Mac','x64','WoW',_binary '<EFBFBD>4<EFBFBD><EFBFBD>^<EFBFBD><EFBFBD><EFBFBD><EFBFBD>\<EFBFBD>d\<EFBFBD>\<EFBFBD>\<EFBFBD>'),
|
||
(26654,'Win','x64','WoW',_binary '<EFBFBD>Rd<EFBFBD><EFBFBD><EFBFBD>[W<EFBFBD>2Ē<EFBFBD>Z'),
|
||
(26654,'Win','x86','WoW',_binary '<EFBFBD>\<EFBFBD>֓\<EFBFBD><EFBFBD>\<EFBFBD><EFBFBD>u$V<EFBFBD>\<EFBFBD>'),
|
||
(26822,'Mac','x64','WoW',_binary '<EFBFBD>\06h\<EFBFBD>E\<EFBFBD>N͍\<EFBFBD><EFBFBD>\<EFBFBD>e\<EFBFBD>k'),
|
||
(26822,'Win','x64','WoW',_binary '+\<EFBFBD>\<EFBFBD>F<EFBFBD>\<EFBFBD>\<EFBFBD>~\<EFBFBD><EFBFBD>P<EFBFBD> \<EFBFBD><EFBFBD>'),
|
||
(26822,'Win','x86','WoW',_binary '(><EFBFBD>w\<EFBFBD>\<EFBFBD>\<EFBFBD>4{\<EFBFBD>\<EFBFBD><EFBFBD>\<EFBFBD>\<EFBFBD>'),
|
||
(26899,'Mac','x64','WoW',_binary '<EFBFBD>h\<EFBFBD>\<EFBFBD>)\n3<EFBFBD>)<EFBFBD>\0\<EFBFBD>'),
|
||
(26899,'Win','x64','WoW',_binary '5Q\<EFBFBD>\0(<EFBFBD><EFBFBD>Y<EFBFBD>%dK'),
|
||
(26899,'Win','x86','WoW',_binary '\<EFBFBD>b\<EFBFBD>/\<EFBFBD>\<EFBFBD>><EFBFBD><EFBFBD>u0<EFBFBD>۱<EFBFBD><EFBFBD>'),
|
||
(26972,'Mac','x64','WoW',_binary '4<EFBFBD><EFBFBD>=r<EFBFBD><EFBFBD><EFBFBD>@}\<EFBFBD>5\<EFBFBD>\<EFBFBD>j'),
|
||
(26972,'Win','x64','WoW',_binary 'n!-\<EFBFBD>j$<EFBFBD>٭\<EFBFBD>\<EFBFBD>\"\<5C><>'),
|
||
(26972,'Win','x86','WoW',_binary 'y~\<5C>f-\<5C>\<5C> \nD<6E>?&'),
|
||
(28153,'Win','x64','WoW',_binary '\<5C>be\<5C>m1<6D>+G<>4\<5C>\<5C>\n<>'),
|
||
(30706,'Win','x64','WoW',_binary '<27>m<EFBFBD>f<EFBFBD>J<19>hQ<>x0<03>'),
|
||
(30993,'Win','x64','WoW',_binary '+<2B>aeZ<65>/\<5C>\<5C>H<EFBFBD><48>6@:<3A>'),
|
||
(31229,'Win','x64','WoW',_binary '<27>F\<5C>6p0<70>*<2A><>ɤrv8+'),
|
||
(31429,'Win','x64','WoW',_binary 'w<><77><07><>\<5C>R^<5E>rO\<5C>\<5C>'),
|
||
(31478,'Win','x64','WoW',_binary 'ys<79>\<5C>Kۋy<DB8B><79><EFBFBD><EFBFBD><EFBFBD>\<5C>q\<5C>'),
|
||
(32305,'Win','x64','WoW',_binary '!\<5C><><EFBFBD>z؟<7A>Aڋ<>8j'),
|
||
(32494,'Win','x64','WoW',_binary 'X<>J\<5C><04><><01>\\a0<61><30><EFBFBD><EFBFBD>'),
|
||
(32580,'Win','x64','WoW',_binary '<27>\<5C><><EFBFBD>ד\<5C>)<29>%<25>\<5C>\<5C>'),
|
||
(32638,'Win','x64','WoW',_binary ']\<5C>\<5C>Ԩg\<5C>\<5C>a]<5D>\"<EFBFBD>mN'),
|
||
(32722,'Win','x64','WoW',_binary '\Z <EFBFBD>8<EFBFBD>\"XkI1<EFBFBD>\<5C>\<5C>Ԫ'),
|
||
(32750,'Mac','x64','WoW',_binary '\<5C>NM <09><><EFBFBD>\<5C><>p<>'),
|
||
(32750,'Win','x64','WoW',_binary '\<5C>\<5C>f<EFBFBD>Z[#}UCw2'),
|
||
(32978,'Mac','x64','WoW',_binary 'R<><52>G\<5C><>\<5C>\<5C>E\'<27>\<5C>3\<5C>9'),
|
||
(32978,'Win','x64','WoW',_binary 'v<>.<2E>>R]<5D>\<5C>h<EFBFBD>C\<5C>H<EFBFBD>\0'),
|
||
(33369,'Mac','x64','WoW',_binary '\<5C><>I\<5C>\nT\<5C>~<7E><><EFBFBD>><3E>fq'),
|
||
(33369,'Win','x64','WoW',_binary 'Y<><59><18>M<@?V<>όO\n'),
|
||
(33528,'Win','x64','WoW',_binary '\<5C><<3C><><1D>\<5C>\<5C>y,x[G\<5C>'),
|
||
(33724,'Win','x64','WoW',_binary '8\<5C><>\<5C>(I9\<5C> \<5C>\<5C>L\<5C><><EFBFBD>w'),
|
||
(33775,'Mac','x64','WoW',_binary '5M-\<5C>\<5C>$\<5C><13>\<5C>k6<><36>'),
|
||
(33775,'Win','x64','WoW',_binary '<27>&0\n<>I\<5C>n\<5C>n<EFBFBD>G<EFBFBD>-.'),
|
||
(33941,'Win','x64','WoW',_binary '<27><>\Z6\<5C>w\r\nl<6E><6C>Ip<49><70><EFBFBD>'),
|
||
(34220,'Win','x64','WoW',_binary '<27>\<5C>[<5B>lk<6C><6B>PW\0\<5C>\<5C>fj,'),
|
||
(34601,'Win','x64','WoW',_binary '\r}\<5C><>r_<72><5F>\<5C> %w<><77>c'),
|
||
(34769,'Win','x64','WoW',_binary '<27><><EFBFBD><EFBFBD>c<EFBFBD>\<5C>\<5C>\<5C>\<5C>M6\<5C>i\<5C>'),
|
||
(34963,'Mac','x64','WoW',_binary '\<5C>e<EFBFBD>\<5C>4G<34><47>\<5C>m\n'),
|
||
(34963,'Win','x64','WoW',_binary '{<7B><0C><>]\"#<EFBFBD>*\<EFBFBD>`:'),
|
||
(35249,'Win','x64','WoW',_binary 'DZ<EFBFBD>\<EFBFBD><EFBFBD> \<EFBFBD>X)<EFBFBD>\<EFBFBD>\r'),
|
||
(35284,'Mac','x64','WoW',_binary '<EFBFBD> \nŧ=<EFBFBD>/\<EFBFBD>Ǜ<EFBFBD>R<EFBFBD>'),
|
||
(35284,'Win','x64','WoW',_binary '\<EFBFBD>8\<EFBFBD>\<EFBFBD><EFBFBD> \<EFBFBD><EFBFBD><EFBFBD>\<EFBFBD><O'),
|
||
(35435,'Mac','x64','WoW',_binary '<EFBFBD>\<EFBFBD>W<EFBFBD>JF<EFBFBD>\<EFBFBD>,\<EFBFBD>\<EFBFBD>7\<EFBFBD>0E'),
|
||
(35435,'Win','x64','WoW',_binary '<EFBFBD>9z<EFBFBD><EFBFBD>#t<EFBFBD>/µ<EFBFBD>.\<EFBFBD>\<EFBFBD>'),
|
||
(35662,'Mac','x64','WoW',_binary 'Yfl6<EFBFBD>\<EFBFBD>\<EFBFBD><EFBFBD><EFBFBD>\<EFBFBD>g'),
|
||
(35662,'Win','x64','WoW',_binary 'W<EFBFBD>\<EFBFBD>Hp\<EFBFBD>x\<EFBFBD>ib\<EFBFBD>m\<EFBFBD><EFBFBD>'),
|
||
(36753,'Win','x64','WoW',_binary '8oޅY<EFBFBD>\<EFBFBD>\<EFBFBD>{yI <EFBFBD>'),
|
||
(36839,'Win','x64','WoW',_binary '5n<EFBFBD>A+<EFBFBD><EFBFBD>\<EFBFBD>.:\<EFBFBD>\rQ<EFBFBD>\<EFBFBD>)'),
|
||
(36949,'Win','x64','WoW',_binary 'Q<EFBFBD>t͊ <EFBFBD>S<EFBFBD><EFBFBD><EFBFBD>A<EFBFBD>\<EFBFBD>i<EFBFBD>'),
|
||
(37142,'Win','x64','WoW',_binary ']<EFBFBD><EFBFBD>19\<EFBFBD>Ѷ³&<EFBFBD><EFBFBD>\<EFBFBD>'),
|
||
(37176,'Win','x64','WoW',_binary '<r^<EFBFBD>\<EFBFBD>=<EFBFBD>\<EFBFBD>C\<EFBFBD>o\<EFBFBD><EFBFBD><EFBFBD>\<EFBFBD>'),
|
||
(37474,'Mac','x64','WoW',_binary 'L<EFBFBD>\<EFBFBD>\<EFBFBD>B7<EFBFBD>\<EFBFBD>mB\<EFBFBD>x\<EFBFBD>3'),
|
||
(37474,'Win','x64','WoW',_binary '\r慻<EFBFBD>U<EFBFBD>\<EFBFBD><EFBFBD>\<EFBFBD>K<EFBFBD>j['),
|
||
(38134,'Win','x64','WoW',_binary '2\'^\<5C>\<5C>;5|(<28><>\<5C>\<5C><>1'),
|
||
(38556,'Win','x64','WoW',_binary '\<5C>}Z\<5C>Cd<43>>q<>\<5C><><EFBFBD><EFBFBD><EFBFBD><EFBFBD>'),
|
||
(39653,'Win','x64','WoW',_binary '\<5C><15>\<5C><>1(\<5C>\<5C>~\<5C>F2'),
|
||
(39804,'Win','x64','WoW',_binary '\<5C>-+<2B>\<5C>&\nv<6E><76>\<5C>wឥ'),
|
||
(40000,'Win','x64','WoW',_binary 'L<EFBFBD>C:<3A>7\<5C><><03><>\"<04>'),
|
||
(40120,'Mac','x64','WoW',_binary '<EFBFBD>?)<29>ή\<5C>m\<5C>\"X<\<5C>z|'),
|
||
(40120,'Win','x64','WoW',_binary '\<5C>~<7E><><EFBFBD>\<5C><><14>P\<5C>3fx'),
|
||
(40443,'Win','x64','WoW',_binary '<EFBFBD><EFBFBD><EFBFBD>C\<5C><>8\<5C>U迷*<2A>\<5C>'),
|
||
(40593,'Win','x64','WoW',_binary '<EFBFBD>W-b\<5C>\<5C>S9Ad<41>\<5C>\<5C>'),
|
||
(40725,'Win','x64','WoW',_binary '<EFBFBD>\<5C>\<5C>뛲<EFBFBD>n<EFBFBD>\<5C>\<5C>\<5C>\<5C>z;'),
|
||
(40906,'Win','x64','WoW',_binary '\<5C><>%<25><>5H<35><48>\r\<5C>#\<5C>a\<5C>'),
|
||
(40944,'Win','x64','WoW',_binary '6<EFBFBD>\<5C><><EFBFBD>I<F487A8A0>pept'),
|
||
(40966,'Win','x64','WoW',_binary '\<5C>G<>!\<5C><>\<5C>\<5C>\<5C>v;<3B>K<EFBFBD><4B>'),
|
||
(41031,'Win','x64','WoW',_binary '<01><0F>ְ\<5C>7K{<7B><>[gtI'),
|
||
(41079,'Win','x64','WoW',_binary '<EFBFBD><EFBFBD><<3C>#<23><0B><><EFBFBD>w<EFBFBD>b߮\<5C>'),
|
||
(41288,'Win','x64','WoW',_binary '<EFBFBD><0C><>\<5C>\<5C>6\<5C>$<24><>\<5C>?<3F>['),
|
||
(41323,'Win','x64','WoW',_binary '\<5C>=\r\<5C><><EFBFBD><EFBFBD><EFBFBD><1C>q<EFBFBD><71><EFBFBD>J'),
|
||
(41359,'Win','x64','WoW',_binary '_<EFBFBD>*i\nCu<43><75>*(\<5C>ց<EFBFBD>'),
|
||
(41488,'Win','x64','WoW',_binary '\<5C>\<5C>hpX\<5C>\<5C>2<EFBFBD>S\<5C>ف'),
|
||
(41793,'Win','x64','WoW',_binary '<EFBFBD><EFBFBD>}<7D><>aUpt*U<>f\<5C>'),
|
||
(42010,'Win','x64','WoW',_binary '0)pA{[\<5C>S\<5C>S\Z'),
|
||
(42423,'Win','x64','WoW',_binary 'aJ~<7E>\<5C>WT<57><54><EFBFBD>B<0E>\<5C>'),
|
||
(42488,'Win','x64','WoW',_binary '<EFBFBD><EFBFBD>U撍<EFBFBD><EFBFBD>q\<5C>\<5C>\<5C><\<5C>o'),
|
||
(42521,'Win','x64','WoW',_binary '_\<5C><>/\<5C>Ʊ[J];[J];'),
|
||
(42538,'Win','x64','WoW',_binary 'q<EFBFBD>PK\<5C>?<3F>\<5C>\<5C>Be\<5C>s<10>'),
|
||
(42560,'Win','x64','WoW',_binary '_\<5C>Ê<EFBFBD>g\<5C>Fd<46>.\r<>'),
|
||
(42614,'Win','x64','WoW',_binary 'w+\<5C>&<26>\<5C>BBU\<5C>\<5C>ys\<5C>'),
|
||
(42698,'Win','x64','WoW',_binary '<EFBFBD>I{\<5C>\<5C>t\<5C><> T<>\<5C>ri'),
|
||
(42825,'Win','x64','WoW',_binary '<EFBFBD>M<EFBFBD>(Ʀ<>\<5C>ݺQ!<21>9\<5C>W'),
|
||
(42852,'Win','x64','WoW',_binary 'ޟ<EFBFBD><\<5C><>Tӯ<54><D3AF>\<5C><>\<5C>)'),
|
||
(42937,'Win','x64','WoW',_binary '\<5C><>u\<5C>tu,<2C><>k33<33>c'),
|
||
(42979,'Win','x64','WoW',_binary '\<5C>\<5C>8<EFBFBD>dP<64>M*\<5C>`<60>3ŞT'),
|
||
(43114,'Win','x64','WoW',_binary '\<5C>\\<5C><>̲JH<4A>N\<5C>R<EFBFBD>YJ~'),
|
||
(43206,'Win','x64','WoW',_binary '\<5C>\<5C>S,w<04><>_%m\<5C>\<5C>\<5C>\<5C>'),
|
||
(43340,'Win','x64','WoW',_binary 'p\<5C>m-<2D><><EFBFBD>ߓꄛ<06>\<5C>'),
|
||
(43345,'Win','x64','WoW',_binary '\<5C><11><>\<5C>\rN\<5C>\<5C>\r\<5C>'),
|
||
(43971,'Win','x64','WoW',_binary 'h<1C><>a<EFBFBD>\0<05>\<5C>\<5C>\n<>\<5C>'),
|
||
(44015,'Win','x64','WoW',_binary '<EFBFBD>\<5C><><EFBFBD>ɋ<EFBFBD><C98B>*\<5C>\<5C>Ú!z<>'),
|
||
(44061,'Win','x64','WoW',_binary '<EFBFBD>+\\2<><32><0E><>n<EFBFBD><6E>x<EFBFBD>'),
|
||
(44127,'Win','x64','WoW',_binary 'xx<EFBFBD>\<5C>\<5C><>ɵH`\<5C><>4<EFBFBD>'),
|
||
(44232,'Win','x64','WoW',_binary '<EFBFBD>\<5C><>\<5C>\<5C><>;<3B>u\0\"\<5C>M3\<5C>'),
|
||
(44325,'Win','x64','WoW',_binary '<13>}RM&<26><EFBFBD>4\<5C>\<5C>H\<5C>\<5C>'),
|
||
(44730,'Win','x64','WoW',_binary '<EFBFBD>\<5C>{<7B>ǟC\0\<5C>\<5C>\<5C>\<5C>\<5C>'),
|
||
(44908,'Win','x64','WoW',_binary '<EFBFBD><EFBFBD>\<5C>@ɼՑ\<5C>\<5C>Y<EFBFBD>ը<EFBFBD><D5A8>'),
|
||
(45114,'Win','x64','WoW',_binary 'ׯ\<5C>@<40>\0\<5C>l0\<5C>\<5C>\<5C>nT<6E><54>'),
|
||
(45161,'Win','x64','WoW',_binary 't<EFBFBD>.xz<78><7A>E<EFBFBD>c<EFBFBD><63><EFBFBD><EFBFBD>l<EFBFBD>'),
|
||
(45338,'Win','x64','WoW',_binary '\\\<5C> JA<4A>ڝ\<5C>cx<63>;\<5C>'),
|
||
(45745,'Win','x64','WoW',_binary 'm\<5C>aiMvZYZ:\<5C>k'),
|
||
(46479,'Win','x64','WoW',_binary '˚\<5C>؛`<60><><EFBFBD><EFBFBD>ӕ\<5C>\<5C>2'),
|
||
(46658,'Win','x64','WoW',_binary '?<3F><>T(\<5C>S`\<5C>\<5C>\<5C>\\\<5C>c<EFBFBD>'),
|
||
(46689,'Win','x64','WoW',_binary '١<18>j\<5C> \<5C>Fu\<5C>Ӫ'),
|
||
(46702,'Win','x64','WoW',_binary '<01>\<5C>h<EFBFBD><68>}ɪ<>\<5C>\n<0B>,'),
|
||
(46741,'Win','x64','WoW',_binary 'LJ~\<5C> <09>\<5C><><EFBFBD>E<EFBFBD><45>ǚx'),
|
||
(46801,'Win','x64','WoW',_binary '\<5C><>\<5C>\<5C>]6<><36><EFBFBD>^\<5C>\<5C>0\<5C>'),
|
||
(46879,'Win','x64','WoW',_binary '\<5C>\<5C>C<EFBFBD>`Q\<5C>\Z!3<>kc\<5C>'),
|
||
(46924,'Win','x64','WoW',_binary '\<5C>\<5C>\Z<>\<5C>i\<5C>\<5C>\<5C>۪{<7B><>'),
|
||
(47067,'Win','x64','WoW',_binary 'c<EFBFBD>,<2C>ަ<EFBFBD>+\<5C>\<5C>@\<5C>6<EFBFBD>VW'),
|
||
(47187,'Win','x64','WoW',_binary 'q<1F>U\<5C>\0#r<>\<5C>\<5C>\<5C>1\<5C>'),
|
||
(47213,'Win','x64','WoW',_binary '#\<5C>\r<>ά\n<><6E><EFBFBD>ލ\<5C>DԢ'),
|
||
(47631,'Win','x64','WoW',_binary '<EFBFBD><EFBFBD><EFBFBD><EFBFBD>Ю<EFBFBD>\"\<5C><>/BVq<'),
|
||
(47777,'Win','x64','WoW',_binary '<EFBFBD><EFBFBD><04>Z<EFBFBD>\<5C>5<EFBFBD>\<5C>\\M\<5C>_<EFBFBD>'),
|
||
(47799,'Win','x64','WoW',_binary 'sd\<5C> <#\<5C>,ܕէ<><D5A7>>'),
|
||
(47825,'Win','x64','WoW',_binary '<EFBFBD><EFBFBD><EFBFBD>N^rz\<5C><><08>q<EFBFBD> T<>'),
|
||
(47849,'Win','x64','WoW',_binary '<EFBFBD> <20><><EFBFBD>\n\<5C><>L<EFBFBD>#<23>\<5C>'),
|
||
(47871,'Win','x64','WoW',_binary '<EFBFBD>O}0\<5C>I<EFBFBD><49>+;?<3F>7\<5C>\<5C>\<5C>'),
|
||
(47884,'Win','x64','WoW',_binary '+z\0+\<5C>Y\<5C>\<5C><04>-\<5C>C<02>'),
|
||
(47936,'Win','x64','WoW',_binary '<EFBFBD>=0\<5C><>\<5C>;?<3F><>\<5C>8<EFBFBD>\<5C>I'),
|
||
(47967,'Win','x64','WoW',_binary '\<5C>\<5C>%\<5C><08>\"M<>uAӵ\<5C>dx'),
|
||
(48001,'Win','x64','WoW',_binary 'K`<60>{\<5C>[a^q<04>i\<5C>ջ'),
|
||
(48069,'Win','x64','WoW',_binary 'U<EFBFBD>ߕ<EFBFBD><EFBFBD><EFBFBD>\<5C>XIw<49>|iE\<5C>'),
|
||
(48317,'Win','x64','WoW',_binary '<EFBFBD><EFBFBD>\<5C>{E<>2D\<5C>Ǚ`Mԯ'),
|
||
(48397,'Win','x64','WoW',_binary 'd<EFBFBD><EFBFBD>y\<5C><>~lW<6C>+k\Z[2\<5C>'),
|
||
(48526,'Win','x64','WoW',_binary 'շ\<5C>0:*ti\<5C>\Z\<5C>\<5C>e'),
|
||
(48676,'Win','x64','WoW',_binary '\<5C>Y<EFBFBD>t\<5C>\<5C>C<EFBFBD>\<5C>(<28>d\<5C>'),
|
||
(48749,'Win','x64','WoW',_binary '<EFBFBD>\<5C>̠\<5C>=<3D><><17><><EFBFBD><EFBFBD>F<EFBFBD><46>'),
|
||
(48838,'Win','x64','WoW',_binary '<EFBFBD>oNF\<5C>\"<22>-\<5C>{Ċ<><C48A>'),
|
||
(48865,'Win','x64','WoW',_binary 'KwJ<EFBFBD>{4\<5C>p%q<>\'<EFBFBD>Kj'),
|
||
(48892,'Win','x64','WoW',_binary '<EFBFBD>1<EFBFBD>\'E<EFBFBD>!<21>:\Z4id\<5C>{<7B>'),
|
||
(48966,'Win','x64','WoW',_binary '<EFBFBD>1B\<5C><1F>q_\<5C>]CC\<5C>\\m'),
|
||
(48999,'Win','x64','WoW',_binary 'y<EFBFBD>o\<5C><>g.\<5C><>_d\\<5C>b\<5C>'),
|
||
(49267,'Win','x64','WoW',_binary '\<5C>\<5C>~<7E><>\<5C>s\Z۴\Z\<5C><>\<5C>1'),
|
||
(49318,'Win','x64','WoW',_binary '<EFBFBD>C<EFBFBD>\<5C>b\<5C>H<EFBFBD>l%=<3D><>'),
|
||
(49343,'Win','x64','WoW',_binary '0\ZL B<><42>\<5C><05><03>l`'),
|
||
(49407,'Win','x64','WoW',_binary 'd<13>\rɈ[<5B>i;7 <0C>/0'),
|
||
(49426,'Win','x64','WoW',_binary '\<5C>^߿\<5C><>JU\<5C><>Q\<5C><19>'),
|
||
(49444,'Win','x64','WoW',_binary '6;+([݈WA<57>(f1m<'),
|
||
(49474,'Win','x64','WoW',_binary 'D<EFBFBD>ҳR\<5C>= <09><<3C>\<5C>\<5C>^7'),
|
||
(49570,'Win','x64','WoW',_binary '<EFBFBD>$\<5C>g<EFBFBD><67><EFBFBD>\<5C>\<5C>m<EFBFBD><6D>\<5C>><3E><>'),
|
||
(49679,'Win','x64','WoW',_binary '<EFBFBD>\<5C><>h\<5C>y~<7E>\0XA<13>C'),
|
||
(49741,'Win','x64','WoW',_binary '\<5C><>\<5C><><0E>l\<5C><>B*\<5C>\Z'),
|
||
(49801,'Win','x64','WoW',_binary '2<17>g<EFBFBD>l<EFBFBD>]<5D>Vx<56>ƃ'),
|
||
(49890,'Win','x64','WoW',_binary '\"<22><><EFBFBD>\<5C>yzd<7A>_p[=<3D><>L'),
|
||
(50000,'Win','x64','WoW',_binary '\<5C>o<EFBFBD>\"<22><>f8B<38>\<5C><>ZL<5A>'),
|
||
(50401,'Win','x64','WoW',_binary '>\<5C>R\<5C>\<5C>\<5C>\<5C>\<5C>U\<5C><>I8'),
|
||
(50438,'Win','x64','WoW',_binary '_h\<5C>k<12><>\<5C>w\<5C>\<5C>&'),
|
||
(50467,'Win','x64','WoW',_binary '^<5E>k\<5C>\<5C>hC-c@<13>h\<5C>\<5C>'),
|
||
(50469,'Win','x64','WoW',_binary 'h̶X<CCB6><16>;\<5C><>\<5C><08><><EFBFBD>'),
|
||
(50504,'Win','x64','WoW',_binary '}_\<5C>2ɯ]\<5C>T3<54><33>Ԝ'),
|
||
(50585,'Win','x64','WoW',_binary '\<5C>\<5C>\<5C>8<EFBFBD><38>I5<49><35>\<5C>\<5C><>>vK'),
|
||
(50622,'Win','x64','WoW',_binary '\<5C>:&<26>u<EFBFBD><75>`s\<5C>p`<60>(\<5C><>'),
|
||
(50747,'Win','x64','WoW',_binary '-<8j<38>E\<5C>s\<5C>:<n<>\<5C>\<5C>'),
|
||
(50791,'Win','x64','WoW',_binary '\<5C>л\<5C>7\<5C>\\<5C>h$ <1E>'),
|
||
(51130,'Win','x64','WoW',_binary 'D\<5C>,<2C>\<5C>\<5C>e]<5D><>H7&\<5C>@5'),
|
||
(51187,'Win','x64','WoW',_binary 't\<5C>]9e&<26>G<EFBFBD>\<5C>1<>q\<5C>'),
|
||
(51237,'Win','x64','WoW',_binary '\<5C>f\n!<21>fdo<64>g\<5C><>\<5C>\<5C>U\<5C>'),
|
||
(51261,'Win','x64','WoW',_binary '\<5C><>z\<5C>P3<1E><>0\Z<><5A>o<EFBFBD>'),
|
||
(51313,'Win','x64','WoW',_binary '5A<EFBFBD>Ыs\\\<5C> <20><>E\<5C>0'),
|
||
(51421,'Win','x64','WoW',_binary 'E\<5C>Mo35&<26><>\<5C>+ c<><63>'),
|
||
(51485,'Win','x64','WoW',_binary '\<5C>T<EFBFBD>\n]\<5C>\\\<5C><>\<5C>;}\<5C>\<5C>'),
|
||
(51536,'Win','x64','WoW',_binary 'W\<5C><10>\<5C><16>?<3F>bc[<5B>'),
|
||
(51754,'Win','x64','WoW',_binary '<EFBFBD>ըa<EFBFBD>q<EFBFBD>A<EFBFBD>\<5C>~7<>\Z'),
|
||
(51886,'Win','x64','WoW',_binary ' ω<19>.<2E>ޮ<EFBFBD><0C>S<>'),
|
||
(51972,'Win','x64','WoW',_binary 'DM\<5C>\<5C>5D<35>g<18>M<EFBFBD><4D>('),
|
||
(52038,'Win','x64','WoW',_binary '<EFBFBD>\<5C>\0J\<5C>أ<EFBFBD>\<5C><>}+<2B>\<5C>W<EFBFBD>'),
|
||
(52068,'Win','x64','WoW',_binary '<EFBFBD>O<EFBFBD>+<2B>\<5C>~\<5C>\<5C><>_<EFBFBD>\<5C>$t'),
|
||
(52095,'Win','x64','WoW',_binary '<EFBFBD>68(<28>\<5C>m\'N<EFBFBD><EFBFBD><EFBFBD>\<EFBFBD>\<EFBFBD>\<EFBFBD>'),
|
||
(52106,'Win','x64','WoW',_binary '<EFBFBD>\<EFBFBD>8i<EFBFBD>!,<EFBFBD><EFBFBD><EFBFBD>\<EFBFBD><EFBFBD>\<EFBFBD>'),
|
||
(52129,'Win','x64','WoW',_binary '݄/*qb\<5C><><EFBFBD>[<5B>2V<06>'),
|
||
(52148,'Win','x64','WoW',_binary '<27><><EFBFBD>\<5C>\<5C>\<5C>\<5C><>LT\<5C>\<5C>\0\<5C>$'),
|
||
(52188,'Win','x64','WoW',_binary '<27>}<7D><>><3E><>]\<5C>^2<><32><EFBFBD>\<5C>'),
|
||
(52301,'Win','x64','WoW',_binary '<27>\Z<><5A>#{@<0B>\<5C>Ip%9<>'),
|
||
(52393,'Win','x64','WoW',_binary '<27>\<5C>#<23>\<5C>Q<EFBFBD><51>EYM<59><4D>\r'),
|
||
(52485,'Win','x64','WoW',_binary 'Xδe0<>H<EFBFBD>X\<5C>0\<5C>DA'),
|
||
(52545,'Win','x64','WoW',_binary '<27>R<17><>U<EFBFBD>n\<5C><><EFBFBD>\\\<5C><>'),
|
||
(52607,'Win','x64','WoW',_binary '<27>\0.J<>\<5C>\<5C><><08>1<>`'),
|
||
(52649,'Win','x64','WoW',_binary 'зy<D0B7>\<5C>\<5C><>\<5C>Z<EFBFBD>\<5C>?ȧ['),
|
||
(52808,'Win','x64','WoW',_binary 'bvq+l<>\<5C>!\<5C>]<5D>\<5C>/\<5C>p\<5C>'),
|
||
(52902,'Win','x64','WoW',_binary '\<5C>\<5C><>L\<5C>V(S<>8z2j\<5C>'),
|
||
(52968,'Win','x64','WoW',_binary '-$\<5C>@\<5C>MO<1B>[<5B> \<5C>'),
|
||
(52983,'Win','x64','WoW',_binary '<27>孥<EFBFBD>\<5C>l<EFBFBD><6C>\<5C>ئ<EFBFBD>3$<24>'),
|
||
(53007,'Win','x64','WoW',_binary '<27>\Z<>M8V<>G<1D>BX<42>\<5C>\<5C>'),
|
||
(53040,'Win','x64','WoW',_binary '/<12><>{0{p۽u\<5C>B\<5C>\<5C>'),
|
||
(53104,'Win','x64','WoW',_binary '\<5C>מ\<5C>\<5C>KSlj1<C789><31>ʴ'),
|
||
(53162,'Win','x64','WoW',_binary '<27>gQ<1F><><EFBFBD>\<5C>\<5C><>0\<5C>\<5C>#7j'),
|
||
(53212,'Win','x64','WoW',_binary 'v<1E>/<EFBFBD>c<EFBFBD>d<EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>I'),
|
||
(53262,'Win','x64','WoW',_binary 'aJr\<5C>1&4<>I\'\<5C>S<>+z'),
|
||
(53441,'Win','x64','WoW',_binary '<27>\<5C>}\<5C>}_u\<5C>\<5C>ɝ|<7C>'),
|
||
(53584,'Win','x64','WoW',_binary '\<5C>ש6Y<36>4`<60><>\<5C>J\<5C>UT'),
|
||
(53840,'Win','x64','WoW',_binary '<27><>\<5C>E\<5C>\r\<5C>\<5C>_<EFBFBD>>U<>\<5C>d<EFBFBD>'),
|
||
(53877,'Win','x64','WoW',_binary '2<0F><>8F<38>\'n&\<5C>J\<5C>'),
|
||
(53913,'Win','x64','WoW',_binary 'GV<47>h!<21>\<5C>\<5C>gD\<5C>OuQ<75>'),
|
||
(53989,'Win','x64','WoW',_binary ':됬<>ወ<EFBFBD>!\<5C>-Q<>W'),
|
||
(54070,'Win','x64','WoW',_binary '<27><><EFBFBD>d<EFBFBD>XrP\<5C>x<EFBFBD><78>`!<21>i'),
|
||
(54205,'Win','x64','WoW',_binary 'X<>Y\<5C>?\rmw\<5C>]<5D>\<5C><>\<5C>'),
|
||
(54358,'Win','x64','WoW',_binary '<27>\<5C>3\<5C>f\<5C>E<EFBFBD><45>d@LԌʉ'),
|
||
(54499,'Win','x64','WoW',_binary 'j<>\<5C>\<5C>Ð\<5C><>ۓ;\<5C>3&'),
|
||
(54577,'Win','x64','WoW',_binary '˻<><CBBB><EFBFBD>\<5C>R\<5C>\<5C><><EFBFBD><EFBFBD><EFBFBD>\<5C><>c'),
|
||
(54601,'Win','x64','WoW',_binary '<27><>f\<5C>}<7D><>\"s\<5C>[9)bsu'),
|
||
(54604,'Win','x64','WoW',_binary '<27><>L\<5C>5\<5C><>Mc<7F><63><EFBFBD>\"C'),
|
||
(54630,'Win','x64','WoW',_binary '\<5C>y5Q<0B><>Y6<\<5C><>0'),
|
||
(54673,'Win','x64','WoW',_binary '<27><><EFBFBD><EFBFBD><EFBFBD>a(I<><49>\"<22><>Z\0M'),
|
||
(54717,'Win','x64','WoW',_binary '<27>+<2B><15><>kV<6B>\<5C>4\<5C>\Z'),
|
||
(54736,'Win','x64','WoW',_binary '<27>X\<5C>9\<5C>$<24><><EFBFBD><EFBFBD><EFBFBD>\'\<5C>/'),
|
||
(54762,'Win','x64','WoW',_binary '_\<5C>V\00%TE<54>Ej(l<>'),
|
||
(54847,'Win','x64','WoW',_binary '2<><32>51`\<5C>Q\<5C>6\\<5C>\<5C>\<5C><>'),
|
||
(54904,'Win','x64','WoW',_binary ' \<5C>\<5C><\r\<5C>(<28><><EFBFBD>ٸy<D9B8>\<5C>'),
|
||
(54988,'Win','x64','WoW',_binary '<27>\'<27>U2&<26>w<><77>\<5C>\<5C>s'),
|
||
(55142,'Win','x64','WoW',_binary ')<29><><EFBFBD><EFBFBD>g\<5C>=*<EFBFBD><EFBFBD>\<5C>zAS'),
|
||
(55165,'Win','x64','WoW',_binary '&\<5C>\<5C><>4<><34>r=ʼ<>Ko\<5C>'),
|
||
(55261,'Win','x64','WoW',_binary '<27>\<5C>S<EFBFBD>\<5C><1F>I\'K<>z<>z\<5C>'),
|
||
(55461,'Win','x64','WoW',_binary '\<5C>R&t<>T\<5C>\<5C>\<5C>l<EFBFBD><6C>\<5C>TP<54>'),
|
||
(55664,'Win','x64','WoW',_binary '\<5C>\<5C>XHo<48><6F><EFBFBD>T\<5C>(z0G\<5C>#'),
|
||
(55666,'Win','x64','WoW',_binary '\<5C>娎M6<15>Rȹ\<5C>na|'),
|
||
(55792,'Win','x64','WoW',_binary '\<5C>\<5C>ͪD<CDAA>T<EFBFBD>\<5C><>\<5C><><EFBFBD>}!G'),
|
||
(55793,'Win','x64','WoW',_binary '<27>\<5C>22<32>8\<5C><02>hջd<19>'),
|
||
(55818,'Win','x64','WoW',_binary '<27>:<3A>TbH\<5C>\<5C>ٰj,$'),
|
||
(55824,'Win','x64','WoW',_binary '<27>o&<26>(<28>z<1E>x<EFBFBD><78><1B>'),
|
||
(55846,'Win','x64','WoW',_binary '<27>^\<5C>pXr\<5C>&<26>K<EFBFBD><4B>\<5C><><EFBFBD>'),
|
||
(55933,'Win','x64','WoW',_binary '\<5C>MB\<5C>5@\r\<5C>!|\<5C><>'),
|
||
(55939,'Win','x64','WoW',_binary '<27>R<EFBFBD>L\<5C>\<5C>\<5C>N&`<60>ܭ\<5C>'),
|
||
(55959,'Win','x64','WoW',_binary '\<5C>W\<5C>S<EFBFBD>\<5C>Ι<EFBFBD>q<EFBFBD>4<EFBFBD>1H<31>'),
|
||
(55960,'Win','x64','WoW',_binary '<07>l<>{7\<5C><1B>0<EFBFBD>l<19>'),
|
||
(56008,'Win','x64','WoW',_binary '\0<>ֿ<EFBFBD>̺z<CCBA>q\<5C>\<5C>n<EFBFBD>'),
|
||
(56110,'Win','x64','WoW',_binary '<27>\<5C>\"<22>/<EFBFBD>7\<5C>< \<5C>:'),
|
||
(56162,'Win','x64','WoW',_binary 'o\\<5C><>Cfe<66>M<EFBFBD>|\<5C>6N<>'),
|
||
(56196,'Mac','A64','WoW',_binary 'w<>j]\<5C><>N\<5C><>oe;0<\<5C>'),
|
||
(56196,'Win','x64','WoW',_binary '<27><>\'K<>G<><47>ȱ<EFBFBD>k\<5C><>'),
|
||
(56263,'Win','x64','WoW',_binary '\<5C><>rɒ6\<5C>a{\<5C><18>$MV'),
|
||
(56288,'Mac','A64','WoW',_binary 'Aqy>\<5C>!r<14>n<EFBFBD><6E>m?'),
|
||
(56288,'Win','x64','WoW',_binary 'TN5\<5C>H 8\<5C><>#<23>:&<26>\<5C>'),
|
||
(56311,'Mac','A64','WoW',_binary 'A-2\0qZ<71>\<5C>\"\<5C>\Z<>'),
|
||
(56311,'Win','x64','WoW',_binary '<27>dWZ\<5C>M2s_<73>\<5C>\<5C>r&<26>'),
|
||
(56313,'Mac','A64','WoW',_binary '<27>>ў\<5C>Y<EFBFBD><59>\<5C>2-I<>\<5C><>'),
|
||
(56313,'Win','x64','WoW',_binary '\<5C>\<5C>i\0<><30>ӱ<EFBFBD>\<5C>\<5C>DK'),
|
||
(56380,'Win','x64','WoW',_binary 'ЁxD<78>#>(i<>?\<5C>\<5C><><EFBFBD>'),
|
||
(56380,'Win','x64','WoWC',_binary 'O<>\<5C>-<2D>\<5C><>\<5C>N<02><><EFBFBD>\<5C>'),
|
||
(56382,'Win','x64','WoW',_binary 'g\<5C>j>\<5C>USLX<4C>P<EFBFBD>!<21><>\<5C>'),
|
||
(56382,'Win','x64','WoWC',_binary '<27><>z3<03>X\<5C>E\<5C>\\~<7E>\<5C>\"'),
|
||
(56421,'Mac','A64','WoW',_binary 'X<><58><EFBFBD><EFBFBD><EFBFBD>\<5C>\<5C><0C><><EFBFBD>]/<EFBFBD>'),
|
||
(56421,'Win','x64','WoW',_binary ';ߩ<>Kp,<2C><>\<5C><<3C>\<5C>U'),
|
||
(56421,'Win','x64','WoWC',_binary '\rۏ<72>8d<\<5C><>XZ:x\<5C>');
|
||
/*!40000 ALTER TABLE `build_auth_key` ENABLE KEYS */;
|
||
UNLOCK TABLES;
|
||
|
||
--
|
||
-- Table structure for table `build_executable_hash`
|
||
--
|
||
|
||
DROP TABLE IF EXISTS `build_executable_hash`;
|
||
/*!40101 SET @saved_cs_client = @@character_set_client */;
|
||
/*!50503 SET character_set_client = utf8mb4 */;
|
||
CREATE TABLE `build_executable_hash` (
|
||
`build` int NOT NULL,
|
||
`platform` char(4) CHARACTER SET ascii COLLATE ascii_bin NOT NULL,
|
||
`executableHash` binary(20) NOT NULL,
|
||
PRIMARY KEY (`build`,`platform`)
|
||
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
|
||
/*!40101 SET character_set_client = @saved_cs_client */;
|
||
|
||
--
|
||
-- Dumping data for table `build_executable_hash`
|
||
--
|
||
|
||
LOCK TABLES `build_executable_hash` WRITE;
|
||
/*!40000 ALTER TABLE `build_executable_hash` DISABLE KEYS */;
|
||
INSERT INTO `build_executable_hash` VALUES
|
||
(5875,'OSX',_binary '<27><Á<>\<5C><>\<5C>6\<5C>\<5C>g[<1B>\<5C>'),
|
||
(5875,'Win',_binary '<27>\<5C><>|x#<23>c\<5C>ݫV<DDAB><56>\<5C>\<5C>s<EFBFBD>\<5C> '),
|
||
(8606,'OSX',_binary 'ذ\<5C><>SK<53><19>\<5C>\<5C><>\<5C>\<5C>\<5C><>O'),
|
||
(8606,'Win',_binary '1<><31><EFBFBD>\<5C>U<EFBFBD><55><EFBFBD><EFBFBD>e<EFBFBD>\<5C>V%_Eo<45>'),
|
||
(12340,'OSX',_binary '<27>\<5C>?\<5C>\<5C><01>9r<39>a\<5C><><EFBFBD>\<5C><><EFBFBD><EFBFBD>4'),
|
||
(12340,'Win',_binary '\<5C>˽Q<CBBD>1^kMD<>I-<2D><>\<5C>V<EFBFBD>G');
|
||
/*!40000 ALTER TABLE `build_executable_hash` ENABLE KEYS */;
|
||
UNLOCK TABLES;
|
||
|
||
--
|
||
-- Table structure for table `build_info`
|
||
--
|
||
|
||
DROP TABLE IF EXISTS `build_info`;
|
||
/*!40101 SET @saved_cs_client = @@character_set_client */;
|
||
/*!50503 SET character_set_client = utf8mb4 */;
|
||
CREATE TABLE `build_info` (
|
||
`build` int NOT NULL,
|
||
`majorVersion` int DEFAULT NULL,
|
||
`minorVersion` int DEFAULT NULL,
|
||
`bugfixVersion` int DEFAULT NULL,
|
||
`hotfixVersion` char(3) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
|
||
PRIMARY KEY (`build`)
|
||
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
|
||
/*!40101 SET character_set_client = @saved_cs_client */;
|
||
|
||
--
|
||
-- Dumping data for table `build_info`
|
||
--
|
||
|
||
LOCK TABLES `build_info` WRITE;
|
||
/*!40000 ALTER TABLE `build_info` DISABLE KEYS */;
|
||
INSERT INTO `build_info` VALUES
|
||
(5875,1,12,1,NULL),
|
||
(6005,1,12,2,NULL),
|
||
(6141,1,12,3,NULL),
|
||
(8606,2,4,3,NULL),
|
||
(9947,3,1,3,NULL),
|
||
(10505,3,2,2,'a'),
|
||
(11159,3,3,0,'a'),
|
||
(11403,3,3,2,NULL),
|
||
(11723,3,3,3,'a'),
|
||
(12340,3,3,5,'a'),
|
||
(13623,4,0,6,'a'),
|
||
(13930,3,3,5,'a'),
|
||
(14545,4,2,2,NULL),
|
||
(15595,4,3,4,NULL),
|
||
(19116,6,0,3,NULL),
|
||
(19243,6,0,3,NULL),
|
||
(19342,6,0,3,NULL),
|
||
(19702,6,1,0,NULL),
|
||
(19802,6,1,2,NULL),
|
||
(19831,6,1,2,NULL),
|
||
(19865,6,1,2,NULL),
|
||
(20182,6,2,0,'a'),
|
||
(20201,6,2,0,NULL),
|
||
(20216,6,2,0,NULL),
|
||
(20253,6,2,0,NULL),
|
||
(20338,6,2,0,NULL),
|
||
(20444,6,2,2,NULL),
|
||
(20490,6,2,2,'a'),
|
||
(20574,6,2,2,'a'),
|
||
(20726,6,2,3,NULL),
|
||
(20779,6,2,3,NULL),
|
||
(20886,6,2,3,NULL),
|
||
(21355,6,2,4,NULL),
|
||
(21463,6,2,4,NULL),
|
||
(21742,6,2,4,NULL),
|
||
(22248,7,0,3,NULL),
|
||
(22293,7,0,3,NULL),
|
||
(22345,7,0,3,NULL),
|
||
(22410,7,0,3,NULL),
|
||
(22423,7,0,3,NULL),
|
||
(22498,7,0,3,NULL),
|
||
(22522,7,0,3,NULL),
|
||
(22566,7,0,3,NULL),
|
||
(22594,7,0,3,NULL),
|
||
(22624,7,0,3,NULL),
|
||
(22747,7,0,3,NULL),
|
||
(22810,7,0,3,NULL),
|
||
(22900,7,1,0,NULL),
|
||
(22908,7,1,0,NULL),
|
||
(22950,7,1,0,NULL),
|
||
(22995,7,1,0,NULL),
|
||
(22996,7,1,0,NULL),
|
||
(23171,7,1,0,NULL),
|
||
(23222,7,1,0,NULL),
|
||
(23360,7,1,5,NULL),
|
||
(23420,7,1,5,NULL),
|
||
(23911,7,2,0,NULL),
|
||
(23937,7,2,0,NULL),
|
||
(24015,7,2,0,NULL),
|
||
(24330,7,2,5,NULL),
|
||
(24367,7,2,5,NULL),
|
||
(24415,7,2,5,NULL),
|
||
(24430,7,2,5,NULL),
|
||
(24461,7,2,5,NULL),
|
||
(24742,7,2,5,NULL),
|
||
(25549,7,3,2,NULL),
|
||
(25996,7,3,5,NULL),
|
||
(26124,7,3,5,NULL),
|
||
(26365,7,3,5,NULL),
|
||
(26654,7,3,5,NULL),
|
||
(26822,7,3,5,NULL),
|
||
(26899,7,3,5,NULL),
|
||
(26972,7,3,5,NULL),
|
||
(28153,8,0,1,NULL),
|
||
(30706,8,1,5,NULL),
|
||
(30993,8,2,0,NULL),
|
||
(31229,8,2,0,NULL),
|
||
(31429,8,2,0,NULL),
|
||
(31478,8,2,0,NULL),
|
||
(32305,8,2,5,NULL),
|
||
(32494,8,2,5,NULL),
|
||
(32580,8,2,5,NULL),
|
||
(32638,8,2,5,NULL),
|
||
(32722,8,2,5,NULL),
|
||
(32750,8,2,5,NULL),
|
||
(32978,8,2,5,NULL),
|
||
(33369,8,3,0,NULL),
|
||
(33528,8,3,0,NULL),
|
||
(33724,8,3,0,NULL),
|
||
(33775,8,3,0,NULL),
|
||
(33941,8,3,0,NULL),
|
||
(34220,8,3,0,NULL),
|
||
(34601,8,3,0,NULL),
|
||
(34769,8,3,0,NULL),
|
||
(34963,8,3,0,NULL),
|
||
(35249,8,3,7,NULL),
|
||
(35284,8,3,7,NULL),
|
||
(35435,8,3,7,NULL),
|
||
(35662,8,3,7,NULL),
|
||
(36753,9,0,2,NULL),
|
||
(36839,9,0,2,NULL),
|
||
(36949,9,0,2,NULL),
|
||
(37142,9,0,2,NULL),
|
||
(37176,9,0,2,NULL),
|
||
(37474,9,0,2,NULL),
|
||
(38134,9,0,5,NULL),
|
||
(38556,9,0,5,NULL),
|
||
(39653,9,1,0,NULL),
|
||
(39804,9,1,0,NULL),
|
||
(40000,9,1,0,NULL),
|
||
(40120,9,1,0,NULL),
|
||
(40443,9,1,0,NULL),
|
||
(40593,9,1,0,NULL),
|
||
(40725,9,1,0,NULL),
|
||
(40906,9,1,5,NULL),
|
||
(40944,9,1,5,NULL),
|
||
(40966,9,1,5,NULL),
|
||
(41031,9,1,5,NULL),
|
||
(41079,9,1,5,NULL),
|
||
(41288,9,1,5,NULL),
|
||
(41323,9,1,5,NULL),
|
||
(41359,9,1,5,NULL),
|
||
(41488,9,1,5,NULL),
|
||
(41793,9,1,5,NULL),
|
||
(42010,9,1,5,NULL),
|
||
(42423,9,2,0,NULL),
|
||
(42488,9,2,0,NULL),
|
||
(42521,9,2,0,NULL),
|
||
(42538,9,2,0,NULL),
|
||
(42560,9,2,0,NULL),
|
||
(42614,9,2,0,NULL),
|
||
(42698,9,2,0,NULL),
|
||
(42825,9,2,0,NULL),
|
||
(42852,9,2,0,NULL),
|
||
(42937,9,2,0,NULL),
|
||
(42979,9,2,0,NULL),
|
||
(43114,9,2,0,NULL),
|
||
(43206,9,2,0,NULL),
|
||
(43340,9,2,0,NULL),
|
||
(43345,9,2,0,NULL),
|
||
(43971,9,2,5,NULL),
|
||
(44015,9,2,5,NULL),
|
||
(44061,9,2,5,NULL),
|
||
(44127,9,2,5,NULL),
|
||
(44232,9,2,5,NULL),
|
||
(44325,9,2,5,NULL),
|
||
(44730,9,2,5,NULL),
|
||
(44908,9,2,5,NULL),
|
||
(45114,9,2,7,NULL),
|
||
(45161,9,2,7,NULL),
|
||
(45338,9,2,7,NULL),
|
||
(45745,9,2,7,NULL),
|
||
(46479,10,0,2,NULL),
|
||
(46658,10,0,2,NULL),
|
||
(46689,10,0,2,NULL),
|
||
(46702,10,0,2,NULL),
|
||
(46741,10,0,2,NULL),
|
||
(46801,10,0,2,NULL),
|
||
(46879,10,0,2,NULL),
|
||
(46924,10,0,2,NULL),
|
||
(47067,10,0,2,NULL),
|
||
(47187,10,0,2,NULL),
|
||
(47213,10,0,2,NULL),
|
||
(47631,10,0,2,NULL),
|
||
(47777,10,0,5,NULL),
|
||
(47799,10,0,5,NULL),
|
||
(47825,10,0,5,NULL),
|
||
(47849,10,0,5,NULL),
|
||
(47871,10,0,5,NULL),
|
||
(47884,10,0,5,NULL),
|
||
(47936,10,0,5,NULL),
|
||
(47967,10,0,5,NULL),
|
||
(48001,10,0,5,NULL),
|
||
(48069,10,0,5,NULL),
|
||
(48317,10,0,5,NULL),
|
||
(48397,10,0,5,NULL),
|
||
(48526,10,0,5,NULL),
|
||
(48676,10,0,7,NULL),
|
||
(48749,10,0,7,NULL),
|
||
(48838,10,0,7,NULL),
|
||
(48865,10,0,7,NULL),
|
||
(48892,10,0,7,NULL),
|
||
(48966,10,0,7,NULL),
|
||
(48999,10,0,7,NULL),
|
||
(49267,10,0,7,NULL),
|
||
(49318,10,1,0,NULL),
|
||
(49343,10,0,7,NULL),
|
||
(49407,10,1,0,NULL),
|
||
(49426,10,1,0,NULL),
|
||
(49444,10,1,0,NULL),
|
||
(49474,10,1,0,NULL),
|
||
(49570,10,1,0,NULL),
|
||
(49679,10,1,0,NULL),
|
||
(49741,10,1,0,NULL),
|
||
(49801,10,1,0,NULL),
|
||
(49890,10,1,0,NULL),
|
||
(50000,10,1,0,NULL),
|
||
(50401,10,1,5,NULL),
|
||
(50438,10,1,5,NULL),
|
||
(50467,10,1,5,NULL),
|
||
(50469,10,1,5,NULL),
|
||
(50504,10,1,5,NULL),
|
||
(50585,10,1,5,NULL),
|
||
(50622,10,1,5,NULL),
|
||
(50747,10,1,5,NULL),
|
||
(50791,10,1,5,NULL),
|
||
(51130,10,1,5,NULL),
|
||
(51187,10,1,7,NULL),
|
||
(51237,10,1,7,NULL),
|
||
(51261,10,1,7,NULL),
|
||
(51313,10,1,7,NULL),
|
||
(51421,10,1,7,NULL),
|
||
(51485,10,1,7,NULL),
|
||
(51536,10,1,7,NULL),
|
||
(51754,10,1,7,NULL),
|
||
(51886,10,1,7,NULL),
|
||
(51972,10,1,7,NULL),
|
||
(52038,10,2,0,NULL),
|
||
(52068,10,2,0,NULL),
|
||
(52095,10,2,0,NULL),
|
||
(52106,10,2,0,NULL),
|
||
(52129,10,2,0,NULL),
|
||
(52148,10,2,0,NULL),
|
||
(52188,10,2,0,NULL),
|
||
(52301,10,2,0,NULL),
|
||
(52393,10,2,0,NULL),
|
||
(52485,10,2,0,NULL),
|
||
(52545,10,2,0,NULL),
|
||
(52607,10,2,0,NULL),
|
||
(52649,10,2,0,NULL),
|
||
(52808,10,2,0,NULL),
|
||
(52902,10,2,5,NULL),
|
||
(52968,10,2,5,NULL),
|
||
(52983,10,2,5,NULL),
|
||
(53007,10,2,5,NULL),
|
||
(53040,10,2,5,NULL),
|
||
(53104,10,2,5,NULL),
|
||
(53162,10,2,5,NULL),
|
||
(53212,10,2,5,NULL),
|
||
(53262,10,2,5,NULL),
|
||
(53441,10,2,5,NULL),
|
||
(53584,10,2,5,NULL),
|
||
(53840,10,2,6,NULL),
|
||
(53877,10,2,6,NULL),
|
||
(53913,10,2,6,NULL),
|
||
(53989,10,2,6,NULL),
|
||
(54070,10,2,6,NULL),
|
||
(54205,10,2,6,NULL),
|
||
(54358,10,2,6,NULL),
|
||
(54499,10,2,6,NULL),
|
||
(54577,10,2,7,NULL),
|
||
(54601,10,2,7,NULL),
|
||
(54604,10,2,7,NULL),
|
||
(54630,10,2,7,NULL),
|
||
(54673,10,2,7,NULL),
|
||
(54717,10,2,7,NULL),
|
||
(54736,10,2,7,NULL),
|
||
(54762,10,2,7,NULL),
|
||
(54847,10,2,7,NULL),
|
||
(54904,10,2,7,NULL),
|
||
(54988,10,2,7,NULL),
|
||
(55142,10,2,7,NULL),
|
||
(55165,10,2,7,NULL),
|
||
(55261,10,2,7,NULL),
|
||
(55461,10,2,7,NULL),
|
||
(55664,10,2,7,NULL),
|
||
(55666,11,0,0,NULL),
|
||
(55792,11,0,0,NULL),
|
||
(55793,11,0,0,NULL),
|
||
(55818,11,0,0,NULL),
|
||
(55824,11,0,0,NULL),
|
||
(55846,11,0,0,NULL),
|
||
(55933,11,0,0,NULL),
|
||
(55939,11,0,0,NULL),
|
||
(55959,11,0,2,NULL),
|
||
(55960,11,0,0,NULL),
|
||
(56008,11,0,0,NULL),
|
||
(56110,11,0,2,NULL),
|
||
(56162,11,0,2,NULL),
|
||
(56196,11,0,2,NULL),
|
||
(56263,11,0,2,NULL),
|
||
(56288,11,0,2,NULL),
|
||
(56311,11,0,2,NULL),
|
||
(56313,11,0,2,NULL),
|
||
(56380,11,0,2,NULL),
|
||
(56382,11,0,2,NULL),
|
||
(56421,11,0,2,NULL);
|
||
/*!40000 ALTER TABLE `build_info` ENABLE KEYS */;
|
||
UNLOCK TABLES;
|
||
|
||
--
|
||
-- Table structure for table `ip_banned`
|
||
--
|
||
|
||
DROP TABLE IF EXISTS `ip_banned`;
|
||
/*!40101 SET @saved_cs_client = @@character_set_client */;
|
||
/*!50503 SET character_set_client = utf8mb4 */;
|
||
CREATE TABLE `ip_banned` (
|
||
`ip` varchar(15) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '127.0.0.1',
|
||
`bandate` int unsigned NOT NULL,
|
||
`unbandate` int unsigned NOT NULL,
|
||
`bannedby` varchar(50) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '[Console]',
|
||
`banreason` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'no reason',
|
||
PRIMARY KEY (`ip`,`bandate`)
|
||
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci COMMENT='Banned IPs';
|
||
/*!40101 SET character_set_client = @saved_cs_client */;
|
||
|
||
--
|
||
-- Dumping data for table `ip_banned`
|
||
--
|
||
|
||
LOCK TABLES `ip_banned` WRITE;
|
||
/*!40000 ALTER TABLE `ip_banned` DISABLE KEYS */;
|
||
/*!40000 ALTER TABLE `ip_banned` ENABLE KEYS */;
|
||
UNLOCK TABLES;
|
||
|
||
--
|
||
-- Table structure for table `logs`
|
||
--
|
||
|
||
DROP TABLE IF EXISTS `logs`;
|
||
/*!40101 SET @saved_cs_client = @@character_set_client */;
|
||
/*!50503 SET character_set_client = utf8mb4 */;
|
||
CREATE TABLE `logs` (
|
||
`time` int unsigned NOT NULL,
|
||
`realm` int unsigned NOT NULL,
|
||
`type` varchar(250) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
|
||
`level` tinyint unsigned NOT NULL DEFAULT '0',
|
||
`string` mediumtext CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci
|
||
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
|
||
/*!40101 SET character_set_client = @saved_cs_client */;
|
||
|
||
--
|
||
-- Dumping data for table `logs`
|
||
--
|
||
|
||
LOCK TABLES `logs` WRITE;
|
||
/*!40000 ALTER TABLE `logs` DISABLE KEYS */;
|
||
/*!40000 ALTER TABLE `logs` ENABLE KEYS */;
|
||
UNLOCK TABLES;
|
||
|
||
--
|
||
-- Table structure for table `logs_ip_actions`
|
||
--
|
||
|
||
DROP TABLE IF EXISTS `logs_ip_actions`;
|
||
/*!40101 SET @saved_cs_client = @@character_set_client */;
|
||
/*!50503 SET character_set_client = utf8mb4 */;
|
||
CREATE TABLE `logs_ip_actions` (
|
||
`id` int unsigned NOT NULL AUTO_INCREMENT COMMENT 'Unique Identifier',
|
||
`account_id` int unsigned NOT NULL COMMENT 'Account ID',
|
||
`character_guid` bigint unsigned NOT NULL COMMENT 'Character Guid',
|
||
`realm_id` int unsigned NOT NULL DEFAULT '0' COMMENT 'Realm ID',
|
||
`type` tinyint unsigned NOT NULL,
|
||
`ip` varchar(15) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '127.0.0.1',
|
||
`systemnote` text CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci COMMENT 'Notes inserted by system',
|
||
`unixtime` int unsigned NOT NULL COMMENT 'Unixtime',
|
||
`time` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP COMMENT 'Timestamp',
|
||
`comment` text CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci COMMENT 'Allows users to add a comment',
|
||
PRIMARY KEY (`id`)
|
||
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci COMMENT='Used to log ips of individual actions';
|
||
/*!40101 SET character_set_client = @saved_cs_client */;
|
||
|
||
--
|
||
-- Dumping data for table `logs_ip_actions`
|
||
--
|
||
|
||
LOCK TABLES `logs_ip_actions` WRITE;
|
||
/*!40000 ALTER TABLE `logs_ip_actions` DISABLE KEYS */;
|
||
/*!40000 ALTER TABLE `logs_ip_actions` ENABLE KEYS */;
|
||
UNLOCK TABLES;
|
||
|
||
--
|
||
-- Table structure for table `rbac_account_permissions`
|
||
--
|
||
|
||
DROP TABLE IF EXISTS `rbac_account_permissions`;
|
||
/*!40101 SET @saved_cs_client = @@character_set_client */;
|
||
/*!50503 SET character_set_client = utf8mb4 */;
|
||
CREATE TABLE `rbac_account_permissions` (
|
||
`accountId` int unsigned NOT NULL COMMENT 'Account id',
|
||
`permissionId` int unsigned NOT NULL COMMENT 'Permission id',
|
||
`granted` tinyint(1) NOT NULL DEFAULT '1' COMMENT 'Granted = 1, Denied = 0',
|
||
`realmId` int NOT NULL DEFAULT '-1' COMMENT 'Realm Id, -1 means all',
|
||
PRIMARY KEY (`accountId`,`permissionId`,`realmId`),
|
||
KEY `fk__rbac_account_roles__rbac_permissions` (`permissionId`),
|
||
CONSTRAINT `fk__rbac_account_permissions__account` FOREIGN KEY (`accountId`) REFERENCES `account` (`id`) ON DELETE CASCADE,
|
||
CONSTRAINT `fk__rbac_account_roles__rbac_permissions` FOREIGN KEY (`permissionId`) REFERENCES `rbac_permissions` (`id`) ON DELETE CASCADE
|
||
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci COMMENT='Account-Permission relation';
|
||
/*!40101 SET character_set_client = @saved_cs_client */;
|
||
|
||
--
|
||
-- Dumping data for table `rbac_account_permissions`
|
||
--
|
||
|
||
LOCK TABLES `rbac_account_permissions` WRITE;
|
||
/*!40000 ALTER TABLE `rbac_account_permissions` DISABLE KEYS */;
|
||
/*!40000 ALTER TABLE `rbac_account_permissions` ENABLE KEYS */;
|
||
UNLOCK TABLES;
|
||
|
||
--
|
||
-- Table structure for table `rbac_default_permissions`
|
||
--
|
||
|
||
DROP TABLE IF EXISTS `rbac_default_permissions`;
|
||
/*!40101 SET @saved_cs_client = @@character_set_client */;
|
||
/*!50503 SET character_set_client = utf8mb4 */;
|
||
CREATE TABLE `rbac_default_permissions` (
|
||
`secId` int unsigned NOT NULL COMMENT 'Security Level id',
|
||
`permissionId` int unsigned NOT NULL COMMENT 'permission id',
|
||
`realmId` int NOT NULL DEFAULT '-1' COMMENT 'Realm Id, -1 means all',
|
||
PRIMARY KEY (`secId`,`permissionId`,`realmId`),
|
||
KEY `fk__rbac_default_permissions__rbac_permissions` (`permissionId`),
|
||
CONSTRAINT `fk__rbac_default_permissions__rbac_permissions` FOREIGN KEY (`permissionId`) REFERENCES `rbac_permissions` (`id`)
|
||
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci COMMENT='Default permission to assign to different account security levels';
|
||
/*!40101 SET character_set_client = @saved_cs_client */;
|
||
|
||
--
|
||
-- Dumping data for table `rbac_default_permissions`
|
||
--
|
||
|
||
LOCK TABLES `rbac_default_permissions` WRITE;
|
||
/*!40000 ALTER TABLE `rbac_default_permissions` DISABLE KEYS */;
|
||
INSERT INTO `rbac_default_permissions` VALUES
|
||
(3,192,-1),
|
||
(2,193,-1),
|
||
(1,194,-1),
|
||
(0,195,-1);
|
||
/*!40000 ALTER TABLE `rbac_default_permissions` ENABLE KEYS */;
|
||
UNLOCK TABLES;
|
||
|
||
--
|
||
-- Table structure for table `rbac_linked_permissions`
|
||
--
|
||
|
||
DROP TABLE IF EXISTS `rbac_linked_permissions`;
|
||
/*!40101 SET @saved_cs_client = @@character_set_client */;
|
||
/*!50503 SET character_set_client = utf8mb4 */;
|
||
CREATE TABLE `rbac_linked_permissions` (
|
||
`id` int unsigned NOT NULL COMMENT 'Permission id',
|
||
`linkedId` int unsigned NOT NULL COMMENT 'Linked Permission id',
|
||
PRIMARY KEY (`id`,`linkedId`),
|
||
KEY `fk__rbac_linked_permissions__rbac_permissions1` (`id`),
|
||
KEY `fk__rbac_linked_permissions__rbac_permissions2` (`linkedId`),
|
||
CONSTRAINT `fk__rbac_linked_permissions__rbac_permissions1` FOREIGN KEY (`id`) REFERENCES `rbac_permissions` (`id`) ON DELETE CASCADE,
|
||
CONSTRAINT `fk__rbac_linked_permissions__rbac_permissions2` FOREIGN KEY (`linkedId`) REFERENCES `rbac_permissions` (`id`) ON DELETE CASCADE
|
||
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci COMMENT='Permission - Linked Permission relation';
|
||
/*!40101 SET character_set_client = @saved_cs_client */;
|
||
|
||
--
|
||
-- Dumping data for table `rbac_linked_permissions`
|
||
--
|
||
|
||
LOCK TABLES `rbac_linked_permissions` WRITE;
|
||
/*!40000 ALTER TABLE `rbac_linked_permissions` DISABLE KEYS */;
|
||
INSERT INTO `rbac_linked_permissions` VALUES
|
||
(192,21),
|
||
(192,42),
|
||
(192,43),
|
||
(192,193),
|
||
(192,196),
|
||
(192,776),
|
||
(192,778),
|
||
(192,779),
|
||
(192,780),
|
||
(192,781),
|
||
(192,782),
|
||
(192,783),
|
||
(192,784),
|
||
(192,785),
|
||
(192,786),
|
||
(192,787),
|
||
(192,788),
|
||
(192,789),
|
||
(192,790),
|
||
(192,791),
|
||
(192,792),
|
||
(192,793),
|
||
(192,794),
|
||
(192,795),
|
||
(192,796),
|
||
(192,835),
|
||
(192,844),
|
||
(192,845),
|
||
(192,846),
|
||
(192,847),
|
||
(192,848),
|
||
(192,849),
|
||
(192,850),
|
||
(192,851),
|
||
(192,853),
|
||
(192,854),
|
||
(193,48),
|
||
(193,194),
|
||
(193,197),
|
||
(194,1),
|
||
(194,2),
|
||
(194,9),
|
||
(194,11),
|
||
(194,12),
|
||
(194,13),
|
||
(194,14),
|
||
(194,15),
|
||
(194,16),
|
||
(194,17),
|
||
(194,18),
|
||
(194,19),
|
||
(194,20),
|
||
(194,22),
|
||
(194,23),
|
||
(194,25),
|
||
(194,26),
|
||
(194,27),
|
||
(194,28),
|
||
(194,29),
|
||
(194,30),
|
||
(194,31),
|
||
(194,32),
|
||
(194,33),
|
||
(194,34),
|
||
(194,35),
|
||
(194,36),
|
||
(194,37),
|
||
(194,38),
|
||
(194,39),
|
||
(194,40),
|
||
(194,41),
|
||
(194,44),
|
||
(194,46),
|
||
(194,47),
|
||
(194,51),
|
||
(194,195),
|
||
(194,198),
|
||
(194,632),
|
||
(194,798),
|
||
(195,3),
|
||
(195,4),
|
||
(195,5),
|
||
(195,6),
|
||
(195,24),
|
||
(195,49),
|
||
(195,199),
|
||
(196,7),
|
||
(196,10),
|
||
(196,202),
|
||
(196,203),
|
||
(196,204),
|
||
(196,205),
|
||
(196,206),
|
||
(196,208),
|
||
(196,212),
|
||
(196,213),
|
||
(196,214),
|
||
(196,215),
|
||
(196,216),
|
||
(196,226),
|
||
(196,227),
|
||
(196,230),
|
||
(196,231),
|
||
(196,233),
|
||
(196,234),
|
||
(196,235),
|
||
(196,238),
|
||
(196,239),
|
||
(196,240),
|
||
(196,241),
|
||
(196,242),
|
||
(196,243),
|
||
(196,244),
|
||
(196,245),
|
||
(196,246),
|
||
(196,247),
|
||
(196,248),
|
||
(196,249),
|
||
(196,250),
|
||
(196,251),
|
||
(196,252),
|
||
(196,253),
|
||
(196,254),
|
||
(196,255),
|
||
(196,256),
|
||
(196,257),
|
||
(196,258),
|
||
(196,259),
|
||
(196,260),
|
||
(196,261),
|
||
(196,262),
|
||
(196,264),
|
||
(196,265),
|
||
(196,266),
|
||
(196,267),
|
||
(196,268),
|
||
(196,269),
|
||
(196,270),
|
||
(196,271),
|
||
(196,272),
|
||
(196,279),
|
||
(196,280),
|
||
(196,283),
|
||
(196,287),
|
||
(196,288),
|
||
(196,289),
|
||
(196,290),
|
||
(196,291),
|
||
(196,292),
|
||
(196,293),
|
||
(196,294),
|
||
(196,295),
|
||
(196,296),
|
||
(196,297),
|
||
(196,298),
|
||
(196,299),
|
||
(196,302),
|
||
(196,303),
|
||
(196,304),
|
||
(196,305),
|
||
(196,306),
|
||
(196,309),
|
||
(196,310),
|
||
(196,314),
|
||
(196,319),
|
||
(196,320),
|
||
(196,321),
|
||
(196,322),
|
||
(196,323),
|
||
(196,324),
|
||
(196,325),
|
||
(196,326),
|
||
(196,327),
|
||
(196,328),
|
||
(196,329),
|
||
(196,330),
|
||
(196,331),
|
||
(196,335),
|
||
(196,336),
|
||
(196,337),
|
||
(196,339),
|
||
(196,340),
|
||
(196,341),
|
||
(196,342),
|
||
(196,343),
|
||
(196,344),
|
||
(196,345),
|
||
(196,346),
|
||
(196,347),
|
||
(196,348),
|
||
(196,349),
|
||
(196,350),
|
||
(196,351),
|
||
(196,352),
|
||
(196,353),
|
||
(196,354),
|
||
(196,355),
|
||
(196,356),
|
||
(196,357),
|
||
(196,358),
|
||
(196,359),
|
||
(196,360),
|
||
(196,361),
|
||
(196,362),
|
||
(196,363),
|
||
(196,364),
|
||
(196,365),
|
||
(196,366),
|
||
(196,373),
|
||
(196,375),
|
||
(196,400),
|
||
(196,401),
|
||
(196,402),
|
||
(196,403),
|
||
(196,404),
|
||
(196,405),
|
||
(196,406),
|
||
(196,407),
|
||
(196,417),
|
||
(196,418),
|
||
(196,419),
|
||
(196,420),
|
||
(196,421),
|
||
(196,422),
|
||
(196,423),
|
||
(196,424),
|
||
(196,425),
|
||
(196,426),
|
||
(196,427),
|
||
(196,428),
|
||
(196,429),
|
||
(196,434),
|
||
(196,435),
|
||
(196,436),
|
||
(196,437),
|
||
(196,438),
|
||
(196,439),
|
||
(196,440),
|
||
(196,441),
|
||
(196,442),
|
||
(196,443),
|
||
(196,444),
|
||
(196,445),
|
||
(196,446),
|
||
(196,447),
|
||
(196,448),
|
||
(196,449),
|
||
(196,450),
|
||
(196,451),
|
||
(196,452),
|
||
(196,453),
|
||
(196,454),
|
||
(196,455),
|
||
(196,456),
|
||
(196,457),
|
||
(196,458),
|
||
(196,459),
|
||
(196,461),
|
||
(196,463),
|
||
(196,464),
|
||
(196,465),
|
||
(196,472),
|
||
(196,473),
|
||
(196,474),
|
||
(196,475),
|
||
(196,476),
|
||
(196,477),
|
||
(196,478),
|
||
(196,488),
|
||
(196,489),
|
||
(196,491),
|
||
(196,492),
|
||
(196,493),
|
||
(196,495),
|
||
(196,497),
|
||
(196,498),
|
||
(196,499),
|
||
(196,500),
|
||
(196,502),
|
||
(196,503),
|
||
(196,505),
|
||
(196,508),
|
||
(196,511),
|
||
(196,513),
|
||
(196,514),
|
||
(196,516),
|
||
(196,519),
|
||
(196,522),
|
||
(196,523),
|
||
(196,526),
|
||
(196,527),
|
||
(196,529),
|
||
(196,530),
|
||
(196,533),
|
||
(196,535),
|
||
(196,536),
|
||
(196,537),
|
||
(196,538),
|
||
(196,539),
|
||
(196,540),
|
||
(196,541),
|
||
(196,556),
|
||
(196,581),
|
||
(196,582),
|
||
(196,592),
|
||
(196,593),
|
||
(196,596),
|
||
(196,602),
|
||
(196,603),
|
||
(196,604),
|
||
(196,605),
|
||
(196,606),
|
||
(196,607),
|
||
(196,608),
|
||
(196,609),
|
||
(196,610),
|
||
(196,611),
|
||
(196,612),
|
||
(196,613),
|
||
(196,615),
|
||
(196,616),
|
||
(196,617),
|
||
(196,618),
|
||
(196,619),
|
||
(196,620),
|
||
(196,621),
|
||
(196,623),
|
||
(196,624),
|
||
(196,625),
|
||
(196,626),
|
||
(196,627),
|
||
(196,628),
|
||
(196,629),
|
||
(196,630),
|
||
(196,631),
|
||
(196,633),
|
||
(196,634),
|
||
(196,635),
|
||
(196,636),
|
||
(196,637),
|
||
(196,638),
|
||
(196,639),
|
||
(196,640),
|
||
(196,641),
|
||
(196,642),
|
||
(196,643),
|
||
(196,644),
|
||
(196,645),
|
||
(196,646),
|
||
(196,647),
|
||
(196,648),
|
||
(196,649),
|
||
(196,650),
|
||
(196,651),
|
||
(196,652),
|
||
(196,653),
|
||
(196,654),
|
||
(196,655),
|
||
(196,656),
|
||
(196,657),
|
||
(196,658),
|
||
(196,659),
|
||
(196,660),
|
||
(196,661),
|
||
(196,663),
|
||
(196,665),
|
||
(196,666),
|
||
(196,667),
|
||
(196,668),
|
||
(196,669),
|
||
(196,670),
|
||
(196,671),
|
||
(196,672),
|
||
(196,673),
|
||
(196,674),
|
||
(196,675),
|
||
(196,676),
|
||
(196,677),
|
||
(196,678),
|
||
(196,679),
|
||
(196,680),
|
||
(196,681),
|
||
(196,682),
|
||
(196,683),
|
||
(196,684),
|
||
(196,685),
|
||
(196,686),
|
||
(196,687),
|
||
(196,688),
|
||
(196,689),
|
||
(196,690),
|
||
(196,691),
|
||
(196,693),
|
||
(196,694),
|
||
(196,695),
|
||
(196,696),
|
||
(196,697),
|
||
(196,698),
|
||
(196,699),
|
||
(196,700),
|
||
(196,701),
|
||
(196,702),
|
||
(196,703),
|
||
(196,704),
|
||
(196,707),
|
||
(196,708),
|
||
(196,709),
|
||
(196,710),
|
||
(196,711),
|
||
(196,712),
|
||
(196,713),
|
||
(196,714),
|
||
(196,715),
|
||
(196,716),
|
||
(196,717),
|
||
(196,718),
|
||
(196,719),
|
||
(196,721),
|
||
(196,722),
|
||
(196,723),
|
||
(196,724),
|
||
(196,725),
|
||
(196,726),
|
||
(196,727),
|
||
(196,728),
|
||
(196,729),
|
||
(196,730),
|
||
(196,733),
|
||
(196,734),
|
||
(196,735),
|
||
(196,736),
|
||
(196,738),
|
||
(196,739),
|
||
(196,753),
|
||
(196,757),
|
||
(196,773),
|
||
(196,777),
|
||
(196,809),
|
||
(196,817),
|
||
(196,825),
|
||
(196,829),
|
||
(196,830),
|
||
(196,831),
|
||
(196,832),
|
||
(196,833),
|
||
(196,836),
|
||
(196,837),
|
||
(196,838),
|
||
(196,839),
|
||
(196,840),
|
||
(196,842),
|
||
(196,843),
|
||
(196,852),
|
||
(196,866),
|
||
(196,869),
|
||
(196,870),
|
||
(196,871),
|
||
(196,872),
|
||
(196,873),
|
||
(196,875),
|
||
(196,876),
|
||
(196,877),
|
||
(196,878),
|
||
(196,879),
|
||
(196,881),
|
||
(196,882),
|
||
(196,883),
|
||
(197,232),
|
||
(197,236),
|
||
(197,237),
|
||
(197,273),
|
||
(197,274),
|
||
(197,275),
|
||
(197,276),
|
||
(197,277),
|
||
(197,284),
|
||
(197,285),
|
||
(197,286),
|
||
(197,301),
|
||
(197,311),
|
||
(197,387),
|
||
(197,388),
|
||
(197,389),
|
||
(197,390),
|
||
(197,391),
|
||
(197,392),
|
||
(197,393),
|
||
(197,394),
|
||
(197,395),
|
||
(197,396),
|
||
(197,397),
|
||
(197,398),
|
||
(197,399),
|
||
(197,479),
|
||
(197,480),
|
||
(197,481),
|
||
(197,482),
|
||
(197,485),
|
||
(197,486),
|
||
(197,487),
|
||
(197,494),
|
||
(197,501),
|
||
(197,506),
|
||
(197,509),
|
||
(197,510),
|
||
(197,517),
|
||
(197,518),
|
||
(197,521),
|
||
(197,542),
|
||
(197,543),
|
||
(197,550),
|
||
(197,558),
|
||
(197,568),
|
||
(197,571),
|
||
(197,572),
|
||
(197,573),
|
||
(197,574),
|
||
(197,575),
|
||
(197,576),
|
||
(197,577),
|
||
(197,578),
|
||
(197,579),
|
||
(197,580),
|
||
(197,583),
|
||
(197,584),
|
||
(197,585),
|
||
(197,586),
|
||
(197,587),
|
||
(197,588),
|
||
(197,589),
|
||
(197,590),
|
||
(197,591),
|
||
(197,594),
|
||
(197,595),
|
||
(197,601),
|
||
(197,761),
|
||
(197,762),
|
||
(197,763),
|
||
(197,764),
|
||
(197,765),
|
||
(197,766),
|
||
(197,767),
|
||
(197,768),
|
||
(197,769),
|
||
(197,770),
|
||
(197,771),
|
||
(197,772),
|
||
(197,774),
|
||
(197,775),
|
||
(197,805),
|
||
(197,811),
|
||
(197,813),
|
||
(197,819),
|
||
(197,821),
|
||
(197,827),
|
||
(197,856),
|
||
(197,857),
|
||
(197,858),
|
||
(197,859),
|
||
(197,860),
|
||
(197,865),
|
||
(198,218),
|
||
(198,300),
|
||
(198,312),
|
||
(198,315),
|
||
(198,316),
|
||
(198,317),
|
||
(198,318),
|
||
(198,367),
|
||
(198,368),
|
||
(198,369),
|
||
(198,370),
|
||
(198,371),
|
||
(198,372),
|
||
(198,374),
|
||
(198,376),
|
||
(198,377),
|
||
(198,408),
|
||
(198,409),
|
||
(198,410),
|
||
(198,411),
|
||
(198,412),
|
||
(198,413),
|
||
(198,414),
|
||
(198,415),
|
||
(198,430),
|
||
(198,431),
|
||
(198,432),
|
||
(198,433),
|
||
(198,462),
|
||
(198,466),
|
||
(198,467),
|
||
(198,468),
|
||
(198,469),
|
||
(198,470),
|
||
(198,471),
|
||
(198,483),
|
||
(198,484),
|
||
(198,490),
|
||
(198,504),
|
||
(198,512),
|
||
(198,515),
|
||
(198,520),
|
||
(198,524),
|
||
(198,528),
|
||
(198,531),
|
||
(198,532),
|
||
(198,544),
|
||
(198,545),
|
||
(198,547),
|
||
(198,548),
|
||
(198,549),
|
||
(198,551),
|
||
(198,552),
|
||
(198,553),
|
||
(198,554),
|
||
(198,555),
|
||
(198,557),
|
||
(198,559),
|
||
(198,560),
|
||
(198,561),
|
||
(198,562),
|
||
(198,563),
|
||
(198,564),
|
||
(198,565),
|
||
(198,566),
|
||
(198,567),
|
||
(198,569),
|
||
(198,570),
|
||
(198,597),
|
||
(198,598),
|
||
(198,599),
|
||
(198,600),
|
||
(198,737),
|
||
(198,740),
|
||
(198,741),
|
||
(198,742),
|
||
(198,802),
|
||
(198,803),
|
||
(198,804),
|
||
(198,806),
|
||
(198,807),
|
||
(198,808),
|
||
(198,810),
|
||
(198,812),
|
||
(198,814),
|
||
(198,815),
|
||
(198,816),
|
||
(198,818),
|
||
(198,820),
|
||
(198,822),
|
||
(198,823),
|
||
(198,824),
|
||
(198,826),
|
||
(198,828),
|
||
(198,855),
|
||
(198,868),
|
||
(199,207),
|
||
(199,209),
|
||
(199,210),
|
||
(199,211),
|
||
(199,217),
|
||
(199,221),
|
||
(199,222),
|
||
(199,223),
|
||
(199,225),
|
||
(199,263),
|
||
(199,378),
|
||
(199,379),
|
||
(199,380),
|
||
(199,496),
|
||
(199,507),
|
||
(199,525),
|
||
(199,534),
|
||
(199,797);
|
||
/*!40000 ALTER TABLE `rbac_linked_permissions` ENABLE KEYS */;
|
||
UNLOCK TABLES;
|
||
|
||
--
|
||
-- Table structure for table `rbac_permissions`
|
||
--
|
||
|
||
DROP TABLE IF EXISTS `rbac_permissions`;
|
||
/*!40101 SET @saved_cs_client = @@character_set_client */;
|
||
/*!50503 SET character_set_client = utf8mb4 */;
|
||
CREATE TABLE `rbac_permissions` (
|
||
`id` int unsigned NOT NULL DEFAULT '0' COMMENT 'Permission id',
|
||
`name` varchar(100) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL COMMENT 'Permission name',
|
||
PRIMARY KEY (`id`)
|
||
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci COMMENT='Permission List';
|
||
/*!40101 SET character_set_client = @saved_cs_client */;
|
||
|
||
--
|
||
-- Dumping data for table `rbac_permissions`
|
||
--
|
||
|
||
LOCK TABLES `rbac_permissions` WRITE;
|
||
/*!40000 ALTER TABLE `rbac_permissions` DISABLE KEYS */;
|
||
INSERT INTO `rbac_permissions` VALUES
|
||
(1,'Instant logout'),
|
||
(2,'Skip Queue'),
|
||
(3,'Join Normal Battleground'),
|
||
(4,'Join Random Battleground'),
|
||
(5,'Join Arenas'),
|
||
(6,'Join Dungeon Finder'),
|
||
(7,'Skip idle connection check'),
|
||
(8,'Cannot earn achievements'),
|
||
(9,'Cannot earn realm first achievements'),
|
||
(10,'Use character templates'),
|
||
(11,'Log GM trades'),
|
||
(12,'Skip character creation demon hunter min level check'),
|
||
(13,'Skip Instance required bosses check'),
|
||
(14,'Skip character creation team mask check'),
|
||
(15,'Skip character creation class mask check'),
|
||
(16,'Skip character creation race mask check'),
|
||
(17,'Skip character creation reserved name check'),
|
||
(18,'Skip character creation death knight min level check'),
|
||
(19,'Skip needed requirements to use channel check'),
|
||
(20,'Skip disable map check'),
|
||
(21,'Skip reset talents when used more than allowed check'),
|
||
(22,'Skip spam chat check'),
|
||
(23,'Skip over-speed ping check'),
|
||
(24,'Two side faction characters on the same account'),
|
||
(25,'Allow say chat between factions'),
|
||
(26,'Allow channel chat between factions'),
|
||
(27,'Two side mail interaction'),
|
||
(28,'See two side who list'),
|
||
(29,'Add friends of other faction'),
|
||
(30,'Save character without delay with .save command'),
|
||
(31,'Use params with .unstuck command'),
|
||
(32,'Can be assigned tickets with .assign ticket command'),
|
||
(33,'Notify if a command was not found'),
|
||
(34,'Check if should appear in list using .gm ingame command'),
|
||
(35,'See all security levels with who command'),
|
||
(36,'Filter whispers'),
|
||
(37,'Use staff badge in chat'),
|
||
(38,'Resurrect with full Health Points'),
|
||
(39,'Restore saved gm setting states'),
|
||
(40,'Allows to add a gm to friend list'),
|
||
(41,'Use Config option START_GM_LEVEL to assign new character level'),
|
||
(42,'Allows to use CMSG_WORLD_TELEPORT opcode'),
|
||
(43,'Allows to use CMSG_WHOIS opcode'),
|
||
(44,'Receive global GM messages/texts'),
|
||
(45,'Join channels without announce'),
|
||
(46,'Change channel settings without being channel moderator'),
|
||
(47,'Enables lower security than target check'),
|
||
(48,'Enable IP, Last Login and EMail output in pinfo'),
|
||
(49,'Forces to enter the email for confirmation on password change'),
|
||
(50,'Allow user to check his own email with .account'),
|
||
(51,'Allow trading between factions'),
|
||
(192,'Role: Sec Level Administrator'),
|
||
(193,'Role: Sec Level Gamemaster'),
|
||
(194,'Role: Sec Level Moderator'),
|
||
(195,'Role: Sec Level Player'),
|
||
(196,'Role: Administrator Commands'),
|
||
(197,'Role: Gamemaster Commands'),
|
||
(198,'Role: Moderator Commands'),
|
||
(199,'Role: Player Commands'),
|
||
(200,'Command: rbac'),
|
||
(201,'Command: rbac account'),
|
||
(202,'Command: rbac account list'),
|
||
(203,'Command: rbac account grant'),
|
||
(204,'Command: rbac account deny'),
|
||
(205,'Command: rbac account revoke'),
|
||
(206,'Command: rbac list'),
|
||
(207,'Command: battlenetaccount'),
|
||
(208,'Command: battlenetaccount create'),
|
||
(209,'Command: battlenetaccount lock country'),
|
||
(210,'Command: battlenetaccount lock ip'),
|
||
(211,'Command: battlenetaccount password'),
|
||
(212,'Command: battlenetaccount set'),
|
||
(213,'Command: battlenetaccount set password'),
|
||
(214,'Command: bnetaccount link'),
|
||
(215,'Command: bnetaccount unlink'),
|
||
(216,'Command: bnetaccount gameaccountcreate'),
|
||
(217,'Command: account'),
|
||
(218,'Command: account addon'),
|
||
(219,'Command: account create'),
|
||
(220,'Command: account delete'),
|
||
(221,'Command: account lock'),
|
||
(222,'Command: account lock country'),
|
||
(223,'Command: account lock ip'),
|
||
(224,'Command: account onlinelist'),
|
||
(225,'Command: account password'),
|
||
(226,'Command: account set'),
|
||
(227,'Command: account set addon'),
|
||
(228,'Command: account set gmlevel'),
|
||
(229,'Command: account set password'),
|
||
(230,'Command: achievement'),
|
||
(231,'Command: achievement add'),
|
||
(232,'Command: arena'),
|
||
(233,'Command: arena captain'),
|
||
(234,'Command: arena create'),
|
||
(235,'Command: arena disband'),
|
||
(236,'Command: arena info'),
|
||
(237,'Command: arena lookup'),
|
||
(238,'Command: arena rename'),
|
||
(239,'Command: ban'),
|
||
(240,'Command: ban account'),
|
||
(241,'Command: ban character'),
|
||
(242,'Command: ban ip'),
|
||
(243,'Command: ban playeraccount'),
|
||
(244,'Command: baninfo'),
|
||
(245,'Command: baninfo account'),
|
||
(246,'Command: baninfo character'),
|
||
(247,'Command: baninfo ip'),
|
||
(248,'Command: banlist'),
|
||
(249,'Command: banlist account'),
|
||
(250,'Command: banlist character'),
|
||
(251,'Command: banlist ip'),
|
||
(252,'Command: unban'),
|
||
(253,'Command: unban account'),
|
||
(254,'Command: unban character'),
|
||
(255,'Command: unban ip'),
|
||
(256,'Command: unban playeraccount'),
|
||
(257,'Command: bf'),
|
||
(258,'Command: bf start'),
|
||
(259,'Command: bf stop'),
|
||
(260,'Command: bf switch'),
|
||
(261,'Command: bf timer'),
|
||
(262,'Command: bf enable'),
|
||
(263,'Command: account email'),
|
||
(264,'Command: account set sec'),
|
||
(265,'Command: account set sec email'),
|
||
(266,'Command: account set sec regmail'),
|
||
(267,'Command: cast'),
|
||
(268,'Command: cast back'),
|
||
(269,'Command: cast dist'),
|
||
(270,'Command: cast self'),
|
||
(271,'Command: cast target'),
|
||
(272,'Command: cast dest'),
|
||
(273,'Command: character'),
|
||
(274,'Command: character customize'),
|
||
(275,'Command: character changefaction'),
|
||
(276,'Command: character changerace'),
|
||
(277,'Command: character deleted'),
|
||
(279,'Command: character deleted list'),
|
||
(280,'Command: character deleted restore'),
|
||
(283,'Command: character level'),
|
||
(284,'Command: character rename'),
|
||
(285,'Command: character reputation'),
|
||
(286,'Command: character titles'),
|
||
(287,'Command: levelup'),
|
||
(288,'Command: pdump'),
|
||
(289,'Command: pdump load'),
|
||
(290,'Command: pdump write'),
|
||
(291,'Command: cheat'),
|
||
(292,'Command: cheat casttime'),
|
||
(293,'Command: cheat cooldown'),
|
||
(294,'Command: cheat explore'),
|
||
(295,'Command: cheat god'),
|
||
(296,'Command: cheat power'),
|
||
(297,'Command: cheat status'),
|
||
(298,'Command: cheat taxi'),
|
||
(299,'Command: cheat waterwalk'),
|
||
(300,'Command: debug'),
|
||
(301,'Command: debug anim'),
|
||
(302,'Command: debug areatriggers'),
|
||
(303,'Command: debug arena'),
|
||
(304,'Command: debug bg'),
|
||
(305,'Command: debug entervehicle'),
|
||
(306,'Command: debug getitemstate'),
|
||
(309,'Command: debug combat'),
|
||
(310,'Command: debug itemexpire'),
|
||
(311,'Command: debug lootrecipient'),
|
||
(312,'Command: debug los'),
|
||
(314,'Command: debug moveflags'),
|
||
(315,'Command: debug play'),
|
||
(316,'Command: debug play cinematics'),
|
||
(317,'Command: debug play movie'),
|
||
(318,'Command: debug play sound'),
|
||
(319,'Command: debug send'),
|
||
(320,'Command: debug send buyerror'),
|
||
(321,'Command: debug send channelnotify'),
|
||
(322,'Command: debug send chatmessage'),
|
||
(323,'Command: debug send equiperror'),
|
||
(324,'Command: debug send largepacket'),
|
||
(325,'Command: debug send opcode'),
|
||
(326,'Command: debug send qinvalidmsg'),
|
||
(327,'Command: debug send qpartymsg'),
|
||
(328,'Command: debug send sellerror'),
|
||
(329,'Command: debug send setphaseshift'),
|
||
(330,'Command: debug send spellfail'),
|
||
(331,'Command: debug setaurastate'),
|
||
(335,'Command: debug setvid'),
|
||
(336,'Command: debug spawnvehicle'),
|
||
(337,'Command: debug threat'),
|
||
(339,'Command: debug worldstate'),
|
||
(340,'Command: wpgps'),
|
||
(341,'Command: deserter'),
|
||
(342,'Command: deserter bg'),
|
||
(343,'Command: deserter bg add'),
|
||
(344,'Command: deserter bg remove'),
|
||
(345,'Command: deserter instance'),
|
||
(346,'Command: deserter instance add'),
|
||
(347,'Command: deserter instance remove'),
|
||
(348,'Command: disable'),
|
||
(349,'Command: disable add'),
|
||
(350,'Command: disable add criteria'),
|
||
(351,'Command: disable add battleground'),
|
||
(352,'Command: disable add map'),
|
||
(353,'Command: disable add mmap'),
|
||
(354,'Command: disable add outdoorpvp'),
|
||
(355,'Command: disable add quest'),
|
||
(356,'Command: disable add spell'),
|
||
(357,'Command: disable add vmap'),
|
||
(358,'Command: disable remove'),
|
||
(359,'Command: disable remove criteria'),
|
||
(360,'Command: disable remove battleground'),
|
||
(361,'Command: disable remove map'),
|
||
(362,'Command: disable remove mmap'),
|
||
(363,'Command: disable remove outdoorpvp'),
|
||
(364,'Command: disable remove quest'),
|
||
(365,'Command: disable remove spell'),
|
||
(366,'Command: disable remove vmap'),
|
||
(367,'Command: event info'),
|
||
(368,'Command: event activelist'),
|
||
(369,'Command: event start'),
|
||
(370,'Command: event stop'),
|
||
(371,'Command: gm'),
|
||
(372,'Command: gm chat'),
|
||
(373,'Command: gm fly'),
|
||
(374,'Command: gm ingame'),
|
||
(375,'Command: gm list'),
|
||
(376,'Command: gm visible'),
|
||
(377,'Command: go'),
|
||
(378,'Command: account 2fa'),
|
||
(379,'Command: account 2fa setup'),
|
||
(380,'Command: account 2fa remove'),
|
||
(381,'Command: account set 2fa'),
|
||
(387,'Command: gobject'),
|
||
(388,'Command: gobject activate'),
|
||
(389,'Command: gobject add'),
|
||
(390,'Command: gobject add temp'),
|
||
(391,'Command: gobject delete'),
|
||
(392,'Command: gobject info'),
|
||
(393,'Command: gobject move'),
|
||
(394,'Command: gobject near'),
|
||
(395,'Command: gobject set'),
|
||
(396,'Command: gobject set phase'),
|
||
(397,'Command: gobject set state'),
|
||
(398,'Command: gobject target'),
|
||
(399,'Command: gobject turn'),
|
||
(400,'debug transport'),
|
||
(401,'Command: guild'),
|
||
(402,'Command: guild create'),
|
||
(403,'Command: guild delete'),
|
||
(404,'Command: guild invite'),
|
||
(405,'Command: guild uninvite'),
|
||
(406,'Command: guild rank'),
|
||
(407,'Command: guild rename'),
|
||
(408,'Command: honor'),
|
||
(409,'Command: honor add'),
|
||
(410,'Command: honor add kill'),
|
||
(411,'Command: honor update'),
|
||
(412,'Command: instance'),
|
||
(413,'Command: instance listbinds'),
|
||
(414,'Command: instance unbind'),
|
||
(415,'Command: instance stats'),
|
||
(417,'Command: learn'),
|
||
(418,'Command: learn all'),
|
||
(419,'Command: learn all my'),
|
||
(420,'Command: learn all my class'),
|
||
(421,'Command: learn all my pettalents'),
|
||
(422,'Command: learn all my spells'),
|
||
(423,'Command: learn all my talents'),
|
||
(424,'Command: learn all gm'),
|
||
(425,'Command: learn all crafts'),
|
||
(426,'Command: learn all default'),
|
||
(427,'Command: learn all lang'),
|
||
(428,'Command: learn all recipes'),
|
||
(429,'Command: unlearn'),
|
||
(430,'Command: lfg'),
|
||
(431,'Command: lfg player'),
|
||
(432,'Command: lfg group'),
|
||
(433,'Command: lfg queue'),
|
||
(434,'Command: lfg clean'),
|
||
(435,'Command: lfg options'),
|
||
(436,'Command: list'),
|
||
(437,'Command: list creature'),
|
||
(438,'Command: list item'),
|
||
(439,'Command: list object'),
|
||
(440,'Command: list auras'),
|
||
(441,'Command: list mail'),
|
||
(442,'Command: lookup'),
|
||
(443,'Command: lookup area'),
|
||
(444,'Command: lookup creature'),
|
||
(445,'Command: lookup event'),
|
||
(446,'Command: lookup faction'),
|
||
(447,'Command: lookup item'),
|
||
(448,'Command: lookup itemset'),
|
||
(449,'Command: lookup object'),
|
||
(450,'Command: lookup quest'),
|
||
(451,'Command: lookup player'),
|
||
(452,'Command: lookup player ip'),
|
||
(453,'Command: lookup player account'),
|
||
(454,'Command: lookup player email'),
|
||
(455,'Command: lookup skill'),
|
||
(456,'Command: lookup spell'),
|
||
(457,'Command: lookup spell id'),
|
||
(458,'Command: lookup taxinode'),
|
||
(459,'Command: lookup tele'),
|
||
(460,'Command: lookup title'),
|
||
(461,'Command: lookup map'),
|
||
(462,'Command: announce'),
|
||
(463,'Command: channel'),
|
||
(464,'Command: channel set'),
|
||
(465,'Command: channel set ownership'),
|
||
(466,'Command: gmannounce'),
|
||
(467,'Command: gmnameannounce'),
|
||
(468,'Command: gmnotify'),
|
||
(469,'Command: nameannounce'),
|
||
(470,'Command: notify'),
|
||
(471,'Command: whispers'),
|
||
(472,'Command: group'),
|
||
(473,'Command: group leader'),
|
||
(474,'Command: group disband'),
|
||
(475,'Command: group remove'),
|
||
(476,'Command: group join'),
|
||
(477,'Command: group list'),
|
||
(478,'Command: group summon'),
|
||
(479,'Command: pet'),
|
||
(480,'Command: pet create'),
|
||
(481,'Command: pet learn'),
|
||
(482,'Command: pet unlearn'),
|
||
(483,'Command: send'),
|
||
(484,'Command: send items'),
|
||
(485,'Command: send mail'),
|
||
(486,'Command: send message'),
|
||
(487,'Command: send money'),
|
||
(488,'Command: additem'),
|
||
(489,'Command: additemset'),
|
||
(490,'Command: appear'),
|
||
(491,'Command: aura'),
|
||
(492,'Command: bank'),
|
||
(493,'Command: bindsight'),
|
||
(494,'Command: combatstop'),
|
||
(495,'Command: cometome'),
|
||
(496,'Command: commands'),
|
||
(497,'Command: cooldown'),
|
||
(498,'Command: damage'),
|
||
(499,'Command: dev'),
|
||
(500,'Command: die'),
|
||
(501,'Command: dismount'),
|
||
(502,'Command: distance'),
|
||
(503,'Command: flusharenapoints'),
|
||
(504,'Command: freeze'),
|
||
(505,'Command: gps'),
|
||
(506,'Command: guid'),
|
||
(507,'Command: help'),
|
||
(508,'Command: hidearea'),
|
||
(509,'Command: itemmove'),
|
||
(510,'Command: kick'),
|
||
(511,'Command: linkgrave'),
|
||
(512,'Command: listfreeze'),
|
||
(513,'Command: maxskill'),
|
||
(514,'Command: movegens'),
|
||
(515,'Command: mute'),
|
||
(516,'Command: neargrave'),
|
||
(517,'Command: pinfo'),
|
||
(518,'Command: playall'),
|
||
(519,'Command: possess'),
|
||
(520,'Command: recall'),
|
||
(521,'Command: repairitems'),
|
||
(522,'Command: respawn'),
|
||
(523,'Command: revive'),
|
||
(524,'Command: saveall'),
|
||
(525,'Command: save'),
|
||
(526,'Command: setskill'),
|
||
(527,'Command: showarea'),
|
||
(528,'Command: summon'),
|
||
(529,'Command: unaura'),
|
||
(530,'Command: unbindsight'),
|
||
(531,'Command: unfreeze'),
|
||
(532,'Command: unmute'),
|
||
(533,'Command: unpossess'),
|
||
(534,'Command: unstuck'),
|
||
(535,'Command: wchange'),
|
||
(536,'Command: mmap'),
|
||
(537,'Command: mmap loadedtiles'),
|
||
(538,'Command: mmap loc'),
|
||
(539,'Command: mmap path'),
|
||
(540,'Command: mmap stats'),
|
||
(541,'Command: mmap testarea'),
|
||
(542,'Command: morph'),
|
||
(543,'Command: demorph'),
|
||
(544,'Command: modify'),
|
||
(545,'Command: modify arenapoints'),
|
||
(547,'Command: modify drunk'),
|
||
(548,'Command: modify energy'),
|
||
(549,'Command: modify faction'),
|
||
(550,'Command: modify gender'),
|
||
(551,'Command: modify honor'),
|
||
(552,'Command: modify hp'),
|
||
(553,'Command: modify mana'),
|
||
(554,'Command: modify money'),
|
||
(555,'Command: modify mount'),
|
||
(556,'Command: modify phase'),
|
||
(557,'Command: modify rage'),
|
||
(558,'Command: modify reputation'),
|
||
(559,'Command: modify runicpower'),
|
||
(560,'Command: modify scale'),
|
||
(561,'Command: modify speed'),
|
||
(562,'Command: modify speed all'),
|
||
(563,'Command: modify speed backwalk'),
|
||
(564,'Command: modify speed fly'),
|
||
(565,'Command: modify speed walk'),
|
||
(566,'Command: modify speed swim'),
|
||
(567,'Command: modify spell'),
|
||
(568,'Command: modify standstate'),
|
||
(569,'Command: modify talentpoints'),
|
||
(570,'Command: npc'),
|
||
(571,'Command: npc add'),
|
||
(572,'Command: npc add formation'),
|
||
(573,'Command: npc add item'),
|
||
(574,'Command: npc add move'),
|
||
(575,'Command: npc add temp'),
|
||
(576,'Command: npc add delete'),
|
||
(577,'Command: npc add delete item'),
|
||
(578,'Command: npc add follow'),
|
||
(579,'Command: npc add follow stop'),
|
||
(580,'Command: npc set'),
|
||
(581,'Command: npc set allowmove'),
|
||
(582,'Command: npc set entry'),
|
||
(583,'Command: npc set factionid'),
|
||
(584,'Command: npc set flag'),
|
||
(585,'Command: npc set level'),
|
||
(586,'Command: npc set link'),
|
||
(587,'Command: npc set model'),
|
||
(588,'Command: npc set movetype'),
|
||
(589,'Command: npc set phase'),
|
||
(590,'Command: npc set spawndist'),
|
||
(591,'Command: npc set spawntime'),
|
||
(592,'Command: npc set data'),
|
||
(593,'Command: npc info'),
|
||
(594,'Command: npc near'),
|
||
(595,'Command: npc move'),
|
||
(596,'Command: npc playemote'),
|
||
(597,'Command: npc say'),
|
||
(598,'Command: npc textemote'),
|
||
(599,'Command: npc whisper'),
|
||
(600,'Command: npc yell'),
|
||
(601,'Command: npc tame'),
|
||
(602,'Command: quest'),
|
||
(603,'Command: quest add'),
|
||
(604,'Command: quest complete'),
|
||
(605,'Command: quest remove'),
|
||
(606,'Command: quest reward'),
|
||
(607,'Command: reload'),
|
||
(608,'Command: reload access_requirement'),
|
||
(609,'Command: reload criteria_data'),
|
||
(610,'Command: reload achievement_reward'),
|
||
(611,'Command: reload all'),
|
||
(612,'Command: reload all achievement'),
|
||
(613,'Command: reload all area'),
|
||
(615,'Command: reload all gossips'),
|
||
(616,'Command: reload all item'),
|
||
(617,'Command: reload all locales'),
|
||
(618,'Command: reload all loot'),
|
||
(619,'Command: reload all npc'),
|
||
(620,'Command: reload all quest'),
|
||
(621,'Command: reload all scripts'),
|
||
(623,'Command: reload areatrigger_involvedrelation'),
|
||
(624,'Command: reload areatrigger_tavern'),
|
||
(625,'Command: reload areatrigger_teleport'),
|
||
(626,'Command: reload auctions'),
|
||
(627,'Command: reload autobroadcast'),
|
||
(628,'Command: reload command'),
|
||
(629,'Command: reload conditions'),
|
||
(630,'Command: reload config'),
|
||
(631,'Command: reload battleground_template'),
|
||
(632,'Command: .mutehistory'),
|
||
(633,'Command: reload creature_linked_respawn'),
|
||
(634,'Command: reload creature_loot_template'),
|
||
(635,'Command: reload creature_onkill_reputation'),
|
||
(636,'Command: reload creature_questender'),
|
||
(637,'Command: reload creature_queststarter'),
|
||
(638,'Command: reload creature_summon_groups'),
|
||
(639,'Command: reload creature_template'),
|
||
(640,'Command: reload creature_text'),
|
||
(641,'Command: reload disables'),
|
||
(642,'Command: reload disenchant_loot_template'),
|
||
(643,'Command: reload event_scripts'),
|
||
(644,'Command: reload fishing_loot_template'),
|
||
(645,'Command: reload game_graveyard_zone'),
|
||
(646,'Command: reload game_tele'),
|
||
(647,'Command: reload gameobject_questender'),
|
||
(648,'Command: reload gameobject_loot_template'),
|
||
(649,'Command: reload gameobject_queststarter'),
|
||
(650,'Command: reload support'),
|
||
(651,'Command: reload gossip_menu'),
|
||
(652,'Command: reload gossip_menu_option'),
|
||
(653,'Command: reload item_random_bonus_list_template'),
|
||
(654,'Command: reload item_loot_template'),
|
||
(655,'Command: reload item_set_names'),
|
||
(656,'Command: reload lfg_dungeon_rewards'),
|
||
(657,'Command: reload locales_achievement_reward'),
|
||
(658,'Command: reload locales_creature'),
|
||
(659,'Command: reload locales_creature_text'),
|
||
(660,'Command: reload locales_gameobject'),
|
||
(661,'Command: reload locales_gossip_menu_option'),
|
||
(663,'Command: reload locales_item_set_name'),
|
||
(665,'Command: reload locales_page_text'),
|
||
(666,'Command: reload locales_points_of_interest'),
|
||
(667,'Command: reload quest_locale'),
|
||
(668,'Command: reload mail_level_reward'),
|
||
(669,'Command: reload mail_loot_template'),
|
||
(670,'Command: reload milling_loot_template'),
|
||
(671,'Command: reload npc_spellclick_spells'),
|
||
(672,'Command: reload npc_trainer'),
|
||
(673,'Command: reload npc_vendor'),
|
||
(674,'Command: reload page_text'),
|
||
(675,'Command: reload pickpocketing_loot_template'),
|
||
(676,'Command: reload points_of_interest'),
|
||
(677,'Command: reload prospecting_loot_template'),
|
||
(678,'Command: reload quest_poi'),
|
||
(679,'Command: reload quest_template'),
|
||
(680,'Command: reload rbac'),
|
||
(681,'Command: reload reference_loot_template'),
|
||
(682,'Command: reload reserved_name'),
|
||
(683,'Command: reload reputation_reward_rate'),
|
||
(684,'Command: reload reputation_spillover_template'),
|
||
(685,'Command: reload skill_discovery_template'),
|
||
(686,'Command: reload skill_extra_item_template'),
|
||
(687,'Command: reload skill_fishing_base_level'),
|
||
(688,'Command: reload skinning_loot_template'),
|
||
(689,'Command: reload smart_scripts'),
|
||
(690,'Command: reload spell_required'),
|
||
(691,'Command: reload spell_area'),
|
||
(693,'Command: reload spell_group'),
|
||
(694,'Command: reload spell_learn_spell'),
|
||
(695,'Command: reload spell_loot_template'),
|
||
(696,'Command: reload spell_linked_spell'),
|
||
(697,'Command: reload spell_pet_auras'),
|
||
(698,'Command: character changeaccount'),
|
||
(699,'Command: reload spell_proc'),
|
||
(700,'Command: reload spell_scripts'),
|
||
(701,'Command: reload spell_target_position'),
|
||
(702,'Command: reload spell_threats'),
|
||
(703,'Command: reload spell_group_stack_rules'),
|
||
(704,'Command: reload trinity_string'),
|
||
(707,'Command: reload waypoint_path'),
|
||
(708,'Command: reload vehicle_accessory'),
|
||
(709,'Command: reload vehicle_template_accessory'),
|
||
(710,'Command: reset'),
|
||
(711,'Command: reset achievements'),
|
||
(712,'Command: reset honor'),
|
||
(713,'Command: reset level'),
|
||
(714,'Command: reset spells'),
|
||
(715,'Command: reset stats'),
|
||
(716,'Command: reset talents'),
|
||
(717,'Command: reset all'),
|
||
(718,'Command: server'),
|
||
(719,'Command: server corpses'),
|
||
(720,'Command: server exit'),
|
||
(721,'Command: server idlerestart'),
|
||
(722,'Command: server idlerestart cancel'),
|
||
(723,'Command: server idleshutdown'),
|
||
(724,'Command: server idleshutdown cancel'),
|
||
(725,'Command: server info'),
|
||
(726,'Command: server plimit'),
|
||
(727,'Command: server restart'),
|
||
(728,'Command: server restart cancel'),
|
||
(729,'Command: server set'),
|
||
(730,'Command: server set closed'),
|
||
(731,'Command: server set difftime'),
|
||
(732,'Command: server set loglevel'),
|
||
(733,'Command: server set motd'),
|
||
(734,'Command: server shutdown'),
|
||
(735,'Command: server shutdown cancel'),
|
||
(736,'Command: server motd'),
|
||
(737,'Command: tele'),
|
||
(738,'Command: tele add'),
|
||
(739,'Command: tele del'),
|
||
(740,'Command: tele name'),
|
||
(741,'Command: tele group'),
|
||
(742,'Command: ticket'),
|
||
(753,'Command: ticket reset'),
|
||
(757,'Command: ticket togglesystem'),
|
||
(761,'Command: titles'),
|
||
(762,'Command: titles add'),
|
||
(763,'Command: titles current'),
|
||
(764,'Command: titles remove'),
|
||
(765,'Command: titles set'),
|
||
(766,'Command: titles set mask'),
|
||
(767,'Command: wp'),
|
||
(768,'Command: wp add'),
|
||
(769,'Command: wp event'),
|
||
(770,'Command: wp load'),
|
||
(771,'Command: wp modify'),
|
||
(772,'Command: wp unload'),
|
||
(773,'Command: wp reload'),
|
||
(774,'Command: wp show'),
|
||
(775,'Command: modify currency'),
|
||
(776,'Command: debug phase'),
|
||
(777,'Command: mailbox'),
|
||
(778,'Command: ahbot'),
|
||
(779,'Command: ahbot items'),
|
||
(780,'Command: ahbot items gray'),
|
||
(781,'Command: ahbot items white'),
|
||
(782,'Command: ahbot items green'),
|
||
(783,'Command: ahbot items blue'),
|
||
(784,'Command: ahbot items purple'),
|
||
(785,'Command: ahbot items orange'),
|
||
(786,'Command: ahbot items yellow'),
|
||
(787,'Command: ahbot ratio'),
|
||
(788,'Command: ahbot ratio alliance'),
|
||
(789,'Command: ahbot ratio horde'),
|
||
(790,'Command: ahbot ratio neutral'),
|
||
(791,'Command: ahbot rebuild'),
|
||
(792,'Command: ahbot reload'),
|
||
(793,'Command: ahbot status'),
|
||
(794,'Command: .guild info'),
|
||
(795,'Command: instance setbossstate'),
|
||
(796,'Command: instance getbossstate'),
|
||
(797,'Command: pvpstats'),
|
||
(798,'Command: .mod xp'),
|
||
(802,'Command: .ticket bug'),
|
||
(803,'Command: .ticket complaint'),
|
||
(804,'Command: .ticket suggestion'),
|
||
(805,'Command: .ticket bug assign'),
|
||
(806,'Command: .ticket bug close'),
|
||
(807,'Command: .ticket bug closedlist'),
|
||
(808,'Command: .ticket bug comment'),
|
||
(809,'Command: .ticket bug delete'),
|
||
(810,'Command: .ticket bug list'),
|
||
(811,'Command: .ticket bug unassign'),
|
||
(812,'Command: .ticket bug view'),
|
||
(813,'Command: .ticket complaint assign'),
|
||
(814,'Command: .ticket complaint close'),
|
||
(815,'Command: .ticket complaint closedlist'),
|
||
(816,'Command: .ticket complaint comment'),
|
||
(817,'Command: .ticket complaint delete'),
|
||
(818,'Command: .ticket complaint list'),
|
||
(819,'Command: .ticket complaint unassign'),
|
||
(820,'Command: .ticket complaint view'),
|
||
(821,'Command: .ticket suggestion assign'),
|
||
(822,'Command: .ticket suggestion close'),
|
||
(823,'Command: .ticket suggestion closedlist'),
|
||
(824,'Command: .ticket suggestion comment'),
|
||
(825,'Command: .ticket suggestion delete'),
|
||
(826,'Command: .ticket suggestion list'),
|
||
(827,'Command: .ticket suggestion unassign'),
|
||
(828,'Command: .ticket suggestion view'),
|
||
(829,'Command: .ticket reset all'),
|
||
(830,'Command: .bnetaccount listgameaccounts'),
|
||
(831,'Command: .ticket reset bug'),
|
||
(832,'Command: .ticket reset complaint'),
|
||
(833,'Command: .ticket reset suggestion'),
|
||
(835,'Command: debug loadcells'),
|
||
(836,'Command: .debug boundary'),
|
||
(837,'Command: npc evade'),
|
||
(838,'Command: pet level'),
|
||
(839,'Command: server shutdown force'),
|
||
(840,'Command: server restart force'),
|
||
(841,'Command: .debug neargraveyard'),
|
||
(842,'Command: reload character_template'),
|
||
(843,'Command: reload quest_greeting'),
|
||
(844,'Command: scene'),
|
||
(845,'Command: scene debug'),
|
||
(846,'Command: scene play'),
|
||
(847,'Command: scene play package'),
|
||
(848,'Command: scene cancel'),
|
||
(849,'Command: list scenes'),
|
||
(850,'Command: reload scenes'),
|
||
(851,'Command: reload areatrigger_templates'),
|
||
(852,'Command: debug dummy'),
|
||
(853,'Command: .reload conversation_template'),
|
||
(854,'Command: .debug conversation'),
|
||
(855,'Command: debug play music'),
|
||
(856,'Command: npc spawngroup'),
|
||
(857,'Command: npc despawngroup'),
|
||
(858,'Command: gobject spawngroup'),
|
||
(859,'Command: gobject despawngroup'),
|
||
(860,'Command: list respawns'),
|
||
(865,'Command: npc showloot'),
|
||
(866,'Command: list spawnpoints'),
|
||
(868,'Command: modify power'),
|
||
(869,'Command: debug send playerchoice'),
|
||
(870,'Command: debug threatinfo'),
|
||
(871,'Command: debug instancespawn'),
|
||
(872,'Command: server debug'),
|
||
(873,'Command: reload creature_movement_override'),
|
||
(874,'Command: debug asan'),
|
||
(875,'Command: lookup map id'),
|
||
(876,'Command: lookup item id'),
|
||
(877,'Command: lookup quest id'),
|
||
(878,'Command: debug questreset'),
|
||
(879,'Command: debug poolstatus'),
|
||
(880,'Command: pdump copy'),
|
||
(881,'Command: reload vehicle_template'),
|
||
(882,'Command: reload spell_script_names'),
|
||
(883,'Command: quest objective complete');
|
||
/*!40000 ALTER TABLE `rbac_permissions` ENABLE KEYS */;
|
||
UNLOCK TABLES;
|
||
|
||
--
|
||
-- Table structure for table `realmcharacters`
|
||
--
|
||
|
||
DROP TABLE IF EXISTS `realmcharacters`;
|
||
/*!40101 SET @saved_cs_client = @@character_set_client */;
|
||
/*!50503 SET character_set_client = utf8mb4 */;
|
||
CREATE TABLE `realmcharacters` (
|
||
`realmid` int unsigned NOT NULL DEFAULT '0',
|
||
`acctid` int unsigned NOT NULL,
|
||
`numchars` tinyint unsigned NOT NULL DEFAULT '0',
|
||
PRIMARY KEY (`realmid`,`acctid`),
|
||
KEY `acctid` (`acctid`)
|
||
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci COMMENT='Realm Character Tracker';
|
||
/*!40101 SET character_set_client = @saved_cs_client */;
|
||
|
||
--
|
||
-- Dumping data for table `realmcharacters`
|
||
--
|
||
|
||
LOCK TABLES `realmcharacters` WRITE;
|
||
/*!40000 ALTER TABLE `realmcharacters` DISABLE KEYS */;
|
||
/*!40000 ALTER TABLE `realmcharacters` ENABLE KEYS */;
|
||
UNLOCK TABLES;
|
||
|
||
--
|
||
-- Table structure for table `realmlist`
|
||
--
|
||
|
||
DROP TABLE IF EXISTS `realmlist`;
|
||
/*!40101 SET @saved_cs_client = @@character_set_client */;
|
||
/*!50503 SET character_set_client = utf8mb4 */;
|
||
CREATE TABLE `realmlist` (
|
||
`id` int unsigned NOT NULL AUTO_INCREMENT,
|
||
`name` varchar(32) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
|
||
`address` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '127.0.0.1',
|
||
`localAddress` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '127.0.0.1',
|
||
`localSubnetMask` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '255.255.255.0',
|
||
`port` smallint unsigned NOT NULL DEFAULT '8085',
|
||
`icon` tinyint unsigned NOT NULL DEFAULT '0',
|
||
`flag` tinyint unsigned NOT NULL DEFAULT '2',
|
||
`timezone` tinyint unsigned NOT NULL DEFAULT '0',
|
||
`allowedSecurityLevel` tinyint unsigned NOT NULL DEFAULT '0',
|
||
`population` float unsigned NOT NULL DEFAULT '0',
|
||
`gamebuild` int unsigned NOT NULL DEFAULT '56421',
|
||
`Region` tinyint unsigned NOT NULL DEFAULT '1',
|
||
`Battlegroup` tinyint unsigned NOT NULL DEFAULT '1',
|
||
PRIMARY KEY (`id`),
|
||
UNIQUE KEY `idx_name` (`name`)
|
||
) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci COMMENT='Realm System';
|
||
/*!40101 SET character_set_client = @saved_cs_client */;
|
||
|
||
--
|
||
-- Dumping data for table `realmlist`
|
||
--
|
||
|
||
LOCK TABLES `realmlist` WRITE;
|
||
/*!40000 ALTER TABLE `realmlist` DISABLE KEYS */;
|
||
INSERT INTO `realmlist` VALUES
|
||
(1,'Trinity','127.0.0.1','127.0.0.1','255.255.255.0',8085,0,0,1,0,0,56421,1,1);
|
||
/*!40000 ALTER TABLE `realmlist` ENABLE KEYS */;
|
||
UNLOCK TABLES;
|
||
|
||
--
|
||
-- Table structure for table `secret_digest`
|
||
--
|
||
|
||
DROP TABLE IF EXISTS `secret_digest`;
|
||
/*!40101 SET @saved_cs_client = @@character_set_client */;
|
||
/*!50503 SET character_set_client = utf8mb4 */;
|
||
CREATE TABLE `secret_digest` (
|
||
`id` int unsigned NOT NULL,
|
||
`digest` varchar(100) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
|
||
PRIMARY KEY (`id`)
|
||
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
|
||
/*!40101 SET character_set_client = @saved_cs_client */;
|
||
|
||
--
|
||
-- Dumping data for table `secret_digest`
|
||
--
|
||
|
||
LOCK TABLES `secret_digest` WRITE;
|
||
/*!40000 ALTER TABLE `secret_digest` DISABLE KEYS */;
|
||
/*!40000 ALTER TABLE `secret_digest` ENABLE KEYS */;
|
||
UNLOCK TABLES;
|
||
|
||
--
|
||
-- Table structure for table `updates`
|
||
--
|
||
|
||
DROP TABLE IF EXISTS `updates`;
|
||
/*!40101 SET @saved_cs_client = @@character_set_client */;
|
||
/*!50503 SET character_set_client = utf8mb4 */;
|
||
CREATE TABLE `updates` (
|
||
`name` varchar(200) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL COMMENT 'filename with extension of the update.',
|
||
`hash` char(40) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT '' COMMENT 'sha1 hash of the sql file.',
|
||
`state` enum('RELEASED','ARCHIVED') CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'RELEASED' COMMENT 'defines if an update is released or archived.',
|
||
`timestamp` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP COMMENT 'timestamp when the query was applied.',
|
||
`speed` int unsigned NOT NULL DEFAULT '0' COMMENT 'time the query takes to apply in ms.',
|
||
PRIMARY KEY (`name`)
|
||
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci COMMENT='List of all applied updates in this database.';
|
||
/*!40101 SET character_set_client = @saved_cs_client */;
|
||
|
||
--
|
||
-- Dumping data for table `updates`
|
||
--
|
||
|
||
LOCK TABLES `updates` WRITE;
|
||
/*!40000 ALTER TABLE `updates` DISABLE KEYS */;
|
||
INSERT INTO `updates` VALUES
|
||
('2014_10_04_00_auth.sql','C3BC70A6EC381474B7308F442346F1E721176BC6','ARCHIVED','2015-03-21 16:55:52',0),
|
||
('2014_10_19_00_auth.sql','7472B490A4F86C9D3DA609CDD3197499CB80C87C','ARCHIVED','2015-03-21 16:55:52',0),
|
||
('2014_10_26_00_auth.sql','75CC67ADE2A3B2E54FD57D6B0DCAA8FE50F4EE35','ARCHIVED','2015-03-21 16:55:52',0),
|
||
('2014_11_03_00_auth.sql','5948C9F286CF0FEA8E241785C0259FF36B73BDC5','ARCHIVED','2015-03-21 16:55:52',0),
|
||
('2014_11_04_00_auth.sql','3AFC68B2375C2A417DDEA94583C53AFF83DE50DF','ARCHIVED','2015-03-21 16:55:52',0),
|
||
('2014_11_09_00_auth.sql','B8DD1A7047C0FDDB80344B239343EC33BF1A0D97','ARCHIVED','2015-03-21 16:55:52',0),
|
||
('2014_11_10_00_auth_from_335.sql','0E3CB119442D09DD88E967015319BBC8DAFBBFE0','ARCHIVED','2014-11-10 00:00:00',0),
|
||
('2014_11_10_00_auth.sql','8FBA737A1D3FF4631A1E662A5B500A8BD304EC63','ARCHIVED','2015-03-21 16:55:52',0),
|
||
('2014_11_10_01_auth.sql','327E77A1DA3546D5275AB249915DD57EDD6FDD3D','ARCHIVED','2014-11-10 00:00:01',0),
|
||
('2014_11_23_00_auth.sql','0BBEB3EB3AED0FEF277A062819B6B2C00084A742','ARCHIVED','2015-03-21 16:55:52',0),
|
||
('2014_11_25_00_auth.sql','4F45CDB26BDBB3EE83F1988E3D7818C5926ADC02','ARCHIVED','2015-03-21 16:55:52',0),
|
||
('2014_12_05_00_auth.sql','6A7BBCEF43111C73A2D2C3CCB6911BE50DE7DD94','ARCHIVED','2015-03-21 16:55:52',0),
|
||
('2014_12_10_00_auth.sql','821703A96D80F9080074852B5A46E2909C9562EA','ARCHIVED','2014-12-10 00:00:00',0),
|
||
('2014_12_19_00_auth.sql','44D8E12FFF327AD07878FBDF8D9C16B6B7DCB122','ARCHIVED','2015-03-21 16:55:52',0),
|
||
('2014_12_20_00_auth.sql','4DAA02AE285C02AE6C82EA2C8B97AC71990F1085','ARCHIVED','2015-03-21 16:55:52',0),
|
||
('2014_12_25_00_auth.sql','61411930F482BC73FC7FD2C370C811E944F5FF92','ARCHIVED','2015-03-21 16:55:52',0),
|
||
('2014_12_27_00_auth.sql','CE2E5D2CD82E79C25294539ADED27A1429105B43','ARCHIVED','2014-12-21 00:00:00',0),
|
||
('2014_12_28_00_auth.sql','0A913217610E76AFF119C27259737BBC523090E6','ARCHIVED','2015-03-21 16:55:52',0),
|
||
('2015_02_22_00_auth.sql','21CCCF8B01252E16CA3D6C9E3E8DAA4C9B28ED6E','ARCHIVED','2015-03-21 16:55:52',0),
|
||
('2015_03_01_00_auth.sql','911881E273207FF6182D1FDAC8C85FFAE8F1C852','ARCHIVED','2015-03-21 16:55:52',0),
|
||
('2015_03_10_00_auth.sql','2CC8502C11412EFEB5C11BE166761A8754A59009','ARCHIVED','2015-03-21 16:55:52',0),
|
||
('2015_03_15_00_auth.sql','1D8E107FBEFE5E7F47E09F45240DFF499B77CDED','ARCHIVED','2015-05-02 13:57:57',0),
|
||
('2015_03_20_00_auth.sql','B761760804EA73BD297F296C5C1919687DF7191C','ARCHIVED','2015-03-21 16:55:52',0),
|
||
('2015_03_20_01_auth.sql','5CCEDF20C8189FB1E8DF064A9F0DDC342841FBF0','ARCHIVED','2015-03-21 16:55:52',0),
|
||
('2015_03_20_02_auth.sql','85E4ACD9AA099C0C4AC034575F2BB07D348EAC72','ARCHIVED','2015-03-21 16:56:46',0),
|
||
('2015_03_26_00_auth.sql','34AC8543E6A9C6C832DE58EAB33618EEEF70B9F9','ARCHIVED','2015-05-02 13:57:57',0),
|
||
('2015_04_04_00_auth.sql','57146B35E54A2EC7869C945034AB078358020311','ARCHIVED','2015-05-02 13:57:57',0),
|
||
('2015_04_06_00_auth.sql','2A8049DC2923420A002D42FB6F02C2FFCC5CDD22','ARCHIVED','2015-05-02 13:57:57',0),
|
||
('2015_04_08_00_auth.sql','4D7D8EEF285C982BB676836602266501BEC26764','ARCHIVED','2015-05-02 13:57:57',0),
|
||
('2015_04_10_00_auth.sql','4AE68FD97A95CEE5143EA20FD33F5D557367AC1F','ARCHIVED','2015-05-02 13:57:57',0),
|
||
('2015_04_11_00_auth.sql','80A71C8921CFEBB547D264558B6DE27201685B84','ARCHIVED','2015-05-02 13:57:57',0),
|
||
('2015_04_11_01_auth.sql','3E88183E1A85D11BFD74CF9A32A725C44AE02EEC','ARCHIVED','2015-05-02 13:57:57',0),
|
||
('2015_04_21_00_auth.sql','1B3B48DBA06368B985C548D166C515C9DD598CB9','ARCHIVED','2015-05-02 13:57:57',0),
|
||
('2015_05_02_00_auth.sql','96AB595E0D2A088750E3F48B0AF0A8A14F3CFE1E','ARCHIVED','2015-05-02 13:57:57',0),
|
||
('2015_05_02_01_auth.sql','FB11FB834E488B0FD3AFDABCC1A3113092E7C2E5','ARCHIVED','2015-05-02 13:57:57',0),
|
||
('2015_07_02_00_auth.sql','E5EE3842AB9B01851E49B360FBAF6FFEEAB2A8DA','ARCHIVED','2015-07-10 19:30:56',0),
|
||
('2015_07_06_00_auth.sql','6D1ADBA496DC6E6D7B3BF887DA8D4D17D3FBACE0','ARCHIVED','2015-07-10 19:30:56',0),
|
||
('2015_07_08_00_auth.sql','CB54020AFD1E31742FD8BF9CE16879625E289788','ARCHIVED','2015-07-10 19:30:56',0),
|
||
('2015_07_08_01_auth.sql','74D281CB82E0DA36D628BDC7AC797AE5498DB461','ARCHIVED','2015-07-10 19:30:56',0),
|
||
('2015_07_16_00_auth.sql','A057E95B5553B6A57A1642FE3FEC8E2E62EDE3C6','ARCHIVED','2015-10-10 08:30:48',0),
|
||
('2015_07_29_00_auth.sql','0000FECBC413E96C7C45F303D162E263EFBA7116','ARCHIVED','2015-10-10 08:30:48',0),
|
||
('2015_08_26_00_auth.sql','3071C02A2EB7DCBF4CEE10279FEFAB7C29A43A3A','ARCHIVED','2015-10-10 08:30:48',0),
|
||
('2015_09_05_00_auth.sql','F765D82B37873FA67447347D5B83C99C159FB452','ARCHIVED','2015-10-10 08:30:48',0),
|
||
('2015_09_05_01_auth.sql','97A72DBCBF14D27A1863834A22296905FF276086','ARCHIVED','2015-10-10 08:30:48',0),
|
||
('2015_09_09_00_auth.sql','495A0CF1B1C49205D4A5D3C25A4E1EB95616D6B4','ARCHIVED','2015-10-10 08:30:48',0),
|
||
('2015_09_15_00_auth.sql','D1FEFDA4C98F30384DF4B64D5A53187303EB5786','ARCHIVED','2015-10-10 08:30:48',0),
|
||
('2015_10_09_00_auth.sql','B6D643D444C6AE711503F73B96B6252A852913D6','ARCHIVED','2015-10-10 08:30:48',0),
|
||
('2015_10_16_00_auth.sql','366AFFD1088762866091A81CE1EC64138B8B35F1','ARCHIVED','2015-11-08 00:46:02',0),
|
||
('2015_10_17_00_auth.sql','AC0D45E905033F42093852D2C4476663BDACCB3D','ARCHIVED','2015-10-17 12:39:12',0),
|
||
('2015_11_01_00_auth_2015_08_21_00.sql','C31A9E1D28E11B60BE8F8198637DD51F6D75123F','ARCHIVED','2015-08-21 00:00:00',0),
|
||
('2015_11_08_00_auth.sql','0ACDD35EC9745231BCFA701B78056DEF94D0CC53','ARCHIVED','2015-11-07 00:00:00',0),
|
||
('2015_11_21_00_auth.sql','575A1D697CC6C7C517F7CCB950988267C99CE7FA','ARCHIVED','2015-11-21 21:25:38',0),
|
||
('2015_12_07_00_auth.sql','24A07AC1F38E5D26A3599FC06D29E267418F69F3','ARCHIVED','2015-12-07 20:55:48',0),
|
||
('2016_01_13_00_auth.sql','114527BCCB0DE286CBE6FDA3029DD0523D1037FA','ARCHIVED','2016-01-13 21:39:13',0),
|
||
('2016_03_22_01_auth_2016_01_13_00_auth.sql','24615CC69B3CD7BB4699874647C35BA86E8A93FD','ARCHIVED','2016-03-22 22:55:13',0),
|
||
('2016_03_28_00_auth.sql','BA14D23D81FA24565F04A359090DE86C5E195209','ARCHIVED','2016-03-28 16:49:32',0),
|
||
('2016_04_11_00_auth.sql','0ACDD35EC9745231BCFA701B78056DEF94D0CC53','ARCHIVED','2016-04-11 00:00:00',0),
|
||
('2016_04_17_00_auth.sql','83399B64D1221B56F73A0FFB51889F11A70521BC','ARCHIVED','2016-04-17 00:22:05',0),
|
||
('2016_05_07_00_auth.sql','7E36DCC4F06FCDCDA7155AF3C5EDF8D3A720565F','ARCHIVED','2016-05-07 01:00:21',0),
|
||
('2016_05_19_00_auth.sql','FB52E6BF35682CE6FA667B552B551F4FBD72AC30','ARCHIVED','2016-05-19 22:18:06',0),
|
||
('2016_07_19_00_auth.sql','D5498F28A1E21F4AD0E0D7C2B96FCF7292C14C4D','ARCHIVED','2016-07-19 14:00:28',0),
|
||
('2016_07_19_01_auth.sql','EBFE5D7D7E7CFA0CDA76AC49A1E8D4FA461A12BE','ARCHIVED','2016-07-19 16:06:39',0),
|
||
('2016_07_23_00_auth.sql','1048F6A922ACD9BFC2E4518A71AF7037F79A85C4','ARCHIVED','2016-07-23 14:39:21',0),
|
||
('2016_07_23_01_auth.sql','5897C7D8B8DE15895286FBCD1535FC75E1B70F62','ARCHIVED','2016-07-23 17:35:11',0),
|
||
('2016_07_30_00_auth.sql','0FD4147840F7F02E2F1828A904B269F5B66097E0','ARCHIVED','2016-07-30 15:07:02',0),
|
||
('2016_08_07_00_auth.sql','D9DD23851822E32E1312FFABEE2DB721C8651443','ARCHIVED','2016-08-07 15:33:42',0),
|
||
('2016_08_11_00_auth.sql','0C79A86A4DFC53746BECF3D8A145482F94AE5FC9','ARCHIVED','2016-08-11 17:02:20',0),
|
||
('2016_08_13_00_auth.sql','ED2286C4FF3D80D0F4DEE3D3121BCC15544470BE','ARCHIVED','2016-08-13 01:11:49',0),
|
||
('2016_08_26_00_auth.sql','3C566371B6026EFEEA19CD215EC9F02C6DA9EAB3','ARCHIVED','2016-08-26 14:09:52',0),
|
||
('2016_08_27_00_auth.sql','65ABEF7ACBCEA974C744ED42F95FBBD29226917B','ARCHIVED','2016-08-27 07:02:45',0),
|
||
('2016_08_30_00_auth.sql','E16C19A938FE6370921658D2B713EE28A633FD56','ARCHIVED','2016-08-30 00:00:00',0),
|
||
('2016_09_02_00_auth.sql','08932DAC4BDE74D3C39A43DDE404522F23EDD035','ARCHIVED','2016-09-02 00:00:00',0),
|
||
('2016_09_03_00_auth_2016_05_11_00_auth.sql','401EFD3586772BDED66B4A944C20A1AC18A22D3A','ARCHIVED','2016-09-03 11:29:38',0),
|
||
('2016_09_03_01_auth.sql','08B5ABCB74BBF25A30D37AF639F0EA1B10640673','ARCHIVED','2016-09-03 13:24:32',0),
|
||
('2016_09_03_02_auth_2016_06_06_00_auth.sql','A0A8D73A952D0618833416513D53F73A70E7EA25','ARCHIVED','2016-06-06 00:00:00',0),
|
||
('2016_09_03_03_auth.sql','9BF1C03EE39B6DC7E817BA46BE7D12A41AFBFDF7','ARCHIVED','2016-09-03 15:56:50',0),
|
||
('2016_09_15_00_auth.sql','CD65F822AF1B5B7776E39804D0362F3E34AA6445','ARCHIVED','2016-09-15 16:30:36',0),
|
||
('2016_09_21_00_auth.sql','57219A16B88080240EED94CDD41FC2764B8A32C5','ARCHIVED','2016-09-21 17:08:43',0),
|
||
('2016_09_25_00_auth.sql','E811EFD8CE92ABEC5B8C02A09E643035939CF96D','ARCHIVED','2016-09-25 15:56:58',0),
|
||
('2016_10_01_00_auth.sql','7C444FF1B03BA3C83472BDA409854754D052D6FB','ARCHIVED','2016-10-01 13:32:43',0),
|
||
('2016_10_06_00_auth.sql','6A415F9813EFB5B95EB2AA2B326E1A6791E25EDB','ARCHIVED','2016-10-06 23:16:24',0),
|
||
('2016_10_12_00_auth.sql','671D57BBA183AC70B9580DEE19B7EC046AF2EA87','ARCHIVED','2016-10-12 00:01:05',0),
|
||
('2016_10_17_00_auth.sql','A0EF594CD73690D46A46031137DB0E895F079235','ARCHIVED','2016-10-16 16:33:05',0),
|
||
('2016_10_25_00_auth.sql','5743FB1AC3F564FE4192DCFA90260BAD5E501882','ARCHIVED','2016-10-25 19:27:02',0),
|
||
('2016_10_28_00_auth.sql','C1B9B1DD20B2183C6CB44CAED9B91BA7C63B8C49','ARCHIVED','2016-10-28 00:07:48',0),
|
||
('2016_11_04_00_auth.sql','3F4FE06DCE019EB3223B5A6E0F80E2239078967F','ARCHIVED','2016-11-04 20:25:23',0),
|
||
('2016_11_09_00_auth.sql','56432F8AEC2943A398A5B8B77843138B5B704257','ARCHIVED','2016-11-09 18:46:48',0),
|
||
('2016_11_17_00_auth.sql','18E8F8FC93CC38755AB571638960AAFB98C0F3F1','ARCHIVED','2016-11-17 23:47:51',0),
|
||
('2016_12_04_00_auth.sql','B1623681EAB651D2A091E3F4D4D4E476CF6D3AEA','ARCHIVED','2016-12-04 00:41:36',0),
|
||
('2016_12_11_00_auth.sql','24CA34537DB697962DDD69EEE4BB5E79D2A573DA','ARCHIVED','2016-12-11 18:18:59',0),
|
||
('2016_12_18_00_auth.sql','7AB53E033680CF7439F142EF83CD13E6F5D0ACB9','ARCHIVED','2016-12-18 12:15:48',0),
|
||
('2017_01_14_00_auth.sql','1B514D1364042DB4CE68929EB54A94F86983441D','ARCHIVED','2017-01-14 20:50:47',0),
|
||
('2017_01_26_00_auth.sql','723E1B69981A32A2F28A67C64902BA1AE7E98E48','ARCHIVED','2017-01-26 17:10:15',0),
|
||
('2017_01_29_00_auth.sql','B76C514678903F540302505AF66886F7D2C89E30','ARCHIVED','2017-01-29 00:00:00',0),
|
||
('2017_03_11_00_auth.sql','2F2F67E51439346B212C27B7224E4614C00E1AEB','ARCHIVED','2017-03-11 00:00:00',0),
|
||
('2017_03_17_00_auth.sql','4902E9B1B063F399F928C2DD7AFD60427738E227','ARCHIVED','2017-03-17 00:00:00',0),
|
||
('2017_04_17_00_auth.sql','86299FAB21D895E84272286309CC8EE80F9DA8C7','ARCHIVED','2017-04-17 00:00:00',0),
|
||
('2017_04_19_00_auth.sql','9903AAF50DF384F52E81F7E2892FE5271E000490','ARCHIVED','2017-04-18 23:16:18',0),
|
||
('2017_04_22_00_auth.sql','843663B18D28FBA1EB12548500EC93953881E5F0','ARCHIVED','2017-04-22 19:28:22',0),
|
||
('2017_04_27_00_auth.sql','308B797B47FA803D492C9C9A4C26DBEC546DBBD9','ARCHIVED','2017-04-28 09:10:11',0),
|
||
('2017_05_14_00_auth.sql','B7E76CCDCC9A2C8103427DA4C43C7B0366ECE8B4','ARCHIVED','2017-05-14 12:00:00',0),
|
||
('2017_06_12_01_auth.sql','661B4935E101AF188BEBF43203144104E89F8C54','ARCHIVED','2017-06-12 00:00:01',0),
|
||
('2017_06_12_02_auth.sql','166F059E411FAA4901BBBA09A41EF07B1CADC4B6','ARCHIVED','2017-06-12 00:00:02',0),
|
||
('2017_06_15_00_auth.sql','DD71F25C1E61FD5F836931B02703BE3BD1B4F156','ARCHIVED','2017-06-15 15:20:50',0),
|
||
('2017_06_17_00_auth.sql','4A172895CB9DA8EFE1270434D6ECB22D4F4DCB17','ARCHIVED','2017-06-17 00:00:00',0),
|
||
('2017_06_18_00_auth.sql','7200968BFC2D76499149937B19F2153FD2ABC397','ARCHIVED','2017-06-18 22:13:37',0),
|
||
('2017_06_25_00_auth.sql','A2DA6A64D4217992EF766915DEBD517DB0834E01','ARCHIVED','2017-06-25 00:54:10',0),
|
||
('2017_06_28_00_auth_master.sql','6E58300D4D4DAAEE89107ECB3CB7DA8529DA738F','ARCHIVED','2017-06-28 19:11:09',0),
|
||
('2017_06_28_00_auth_rbac.sql','D32EF80F57F629C23395D80F06E91D7E40719F83','ARCHIVED','2017-06-28 00:00:00',0),
|
||
('2017_06_30_00_auth.sql','C73BD277D211DBE1BB86BB1B443CA8F292D8ADEE','ARCHIVED','2017-06-30 16:18:51',0),
|
||
('2017_08_01_00_auth.sql','6ECE808AF52345177189E962C0606B769B6806A6','ARCHIVED','2017-08-01 00:00:00',0),
|
||
('2017_08_04_00_auth.sql','2E994A704C64FECE3CE0883ED0CAC5E5A0E3A36C','ARCHIVED','2017-08-04 23:46:32',0),
|
||
('2017_08_13_00_auth_2016_09_22_00_auth.sql','70047954E3556BFA430ADD5680EF8797F74A4B9E','ARCHIVED','2017-08-13 12:00:00',0),
|
||
('2017_09_22_00_auth.sql','9313CCE80A18212E6F0C78D83316DE8582AE8084','ARCHIVED','2017-09-22 18:05:17',0),
|
||
('2017_10_13_00_auth.sql','87674E0D166AC60E3725B445714427892E42C6FE','ARCHIVED','2017-10-13 00:00:00',0),
|
||
('2017_11_11_01_auth.sql','0D6EDB6B2FC8B9FBDF11ECD79B4B8E943328B6A9','ARCHIVED','2017-11-11 18:49:45',0),
|
||
('2017_12_17_00_auth.sql','2CD99730D4D32DBF0584CD5B1AA6F8F4AE3DA975','ARCHIVED','2017-12-17 00:00:00',0),
|
||
('2017_12_30_00_auth.sql','F360E9555AC68E28834E3FF807E4E37A090EF363','ARCHIVED','2017-12-30 00:23:32',0),
|
||
('2017_12_30_01_auth.sql','1E11C78BA6D1D8E8CED7423DF92D1D197D6061EE','ARCHIVED','2017-12-30 23:00:00',0),
|
||
('2017_12_31_00_auth.sql','1721ACBD35EB95FAE33B9E95F8C4E4B1FB70A5E4','ARCHIVED','2017-12-31 20:15:23',0),
|
||
('2018_01_02_00_auth.sql','CD9B826B9D95697DC412DEF780E814FA3991D6CD','ARCHIVED','2018-01-02 20:40:37',0),
|
||
('2018_01_09_00_auth.sql','A5D4EC8FCFAB4F2DCE70EDCAD1ACBFB484FD68D5','ARCHIVED','2018-01-09 00:00:00',0),
|
||
('2018_01_24_00_auth.sql','167B17D8A253D62A8112F8A7EB21C6E99CAEF1E4','ARCHIVED','2018-01-24 00:00:00',0),
|
||
('2018_02_18_00_auth.sql','8489DD3EFFE14A7486B593435F0BA2BC69B6EABF','ARCHIVED','2018-02-18 16:35:55',0),
|
||
('2018_02_19_00_auth.sql','07CE658C5EF88693D3C047EF8E724F94ADA74C15','ARCHIVED','2018-02-19 22:33:32',0),
|
||
('2018_02_28_00_auth.sql','E92EF4ABF7FA0C66649E1633DD0459F44C09EB83','ARCHIVED','2018-02-28 23:07:59',0),
|
||
('2018_03_08_00_auth.sql','624C58A07E0B4DDC4C1347E8BA8EFEEFD5B43DA7','ARCHIVED','2018-03-08 00:00:00',0),
|
||
('2018_03_14_00_auth.sql','2D71E93DF7419A30D0D21D8A80CF05698302575A','ARCHIVED','2018-03-14 23:07:59',0),
|
||
('2018_04_06_00_auth.sql','D8416F0C4751763202B1997C81423F6EE2FCF9A6','ARCHIVED','2018-04-06 18:00:32',0),
|
||
('2018_05_13_00_auth.sql','A9E20F2EB1E2FDBB982DB6B00DB7301852B27CD4','ARCHIVED','2018-05-13 20:22:32',0),
|
||
('2018_05_24_00_auth.sql','B98FD71AAA13810856729E034E6B8C9F8D5D4F6B','ARCHIVED','2018-05-24 22:32:49',0),
|
||
('2018_06_14_00_auth.sql','67EAB915BF0C7F2D410BE45F885A1A39D42C8C14','ARCHIVED','2018-06-14 23:06:59',0),
|
||
('2018_06_22_00_auth.sql','9DA24F70B8A365AFDEF58A9B578255CDEDFCA47C','ARCHIVED','2018-06-22 17:45:45',0),
|
||
('2018_06_23_00_auth.sql','BE35312C386A127D047E5A7CE0D14DB41D905F8E','ARCHIVED','2018-06-23 00:00:00',0),
|
||
('2018_06_29_00_auth.sql','03AAEA7E52848FA5522C3F0C6D9C38B988407480','ARCHIVED','2018-06-29 22:34:04',0),
|
||
('2018_08_30_00_auth.sql','22F69864361D3E72F800379338310172C0576D1C','ARCHIVED','2018-08-30 00:00:00',0),
|
||
('2018_09_06_00_auth.sql','309D21E0DF82ED8921F77EAFDE741F38AC32BB13','ARCHIVED','2018-09-06 00:00:00',0),
|
||
('2018_09_17_00_auth.sql','4DB671F0A4FA1A93AF28FB6426AF13DE72C7DA3D','ARCHIVED','2018-09-17 00:00:00',0),
|
||
('2018_12_09_00_auth_2017_01_06_00_auth.sql','6CCFE6A9774EC733C9863D36A0F15F3534189BBD','ARCHIVED','2017-01-06 00:00:00',0),
|
||
('2018_12_09_01_auth.sql','576C2A11BE671D8420FA3EB705E594E381ECCC56','ARCHIVED','2018-12-09 14:49:17',0),
|
||
('2019_04_27_00_auth.sql','84B1EB9CC9B09BAF55E6295D202EC57D99B1B60E','ARCHIVED','2019-04-27 18:07:18',0),
|
||
('2019_06_06_00_auth.sql','6DE8159E04BEE7BA0A4A81D72D160EB74934B6A5','ARCHIVED','2019-06-06 18:09:54',0),
|
||
('2019_06_08_00_auth.sql','EA5A78F5A26C17BC790481EA9B3772D3A6912459','ARCHIVED','2019-05-20 17:21:20',0),
|
||
('2019_06_08_01_auth.sql','8165B1B787E3ECF0C8C0AD2D641513270977ABB4','ARCHIVED','2019-06-04 16:51:31',0),
|
||
('2019_06_08_02_auth.sql','B39DCBD902290700A81C9D028F54B58601C19A99','ARCHIVED','2019-06-05 16:26:31',0),
|
||
('2019_06_08_03_auth.sql','F483B657015D39D4F63E3905C27C3AA48241AB03','ARCHIVED','2019-06-08 17:14:21',0),
|
||
('2019_06_16_00_auth.sql','B14AED4D3387B56FF8C8161D3671750AEEAE0F2E','ARCHIVED','2019-06-15 23:32:12',0),
|
||
('2019_06_21_00_auth.sql','C519239830204B68E710F698BC0C9E89B6D5FD24','ARCHIVED','2019-06-20 19:43:50',0),
|
||
('2019_07_14_00_auth.sql','94C2B877BD906538E1E008350BEA8D8B58E0A158','ARCHIVED','2019-07-14 19:22:08',0),
|
||
('2019_07_15_00_auth.sql','3649248104CFEC70553016273069A9AE744798E3','ARCHIVED','2019-07-15 19:22:08',0),
|
||
('2019_07_16_00_auth.sql','36CB53A9EBD64BFDCF7030083E36E534F1753773','ARCHIVED','2019-07-16 00:00:00',0),
|
||
('2019_07_17_00_auth.sql','4F983F039904894ACC483BE885676C5F0A18F06B','ARCHIVED','2019-07-17 00:00:00',0),
|
||
('2019_07_26_00_auth.sql','DC9D0651602AE78B1243B40555A1A7B8447D01B2','ARCHIVED','2019-07-26 18:21:34',0),
|
||
('2019_08_10_00_auth.sql','3568A1C9C6D62BBCD470C0623C1580E332D545D2','ARCHIVED','2022-01-02 21:18:52',0),
|
||
('2019_08_10_01_auth.sql','C58357260F0C70DA226A71F7E05DE2C49AAEFD74','ARCHIVED','2019-08-10 00:00:00',0),
|
||
('2019_08_11_00_auth.sql','04DCC2ABDA15BC7C015E8BFEA383C62A362B166F','ARCHIVED','2019-08-11 10:56:39',0),
|
||
('2019_08_18_00_auth.sql','0479A04B669A67D2E5A498CFB91507E742EFB34F','ARCHIVED','2019-08-17 11:51:02',0),
|
||
('2019_10_27_00_auth.sql','C943A651B5C9AC51BB7DF69821886F4B59F57153','ARCHIVED','2019-10-27 13:06:06',0),
|
||
('2019_11_13_00_auth.sql','EB680BA7D6B3A21A432687F452CDD86FB2DA677C','ARCHIVED','2019-11-13 11:49:55',0),
|
||
('2019_11_20_00_auth.sql','9BC11595D9CEA486AC1540A204DCE9D86A008D7D','ARCHIVED','2019-11-20 12:31:56',0),
|
||
('2019_11_23_00_auth.sql','098708CDC5614B4523AD3B17670939671E661443','ARCHIVED','2019-11-23 12:20:03',0),
|
||
('2019_12_04_00_auth.sql','4EB3D028DD80B18DA9B9250ADA4D22AA0D3C0447','ARCHIVED','2019-12-04 18:03:39',0),
|
||
('2019_12_07_00_auth.sql','F354DA31D5B300609C6AE8A25667CA4DE0A7349F','ARCHIVED','2019-12-07 12:57:23',0),
|
||
('2019_12_10_00_auth.sql','CC0DC6211FB2A1271EBF5D81F47B3EF1CED7A7AD','ARCHIVED','2019-12-10 17:50:44',0),
|
||
('2019_12_14_00_auth.sql','CF577A0B6F9747658CDECE3F690B05B89C5B4470','ARCHIVED','2019-12-14 11:17:56',0),
|
||
('2020_01_11_00_auth.sql','A0C4863741C4B93D343B7837FBA38D6023A237F9','ARCHIVED','2020-01-11 13:44:51',0),
|
||
('2020_01_12_00_auth.sql','5E4ECF243259B9866A877E2D3798D1D753738E24','ARCHIVED','2020-01-12 11:33:48',0),
|
||
('2020_02_17_00_auth.sql','456FA32A7B7C6ABA479F2B099822988A24A2344B','ARCHIVED','2020-02-17 23:28:22',0),
|
||
('2020_02_24_00_auth.sql','47E22129056EFD8B67754506231BCC4B0DDA6930','ARCHIVED','2020-02-24 17:19:33',0),
|
||
('2020_03_03_00_auth.sql','F473DFEABAC661704ECEA3D72E93A3280122CA30','ARCHIVED','2020-03-03 22:49:13',0),
|
||
('2020_03_20_00_auth.sql','0F72572D7792236D8F1E556D9EC62352A0A149CA','ARCHIVED','2020-03-20 10:01:23',0),
|
||
('2020_03_23_00_auth.sql','B90D27BB8E3CEDF65881BDA0C7CE6FBC5EF310E0','ARCHIVED','2020-03-23 17:57:46',0),
|
||
('2020_03_31_00_auth.sql','BA82A58E95730A397922B6723DA027986E6CD535','ARCHIVED','2020-03-31 17:00:16',0),
|
||
('2020_04_04_00_auth.sql','5F118989A9F8AFA3B2065AB9C2C0BB7D9A0EB97A','ARCHIVED','2020-04-04 13:23:53',0),
|
||
('2020_04_07_00_auth.sql','6D73A4E1EC5382F10C39F20E2E6E764510A8A5E6','ARCHIVED','2020-04-07 22:23:35',0),
|
||
('2020_04_18_00_auth.sql','BD962B50760771B60F2785027D6957EEF2009240','ARCHIVED','2020-04-18 14:09:28',0),
|
||
('2020_04_30_00_auth.sql','2FD304B8EF82D529D69287BF22EF061A267F827E','ARCHIVED','2020-04-30 00:39:29',0),
|
||
('2020_05_19_00_auth.sql','12D9F26538F63546B74793499E8A71BD885E8E5F','ARCHIVED','2020-05-19 12:00:00',0),
|
||
('2020_06_04_00_auth.sql','BA797B558196B1A07F8FF66E5288AD04659CF6AC','ARCHIVED','2020-06-04 09:57:07',0),
|
||
('2020_06_17_00_auth.sql','8BAB0BF5C90EBDE68685A9FB772EA90DD214E6D6','ARCHIVED','2020-06-17 09:56:25',0),
|
||
('2020_06_17_01_auth.sql','8FBF37B875B5C0E8A609FFB1A2C02F2920A3D3F4','ARCHIVED','2020-06-17 17:04:56',0),
|
||
('2020_06_20_00_auth.sql','85345FAF20B91DA7B157AE1E17DF5B6446C2E109','ARCHIVED','2020-06-11 10:48:00',0),
|
||
('2020_07_02_00_auth.sql','08D0F9D70AE625285172B3E02A3DAFE17D88E118','ARCHIVED','2020-07-02 10:29:25',0),
|
||
('2020_07_03_00_auth.sql','ED7175E51F248ADC5EF60E7CEA9627CC3191ED4C','ARCHIVED','2020-07-03 20:09:39',0),
|
||
('2020_07_23_00_auth.sql','5F47E1CEECA9F837C85C2DAC7ECD47AED321F502','ARCHIVED','2020-07-23 19:54:42',0),
|
||
('2020_07_24_00_auth.sql','06598162E9C84DDF8AA1F83D0410D056C3F7F69E','ARCHIVED','2020-07-24 00:44:34',0),
|
||
('2020_07_25_00_auth.sql','BE376B619ECB6FE827270D5022F311E20AD6E177','ARCHIVED','2020-07-25 00:00:49',0),
|
||
('2020_08_02_00_auth.sql','B0290F6558C59262D9DDD8071060A8803DD56930','ARCHIVED','2020-08-02 00:00:00',0),
|
||
('2020_08_03_00_auth.sql','492CA77C0FAEEEF3E0492121B3A92689373ECFA3','ARCHIVED','2020-08-03 09:24:47',0),
|
||
('2020_08_03_01_auth.sql','EC1063396CA20A2303D83238470D41EF4439EC72','ARCHIVED','2020-08-03 00:00:01',0),
|
||
('2020_08_06_00_auth.sql','5D3C5B25132DAFCA3933E9CBE14F5E8A290C4AFA','ARCHIVED','2020-08-06 20:26:11',0),
|
||
('2020_08_08_00_auth.sql','BC6A08BE42A6F2C30C9286CBDD47D57B718C4635','ARCHIVED','2020-08-08 00:16:57',0),
|
||
('2020_08_11_00_auth.sql','14C99177E43003D83A4D6F2227722F15FC15A1D0','ARCHIVED','2020-08-11 00:00:00',0),
|
||
('2020_08_14_00_auth.sql','DFB9B07A7846FC0E124EE4CC099E49FE5742FB66','ARCHIVED','2020-08-14 21:41:24',0),
|
||
('2020_08_26_00_auth.sql','D5EF787DECB41D898379588F101A0453B46F04D9','ARCHIVED','2020-08-26 21:00:34',0),
|
||
('2020_09_06_00_auth.sql','DC4B5D4C65EB138D5609F137799C3289B9CC2493','ARCHIVED','2020-09-06 00:00:00',0),
|
||
('2020_09_17_00_auth.sql','BBC0A8B2BBED38A57A83999909EB066753A893C5','ARCHIVED','2020-09-17 00:00:00',0),
|
||
('2020_09_25_00_auth.sql','3CCA78EF89223724BA6784A4F3783DED30416637','ARCHIVED','2020-09-25 19:52:40',0),
|
||
('2020_10_20_00_auth.sql','1835C5EFD5816DEF914F27E867C8C8D5E08B3F68','ARCHIVED','2020-10-20 21:36:49',0),
|
||
('2020_12_06_00_auth.sql','FA254400D3D7D53E9C350EABFEABFF4EC3AD40DA','ARCHIVED','2020-12-06 20:25:10',0),
|
||
('2020_12_07_00_auth.sql','23626805735CB9BEEEBD756D4A39AFBCDA6E366C','ARCHIVED','2020-12-07 21:12:53',0),
|
||
('2020_12_15_00_auth.sql','37DA3C4830ABA30C49370A8647F5B6B3E1821E57','ARCHIVED','2020-12-15 19:33:15',0),
|
||
('2020_12_22_00_auth.sql','1AED5AD7D93C30CF75E62EBEBCC64FFEDC58F00A','ARCHIVED','2020-12-22 22:00:39',0),
|
||
('2020_12_31_00_auth.sql','05C9C105D55C6588CDA0D75AE3B135B7E6B54C06','ARCHIVED','2020-12-31 12:58:21',0),
|
||
('2021_01_10_00_auth.sql','4430F5CC9A31DBBEA4E437E980E9F26AC919C016','ARCHIVED','2021-01-10 12:29:57',0),
|
||
('2021_01_13_00_auth.sql','F7C15519FFA0FE27EED859343B58714624A302E6','ARCHIVED','2021-01-13 11:19:52',0),
|
||
('2021_02_09_00_auth.sql','F00ABFF6E3C3F5ACE3444C9D70BADC764C8B3CE2','ARCHIVED','2021-02-09 17:22:24',0),
|
||
('2021_04_10_00_auth.sql','7B92AC4F76507940EF2257897F25304CF0F306EB','ARCHIVED','2021-04-10 19:42:42',0),
|
||
('2021_05_12_00_auth.sql','7F37DAD1777D62FDB00C19C0DF5E7DB742CCD5AD','ARCHIVED','2021-05-12 01:08:42',0),
|
||
('2021_06_20_00_auth.sql','7CA418D570DC1444C19AAD18F4A50FF187642310','ARCHIVED','2021-06-20 17:29:17',0),
|
||
('2021_07_04_00_auth.sql','3CF056F8F04E49C1E236060202AA8DA7E186B590','ARCHIVED','2021-07-04 22:23:24',0),
|
||
('2021_08_07_00_auth.sql','D615C2CACC999FF8804AEF56BAAA08D02217D671','ARCHIVED','2021-08-07 23:18:57',0),
|
||
('2021_08_18_00_auth.sql','162590897AC0020E68EB6845637901C3EB6509B4','ARCHIVED','2021-08-18 15:14:17',0),
|
||
('2021_08_19_00_auth.sql','DE008EDFB1FEBA49567E245A64BFE70DA72D9E7B','ARCHIVED','2021-08-19 10:58:58',0),
|
||
('2021_09_02_00_auth.sql','907344F4F0113A13D5E0A1D95E2C3E4C4150090C','ARCHIVED','2021-09-02 12:38:08',0),
|
||
('2021_09_10_00_auth.sql','DE94812ABC7B395C6C3405FB6718A8AF2C9F8FEC','ARCHIVED','2021-09-10 12:18:54',0),
|
||
('2021_10_07_00_auth.sql','45F2D92E28382F0CBE1F9B3A97693C0CC69E50BC','ARCHIVED','2021-10-07 10:32:05',0),
|
||
('2021_10_13_00_auth.sql','220E63385CACCBCEC36C57717DE369F2FCABCAAF','ARCHIVED','2021-10-13 21:15:05',0),
|
||
('2021_10_15_00_auth.sql','C8AA212AB2BB2DB5B3C2C9622A3874475AEFBD7B','ARCHIVED','2021-10-15 10:11:47',0),
|
||
('2021_10_15_01_auth.sql','72A0437F0ADEC59FF9D6839DF845C473F693CA5B','ARCHIVED','2021-10-16 00:15:25',0),
|
||
('2021_10_16_00_auth.sql','FDC45C7BEFBAFC9BCE6C77377B026A59AE52EE21','ARCHIVED','2021-10-16 11:24:39',0),
|
||
('2021_10_22_00_auth.sql','07D7397061A5A906357DC6E91FC33C74638EFDC3','ARCHIVED','2021-11-17 13:21:03',0),
|
||
('2021_10_23_00_auth.sql','97A8F2C2CEDB99C942D38F5B65DAD1DC11296E20','ARCHIVED','2021-10-23 00:00:00',0),
|
||
('2021_10_26_00_auth.sql','91E8B308267847569D9A669BC34794F154242ECF','ARCHIVED','2021-10-26 00:41:04',0),
|
||
('2021_11_05_00_auth.sql','4A4510436578B6486E8399602D3060376E96A8C7','ARCHIVED','2021-11-05 00:33:00',0),
|
||
('2021_11_06_00_auth.sql','3646F9356429CCE7C1CECC7D9BA7960E011C7B6B','ARCHIVED','2021-11-06 11:54:12',0),
|
||
('2021_11_10_00_auth.sql','EB3D26EFD3109BC17447B3BAC7573473F5103F65','ARCHIVED','2021-11-10 14:07:05',0),
|
||
('2021_11_12_00_auth.sql','012C088794362FE57BAEA0C3BD05356B40289028','ARCHIVED','2021-11-12 12:17:24',0),
|
||
('2021_11_17_00_auth.sql','298DA8468B30042B15FA17A90325C72879DF6D8E','ARCHIVED','2021-11-17 13:23:17',0),
|
||
('2021_11_19_00_auth.sql','BE4F77E254D76A59DBF28B2CEEA5CAF6777B650E','ARCHIVED','2021-11-19 00:37:56',0),
|
||
('2021_11_20_00_auth.sql','E476B6DAD9C47FC81E1DA5016DC79AB527F1847A','ARCHIVED','2021-11-20 18:40:53',0),
|
||
('2021_11_25_00_auth.sql','7A01CEB201CB825BFD565BBF5EED0162BEA733E7','ARCHIVED','2021-11-25 19:32:21',0),
|
||
('2021_12_02_00_auth.sql','ED40A45A8F5E5B1BB68216A3053D721B3BA3A556','ARCHIVED','2021-12-02 11:48:11',0),
|
||
('2021_12_04_00_auth.sql','00C4A37A60F53A5E893CAADAC882E5A28375A4D2','ARCHIVED','2021-12-04 12:49:04',0),
|
||
('2021_12_08_00_auth.sql','9B1A7C86F56159CA50A45B9CB4BC6422A3378231','ARCHIVED','2021-12-08 00:28:19',0),
|
||
('2021_12_16_00_auth.sql','EF5050D779CC6CEAAFB4C7E0CFA26824D92B675E','ARCHIVED','2021-12-16 12:21:11',0),
|
||
('2021_12_31_00_auth.sql','16AA1CFB93CC42DC9CC7C0C787C64D3CE9662EE5','ARCHIVED','2022-01-02 21:18:52',0),
|
||
('2021_12_31_01_auth.sql','336E62A8850A3E78A1D0BD3E81FFD5769184BDF8','ARCHIVED','2021-12-31 15:58:32',0),
|
||
('2022_01_02_00_auth.sql','F0AF198C5F7529508A5DB1F29D153256368AD1B4','ARCHIVED','2022-01-02 21:22:35',0),
|
||
('2022_01_08_00_auth.sql','3C9853058A77817DD62943D0332418D84CA6BDA1','ARCHIVED','2022-01-15 23:21:37',0),
|
||
('2022_01_15_00_auth.sql','11552D29BEDF73626FB8D932AB4362882964B4F0','ARCHIVED','2022-01-15 23:24:57',0),
|
||
('2022_01_22_00_auth.sql','24A9BB761E805608EFDD8F647BF733602B337018','ARCHIVED','2022-01-22 01:39:01',0),
|
||
('2022_02_25_00_auth.sql','1556FEDB9B46643634AE5BD0E38E7FF447FFC081','ARCHIVED','2022-02-25 12:39:15',0),
|
||
('2022_02_26_00_auth.sql','955F8E13B0D91CA06FEEAD4E6C75E5495DA6DDF3','ARCHIVED','2022-02-26 01:01:22',0),
|
||
('2022_03_01_00_auth.sql','53636BBB7DF4FFC2496456C1EEF2BD271D1C87E0','ARCHIVED','2022-03-01 16:07:38',0),
|
||
('2022_03_02_00_auth.sql','928C11D145B98E90FB82D2A871C2456C848AB6C1','ARCHIVED','2022-03-02 10:10:19',0),
|
||
('2022_03_03_00_auth.sql','408CCCF7D47FB5C876E976F883B4BDBFFEC5D146','ARCHIVED','2022-03-03 01:09:55',0),
|
||
('2022_03_06_00_auth.sql','2883FD8D2CB8B2FC3DF7D20D3216301262E7A7C3','ARCHIVED','2022-03-06 15:12:24',0),
|
||
('2022_03_08_00_auth.sql','E2C6B4E26FE55F5827C587CD668F6518EB2B51E8','ARCHIVED','2022-03-08 15:24:10',0),
|
||
('2022_03_12_00_auth.sql','1A476DB06BC1F096E6F15225078373B3AD094C1B','ARCHIVED','2022-03-12 05:52:02',0),
|
||
('2022_03_22_00_auth.sql','16A58234A1EF4F13ABD6EF78733BDBF5152AA70C','ARCHIVED','2022-03-22 00:32:54',0),
|
||
('2022_03_25_00_auth.sql','173D4F7B5417AF11DDDE6EC1A58ECFA6783C7FAF','ARCHIVED','2022-03-25 00:26:53',0),
|
||
('2022_03_30_00_auth.sql','37177AB41D7DF26CF4F908C0522EDEAF13094D7E','ARCHIVED','2022-03-30 00:37:34',0),
|
||
('2022_03_30_01_auth.sql','AACD3E4E8673F6D90677C97D5B0B0F292D0C1763','ARCHIVED','2022-03-30 04:28:42',0),
|
||
('2022_04_08_00_auth.sql','C0BE7634D6B84D860111AF5EEDF1D023875F3137','ARCHIVED','2022-04-08 21:01:16',0),
|
||
('2022_04_14_00_auth.sql','4D79D1C7282CA8F1626D957AF17E711BFF94334B','ARCHIVED','2022-04-14 04:39:49',0),
|
||
('2022_04_22_00_auth.sql','835EE2D6981AD7A7467490242D6A4B0E0B69E4F4','ARCHIVED','2022-04-22 20:04:53',0),
|
||
('2022_05_03_00_auth.sql','0874FBE9821F2659BA51B91E9D69B9E6CA6D2EC9','ARCHIVED','2022-05-03 11:07:21',0),
|
||
('2022_06_01_00_auth.sql','DCFC7EC6C52993769B568EAF87CA2DAA10359AEB','ARCHIVED','2022-06-02 00:52:17',0),
|
||
('2022_06_06_00_auth.sql','68D73F068598D37FD6FBC84362F1BA7BA4EC2709','ARCHIVED','2022-06-06 21:35:16',0),
|
||
('2022_06_07_00_auth.sql','76B4D21F13B0024445E5C0B48C630C1DF7E80966','ARCHIVED','2022-06-07 16:09:58',0),
|
||
('2022_06_08_00_auth.sql','250081465C76AC9668E3F66D386CE2AAC05379E9','ARCHIVED','2022-06-08 10:45:01',0),
|
||
('2022_06_09_00_auth.sql','29C2A4209FB977373440666F00B2E04F0E095247','ARCHIVED','2022-06-09 18:31:38',0),
|
||
('2022_06_15_00_auth.sql','137223C2750CC3559EFE11AFF1A780D5DA070193','ARCHIVED','2022-06-15 11:16:51',0),
|
||
('2022_06_18_00_auth.sql','63B75F9D79D83581AB3257C9EF86EDB626D8FDDA','ARCHIVED','2022-06-18 11:48:42',0),
|
||
('2022_06_27_00_auth.sql','CF613CCAAF8B6F08AAE1C48DBC4AF4D224291D8D','ARCHIVED','2022-06-27 21:13:58',0),
|
||
('2022_07_23_00_auth.sql','FEA7A8DA363F097A090F3BB39401C3FD7AE8E9B5','ARCHIVED','2022-07-25 18:40:38',0),
|
||
('2022_07_25_00_auth.sql','8F5BA8F7E010EDCA70F49FDE947B2F89476A2F95','ARCHIVED','2022-07-25 18:44:10',0),
|
||
('2022_08_02_00_auth.sql','4B97D20928B05086C7863497F4DDD408A51619BE','ARCHIVED','2022-08-02 18:28:31',0),
|
||
('2022_08_17_00_auth.sql','1A45DAE660690A7F4D0822C514116BF44A3185BB','ARCHIVED','2022-08-17 10:16:00',0),
|
||
('2022_08_19_00_auth.sql','332E7CC2E69D69BF274E5C61768FB80D1C217BDB','ARCHIVED','2022-08-19 09:52:06',0),
|
||
('2022_08_19_01_auth.sql','8B32826AE09C27B98C9480EF4D61205666F68318','ARCHIVED','2022-08-19 23:43:01',0),
|
||
('2022_08_21_00_auth.sql','5DEC0CB848F99D575B90356D82276749F2473B72','ARCHIVED','2022-08-21 00:02:03',0),
|
||
('2022_09_02_00_auth.sql','E2ED8B4B90829CFD283C9679AE265A9C9B2CF762','ARCHIVED','2022-09-02 15:52:22',0),
|
||
('2022_09_08_00_auth.sql','20B4503E316E042432AC25F7CEE9DCD9EDC631C6','ARCHIVED','2022-09-08 15:38:35',0),
|
||
('2022_09_23_00_auth.sql','F7DB1B903982D99295BC0D7D2BC205C5A2145F03','ARCHIVED','2022-09-23 03:44:55',0),
|
||
('2022_10_03_00_auth.sql','B956A37F71B42EB0289C2066A15D1F6C02F21E5A','ARCHIVED','2022-10-03 21:32:38',0),
|
||
('2022_11_20_00_auth.sql','37123D83589CFD96472D9187799C1F3FD67645DD','ARCHIVED','2022-11-20 11:05:20',0),
|
||
('2022_12_16_00_auth.sql','249B00480ACC8B67C908435748C202D8363C6EDE','ARCHIVED','2022-12-16 22:39:07',0),
|
||
('2022_12_17_00_auth.sql','0D3963AC2DBF74A4C8B88EA4A680C046FCCF8E70','ARCHIVED','2022-12-17 07:34:53',0),
|
||
('2022_12_17_01_auth.sql','5D1E2EA3C3CE087F7FB647CD0DE000979961863C','ARCHIVED','2022-12-17 13:09:19',0),
|
||
('2022_12_20_00_auth.sql','BA88146743B060A14937688C0DB94BF11C6CF1BA','ARCHIVED','2022-12-20 03:10:07',0),
|
||
('2022_12_21_00_auth.sql','B395CAE993D65E035AA621941D4C384E2E2E7DF5','ARCHIVED','2022-12-21 01:16:56',0),
|
||
('2022_12_22_00_auth.sql','BBF3CDD7927520F0381ECEF1F30152CBD5344D6A','ARCHIVED','2022-12-22 16:35:36',0),
|
||
('2023_01_17_00_auth.sql','EAEA99DF10DCC648C161D836FFA681D5B0F4CDC3','ARCHIVED','2023-01-17 18:41:32',0),
|
||
('2023_01_28_00_auth.sql','94A640018494B9203100178EC67A582987456B8B','ARCHIVED','2023-01-28 00:11:59',0),
|
||
('2023_01_28_01_auth.sql','4BDA614300858ADE6D58A119680724D867B0A355','ARCHIVED','2023-01-28 16:39:41',0),
|
||
('2023_02_01_00_auth.sql','9C1FB6820EF3A543AB7DE2E2913014AFF445F91E','ARCHIVED','2023-02-01 10:10:30',0),
|
||
('2023_02_02_00_auth.sql','8AC163759C83D887D5D7A48CFB8272FFBA71B801','ARCHIVED','2023-02-02 10:44:28',0),
|
||
('2023_02_03_00_auth.sql','0309A99757DE1FAE595C6C32586B2B8F8CA4C134','ARCHIVED','2023-02-03 01:13:52',0),
|
||
('2023_02_07_00_auth.sql','92D6C7A47B2F98ED93D62F6B7293D604C8F6BE16','ARCHIVED','2023-02-07 10:39:13',0),
|
||
('2023_02_09_00_auth.sql','F4B797776CA62D9A048D231C8117D51AA312932C','ARCHIVED','2023-02-09 00:19:27',0),
|
||
('2023_02_14_00_auth.sql','033F4460715121A8B6E9DD0F7456AE930DD18A7A','ARCHIVED','2023-02-14 10:02:49',0),
|
||
('2023_02_28_00_auth.sql','F57F70D6E1BBB1CB799E338C3358C265FD7F8689','ARCHIVED','2023-02-28 21:32:14',0),
|
||
('2023_03_08_00_auth.sql','2490CEA2EBDB0ECD3590F1D9328DD88266E179F3','ARCHIVED','2023-03-08 21:58:27',0),
|
||
('2023_03_11_00_auth.sql','6532C5E043692E7361689090DA19E6350705B591','ARCHIVED','2023-03-11 00:10:17',0),
|
||
('2023_03_22_00_auth.sql','C589D68CF88A62E03F2E797E03CF2F237371BD34','ARCHIVED','2023-03-21 18:12:28',0),
|
||
('2023_03_27_00_auth.sql','25B04268224275D0A90EF13E62460CBF61B90CEF','ARCHIVED','2023-03-27 21:22:59',0),
|
||
('2023_03_31_00_auth.sql','3F8CB31A261BCFE5C9A08B12945221CAA652AB24','ARCHIVED','2023-03-31 11:15:43',0),
|
||
('2023_03_31_01_auth.sql','A70E14B46537BC9208663B94EDF6CE51CB1B23BA','ARCHIVED','2023-03-31 23:16:09',0),
|
||
('2023_04_02_00_auth.sql','0238E0CE22D6422B19F648D026349A018CD4DB04','ARCHIVED','2023-04-02 01:02:26',0),
|
||
('2023_04_05_00_auth.sql','67317FC9DAA66EBF68468E60F99E1F6DD5B237E8','ARCHIVED','2023-04-05 10:39:51',0),
|
||
('2023_04_06_00_auth.sql','FECA06F32D077B1660D9FF8204D94F5C8E4065B4','ARCHIVED','2023-04-06 04:18:58',0),
|
||
('2023_04_12_00_auth.sql','E28F892FCC2A923683E5EEE24E98C618A9534318','ARCHIVED','2023-04-12 00:26:10',0),
|
||
('2023_04_25_00_auth.sql','AF297F37715F4A4C84E84182358C26CA83B0C655','ARCHIVED','2023-04-25 11:14:36',0),
|
||
('2023_04_28_00_auth.sql','779248686CB60F21CA7E9514E33B2D3E37C91B9E','ARCHIVED','2023-07-14 08:19:57',0),
|
||
('2023_05_04_00_auth.sql','1015EC7619C1F43B9FD70C8971F883D0CBF4D002','ARCHIVED','2023-05-04 16:02:32',0),
|
||
('2023_05_05_00_auth.sql','C0F435B417D238619DC390F52B27BA0E08DDE2CF','ARCHIVED','2023-05-05 00:55:38',0),
|
||
('2023_05_09_00_auth.sql','E14DC7567533284034ADCD74ED99486A4AD331AE','ARCHIVED','2023-05-09 01:07:29',0),
|
||
('2023_05_15_00_auth.sql','B2A9E5D5ECDC04C44136B4BAC7350AAF1522E916','ARCHIVED','2023-05-15 00:36:20',0),
|
||
('2023_05_23_00_auth.sql','C58C31ABA0AF08508B1946143746C44FB6ACB824','ARCHIVED','2023-05-23 09:23:42',0),
|
||
('2023_05_25_00_auth.sql','52C460A556EE08EF149E55E021AF0A9B5EC9AE13','ARCHIVED','2023-05-25 00:34:18',0),
|
||
('2023_05_27_00_auth.sql','C7B7718915274FC21BAE243D42D7419F67F93792','ARCHIVED','2023-05-27 12:10:20',0),
|
||
('2023_06_06_00_auth.sql','F327269C75DF6D09B3D7B33137681E0C1188120A','ARCHIVED','2023-06-06 00:50:17',0),
|
||
('2023_06_12_00_auth.sql','5BEE858205C3EDE75C5A5A1E46FBEE2257F97B83','ARCHIVED','2023-06-12 23:47:51',0),
|
||
('2023_07_12_00_auth.sql','E610FC5F0B1079070F69B5AAA6D6BDA5630B081F','ARCHIVED','2023-07-12 11:21:50',0),
|
||
('2023_07_13_00_auth.sql','BF718B6F8F2A324092D95BC1370120F0EE699BD2','ARCHIVED','2023-07-13 19:53:43',0),
|
||
('2023_07_14_00_auth.sql','B66CDB7EE7E554992BB2A9DAB3C16122411C81DF','ARCHIVED','2023-07-14 08:24:44',0),
|
||
('2023_07_14_01_auth.sql','8037C5101A08824DA6FE6B16E0004704DFC5B8FA','ARCHIVED','2023-07-14 19:35:41',0),
|
||
('2023_07_15_00_auth.sql','89D51F3E0EAAA957A7C0E4A4A7812505F61F12E6','ARCHIVED','2023-07-15 00:15:31',0),
|
||
('2023_07_19_00_auth.sql','8FE0EAB6C8DA5B060E95A9715F3D374340E361DD','ARCHIVED','2023-07-19 19:31:35',0),
|
||
('2023_07_22_00_auth.sql','38BDC8DE5697366E26588552830E34E420861008','ARCHIVED','2023-07-22 13:57:13',0),
|
||
('2023_07_28_00_auth.sql','1CC6C4E639ED9FD2EABFD0713C4D809C707E5E3F','ARCHIVED','2023-07-28 20:03:06',0),
|
||
('2023_08_03_00_auth.sql','57B92FF9D84AFE5F37A533F8F7187E26A708D8EE','ARCHIVED','2023-08-03 22:49:11',0),
|
||
('2023_08_09_00_auth.sql','3A0B9E91EB66D237785CD3F3CDFE5A6EAB33578E','ARCHIVED','2023-08-09 10:01:04',0),
|
||
('2023_08_31_00_auth.sql','3A2242F0755CCC7658F458847B12E308FE75A314','ARCHIVED','2023-08-31 19:06:27',0),
|
||
('2023_09_07_00_auth.sql','9127F7B6723477DE25886D451FE174ABF2039B94','ARCHIVED','2023-09-07 00:30:01',0),
|
||
('2023_09_08_00_auth.sql','AA4E52CC2344F503151C88284807E8B7319B7C69','ARCHIVED','2023-09-08 21:46:01',0),
|
||
('2023_09_13_00_auth.sql','49C44AE960C71C71DC9966D10D8DAA127976D22B','ARCHIVED','2023-09-13 00:30:28',0),
|
||
('2023_09_20_00_auth.sql','6B3EAEB21A617564907EE843FC43272F0C020760','ARCHIVED','2023-09-20 04:49:35',0),
|
||
('2023_09_23_00_auth.sql','B6250AE892CF5988FD4EB08EC35DE25096B52115','ARCHIVED','2023-09-23 01:57:24',0),
|
||
('2023_09_28_00_auth.sql','E69955264CD347921DDD1B52BC31E8C39EC41B21','ARCHIVED','2023-09-28 05:36:07',0),
|
||
('2023_10_06_00_auth.sql','3480687DEEB3E12ECC9632809A518425F9FA0FCC','ARCHIVED','2023-10-06 00:40:46',0),
|
||
('2023_10_17_00_auth.sql','EE4C430E9535EC3466E4D2FABA7F009F87AF18BD','ARCHIVED','2023-10-17 21:07:51',0),
|
||
('2023_10_25_00_auth.sql','86B16D5D78A8ED31FDD8553D223CF56F013B00DB','ARCHIVED','2023-10-25 00:06:14',0),
|
||
('2023_11_01_00_auth.sql','4EA6010E9035AFC80326FE56C642C7918254F2BE','ARCHIVED','2023-11-01 10:47:18',0),
|
||
('2023_11_09_00_auth.sql','C8A9223E6868593904634193ACBD421F40078FE5','ARCHIVED','2023-11-09 00:53:45',0),
|
||
('2023_11_09_01_auth.sql','BC9BC28D41608A78166B5A38F3A7F598FBDB879D','ARCHIVED','2023-11-09 18:21:59',0),
|
||
('2023_11_14_00_auth.sql','192D729737C5E3332D7B5B9B7F9DBDD9626D7B98','ARCHIVED','2023-11-14 11:36:05',0),
|
||
('2023_11_15_00_auth.sql','85CE6DCBE9391F0FB3819C7579067E2775D7C20E','ARCHIVED','2023-11-15 00:48:07',0),
|
||
('2023_11_15_01_auth.sql','622218EB74372055943D7B62AD30B52F959CC94B','ARCHIVED','2023-11-15 00:53:47',0),
|
||
('2023_11_16_00_auth.sql','2EF3FE83B74EFC10B8536E2EB6AFAE7074FC59BD','ARCHIVED','2023-11-16 23:19:09',0),
|
||
('2023_11_21_00_auth.sql','146E5E6EF94C5DB78343372A8FDB32B062B80040','ARCHIVED','2023-11-21 11:24:11',0),
|
||
('2023_11_24_00_auth.sql','AC1B5136CC97264A21933BD1074D02E88D819488','ARCHIVED','2023-11-24 19:37:38',0),
|
||
('2023_11_30_00_auth.sql','49E92311D7373965320CCEE3720D4EF9F1A28F97','ARCHIVED','2023-11-30 13:39:17',0),
|
||
('2023_12_05_00_auth.sql','25DC15C708E6A962DC322293D0CE5D52941F560A','ARCHIVED','2023-12-05 16:18:14',0),
|
||
('2023_12_12_00_auth.sql','EDC092787956178A08D15B9245EE4716ED0847B0','ARCHIVED','2023-12-12 05:47:47',0),
|
||
('2023_12_13_00_auth.sql','C3D6AA45BECD5A7F8A420FE0022AAF6A349C5E3F','ARCHIVED','2023-12-13 06:42:48',0),
|
||
('2023_12_19_00_auth.sql','EDC1C8E58EEF18F952A3509D40D27E17CAC49563','ARCHIVED','2024-02-08 00:48:00',0),
|
||
('2023_12_21_00_auth.sql','DB294EF35C00AA92C79786F7A0BFBCE739D4E193','ARCHIVED','2023-12-21 09:08:30',0),
|
||
('2023_12_24_00_auth.sql','F59B3A895750FD83177324B89BFCEBD8A43DD577','ARCHIVED','2023-12-24 06:24:58',0),
|
||
('2023_12_26_00_auth.sql','5C8716F7F6E2792E15A42BDA8F2D855A7DE95FC5','ARCHIVED','2023-12-26 13:38:58',0),
|
||
('2024_01_05_00_auth.sql','7F401D473B08BBE5212551E96A86F85107CE7C8E','ARCHIVED','2023-12-19 10:05:39',0),
|
||
('2024_01_10_00_auth.sql','75F06894D95986AEAB2933F141DB7693FABB0324','ARCHIVED','2024-01-10 11:14:55',0),
|
||
('2024_01_21_00_auth.sql','5F12B88EAADC5390AD42843290BD13CEF3BF2E0B','ARCHIVED','2024-01-21 21:21:50',0),
|
||
('2024_01_23_00_auth.sql','55E3C2CC1FAF02916EB47711CD2278443F7AA183','ARCHIVED','2024-01-23 09:40:35',0),
|
||
('2024_01_31_00_auth.sql','7328692BBD9B455D51ABE90B9C6571EA889EE26F','ARCHIVED','2024-01-31 11:58:00',0),
|
||
('2024_02_01_00_auth.sql','1822B9B3E28AB0E77CF253C6A96F78EB5020447A','ARCHIVED','2024-02-01 10:46:27',0),
|
||
('2024_02_07_00_auth.sql','F6A65673A7020B4C64083AFC1CAD4206BC960170','ARCHIVED','2024-02-07 12:26:24',0),
|
||
('2024_02_08_00_auth.sql','E62D51C3D536FDF79EBEDFE060EB9D232ACE1EDD','ARCHIVED','2024-02-08 00:56:26',0),
|
||
('2024_02_08_01_auth.sql','9972EE1527DFC182527FA3C1AC086B189574BDF0','ARCHIVED','2024-02-08 22:32:41',0),
|
||
('2024_02_24_00_auth.sql','BEB6F94703C4574088289DFFC8E7660D223E2841','ARCHIVED','2024-02-24 00:27:13',0),
|
||
('2024_03_05_00_auth.sql','61341FABF7243FBCBB6BDE35CECE1F7DFD988F26','ARCHIVED','2024-03-05 20:43:51',0),
|
||
('2024_03_21_00_auth.sql','5D4F3479B0F4E16E59B1CC9EB21E5CE5531555B9','ARCHIVED','2024-03-21 16:56:21',0),
|
||
('2024_03_22_00_auth.sql','4F184E4BF361195C560A569E57A6FF6429077849','ARCHIVED','2024-03-22 20:29:29',0),
|
||
('2024_03_25_00_auth.sql','B4EF57DE84195E0B886B070ACE58B66853FFC52C','ARCHIVED','2024-03-25 23:20:57',0),
|
||
('2024_03_29_00_auth.sql','F1F62C913F5DFB277DB3D1258022EC334EFC419B','ARCHIVED','2024-03-29 10:49:54',0),
|
||
('2024_04_08_00_auth.sql','B05516DB306A06982206180A2A18407D9E0012DE','ARCHIVED','2024-04-08 21:56:33',0),
|
||
('2024_04_12_00_auth.sql','3D2DCEA21AE5104EF192CACAAFBB5131AD355791','ARCHIVED','2024-04-12 12:07:49',0),
|
||
('2024_04_22_00_auth.sql','83566EA54235D588697D747D8130CD6D37445CC5','ARCHIVED','2024-04-22 23:05:46',0),
|
||
('2024_05_01_00_auth.sql','2A1C2B4E54706BDD1FDD57AFB943058BEE8D8852','ARCHIVED','2024-05-01 21:32:43',0),
|
||
('2024_05_08_00_auth.sql','F2EEE0D225CB82DBB3A478E0BF6A0116C9265355','ARCHIVED','2024-05-08 20:35:53',0),
|
||
('2024_05_10_00_auth.sql','8A6E48012413EA769601A8E4C9F82BEFBE1FCA5C','ARCHIVED','2024-05-10 00:50:46',0),
|
||
('2024_05_11_00_auth.sql','8D703BE97247DBC4A4935EAEA9CB681B0EEFBB3C','ARCHIVED','2024-05-11 03:06:52',0),
|
||
('2024_05_14_00_auth.sql','C36612C0215E255E1D4917876FD52C8F1F9BCDA7','ARCHIVED','2024-05-14 03:39:01',0),
|
||
('2024_05_16_00_auth.sql','5980F77073B6AD55ABCF0F9735408A4F35C97159','ARCHIVED','2024-05-16 08:13:11',0),
|
||
('2024_05_17_00_auth.sql','E02B96055C887BED76442B2C3C49C51659BCC602','ARCHIVED','2024-05-17 14:24:15',0),
|
||
('2024_05_18_00_auth.sql','C3392BDA5AAC304AD72BAC631DA1C9802D20EDAC','ARCHIVED','2024-05-18 01:52:01',0),
|
||
('2024_05_25_00_auth.sql','A34E299F5D75535D17C6295023910539897D1392','ARCHIVED','2024-05-25 12:10:08',0),
|
||
('2024_05_29_00_auth.sql','6F42C6565CB748E3C1231F4EA0A6D04F2F95C0A3','ARCHIVED','2024-05-29 19:12:53',0),
|
||
('2024_06_05_00_auth.sql','B6306773C94879872E0B3FDAFE12ECDEA4C9264F','ARCHIVED','2024-06-05 09:37:55',0),
|
||
('2024_06_15_00_auth.sql','FDF2F29F5AB0213C9C2AB937852F0BAE552CFDCE','ARCHIVED','2024-06-15 00:01:40',0),
|
||
('2024_06_17_00_auth.sql','3781820B8F3B238F89BC8E83EC164B767A63BBB3','ARCHIVED','2024-06-17 22:34:47',0),
|
||
('2024_06_26_00_auth.sql','428762D840B37F2569FC477E0B5B452C7E98B301','ARCHIVED','2024-06-26 13:59:17',0),
|
||
('2024_07_09_00_auth.sql','C58A8D47CAFA34055EEB079E72AA820EF7C55368','ARCHIVED','2024-07-09 12:00:23',0),
|
||
('2024_07_16_00_auth.sql','4161C07EACA71CE3D0269D2067563594D26DEC27','ARCHIVED','2024-07-16 19:02:24',0),
|
||
('2024_08_02_00_auth.sql','6BE2A6DA2F2BE21B18396F120427E973F1CAA58F','ARCHIVED','2024-08-02 00:45:10',0),
|
||
('2024_08_07_00_auth.sql','88070C3A95DE7242B3E3662D7B5B9648128DC187','ARCHIVED','2024-08-07 01:06:23',0),
|
||
('2024_08_09_00_auth.sql','854C24AAF0B3F673DAD8C0F3059DB266B0F34488','ARCHIVED','2024-08-09 15:40:42',0),
|
||
('2024_08_15_00_auth.sql','06E9AD907DC2B2CC0CF78414AB516BBA3ED0CE65','ARCHIVED','2024-08-15 19:40:50',0),
|
||
('2024_08_17_00_auth.sql','3584B5A910334447D6E948DBAA0EEC43C42FE631','ARCHIVED','2024-08-17 15:17:22',0),
|
||
('2024_08_18_00_auth.sql','5C1D0A3FE0245F4030FE446288AE533556EC6C9E','ARCHIVED','2024-08-17 23:01:21',0),
|
||
('2024_08_21_00_auth.sql','6F2844107F0501E7631C8196CC04E75853381319','ARCHIVED','2024-08-21 15:25:46',0),
|
||
('2024_08_22_00_auth.sql','D5466F5E9D1475323ED90553361D7F7B4CF83BF7','ARCHIVED','2024-08-22 23:35:36',0),
|
||
('2024_08_23_00_auth.sql','A591DA576EAEA3F48AB9E8269A2E4071B2C3C930','ARCHIVED','2024-08-23 17:35:52',0),
|
||
('2024_08_23_01_auth.sql','1ABD54E76B2D6712BF3DE06DD60A18C38BCF9CF1','ARCHIVED','2024-08-23 19:59:36',0),
|
||
('2024_08_24_00_auth.sql','6D2CE419F8E8512051B63D0F68B30BAA769F9D4A','ARCHIVED','2024-08-24 10:23:33',0),
|
||
('2024_08_28_00_auth.sql','F39CA1C18CAC207418C3D3703DA0F038471D308A','ARCHIVED','2024-08-28 10:50:31',0),
|
||
('2024_08_28_01_auth.sql','BC5D74553AF2D92606F55C1C462D2700FE73BD34','ARCHIVED','2024-08-28 14:55:05',0),
|
||
('2024_08_30_00_auth.sql','BD76942F1C29AAA2450E051E7CA552672B5E331B','ARCHIVED','2024-08-30 19:24:30',0),
|
||
('2024_08_30_01_auth.sql','0AAC95A9216114177AF0A3A7DE664D061FED21EA','ARCHIVED','2024-08-30 22:23:08',0),
|
||
('2024_08_31_00_auth.sql','D10F12D25D526A2C5E12FCEA2DEB55C342879F06','ARCHIVED','2024-08-31 10:32:16',0),
|
||
('2024_08_31_01_auth.sql','3ADC34DAE405697983EDDD32D0F3FC6F122CA819','ARCHIVED','2024-09-01 15:48:43',0),
|
||
('2024_09_03_00_auth.sql','BF65B550256CA64F0936D98A619E8A2A7E7A9B59','ARCHIVED','2024-09-03 00:47:42',0);
|
||
/*!40000 ALTER TABLE `updates` ENABLE KEYS */;
|
||
UNLOCK TABLES;
|
||
|
||
--
|
||
-- Table structure for table `updates_include`
|
||
--
|
||
|
||
DROP TABLE IF EXISTS `updates_include`;
|
||
/*!40101 SET @saved_cs_client = @@character_set_client */;
|
||
/*!50503 SET character_set_client = utf8mb4 */;
|
||
CREATE TABLE `updates_include` (
|
||
`path` varchar(200) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL COMMENT 'directory to include. $ means relative to the source directory.',
|
||
`state` enum('RELEASED','ARCHIVED') CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'RELEASED' COMMENT 'defines if the directory contains released or archived updates.',
|
||
PRIMARY KEY (`path`)
|
||
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci COMMENT='List of directories where we want to include sql updates.';
|
||
/*!40101 SET character_set_client = @saved_cs_client */;
|
||
|
||
--
|
||
-- Dumping data for table `updates_include`
|
||
--
|
||
|
||
LOCK TABLES `updates_include` WRITE;
|
||
/*!40000 ALTER TABLE `updates_include` DISABLE KEYS */;
|
||
INSERT INTO `updates_include` VALUES
|
||
('$/sql/custom/auth','RELEASED'),
|
||
('$/sql/old/10.x/auth','ARCHIVED'),
|
||
('$/sql/old/11.x/auth','ARCHIVED'),
|
||
('$/sql/old/6.x/auth','ARCHIVED'),
|
||
('$/sql/old/7/auth','ARCHIVED'),
|
||
('$/sql/old/8.x/auth','ARCHIVED'),
|
||
('$/sql/old/9.x/auth','ARCHIVED'),
|
||
('$/sql/updates/auth','RELEASED');
|
||
/*!40000 ALTER TABLE `updates_include` ENABLE KEYS */;
|
||
UNLOCK TABLES;
|
||
|
||
--
|
||
-- Table structure for table `uptime`
|
||
--
|
||
|
||
DROP TABLE IF EXISTS `uptime`;
|
||
/*!40101 SET @saved_cs_client = @@character_set_client */;
|
||
/*!50503 SET character_set_client = utf8mb4 */;
|
||
CREATE TABLE `uptime` (
|
||
`realmid` int unsigned NOT NULL,
|
||
`starttime` int unsigned NOT NULL DEFAULT '0',
|
||
`uptime` int unsigned NOT NULL DEFAULT '0',
|
||
`maxplayers` smallint unsigned NOT NULL DEFAULT '0',
|
||
`revision` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'Trinitycore',
|
||
PRIMARY KEY (`realmid`,`starttime`)
|
||
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci COMMENT='Uptime system';
|
||
/*!40101 SET character_set_client = @saved_cs_client */;
|
||
|
||
--
|
||
-- Dumping data for table `uptime`
|
||
--
|
||
|
||
LOCK TABLES `uptime` WRITE;
|
||
/*!40000 ALTER TABLE `uptime` DISABLE KEYS */;
|
||
/*!40000 ALTER TABLE `uptime` ENABLE KEYS */;
|
||
UNLOCK TABLES;
|
||
|
||
--
|
||
-- Temporary view structure for view `vw_log_history`
|
||
--
|
||
|
||
DROP TABLE IF EXISTS `vw_log_history`;
|
||
/*!50001 DROP VIEW IF EXISTS `vw_log_history`*/;
|
||
SET @saved_cs_client = @@character_set_client;
|
||
/*!50503 SET character_set_client = utf8mb4 */;
|
||
/*!50001 CREATE VIEW `vw_log_history` AS SELECT
|
||
1 AS `First Logged`,
|
||
1 AS `Last Logged`,
|
||
1 AS `Occurrences`,
|
||
1 AS `Realm`,
|
||
1 AS `type`,
|
||
1 AS `level`,
|
||
1 AS `string`*/;
|
||
SET character_set_client = @saved_cs_client;
|
||
|
||
--
|
||
-- Temporary view structure for view `vw_rbac`
|
||
--
|
||
|
||
DROP TABLE IF EXISTS `vw_rbac`;
|
||
/*!50001 DROP VIEW IF EXISTS `vw_rbac`*/;
|
||
SET @saved_cs_client = @@character_set_client;
|
||
/*!50503 SET character_set_client = utf8mb4 */;
|
||
/*!50001 CREATE VIEW `vw_rbac` AS SELECT
|
||
1 AS `Permission ID`,
|
||
1 AS `Permission Group`,
|
||
1 AS `Security Level`,
|
||
1 AS `Permission`*/;
|
||
SET character_set_client = @saved_cs_client;
|
||
|
||
--
|
||
-- Dumping routines for database 'auth'
|
||
--
|
||
|
||
--
|
||
-- Final view structure for view `vw_log_history`
|
||
--
|
||
|
||
/*!50001 DROP VIEW IF EXISTS `vw_log_history`*/;
|
||
/*!50001 SET @saved_cs_client = @@character_set_client */;
|
||
/*!50001 SET @saved_cs_results = @@character_set_results */;
|
||
/*!50001 SET @saved_col_connection = @@collation_connection */;
|
||
/*!50001 SET character_set_client = utf8mb4 */;
|
||
/*!50001 SET character_set_results = utf8mb4 */;
|
||
/*!50001 SET collation_connection = utf8mb4_unicode_ci */;
|
||
/*!50001 CREATE ALGORITHM=UNDEFINED */
|
||
/*!50013 */
|
||
/*!50001 VIEW `vw_log_history` AS select from_unixtime(min(`logs`.`time`)) AS `First Logged`,from_unixtime(max(`logs`.`time`)) AS `Last Logged`,count(0) AS `Occurrences`,`realmlist`.`name` AS `Realm`,`logs`.`type` AS `type`,`logs`.`level` AS `level`,`logs`.`string` AS `string` from (`logs` left join `realmlist` on((`logs`.`realm` = `realmlist`.`id`))) group by `logs`.`string`,`logs`.`type`,`logs`.`realm` */;
|
||
/*!50001 SET character_set_client = @saved_cs_client */;
|
||
/*!50001 SET character_set_results = @saved_cs_results */;
|
||
/*!50001 SET collation_connection = @saved_col_connection */;
|
||
|
||
--
|
||
-- Final view structure for view `vw_rbac`
|
||
--
|
||
|
||
/*!50001 DROP VIEW IF EXISTS `vw_rbac`*/;
|
||
/*!50001 SET @saved_cs_client = @@character_set_client */;
|
||
/*!50001 SET @saved_cs_results = @@character_set_results */;
|
||
/*!50001 SET @saved_col_connection = @@collation_connection */;
|
||
/*!50001 SET character_set_client = utf8mb3 */;
|
||
/*!50001 SET character_set_results = utf8mb3 */;
|
||
/*!50001 SET collation_connection = utf8mb3_general_ci */;
|
||
/*!50001 CREATE ALGORITHM=UNDEFINED */
|
||
/*!50013 */
|
||
/*!50001 VIEW `vw_rbac` AS select `t1`.`linkedId` AS `Permission ID`,`t1`.`id` AS `Permission Group`,ifnull(`t2`.`secId`,'linked') AS `Security Level`,`t3`.`name` AS `Permission` from ((`rbac_linked_permissions` `t1` left join `rbac_default_permissions` `t2` on((`t1`.`id` = `t2`.`permissionId`))) left join `rbac_permissions` `t3` on((`t1`.`linkedId` = `t3`.`id`))) */;
|
||
/*!50001 SET character_set_client = @saved_cs_client */;
|
||
/*!50001 SET character_set_results = @saved_cs_results */;
|
||
/*!50001 SET collation_connection = @saved_col_connection */;
|
||
/*!40103 SET TIME_ZONE=@OLD_TIME_ZONE */;
|
||
|
||
/*!40101 SET SQL_MODE=@OLD_SQL_MODE */;
|
||
/*!40014 SET FOREIGN_KEY_CHECKS=@OLD_FOREIGN_KEY_CHECKS */;
|
||
/*!40014 SET UNIQUE_CHECKS=@OLD_UNIQUE_CHECKS */;
|
||
/*!40101 SET CHARACTER_SET_CLIENT=@OLD_CHARACTER_SET_CLIENT */;
|
||
/*!40101 SET CHARACTER_SET_RESULTS=@OLD_CHARACTER_SET_RESULTS */;
|
||
/*!40101 SET COLLATION_CONNECTION=@OLD_COLLATION_CONNECTION */;
|
||
/*!40111 SET SQL_NOTES=@OLD_SQL_NOTES */;
|
||
|
||
-- Dump completed on 2024-09-03 0:47:44
|