· 5 years ago · Mar 23, 2020, 12:24 PM
1/*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */;
2/*!40101 SET NAMES utf8 */;
3/*!50503 SET NAMES utf8mb4 */;
4/*!40014 SET @OLD_FOREIGN_KEY_CHECKS=@@FOREIGN_KEY_CHECKS, FOREIGN_KEY_CHECKS=0 */;
5/*!40101 SET @OLD_SQL_MODE=@@SQL_MODE, SQL_MODE='NO_AUTO_VALUE_ON_ZERO' */;
6
7CREATE DATABASE IF NOT EXISTS `essentialmode_new` /*!40100 DEFAULT CHARACTER SET latin1 */;
8USE `essentialmode_new`;
9
10CREATE TABLE IF NOT EXISTS `addon_account` (
11 `id` int(11) NOT NULL AUTO_INCREMENT,
12 `name` varchar(255) COLLATE utf8mb4_bin NOT NULL,
13 `label` varchar(255) COLLATE utf8mb4_bin NOT NULL,
14 `shared` int(11) NOT NULL,
15 PRIMARY KEY (`id`)
16) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_bin;
17
18/*!40000 ALTER TABLE `addon_account` DISABLE KEYS */;
19INSERT INTO `addon_account` (`id`, `name`, `label`, `shared`) VALUES
20 (1, 'caution', 'caution', 0),
21 (2, 'society_realestateagent', 'Agent immobilier', 1),
22 (3, 'property_black_money', 'Money Sale Property', 0),
23 (5, 'society_cardealer', 'Concessionnaire', 1),
24 (6, 'society_ambulance', 'Ambulance', 1),
25 (7, 'society_police', 'Police', 1),
26 (11, 'society_mecano', 'Mechanic', 1),
27 (16, 'society_cartel', 'Merryweather Security', 1);
28/*!40000 ALTER TABLE `addon_account` ENABLE KEYS */;
29
30CREATE TABLE IF NOT EXISTS `addon_account_data` (
31 `id` int(11) NOT NULL AUTO_INCREMENT,
32 `account_name` varchar(255) COLLATE utf8mb4_bin DEFAULT NULL,
33 `money` double NOT NULL,
34 `owner` varchar(255) COLLATE utf8mb4_bin DEFAULT NULL,
35 PRIMARY KEY (`id`)
36) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_bin;
37
38/*!40000 ALTER TABLE `addon_account_data` DISABLE KEYS */;
39INSERT INTO `addon_account_data` (`id`, `account_name`, `money`, `owner`) VALUES
40 (343, 'society_realestateagent', 0, NULL),
41 (344, 'society_cardealer', 0, NULL),
42 (345, 'society_ambulance', 0, NULL),
43 (346, 'society_police', 0, NULL),
44 (350, 'society_mecano', 0, NULL),
45 (353, 'bank_savings', 0, NULL),
46 (354, 'property_black_money', 0, NULL),
47 (355, 'caution', 0, NULL),
48 (356, 'society_cartel', 0, NULL),
49 (621, 'caution', 0, 'steam:1100001075ca00d'),
50 (622, 'property_black_money', 0, 'steam:1100001075ca00d'),
51 (623, 'property_black_money', 0, 'steam:11000010665ec90'),
52 (624, 'caution', 0, 'steam:11000010665ec90'),
53 (625, 'caution', 0, 'steam:11000010ba2a250'),
54 (626, 'property_black_money', 0, 'steam:11000010ba2a250'),
55 (627, 'property_black_money', 0, 'steam:11000010fbf8e44'),
56 (628, 'caution', 0, 'steam:11000010fbf8e44'),
57 (629, 'property_black_money', 0, 'steam:11000010554fe60'),
58 (630, 'caution', 0, 'steam:11000010554fe60'),
59 (631, 'property_black_money', 0, 'steam:11000010a4a72a5'),
60 (632, 'caution', 0, 'steam:11000010a4a72a5');
61/*!40000 ALTER TABLE `addon_account_data` ENABLE KEYS */;
62
63CREATE TABLE IF NOT EXISTS `addon_inventory` (
64 `id` int(11) NOT NULL AUTO_INCREMENT,
65 `name` varchar(255) COLLATE utf8mb4_bin NOT NULL,
66 `label` varchar(255) COLLATE utf8mb4_bin NOT NULL,
67 `shared` int(11) NOT NULL,
68 PRIMARY KEY (`id`)
69) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_bin;
70
71/*!40000 ALTER TABLE `addon_inventory` DISABLE KEYS */;
72INSERT INTO `addon_inventory` (`id`, `name`, `label`, `shared`) VALUES
73 (1, 'property', 'Property', 0),
74 (2, 'society_cardealer', 'Concesionnaire', 1),
75 (7, 'society_mecano', 'Mechanic', 1),
76 (8, 'society_police', 'Police', 1),
77 (10, 'society_cartel', 'Merryweather Security', 1);
78/*!40000 ALTER TABLE `addon_inventory` ENABLE KEYS */;
79
80CREATE TABLE IF NOT EXISTS `addon_inventory_items` (
81 `id` int(11) NOT NULL AUTO_INCREMENT,
82 `inventory_name` varchar(255) COLLATE utf8mb4_bin NOT NULL,
83 `name` varchar(255) COLLATE utf8mb4_bin NOT NULL,
84 `count` int(11) NOT NULL,
85 `owner` varchar(60) COLLATE utf8mb4_bin DEFAULT NULL,
86 PRIMARY KEY (`id`)
87) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_bin;
88
89/*!40000 ALTER TABLE `addon_inventory_items` DISABLE KEYS */;
90/*!40000 ALTER TABLE `addon_inventory_items` ENABLE KEYS */;
91
92CREATE TABLE IF NOT EXISTS `banlist` (
93 `identifier` varchar(50) COLLATE utf8mb4_bin NOT NULL,
94 `license` varchar(50) COLLATE utf8mb4_bin DEFAULT NULL,
95 `playerip` varchar(50) COLLATE utf8mb4_bin DEFAULT NULL,
96 `targetplayername` varchar(32) COLLATE utf8mb4_bin NOT NULL,
97 `sourceplayername` varchar(32) COLLATE utf8mb4_bin NOT NULL,
98 `reason` varchar(255) COLLATE utf8mb4_bin NOT NULL,
99 `timeat` varchar(50) COLLATE utf8mb4_bin NOT NULL,
100 `added` datetime DEFAULT current_timestamp(),
101 `expiration` varchar(50) COLLATE utf8mb4_bin NOT NULL,
102 `permanent` int(1) NOT NULL DEFAULT 0,
103 PRIMARY KEY (`identifier`)
104) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_bin;
105
106/*!40000 ALTER TABLE `banlist` DISABLE KEYS */;
107/*!40000 ALTER TABLE `banlist` ENABLE KEYS */;
108
109CREATE TABLE IF NOT EXISTS `banlisthistory` (
110 `id` int(11) NOT NULL AUTO_INCREMENT,
111 `identifier` varchar(50) COLLATE utf8mb4_bin NOT NULL,
112 `license` varchar(50) COLLATE utf8mb4_bin DEFAULT NULL,
113 `playerip` varchar(50) COLLATE utf8mb4_bin DEFAULT NULL,
114 `targetplayername` varchar(32) COLLATE utf8mb4_bin NOT NULL,
115 `sourceplayername` varchar(32) COLLATE utf8mb4_bin NOT NULL,
116 `reason` varchar(255) COLLATE utf8mb4_bin NOT NULL,
117 `timeat` int(11) NOT NULL,
118 `added` datetime DEFAULT current_timestamp(),
119 `expiration` int(11) NOT NULL,
120 `permanent` int(1) NOT NULL DEFAULT 0,
121 PRIMARY KEY (`id`)
122) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_bin;
123
124/*!40000 ALTER TABLE `banlisthistory` DISABLE KEYS */;
125/*!40000 ALTER TABLE `banlisthistory` ENABLE KEYS */;
126
127CREATE TABLE IF NOT EXISTS `beforeduty` (
128 `ID` int(11) NOT NULL AUTO_INCREMENT,
129 `identifier` varchar(50) DEFAULT NULL,
130 `inventory` longtext DEFAULT NULL,
131 PRIMARY KEY (`ID`)
132) ENGINE=MyISAM DEFAULT CHARSET=latin1;
133
134/*!40000 ALTER TABLE `beforeduty` DISABLE KEYS */;
135/*!40000 ALTER TABLE `beforeduty` ENABLE KEYS */;
136
137CREATE TABLE IF NOT EXISTS `billing` (
138 `id` int(11) NOT NULL AUTO_INCREMENT,
139 `identifier` varchar(255) COLLATE utf8mb4_bin NOT NULL,
140 `sender` varchar(255) COLLATE utf8mb4_bin NOT NULL,
141 `target_type` varchar(50) COLLATE utf8mb4_bin NOT NULL,
142 `target` varchar(255) COLLATE utf8mb4_bin NOT NULL,
143 `label` varchar(255) COLLATE utf8mb4_bin NOT NULL,
144 `amount` int(11) NOT NULL,
145 PRIMARY KEY (`id`)
146) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_bin;
147
148/*!40000 ALTER TABLE `billing` DISABLE KEYS */;
149INSERT INTO `billing` (`id`, `identifier`, `sender`, `target_type`, `target`, `label`, `amount`) VALUES
150 (28, 'steam:11000010a62837e', 'steam:11000010665ec90', 'society', 'society_police', 'Fine: Verbal Threat towards an LEO', 150),
151 (37, 'steam:11000010e302953', 'steam:11000010b24ff5d', 'society', 'society_mecano', 'Mechanic station', 2000),
152 (38, 'steam:11000010e6b51e4', 'steam:11000010b24ff5d', 'society', 'society_mecano', 'Mechanic station', 2000),
153 (39, 'steam:11000010e6b51e4', 'steam:11000010b24ff5d', 'society', 'society_mecano', 'Mechanic station', 2000),
154 (68, 'steam:11000010e6b51e4', 'steam:11000010b24ff5d', 'society', 'society_mecano', 'Mechanic station', 500),
155 (81, 'steam:1100001159617a3', 'steam:11000010c294c27', 'society', 'society_police', 'Fine: Exceeding Speeds Over > 30 mph', 300),
156 (84, 'steam:110000111ac97fe', 'steam:11000010e6b51e4', 'society', 'society_police', 'Fine: Exceeding Speeds Over 5-15 mph', 120),
157 (86, 'steam:110000107763c99', 'steam:11000010b24ff5d', 'society', 'society_mecano', 'Mechanic station', 250),
158 (87, 'steam:110000102b1aac5', 'steam:11000010b24ff5d', 'society', 'society_mecano', 'Mechanic station', 250),
159 (90, 'steam:110000111ac97fe', 'steam:110000107763c99', 'society', 'society_police', 'Fine: Illegal U-Turn', 250),
160 (91, 'steam:110000111ac97fe', 'steam:110000107763c99', 'society', 'society_police', 'Fine: Driving without a License', 1500),
161 (92, 'steam:110000105b79d51', 'steam:11000011a38739f', 'society', 'society_mecano', 'Mechanic station', 1999),
162 (93, 'steam:110000105b79d51', 'steam:11000011a38739f', 'society', 'society_police', 'Fine: Exceeding Speeds Over 5-15 mph', 120),
163 (94, 'steam:110000105b79d51', 'steam:11000011a38739f', 'society', 'society_police', 'Fine: Public Intoxication', 90),
164 (95, 'steam:110000105b79d51', 'steam:11000011a38739f', 'society', 'society_police', 'Fine: Impeding traffic flow', 110),
165 (96, 'steam:110000105b79d51', 'steam:11000011a38739f', 'society', 'society_police', 'Fine: Brandishing a weapon in city Limits', 120),
166 (97, 'steam:110000105b79d51', 'steam:11000011a38739f', 'society', 'society_police', 'Fine: Brandishing a weapon in city Limits', 120),
167 (98, 'steam:110000105b79d51', 'steam:11000011a38739f', 'society', 'society_police', 'Fine: Brandishing a weapon in city Limits', 120),
168 (99, 'steam:110000105b79d51', 'steam:11000011a38739f', 'society', 'society_police', 'Fine: Brandishing a weapon in city Limits', 120),
169 (100, 'steam:110000105b79d51', 'steam:11000011a38739f', 'society', 'society_police', 'Fine: Brandishing a weapon in city Limits', 120),
170 (101, 'steam:110000105b79d51', 'steam:11000011a38739f', 'society', 'society_police', 'Fine: Brandishing a weapon in city Limits', 120),
171 (102, 'steam:110000105b79d51', 'steam:11000011a38739f', 'society', 'society_police', 'Fine: Brandishing a weapon in city Limits', 120),
172 (103, 'steam:110000105b79d51', 'steam:11000011a38739f', 'society', 'society_police', 'Fine: Brandishing a weapon in city Limits', 120),
173 (104, 'steam:110000105b79d51', 'steam:11000011a38739f', 'society', 'society_police', 'Fine: Brandishing a weapon in city Limits', 120),
174 (105, 'steam:110000105b79d51', 'steam:11000011a38739f', 'society', 'society_police', 'Fine: Brandishing a weapon in city Limits', 120),
175 (106, 'steam:110000105b79d51', 'steam:11000011a38739f', 'society', 'society_police', 'Fine: Brandishing a weapon in city Limits', 120),
176 (107, 'steam:110000105b79d51', 'steam:11000011a38739f', 'society', 'society_police', 'Fine: Brandishing a weapon in city Limits', 120);
177/*!40000 ALTER TABLE `billing` ENABLE KEYS */;
178
179CREATE TABLE IF NOT EXISTS `characters` (
180 `id` int(11) NOT NULL AUTO_INCREMENT,
181 `identifier` varchar(255) COLLATE utf8mb4_bin NOT NULL,
182 `firstname` varchar(255) COLLATE utf8mb4_bin NOT NULL,
183 `lastname` varchar(255) COLLATE utf8mb4_bin NOT NULL,
184 `dateofbirth` varchar(255) COLLATE utf8mb4_bin NOT NULL,
185 `sex` varchar(1) COLLATE utf8mb4_bin NOT NULL DEFAULT 'f',
186 `height` varchar(128) COLLATE utf8mb4_bin NOT NULL,
187 PRIMARY KEY (`id`)
188) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_bin;
189
190/*!40000 ALTER TABLE `characters` DISABLE KEYS */;
191INSERT INTO `characters` (`id`, `identifier`, `firstname`, `lastname`, `dateofbirth`, `sex`, `height`) VALUES
192 (417, 'steam:1100001075ca00d', 'Maffias', 'Wetknee', '1999-09-18', 'M', '192'),
193 (418, 'steam:11000010665ec90', 'Archie', 'Tyrone', '1989-01-05', 'M', '50'),
194 (419, 'steam:11000010ba2a250', 'Yteet', 'Skeet', '1995-04-12', 'M', '67'),
195 (420, 'steam:11000010fbf8e44', 'Mr', 'K', '1999-01-13', 'M', '123'),
196 (421, 'steam:11000010665ec90', 'Archie', 'Tyrone', '1980-01-01', 'M', '50'),
197 (422, 'steam:1100001075ca00d', 'Maffias', 'Wetknee', '1999-09-18', 'M', '192'),
198 (423, 'steam:11000010554fe60', 'Weasley', 'Wells', '1995-01-01', 'M', '85');
199/*!40000 ALTER TABLE `characters` ENABLE KEYS */;
200
201CREATE TABLE IF NOT EXISTS `datastore` (
202 `id` int(11) NOT NULL AUTO_INCREMENT,
203 `name` varchar(255) COLLATE utf8mb4_bin NOT NULL,
204 `label` varchar(255) COLLATE utf8mb4_bin NOT NULL,
205 `shared` int(11) NOT NULL,
206 PRIMARY KEY (`id`)
207) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_bin;
208
209/*!40000 ALTER TABLE `datastore` DISABLE KEYS */;
210INSERT INTO `datastore` (`id`, `name`, `label`, `shared`) VALUES
211 (1, 'property', 'Property', 0),
212 (3, 'society_police', 'Police', 1),
213 (4, 'society_mafia', 'Mafia', 1),
214 (5, 'society_gang', 'Gang', 1),
215 (6, 'society_biker', 'Biker', 1),
216 (7, 'society_police', 'Police', 1),
217 (8, 'society_grove', 'Grove', 1),
218 (9, 'society_cartel', 'Merryweather Security', 1);
219/*!40000 ALTER TABLE `datastore` ENABLE KEYS */;
220
221CREATE TABLE IF NOT EXISTS `datastore_data` (
222 `id` int(11) NOT NULL AUTO_INCREMENT,
223 `name` varchar(255) COLLATE utf8mb4_bin NOT NULL,
224 `owner` varchar(255) COLLATE utf8mb4_bin DEFAULT NULL,
225 `data` longtext COLLATE utf8mb4_bin DEFAULT NULL,
226 PRIMARY KEY (`id`)
227) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_bin;
228
229/*!40000 ALTER TABLE `datastore_data` DISABLE KEYS */;
230INSERT INTO `datastore_data` (`id`, `name`, `owner`, `data`) VALUES
231 (121, 'society_police', NULL, '{}'),
232 (122, 'society_mafia', NULL, '{}'),
233 (123, 'society_gang', NULL, '{}'),
234 (124, 'society_biker', NULL, '{}'),
235 (125, 'society_grove', NULL, '{}'),
236 (127, 'society_cartel', NULL, '{}'),
237 (8418, 'property', 'steam:1100001075ca00d', '{}'),
238 (8419, 'property', 'steam:11000010665ec90', '{}'),
239 (8420, 'property', 'steam:11000010ba2a250', '{}'),
240 (8421, 'property', 'steam:11000010fbf8e44', '{}'),
241 (8422, 'property', 'steam:11000010554fe60', '{}'),
242 (8423, 'property', 'steam:11000010a4a72a5', '{}');
243/*!40000 ALTER TABLE `datastore_data` ENABLE KEYS */;
244
245CREATE TABLE IF NOT EXISTS `evidence_locker` (
246 `name` varchar(50) DEFAULT NULL,
247 `items` longtext CHARACTER SET utf8mb4 COLLATE utf8mb4_bin DEFAULT NULL,
248 `blackMoney` int(11) DEFAULT NULL
249) ENGINE=MyISAM DEFAULT CHARSET=latin1;
250
251/*!40000 ALTER TABLE `evidence_locker` DISABLE KEYS */;
252INSERT INTO `evidence_locker` (`name`, `items`, `blackMoney`) VALUES
253 ('police', '{}', 0),
254 ('policeLite', '{}', 0),
255 ('merryweather', '{}', 0);
256/*!40000 ALTER TABLE `evidence_locker` ENABLE KEYS */;
257
258CREATE TABLE IF NOT EXISTS `fine_types` (
259 `id` int(11) NOT NULL AUTO_INCREMENT,
260 `label` varchar(255) COLLATE utf8mb4_bin DEFAULT NULL,
261 `amount` int(11) DEFAULT NULL,
262 `category` int(11) DEFAULT NULL,
263 PRIMARY KEY (`id`)
264) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_bin;
265
266/*!40000 ALTER TABLE `fine_types` DISABLE KEYS */;
267INSERT INTO `fine_types` (`id`, `label`, `amount`, `category`) VALUES
268 (1, 'Misuse of a horn', 30, 0),
269 (2, 'Illegally Crossing a continuous Line', 40, 0),
270 (3, 'Driving on the wrong side of the road', 250, 0),
271 (4, 'Illegal U-Turn', 250, 0),
272 (5, 'Illegally Driving Off-road', 170, 0),
273 (6, 'Refusing a Lawful Command', 30, 0),
274 (7, 'Illegally Stoped of a Vehicle', 150, 0),
275 (8, 'Illegal Parking', 70, 0),
276 (9, 'Failing to Yield to the right', 70, 0),
277 (10, 'Failure to comply with Vehicle Information', 90, 0),
278 (11, 'Failing to stop at a Stop Sign ', 105, 0),
279 (12, 'Failing to stop at a Red Light', 130, 0),
280 (13, 'Illegal Passing', 100, 0),
281 (14, 'Driving an illegal Vehicle', 100, 0),
282 (15, 'Driving without a License', 1500, 0),
283 (16, 'Hit and Run', 800, 0),
284 (17, 'Exceeding Speeds Over < 5 mph', 90, 0),
285 (18, 'Exceeding Speeds Over 5-15 mph', 120, 0),
286 (19, 'Exceeding Speeds Over 15-30 mph', 180, 0),
287 (20, 'Exceeding Speeds Over > 30 mph', 300, 0),
288 (21, 'Impeding traffic flow', 110, 1),
289 (22, 'Public Intoxication', 90, 1),
290 (23, 'Disorderly conduct', 90, 1),
291 (24, 'Obstruction of Justice', 130, 1),
292 (25, 'Insults towards Civilans', 75, 1),
293 (26, 'Disrespecting of an LEO', 110, 1),
294 (27, 'Verbal Threat towards a Civilan', 90, 1),
295 (28, 'Verbal Threat towards an LEO', 150, 1),
296 (29, 'Providing False Information', 250, 1),
297 (30, 'Attempt of Corruption', 1500, 1),
298 (31, 'Brandishing a weapon in city Limits', 120, 2),
299 (32, 'Brandishing a Lethal Weapon in city Limits', 300, 2),
300 (33, 'No Firearms License', 600, 2),
301 (34, 'Possession of an Illegal Weapon', 700, 2),
302 (35, 'Possession of Burglary Tools', 300, 2),
303 (36, 'Grand Theft Auto', 1800, 2),
304 (37, 'Intent to Sell/Distrube of an illegal Substance', 1500, 2),
305 (38, 'Frabrication of an Illegal Substance', 1500, 2),
306 (39, 'Possession of an Illegal Substance ', 650, 2),
307 (40, 'Kidnapping of a Civilan', 1500, 2),
308 (41, 'Kidnapping of an LEO', 2000, 2),
309 (42, 'Robbery', 650, 2),
310 (43, 'Armed Robbery of a Store', 650, 2),
311 (44, 'Armed Robbery of a Bank', 1500, 2),
312 (45, 'Assault on a Civilian', 2000, 3),
313 (46, 'Assault of an LEO', 2500, 3),
314 (47, 'Attempt of Murder of a Civilian', 3000, 3),
315 (48, 'Attempt of Murder of an LEO', 5000, 3),
316 (49, 'Murder of a Civilian', 10000, 3),
317 (50, 'Murder of an LEO', 30000, 3),
318 (51, 'Involuntary manslaughter', 1800, 3),
319 (52, 'Fraud', 2000, 2);
320/*!40000 ALTER TABLE `fine_types` ENABLE KEYS */;
321
322CREATE TABLE IF NOT EXISTS `fine_types_cartel` (
323 `id` int(11) NOT NULL AUTO_INCREMENT,
324 `label` varchar(255) DEFAULT NULL,
325 `amount` int(11) DEFAULT NULL,
326 `category` int(11) DEFAULT NULL,
327 PRIMARY KEY (`id`)
328) ENGINE=InnoDB DEFAULT CHARSET=latin1;
329
330/*!40000 ALTER TABLE `fine_types_cartel` DISABLE KEYS */;
331INSERT INTO `fine_types_cartel` (`id`, `label`, `amount`, `category`) VALUES
332 (1, 'Raket', 3000, 0),
333 (2, 'Raket', 5000, 0),
334 (3, 'Raket', 10000, 1),
335 (4, 'Raket', 20000, 1),
336 (5, 'Raket', 50000, 2),
337 (6, 'Raket', 150000, 3),
338 (7, 'Raket', 350000, 3);
339/*!40000 ALTER TABLE `fine_types_cartel` ENABLE KEYS */;
340
341CREATE TABLE IF NOT EXISTS `gangs` (
342 `name` varchar(50) NOT NULL,
343 `members` longtext CHARACTER SET utf8mb4 COLLATE utf8mb4_bin DEFAULT NULL,
344 `maxMembers` int(11) DEFAULT NULL,
345 `type` varchar(50) DEFAULT NULL,
346 `fund` int(11) DEFAULT NULL,
347 `permits` longtext CHARACTER SET utf8mb4 COLLATE utf8mb4_bin DEFAULT NULL,
348 PRIMARY KEY (`name`)
349) ENGINE=MyISAM DEFAULT CHARSET=latin1;
350
351/*!40000 ALTER TABLE `gangs` DISABLE KEYS */;
352/*!40000 ALTER TABLE `gangs` ENABLE KEYS */;
353
354CREATE TABLE IF NOT EXISTS `garage` (
355 `address` int(11) DEFAULT NULL,
356 `vehicle` longtext DEFAULT NULL,
357 `owner` varchar(50) DEFAULT NULL,
358 `originalVehicle` int(11) DEFAULT NULL,
359 `position` int(11) DEFAULT NULL,
360 `state` bit(1) DEFAULT NULL,
361 `price` int(11) DEFAULT NULL
362) ENGINE=MyISAM DEFAULT CHARSET=latin1;
363
364/*!40000 ALTER TABLE `garage` DISABLE KEYS */;
365INSERT INTO `garage` (`address`, `vehicle`, `owner`, `originalVehicle`, `position`, `state`, `price`) VALUES
366 (2, '{"modArmor":-1,"modFrame":-1,"modSideSkirt":-1,"neonColor":[255,0,255],"modEngineBlock":-1,"modRoof":-1,"modHood":-1,"wheels":1,"neonEnabled":[false,false,false,false],"windowTint":-1,"modDashboard":-1,"modTrimA":-1,"modAPlate":-1,"modTrunk":-1,"modGrille":-1,"modExhaust":-1,"dirtLevel":12.0,"modFender":-1,"modHydrolic":-1,"modRightFender":-1,"modSuspension":-1,"modBackWheels":-1,"modTurbo":false,"modFrontWheels":-1,"model":-915704871,"modDial":-1,"plate":"YJWN2242","modAerials":-1,"modSteeringWheel":-1,"health":1000,"modAirFilter":-1,"modShifterLeavers":-1,"color1":134,"modSeats":-1,"modSmokeEnabled":false,"modRearBumper":-1,"modFrontBumper":-1,"pearlescentColor":134,"modSpeakers":-1,"color2":134,"tyreSmokeColor":[255,255,255],"plateIndex":0,"modDoorSpeaker":-1,"modEngine":-1,"modTank":-1,"modVanityPlate":-1,"modHorns":-1,"modOrnaments":-1,"modLivery":-1,"modStruts":-1,"modXenon":false,"modWindows":-1,"modArchCover":-1,"modSpoilers":-1,"wheelColor":126,"modTrimB":-1,"modPlateHolder":-1,"modBrakes":-1,"modTransmission":-1}', 'steam:11000010665ec90', -915704871, 1, b'0', 150000),
367 (2, '{"modArmor":-1,"modFrame":-1,"modSideSkirt":-1,"neonColor":[255,0,255],"modEngineBlock":-1,"modRoof":-1,"modHood":-1,"wheels":4,"neonEnabled":[false,false,false,false],"windowTint":-1,"modDashboard":-1,"modTrimA":-1,"modAPlate":-1,"modTrunk":-1,"modGrille":-1,"modExhaust":-1,"dirtLevel":1.0,"modFender":-1,"modHydrolic":-1,"modRightFender":-1,"modSuspension":-1,"modBackWheels":-1,"modTurbo":false,"modFrontWheels":-1,"model":-2064372143,"modDial":-1,"plate":"IBMY7481","modAerials":-1,"modSteeringWheel":-1,"health":1000,"modAirFilter":-1,"modShifterLeavers":-1,"color1":154,"modSeats":-1,"modSmokeEnabled":false,"modRearBumper":-1,"modFrontBumper":-1,"pearlescentColor":0,"modSpeakers":-1,"color2":153,"tyreSmokeColor":[255,255,255],"plateIndex":0,"modDoorSpeaker":-1,"modEngine":-1,"modTank":-1,"modVanityPlate":-1,"modHorns":-1,"modOrnaments":-1,"modLivery":-1,"modStruts":-1,"modXenon":false,"modWindows":-1,"modArchCover":-1,"modSpoilers":-1,"wheelColor":154,"modTrimB":-1,"modPlateHolder":-1,"modBrakes":-1,"modTransmission":-1}', 'steam:11000010665ec90', -2064372143, 2, b'0', 40000);
368/*!40000 ALTER TABLE `garage` ENABLE KEYS */;
369
370CREATE TABLE IF NOT EXISTS `items` (
371 `id` int(11) NOT NULL AUTO_INCREMENT,
372 `name` varchar(255) COLLATE utf8mb4_bin NOT NULL,
373 `label` varchar(255) COLLATE utf8mb4_bin NOT NULL,
374 `limit` int(11) NOT NULL DEFAULT 1,
375 `volume` int(11) DEFAULT 0,
376 `can_remove` int(11) DEFAULT 1,
377 `weight` float DEFAULT NULL,
378 PRIMARY KEY (`id`)
379) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_bin;
380
381/*!40000 ALTER TABLE `items` DISABLE KEYS */;
382INSERT INTO `items` (`id`, `name`, `label`, `limit`, `volume`, `can_remove`, `weight`) VALUES
383 (1, 'advanced_scope', 'Advanced Scope', 3, 150, 1, 650),
384 (2, 'alive_chicken', 'living chicken', 20, 2000, 1, 2200),
385 (3, 'appistol_mechanism', 'APP Pistol Mechanism', 5, 250, 1, 300),
386 (4, 'bandage', 'Bandage', 20, 250, 1, 75),
387 (5, 'barrel', 'Barrel', 3, 150, 1, 950),
388 (6, 'battery', 'Battery', 1, 200, 1, 1600),
389 (7, 'blade', 'Grinder Blade', 1, 500, 1, 650),
390 (8, 'blindfold', 'Blindfold', -1, 150, 1, 25),
391 (9, 'lockpick', 'Lockpick', 10, 150, 1, 2),
392 (10, 'blowtorch', 'Breaching Torch', 1, 750, 1, 400),
393 (11, 'body', 'Grinder Body', 1, 500, 1, 2700),
394 (12, 'bulletproof', 'Bulletproof Vest', 4, 1500, 1, 2700),
395 (13, 'cable', 'Cable', 2, 200, 1, 54),
396 (14, 'carokit', 'Car Kit', 3, 500, 1, 4500),
397 (15, 'carotool', 'Car Tool', 4, 500, 1, 4500),
398 (16, 'clip', 'Magazine', -1, 150, 1, 493),
399 (17, 'clothe', 'cloth', 40, 500, 1, 25),
400 (18, 'coke', 'Cocaine', 50, 200, 1, 1),
401 (19, 'coke_pooch', 'Bag of cocaine', 10, 1000, 1, 4),
402 (20, 'compactrifle_barrel', 'Compact Rifle Barrel', 5, 250, 1, 2000),
403 (21, 'compactrifle_firingpin', 'Compact Rifle Firing Pin', 5, 150, 1, 50),
404 (22, 'compactrifle_frame', 'Compact Rifle Frame', 5, 1000, 1, 900),
405 (23, 'compansator', 'Compensator', 3, 150, 1, 90),
406 (24, 'control_trigger', 'Control Trigger', 1, 150, 1, 5),
407 (25, 'copper', 'copper', 56, 500, 1, 1000),
408 (26, 'cutted_wood', 'cut wood', 20, 2000, 1, 1500),
409 (27, 'darkweb_chip', 'Darkweb Phone Chip', 1, 1000, 1, 5),
410 (28, 'diamond', 'diamond', 50, 150, 1, 4),
411 (29, 'donut', 'Dounut', 6, 100, 1, 38),
412 (30, 'drill', 'Bank Drill', -1, 5000, 1, 1),
413 (31, 'drill_bit', 'Drill Bit', 1, 200, 1, 1),
414 (32, 'drill_engine', 'Drill engine', 24, 4000, 1, 8000),
415 (33, 'extended_magazine', 'Extended Magazine', 3, 250, 1, 800),
416 (34, 'fabric', 'fabric', 80, 1000, 1, 50),
417 (35, 'fish', 'fish', 100, 300, 1, 250),
418 (36, 'fixkit', 'Repair Kit', 2, 1000, 1, 4500),
419 (37, 'fixtool', 'Repair Tool', 6, 1000, 1, 4500),
420 (38, 'flashlight', 'Flashlight', 3, 250, 1, 500),
421 (39, 'fmj', 'Full Metal Jacket Bullets', 3, 50, 1, 500),
422 (40, 'gazbottle', 'Gas Can', 11, 150, 1, 2000),
423 (41, 'gold', 'gold', 21, 1300, 1, 1000),
424 (42, 'gps', 'GPS', -1, 50, 1, 800),
425 (43, 'grip', 'Foregrip', 3, 250, 1, 20),
426 (44, 'grip', 'Grip', 1, 250, 1, 20),
427 (45, 'gunpowder', 'Gunpowder', 10, 50, 1, 500),
428 (46, 'gusenberg_barrel', 'Gusenberg Barrel', 5, 250, 1, 2500),
429 (47, 'gusenberg_firingpin', 'Gusenberg Firingpin', 5, 100, 1, 100),
430 (48, 'gusenberg_frame', 'Gusenberg Frame', 5, 1000, 1, 1000),
431 (49, 'gusenberg_magazine', 'Gusenberg Magazine', 5, 250, 1, 1000),
432 (50, 'hack', 'Hacking Device', 1, 1000, 1, 1000),
433 (51, 'handle', 'Grinder Handle', 1, 200, 1, 500),
434 (52, 'hollow', 'Hollow Bullets', 3, 50, 1, 500),
435 (53, 'incendiary', 'Incendiary Bullets', 3, 50, 1, 500),
436 (54, 'iron', 'iron', 42, 650, 1, 1000),
437 (55, 'jewels', 'Jewels', -1, 250, 1, 500),
438 (56, 'lazer_scope', 'Laser Scope', 3, 200, 1, 500),
439 (57, 'medikit', 'Medkit', 10, 1000, 1, 230),
440 (58, 'meth', 'Meth', 50, 1000, 1, 5),
441 (59, 'meth_pooch', 'Bag of meth', 10, 1000, 1, 500),
442 (60, 'mg_barrel', 'MG Barrel', 5, 300, 1, 3000),
443 (61, 'mg_bipod', 'MG Bipod', 5, 250, 1, 1000),
444 (62, 'mg_firingpin', 'MG Firingpin', 5, 25, 1, 250),
445 (63, 'mg_frame', 'MG Frame', 5, 3000, 1, 2000),
446 (64, 'mg_magazine', 'MG Magazine', 5, 200, 1, 2500),
447 (65, 'mg_mechanism', 'MG Mechanism', 5, 150, 1, 1000),
448 (66, 'mg_sight', 'MG Iron Sight', 5, 200, 1, 250),
449 (68, 'motor', 'Motor', 2, 200, 1, 1000),
450 (69, 'nightvision_scope', 'Night Vision Scope', 3, 200, 1, 1200),
451 (70, 'opium', 'Opium', 50, 200, 1, 5),
452 (71, 'opium_pooch', 'Bag of opium', 10, 1000, 1, 500),
453 (72, 'oxygen_mask', 'Oxygen mask', 2, 4000, 1, 500),
454 (73, 'packaged_chicken', 'chicken fillet', 100, 400, 1, 500),
455 (74, 'packaged_plank', 'packaged wood', 100, 400, 1, 2000),
456 (75, 'paper', 'Paper', 10, 100, 1, 1),
457 (76, 'pb_grinder', 'Lock Grinder', 1, 750, 1, 2000),
458 (77, 'petrol', 'oil', 24, 250, 1, 100),
459 (78, 'petrol_raffin', 'processed oil', 24, 500, 1, 50),
460 (79, 'phone', 'Phone', 1, 200, 1, 200),
461 (81, 'pipe', 'Small Iron Pipe', 10, 500, 1, 1000),
462 (82, 'pistol50_frame', 'Pistol.50 Frame', 5, 450, 1, 500),
463 (83, 'pistol_barrel', 'Pistol Barrel', 5, 150, 1, 600),
464 (84, 'pistol_frame', 'Pistol Frame', 5, 500, 1, 300),
465 (85, 'pistol_magazine', 'Pistol Magazine', 5, 150, 1, 200),
466 (86, 'pizza', 'Pizza', -1, 1000, 1, 1500),
467 (87, 'redgull', 'Redgull', 4, 150, 1, 250),
468 (88, 'revolver_barrel', 'Revolver Barrel', 5, 100, 1, 1000),
469 (89, 'revolver_cylinder', 'Pistol Cylinder', 5, 200, 1, 500),
470 (90, 'revolver_frame', 'Revolver Frame', 5, 300, 1, 500),
471 (91, 'revolver_rounds', 'Revolver Rounds', 5, 50, 1, 300),
472 (92, 'rifle_barrel', 'Rifle Barrel', 5, 400, 1, 2000),
473 (93, 'rifle_firingpin', 'Rifle Firingpin', 5, 200, 1, 50),
474 (94, 'rifle_frame', 'Rifle Frame', 5, 1500, 1, 900),
475 (95, 'rifle_magazine', 'Rifle Magazine', 5, 150, 1, 500),
476 (96, 'rifle_mechanism', 'Rifle Mechanism', 5, 150, 1, 300),
477 (97, 'rifle_muzzlebreak', 'Rifle Muszzle Break', 5, 250, 1, 90),
478 (98, 'rifle_sight', 'Rifle Iron Sight', 5, 150, 1, 250),
479 (99, 'rose', 'Rose', 1, 250, 1, 50),
480 (100, 'sandwich', 'Sandwhich', 5, 100, 1, 250),
481 (101, 'scope', 'Scope', 3, 150, 1, 500),
482 (102, 'shotgun_barrel', 'Shotgun Barrel', 5, 250, 1, 1400),
483 (103, 'shotgun_buckshot', 'Shotgun Buckshot', 5, 100, 1, 100),
484 (104, 'shotgun_buttstock', 'Shotgun Buttstock', 5, 150, 1, 500),
485 (105, 'shotgun_firingpin', 'Shotgun Firingpin', 5, 250, 1, 500),
486 (106, 'shotgun_frame', 'Shotgun Frame', 5, 1000, 1, 900),
487 (107, 'silent', 'Suppressor', 3, 250, 1, 310),
488 (108, 'slaughtered_chicken', 'slaughtered chicken', 20, 2000, 1, 2300),
489 (109, 'smg_barrel', 'SMG Barrel', 5, 250, 1, 1500),
490 (110, 'smg_buttstock', 'SMG Buttstock', 5, 250, 1, 500),
491 (111, 'smg_firingpin', 'SMG Firingpin', 5, 50, 1, 200),
492 (112, 'smg_frame', 'SMG Frame', 5, 1000, 1, 1500),
493 (113, 'smg_magazine', 'SMG Magazine', 5, 150, 1, 300),
494 (114, 'smg_silencer', 'SMG Silencer', 5, 150, 1, 200),
495 (116, 'thermal_scope', 'Thermal Scope', 3, 200, 1, 1500),
496 (117, 'tracer_clip', 'Tracer Bullets', 3, 50, 1, 500),
497 (118, 'umbrella', 'Umbrella', 2, 3000, 1, 250),
498 (119, 'very_extended_magazine', 'Drum Magazine', 3, 400, 1, 1000),
499 (121, 'weaponcase_ADVANCEDRIFLE', 'Advanced Rifle Case', 1, 2000, 1, 3800),
500 (122, 'weaponcase_APPISTOL', 'Ap Pistol Case', 1, 500, 1, 1500),
501 (123, 'weaponcase_ASSAULTRIFLE', 'Assault Rifle Case', 1, 2000, 1, 3800),
502 (124, 'weaponcase_ASSAULTRIFLE_MK2', 'Assault Rifle Mk II Case', 1, 2000, 1, 3800),
503 (125, 'weaponcase_ASSAULTSHOTGUN', 'Assault Shotgun Case', 1, 2000, 1, 2900),
504 (126, 'weaponcase_ASSAULTSMG', 'Assault SMG Case', 1, 1500, 1, 4200),
505 (127, 'weaponcase_AUTOSHOTGUN', 'Auto Shotgun Case', 1, 1500, 1, 2900),
506 (128, 'weaponcase_BALL', 'Ball Case', 1, 150, 1, 50),
507 (129, 'weaponcase_BAT', 'Bat Case', 1, 500, 1, 350),
508 (130, 'weaponcase_BATTLEAXE', 'Battle Axe Case', 1, 1000, 1, 350),
509 (131, 'weaponcase_BOTTLE', 'Bottle Case', 1, 250, 1, 100),
510 (132, 'weaponcase_BULLPUPRIFLE', 'Bullpup Rifle Case', 1, 2000, 1, 3800),
511 (133, 'weaponcase_BULLPUPRIFLE_MK2', 'Bullpup Rifle Mk II Case', 1, 2000, 1, 3800),
512 (134, 'weaponcase_BULLPUPSHOTGUN', 'Bullpup Shotgun Case', 1, 1500, 1, 2900),
513 (135, 'weaponcase_BZGAS', 'Bz Gas Case', 1, 100, 1, 150),
514 (136, 'weaponcase_CARBINERIFLE', 'Carbine Rifle Case', 1, 2000, 1, 3800),
515 (137, 'weaponcase_CARBINERIFLE_MK2', 'Carbine Rifle Mk II Case', 1, 2000, 1, 3800),
516 (138, 'weaponcase_COMBATMG', 'Combat MG Case', 1, 3000, 1, 7500),
517 (139, 'weaponcase_COMBATMG_MK2', 'Combat MG Mk II Case', 1, 3000, 1, 7500),
518 (140, 'weaponcase_COMBATPDW', 'Combat PDW Case', 1, 1000, 1, 3000),
519 (141, 'weaponcase_COMBATPISTOL', 'Combat Pistol Case', 1, 500, 1, 1100),
520 (142, 'weaponcase_COMPACTLAUNCHER', 'Compact Launcher Case', 1, 3000, 1, 5000),
521 (143, 'weaponcase_COMPACTRIFLE', 'Compact Rifle Case', 1, 1000, 1, 3800),
522 (144, 'weaponcase_CROWBAR', 'Crow Bar Case', 1, 1000, 1, 350),
523 (145, 'weaponcase_DAGGER', 'Dagger Case', 1, 250, 1, 350),
524 (146, 'weaponcase_DBSHOTGUN', 'Double-barreled Shotgun Case', 1, 1500, 1, 2900),
525 (147, 'weaponcase_DIGISCANNER', 'Digiscanner Case', 1, 250, 1, 750),
526 (148, 'weaponcase_DOUBLEACTION', 'Double-action Revolver Case', 1, 500, 1, 1500),
527 (149, 'weaponcase_FIREEXTINGUISHER', 'Fire Extinguisher Case', 1, 250, 1, 1000),
528 (150, 'weaponcase_FIREWORK', 'Firework Case', 1, 500, 1, 400),
529 (151, 'weaponcase_FLARE', 'Flare Case', 1, 500, 1, 150),
530 (152, 'weaponcase_FLAREGUN', 'Flaregun Case', 1, 500, 1, 350),
531 (153, 'weaponcase_FLASHLIGHT', 'Flashlight Case', 1, 250, 1, 500),
532 (154, 'weaponcase_GARBAGEBAG', 'Garbage bag Case', 1, 250, 1, 500),
533 (155, 'weaponcase_GOLFCLUB', 'Golf Club Case', 1, 1000, 1, 400),
534 (156, 'weaponcase_GRENADE', 'Grenade Case', 1, 150, 1, 400),
535 (157, 'weaponcase_GRENADELAUNCHER', 'Grenade Launcher Case', 1, 3000, 1, 7000),
536 (158, 'weaponcase_GUSENBERG', 'Gusenberg Sweeper Case', 1, 2000, 1, 4600),
537 (159, 'weaponcase_HAMMER', 'Hammer Case', 1, 500, 1, 1000),
538 (160, 'weaponcase_HANDCUFFS', 'Handcuffs Case', 1, 250, 1, 500),
539 (161, 'weaponcase_HATCHET', 'Hatchet Case', 1, 250, 1, 700),
540 (162, 'weaponcase_HEAVYPISTOL', 'Heavy Pistol Case', 1, 500, 1, 1500),
541 (163, 'weaponcase_HEAVYSHOTGUN', 'Heavy Shotgun Case', 1, 1500, 1, 3200),
542 (164, 'weaponcase_HEAVYSNIPER', 'Heavy Sniper Case', 1, 3000, 1, 7500),
543 (165, 'weaponcase_HEAVYSNIPER_MK2', 'Heavy Sniper Mk II Case', 1, 3000, 1, 7500),
544 (166, 'weaponcase_HOMINGLAUNCHER', 'Homing Launcher Case', 1, 3000, 1, 16000),
545 (167, 'weaponcase_KNIFE', 'Knife Case', 1, 250, 1, 200),
546 (168, 'weaponcase_KNUCKLE', 'Knuckledusters Case', 1, 250, 1, 200),
547 (169, 'weaponcase_MACHETE', 'Machete Case', 1, 250, 1, 750),
548 (170, 'weaponcase_MACHINEPISTOL', 'Machine Pistol Case', 1, 1000, 1, 2000),
549 (171, 'weaponcase_MARKSMANPISTOL', 'Marksman Pistol Case', 1, 500, 1, 1100),
550 (172, 'weaponcase_MARKSMANRIFLE', 'Marksman Rifle Case', 1, 3000, 1, 3800),
551 (173, 'weaponcase_MARKSMANRIFLE_MK2', 'Marksman Rifle Mk II Case', 1, 3000, 1, 3800),
552 (174, 'weaponcase_MG', 'MG Case', 1, 3000, 1, 7500),
553 (175, 'weaponcase_MICROSMG', 'Micro SMG Case', 1, 1500, 1, 4200),
554 (176, 'weaponcase_MINIGUN', 'Minigun Case', 1, 3000, 1, 20000),
555 (177, 'weaponcase_MINISMG', 'Mini SMG Case', 1, 500, 1, 4200),
556 (178, 'weaponcase_MOLOTOV', 'Molotov Cocktail Case', 1, 250, 1, 500),
557 (179, 'weaponcase_MUSKET', 'Musket Case', 1, 1000, 1, 1250),
558 (180, 'weaponcase_NIGHTSTICK', 'Nightstick Case', 1, 500, 1, 200),
559 (181, 'weaponcase_NIGHTVISION', 'Night Vision Case', 1, 250, 1, 500),
560 (182, 'weaponcase_PARACHUTE', 'Parachute Case', 1, 4000, 1, 4000),
561 (183, 'weaponcase_PETROLCAN', 'Jerrycan Case', 1, 250, 1, 2000),
562 (184, 'weaponcase_PIPEBOMB', 'Pipe Bomb Case', 1, 250, 1, 500),
563 (185, 'weaponcase_PISTOL', 'Pistol Case', 1, 500, 1, 1100),
564 (186, 'weaponcase_PISTOL50', 'Pistol .50 Case', 1, 500, 1, 1500),
565 (187, 'weaponcase_PISTOL_MK2', 'Pistol Mk II Case', 1, 500, 1, 1100),
566 (188, 'weaponcase_POOLCUE', 'Pool Cue Case', 1, 500, 1, 1200),
567 (189, 'weaponcase_PROXMINE', 'Proximity Mine Case', 1, 250, 1, 1000),
568 (190, 'weaponcase_PUMPSHOTGUN', 'Pump Shotgun Case', 1, 1500, 1, 2900),
569 (191, 'weaponcase_PUMPSHOTGUN_MK2', 'Pump Shotgun Mk II Case', 1, 1500, 1, 2900),
570 (192, 'weaponcase_RAILGUN', 'Railgun Case', 1, 3000, 1, 6000),
571 (193, 'weaponcase_REMOTESNIPER', 'Remote Sniper Case', 1, 10000, 1, 8000),
572 (194, 'weaponcase_REVOLVER', 'Heavy Revolver Case', 1, 500, 1, 1500),
573 (195, 'weaponcase_REVOLVER_MK2', 'Heavy Revolver Mk II Case', 1, 500, 1, 1500),
574 (196, 'weaponcase_RPG', 'Rocket Launcher Case', 1, 3000, 1, 16000),
575 (197, 'weaponcase_SAWNOFFSHOTGUN', 'Sawed-off Shotgun Case', 1, 1500, 1, 2900),
576 (198, 'weaponcase_SMG', 'SMG Case', 1, 1500, 1, 4200),
577 (199, 'weaponcase_SMG_MK2', 'SMG Mk II Case', 1, 1000, 1, 4200),
578 (200, 'weaponcase_SMOKEGRENADE', 'Smoke Grenade Case', 1, 100, 1, 200),
579 (201, 'weaponcase_SNIPERRIFLE', 'Sniper Rifle Case', 1, 3000, 1, 6000),
580 (202, 'weaponcase_SNOWBALL', 'Snow Ball Case', 1, 50, 1, 50),
581 (203, 'weaponcase_SNSPISTOL', 'SNS Pistol Case', 1, 500, 1, 1100),
582 (204, 'weaponcase_SNSPISTOL_MK2', 'SNS Pistol Mk II Case', 1, 500, 1, 1100),
583 (205, 'weaponcase_SPECIALCARBINE', 'Special Carbine Case', 1, 2000, 1, 3800),
584 (206, 'weaponcase_SPECIALCARBINE_MK2', 'Special Carbine Mk II Case', 1, 2000, 1, 3800),
585 (207, 'weaponcase_STICKYBOMB', 'Sticky Bomb Case', 1, 250, 1, 1000),
586 (208, 'weaponcase_STINGER', 'Stinger Case', 1, 3000, 1, 19000),
587 (209, 'weaponcase_STUNGUN', 'Tazer Case', 1, 500, 1, 500),
588 (210, 'weaponcase_SWITCHBLADE', 'Switchblade Case', 1, 500, 1, 350),
589 (211, 'weaponcase_VINTAGEPISTOL', 'Vintage Pistol Case', 1, 500, 1, 1100),
590 (212, 'weaponcase_WRENCH', 'Pipe Wrench Case', 1, 500, 1, 2700),
591 (213, 'weed', 'Weed', 50, 200, 1, 250),
592 (215, 'whool', 'wool', 40, 500, 1, 1000),
593 (216, 'wood', 'wood', 20, 2000, 1, 1500),
594 (223, 'mining_drill', 'Mining drill', 1, 10000, 1, 7500),
595 (224, 'pickaxe', 'Pickaxe', 1, 5000, 1, 1100),
596 (225, 'diamond_tipped_drill', 'Diamond tipped drill', 1, 15000, 1, 8000),
597 (226, 'uncut_diamond', 'Uncut Diamond', 1, 50, 1, 50),
598 (227, 'cut_diamond_1', 'Cut Diamond (1)', 1, 50, 1, 4),
599 (228, 'cut_diamond_2', 'Cut Diamond (2)', 1, 50, 1, 4),
600 (229, 'cut_diamond_3', 'Cut Diamond (3)', 1, 50, 1, 4),
601 (230, 'cut_diamond_4', 'Cut Diamond (4)', 1, 50, 1, 4),
602 (231, 'cut_diamond_5', 'Cut Diamond (5)', 1, 50, 1, 4),
603 (232, 'cut_diamond_6', 'Cut Diamond (6)', 1, 50, 1, 4),
604 (233, 'cut_diamond_7', 'Cut Diamond (7)', 1, 50, 1, 4),
605 (234, 'cut_diamond_8', 'Cut Diamond (8)', 1, 50, 1, 4),
606 (235, 'cut_diamond_9', 'Cut Diamond (9)', 1, 50, 1, 4),
607 (236, 'cut_diamond_10', 'Cut Diamond (10)', 1, 50, 1, 4),
608 (237, 'cut_diamond_11', 'Cut Diamond (11)', 1, 50, 1, 4),
609 (238, 'cut_diamond_12', 'Cut Diamond (12)', 1, 50, 1, 4),
610 (239, 'cut_diamond_13', 'Cut Diamond (13)', 1, 50, 1, 4),
611 (240, 'cut_diamond_14', 'Cut Diamond (14)', 1, 50, 1, 4),
612 (241, 'cut_diamond_15', 'Cut Diamond (15)', 1, 50, 1, 4),
613 (242, 'cut_diamond_16', 'Cut Diamond (16)', 1, 50, 1, 4),
614 (243, 'cut_diamond_17', 'Cut Diamond (17)', 1, 50, 1, 4),
615 (244, 'cut_diamond_18', 'Cut Diamond (18)', 1, 50, 1, 4),
616 (245, 'cut_diamond_19', 'Cut Diamond (19)', 1, 50, 1, 4),
617 (246, 'cut_diamond_20', 'Cut Diamond (20)', 1, 50, 1, 4),
618 (247, 'cut_diamond_21', 'Cut Diamond (21)', 1, 50, 1, 4),
619 (248, 'cut_diamond_22', 'Cut Diamond (22)', 1, 50, 1, 4),
620 (249, 'cut_diamond_23', 'Cut Diamond (23)', 1, 50, 1, 4),
621 (250, 'cut_diamond_24', 'Cut Diamond (24)', 1, 50, 1, 4),
622 (251, 'cut_diamond_25', 'Cut Diamond (25)', 1, 50, 1, 4),
623 (252, 'cut_diamond_26', 'Cut Diamond (26)', 1, 50, 1, 4),
624 (253, 'cut_diamond_27', 'Cut Diamond (27)', 1, 50, 1, 4),
625 (254, 'cut_diamond_28', 'Cut Diamond (28)', 1, 50, 1, 4),
626 (255, 'cut_diamond_29', 'Cut Diamond (29)', 1, 50, 1, 4),
627 (256, 'cut_diamond_30', 'Cut Diamond (30)', 1, 50, 1, 4),
628 (257, 'cut_diamond_31', 'Cut Diamond (31)', 1, 50, 1, 4),
629 (258, 'cut_diamond_32', 'Cut Diamond (32)', 1, 50, 1, 4),
630 (259, 'cut_diamond_33', 'Cut Diamond (33)', 1, 50, 1, 4),
631 (260, 'cut_diamond_34', 'Cut Diamond (34)', 1, 50, 1, 4),
632 (261, 'cut_diamond_35', 'Cut Diamond (35)', 1, 50, 1, 4),
633 (262, 'cut_diamond_36', 'Cut Diamond (36)', 1, 50, 1, 4),
634 (263, 'cut_diamond_37', 'Cut Diamond (37)', 1, 50, 1, 4),
635 (264, 'cut_diamond_38', 'Cut Diamond (38)', 1, 50, 1, 4),
636 (265, 'gold_ore', 'Gold Ore', 10, 250, 1, 1500),
637 (266, 'copper_ore', 'Copper Ore', 10, 250, 1, 1500),
638 (267, 'iron_ore', 'Iron Ore', 10, 250, 1, 1500),
639 (268, 'coal', 'Coal', 10, 250, 1, 1000),
640 (269, 'aluminium_ore', 'Aluminium Ore', 10, 250, 1, 1500),
641 (270, 'silver_ore', 'Silver Ore', 10, 250, 1, 1500),
642 (271, 'gold_ingot', 'Gold Ingot', 5, 250, 1, 1000),
643 (272, 'copper_ingot', 'Copper Ingot', 5, 250, 1, 1000),
644 (273, 'iron_ingot', 'Iron Ingot', 5, 250, 1, 1000),
645 (274, 'coal_coke', 'Coal Coke', 5, 250, 1, 1000),
646 (275, 'aluminium_ingot', 'Aluminium Ingot', 5, 250, 1, 1000),
647 (276, 'silver_ingot', 'Silver Ingot', 5, 250, 1, 1000),
648 (277, 'chainsaw', 'Chainsaw', 1, 3000, 1, 4000),
649 (278, 'log', 'Wood log', 10, 250, 1, 1500),
650 (279, 'plank', 'Plank', 25, 250, 1, 1000),
651 (280, 'weed_seeds', 'Weed Seeds', 1, 50, 1, 200),
652 (281, 'drill', 'Drill', 1, 3000, 1, 8000),
653 (282, 'frame', 'Drill frame', 1, 10000, 1, 10000),
654 (283, 'drill_gas', 'Drill gas cannisters', 1, 8000, 1, 8000),
655 (284, 'map_coca_dealer', 'Map to the coca leaves dealer', 2, 50, 1, 20),
656 (285, 'coca_leaves', 'Coca Leaves', 1000, 200, 1, 5),
657 (286, 'map_doctor', 'Map of doctors apartment', 2, 50, 1, 20),
658 (287, 'highgradefemaleseed', '(HG) Female Seed', -1, 0, 1, 35),
659 (288, 'lowgradefemaleseed', '(LG) Female Seed', -1, 0, 1, 35),
660 (289, 'highgrademaleseed', '(HG) Male Seed', -1, 0, 1, 35),
661 (290, 'lowgrademaleseed', '(LG) Male Seed', -1, 0, 1, 35),
662 (291, 'highgradefert', 'High-Grade Fertilizer', -1, 0, 1, 35),
663 (292, 'lowgradefert', 'Low-Grade Fertilizer', -1, 0, 1, 35),
664 (293, 'purifiedwater', 'Purified Water', -1, 0, 1, 35),
665 (294, 'wateringcan', 'Watering Can', -1, 0, 1, 35),
666 (295, 'plantpot', 'Plant Pot', -1, 0, 1, 35),
667 (296, 'trimmedweed', 'Trimmed Weed', -1, 0, 1, 35),
668 (297, 'dopebag', 'Ziplock Bag', -1, 0, 1, 35),
669 (298, 'bagofdope', 'Bag of Dope', -1, 0, 1, 35),
670 (299, 'drugscales', 'Scales', -1, 0, 1, 35),
671 (300, 'blueprint_pistol', 'Pistol blueprint', 1, 0, 1, 50),
672 (301, 'sulphuricAcid', 'Sulphuric acid', -1, 0, 1, 5),
673 (302, 'calciumCarbonate', 'Calcium carbonate', -1, 0, 1, 5),
674 (303, 'kerosene', 'Kerosene', -1, 0, 1, 5),
675 (304, 'potassiumPermanganate', 'Potassium Permanganate', -1, 0, 1, 5),
676 (305, 'ammoniumHydroxide', 'Ammonium hydroxide', -1, 0, 1, 5),
677 (306, 'acetone', 'Acetone', -1, 0, 1, 5),
678 (307, 'hydrochloricAcid', 'Hydrochloric acid', -1, 0, 1, 5),
679 (308, 'cocaine_brick', 'Cocaine brick', -1, 1000, 1, 250),
680 (309, 'cocaine_bag', 'Bag of cocaine', -1, 100, 1, 25),
681 (310, 'bobbypin', 'Bobby pin', -1, 25, 1, 1),
682 (311, 'rubberband', 'Rubberband', -1, 25, 1, 1),
683 (312, 'common_cold_pills', 'Common cold pills', -1, 25, 1, 25),
684 (313, 'battery_acid', 'Battery acid', -1, 25, 1, 25),
685 (314, 'drain_cleaner', 'Drain cleaner', -1, 25, 1, 25),
686 (315, 'lantern_fuel', 'Lantern fuel', -1, 25, 1, 25),
687 (316, 'antifreeze', 'Antifreeze', -1, 25, 1, 25),
688 (317, 'battery', 'Battery', -1, 25, 1, 25),
689 (318, 'powdered_common_cold_pills', 'Powdered common cold pills', -1, 25, 1, 25),
690 (319, 'calciumCarbonate', 'Calcium Carbonate', 100, 200, 1, 1),
691 (320, 'ammoniumHydroxide', 'Ammonium Hydroxide', 100, 200, 1, 1),
692 (321, 'painkillers', 'Cold Pills', 1, 0, 1, 1),
693 (322, 'remedy', 'Remedy', 1, 0, 1, 1),
694 (323, 'medicine', 'Medicine', 1, 0, 1, 1),
695 (324, 'keycard', 'Code Cracker', 1, 500, 1, 1),
696 (325, 'white_map', 'Mr White Location', 1, 500, 1, 1);
697/*!40000 ALTER TABLE `items` ENABLE KEYS */;
698
699CREATE TABLE IF NOT EXISTS `jail` (
700 `identifier` varchar(100) NOT NULL,
701 `jail_time` int(10) NOT NULL,
702 PRIMARY KEY (`identifier`)
703) ENGINE=InnoDB DEFAULT CHARSET=latin1;
704
705/*!40000 ALTER TABLE `jail` DISABLE KEYS */;
706/*!40000 ALTER TABLE `jail` ENABLE KEYS */;
707
708CREATE TABLE IF NOT EXISTS `jobs` (
709 `id` int(11) NOT NULL AUTO_INCREMENT,
710 `name` varchar(255) COLLATE utf8mb4_bin NOT NULL,
711 `label` varchar(255) COLLATE utf8mb4_bin DEFAULT NULL,
712 `whitelisted` varchar(50) COLLATE utf8mb4_bin DEFAULT 'FALSE',
713 PRIMARY KEY (`id`)
714) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_bin;
715
716/*!40000 ALTER TABLE `jobs` DISABLE KEYS */;
717INSERT INTO `jobs` (`id`, `name`, `label`, `whitelisted`) VALUES
718 (1, 'unemployed', 'Unemployed', 'FALSE'),
719 (2, 'slaughterer', 'Butcher', 'FALSE'),
720 (3, 'fisherman', 'Fisherman', 'FALSE'),
721 (4, 'miner', 'Miner', 'FALSE'),
722 (5, 'lumberjack', 'Lumberjack', 'FALSE'),
723 (6, 'fueler', 'Fueler', 'FALSE'),
724 (7, 'reporter', 'Reporter', 'FALSE'),
725 (8, 'tailor', 'Tailor', 'FALSE'),
726 (9, 'realestateagent', 'Real estate agent', '1'),
727 (10, 'cardealer', 'Car Dealer', 'FALSE'),
728 (11, 'ambulance', 'Ambulance', '1'),
729 (12, 'deliverer', 'Delivery Boy', 'FALSE'),
730 (14, 'police', 'Police', '1'),
731 (18, 'offpolice', 'Off-Duty', '1'),
732 (19, 'offambulance', 'Off-Duty', '1'),
733 (22, 'mecano', 'Mechanic', '1'),
734 (26, 'trucker', 'Trucker', 'FALSE'),
735 (27, 'cartel', 'Merryweather Security', '1'),
736 (28, 'offcartel', 'Off-Duty', '1'),
737 (29, 'tower', 'Tow truck driver', '1'),
738 (30, 'offtower', 'Off-Duty Tower', '1');
739/*!40000 ALTER TABLE `jobs` ENABLE KEYS */;
740
741CREATE TABLE IF NOT EXISTS `job_grades` (
742 `id` int(11) NOT NULL AUTO_INCREMENT,
743 `job_name` varchar(255) COLLATE utf8mb4_bin DEFAULT NULL,
744 `grade` int(11) NOT NULL,
745 `name` varchar(255) COLLATE utf8mb4_bin NOT NULL,
746 `label` varchar(255) COLLATE utf8mb4_bin NOT NULL,
747 `salary` int(11) NOT NULL,
748 `skin_male` longtext COLLATE utf8mb4_bin NOT NULL,
749 `skin_female` longtext COLLATE utf8mb4_bin NOT NULL,
750 PRIMARY KEY (`id`)
751) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_bin;
752
753/*!40000 ALTER TABLE `job_grades` DISABLE KEYS */;
754INSERT INTO `job_grades` (`id`, `job_name`, `grade`, `name`, `label`, `salary`, `skin_male`, `skin_female`) VALUES
755 (125987, 'unemployed', 0, 'rsa', 'Welfare', 375, '{}', '{}'),
756 (125988, 'ambulance', 0, 'trainee', 'Trainee/Probationary Firefighter', 4500, '{"tshirt_2":0,"hair_color_1":5,"glasses_2":0,"shoes":9,"torso_2":0,"hair_color_2":0,"pants_1":24,"glasses_1":0,"hair_1":2,"sex":0,"decals_2":0,"tshirt_1":20,"helmet_1":122,"helmet_2":0,"arms":85,"face":19,"decals_1":58,"torso_1":250,"hair_2":0,"skin":34,"pants_2":5}', '{"tshirt_2":3,"decals_2":0,"glasses":0,"hair_1":2,"torso_1":73,"shoes":1,"hair_color_2":0,"glasses_1":19,"skin":13,"face":6,"pants_2":5,"tshirt_1":75,"pants_1":37,"helmet_1":57,"torso_2":0,"arms":14,"sex":1,"glasses_2":0,"decals_1":0,"hair_2":0,"helmet_2":0,"hair_color_1":0}'),
757 (125989, 'ambulance', 1, 'doctor', 'ER/Firefighter', 5200, '{"tshirt_2":0,"hair_color_1":5,"glasses_2":0,"shoes":9,"torso_2":0,"hair_color_2":0,"pants_1":24,"glasses_1":0,"hair_1":2,"sex":0,"decals_2":0,"tshirt_1":20,"helmet_1":122,"helmet_2":0,"arms":85,"face":19,"decals_1":58,"torso_1":250,"hair_2":0,"skin":34,"pants_2":5}', '{"tshirt_2":3,"decals_2":0,"glasses":0,"hair_1":2,"torso_1":73,"shoes":1,"hair_color_2":0,"glasses_1":19,"skin":13,"face":6,"pants_2":5,"tshirt_1":75,"pants_1":37,"helmet_1":57,"torso_2":0,"arms":14,"sex":1,"glasses_2":0,"decals_1":0,"hair_2":0,"helmet_2":0,"hair_color_1":0}'),
758 (125990, 'ambulance', 2, 'doctor', 'EMT/Firefighter', 5550, '{"tshirt_2":0,"hair_color_1":5,"glasses_2":0,"shoes":9,"torso_2":0,"hair_color_2":0,"pants_1":24,"glasses_1":0,"hair_1":2,"sex":0,"decals_2":0,"tshirt_1":20,"helmet_1":122,"helmet_2":0,"arms":85,"face":19,"decals_1":58,"torso_1":250,"hair_2":0,"skin":34,"pants_2":5}', '{"tshirt_2":3,"decals_2":0,"glasses":0,"hair_1":2,"torso_1":73,"shoes":1,"hair_color_2":0,"glasses_1":19,"skin":13,"face":6,"pants_2":5,"tshirt_1":75,"pants_1":37,"helmet_1":57,"torso_2":0,"arms":14,"sex":1,"glasses_2":0,"decals_1":0,"hair_2":0,"helmet_2":0,"hair_color_1":0}'),
759 (125991, 'ambulance', 3, 'doctor', 'Paramedic/Driver engineer', 5500, '{"tshirt_2":0,"hair_color_1":5,"glasses_2":0,"shoes":9,"torso_2":0,"hair_color_2":0,"pants_1":24,"glasses_1":0,"hair_1":2,"sex":0,"decals_2":0,"tshirt_1":20,"helmet_1":122,"helmet_2":0,"arms":85,"face":19,"decals_1":58,"torso_1":250,"hair_2":0,"skin":34,"pants_2":5}', '{"tshirt_2":3,"decals_2":0,"glasses":0,"hair_1":2,"torso_1":73,"shoes":1,"hair_color_2":0,"glasses_1":19,"skin":13,"face":6,"pants_2":5,"tshirt_1":75,"pants_1":37,"helmet_1":57,"torso_2":0,"arms":14,"sex":1,"glasses_2":0,"decals_1":0,"hair_2":0,"helmet_2":0,"hair_color_1":0}'),
760 (125992, 'offambulance', 0, 'trainee', 'Trainee/Probationary Firefighter', 0, '{}', '{}'),
761 (125993, 'offambulance', 1, 'senior', 'ER/Firefighter', 0, '{}', '{}'),
762 (125994, 'offambulance', 2, 'doctor', 'EMT/Firefighter', 0, '{}', '{}'),
763 (125995, 'offambulance', 3, 'doctor', 'Paramedic/Driver engineer', 0, '{}', '{}'),
764 (125996, 'police', 1, 'trooper', 'Trooper', 3200, '{}', '{}'),
765 (125997, 'police', 3, 'sergeant', 'Sergeant', 4500, '{}', '{}'),
766 (125998, 'police', 5, 'captain', 'Captain', 4500, '{}', '{}'),
767 (125999, 'police', 7, 'commissioner', 'Commissioner', 4500, '{}', '{}'),
768 (126000, 'ambulance', 4, 'senior', 'Doctor', 6200, '{"tshirt_2":0,"hair_color_1":5,"glasses_2":0,"shoes":9,"torso_2":0,"hair_color_2":0,"pants_1":24,"glasses_1":0,"hair_1":2,"sex":0,"decals_2":0,"tshirt_1":20,"helmet_1":122,"helmet_2":0,"arms":85,"face":19,"decals_1":58,"torso_1":250,"hair_2":0,"skin":34,"pants_2":5}', '{"tshirt_2":3,"decals_2":0,"glasses":0,"hair_1":2,"torso_1":73,"shoes":1,"hair_color_2":0,"glasses_1":19,"skin":13,"face":6,"pants_2":5,"tshirt_1":75,"pants_1":37,"helmet_1":57,"torso_2":0,"arms":14,"sex":1,"glasses_2":0,"decals_1":0,"hair_2":0,"helmet_2":0,"hair_color_1":0}'),
769 (126001, 'police', 0, 'cadet', 'Cadet', 0, '{}', '{}'),
770 (126002, 'police', 2, 'seniortrooper', 'Senior Trooper', 0, '{}', '{}'),
771 (126003, 'police', 4, 'lieutenant', 'Lieutenant', 0, '{}', '{}'),
772 (126004, 'police', 6, 'chieftrooper', 'Chief Trooper', 0, '{}', '{}'),
773 (126005, 'offambulance', 4, 'senior', 'Doctor', 0, '{}', '{}'),
774 (126006, 'offpolice', 1, 'trooper', 'Trooper', 3200, '{}', '{}'),
775 (126007, 'offpolice', 3, 'sergeant', 'Sergeant', 4500, '{}', '{}'),
776 (126008, 'offpolice', 5, 'captain', 'Captain', 4500, '{}', '{}'),
777 (126009, 'offpolice', 7, 'commissioner', 'Commissioner', 4500, '{}', '{}'),
778 (126010, 'offpolice', 0, 'cadet', 'Cadet', 0, '{}', '{}'),
779 (126011, 'offpolice', 2, 'seniortrooper', 'Senior Trooper', 0, '{}', '{}'),
780 (126012, 'offpolice', 4, 'lieutenant', 'Lieutenant', 0, '{}', '{}'),
781 (126013, 'offpolice', 6, 'chieftrooper', 'Chief Trooper', 0, '{}', '{}');
782/*!40000 ALTER TABLE `job_grades` ENABLE KEYS */;
783
784CREATE TABLE IF NOT EXISTS `jsfour_criminalrecord` (
785 `offense` varchar(160) NOT NULL,
786 `date` varchar(255) DEFAULT NULL,
787 `institution` varchar(255) DEFAULT NULL,
788 `charge` varchar(255) DEFAULT NULL,
789 `description` varchar(255) DEFAULT NULL,
790 `term` varchar(255) DEFAULT NULL,
791 `classified` int(2) NOT NULL DEFAULT 0,
792 `identifier` varchar(255) DEFAULT NULL,
793 `dob` varchar(255) DEFAULT NULL,
794 `warden` varchar(255) DEFAULT NULL,
795 PRIMARY KEY (`offense`)
796) ENGINE=InnoDB DEFAULT CHARSET=latin1;
797
798/*!40000 ALTER TABLE `jsfour_criminalrecord` DISABLE KEYS */;
799/*!40000 ALTER TABLE `jsfour_criminalrecord` ENABLE KEYS */;
800
801CREATE TABLE IF NOT EXISTS `jsfour_criminaluserinfo` (
802 `identifier` varchar(160) NOT NULL,
803 `aliases` varchar(255) DEFAULT NULL,
804 `recordid` varchar(255) DEFAULT NULL,
805 `weight` varchar(255) DEFAULT NULL,
806 `eyecolor` varchar(255) DEFAULT NULL,
807 `haircolor` varchar(255) DEFAULT NULL,
808 `firstname` varchar(255) DEFAULT NULL,
809 `lastname` varchar(255) DEFAULT NULL,
810 `dob` varchar(255) DEFAULT NULL,
811 `sex` varchar(255) DEFAULT NULL,
812 `height` varchar(255) DEFAULT NULL,
813 PRIMARY KEY (`identifier`)
814) ENGINE=InnoDB DEFAULT CHARSET=latin1;
815
816/*!40000 ALTER TABLE `jsfour_criminaluserinfo` DISABLE KEYS */;
817/*!40000 ALTER TABLE `jsfour_criminaluserinfo` ENABLE KEYS */;
818
819CREATE TABLE IF NOT EXISTS `log_admin` (
820 `admin` varchar(50) DEFAULT NULL,
821 `type` varchar(50) DEFAULT NULL,
822 `target` varchar(50) DEFAULT NULL,
823 `message` varchar(200) DEFAULT NULL
824) ENGINE=MyISAM DEFAULT CHARSET=latin1;
825
826/*!40000 ALTER TABLE `log_admin` DISABLE KEYS */;
827INSERT INTO `log_admin` (`admin`, `type`, `target`, `message`) VALUES
828 ('steam:11000010665ec90', 'dv', NULL, '{"x":-415.6745300293,"z":27.082828521729,"y":-1988.6644287109}'),
829 ('steam:11000010665ec90', 'car', NULL, '{"location":{"x":-357.25537109375,"z":27.755737304688,"y":-2046.4921875},"car":"jester"}'),
830 ('steam:11000010665ec90', 'dv', NULL, '{"x":1176.3240966797,"z":54.086647033691,"y":-839.57495117188}'),
831 ('steam:11000010665ec90', 'dv', NULL, '{"x":-728.21356201172,"z":21.644956588745,"y":-1598.5874023438}'),
832 ('steam:11000010665ec90', 'revive', NULL, '[{"z":4.7950339317322,"x":-695.69757080078,"y":-1550.6921386719}]'),
833 ('steam:11000010ba2a250', 'dv', NULL, '{"x":-20.590147018433,"y":-1613.46484375,"z":28.806770324707}'),
834 ('steam:11000010ba2a250', 'car', NULL, '{"location":{"x":-457.19760131836,"y":-1711.3793945313,"z":18.681528091431},"car":"vigilante"}'),
835 ('steam:11000010ba2a250', 'car', NULL, '{"location":{"x":-456.83535766602,"y":-1712.9709472656,"z":18.640655517578},"car":"faggio"}'),
836 ('steam:11000010ba2a250', 'setmoney', 'steam:11000010ba2a250', '{"new":1000000,"old":0,"type":"cash"}'),
837 ('steam:11000010ba2a250', 'giveitem', 'steam:11000010ba2a250', '{"new":1,"old":0,"type":"phone","amount":1}'),
838 ('steam:11000010ba2a250', 'giveitem', 'steam:11000010ba2a250', '{"new":1,"old":0,"type":"gps","amount":1}'),
839 ('steam:11000010ba2a250', 'setmoney', 'steam:11000010ba2a250', '{"new":59999,"old":1000000,"type":"cash"}'),
840 ('steam:11000010ba2a250', 'giveaccountmoney', 'steam:11000010ba2a250', '{"new":505500,"old":5500,"type":"bank","amount":500000}'),
841 ('steam:11000010ba2a250', 'giveaccountmoney', 'steam:11000010ba2a250', '{"new":500000,"old":0,"type":"bank","amount":500000}'),
842 ('steam:11000010ba2a250', 'giveaccountmoney', 'steam:11000010ba2a250', '{"new":5488000,"old":488000,"type":"bank","amount":5000000}'),
843 ('steam:11000010ba2a250', 'car', NULL, '{"location":{"x":4.5987944602966,"y":-763.38763427734,"z":44.281436920166},"car":"lamboavj"}'),
844 ('steam:11000010ba2a250', 'dv', NULL, '{"x":1578.0062255859,"y":-813.63348388672,"z":95.789344787598}'),
845 ('steam:11000010ba2a250', 'noclip', NULL, NULL),
846 ('steam:11000010ba2a250', 'noclip', NULL, NULL),
847 ('steam:11000010ba2a250', 'dv', NULL, '{"x":-448.03237915039,"y":-1706.8494873047,"z":18.814743041992}'),
848 ('steam:1100001075ca00d', 'giveweapon', 'steam:1100001075ca00d', '{"ammo":1000,"name":"WEAPON_MG"}'),
849 ('steam:1100001075ca00d', 'giveweapon', 'steam:1100001075ca00d', '{"ammo":1000,"name":"WEAPON_ASSAULTRIFLE"}'),
850 ('steam:11000010665ec90', 'godmode', NULL, 'Enabled'),
851 ('steam:11000010665ec90', 'goto', 'steam:11000010fbf8e44', '[{"x":-672.77429199219,"y":-2380.9936523438,"z":13.820128440857},{"x":126.53280639648,"y":-1361.6275634766,"z":29.167221069336}]'),
852 ('steam:11000010fbf8e44', 'godmode', NULL, 'Enabled'),
853 ('steam:11000010665ec90', 'noclip', NULL, NULL),
854 ('steam:11000010665ec90', 'noclip', NULL, NULL),
855 ('steam:11000010665ec90', 'bring', 'steam:11000010fbf8e44', '[{"x":125.05587768555,"y":-1370.4171142578,"z":29.341829299927},{"x":1776.2312011719,"y":2587.072265625,"z":45.793224334717}]'),
856 ('steam:11000010665ec90', 'setjob', 'steam:11000010fbf8e44', '{"old":{"job":"unemployed","rank":0},"new":{"job":"police","rank":7}}'),
857 ('steam:11000010665ec90', 'setjob', 'steam:11000010665ec90', '{"old":{"job":"unemployed","rank":0},"new":{"job":"police","rank":7}}'),
858 ('steam:11000010fbf8e44', 'car', NULL, '{"location":{"z":45.672046661377,"y":2606.640625,"x":1876.3341064453},"car":"TESLAX"}'),
859 ('steam:11000010fbf8e44', 'car', NULL, '{"location":{"z":45.672046661377,"y":2606.640625,"x":1876.3341064453},"car":"teslax"}'),
860 ('steam:11000010fbf8e44', 'car', NULL, '{"location":{"z":45.672046661377,"y":2598.1455078125,"x":1871.9587402344},"car":"polive"}'),
861 ('steam:11000010fbf8e44', 'car', NULL, '{"location":{"z":45.672039031982,"y":2598.140625,"x":1871.9326171875},"car":"police"}'),
862 ('steam:11000010fbf8e44', 'car', NULL, '{"location":{"z":45.672019958496,"y":2596.8408203125,"x":1872.2408447266},"car":"lamboavj"}'),
863 ('steam:11000010fbf8e44', 'dv', NULL, '{"z":45.886070251465,"y":2857.9897460938,"x":2249.2761230469}'),
864 ('steam:1100001075ca00d', 'goto', 'steam:11000010fbf8e44', '[{"x":-1049.3062744141,"y":-2591.408203125,"z":13.606513023376},{"x":2248.8986816406,"y":2857.7646484375,"z":46.284770965576}]'),
865 ('steam:1100001075ca00d', 'giveweapon', 'steam:1100001075ca00d', '{"name":"WEAPON_ASSAULTRIFLE","ammo":10000}'),
866 ('steam:1100001075ca00d', 'giveweapon', 'steam:1100001075ca00d', '{"name":"WEAPON_ASSAULTRIFLE","ammo":10000}'),
867 ('steam:11000010665ec90', 'setjob', 'steam:11000010665ec90', '{"old":{"job":"police","rank":7},"new":{"job":"police","rank":7}}'),
868 ('steam:11000010665ec90', 'setjob', 'steam:11000010fbf8e44', '{"old":{"job":"police","rank":7},"new":{"job":"police","rank":7}}'),
869 ('steam:1100001075ca00d', 'giveweapon', 'steam:1100001075ca00d', '{"name":"WEAPON_ASSAULTRIFLE","ammo":10000}'),
870 ('steam:11000010665ec90', 'goto', 'steam:1100001075ca00d', '[{"x":2248.2309570313,"y":2870.4689941406,"z":46.581081390381},{"x":2290.7685546875,"y":2842.5246582031,"z":41.603450775146}]'),
871 ('steam:1100001075ca00d', 'godmode', NULL, 'Enabled'),
872 ('steam:11000010665ec90', 'godmode', NULL, 'Disabled'),
873 ('steam:1100001075ca00d', 'car', NULL, '{"location":{"z":41.600250244141,"y":2842.52734375,"x":2291.1447753906},"car":"jester"}'),
874 ('steam:11000010665ec90', 'revive', NULL, '[{"y":2820.7346191406,"x":2325.5654296875,"z":40.564586639404}]'),
875 ('steam:11000010665ec90', 'giveweapon', 'steam:1100001075ca00d', '{"name":"WEAPON_RPG","ammo":100}'),
876 ('steam:11000010665ec90', 'giveweapon', 'steam:11000010665ec90', '{"name":"WEAPON_RPG","ammo":100}'),
877 ('steam:11000010665ec90', 'revive', NULL, '[{"y":2886.47265625,"x":2370.0959472656,"z":39.451732635498}]'),
878 ('steam:11000010665ec90', 'giveweapon', 'steam:11000010665ec90', '{"name":"WEAPON_COMBATPISTOL","ammo":100}'),
879 ('steam:11000010fbf8e44', 'car', NULL, '{"location":{"z":41.264537811279,"y":2851.0629882813,"x":2301.3220214844},"car":"lamboavj"}'),
880 ('steam:11000010665ec90', 'revive', NULL, '[{"y":2835.6535644531,"x":2341.4975585938,"z":40.199996948242}]'),
881 ('steam:11000010665ec90', 'revive', NULL, '[{"y":2830.7265625,"x":2341.2333984375,"z":40.605941772461}]'),
882 ('steam:11000010665ec90', 'revive', NULL, '[{"y":2842.3249511719,"x":2349.7277832031,"z":39.999507904053}]'),
883 ('steam:11000010665ec90', 'giveweapon', 'steam:11000010665ec90', '{"name":"WEAPON_RPG","ammo":100}'),
884 ('steam:11000010fbf8e44', 'dv', NULL, '{"z":50.317050933838,"y":2663.1760253906,"x":2113.4921875}'),
885 ('steam:11000010fbf8e44', 'car', NULL, '{"location":{"z":50.687637329102,"y":2664.5881347656,"x":2113.5341796875},"car":"lamboavj"}'),
886 ('steam:11000010fbf8e44', 'car', NULL, '{"location":{"z":40.295017242432,"y":2872.5822753906,"x":2370.8269042969},"car":"lamboavj"}'),
887 ('steam:11000010fbf8e44', 'car', NULL, '{"location":{"z":41.985363006592,"y":2868.6713867188,"x":2346.5668945313},"car":"lamboavj"}'),
888 ('steam:11000010665ec90', 'giveweapon', 'steam:11000010665ec90', '{"name":"WEAPON_MG","ammo":100}'),
889 ('steam:11000010665ec90', 'revive', NULL, '[{"y":2857.9416503906,"x":2413.0559082031,"z":47.038330078125}]'),
890 ('steam:11000010665ec90', 'revive', NULL, '[{"y":2865.5764160156,"x":2428.6906738281,"z":47.953113555908}]'),
891 ('steam:1100001075ca00d', 'car', NULL, '{"location":{"z":40.383846282959,"y":2867.9360351563,"x":2371.3725585938},"car":"jester"}'),
892 ('steam:11000010665ec90', 'car', NULL, '{"location":{"z":49.283382415771,"y":2890.861328125,"x":2421.89453125},"car":"riot"}'),
893 ('steam:1100001075ca00d', 'dv', NULL, '{"z":46.809803009033,"y":2984.4069824219,"x":2318.982421875}'),
894 ('steam:1100001075ca00d', 'car', NULL, '{"location":{"z":46.845985412598,"y":2987.005859375,"x":2301.8972167969},"car":"jester"}'),
895 ('steam:1100001075ca00d', 'dv', NULL, '{"z":45.454006195068,"y":3008.7663574219,"x":2286.7043457031}'),
896 ('steam:1100001075ca00d', 'car', NULL, '{"location":{"z":46.16215133667,"y":3012.7570800781,"x":2286.1450195313},"car":"jester"}'),
897 ('steam:1100001075ca00d', 'noclip', NULL, NULL),
898 ('steam:1100001075ca00d', 'noclip', NULL, NULL),
899 ('steam:11000010fbf8e44', 'car', NULL, '{"location":{"z":46.247230529785,"y":3007.2116699219,"x":2286.5502929688},"car":"charger"}'),
900 ('steam:1100001075ca00d', 'car', NULL, '{"location":{"z":45.874946594238,"y":2995.26171875,"x":2275.5034179688},"car":"marquis"}'),
901 ('steam:1100001075ca00d', 'dv', NULL, '{"z":45.896461486816,"y":2995.2668457031,"x":2275.4799804688}'),
902 ('steam:1100001075ca00d', 'car', NULL, '{"location":{"z":46.023059844971,"y":2997.8684082031,"x":2277.9606933594},"car":"metrotrain"}'),
903 ('steam:1100001075ca00d', 'dv', NULL, '{"z":45.453937530518,"y":2997.8383789063,"x":2278.3312988281}'),
904 ('steam:1100001075ca00d', 'car', NULL, '{"location":{"z":46.137607574463,"y":3000.7404785156,"x":2281.5100097656},"car":"freight"}'),
905 ('steam:1100001075ca00d', 'dv', NULL, '{"z":46.653877258301,"y":3000.8017578125,"x":2281.263671875}'),
906 ('steam:1100001075ca00d', 'car', NULL, '{"location":{"z":46.979427337646,"y":2987.9343261719,"x":2303.7355957031},"car":"terbyte"}'),
907 ('steam:1100001075ca00d', 'dv', NULL, '{"z":46.656791687012,"y":2986.6892089844,"x":2234.3601074219}'),
908 ('steam:1100001075ca00d', 'car', NULL, '{"location":{"z":46.581104278564,"y":2989.8928222656,"x":2233.9050292969},"car":"minitank"}'),
909 ('steam:1100001075ca00d', 'car', NULL, '{"location":{"z":46.581104278564,"y":2990.6831054688,"x":2234.44140625},"car":"harftrack"}'),
910 ('steam:1100001075ca00d', 'car', NULL, '{"location":{"z":46.581104278564,"y":2990.6831054688,"x":2234.44140625},"car":"halftrack"}'),
911 ('steam:11000010fbf8e44', 'car', NULL, '{"location":{"z":48.668888092041,"y":2994.8093261719,"x":2300.2253417969},"car":"bcso6"}'),
912 ('steam:1100001075ca00d', 'car', NULL, '{"location":{"z":46.581130981445,"y":2989.9582519531,"x":2232.6477050781},"car":"scarab2"}'),
913 ('steam:11000010fbf8e44', 'dv', NULL, '{"z":46.893539428711,"y":2995.3774414063,"x":2299.8308105469}'),
914 ('steam:11000010fbf8e44', 'car', NULL, '{"location":{"z":46.519802093506,"y":3000.3483886719,"x":2294.1735839844},"car":"bcso6"}'),
915 ('steam:11000010665ec90', 'car', NULL, '{"location":{"z":45.185939788818,"y":3014.1328125,"x":2236.9372558594},"car":"riot"}'),
916 ('steam:11000010fbf8e44', 'dv', NULL, '{"z":46.979042053223,"y":3598.1437988281,"x":2288.4506835938}'),
917 ('steam:11000010fbf8e44', 'car', NULL, '{"location":{"z":47.452304840088,"y":3598.7646484375,"x":2289.6025390625},"car":"bcso6"}'),
918 ('steam:11000010fbf8e44', 'dv', NULL, '{"z":34.688674926758,"y":3650.5183105469,"x":1631.5693359375}'),
919 ('steam:11000010fbf8e44', 'car', NULL, '{"location":{"z":34.688674926758,"y":3650.5183105469,"x":1631.5693359375},"car":"bcso6"}'),
920 ('steam:11000010554fe60', 'goto', 'steam:11000010fbf8e44', '[{"x":-1038.3580322266,"y":-2720.9880371094,"z":13.648708343506},{"x":2391.3288574219,"y":3923.0576171875,"z":35.600505828857}]'),
921 ('steam:11000010665ec90', 'car', NULL, '{"location":{"z":36.294578552246,"y":3532.6701660156,"x":1730.6010742188},"car":"rbcam"}'),
922 ('steam:11000010554fe60', 'giveitem', 'steam:11000010554fe60', '{"amount":1,"new":1,"type":"gps","old":0}'),
923 ('steam:11000010fbf8e44', 'dv', NULL, '{"z":36.578495025635,"y":4611.9150390625,"x":2452.6499023438}'),
924 ('steam:11000010fbf8e44', 'car', NULL, '{"location":{"z":36.578495025635,"y":4611.9150390625,"x":2452.6499023438},"car":"bcso6"}'),
925 ('steam:11000010554fe60', 'goto', 'steam:11000010fbf8e44', '[{"x":2404.72265625,"y":3935.2238769531,"z":36.146293640137},{"x":2451.0141601563,"y":4684.859375,"z":30.779579162598}]'),
926 ('steam:11000010554fe60', 'car', NULL, '{"location":{"z":32.601249694824,"y":4684.8427734375,"x":2454.3603515625},"car":"riot"}'),
927 ('steam:11000010fbf8e44', 'dv', NULL, '{"z":36.053314208984,"y":4624.3701171875,"x":2460.7255859375}'),
928 ('steam:11000010fbf8e44', 'car', NULL, '{"location":{"z":33.511196136475,"y":4628.3002929688,"x":2455.6604003906},"car":"bcso6"}'),
929 ('steam:11000010665ec90', 'dv', NULL, '{"z":29.468240737915,"y":4651.5639648438,"x":2465.8303222656}'),
930 ('steam:1100001075ca00d', 'dv', NULL, '{"z":29.414119720459,"y":4608.7817382813,"x":2423.10546875}'),
931 ('steam:11000010665ec90', 'giveweapon', 'steam:11000010665ec90', '{"name":"WEAPON_MG","ammo":100}'),
932 ('steam:11000010fbf8e44', 'dv', NULL, '{"z":28.858901977539,"y":4620.205078125,"x":2433.9323730469}'),
933 ('steam:11000010fbf8e44', 'car', NULL, '{"location":{"z":32.42936706543,"y":4620.0048828125,"x":2443.4240722656},"car":"bcso6"}'),
934 ('steam:1100001075ca00d', 'godmode', NULL, 'Disabled'),
935 ('steam:11000010554fe60', 'dv', NULL, '{"z":29.773345947266,"y":4661.96875,"x":2476.703125}'),
936 ('steam:1100001075ca00d', 'car', NULL, '{"location":{"z":36.854866027832,"y":4614.318359375,"x":2452.2521972656},"car":"scarab2"}'),
937 ('steam:11000010554fe60', 'car', NULL, '{"location":{"z":33.591835021973,"y":4656.1484375,"x":2486.9392089844},"car":"riot"}'),
938 ('steam:11000010665ec90', 'car', NULL, '{"location":{"z":34.704998016357,"y":4640.740234375,"x":2479.7055664063},"car":"rbcam"}'),
939 ('steam:11000010554fe60', 'dv', NULL, '{"z":22.704189300537,"y":5065.9580078125,"x":2982.6694335938}'),
940 ('steam:11000010554fe60', 'car', NULL, '{"location":{"z":26.407814025879,"y":5057.2705078125,"x":2983.1970214844},"car":"riot"}'),
941 ('steam:11000010665ec90', 'dv', NULL, '{"z":24.02290725708,"y":5064.3422851563,"x":2917.6340332031}'),
942 ('steam:11000010fbf8e44', 'dv', NULL, '{"z":23.451391220093,"y":5066.3666992188,"x":2979.5864257813}'),
943 ('steam:11000010fbf8e44', 'car', NULL, '{"location":{"z":24.207962036133,"y":5065.33984375,"x":2980.7448730469},"car":"bcso6"}'),
944 ('steam:11000010665ec90', 'car', NULL, '{"location":{"z":25.654945373535,"y":5070.8032226563,"x":2924.6240234375},"car":"rbcam"}'),
945 ('steam:11000010fbf8e44', 'dv', NULL, '{"z":24.772214889526,"y":5058.57421875,"x":2972.6125488281}'),
946 ('steam:11000010fbf8e44', 'car', NULL, '{"location":{"z":24.92999458313,"y":5059.8725585938,"x":2975.3132324219},"car":"bcso6"}'),
947 ('steam:11000010665ec90', 'dv', NULL, '{"z":0.17536510527134,"y":5302.6098632813,"x":3222.3898925781}'),
948 ('steam:11000010665ec90', 'car', NULL, '{"location":{"z":1.3409841060638,"y":5307.966796875,"x":3216.3403320313},"car":"rbcam"}'),
949 ('steam:11000010665ec90', 'dv', NULL, '{"z":19.230922698975,"y":5391.2465820313,"x":3224.97265625}'),
950 ('steam:11000010665ec90', 'car', NULL, '{"location":{"z":19.880624771118,"y":5391.7553710938,"x":3226.3469238281},"car":"polmav"}'),
951 ('steam:11000010fbf8e44', 'dv', NULL, '{"z":22.989217758179,"y":5062.1381835938,"x":2965.1276855469}'),
952 ('steam:11000010fbf8e44', 'car', NULL, '{"location":{"z":25.943996429443,"y":5058.3959960938,"x":2962.5288085938},"car":"bcso6"}'),
953 ('steam:1100001075ca00d', 'dv', NULL, '{"z":31.217695236206,"y":5026.6928710938,"x":2880.18359375}'),
954 ('steam:1100001075ca00d', 'car', NULL, '{"location":{"z":31.744167327881,"y":5024.7900390625,"x":2879.4809570313},"car":"scarab2"}'),
955 ('steam:11000010554fe60', 'dv', NULL, '{"z":29.066709518433,"y":5067.318359375,"x":2897.8959960938}'),
956 ('steam:11000010554fe60', 'car', NULL, '{"location":{"z":30.037643432617,"y":5049.134765625,"x":2896.208984375},"car":"riot"}'),
957 ('steam:11000010fbf8e44', 'dv', NULL, '{"z":56.869415283203,"y":5356.44921875,"x":2494.6171875}'),
958 ('steam:11000010fbf8e44', 'car', NULL, '{"location":{"z":51.221683502197,"y":5367.6625976563,"x":2503.7121582031},"car":"bcso6"}'),
959 ('steam:11000010fbf8e44', 'dv', NULL, '{"z":45.319435119629,"y":5432.3862304688,"x":2501.5317382813}'),
960 ('steam:11000010fbf8e44', 'car', NULL, '{"location":{"z":45.696838378906,"y":5433.5244140625,"x":2500.6313476563},"car":"bcso6"}'),
961 ('steam:11000010fbf8e44', 'car', NULL, '{"location":{"z":44.362785339355,"y":5524.7822265625,"x":2525.5141601563},"car":"bcso6"}'),
962 ('steam:11000010665ec90', 'revive', NULL, '[{"y":6202.5424804688,"x":1970.8255615234,"z":44.836009979248}]'),
963 ('steam:11000010fbf8e44', 'dv', NULL, '{"z":45.732517242432,"y":6250.7392578125,"x":1993.9525146484}'),
964 ('steam:11000010fbf8e44', 'car', NULL, '{"location":{"z":46.040420532227,"y":6251.0668945313,"x":1993.7768554688},"car":"bcso6"}'),
965 ('steam:11000010665ec90', 'giveaccountmoney', 'steam:11000010665ec90', '{"amount":2000000000,"new":2000014500,"type":"bank","old":14500}'),
966 ('steam:11000010554fe60', 'dv', NULL, '{"z":159.57203674316,"y":6381.6962890625,"x":2094.5095214844}'),
967 ('steam:11000010fbf8e44', 'dv', NULL, '{"z":183.82543945313,"y":6377.8139648438,"x":2154.22265625}'),
968 ('steam:11000010554fe60', 'car', NULL, '{"location":{"z":161.97731018066,"y":6386.0766601563,"x":2094.025390625},"car":"policeb"}'),
969 ('steam:11000010fbf8e44', 'car', NULL, '{"location":{"z":183.15361022949,"y":6379.4360351563,"x":2154.5065917969},"car":"policeb"}'),
970 ('steam:11000010554fe60', 'car', NULL, '{"location":{"z":168.15084838867,"y":6380.7963867188,"x":2109.8693847656},"car":"pobike"}'),
971 ('steam:11000010fbf8e44', 'car', NULL, '{"location":{"z":182.48907470703,"y":6362.5771484375,"x":2166.4013671875},"car":"pobike"}'),
972 ('steam:11000010fbf8e44', 'car', NULL, '{"location":{"z":178.81272888184,"y":6356.9794921875,"x":2163.6557617188},"car":"pobike"}'),
973 ('steam:11000010554fe60', 'dv', NULL, '{"z":77.641044616699,"y":6310.6484375,"x":2037.5725097656}'),
974 ('steam:11000010554fe60', 'car', NULL, '{"location":{"z":74.538986206055,"y":6307.9155273438,"x":2033.8131103516},"car":"riot"}'),
975 ('steam:11000010fbf8e44', 'dv', NULL, '{"z":51.465473175049,"y":6068.466796875,"x":2174.5373535156}'),
976 ('steam:1100001075ca00d', 'dv', NULL, '{"z":51.533584594727,"y":6044.0610351563,"x":2200.7280273438}'),
977 ('steam:1100001075ca00d', 'car', NULL, '{"location":{"z":52.093570709229,"y":6044.916015625,"x":2206.9790039063},"car":"scarab2"}'),
978 ('steam:11000010fbf8e44', 'car', NULL, '{"location":{"z":51.926342010498,"y":6069.2626953125,"x":2173.77734375},"car":"pobike"}'),
979 ('steam:1100001075ca00d', 'revive', NULL, '[{"y":6047.6572265625,"x":2210.3837890625,"z":51.220554351807}]'),
980 ('steam:11000010fbf8e44', 'dv', NULL, '{"z":44.057064056396,"y":5348.4296875,"x":2535.1916503906}'),
981 ('steam:11000010fbf8e44', 'car', NULL, '{"location":{"z":44.057064056396,"y":5348.4296875,"x":2535.1916503906},"car":"pobike"}'),
982 ('steam:11000010fbf8e44', 'car', NULL, '{"location":{"z":63.808094024658,"y":5367.2514648438,"x":2486.4741210938},"car":"pobike"}'),
983 ('steam:11000010665ec90', 'dv', NULL, '{"z":13.250329017639,"y":-2967.9499511719,"x":-1063.3059082031}'),
984 ('steam:11000010fbf8e44', 'dv', NULL, '{"z":34.303173065186,"y":4879.0727539063,"x":2656.4921875}'),
985 ('steam:11000010fbf8e44', 'car', NULL, '{"location":{"z":33.696910858154,"y":4868.2133789063,"x":2658.359375},"car":"pobike"}'),
986 ('steam:11000010fbf8e44', 'dv', NULL, '{"z":43.841884613037,"y":4668.7080078125,"x":2728.2177734375}'),
987 ('steam:11000010fbf8e44', 'car', NULL, '{"location":{"z":44.345260620117,"y":4664.3818359375,"x":2729.5107421875},"car":"pobike"}'),
988 ('steam:11000010fbf8e44', 'dv', NULL, '{"z":45.696407318115,"y":4489.1352539063,"x":2734.6857910156}'),
989 ('steam:11000010fbf8e44', 'car', NULL, '{"location":{"z":44.823585510254,"y":4490.9438476563,"x":2729.03515625},"car":"pobike"}'),
990 ('steam:1100001075ca00d', 'dv', NULL, '{"z":32.052230834961,"y":4787.9614257813,"x":2610.4411621094}'),
991 ('steam:1100001075ca00d', 'revive', NULL, '[{"y":4787.9614257813,"x":2610.4411621094,"z":32.052230834961}]'),
992 ('steam:11000010554fe60', 'dv', NULL, '{"z":33.147789001465,"y":4773.23046875,"x":2617.0178222656}'),
993 ('steam:1100001075ca00d', 'car', NULL, '{"location":{"z":32.521865844727,"y":4790.11328125,"x":2610.4477539063},"car":"scarab2"}'),
994 ('steam:11000010554fe60', 'car', NULL, '{"location":{"z":33.682556152344,"y":4771.6440429688,"x":2615.1953125},"car":"riot"}'),
995 ('steam:11000010fbf8e44', 'dv', NULL, '{"z":34.041961669922,"y":4755.833984375,"x":2656.7172851563}'),
996 ('steam:1100001075ca00d', 'dv', NULL, '{"z":44.399837493896,"y":4689.5161132813,"x":2708.7111816406}'),
997 ('steam:11000010fbf8e44', 'car', NULL, '{"location":{"z":34.521415710449,"y":4756.568359375,"x":2657.2800292969},"car":"pobike"}'),
998 ('steam:1100001075ca00d', 'car', NULL, '{"location":{"z":44.320693969727,"y":4688.0380859375,"x":2716.0068359375},"car":"lamboavj"}'),
999 ('steam:11000010554fe60', 'dv', NULL, '{"z":43.879875183105,"y":4660.18359375,"x":2718.8977050781}'),
1000 ('steam:11000010554fe60', 'car', NULL, '{"location":{"z":44.466854095459,"y":4660.7353515625,"x":2718.0546875},"car":"rbcam"}'),
1001 ('steam:11000010fbf8e44', 'dv', NULL, '{"z":51.85684967041,"y":3879.5310058594,"x":2918.4482421875}'),
1002 ('steam:11000010fbf8e44', 'car', NULL, '{"location":{"z":52.411376953125,"y":3868.0146484375,"x":2918.3950195313},"car":"pobike"}'),
1003 ('steam:11000010fbf8e44', 'car', NULL, '{"location":{"z":52.475978851318,"y":3860.1337890625,"x":2917.8774414063},"car":"pobike"}'),
1004 ('steam:1100001075ca00d', 'dv', NULL, '{"z":52.043388366699,"y":3859.15625,"x":2919.6259765625}'),
1005 ('steam:11000010fbf8e44', 'car', NULL, '{"location":{"z":52.526885986328,"y":3837.2204589844,"x":2922.0974121094},"car":"pobike"}'),
1006 ('steam:11000010554fe60', 'dv', NULL, '{"z":51.750129699707,"y":3835.4045410156,"x":2917.126953125}'),
1007 ('steam:1100001075ca00d', 'car', NULL, '{"location":{"z":52.457370758057,"y":3859.0402832031,"x":2917.9709472656},"car":"lamboavj"}'),
1008 ('steam:11000010554fe60', 'car', NULL, '{"location":{"z":52.557975769043,"y":3836.7048339844,"x":2916.8420410156},"car":"rbcam"}'),
1009 ('steam:11000010fbf8e44', 'dv', NULL, '{"z":84.531158447266,"y":1475.77734375,"x":1731.3634033203}'),
1010 ('steam:11000010fbf8e44', 'car', NULL, '{"location":{"z":84.996940612793,"y":1476.6617431641,"x":1731.0994873047},"car":"pobike"}'),
1011 ('steam:1100001075ca00d', 'dv', NULL, '{"z":84.201469421387,"y":1541.16015625,"x":1748.4919433594}'),
1012 ('steam:1100001075ca00d', 'car', NULL, '{"location":{"z":84.201469421387,"y":1541.16015625,"x":1748.4919433594},"car":"lamboavj"}'),
1013 ('steam:1100001075ca00d', 'setjob', 'steam:1100001075ca00d', '{"old":{"job":"unemployed","rank":0},"new":{"job":"police","rank":5}}'),
1014 ('steam:1100001075ca00d', 'car', NULL, '{"location":{"z":108.48078918457,"y":465.5791015625,"x":2568.4929199219},"car":"lamboavj"}'),
1015 ('steam:11000010554fe60', 'dv', NULL, '{"z":54.078533172607,"y":3249.8337402344,"x":2703.8322753906}'),
1016 ('steam:11000010554fe60', 'goto', 'steam:11000010fbf8e44', '[{"x":2703.5883789063,"y":3251.6469726563,"z":54.918815612793},{"x":2486.974609375,"y":9.9281702041626,"z":94.415657043457}]'),
1017 ('steam:11000010554fe60', 'car', NULL, '{"location":{"z":94.886291503906,"y":9.9342737197876,"x":2486.974609375},"car":"rbcam"}'),
1018 ('steam:1100001075ca00d', 'dv', NULL, '{"z":51.427143096924,"y":-1186.5216064453,"x":968.12170410156}'),
1019 ('steam:1100001075ca00d', 'car', NULL, '{"location":{"z":50.882911682129,"y":-1187.4244384766,"x":958.18542480469},"car":"lamboavj"}'),
1020 ('steam:11000010665ec90', 'car', NULL, '{"location":{"z":87.830085754395,"y":-415.04916381836,"x":2294.5805664063},"car":"unm3"}'),
1021 ('steam:1100001075ca00d', 'dv', NULL, '{"z":25.993000030518,"y":-1239.4259033203,"x":800.234375}'),
1022 ('steam:1100001075ca00d', 'car', NULL, '{"location":{"z":26.408573150635,"y":-1240.8572998047,"x":800.591796875},"car":"lamboavj"}'),
1023 ('steam:11000010554fe60', 'dv', NULL, '{"z":50.567279815674,"y":-1180.9176025391,"x":1193.8875732422}'),
1024 ('steam:11000010554fe60', 'goto', 'steam:11000010fbf8e44', '[{"x":1215.3043212891,"y":-1178.6423339844,"z":51.454639434814},{"x":1160.9122314453,"y":-910.56811523438,"z":50.833293914795}]'),
1025 ('steam:11000010554fe60', 'car', NULL, '{"location":{"z":51.341480255127,"y":-910.56268310547,"x":1160.9200439453},"car":"rbcam"}'),
1026 ('steam:1100001075ca00d', 'dv', NULL, '{"z":31.804111480713,"y":-1013.0709228516,"x":884.63549804688}'),
1027 ('steam:11000010fbf8e44', 'godmode', NULL, 'Disabled'),
1028 ('steam:1100001075ca00d', 'car', NULL, '{"location":{"z":32.276214599609,"y":-1009.1711425781,"x":886.06134033203},"car":"lamboavj"}'),
1029 ('steam:11000010554fe60', 'dv', NULL, '{"z":60.982330322266,"y":-653.48352050781,"x":1195.9448242188}'),
1030 ('steam:11000010554fe60', 'car', NULL, '{"location":{"z":61.983024597168,"y":-650.58044433594,"x":1194.3001708984},"car":"rbcam"}'),
1031 ('steam:11000010554fe60', 'dv', NULL, '{"z":64.847534179688,"y":-487.19799804688,"x":1177.5477294922}'),
1032 ('steam:11000010554fe60', 'car', NULL, '{"location":{"z":66.028747558594,"y":-473.98095703125,"x":1179.5185546875},"car":"rbcam"}'),
1033 ('steam:1100001075ca00d', 'dv', NULL, '{"z":68.577247619629,"y":-336.759765625,"x":1204.8565673828}'),
1034 ('steam:1100001075ca00d', 'car', NULL, '{"location":{"z":68.577247619629,"y":-336.759765625,"x":1204.8565673828},"car":"lamboavj"}'),
1035 ('steam:11000010665ec90', 'dv', NULL, '{"z":36.060966491699,"y":-594.12921142578,"x":744.78942871094}'),
1036 ('steam:11000010665ec90', 'car', NULL, '{"location":{"z":36.300506591797,"y":-595.88568115234,"x":742.53399658203},"car":"unm3"}'),
1037 ('steam:11000010fbf8e44', 'car', NULL, '{"location":{"z":106.10704040527,"y":211.97694396973,"x":230.4916229248},"car":"pobike"}'),
1038 ('steam:11000010554fe60', 'dv', NULL, '{"z":104.84964752197,"y":216.4933013916,"x":219.93077087402}'),
1039 ('steam:11000010554fe60', 'car', NULL, '{"location":{"z":105.39496612549,"y":213.45211791992,"x":219.63352966309},"car":"rbcam"}'),
1040 ('steam:11000010fbf8e44', 'car', NULL, '{"location":{"z":105.54999542236,"y":220.14404296875,"x":223.20835876465},"car":"pobike"}'),
1041 ('steam:11000010fbf8e44', 'revive', NULL, '[{"y":251.77153015137,"x":-656.13818359375,"z":80.57071685791}]'),
1042 ('steam:11000010fbf8e44', 'revive', NULL, '[{"y":251.77156066895,"x":-656.13818359375,"z":81.309577941895}]'),
1043 ('steam:11000010fbf8e44', 'car', NULL, '{"location":{"z":81.559097290039,"y":251.7779083252,"x":-656.14123535156},"car":"pobike"}'),
1044 ('steam:11000010fbf8e44', 'revive', NULL, '[{"y":240.97520446777,"x":-674.75048828125,"z":80.324829101563}]'),
1045 ('steam:1100001075ca00d', 'dv', NULL, '{"z":81.002937316895,"y":252.90673828125,"x":-656.90411376953}'),
1046 ('steam:11000010fbf8e44', 'car', NULL, '{"location":{"z":81.028137207031,"y":240.28118896484,"x":-677.57330322266},"car":"pobike"}'),
1047 ('steam:1100001075ca00d', 'car', NULL, '{"location":{"z":81.417175292969,"y":253.94046020508,"x":-655.85205078125},"car":"lamboavj"}'),
1048 ('steam:11000010fbf8e44', 'revive', NULL, '[{"y":256.34817504883,"x":-720.21307373047,"z":80.38858795166}]'),
1049 ('steam:11000010fbf8e44', 'car', NULL, '{"location":{"z":80.111183166504,"y":243.02186584473,"x":-712.11456298828},"car":"pobike"}'),
1050 ('steam:11000010665ec90', 'dv', NULL, '{"z":78.116569519043,"y":237.54779052734,"x":-725.28973388672}'),
1051 ('steam:11000010665ec90', 'giveweapon', 'steam:11000010665ec90', '{"name":"WEAPON_CARBINE","ammo":5000}'),
1052 ('steam:11000010665ec90', 'giveweapon', 'steam:11000010665ec90', '{"name":"WEAPON_CARBINERIFLE","ammo":5000}'),
1053 ('steam:1100001075ca00d', 'dv', NULL, '{"z":29.16987991333,"y":-704.42462158203,"x":-625.14093017578}'),
1054 ('steam:11000010665ec90', 'car', NULL, '{"location":{"z":77.99974822998,"y":236.17381286621,"x":-727.29028320313},"car":"rbcam"}'),
1055 ('steam:1100001075ca00d', 'revive', NULL, '[{"y":-704.42431640625,"x":-625.15631103516,"z":29.179531097412}]'),
1056 ('steam:1100001075ca00d', 'car', NULL, '{"location":{"z":30.730916976929,"y":-691.05328369141,"x":-627.8134765625},"car":"lamboavj"}'),
1057 ('steam:1100001075ca00d', 'dv', NULL, '{"z":31.372806549072,"y":-833.18951416016,"x":198.33605957031}'),
1058 ('steam:1100001075ca00d', 'car', NULL, '{"location":{"z":30.921850204468,"y":-833.68859863281,"x":198.85192871094},"car":"lamboavj"}'),
1059 ('steam:11000010665ec90', 'car', NULL, '{"location":{"z":43.306629180908,"y":-550.97845458984,"x":276.37649536133},"car":"rbcam"}'),
1060 ('steam:11000010665ec90', 'dv', NULL, '{"z":42.59065246582,"y":-551.73315429688,"x":276.85873413086}'),
1061 ('steam:11000010665ec90', 'car', NULL, '{"location":{"z":43.317905426025,"y":-555.95446777344,"x":275.51956176758},"car":"rbcam"}'),
1062 ('steam:11000010fbf8e44', 'dv', NULL, '{"z":28.898147583008,"y":-991.91857910156,"x":39.675872802734}'),
1063 ('steam:11000010fbf8e44', 'car', NULL, '{"location":{"z":29.407552719116,"y":-982.48822021484,"x":41.921047210693},"car":"pobike"}'),
1064 ('steam:11000010554fe60', 'dv', NULL, '{"z":28.554119110107,"y":-1170.4885253906,"x":39.252342224121}'),
1065 ('steam:11000010554fe60', 'car', NULL, '{"location":{"z":29.314218521118,"y":-1170.7650146484,"x":41.123382568359},"car":"rbcam"}'),
1066 ('steam:11000010665ec90', 'dv', NULL, '{"z":33.633640289307,"y":-544.59240722656,"x":63.50740814209}'),
1067 ('steam:11000010665ec90', 'revive', NULL, '[{"y":-543.37585449219,"x":63.505233764648,"z":32.88928604126}]'),
1068 ('steam:11000010554fe60', 'dv', NULL, '{"z":43.387943267822,"y":-709.18505859375,"x":33.462253570557}'),
1069 ('steam:11000010665ec90', 'car', NULL, '{"location":{"z":33.912868499756,"y":-535.23596191406,"x":65.542861938477},"car":"rbcam"}'),
1070 ('steam:11000010554fe60', 'car', NULL, '{"location":{"z":43.394470214844,"y":-699.93865966797,"x":34.932498931885},"car":"rbcam"}'),
1071 ('steam:11000010554fe60', 'dv', NULL, '{"z":42.299690246582,"y":-486.47454833984,"x":134.08097839355}'),
1072 ('steam:11000010554fe60', 'goto', 'steam:1100001075ca00d', '[{"x":134.92277526855,"y":-477.2268371582,"z":43.124141693115},{"x":-1487.3305664063,"y":-749.01000976563,"z":10.65375328064}]'),
1073 ('steam:11000010554fe60', 'car', NULL, '{"location":{"z":11.097310066223,"y":-749.01000976563,"x":-1487.3305664063},"car":"rbcam"}'),
1074 ('steam:1100001075ca00d', 'dv', NULL, '{"z":18.669931411743,"y":-201.37078857422,"x":-2524.7197265625}'),
1075 ('steam:1100001075ca00d', 'car', NULL, '{"location":{"z":19.295469284058,"y":-198.08653259277,"x":-2530.1877441406},"car":"lamboavj"}'),
1076 ('steam:11000010554fe60', 'dv', NULL, '{"z":16.571033477783,"y":-20.21982383728,"x":-2680.7197265625}'),
1077 ('steam:11000010554fe60', 'car', NULL, '{"location":{"z":16.571033477783,"y":-20.21982383728,"x":-2680.7197265625},"car":"rbcam"}'),
1078 ('steam:11000010fbf8e44', 'car', NULL, '{"location":{"z":20.292629241943,"y":1225.2172851563,"x":-3093.9682617188},"car":"pobike"}'),
1079 ('steam:1100001075ca00d', 'dv', NULL, '{"z":20.431156158447,"y":1277.2097167969,"x":-3073.2307128906}'),
1080 ('steam:1100001075ca00d', 'car', NULL, '{"location":{"z":20.431156158447,"y":1277.2097167969,"x":-3073.2307128906},"car":"lamboavj"}'),
1081 ('steam:11000010fbf8e44', 'car', NULL, '{"location":{"z":20.288906097412,"y":1228.8349609375,"x":-3095.65234375},"car":"pobike"}'),
1082 ('steam:11000010554fe60', 'dv', NULL, '{"z":22.081336975098,"y":708.13482666016,"x":-3034.6916503906}'),
1083 ('steam:11000010554fe60', 'car', NULL, '{"location":{"z":22.894496917725,"y":706.95849609375,"x":-3035.4943847656},"car":"rbcam"}'),
1084 ('steam:11000010554fe60', 'dv', NULL, '{"z":22.082777023315,"y":706.95861816406,"x":-3035.4943847656}'),
1085 ('steam:11000010554fe60', 'goto', 'steam:11000010fbf8e44', '[{"x":-3034.7646484375,"y":705.73822021484,"z":22.910676956177},{"x":-2867.3159179688,"y":1282.4296875,"z":57.491226196289}]'),
1086 ('steam:11000010554fe60', 'car', NULL, '{"location":{"z":58.004100799561,"y":1282.4266357422,"x":-2867.3203125},"car":"rbcam"}'),
1087 ('steam:1100001075ca00d', 'dv', NULL, '{"z":76.278564453125,"y":1334.9038085938,"x":-2833.7727050781}'),
1088 ('steam:1100001075ca00d', 'car', NULL, '{"location":{"z":76.278564453125,"y":1334.9038085938,"x":-2833.7727050781},"car":"lamboavj"}'),
1089 ('steam:1100001075ca00d', 'car', NULL, '{"location":{"z":112.73145294189,"y":1529.1251220703,"x":-2660.5075683594},"car":"lamboavj"}'),
1090 ('steam:11000010fbf8e44', 'dv', NULL, '{"z":184.93672180176,"y":1874.6474609375,"x":-2255.8454589844}'),
1091 ('steam:11000010fbf8e44', 'car', NULL, '{"location":{"z":185.90440368652,"y":1875.873046875,"x":-2254.3344726563},"car":"pobike"}'),
1092 ('steam:11000010665ec90', 'dv', NULL, '{"z":182.25619506836,"y":1872.0753173828,"x":-2346.1794433594}'),
1093 ('steam:11000010665ec90', 'car', NULL, '{"location":{"z":183.03997802734,"y":1871.5526123047,"x":-2345.583984375},"car":"rbcam"}'),
1094 ('steam:1100001075ca00d', 'dv', NULL, '{"z":187.87078857422,"y":1925.3699951172,"x":-2211.8510742188}'),
1095 ('steam:1100001075ca00d', 'car', NULL, '{"location":{"z":188.48100280762,"y":1929.740234375,"x":-2205.8095703125},"car":"lamboavj"}'),
1096 ('steam:11000010665ec90', 'dv', NULL, '{"z":162.28253173828,"y":1957.3189697266,"x":-1984.8754882813}'),
1097 ('steam:11000010665ec90', 'car', NULL, '{"location":{"z":159.99801635742,"y":1962.5360107422,"x":-1981.419921875},"car":"rbcam"}'),
1098 ('steam:11000010554fe60', 'dv', NULL, '{"z":144.65225219727,"y":1939.5330810547,"x":-1838.4702148438}'),
1099 ('steam:11000010554fe60', 'goto', 'steam:11000010fbf8e44', '[{"x":-1853.6196289063,"y":1955.1469726563,"z":144.69323730469},{"x":-2395.2353515625,"y":2274.3032226563,"z":32.622337341309}]'),
1100 ('steam:11000010554fe60', 'car', NULL, '{"location":{"z":33.435482025146,"y":2274.3032226563,"x":-2395.2353515625},"car":"rbcam"}'),
1101 ('steam:11000010fbf8e44', 'dv', NULL, '{"z":32.577655792236,"y":2320.3469238281,"x":-2556.740234375}'),
1102 ('steam:11000010fbf8e44', 'car', NULL, '{"location":{"z":33.060031890869,"y":2319.5642089844,"x":-2563.75},"car":"pobike"}'),
1103 ('steam:11000010fbf8e44', 'revive', NULL, '[{"y":3278.6906738281,"x":-2571.5861816406,"z":12.493202209473}]'),
1104 ('steam:11000010fbf8e44', 'car', NULL, '{"location":{"z":13.241968154907,"y":3278.6906738281,"x":-2571.5861816406},"car":"pobike"}'),
1105 ('steam:1100001075ca00d', 'dv', NULL, '{"z":18.570890426636,"y":2287.896484375,"x":-2721.3762207031}'),
1106 ('steam:1100001075ca00d', 'car', NULL, '{"location":{"z":19.605701446533,"y":2280.3715820313,"x":-2729.3857421875},"car":"lamboavj"}'),
1107 ('steam:11000010fbf8e44', 'car', NULL, '{"location":{"z":12.743976593018,"y":3414.0263671875,"x":-2542.9440917969},"car":"pobike"}'),
1108 ('steam:11000010fbf8e44', 'car', NULL, '{"location":{"z":13.301614761353,"y":3426.5590820313,"x":-2540.3774414063},"car":"pobike"}'),
1109 ('steam:11000010fbf8e44', 'revive', NULL, '[{"y":4213.943359375,"x":-2286.95703125,"z":40.691787719727}]'),
1110 ('steam:11000010554fe60', 'dv', NULL, '{"z":34.432807922363,"y":4105.8481445313,"x":-2324.8332519531}'),
1111 ('steam:11000010554fe60', 'car', NULL, '{"location":{"z":35.225036621094,"y":4106.154296875,"x":-2326.2453613281},"car":"rbcam"}'),
1112 ('steam:11000010fbf8e44', 'car', NULL, '{"location":{"z":42.607009887695,"y":4236.166015625,"x":-2285.919921875},"car":"pobike"}'),
1113 ('steam:11000010665ec90', 'dv', NULL, '{"z":42.317081451416,"y":4237.7373046875,"x":-2290.603515625}'),
1114 ('steam:11000010665ec90', 'car', NULL, '{"location":{"z":42.5478515625,"y":4241.427734375,"x":-2289.2390136719},"car":"rbcam"}'),
1115 ('steam:1100001075ca00d', 'dv', NULL, '{"z":96.138244628906,"y":4218.6059570313,"x":-989.85906982422}'),
1116 ('steam:1100001075ca00d', 'car', NULL, '{"location":{"z":96.163925170898,"y":4217.578125,"x":-989.32293701172},"car":"lamboavj"}'),
1117 ('steam:11000010665ec90', 'dv', NULL, '{"z":162.74822998047,"y":4094.1379394531,"x":-885.60699462891}'),
1118 ('steam:11000010665ec90', 'car', NULL, '{"location":{"z":164.16206359863,"y":4089.5615234375,"x":-875.10302734375},"car":"rbcam"}'),
1119 ('steam:11000010554fe60', 'dv', NULL, '{"z":163.5220489502,"y":4075.5539550781,"x":-855.44903564453}'),
1120 ('steam:11000010554fe60', 'car', NULL, '{"location":{"z":164.09162902832,"y":4070.3959960938,"x":-846.67492675781},"car":"rbcam"}'),
1121 ('steam:11000010554fe60', 'dv', NULL, '{"z":165.80323791504,"y":4054.5788574219,"x":-838.11920166016}'),
1122 ('steam:1100001075ca00d', 'dv', NULL, '{"z":163.41000366211,"y":4061.3247070313,"x":-833.55261230469}'),
1123 ('steam:11000010554fe60', 'car', NULL, '{"location":{"z":167.33026123047,"y":4052.3813476563,"x":-836.97381591797},"car":"rbcam"}'),
1124 ('steam:1100001075ca00d', 'car', NULL, '{"location":{"z":163.41000366211,"y":4061.3247070313,"x":-833.55261230469},"car":"lamboavj"}'),
1125 ('steam:11000010665ec90', 'dv', NULL, '{"z":118.49990081787,"y":3982.7465820313,"x":-596.29400634766}'),
1126 ('steam:11000010665ec90', 'car', NULL, '{"location":{"z":116.827003479,"y":3981.3784179688,"x":-592.23547363281},"car":"rbcam"}'),
1127 ('steam:11000010554fe60', 'dv', NULL, '{"z":46.222766876221,"y":3059.0637207031,"x":2002.2100830078}'),
1128 ('steam:11000010554fe60', 'car', NULL, '{"location":{"z":47.050102233887,"y":3059.0134277344,"x":2008.2409667969},"car":"rbcam"}'),
1129 ('steam:1100001075ca00d', 'dv', NULL, '{"z":38.948501586914,"y":3348.1667480469,"x":240.08433532715}'),
1130 ('steam:11000010665ec90', 'dv', NULL, '{"z":39.584407806396,"y":3132.6735839844,"x":1248.2618408203}'),
1131 ('steam:11000010665ec90', 'car', NULL, '{"location":{"z":40.414108276367,"y":3129.8532714844,"x":1243.5723876953},"car":"rbcam"}'),
1132 ('steam:1100001075ca00d', 'goto', 'steam:11000010554fe60', '[{"x":241.33514404297,"y":3348.9692382813,"z":39.370700836182},{"x":1273.4718017578,"y":3164.5927734375,"z":40.479274749756}]'),
1133 ('steam:1100001075ca00d', 'car', NULL, '{"location":{"z":41.013957977295,"y":3164.5920410156,"x":1273.4737548828},"car":"lamboavj"}'),
1134 ('steam:11000010665ec90', 'dv', NULL, '{"z":42.045204162598,"y":3274.4094238281,"x":956.02520751953}'),
1135 ('steam:11000010665ec90', 'car', NULL, '{"location":{"z":42.925765991211,"y":3275.4787597656,"x":955.09741210938},"car":"rbcam"}'),
1136 ('steam:11000010fbf8e44', 'dv', NULL, '{"z":99.388336181641,"y":3363.2963867188,"x":550.92559814453}'),
1137 ('steam:11000010fbf8e44', 'car', NULL, '{"location":{"z":99.388336181641,"y":3363.2963867188,"x":550.92559814453},"car":"pobike"}'),
1138 ('steam:11000010fbf8e44', 'dv', NULL, '{"z":41.81343460083,"y":3043.0434570313,"x":219.84805297852}'),
1139 ('steam:11000010fbf8e44', 'car', NULL, '{"location":{"z":42.377227783203,"y":3022.4111328125,"x":221.96685791016},"car":"pobike"}'),
1140 ('steam:11000010665ec90', 'dv', NULL, '{"z":37.145626068115,"y":3368.7451171875,"x":307.37170410156}'),
1141 ('steam:11000010fbf8e44', 'car', NULL, '{"location":{"z":42.628429412842,"y":2980.3659667969,"x":232.2970123291},"car":"pobike"}'),
1142 ('steam:11000010554fe60', 'dv', NULL, '{"z":78.976722717285,"y":3321.2387695313,"x":472.74520874023}'),
1143 ('steam:11000010554fe60', 'goto', 'steam:1100001075ca00d', '[{"x":473.84814453125,"y":3320.5397949219,"z":79.913787841797},{"x":217.69523620605,"y":2856.0869140625,"z":44.586715698242}]'),
1144 ('steam:11000010fbf8e44', 'revive', NULL, '[{"y":2851.7407226563,"x":222.9496307373,"z":43.830265045166}]'),
1145 ('steam:11000010554fe60', 'car', NULL, '{"location":{"z":44.822341918945,"y":2856.0869140625,"x":217.69523620605},"car":"rbcam"}'),
1146 ('steam:11000010fbf8e44', 'revive', NULL, '[{"y":2851.6965332031,"x":222.98086547852,"z":44.743907928467}]'),
1147 ('steam:11000010fbf8e44', 'car', NULL, '{"location":{"z":45.69864654541,"y":2851.6965332031,"x":222.98086547852},"car":"pobike"}'),
1148 ('steam:11000010fbf8e44', 'car', NULL, '{"location":{"z":44.551128387451,"y":2848.9028320313,"x":224.72666931152},"car":"pobike"}'),
1149 ('steam:1100001075ca00d', 'noclip', NULL, NULL),
1150 ('steam:1100001075ca00d', 'noclip', NULL, NULL),
1151 ('steam:11000010554fe60', 'dv', NULL, '{"z":49.996459960938,"y":2832.6181640625,"x":-121.81830596924}'),
1152 ('steam:1100001075ca00d', 'dv', NULL, '{"z":46.32532119751,"y":2897.5354003906,"x":173.32829284668}'),
1153 ('steam:11000010554fe60', 'car', NULL, '{"location":{"z":50.657238006592,"y":2833.9760742188,"x":-122.54349517822},"car":"rbcam"}'),
1154 ('steam:1100001075ca00d', 'car', NULL, '{"location":{"z":46.372417449951,"y":2897.5354003906,"x":173.32829284668},"car":"lamboavj"}'),
1155 ('steam:11000010554fe60', 'dv', NULL, '{"z":31.389638900757,"y":2296.8630371094,"x":-2501.7355957031}'),
1156 ('steam:11000010554fe60', 'goto', 'steam:11000010fbf8e44', '[{"x":-2536.7722167969,"y":2292.0981445313,"z":32.928039550781},{"x":-807.06335449219,"y":2109.7014160156,"z":111.7677230835}]'),
1157 ('steam:11000010554fe60', 'car', NULL, '{"location":{"z":112.23100280762,"y":2109.7014160156,"x":-807.06335449219},"car":"rbcam"}'),
1158 ('steam:11000010554fe60', 'car', NULL, '{"location":{"z":112.17443847656,"y":2111.7180175781,"x":-820.51196289063},"car":"rbcam"}'),
1159 ('steam:11000010fbf8e44', 'revive', NULL, '[{"y":1369.5164794922,"x":-810.50897216797,"z":250.13447570801}]'),
1160 ('steam:11000010fbf8e44', 'revive', NULL, '[{"y":1341.4243164063,"x":-809.15655517578,"z":253.81242370605}]'),
1161 ('steam:11000010554fe60', 'dv', NULL, '{"z":252.09880065918,"y":1354.5604248047,"x":-806.07470703125}'),
1162 ('steam:11000010fbf8e44', 'car', NULL, '{"location":{"z":255.03938293457,"y":1336.2764892578,"x":-807.36212158203},"car":"pobike"}'),
1163 ('steam:11000010554fe60', 'car', NULL, '{"location":{"z":252.80081176758,"y":1355.3732910156,"x":-807.16186523438},"car":"rbcam"}'),
1164 ('steam:11000010fbf8e44', 'car', NULL, '{"location":{"z":255.97882080078,"y":1327.9738769531,"x":-806.04022216797},"car":"pobike"}'),
1165 ('steam:11000010fbf8e44', 'revive', NULL, '[{"y":1322.0615234375,"x":-806.11419677734,"z":255.82249450684}]'),
1166 ('steam:11000010fbf8e44', 'car', NULL, '{"location":{"z":257.30477905273,"y":1317.8602294922,"x":-811.81561279297},"car":"pobike"}'),
1167 ('steam:11000010fbf8e44', 'revive', NULL, '[{"y":1334.1149902344,"x":-819.75054931641,"z":255.71980285645}]'),
1168 ('steam:11000010fbf8e44', 'car', NULL, '{"location":{"z":255.55204772949,"y":1335.2209472656,"x":-818.22283935547},"car":"pobike"}'),
1169 ('steam:1100001075ca00d', 'dv', NULL, '{"z":250.0242767334,"y":1372.4869384766,"x":-812.07214355469}'),
1170 ('steam:1100001075ca00d', 'car', NULL, '{"location":{"z":250.19950866699,"y":1374.0421142578,"x":-812.12524414063},"car":"lamboavj"}'),
1171 ('steam:1100001075ca00d', 'dv', NULL, '{"z":204.68113708496,"y":829.92901611328,"x":-796.13006591797}'),
1172 ('steam:1100001075ca00d', 'car', NULL, '{"location":{"z":205.25939941406,"y":828.93786621094,"x":-795.09497070313},"car":"lamboavj"}'),
1173 ('steam:11000010554fe60', 'dv', NULL, '{"z":170.83619689941,"y":797.24072265625,"x":-1001.5546264648}'),
1174 ('steam:11000010554fe60', 'car', NULL, '{"location":{"z":170.20808410645,"y":791.86138916016,"x":-1019.776550293},"car":"rbcam"}'),
1175 ('steam:11000010fbf8e44', 'dv', NULL, '{"z":190.41760253906,"y":757.00854492188,"x":-564.55999755859}'),
1176 ('steam:11000010fbf8e44', 'car', NULL, '{"location":{"z":191.27505493164,"y":756.16857910156,"x":-563.90209960938},"car":"pobike"}'),
1177 ('steam:11000010665ec90', 'godmode', NULL, 'Enabled'),
1178 ('steam:11000010554fe60', 'setjob', 'steam:11000010554fe60', '{"old":{"job":"unemployed","rank":0},"new":{"job":"police","rank":10}}'),
1179 ('steam:11000010fbf8e44', 'car', NULL, '{"location":{"z":170.83053588867,"y":746.89282226563,"x":-508.20120239258},"car":"pobike"}'),
1180 ('steam:11000010554fe60', 'dv', NULL, '{"z":197.35615539551,"y":813.92297363281,"x":-831.02923583984}'),
1181 ('steam:1100001075ca00d', 'dv', NULL, '{"z":183.82164001465,"y":746.24005126953,"x":-548.29772949219}'),
1182 ('steam:11000010554fe60', 'goto', 'steam:11000010fbf8e44', '[{"x":-832.11163330078,"y":814.90673828125,"z":198.13623046875},{"x":-506.91461181641,"y":746.95465087891,"z":170.36045837402}]'),
1183 ('steam:11000010554fe60', 'car', NULL, '{"location":{"z":170.82579040527,"y":746.96124267578,"x":-506.90740966797},"car":"rbcam"}'),
1184 ('steam:1100001075ca00d', 'giveweapon', 'steam:1100001075ca00d', '{"name":"WEAPON_RPG"}'),
1185 ('steam:11000010554fe60', 'dv', NULL, '{"z":170.02084350586,"y":744.35406494141,"x":-510.28442382813}'),
1186 ('steam:11000010fbf8e44', 'dv', NULL, '{"z":156.36151123047,"y":733.64300537109,"x":-519.50689697266}'),
1187 ('steam:11000010fbf8e44', 'car', NULL, '{"location":{"z":156.92262268066,"y":733.92907714844,"x":-518.64727783203},"car":"pobike"}'),
1188 ('steam:1100001075ca00d', 'giveweapon', 'steam:1100001075ca00d', '{"name":"WEAPON_RPG","ammo":10}'),
1189 ('steam:1100001075ca00d', 'revive', NULL, '[{"y":734.181640625,"x":-525.95697021484,"z":157.32585144043}]'),
1190 ('steam:11000010fbf8e44', 'car', NULL, '{"location":{"z":146.55856323242,"y":685.40679931641,"x":-542.10443115234},"car":"pobike"}'),
1191 ('steam:11000010fbf8e44', 'car', NULL, '{"location":{"z":145.37683105469,"y":681.69573974609,"x":-557.646484375},"car":"pobike"}'),
1192 ('steam:11000010554fe60', 'car', NULL, '{"location":{"z":145.57467651367,"y":677.71282958984,"x":-561.70379638672},"car":"rbcam"}'),
1193 ('steam:1100001075ca00d', 'car', NULL, '{"location":{"z":145.70387268066,"y":678.68493652344,"x":-563.30285644531},"car":"lamboavj"}'),
1194 ('steam:1100001075ca00d', 'dv', NULL, '{"z":149.2604675293,"y":580.88299560547,"x":-743.78253173828}'),
1195 ('steam:1100001075ca00d', 'car', NULL, '{"location":{"z":149.57421875,"y":580.34075927734,"x":-743.22857666016},"car":"lamboavj"}'),
1196 ('steam:11000010554fe60', 'goto', 'steam:11000010fbf8e44', '[{"x":-834.67926025391,"y":491.99978637695,"z":88.312782287598},{"x":-853.79632568359,"y":358.02899169922,"z":86.424293518066}]'),
1197 ('steam:11000010554fe60', 'car', NULL, '{"location":{"z":86.896430969238,"y":358.09564208984,"x":-853.79095458984},"car":"rbcam"}'),
1198 ('steam:1100001075ca00d', 'dv', NULL, '{"z":52.016719818115,"y":67.47998046875,"x":-858.40490722656}'),
1199 ('steam:1100001075ca00d', 'car', NULL, '{"location":{"z":50.758392333984,"y":52.472835540771,"x":-859.01379394531},"car":"lamboavj"}'),
1200 ('steam:11000010fbf8e44', 'car', NULL, '{"location":{"z":21.469249725342,"y":-959.27062988281,"x":-644.33111572266},"car":"pobike"}'),
1201 ('steam:1100001075ca00d', 'dv', NULL, '{"z":23.637300491333,"y":-912.20715332031,"x":-653.31750488281}'),
1202 ('steam:1100001075ca00d', 'car', NULL, '{"location":{"z":23.956251144409,"y":-913.60034179688,"x":-651.51348876953},"car":"lamboavj"}'),
1203 ('steam:11000010fbf8e44', 'revive', NULL, '[{"y":-877.23278808594,"x":-650.56384277344,"z":23.699768066406}]'),
1204 ('steam:11000010fbf8e44', 'car', NULL, '{"location":{"z":24.496772766113,"y":-877.22692871094,"x":-650.56713867188},"car":"pobike"}'),
1205 ('steam:1100001075ca00d', 'dv', NULL, '{"z":15.088444709778,"y":-983.93475341797,"x":-803.16009521484}'),
1206 ('steam:11000010554fe60', 'dv', NULL, '{"z":21.820798873901,"y":-1043.7189941406,"x":-529.28387451172}'),
1207 ('steam:1100001075ca00d', 'car', NULL, '{"location":{"z":13.61659526825,"y":-990.79974365234,"x":-800.81024169922},"car":"lamboavj"}'),
1208 ('steam:11000010554fe60', 'goto', 'steam:11000010fbf8e44', '[{"x":-529.19091796875,"y":-1048.5675048828,"z":22.609033584595},{"x":-1173.8302001953,"y":-1201.1072998047,"z":4.3234348297119}]'),
1209 ('steam:11000010554fe60', 'car', NULL, '{"location":{"z":5.2455515861511,"y":-1201.1072998047,"x":-1173.8302001953},"car":"rbcam"}'),
1210 ('steam:11000010fbf8e44', 'car', NULL, '{"location":{"z":6.9501390457153,"y":-1223.7543945313,"x":-1240.3670654297},"car":"pobike"}'),
1211 ('steam:1100001075ca00d', 'dv', NULL, '{"z":1.7065318822861,"y":-1108.1184082031,"x":-980.56384277344}'),
1212 ('steam:11000010665ec90', 'setmoney', 'steam:11000010665ec90', '{"new":100000000,"type":"cash","old":0}'),
1213 ('steam:1100001075ca00d', 'car', NULL, '{"location":{"z":2.0478460788727,"y":-1107.5178222656,"x":-981.95239257813},"car":"lamboavj"}'),
1214 ('steam:1100001075ca00d', 'dv', NULL, '{"z":9.86536693573,"y":-1234.2841796875,"x":-1241.1402587891}'),
1215 ('steam:1100001075ca00d', 'revive', NULL, '[{"y":-1234.4871826172,"x":-1241.0815429688,"z":9.8334493637085}]'),
1216 ('steam:11000010665ec90', 'car', NULL, '{"location":{"z":34.955829620361,"y":3588.2443847656,"x":1400.6484375},"car":"jester"}'),
1217 ('steam:1100001075ca00d', 'car', NULL, '{"location":{"z":6.4970197677612,"y":-1230.2691650391,"x":-1250.8900146484},"car":"lamboavj"}'),
1218 ('steam:11000010fbf8e44', 'revive', NULL, '[{"y":-1199.9156494141,"x":-1125.7346191406,"z":2.4343287944794}]'),
1219 ('steam:11000010fbf8e44', 'car', NULL, '{"location":{"z":3.4133515357971,"y":-1200.0943603516,"x":-1126.1241455078},"car":"pobike"}'),
1220 ('steam:1100001075ca00d', 'revive', NULL, '[{"y":-1199.2847900391,"x":-1132.9445800781,"z":1.4239994287491}]'),
1221 ('steam:1100001075ca00d', 'car', NULL, '{"location":{"z":2.1494779586792,"y":-1192.5350341797,"x":-1131.6400146484},"car":"lamboavj"}'),
1222 ('steam:11000010fbf8e44', 'revive', NULL, '[{"y":-1159.0424804688,"x":-1064.20703125,"z":1.409943819046}]'),
1223 ('steam:11000010fbf8e44', 'car', NULL, '{"location":{"z":2.1327040195465,"y":-1159.0428466797,"x":-1064.2030029297},"car":"pobike"}'),
1224 ('steam:11000010554fe60', 'dv', NULL, '{"z":10.477446556091,"y":-875.26068115234,"x":-1150.6337890625}'),
1225 ('steam:11000010554fe60', 'car', NULL, '{"location":{"z":12.398935317993,"y":-872.27301025391,"x":-1154.8631591797},"car":"rbcam"}'),
1226 ('steam:1100001075ca00d', 'dv', NULL, '{"z":15.494360923767,"y":-799.95190429688,"x":-1198.1540527344}'),
1227 ('steam:1100001075ca00d', 'car', NULL, '{"location":{"z":16.427474975586,"y":-793.37701416016,"x":-1202.5386962891},"car":"teslax"}'),
1228 ('steam:1100001075ca00d', 'dv', NULL, '{"z":29.094179153442,"y":-593.12481689453,"x":-1368.9415283203}'),
1229 ('steam:11000010554fe60', 'dv', NULL, '{"z":29.362474441528,"y":-575.98956298828,"x":-1374.5064697266}'),
1230 ('steam:1100001075ca00d', 'car', NULL, '{"location":{"z":29.833671569824,"y":-582.69927978516,"x":-1372.2235107422},"car":"teslax"}'),
1231 ('steam:11000010554fe60', 'goto', 'steam:11000010fbf8e44', '[{"x":-1381.7775878906,"y":-568.15716552734,"z":30.227010726929},{"x":-1743.2012939453,"y":-349.09866333008,"z":45.978897094727}]'),
1232 ('steam:11000010554fe60', 'car', NULL, '{"location":{"z":46.344047546387,"y":-349.09729003906,"x":-1743.2042236328},"car":"rbcam"}'),
1233 ('steam:1100001075ca00d', 'dv', NULL, '{"z":49.787952423096,"y":-324.37484741211,"x":-1603.2049560547}'),
1234 ('steam:1100001075ca00d', 'car', NULL, '{"location":{"z":49.409214019775,"y":-320.06240844727,"x":-1597.7471923828},"car":"teslax"}'),
1235 ('steam:11000010665ec90', 'dv', NULL, '{"z":34.965229034424,"y":3586.9467773438,"x":1401.9097900391}'),
1236 ('steam:11000010665ec90', 'dv', NULL, '{"z":34.96541595459,"y":3586.9460449219,"x":1401.8087158203}'),
1237 ('steam:11000010fbf8e44', 'revive', NULL, '[{"y":-298.68585205078,"x":-1911.2346191406,"z":48.433620452881}]'),
1238 ('steam:1100001075ca00d', 'dv', NULL, '{"z":34.738758087158,"y":-201.74606323242,"x":-1919.0002441406}'),
1239 ('steam:11000010fbf8e44', 'car', NULL, '{"location":{"z":48.613178253174,"y":-303.84426879883,"x":-1916.7757568359},"car":"pobike"}'),
1240 ('steam:1100001075ca00d', 'car', NULL, '{"location":{"z":35.241230010986,"y":-198.93412780762,"x":-1920.3050537109},"car":"lamboavj"}'),
1241 ('steam:11000010554fe60', 'dv', NULL, '{"z":19.409856796265,"y":-206.38757324219,"x":-2103.3608398438}'),
1242 ('steam:11000010554fe60', 'car', NULL, '{"location":{"z":19.680030822754,"y":-210.86476135254,"x":-2108.5441894531},"car":"lamboavj"}'),
1243 ('steam:11000010554fe60', 'dv', NULL, '{"z":19.269041061401,"y":-210.89891052246,"x":-2108.5817871094}'),
1244 ('steam:11000010554fe60', 'car', NULL, '{"location":{"z":19.631536483765,"y":-212.30047607422,"x":-2108.0202636719},"car":"lamboavj"}'),
1245 ('steam:11000010fbf8e44', 'car', NULL, '{"location":{"z":30.227830886841,"y":-282.17300415039,"x":-2033.2891845703},"car":"pobike"}'),
1246 ('steam:11000010554fe60', 'dv', NULL, '{"z":46.957794189453,"y":-344.53271484375,"x":-1931.740234375}'),
1247 ('steam:11000010554fe60', 'goto', 'steam:11000010fbf8e44', '[{"x":-1929.8559570313,"y":-344.48135375977,"z":47.474224090576},{"x":-2073.6511230469,"y":-396.27432250977,"z":11.237114906311}]'),
1248 ('steam:11000010554fe60', 'car', NULL, '{"location":{"z":11.637102127075,"y":-396.27526855469,"x":-2073.6481933594},"car":"lamboavj"}'),
1249 ('steam:1100001075ca00d', 'car', NULL, '{"location":{"z":24.255424499512,"y":-274.53851318359,"x":-2039.5163574219},"car":"lamboavj"}'),
1250 ('steam:11000010554fe60', 'dv', NULL, '{"z":18.907073974609,"y":-799.62542724609,"x":-1373.7689208984}'),
1251 ('steam:11000010554fe60', 'goto', 'steam:11000010fbf8e44', '[{"x":-1376.2708740234,"y":-799.44372558594,"z":19.31689453125},{"x":-1848.8048095703,"y":-567.10388183594,"z":11.04264831543}]'),
1252 ('steam:11000010554fe60', 'car', NULL, '{"location":{"z":11.502586364746,"y":-567.10620117188,"x":-1848.8100585938},"car":"lamboavj"}'),
1253 ('steam:11000010fbf8e44', 'car', NULL, '{"location":{"z":11.53507900238,"y":-429.68185424805,"x":-1988.8779296875},"car":"pobike"}'),
1254 ('steam:11000010fbf8e44', 'revive', NULL, '[{"y":-402.23229980469,"x":-2022.7254638672,"z":9.9927320480347}]'),
1255 ('steam:11000010fbf8e44', 'car', NULL, '{"location":{"z":10.787663459778,"y":-402.22174072266,"x":-2022.7329101563},"car":"pobike"}'),
1256 ('steam:11000010fbf8e44', 'car', NULL, '{"location":{"z":11.138795852661,"y":-405.60443115234,"x":-2012.5133056641},"car":"pobike"}'),
1257 ('steam:1100001075ca00d', 'dv', NULL, '{"z":25.932415008545,"y":-487.35516357422,"x":-1855.6632080078}'),
1258 ('steam:1100001075ca00d', 'car', NULL, '{"location":{"z":26.60813331604,"y":-488.72204589844,"x":-1852.8435058594},"car":"lamboavj"}'),
1259 ('steam:1100001075ca00d', 'dv', NULL, '{"z":34.440479278564,"y":-568.71002197266,"x":-1685.3641357422}'),
1260 ('steam:1100001075ca00d', 'car', NULL, '{"location":{"z":34.556133270264,"y":-569.45269775391,"x":-1680.7534179688},"car":"lamboavj"}'),
1261 ('steam:11000010554fe60', 'dv', NULL, '{"z":10.779685974121,"y":-920.22576904297,"x":-1255.919921875}'),
1262 ('steam:11000010554fe60', 'car', NULL, '{"location":{"z":11.16284942627,"y":-920.58831787109,"x":-1258.9449462891},"car":"lamboavj"}'),
1263 ('steam:1100001075ca00d', 'dv', NULL, '{"z":8.091480255127,"y":-1045.5853271484,"x":-1258.9547119141}'),
1264 ('steam:1100001075ca00d', 'car', NULL, '{"location":{"z":8.091480255127,"y":-1045.5853271484,"x":-1258.9547119141},"car":"lamboavj"}'),
1265 ('steam:11000010554fe60', 'dv', NULL, '{"z":4.6457748413086,"y":-1375.3537597656,"x":-1140.2166748047}'),
1266 ('steam:11000010554fe60', 'goto', 'steam:11000010fbf8e44', '[{"x":-1138.0128173828,"y":-1379.2941894531,"z":5.159387588501},{"x":-1077.6137695313,"y":-1481.3792724609,"z":4.6432323455811}]'),
1267 ('steam:11000010554fe60', 'car', NULL, '{"location":{"z":5.5888934135437,"y":-1481.3792724609,"x":-1077.6137695313},"car":"lamboavj"}'),
1268 ('steam:1100001075ca00d', 'goto', 'steam:11000010665ec90', '[{"x":-1225.6617431641,"y":-1151.6958007813,"z":7.2014961242676},{"x":320.80062866211,"y":2622.8754882813,"z":44.474456787109}]'),
1269 ('steam:11000010554fe60', 'dv', NULL, '{"z":21.725158691406,"y":-764.30163574219,"x":-1410.6591796875}'),
1270 ('steam:11000010665ec90', 'goto', 'steam:1100001075ca00d', '[{"x":326.5378112793,"y":2626.3896484375,"z":44.500633239746},{"x":2752.7182617188,"y":3470.7348632813,"z":55.728939056396}]'),
1271 ('steam:1100001075ca00d', 'revive', NULL, '[{"y":3469.5651855469,"x":2758.3947753906,"z":55.703567504883}]'),
1272 ('steam:11000010665ec90', 'giveitem', 'steam:11000010665ec90', '{"amount":1,"new":1,"type":"pickaxe","old":0}'),
1273 ('steam:11000010665ec90', 'noclip', NULL, NULL),
1274 ('steam:11000010665ec90', 'noclip', NULL, NULL),
1275 ('steam:11000010665ec90', 'giveitem', 'steam:11000010665ec90', '{"amount":1,"new":1,"type":"chainsaw","old":0}'),
1276 ('steam:11000010665ec90', 'noclip', NULL, NULL),
1277 ('steam:11000010665ec90', 'noclip', NULL, NULL),
1278 ('steam:1100001075ca00d', 'noclip', NULL, NULL),
1279 ('steam:1100001075ca00d', 'noclip', NULL, NULL),
1280 ('steam:1100001075ca00d', 'setjob', 'steam:1100001075ca00d', '{"new":{"job":"unemployed","rank":0},"old":{"job":"police","rank":5}}'),
1281 ('steam:11000010665ec90', 'giveitem', 'steam:11000010665ec90', '{"amount":1,"new":1,"type":"fixkit","old":0}'),
1282 ('steam:11000010665ec90', 'car', NULL, '{"location":{"x":1869.302734375,"y":2597.9313964844,"z":45.671993255615},"car":"jester"}'),
1283 ('steam:11000010665ec90', 'giveitem', 'steam:11000010665ec90', '{"amount":1,"new":1,"type":"fixkit","old":0}'),
1284 ('steam:11000010665ec90', 'noclip', NULL, NULL),
1285 ('steam:11000010665ec90', 'noclip', NULL, NULL),
1286 ('steam:11000010665ec90', 'giveitem', 'steam:11000010665ec90', '{"amount":1,"new":1,"type":"pickaxe","old":0}'),
1287 ('steam:11000010665ec90', 'giveitem', 'steam:11000010665ec90', '{"amount":1,"new":1,"type":"drill","old":0}'),
1288 ('steam:11000010665ec90', 'giveitem', 'steam:11000010665ec90', '{"amount":1,"new":2,"type":"drill","old":1}'),
1289 ('steam:11000010665ec90', 'giveitem', 'steam:11000010665ec90', '{"amount":1,"new":1,"type":"mining_drill","old":0}'),
1290 ('steam:11000010665ec90', 'giveitem', 'steam:11000010665ec90', '{"amount":1,"new":1,"type":"chainsaw","old":0}'),
1291 ('steam:11000010665ec90', 'noclip', NULL, NULL),
1292 ('steam:11000010665ec90', 'noclip', NULL, NULL),
1293 ('steam:11000010665ec90', 'dv', NULL, '{"x":-1441.9248046875,"y":-2698.4450683594,"z":13.714559555054}'),
1294 ('steam:1100001075ca00d', 'setjob', 'steam:1100001075ca00d', '{"old":{"job":"unemployed","rank":0},"new":{"job":"police","rank":10}}'),
1295 ('steam:11000010665ec90', 'dv', NULL, '{"x":-974.25646972656,"y":-2573.9389648438,"z":36.249485015869}'),
1296 ('steam:11000010665ec90', 'car', NULL, '{"car":"jester","location":{"x":-977.01452636719,"y":-2571.3500976563,"z":36.605045318604}}'),
1297 ('steam:11000010665ec90', 'dv', NULL, '{"x":-854.05877685547,"y":-2557.1748046875,"z":16.817672729492}'),
1298 ('steam:11000010665ec90', 'giveweapon', 'steam:11000010665ec90', 'carbinerifle (500)'),
1299 ('steam:11000010665ec90', 'car', NULL, '{"car":"polb","location":{"x":-935.83538818359,"y":-2687.8515625,"z":26.61469078064}}'),
1300 ('steam:11000010665ec90', 'car', NULL, '{"car":"pbike","location":{"x":-947.32446289063,"y":-2681.4992675781,"z":26.618425369263}}'),
1301 ('steam:11000010665ec90', 'car', NULL, '{"car":"polcharger","location":{"x":-946.46997070313,"y":-2678.6867675781,"z":26.628385543823}}'),
1302 ('steam:11000010665ec90', 'revive', NULL, '[{"y":-1419.8260498047,"z":34.532878875732,"x":1124.9621582031}]'),
1303 ('steam:11000010665ec90', 'car', NULL, '{"car":"polcharger","location":{"x":958.28149414063,"y":-1374.1511230469,"z":18.050945281982}}'),
1304 ('steam:11000010665ec90', 'dv', NULL, '{"x":1241.3790283203,"y":-1098.7657470703,"z":31.154026031494}'),
1305 ('steam:11000010665ec90', 'car', NULL, '{"car":"polcharger","location":{"x":1229.1047363281,"y":-1108.8370361328,"z":30.326736450195}}'),
1306 ('steam:11000010665ec90', 'dvall', NULL, '{"z":28.38519859314,"y":-1019.4910888672,"x":453.55328369141}'),
1307 ('steam:11000010665ec90', 'dvall', NULL, '{"z":28.543218612671,"y":-1021.2736206055,"x":443.67910766602}'),
1308 ('steam:11000010665ec90', 'adminrepair', NULL, 'Enabled'),
1309 ('steam:11000010665ec90', 'adminrepair', NULL, 'Enabled'),
1310 ('steam:11000010665ec90', 'adminrepair', NULL, 'Enabled'),
1311 ('steam:11000010665ec90', 'adminrepair', NULL, 'Enabled'),
1312 ('steam:11000010665ec90', 'giveweapon', 'steam:11000010665ec90', 'pistol (5)'),
1313 ('steam:11000010fbf8e44', 'revive', NULL, '[{"x":414.96115112305,"z":29.037466049194,"y":-979.51849365234}]'),
1314 ('steam:11000010fbf8e44', 'godmode', NULL, 'Enabled'),
1315 ('steam:11000010fbf8e44', 'bring', 'steam:11000010665ec90', '[{"z":30.689315795898,"y":-977.61773681641,"x":450.88998413086},{"z":29.441354751587,"y":-1014.7662353516,"x":407.32110595703}]'),
1316 ('steam:11000010fbf8e44', 'dv', NULL, '{"y":-565.07421875,"z":57.010555267334,"x":876.53161621094}'),
1317 ('steam:11000010fbf8e44', 'car', NULL, '{"car":"bcso1","location":{"y":-565.16278076172,"z":57.331356048584,"x":876.16729736328}}'),
1318 ('steam:11000010665ec90', 'revive', NULL, '[{"x":-964.58160400391,"z":6.7835211753845,"y":-874.92694091797}]'),
1319 ('steam:11000010665ec90', 'revive', NULL, '[{"x":211.64433288574,"z":30.692155838013,"y":-906.67578125}]'),
1320 ('steam:11000010665ec90', 'revive', NULL, '[{"x":211.98327636719,"z":30.692346572876,"y":-906.48010253906}]'),
1321 ('steam:11000010665ec90', 'noclip', NULL, NULL),
1322 ('steam:11000010665ec90', 'noclip', NULL, NULL),
1323 ('steam:11000010665ec90', 'setjob', 'steam:11000010665ec90', '{"new":{"rank":5,"job":"offpolice"},"old":{"rank":"7","job":"police"}}'),
1324 ('steam:11000010665ec90', 'setjob', 'steam:11000010665ec90', '{"new":{"rank":5,"job":"police"},"old":{"rank":5,"job":"offpolice"}}'),
1325 ('steam:11000010665ec90', 'noclip', NULL, NULL),
1326 ('steam:11000010665ec90', 'noclip', NULL, NULL),
1327 ('steam:11000010fbf8e44', 'car', NULL, '{"car":"lamboavj","location":{"y":-955.01190185547,"z":29.367805480957,"x":422.02066040039}}'),
1328 ('steam:11000010665ec90', 'giveitem', 'steam:11000010fbf8e44', 'medikit (1)'),
1329 ('steam:11000010665ec90', 'giveitem', 'steam:11000010665ec90', 'medikit (1)'),
1330 ('steam:11000010665ec90', 'giveweapon', 'steam:11000010665ec90', 'pistol (55000)'),
1331 ('steam:11000010fbf8e44', 'revive', 'steam:11000010665ec90', '[{"x":303.58267211914,"z":42.472427368164,"y":-587.22485351563}]'),
1332 ('steam:11000010665ec90', 'giveitem', 'steam:11000010fbf8e44', 'medikit (1)'),
1333 ('steam:11000010665ec90', 'revive', NULL, '[{"x":305.533203125,"z":42.440391540527,"y":-588.74713134766}]'),
1334 ('steam:11000010665ec90', 'bringall', NULL, NULL),
1335 ('steam:11000010665ec90', 'giveitem', 'steam:11000010fbf8e44', 'medikit (50)'),
1336 ('steam:11000010665ec90', 'revive', NULL, '[{"x":-261.43984985352,"z":30.392206192017,"y":-964.51013183594}]'),
1337 ('steam:11000010fbf8e44', 'revive', NULL, '[{"x":-260.47262573242,"z":30.359842300415,"y":-963.34234619141}]'),
1338 ('steam:11000010665ec90', 'revive', NULL, '[{"x":-234.23706054688,"z":28.571969985962,"y":-975.50360107422}]'),
1339 ('steam:11000010665ec90', 'revive', NULL, '[{"x":-196.45585632324,"z":28.494165420532,"y":-959.94842529297}]'),
1340 ('steam:11000010665ec90', 'car', NULL, '{"car":"polcharger","location":{"y":-958.84442138672,"z":29.297233581543,"x":-196.41436767578}}'),
1341 ('steam:11000010fbf8e44', 'car', NULL, '{"car":"lamboavj","location":{"y":-956.00048828125,"z":29.285457611084,"x":-199.38656616211}}'),
1342 ('steam:11000010fbf8e44', 'dv', NULL, '{"y":150.43406677246,"z":103.25407409668,"x":201.9122467041}'),
1343 ('steam:11000010fbf8e44', 'car', NULL, '{"car":"lamboavj","location":{"y":160.67483520508,"z":104.86679840088,"x":198.85015869141}}'),
1344 ('steam:11000010fbf8e44', 'dv', NULL, '{"y":-285.23764038086,"z":68.723731994629,"x":1200.6646728516}'),
1345 ('steam:11000010fbf8e44', 'car', NULL, '{"car":"lamboavj","location":{"y":-286.70712280273,"z":69.187637329102,"x":1219.7443847656}}'),
1346 ('steam:11000010fbf8e44', 'car', NULL, '{"car":"lamboavj","location":{"y":805.39782714844,"z":76.980361938477,"x":1502.8513183594}}'),
1347 ('steam:11000010fbf8e44', 'godmode', NULL, 'Enabled'),
1348 ('steam:11000010fbf8e44', 'car', NULL, '{"car":"lamboavj","location":{"y":6527.0024414063,"z":31.553661346436,"x":133.22680664063}}'),
1349 ('steam:11000010fbf8e44', 'dv', NULL, '{"y":6001.0541992188,"z":31.188066482544,"x":-388.97351074219}'),
1350 ('steam:11000010665ec90', 'car', NULL, '{"car":"buzzard2","location":{"y":-572.89996337891,"z":43.139205932617,"x":282.81915283203}}'),
1351 ('steam:11000010665ec90', 'dv', NULL, '{"y":126.45410919189,"z":57.090732574463,"x":-645.93414306641}'),
1352 ('steam:11000010665ec90', 'bring', 'steam:11000010fbf8e44', '[{"z":29.485195159912,"y":120.50118255615,"x":-645.52178955078},{"z":57.036056518555,"y":122.20935821533,"x":-640.01922607422}]'),
1353 ('steam:11000010665ec90', 'dv', NULL, '{"y":23.104331970215,"z":44.013259887695,"x":-542.94720458984}'),
1354 ('steam:11000010665ec90', 'car', NULL, '{"car":"ztype","location":{"y":22.73083114624,"z":44.113014221191,"x":-543.07019042969}}'),
1355 ('steam:11000010665ec90', 'adminrepair', NULL, 'Enabled'),
1356 ('steam:11000010665ec90', 'giveweapon', 'steam:11000010665ec90', 'microsmg (5000)'),
1357 ('steam:11000010665ec90', 'giveweapon', 'steam:11000010665ec90', 'rpg ()'),
1358 ('steam:11000010665ec90', 'giveweapon', 'steam:11000010665ec90', 'rpg (5)'),
1359 ('steam:11000010665ec90', 'car', NULL, '{"car":"]polmav","location":{"y":101.29865264893,"z":55.70894241333,"x":-732.62933349609}}'),
1360 ('steam:11000010665ec90', 'car', NULL, '{"car":"polmav","location":{"y":101.29865264893,"z":55.70894241333,"x":-732.62933349609}}'),
1361 ('steam:11000010665ec90', 'revive', NULL, '[{"x":1856.3546142578,"z":44.837924957275,"y":2600.3063964844}]');
1362/*!40000 ALTER TABLE `log_admin` ENABLE KEYS */;
1363
1364CREATE TABLE IF NOT EXISTS `log_money` (
1365 `id` int(11) NOT NULL AUTO_INCREMENT,
1366 `reciever` varchar(255) COLLATE utf8mb4_bin NOT NULL,
1367 `amount` int(11) NOT NULL,
1368 `type` varchar(255) COLLATE utf8mb4_bin NOT NULL,
1369 `source` varchar(255) COLLATE utf8mb4_bin NOT NULL,
1370 `time` timestamp NOT NULL DEFAULT current_timestamp() ON UPDATE current_timestamp(),
1371 PRIMARY KEY (`id`)
1372) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_bin;
1373
1374/*!40000 ALTER TABLE `log_money` DISABLE KEYS */;
1375/*!40000 ALTER TABLE `log_money` ENABLE KEYS */;
1376
1377CREATE TABLE IF NOT EXISTS `motels` (
1378 `ID` int(11) NOT NULL AUTO_INCREMENT,
1379 `name` varchar(50) DEFAULT NULL,
1380 `identifier` varchar(50) DEFAULT NULL,
1381 `room` int(11) DEFAULT NULL,
1382 `blackMoney` int(11) DEFAULT 0,
1383 `volume` int(11) DEFAULT 0,
1384 `items` longtext CHARACTER SET utf8mb4 COLLATE utf8mb4_bin DEFAULT NULL,
1385 `daysleft` int(11) DEFAULT NULL,
1386 PRIMARY KEY (`ID`)
1387) ENGINE=MyISAM DEFAULT CHARSET=latin1;
1388
1389/*!40000 ALTER TABLE `motels` DISABLE KEYS */;
1390/*!40000 ALTER TABLE `motels` ENABLE KEYS */;
1391
1392CREATE TABLE IF NOT EXISTS `outfits` (
1393 `identifier` varchar(50) DEFAULT NULL,
1394 `clothes` longtext CHARACTER SET utf8mb4 COLLATE utf8mb4_bin DEFAULT NULL,
1395 `name` varchar(50) DEFAULT NULL
1396) ENGINE=MyISAM DEFAULT CHARSET=latin1;
1397
1398/*!40000 ALTER TABLE `outfits` DISABLE KEYS */;
1399INSERT INTO `outfits` (`identifier`, `clothes`, `name`) VALUES
1400 ('steam:11000010665ec90', '{"skinproblem":"0","hair":"0","watches":"0","save":true,"glasses":"0","wrinkleopacity":"0","beardopacity":"10","shoes":"0","pants":"0","beard":"0","haircolor":"0","freckle":"0","skin":"12","tops":"0","mum":"21","beardcolor":"0","eyecolor":"0","dadmumpercent":"5","wrinkle":"0","hats":"4","value":true,"eyebrowopacity":"10","ears":"0","eyebrow":"0","acne":"0","dad":"0"}', '1');
1401/*!40000 ALTER TABLE `outfits` ENABLE KEYS */;
1402
1403CREATE TABLE IF NOT EXISTS `owned_garages` (
1404 `address` int(11) DEFAULT NULL,
1405 `owner` varchar(50) DEFAULT NULL,
1406 `spaceLeft` int(11) DEFAULT NULL
1407) ENGINE=MyISAM DEFAULT CHARSET=latin1;
1408
1409/*!40000 ALTER TABLE `owned_garages` DISABLE KEYS */;
1410INSERT INTO `owned_garages` (`address`, `owner`, `spaceLeft`) VALUES
1411 (2, 'steam:11000010ba2a250', 2),
1412 (2, 'steam:11000010fbf8e44', 2),
1413 (2, 'steam:11000010665ec90', 0),
1414 (2, 'steam:1100001075ca00d', 2),
1415 (2, 'steam:11000010554fe60', 2);
1416/*!40000 ALTER TABLE `owned_garages` ENABLE KEYS */;
1417
1418CREATE TABLE IF NOT EXISTS `phone_app_chat` (
1419 `id` int(11) NOT NULL AUTO_INCREMENT,
1420 `channel` varchar(20) NOT NULL,
1421 `message` varchar(255) NOT NULL,
1422 `time` timestamp NOT NULL DEFAULT current_timestamp(),
1423 PRIMARY KEY (`id`)
1424) ENGINE=InnoDB DEFAULT CHARSET=utf8;
1425
1426/*!40000 ALTER TABLE `phone_app_chat` DISABLE KEYS */;
1427/*!40000 ALTER TABLE `phone_app_chat` ENABLE KEYS */;
1428
1429CREATE TABLE IF NOT EXISTS `phone_calls` (
1430 `id` int(11) NOT NULL AUTO_INCREMENT,
1431 `owner` varchar(10) NOT NULL COMMENT 'Num tel proprio',
1432 `num` varchar(10) NOT NULL COMMENT 'Num reférence du contact',
1433 `incoming` int(11) NOT NULL COMMENT 'Défini si on est à l''origine de l''appels',
1434 `time` timestamp NOT NULL DEFAULT current_timestamp(),
1435 `accepts` int(11) NOT NULL COMMENT 'Appels accepter ou pas',
1436 PRIMARY KEY (`id`)
1437) ENGINE=InnoDB DEFAULT CHARSET=utf8;
1438
1439/*!40000 ALTER TABLE `phone_calls` DISABLE KEYS */;
1440INSERT INTO `phone_calls` (`id`, `owner`, `num`, `incoming`, `time`, `accepts`) VALUES
1441 (9, '5053521', '8275849', 0, '2019-12-25 14:00:50', 0),
1442 (10, '8275849', '5053521', 1, '2019-12-25 14:20:04', 0),
1443 (11, '5053521', '8275849', 0, '2019-12-25 14:20:04', 0),
1444 (12, '5313502', '8275849', 1, '2019-12-27 15:12:14', 0),
1445 (13, '8275849', '5313502', 0, '2019-12-27 15:12:14', 0),
1446 (14, '5313502', '8275849', 1, '2019-12-27 15:12:40', 0),
1447 (15, '8275849', '5313502', 0, '2019-12-27 15:12:40', 0),
1448 (16, '5313502', '8275849', 0, '2019-12-27 15:12:57', 1),
1449 (17, '8275849', '5313502', 1, '2019-12-27 15:12:57', 1),
1450 (18, '5313502', '8275849', 1, '2019-12-27 15:19:28', 1),
1451 (19, '8275849', '5313502', 0, '2019-12-27 15:19:28', 1),
1452 (20, '9955725', '3718759', 0, '2020-01-18 02:23:10', 1),
1453 (21, '3718759', '9955725', 1, '2020-01-18 02:23:10', 1),
1454 (22, '3718759', '9955725', 0, '2020-01-18 02:27:11', 1),
1455 (23, '9955725', '3718759', 1, '2020-01-18 02:27:11', 1);
1456/*!40000 ALTER TABLE `phone_calls` ENABLE KEYS */;
1457
1458CREATE TABLE IF NOT EXISTS `phone_messages` (
1459 `id` int(11) NOT NULL AUTO_INCREMENT,
1460 `transmitter` varchar(10) NOT NULL,
1461 `receiver` varchar(10) NOT NULL,
1462 `message` varchar(255) NOT NULL DEFAULT '0',
1463 `time` timestamp NOT NULL DEFAULT current_timestamp(),
1464 `isRead` int(11) NOT NULL DEFAULT 0,
1465 `owner` int(11) NOT NULL DEFAULT 0,
1466 PRIMARY KEY (`id`)
1467) ENGINE=MyISAM DEFAULT CHARSET=utf8;
1468
1469/*!40000 ALTER TABLE `phone_messages` DISABLE KEYS */;
1470/*!40000 ALTER TABLE `phone_messages` ENABLE KEYS */;
1471
1472CREATE TABLE IF NOT EXISTS `phone_users_contacts` (
1473 `id` int(11) NOT NULL AUTO_INCREMENT,
1474 `identifier` varchar(60) CHARACTER SET utf8mb4 DEFAULT NULL,
1475 `number` varchar(10) CHARACTER SET utf8mb4 DEFAULT NULL,
1476 `display` varchar(64) CHARACTER SET utf8mb4 NOT NULL DEFAULT '-1',
1477 PRIMARY KEY (`id`)
1478) ENGINE=MyISAM DEFAULT CHARSET=utf8;
1479
1480/*!40000 ALTER TABLE `phone_users_contacts` DISABLE KEYS */;
1481/*!40000 ALTER TABLE `phone_users_contacts` ENABLE KEYS */;
1482
1483CREATE TABLE IF NOT EXISTS `plants` (
1484 `owner` varchar(50) NOT NULL,
1485 `plant` longtext NOT NULL,
1486 `plantid` bigint(20) NOT NULL
1487) ENGINE=MyISAM DEFAULT CHARSET=latin1;
1488
1489/*!40000 ALTER TABLE `plants` DISABLE KEYS */;
1490/*!40000 ALTER TABLE `plants` ENABLE KEYS */;
1491
1492CREATE TABLE IF NOT EXISTS `playerstattoos` (
1493 `id` int(11) NOT NULL AUTO_INCREMENT,
1494 `identifier` varchar(255) NOT NULL,
1495 `tattoos` varchar(255) NOT NULL,
1496 PRIMARY KEY (`id`)
1497) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4;
1498
1499/*!40000 ALTER TABLE `playerstattoos` DISABLE KEYS */;
1500/*!40000 ALTER TABLE `playerstattoos` ENABLE KEYS */;
1501
1502CREATE TABLE IF NOT EXISTS `qalle_brottsregister` (
1503 `id` int(255) NOT NULL AUTO_INCREMENT,
1504 `identifier` varchar(50) NOT NULL,
1505 `firstname` varchar(255) NOT NULL,
1506 `lastname` varchar(255) NOT NULL,
1507 `dateofcrime` varchar(255) NOT NULL,
1508 `crime` varchar(255) NOT NULL,
1509 PRIMARY KEY (`id`)
1510) ENGINE=InnoDB DEFAULT CHARSET=latin1;
1511
1512/*!40000 ALTER TABLE `qalle_brottsregister` DISABLE KEYS */;
1513/*!40000 ALTER TABLE `qalle_brottsregister` ENABLE KEYS */;
1514
1515CREATE TABLE IF NOT EXISTS `realestate` (
1516 `owner` varchar(50) DEFAULT NULL,
1517 `address` int(11) DEFAULT NULL,
1518 `type` varchar(50) DEFAULT NULL,
1519 `inventory` longtext CHARACTER SET utf8mb4 COLLATE utf8mb4_bin DEFAULT NULL,
1520 `blackMoney` int(11) DEFAULT 0,
1521 `spaceLeftGarage` int(11) DEFAULT NULL
1522) ENGINE=MyISAM DEFAULT CHARSET=latin1;
1523
1524/*!40000 ALTER TABLE `realestate` DISABLE KEYS */;
1525/*!40000 ALTER TABLE `realestate` ENABLE KEYS */;
1526
1527CREATE TABLE IF NOT EXISTS `realestate_garage` (
1528 `address` int(11) DEFAULT NULL,
1529 `vehicle` longtext DEFAULT NULL,
1530 `owner` varchar(50) DEFAULT NULL,
1531 `originalVehicle` int(11) DEFAULT NULL,
1532 `position` int(11) DEFAULT NULL,
1533 `state` bit(1) DEFAULT NULL,
1534 `price` int(11) DEFAULT NULL
1535) ENGINE=MyISAM DEFAULT CHARSET=latin1;
1536
1537/*!40000 ALTER TABLE `realestate_garage` DISABLE KEYS */;
1538/*!40000 ALTER TABLE `realestate_garage` ENABLE KEYS */;
1539
1540CREATE TABLE IF NOT EXISTS `rented_vehicles` (
1541 `id` int(11) NOT NULL AUTO_INCREMENT,
1542 `vehicle` varchar(60) COLLATE utf8mb4_bin NOT NULL,
1543 `plate` varchar(10) COLLATE utf8mb4_bin NOT NULL,
1544 `player_name` varchar(255) COLLATE utf8mb4_bin NOT NULL,
1545 `base_price` int(11) NOT NULL,
1546 `rent_price` int(11) NOT NULL,
1547 `owner` varchar(255) COLLATE utf8mb4_bin NOT NULL,
1548 PRIMARY KEY (`id`)
1549) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_bin;
1550
1551/*!40000 ALTER TABLE `rented_vehicles` DISABLE KEYS */;
1552/*!40000 ALTER TABLE `rented_vehicles` ENABLE KEYS */;
1553
1554CREATE TABLE IF NOT EXISTS `society_moneywash` (
1555 `id` int(11) NOT NULL AUTO_INCREMENT,
1556 `identifier` varchar(60) NOT NULL,
1557 `society` varchar(60) NOT NULL,
1558 `amount` int(11) NOT NULL,
1559 PRIMARY KEY (`id`)
1560) ENGINE=InnoDB DEFAULT CHARSET=latin1;
1561
1562/*!40000 ALTER TABLE `society_moneywash` DISABLE KEYS */;
1563/*!40000 ALTER TABLE `society_moneywash` ENABLE KEYS */;
1564
1565CREATE TABLE IF NOT EXISTS `sold_cars` (
1566 `id` int(11) NOT NULL AUTO_INCREMENT,
1567 `model` int(11) DEFAULT NULL,
1568 `price` int(11) DEFAULT NULL,
1569 `vehicle` text DEFAULT NULL,
1570 KEY `id` (`id`)
1571) ENGINE=MyISAM DEFAULT CHARSET=latin1;
1572
1573/*!40000 ALTER TABLE `sold_cars` DISABLE KEYS */;
1574/*!40000 ALTER TABLE `sold_cars` ENABLE KEYS */;
1575
1576CREATE TABLE IF NOT EXISTS `trunk` (
1577 `plate` varchar(50) DEFAULT NULL,
1578 `model` varchar(50) DEFAULT NULL,
1579 `volume` int(11) DEFAULT NULL,
1580 `items` longtext CHARACTER SET utf8mb4 COLLATE utf8mb4_bin DEFAULT NULL,
1581 `black_money` int(11) DEFAULT 0,
1582 `cash` int(11) DEFAULT 0
1583) ENGINE=MyISAM DEFAULT CHARSET=latin1;
1584
1585/*!40000 ALTER TABLE `trunk` DISABLE KEYS */;
1586/*!40000 ALTER TABLE `trunk` ENABLE KEYS */;
1587
1588CREATE TABLE IF NOT EXISTS `trunk_log` (
1589 `id` int(11) NOT NULL AUTO_INCREMENT,
1590 `identifier` varchar(50) DEFAULT NULL,
1591 `itemtype` varchar(50) DEFAULT NULL,
1592 `plate` varchar(50) DEFAULT NULL,
1593 `amount` int(11) DEFAULT NULL,
1594 `input` int(11) DEFAULT NULL,
1595 `item` varchar(50) DEFAULT NULL,
1596 PRIMARY KEY (`id`)
1597) ENGINE=MyISAM DEFAULT CHARSET=latin1;
1598
1599/*!40000 ALTER TABLE `trunk_log` DISABLE KEYS */;
1600/*!40000 ALTER TABLE `trunk_log` ENABLE KEYS */;
1601
1602CREATE TABLE IF NOT EXISTS `users` (
1603 `identifier` varchar(50) COLLATE utf8mb4_bin DEFAULT NULL,
1604 `license` varchar(50) COLLATE utf8mb4_bin DEFAULT NULL,
1605 `money` int(11) DEFAULT NULL,
1606 `name` varchar(255) COLLATE utf8mb4_bin DEFAULT '',
1607 `skin` longtext COLLATE utf8mb4_bin DEFAULT NULL,
1608 `loadout` longtext COLLATE utf8mb4_bin DEFAULT NULL,
1609 `position` varchar(255) COLLATE utf8mb4_bin DEFAULT NULL,
1610 `bank` int(11) DEFAULT NULL,
1611 `permission_level` int(11) DEFAULT NULL,
1612 `group` varchar(50) COLLATE utf8mb4_bin DEFAULT NULL,
1613 `job` varchar(50) COLLATE utf8mb4_bin DEFAULT 'unemployed',
1614 `job_grade` int(11) DEFAULT 0,
1615 `roles` varchar(50) COLLATE utf8mb4_bin DEFAULT NULL,
1616 `firstname` varchar(50) COLLATE utf8mb4_bin DEFAULT '',
1617 `lastname` varchar(50) COLLATE utf8mb4_bin DEFAULT '',
1618 `dateofbirth` varchar(25) COLLATE utf8mb4_bin DEFAULT '',
1619 `sex` varchar(10) COLLATE utf8mb4_bin DEFAULT '',
1620 `height` varchar(5) COLLATE utf8mb4_bin DEFAULT '',
1621 `last_property` varchar(255) COLLATE utf8mb4_bin DEFAULT NULL,
1622 `phone_number` int(11) DEFAULT NULL,
1623 `is_dead` tinyint(1) DEFAULT 0,
1624 `isDead` bit(1) DEFAULT b'0',
1625 `gang` varchar(50) COLLATE utf8mb4_bin DEFAULT NULL,
1626 `jail` int(11) NOT NULL DEFAULT 0,
1627 `playtime` int(11) unsigned NOT NULL DEFAULT 0,
1628 `backpack` varchar(50) COLLATE utf8mb4_bin DEFAULT 'noBackpack',
1629 `tracker` int(11) DEFAULT 1,
1630 `donator` varchar(50) COLLATE utf8mb4_bin DEFAULT NULL,
1631 `joindate` timestamp NULL DEFAULT current_timestamp(),
1632 `last_updated` timestamp NULL DEFAULT current_timestamp(),
1633 `whitelisted` longtext COLLATE utf8mb4_bin DEFAULT NULL,
1634 `permits` longtext COLLATE utf8mb4_bin DEFAULT NULL,
1635 KEY `identifier` (`identifier`)
1636) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_bin;
1637
1638/*!40000 ALTER TABLE `users` DISABLE KEYS */;
1639INSERT INTO `users` (`identifier`, `license`, `money`, `name`, `skin`, `loadout`, `position`, `bank`, `permission_level`, `group`, `job`, `job_grade`, `roles`, `firstname`, `lastname`, `dateofbirth`, `sex`, `height`, `last_property`, `phone_number`, `is_dead`, `isDead`, `gang`, `jail`, `playtime`, `backpack`, `tracker`, `donator`, `joindate`, `last_updated`, `whitelisted`, `permits`) VALUES
1640 ('steam:11000010ba2a250', 'license:232292554d0d895b6ac8fa614d9e09df510db992', 565499, 'Turbo', '{"hats":"0","wrinkle":"0","eyecolor":"0","dadmumpercent":"5","freckle":"0","acne":"0","eyebrowopacity":"10","glasses":"0","sex":1,"skinproblem":"0","mum":"21","tops":"0","watches":"0","dad":"17","skin":"12","shoes":"0","beard":"0","hair":"0","haircolor":"0","ears":"0","beardcolor":"0","eyebrow":"0","pants":"0","beardopacity":"10","wrinkleopacity":"0"}', '[]', '{"x":-661.83044433594,"y":-2369.1044921875,"z":13.944525718689}', 4995575, 0, 'superadmin', 'unemployed', 0, NULL, 'Yteet', 'Skeet', '1995-04-12', 'M', '67', NULL, 6627208, 0, b'0', NULL, 0, 20, 'noBackpack', 1, NULL, '2020-02-18 18:40:48', '2020-02-18 18:40:48', NULL, NULL),
1641 ('steam:11000010fbf8e44', 'license:6627c85210f30cd58e493b8345732cab1be7bc80', 20000, 'MrK', '{"pants":"0","watches":"0","eyebrow":"0","haircolor":"0","tops":"0","glasses":"0","wrinkle":"0","ears":"0","wrinkleopacity":"0","hats":"0","shoes":"0","eyecolor":"0","hair":"0","beardcolor":"0","beardopacity":"10","mum":"21","freckle":"0","skin":"12","acne":"0","dad":"0","dadmumpercent":"5","skinproblem":"0","sex":1,"eyebrowopacity":"10","beard":"0"}', '[{"name":"WEAPON_PISTOL","label":"Pistol","ammo":192}]', '{"y":2117.0,"z":88.281494140625,"x":514.0}', 36500, 10, 'superadmin', 'police', 7, NULL, 'Mr', 'K', '1999-01-13', 'M', '123', NULL, 101610, 0, b'0', NULL, 0, 187, 'noBackpack', 1, NULL, '2020-02-18 19:30:33', '2020-02-18 19:30:33', '{"ambulance":{"name":"ambulance","grade":"4","special":[]},"police":{"grade":"7","name":"police","special":[]}}', '["cprtrained"]'),
1642 ('steam:11000010665ec90', 'license:37cab80129c96889af22f2b499f9f713c9926ad9', 100000000, 'Archie', '{"pants":"36","watches":"0","eyebrow":"0","haircolor":"0","tops":"9","glasses":"0","wrinkle":"14","ears":"0","wrinkleopacity":"14","hats":"0","shoes":"13","eyecolor":"3","hair":"14","beardcolor":"0","beardopacity":"10","mum":"21","freckle":"17","skin":"14","acne":"19","dad":"14","dadmumpercent":"0","skinproblem":"11","sex":1,"eyebrowopacity":"10","beard":"18"}', '[{"name":"WEAPON_MICROSMG","label":"Micro smg","ammo":0},{"name":"WEAPON_STUNGUN","label":"Tazer","ammo":90},{"name":"WEAPON_RPG","label":"Rocket launcher","ammo":0}]', '{"y":-968.72875976563,"z":31.22491645813,"x":-262.42474365234}', 1999690205, 0, 'superadmin', 'ambulance', 4, NULL, 'Archie', 'Tyrone', '1980-01-01', 'M', '50', NULL, 5185011, 0, b'0', NULL, 0, 349, 'noBackpack', 1, NULL, '2020-02-18 19:31:27', '2020-02-18 19:31:27', '{"ambulance":{"name":"ambulance","grade":"4","special":[]},"police":{"grade":"7","name":"police","special":[]}}', '["mining","weapon","crafting","lumberjack"]'),
1643 ('steam:1100001075ca00d', 'license:5492379d235c7ed13b3c45921d641134486e32d5', 0, 'Maffias', '{"pants":"6","watches":"0","eyebrow":"0","haircolor":"0","tops":"63","glasses":"7","wrinkle":"0","ears":"4","wrinkleopacity":"0","hats":"0","shoes":"8","eyecolor":"0","hair":"4","beardcolor":"0","beardopacity":"10","mum":"21","freckle":"0","skin":"12","acne":"0","dad":"1","dadmumpercent":"5","skinproblem":"0","sex":1,"eyebrowopacity":"10","beard":"0"}', '[]', '{"x":1785.8717041016,"y":2584.9177246094,"z":50.549674987793}', 15250, 0, 'superadmin', 'police', 10, NULL, 'Maffias', 'Wetknee', '1999-09-18', 'M', '192', NULL, 1418141, 0, b'0', NULL, 499, 87, 'noBackpack', 1, NULL, '2020-02-18 19:38:26', '2020-02-18 19:38:26', NULL, NULL),
1644 ('steam:11000010554fe60', 'license:3e2c3ca54d358188fc7736d4694a091afbdec37e', 0, 'Weasley Wells', '{"pants":"0","watches":"0","eyebrow":"0","haircolor":"0","tops":"0","glasses":"0","wrinkle":"0","ears":"0","wrinkleopacity":"0","hats":"0","shoes":"0","eyecolor":"0","hair":"0","beardcolor":"0","beardopacity":"10","mum":"21","freckle":"0","skin":"12","acne":"0","dad":"0","dadmumpercent":"5","skinproblem":"0","sex":1,"eyebrowopacity":"10","beard":"0"}', '[]', '{"z":23.186134338379,"y":-754.48559570313,"x":-1416.1995849609}', 6625, 10, 'superadmin', 'police', 10, NULL, 'Weasley', 'Wells', '1995-01-01', 'M', '85', NULL, 7931075, 0, b'0', NULL, 0, 52, 'noBackpack', 1, NULL, '2020-02-18 20:01:10', '2020-02-18 20:01:10', '{"police":{"name":"police","grade":"10","special":[]}}', NULL),
1645 ('steam:11000010a4a72a5', 'license:f864b8b5430421c85de0045fed348184482a104d', 0, 'MrWackyGuy', NULL, '[]', '{"y":-2740.69921875,"z":13.867886543274,"x":-1038.6552734375}', 5875, 0, 'user', 'unemployed', 0, NULL, '', '', '', '', '', NULL, 9614658, 0, b'0', NULL, 0, 2, 'noBackpack', 1, NULL, '2020-02-26 19:52:04', '2020-02-26 19:52:04', NULL, NULL);
1646/*!40000 ALTER TABLE `users` ENABLE KEYS */;
1647
1648CREATE TABLE IF NOT EXISTS `user_accounts` (
1649 `id` int(11) NOT NULL AUTO_INCREMENT,
1650 `identifier` varchar(255) COLLATE utf8mb4_bin NOT NULL,
1651 `name` varchar(255) COLLATE utf8mb4_bin NOT NULL,
1652 `money` double NOT NULL DEFAULT 0,
1653 PRIMARY KEY (`id`)
1654) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_bin;
1655
1656/*!40000 ALTER TABLE `user_accounts` DISABLE KEYS */;
1657INSERT INTO `user_accounts` (`id`, `identifier`, `name`, `money`) VALUES
1658 (239, 'steam:1100001075ca00d', 'black_money', 0),
1659 (240, 'steam:11000010665ec90', 'black_money', 0),
1660 (241, 'steam:11000010ba2a250', 'black_money', 0),
1661 (242, 'steam:11000010fbf8e44', 'black_money', 0),
1662 (243, 'steam:11000010554fe60', 'black_money', 0),
1663 (244, 'steam:11000010a4a72a5', 'black_money', 0);
1664/*!40000 ALTER TABLE `user_accounts` ENABLE KEYS */;
1665
1666CREATE TABLE IF NOT EXISTS `user_contacts` (
1667 `id` int(11) NOT NULL AUTO_INCREMENT,
1668 `identifier` varchar(255) COLLATE utf8mb4_bin NOT NULL,
1669 `name` varchar(255) COLLATE utf8mb4_bin NOT NULL,
1670 `number` int(11) NOT NULL,
1671 PRIMARY KEY (`id`)
1672) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_bin;
1673
1674/*!40000 ALTER TABLE `user_contacts` DISABLE KEYS */;
1675/*!40000 ALTER TABLE `user_contacts` ENABLE KEYS */;
1676
1677CREATE TABLE IF NOT EXISTS `user_inventory` (
1678 `identifier` varchar(255) COLLATE utf8mb4_bin NOT NULL,
1679 `items` mediumtext COLLATE utf8mb4_bin NOT NULL
1680) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_bin;
1681
1682/*!40000 ALTER TABLE `user_inventory` DISABLE KEYS */;
1683INSERT INTO `user_inventory` (`identifier`, `items`) VALUES
1684 ('steam:1100001075ca00d', '[]'),
1685 ('steam:11000010665ec90', '{"bulletproof":{"name":"bulletproof","canRemove":true,"count":1,"weight":2700.0,"label":"Bulletproof Vest","volume":1500,"usable":true}}'),
1686 ('steam:11000010ba2a250', '{"gps":{"volume":50,"canRemove":true,"label":"GPS","name":"gps","weight":800.0,"count":1,"usable":false},"phone":{"volume":200,"canRemove":true,"label":"Phone","name":"phone","weight":200.0,"count":1,"usable":false}}'),
1687 ('steam:11000010fbf8e44', '{"fixkit":{"name":"fixkit","canRemove":true,"count":1,"weight":4500.0,"label":"Repair Kit","volume":1000,"usable":true},"medikit":{"name":"medikit","canRemove":true,"count":50,"weight":230.0,"label":"Medkit","volume":1000,"usable":true}}'),
1688 ('steam:11000010554fe60', '{"gps":{"name":"gps","volume":50,"usable":false,"canRemove":true,"count":1,"label":"GPS","weight":800.0}}'),
1689 ('steam:11000010a4a72a5', '[]');
1690/*!40000 ALTER TABLE `user_inventory` ENABLE KEYS */;
1691
1692CREATE TABLE IF NOT EXISTS `user_lastcharacter` (
1693 `steamid` varchar(255) NOT NULL,
1694 `charid` int(11) NOT NULL
1695) ENGINE=InnoDB DEFAULT CHARSET=latin1;
1696
1697/*!40000 ALTER TABLE `user_lastcharacter` DISABLE KEYS */;
1698/*!40000 ALTER TABLE `user_lastcharacter` ENABLE KEYS */;
1699
1700CREATE TABLE IF NOT EXISTS `user_licenses` (
1701 `id` int(11) NOT NULL AUTO_INCREMENT,
1702 `type` varchar(60) COLLATE utf8mb4_bin NOT NULL,
1703 `owner` varchar(60) COLLATE utf8mb4_bin NOT NULL,
1704 PRIMARY KEY (`id`)
1705) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_bin;
1706
1707/*!40000 ALTER TABLE `user_licenses` DISABLE KEYS */;
1708/*!40000 ALTER TABLE `user_licenses` ENABLE KEYS */;
1709
1710CREATE TABLE IF NOT EXISTS `ut_weed` (
1711 `id` int(11) DEFAULT NULL,
1712 `plant` longtext CHARACTER SET utf8mb4 COLLATE utf8mb4_bin DEFAULT NULL
1713) ENGINE=MyISAM DEFAULT CHARSET=latin1;
1714
1715/*!40000 ALTER TABLE `ut_weed` DISABLE KEYS */;
1716/*!40000 ALTER TABLE `ut_weed` ENABLE KEYS */;
1717
1718CREATE TABLE IF NOT EXISTS `vehicles` (
1719 `name` varchar(60) COLLATE utf8mb4_bin NOT NULL,
1720 `model` varchar(60) COLLATE utf8mb4_bin NOT NULL,
1721 `price` int(11) NOT NULL,
1722 `category` varchar(60) COLLATE utf8mb4_bin DEFAULT NULL,
1723 `hash` varchar(255) COLLATE utf8mb4_bin DEFAULT NULL,
1724 `volume` int(11) DEFAULT 0,
1725 `store` varchar(50) COLLATE utf8mb4_bin DEFAULT NULL,
1726 PRIMARY KEY (`model`)
1727) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_bin;
1728
1729/*!40000 ALTER TABLE `vehicles` DISABLE KEYS */;
1730INSERT INTO `vehicles` (`name`, `model`, `price`, `category`, `hash`, `volume`, `store`) VALUES
1731 ('Dodge 16 Challenger', '16challenger', 350000, 'modded', '-216150906', 8000, 'store'),
1732 ('Dodge 16 Charger', '16charger', 200000, 'modded', '-1513691047', 8000, 'store'),
1733 ('Audi RS7', '2016rs7', 280000, 'modded', '-1071770374', 4000, 'store'),
1734 ('Chevrolet Camera', '2018zl1', 250000, 'modded', '-1671973728', 8000, 'store'),
1735 ('Highway Ram 2500', '2500leo', 0, 'police', '916783890', 6000, NULL),
1736 ('Porsche 911', '911turbos', 980000, 'modded', '2046572318', 6000, 'store'),
1737 ('Akuma', 'AKUMA', 47500, 'motorcycles', '1672195559', 0, 'store'),
1738 ('VIP Cognoscenti', 'Cognoscenti2', 0, 'merryweather', '-604842630', 6000, NULL),
1739 ('2019 Audi A6', 'a6tfsi', 275000, 'modded', '1994207938', 4000, 'store'),
1740 ('Adder', 'adder', 400000, 'super', '-1216765807', 1000, 'store'),
1741 ('Alpha', 'alpha', 170000, 'sports', '767087018', 8000, 'store'),
1742 ('Spriner Ambulance', 'ambulance', 0, 'EMS', '1171614426', 16000, NULL),
1743 ('Asea', 'asea', 5500, 'sedans', '-1809822327', 10000, 'store'),
1744 ('Avarus', 'avarus', 80000, 'motorcycles', '-2115793025', 0, 'store'),
1745 ('Bagger', 'bagger', 75000, 'motorcycles', '-2140431165', 2000, 'store'),
1746 ('Baller', 'baller2', 40000, 'suvs', '142944341', 16000, 'store'),
1747 ('Baller Sport', 'baller3', 50000, 'suvs', '1878062887', 16000, 'store'),
1748 ('Patrol Vehicle', 'baller6', 0, 'merryweather', '666166960', 6000, NULL),
1749 ('Banshee', 'banshee', 120000, 'sports', '-1041692462', 8000, 'store'),
1750 ('Banshee 900R', 'banshee2', 275000, 'super', '633712403', 8000, 'store'),
1751 ('Bati 801', 'bati', 70000, 'motorcycles', '-114291515', 0, 'store'),
1752 ('Bati 801RR', 'bati2', 110000, 'motorcycles', '-891462355', 0, 'store'),
1753 ('Highway Silverado', 'bcso4', 0, 'police', '1172351581', 8000, NULL),
1754 ('Highway 2015 Charger', 'bcsoo6', 0, 'police', '-644004229', 6000, NULL),
1755 ('Bestia GTS', 'bestiagts', 160000, 'sports', '1274868363', 4000, 'store'),
1756 ('BF400', 'bf400', 45000, 'motorcycles', '86520421', 0, 'store'),
1757 ('Bifta', 'bifta', 50000, 'offroad', '-349601129', 0, 'store'),
1758 ('Bison', 'bison', 30000, 'vans', '-16948145', 16000, 'store'),
1759 ('Blade', 'blade', 55000, 'muscle', '-1205801634', 8000, 'store'),
1760 ('Blazer', 'blazer', 10000, 'offroad', '-2128233223', 0, 'store'),
1761 ('Blazer Sport', 'blazer4', 18500, 'offroad', '-440768424', 0, 'store'),
1762 ('Blista', 'blista', 8000, 'compacts', '-344943009', 12000, 'store'),
1763 ('BMW M5 E60', 'bme6tun', 350000, 'modded', '-380714779', 4000, 'store'),
1764 ('BMW S1000', 'bmws', 300000, 'modded', '2047166283', 0, 'store'),
1765 ('BMX (velo)', 'bmx', 160, 'motorcycles', '1131912276', 0, 'store'),
1766 ('Bobcat XL', 'bobcatxl', 15000, 'vans', '1069929536', 16000, 'store'),
1767 ('Truck Support', 'boxville2', 0, 'merryweather', '-233098306', 50000, NULL),
1768 ('Brawler', 'brawler', 160000, 'offroad', '-1479664699', 6000, 'store'),
1769 ('Brioso R/A', 'brioso', 18000, 'compacts', '1549126457', 6000, 'store'),
1770 ('Buccaneer', 'buccaneer', 65000, 'muscle', '-682211828', 10000, 'store'),
1771 ('Buccaneer Rider', 'buccaneer2', 67500, 'muscle', '-1013450936', 10000, 'store'),
1772 ('Buffalo', 'buffalo', 50000, 'sports', '-304802106', 6000, 'store'),
1773 ('Buffalo S', 'buffalo2', 70000, 'sports', '736902334', 6000, 'store'),
1774 ('Bullet', 'bullet', 250000, 'super', '-1696146015', 6000, 'store'),
1775 ('Burrito', 'burrito3', 15000, 'vans', '-1743316013', 50000, 'store'),
1776 ('Transport Helicopter', 'buzzard2', 0, 'merryweather', '745926877', 0, NULL),
1777 ('Camper', 'camper', 25000, 'vans', '1876516712', 60000, 'store'),
1778 ('Highway Caprice', 'caprice', 0, 'police', '114566537', 6000, NULL),
1779 ('Carbon RS', 'carbonrs', 50000, 'motorcycles', '11251904', 0, 'store'),
1780 ('Casco', 'casco', 180000, 'sportsclassics', '941800958', 6000, 'store'),
1781 ('Cavalcade', 'cavalcade2', 45000, 'suvs', '-789894171', 22000, 'store'),
1782 ('Cayenne', 'cayenne', 200000, 'modded', '-1382835569', 6000, 'store'),
1783 ('RUNE Cheburek', 'cheburek', 50000, 'sportsclassics', '-988501280', 4000, 'store'),
1784 ('EMS Chief', 'chief', 0, 'EMS', '-425522126', 4000, NULL),
1785 ('Chimera', 'chimera', 38000, 'motorcycles', '6774487', 0, 'store'),
1786 ('Chino', 'chino', 47500, 'muscle', '349605904', 12000, 'store'),
1787 ('Chino Luxe', 'chino2', 50000, 'muscle', '-1361687965', 12000, 'store'),
1788 ('Cliffhanger', 'cliffhanger', 60000, 'motorcycles', '390201602', 0, 'store'),
1789 ('Vapid Clique', 'clique', 135000, 'muscle', '-1566607184', 4000, 'store'),
1790 ('Cognoscenti', 'cognoscenti', 55000, 'sedans', '-2030171296', 6000, 'store'),
1791 ('Comet', 'comet2', 130000, 'sports', '-1045541610', 10000, 'store'),
1792 ('Comet Retro', 'comet3', 175000, 'sports', '-2022483795', 4000, 'store'),
1793 ('Comet 5', 'comet5', 270000, 'sports', '661493923', 8000, 'store'),
1794 ('Contender', 'contender', 100000, 'suvs', '683047626', 22000, 'store'),
1795 ('Coquette', 'coquette', 190000, 'sports', '108773431', 4000, 'store'),
1796 ('Coquette Classic', 'coquette2', 250000, 'sportsclassics', '1011753235', 4000, 'store'),
1797 ('Cruiser (velo)', 'cruiser', 510, 'motorcycles', '448402357', 0, 'store'),
1798 ('Cyclone', 'cyclone', 600000, 'super', '1392481335', 10000, 'store'),
1799 ('Daemon', 'daemon', 50000, 'motorcycles', '2006142190', 0, 'store'),
1800 ('Daemon High', 'daemon2', 45000, 'motorcycles', '-1404136503', 0, 'store'),
1801 ('Defiler', 'defiler', 115000, 'motorcycles', '822018448', 0, 'store'),
1802 ('Demonhawk', 'demonhawk', 1600000, 'modded', '-1343173752', 8000, 'store'),
1803 ('Schyster Deviant', 'deviant', 200000, 'muscle', '1279262537', 6000, 'store'),
1804 ('2015 Ford Mustang', 'dominator', 125000, 'modded', '80636076', 6000, 'store'),
1805 ('Dominator Drag', 'dominator2', 150000, 'muscle', '-915704871', 4000, 'store'),
1806 ('Dominator GTX', 'dominator3', 250000, 'muscle', '-986944621', 4000, 'store'),
1807 ('Double T', 'double', 55000, 'motorcycles', '-1670998136', 0, 'store'),
1808 ('Dubsta', 'dubsta', 25000, 'suvs', '1177543287', 16000, 'store'),
1809 ('Dubsta Luxuary', 'dubsta2', 60000, 'suvs', '-394074634', 16000, 'store'),
1810 ('Bubsta 6x6', 'dubsta3', 200000, 'offroad', '-1237253773', 8000, 'store'),
1811 ('Imponte Dukes', 'dukes', 50000, 'muscle', '723973206', 4000, 'store'),
1812 ('Elegy', 'elegy2', 100000, 'sports', '-566387422', 6000, 'store'),
1813 ('Vapid Ellie', 'ellie', 125000, 'muscle', '-1267543371', 6000, 'store'),
1814 ('Emperor', 'emperor', 8500, 'sedans', '-685276541', 12000, 'store'),
1815 ('Enduro', 'enduro', 13000, 'motorcycles', '1753414259', 0, 'store'),
1816 ('Esskey', 'esskey', 4200, 'motorcycles', '2035069708', 0, 'store'),
1817 ('Exemplar', 'exemplar', 40000, 'coupes', '-5153954', 8000, 'store'),
1818 ('Ford F350', 'f150', 150000, 'modded', '-1304790695', 16000, 'store'),
1819 ('Highway F150', 'f1504x4', 0, 'police', '-213822496', 6000, NULL),
1820 ('UC F350', 'f350uc', 0, 'police', '-1491689533', 10000, NULL),
1821 ('Tow truck', 'f450tow', 0, 'mechanic', '-1400676180', 0, NULL),
1822 ('F620', 'f620', 45000, 'coupes', '-591610296', 4000, 'store'),
1823 ('Faction', 'faction', 55000, 'muscle', '-2119578145', 8000, 'store'),
1824 ('Faction Rider', 'faction2', 55000, 'muscle', '-1790546981', 12000, 'store'),
1825 ('Vulcar Fagaloa', 'fagaloa', 10000, 'sportsclassics', '1617472902', 0, 'store'),
1826 ('Faggio', 'faggio', 1900, 'motorcycles', '-1842748181', 0, 'store'),
1827 ('Vespa', 'faggio2', 2800, 'motorcycles', '55628203', 0, 'store'),
1828 ('Charger', 'fdcar2', 0, 'EMS', '1387264929', 6000, NULL),
1829 ('Felon', 'felon', 52000, 'coupes', '-391594584', 8000, 'store'),
1830 ('Felon GT', 'felon2', 55000, 'coupes', '-89291282', 8000, 'store'),
1831 ('Feltzer', 'feltzer2', 155000, 'sports', '-1995326987', 4000, 'store'),
1832 ('Stirling GT', 'feltzer3', 250000, 'sportsclassics', '-1566741232', 8000, 'store'),
1833 ('Tahoe', 'firetahoe', 0, 'EMS', '-1033543196', 8000, NULL),
1834 ('Firetruck', 'firetruk', 0, 'EMS', '1938952078', 6000, NULL),
1835 ('Fixter (velo)', 'fixter', 225, 'motorcycles', '-836512833', 0, 'store'),
1836 ('FMJ', 'fmj', 330000, 'super', '1426219628', 0, 'store'),
1837 ('Fhantom', 'fq2', 25000, 'suvs', '-1137532101', 16000, 'store'),
1838 ('Canis Freecrawler', 'freecrawler', 150000, 'offroad', '-54332285', 6000, 'store'),
1839 ('Fugitive', 'fugitive', 12000, 'sedans', '1909141499', 12000, 'store'),
1840 ('Furore GT', 'furoregt', 250000, 'sports', '-1089039904', 4000, 'store'),
1841 ('Highway Fusion', 'fusion', 0, 'police', '-168261087', 6000, NULL),
1842 ('Karin Futo', 'futo', 50000, 'sports', '2016857647', 6000, 'store'),
1843 ('Mercedes AMG G65', 'g65amg', 265000, 'modded', '104532066', 10000, 'store'),
1844 ('Gargoyle', 'gargoyle', 75000, 'motorcycles', '741090084', 0, 'store'),
1845 ('Gauntlet', 'gauntlet', 75000, 'muscle', '-1800170043', 8000, 'store'),
1846 ('Vapid GB200', 'gb200', 200000, 'sports', '1909189272', 0, 'store'),
1847 ('Gang Burrito', 'gburrito', 45000, 'vans', '-1745203402', 50000, 'store'),
1848 ('Burrito', 'gburrito2', 29000, 'vans', '296357396', 50000, 'store'),
1849 ('Glendale', 'glendale', 6500, 'sedans', '75131841', 6000, 'store'),
1850 ('Dodge Ram', 'granger', 40000, 'modded', '-1775728740', 20000, 'store'),
1851 ('Dodge Durango', 'gresley', 60000, 'modded', '-1543762099', 20000, 'store'),
1852 ('GT 500', 'gt500', 190000, 'sportsclassics', '-2079788230', 4000, 'store'),
1853 ('Guardian', 'guardian', 200000, 'offroad', '-2107990196', 16000, 'store'),
1854 ('Hakuchou', 'hakuchou', 31000, 'motorcycles', '1265391242', 0, 'store'),
1855 ('Hakuchou Sport', 'hakuchou2', 55000, 'motorcycles', '-255678177', 0, 'store'),
1856 ('Highway Hellcar', 'hellcat', 0, 'police', '701998922', 8000, NULL),
1857 ('Hexer', 'hexer', 60000, 'motorcycles', '301427732', 0, 'store'),
1858 ('Hummer', 'hummer', 175000, 'modded', '-1315660899', 10000, 'store'),
1859 ('Huntley S', 'huntley', 30000, 'suvs', '486987393', 12000, 'store'),
1860 ('Infernus', 'infernus', 280000, 'super', '418536135', 0, 'store'),
1861 ('Innovation', 'innovation', 70000, 'motorcycles', '-159126838', 0, 'store'),
1862 ('M.R.T Patrol Vehicle', 'insurgent2', 0, 'merryweather', '2071877360', 12000, NULL),
1863 ('Intruder', 'intruder', 7500, 'sedans', '886934177', 4000, 'store'),
1864 ('Jaguar Pace', 'ipace', 190000, 'modded', '-2060024398', 8000, 'store'),
1865 ('Issi', 'issi2', 10000, 'compacts', '-1177863319', 6000, 'store'),
1866 ('Mercedes CLS', 'jackal', 200000, 'modded', '-624529134', 8000, 'store'),
1867 ('Jester', 'jester', 185000, 'sports', '-1297672541', 0, 'store'),
1868 ('Jester(Racecar)', 'jester2', 230000, 'sports', '-1106353882', 0, 'store'),
1869 ('Journey', 'journey', 6500, 'vans', '-120287622', 60000, 'store'),
1870 ('Kamacho', 'kamacho', 170000, 'offroad', '-121446169', 12000, 'store'),
1871 ('Flatbed', 'kenworthtow', 0, 'mechanic', '1083832839', 0, NULL),
1872 ('Khamelion', 'khamelion', 90000, 'sports', '544021352', 12000, 'store'),
1873 ('Mitsubishi Evo X', 'kuruma', 60000, 'modded', '-1372848492', 8000, 'store'),
1874 ('Landstalker', 'landstalker', 26000, 'suvs', '1269098716', 20000, 'store'),
1875 ('Highway CVPI', 'leo1', 0, 'police', '-225135563', 6000, NULL),
1876 ('Highway 2014 Charger', 'leo5', 0, 'police', '108289116', 6000, NULL),
1877 ('Highway Tahoe', 'leo9', 0, 'police', '1315040310', 10000, NULL),
1878 ('Command F150', 'leomt', 0, 'police', '1789643874', 6000, NULL),
1879 ('Manana', 'manana', 75000, 'sportsclassics', '-2124201592', 12000, 'store'),
1880 ('Manchez', 'manchez', 20000, 'motorcycles', '-1523428744', 0, 'store'),
1881 ('Massacro', 'massacro', 175000, 'sports', '-142942670', 8000, 'store'),
1882 ('Massacro(Racecar)', 'massacro2', 200000, 'sports', '-631760477', 6000, 'store'),
1883 ('Ambulance', 'medic', 0, 'EMS', '-1337836896', 10000, NULL),
1884 ('Mesa', 'mesa', 20000, 'suvs', '914654722', 10000, 'store'),
1885 ('Mesa Trail', 'mesa3', 40000, 'suvs', '-2064372143', 10000, 'store'),
1886 ('Minivan', 'minivan', 13000, 'vans', '-310465116', 16000, 'store'),
1887 ('Moonbeam', 'moonbeam', 18000, 'vans', '525509695', 16000, 'store'),
1888 ('Moonbeam Rider', 'moonbeam2', 19000, 'vans', '1896491931', 12000, 'store'),
1889 ('Mercedes Stirling Moss', 'moss', 275000, 'modded', '-2089974945', 6000, 'store'),
1890 ('Mini Cooper', 'mr53', 100000, 'modded', '1006668411', 8000, 'store'),
1891 ('Transport Truck', 'mule3', 0, 'merryweather', '-2052737935', 60000, NULL),
1892 ('Nemesis', 'nemesis', 50000, 'motorcycles', '-634879114', 0, 'store'),
1893 ('Neon', 'neon', 300000, 'sports', '-1848994066', 8000, 'store'),
1894 ('Nero Custom', 'nero2', 805000, 'super', '1093792632', 0, 'store'),
1895 ('Nightblade', 'nightblade', 35000, 'motorcycles', '-1606187161', 0, 'store'),
1896 ('Nightshade', 'nightshade', 90000, 'muscle', '-1943285540', 4000, 'store'),
1897 ('Audi R8', 'ninef', 280000, 'modded', '1032823388', 0, 'store'),
1898 ('Kawasaki Ninja', 'ninjah2', 300000, 'modded', '1911052153', 0, 'store'),
1899 ('Omnis', 'omnis', 100000, 'sports', '-777172681', 4000, 'store'),
1900 ('Oracle XS', 'oracle2', 43000, 'coupes', '-511601230', 10000, 'store'),
1901 ('Osiris', 'osiris', 350000, 'super', '1987142870', 0, 'store'),
1902 ('Panto', 'panto', 10000, 'compacts', '-431692672', 4000, 'store'),
1903 ('Paradise', 'paradise', 16000, 'vans', '1488164764', 50000, 'store'),
1904 ('Pariah', 'pariah', 200000, 'sports', '867799010', 6000, 'store'),
1905 ('Patriot', 'patriot', 55000, 'suvs', '-808457413', 8000, 'store'),
1906 ('Prison Bus', 'pbus', 0, 'police', '-2007026063', 10000, NULL),
1907 ('PCJ-600', 'pcj', 55000, 'motorcycles', '-909201658', 0, 'store'),
1908 ('Penumbra', 'penumbra', 32500, 'sports', '-377465520', 4000, 'store'),
1909 ('Pfister', 'pfister811', 390000, 'super', '-1829802492', 0, 'store'),
1910 ('Phoenix', 'phoenix', 40000, 'muscle', '-2095439403', 6000, 'store'),
1911 ('Pigalle', 'pigalle', 200000, 'sportsclassics', '1078682497', 8000, 'store'),
1912 ('Highway Moto Sport', 'policeb', 0, 'police', '-34623805', 4000, NULL),
1913 ('Police Helicopter', 'polmav', 0, 'police', '353883353', 0, NULL),
1914 ('VW Polo 2018', 'polo2018', 40000, 'modded', '210550081', 6000, 'store'),
1915 ('Prairie', 'prairie', 12000, 'compacts', '-1450650718', 6000, 'store'),
1916 ('VW Arteon', 'premier', 135000, 'modded', '-1883869285', 8000, 'store'),
1917 ('Primo Custom', 'primo2', 14000, 'sedans', '-2040426790', 8000, 'store'),
1918 ('QRV Explorer', 'qrv', 0, 'EMS', '-576293386', 8000, NULL),
1919 ('Yamaha R1', 'r1', 250000, 'modded', '1474015055', 0, 'store'),
1920 ('Radius', 'radi', 20000, 'suvs', '-1651067813', 8000, 'store'),
1921 ('Dodge Challenger Raid', 'raid', 500000, 'modded', '-1299229688', 0, 'store'),
1922 ('raiden', 'raiden', 290000, 'sports', '-1529242755', 8000, 'store'),
1923 ('Rapid GT', 'rapidgt', 130000, 'sports', '-1934452204', 10000, 'store'),
1924 ('Rapid GT Convertible', 'rapidgt2', 140000, 'sports', '1737773231', 6000, 'store'),
1925 ('Rapid GT3', 'rapidgt3', 240000, 'sportsclassics', '2049897956', 4000, 'store'),
1926 ('Highway Camoe', 'rbcam', 0, 'police', '-984139785', 6000, NULL),
1927 ('Reaper', 'reaper', 300000, 'super', '234062309', 0, 'store'),
1928 ('Rebel', 'rebel2', 35000, 'offroad', '-2045594037', 12000, 'store'),
1929 ('Regina', 'regina', 5000, 'sedans', '-14495224', 16000, 'store'),
1930 ('Retinue', 'retinue', 170000, 'sportsclassics', '1841130506', 8000, 'store'),
1931 ('riata', 'riata', 150000, 'offroad', '-1532697517', 8000, 'store'),
1932 ('Response Bearcat', 'riot', 0, 'police', '-1205689942', 25000, NULL),
1933 ('Riot Control vehicle', 'riot2', 0, 'police', '-1693015116', 50000, NULL),
1934 ('Rocoto', 'rocoto', 37500, 'suvs', '2136773105', 12000, 'store'),
1935 ('Ruffian', 'ruffian', 55000, 'motorcycles', '-893578776', 0, 'store'),
1936 ('Rumpo', 'rumpo', 15000, 'vans', '1162065741', 50000, 'store'),
1937 ('Sabre Turbo', 'sabregt', 45000, 'muscle', '-1685021548', 4000, 'store'),
1938 ('Sabre GT', 'sabregt2', 50000, 'muscle', '223258115', 6000, 'store'),
1939 ('Sanchez', 'sanchez', 12000, 'motorcycles', '788045382', 0, 'store'),
1940 ('Sanchez Sport', 'sanchez2', 15000, 'motorcycles', '-1453280962', 0, 'store'),
1941 ('Sanctus', 'sanctus', 38000, 'motorcycles', '1491277511', 0, 'store'),
1942 ('Sandking', 'sandking', 55000, 'offroad', '-1189015600', 10000, 'store'),
1943 ('SC 1', 'sc1', 500000, 'super', '1352136073', 0, 'store'),
1944 ('Ford Taurus', 'schafter2', 25000, 'modded', '-1255452397', 6000, 'store'),
1945 ('Toyota Camry', 'schafter3', 60000, 'modded', '-1485523546', 6000, 'store'),
1946 ('Patrol Vehicle Sport', 'schafter5', 0, 'merryweather', '-888242983', 4000, NULL),
1947 ('Scorcher (velo)', 'scorcher', 280, 'motorcycles', '-186537451', 0, 'store'),
1948 ('Seminole', 'seminole', 25000, 'suvs', '1221512915', 16000, 'store'),
1949 ('McLaren Senna', 'senna', 2000000, 'modded', '-433961724', 0, 'store'),
1950 ('Sentinel', 'sentinel', 40000, 'coupes', '1349725314', 8000, 'store'),
1951 ('Sentinel XS', 'sentinel2', 38000, 'coupes', '873639469', 8000, 'store'),
1952 ('Sentinel3', 'sentinel3', 150000, 'sports', '1104234922', 6000, 'store'),
1953 ('Seven 70', 'seven70', 300000, 'sports', '-1757836725', 8000, 'store'),
1954 ('ETR1', 'sheava', 270000, 'super', '819197656', 0, 'store'),
1955 ('Nissan Skyline', 'skyline', 250000, 'modded', '2117711508', 4000, 'store'),
1956 ('Slam Van', 'slamvan3', 50000, 'muscle', '1119641113', 12000, 'store'),
1957 ('Sovereign', 'sovereign', 125000, 'motorcycles', '743478836', 6000, 'store'),
1958 ('Rescue Truck', 'specops', 0, 'EMS', '1820304699', 10000, NULL),
1959 ('Stinger', 'stinger', 200000, 'sportsclassics', '1545842587', 10000, 'store'),
1960 ('Stinger GT', 'stingergt', 250000, 'sportsclassics', '-2098947590', 0, 'store'),
1961 ('VIP Transport Truck', 'stockade', 0, 'merryweather', '1747439474', 25000, NULL),
1962 ('Stretch', 'stretch', 90000, 'sedans', '-1961627517', 6000, 'store'),
1963 ('Sultan', 'sultan', 45000, 'sports', '970598228', 6000, 'store'),
1964 ('Sultan RS', 'sultanrs', 175000, 'super', '-295689028', 6000, 'store'),
1965 ('Super Diamond', 'superd', 130000, 'sedans', '1123216662', 6000, 'store'),
1966 ('Helicopter', 'supervolito3', 0, 'EMS', '-1481216780', 10000, NULL),
1967 ('Surano', 'surano', 150000, 'sports', '384071873', 0, 'store'),
1968 ('Surfer', 'surfer', 8000, 'vans', '699456151', 40000, 'store'),
1969 ('VIP Helicopter', 'swift', 0, 'merryweather', '-339587598', 0, NULL),
1970 ('T20', 't20', 400000, 'super', '1663218586', 0, 'store'),
1971 ('Tailgater', 'tailgater', 30000, 'sedans', '-1008861746', 6000, 'store'),
1972 ('Tampa', 'tampa', 60000, 'muscle', '972671128', 8000, 'store'),
1973 ('Drift Tampa', 'tampa2', 80000, 'sports', '-1071380347', 4000, 'store'),
1974 ('Pegassi Tempasta', 'tempesta', 400000, 'super', '272929391', 0, 'store'),
1975 ('Operations Truck', 'terbyte', 0, 'merryweather', '-1988428699', 80000, NULL),
1976 ('Thrust', 'thrust', 72000, 'motorcycles', '1836027715', 0, 'store'),
1977 ('Pegassi Toros', 'toros', 50000, 'suvs', '-1168952148', 4000, 'store'),
1978 ('Tri bike (velo)', 'tribike3', 520, 'motorcycles', '-400295096', 0, 'store'),
1979 ('Trophy Truck', 'trophytruck', 180000, 'offroad', '101905590', 0, 'store'),
1980 ('Trophy Truck Limited', 'trophytruck2', 180000, 'offroad', '-663299102', 0, 'store'),
1981 ('Nissan Patrol', 'tulenis', 165000, 'modded', '-85895498', 6000, 'store'),
1982 ('Declasse Tulip', 'tulip', 115000, 'muscle', '1456744817', 6000, 'store'),
1983 ('Turismo R', 'turismor', 450000, 'super', '408192225', 0, 'store'),
1984 ('Highway Jeep', 'unm3', 0, 'police', '-1704693609', 6000, NULL),
1985 ('Highway Taurus', 'unm5', 0, 'police', '-2114142264', 6000, NULL),
1986 ('SRT UC Tahoe', 'unm8', 0, 'police', '-1270864818', 16000, NULL),
1987 ('Vacca', 'vacca', 255000, 'super', '338562499', 0, 'store'),
1988 ('Vader', 'vader', 55000, 'motorcycles', '-140902153', 0, 'store'),
1989 ('Declasse Vamos', 'vamos', 99000, 'muscle', '-49115651', 4000, 'store'),
1990 ('Vigero', 'vigero', 35000, 'muscle', '-825837129', 4000, 'store'),
1991 ('Virgo', 'virgo', 47500, 'muscle', '-498054846', 6000, 'store'),
1992 ('Visione', 'visione', 1350000, 'super', '-998177792', 0, 'store'),
1993 ('Tesla X', 'voltic', 230000, 'modded', '-1622444098', 8000, 'store'),
1994 ('Voodoo', 'voodoo', 40000, 'muscle', '2006667053', 8000, 'store'),
1995 ('Vortex', 'vortex', 120000, 'motorcycles', '-609625092', 0, 'store'),
1996 ('Washington', 'washington', 9000, 'sedans', '1777363799', 12000, 'store'),
1997 ('Windsor', 'windsor', 95000, 'coupes', '1581459400', 10000, 'store'),
1998 ('Windsor Drop', 'windsor2', 125000, 'coupes', '-1930048799', 10000, 'store'),
1999 ('Woflsbane', 'wolfsbane', 45000, 'motorcycles', '-618617997', 0, 'store'),
2000 ('XLS', 'xls', 25000, 'suvs', '1203490606', 16000, 'store'),
2001 ('Patrol Vehicle V2', 'xls2', 0, 'merryweather', '-432008408', 8000, NULL),
2002 ('Yosemite', 'yosemite', 70000, 'muscle', '1871995513', 10000, 'store'),
2003 ('Youga', 'youga', 10800, 'vans', '65402552', 40000, 'store'),
2004 ('Youga Luxuary', 'youga2', 12000, 'vans', '1026149675', 40000, 'store'),
2005 ('Zentorno', 'zentorno', 420000, 'super', '-1403128555', 0, 'store'),
2006 ('Zion', 'zion', 48000, 'coupes', '-1122289213', 10000, 'store'),
2007 ('Zion Cabrio', 'zion2', 45000, 'coupes', '-1193103848', 8000, 'store'),
2008 ('Zombie', 'zombiea', 35000, 'motorcycles', '-1009268949', 0, 'store'),
2009 ('Zombie Luxuary', 'zombieb', 62500, 'motorcycles', '-570033273', 0, 'store'),
2010 ('Annis ZR3806', 'zr3806str', 780000, 'modded', '-1786460813', 4000, 'store');
2011/*!40000 ALTER TABLE `vehicles` ENABLE KEYS */;
2012
2013CREATE TABLE IF NOT EXISTS `vehiclestores` (
2014 `owner` varchar(50) DEFAULT NULL,
2015 `store` int(11) DEFAULT NULL,
2016 `stock` longtext DEFAULT NULL,
2017 `name` varchar(50) DEFAULT NULL,
2018 `ownershipTo` bigint(20) DEFAULT NULL
2019) ENGINE=MyISAM DEFAULT CHARSET=latin1;
2020
2021/*!40000 ALTER TABLE `vehiclestores` DISABLE KEYS */;
2022/*!40000 ALTER TABLE `vehiclestores` ENABLE KEYS */;
2023
2024CREATE TABLE IF NOT EXISTS `vehicle_categories` (
2025 `id` int(11) NOT NULL AUTO_INCREMENT,
2026 `name` varchar(60) COLLATE utf8mb4_bin NOT NULL,
2027 `label` varchar(60) COLLATE utf8mb4_bin NOT NULL,
2028 PRIMARY KEY (`id`)
2029) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_bin;
2030
2031/*!40000 ALTER TABLE `vehicle_categories` DISABLE KEYS */;
2032INSERT INTO `vehicle_categories` (`id`, `name`, `label`) VALUES
2033 (1, 'compacts', 'Compacts'),
2034 (2, 'coupes', 'Coupés'),
2035 (3, 'sedans', 'Sedans'),
2036 (4, 'sports', 'Sports'),
2037 (5, 'sportsclassics', 'Sports Classics'),
2038 (6, 'super', 'Super'),
2039 (7, 'muscle', 'Muscle'),
2040 (8, 'offroad', 'Off Road'),
2041 (9, 'suvs', 'SUVs'),
2042 (10, 'vans', 'Vans'),
2043 (11, 'motorcycles', 'Motos'),
2044 (13, 'modded', 'Modded Cars');
2045/*!40000 ALTER TABLE `vehicle_categories` ENABLE KEYS */;
2046
2047/*!40101 SET SQL_MODE=IFNULL(@OLD_SQL_MODE, '') */;
2048/*!40014 SET FOREIGN_KEY_CHECKS=IF(@OLD_FOREIGN_KEY_CHECKS IS NULL, 1, @OLD_FOREIGN_KEY_CHECKS) */;
2049/*!40101 SET CHARACTER_SET_CLIENT=@OLD_CHARACTER_SET_CLIENT */;