· 6 years ago · Jan 12, 2020, 03:58 PM
1-- phpMyAdmin SQL Dump
2-- version 4.4.15.10
3-- https://www.phpmyadmin.net
4--
5-- Host: localhost
6-- Generation Time: Dec 28, 2019 at 01:06 PM
7-- Server version: 10.2.22-MariaDB
8-- PHP Version: 5.4.16
9
10SET SQL_MODE = "NO_AUTO_VALUE_ON_ZERO";
11SET time_zone = "+00:00";
12
13
14/*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */;
15/*!40101 SET @OLD_CHARACTER_SET_RESULTS=@@CHARACTER_SET_RESULTS */;
16/*!40101 SET @OLD_COLLATION_CONNECTION=@@COLLATION_CONNECTION */;
17/*!40101 SET NAMES utf8mb4 */;
18
19--
20-- Database: `banditul`
21--
22
23-- --------------------------------------------------------
24
25--
26-- Table structure for table `owned_vehicles_headlights`
27--
28
29CREATE TABLE IF NOT EXISTS `owned_vehicles_headlights` (
30 `id` int(11) NOT NULL,
31 `plate` text NOT NULL,
32 `color` int(11) NOT NULL
33) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4;
34
35-- --------------------------------------------------------
36
37--
38-- Table structure for table `vrp_bennys_table`
39--
40
41CREATE TABLE IF NOT EXISTS `vrp_bennys_table` (
42 `id` int(11) NOT NULL,
43 `bmoney` int(11) NOT NULL DEFAULT 0,
44 `dmoney` int(11) NOT NULL DEFAULT 0,
45 `data` text NOT NULL DEFAULT ''
46) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=latin1;
47
48--
49-- Dumping data for table `vrp_bennys_table`
50--
51
52INSERT INTO `vrp_bennys_table` (`id`, `bmoney`, `dmoney`, `data`) VALUES
53(1, 0, 0, '');
54
55-- --------------------------------------------------------
56
57--
58-- Table structure for table `vrp_business`
59--
60
61CREATE TABLE IF NOT EXISTS `vrp_business` (
62 `id` int(255) NOT NULL,
63 `x` float NOT NULL,
64 `y` float NOT NULL,
65 `z` float NOT NULL,
66 `bizName` text CHARACTER SET latin1 NOT NULL,
67 `bizDescription` text CHARACTER SET latin1 NOT NULL,
68 `bizPrice` int(255) NOT NULL DEFAULT 0,
69 `bizType` text CHARACTER SET latin1 NOT NULL,
70 `bizCashier` bigint(255) NOT NULL DEFAULT 0,
71 `bizSupplies` int(255) NOT NULL DEFAULT 75,
72 `bizOwner` longtext CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
73 `bizOwnerID` int(255) NOT NULL,
74 `bizForSale` int(255) NOT NULL DEFAULT 0,
75 `bizSalePrice` int(255) NOT NULL,
76 `bizStrikes` int(255) NOT NULL DEFAULT 0,
77 `bizImunity` int(255) NOT NULL DEFAULT 0
78) ENGINE=InnoDB AUTO_INCREMENT=6 DEFAULT CHARSET=utf8;
79
80--
81-- Dumping data for table `vrp_business`
82--
83
84INSERT INTO `vrp_business` (`id`, `x`, `y`, `z`, `bizName`, `bizDescription`, `bizPrice`, `bizType`, `bizCashier`, `bizSupplies`, `bizOwner`, `bizOwnerID`, `bizForSale`, `bizSalePrice`, `bizStrikes`, `bizImunity`) VALUES
85(1, -61.8316, -1093.32, 26.4711, 'SHOWROOM', 'Masini iefrine si bune ! ', 10000000, 'Showroom', 25000, 61, 'GamingwithEndo', 5, 0, 0, 0, 0),
86(2, 432.335, -986.204, 30.7103, 'SECTIA DE POLITIE', 'SECTIA ORASULUI NOSTRU', 50000000, '2', 1875000, 0, 'Dan', 1, 0, 0, 0, 0),
87(3, -963.562, -2779.52, 13.9446, 'AEROPORT', 'AEROPORTUL ORASULUI', 5000000, '5', 62500, 0, 'MaR1aN', 97, 0, 0, 0, 0),
88(4, 404.741, -1625.86, 29.2919, 'MECANIC', 'DE AICI SE POT CUIMPARA INSTRUMENTE PENTRU JOBUL MECANIC', 2500000, '9', 0, 75, 'None', 0, 0, 0, 0, 0),
89(5, -1455.43, -229.69, 49.2621, 'GUCCI', 'DE AICI SE POT CUMPARA HAINE', 15, '10', 0, 48, 'DarK', 14, 0, 0, 0, 0);
90
91-- --------------------------------------------------------
92
93--
94-- Table structure for table `vrp_costumization`
95--
96
97CREATE TABLE IF NOT EXISTS `vrp_costumization` (
98 `user_id` varchar(255) NOT NULL,
99 `dad` int(11) NOT NULL DEFAULT 0,
100 `mum` int(11) NOT NULL DEFAULT 0,
101 `dadmumpercent` int(11) NOT NULL DEFAULT 0,
102 `skinton` int(11) NOT NULL DEFAULT 0,
103 `eyecolor` int(11) NOT NULL DEFAULT 0,
104 `acne` int(11) NOT NULL DEFAULT 0,
105 `skinproblem` int(11) NOT NULL DEFAULT 0,
106 `freckle` int(11) NOT NULL DEFAULT 0,
107 `wrinkle` int(11) NOT NULL DEFAULT 0,
108 `wrinkleopacity` int(11) NOT NULL DEFAULT 0,
109 `eyebrow` int(11) NOT NULL DEFAULT 0,
110 `eyebrowopacity` int(11) NOT NULL DEFAULT 0,
111 `beard` int(11) NOT NULL DEFAULT 0,
112 `beardopacity` int(11) NOT NULL DEFAULT 0,
113 `beardcolor` int(11) NOT NULL DEFAULT 0,
114 `hair` int(11) NOT NULL DEFAULT 0,
115 `hairtext` int(11) NOT NULL DEFAULT 0,
116 `torso` int(11) NOT NULL DEFAULT 0,
117 `torsotext` int(11) NOT NULL DEFAULT 0,
118 `leg` int(11) NOT NULL DEFAULT 0,
119 `legtext` int(11) NOT NULL DEFAULT 0,
120 `shoes` int(11) NOT NULL DEFAULT 0,
121 `shoestext` int(11) NOT NULL DEFAULT 0,
122 `accessory` int(11) NOT NULL DEFAULT 0,
123 `accessorytext` int(11) NOT NULL DEFAULT 0,
124 `undershirt` int(11) NOT NULL DEFAULT 0,
125 `undershirttext` int(11) NOT NULL DEFAULT 0,
126 `torso2` int(11) NOT NULL DEFAULT 0,
127 `torso2text` int(11) NOT NULL DEFAULT 0,
128 `prop_hat` int(11) NOT NULL DEFAULT 0,
129 `prop_hat_text` int(11) NOT NULL DEFAULT 0,
130 `prop_glasses` int(11) NOT NULL DEFAULT 0,
131 `prop_glasses_text` int(11) NOT NULL DEFAULT 0,
132 `prop_earrings` int(11) NOT NULL DEFAULT 0,
133 `prop_earrings_text` int(11) NOT NULL DEFAULT 0,
134 `prop_watches` int(11) NOT NULL DEFAULT 0,
135 `prop_watches_text` int(11) NOT NULL DEFAULT 0
136) ENGINE=InnoDB DEFAULT CHARSET=latin1;
137
138-- --------------------------------------------------------
139
140--
141-- Table structure for table `vrp_garages`
142--
143
144CREATE TABLE IF NOT EXISTS `vrp_garages` (
145 `id` int(255) NOT NULL,
146 `x` float NOT NULL,
147 `y` float NOT NULL,
148 `z` float NOT NULL,
149 `gtype` text NOT NULL
150) ENGINE=InnoDB AUTO_INCREMENT=41 DEFAULT CHARSET=latin1;
151
152--
153-- Dumping data for table `vrp_garages`
154--
155
156INSERT INTO `vrp_garages` (`id`, `x`, `y`, `z`, `gtype`) VALUES
157(1, -515.755, -295.163, 35.2292, 'House Garage'),
158(2, -62.094, -1116.29, 26.4338, 'House Garage'),
159(3, -53.3917, -1116.48, 26.4347, 'House Garage'),
160(4, 370.789, -951.586, 29.3665, 'House Garage'),
161(5, -460.411, -272.382, 35.7857, 'House Garage'),
162(6, 117.01, 6599.49, 32.0094, 'House Garage'),
163(7, -796.582, 304.36, 85.7004, 'House Garage'),
164(8, -1458.11, -499.291, 32.4972, 'House Garage'),
165(9, 128.709, -1070.14, 29.1923, 'House Garage'),
166(10, -2956.22, 461.748, 15.2258, 'House Garage'),
167(11, -314.504, -694.194, 33.0599, 'House Garage'),
168(12, -2338.74, 293.725, 169.467, 'House Garage'),
169(13, -3001.3, 79.2144, 11.6085, 'House Garage'),
170(14, 1124.13, 2647.36, 37.9963, 'House Garage'),
171(15, -2533.13, 2346.39, 33.0599, 'House Garage'),
172(16, 1977.23, 3827.63, 32.3694, 'House Garage'),
173(17, -1541.97, 887.586, 181.502, 'House Garage'),
174(18, 1701.05, 4941.63, 42.0781, 'House Garage'),
175(19, 2667.27, 3256.68, 55.2405, 'House Garage'),
176(20, 2563.31, 312.591, 108.461, 'House Garage'),
177(21, 934.663, -1.42076, 78.764, 'House Garage'),
178(22, 60.6105, 17.1522, 69.158, 'House Garage'),
179(23, 453.056, -1019.38, 28.4016, 'Politie'),
180(24, -455.089, 6001.7, 31.3405, 'Politie'),
181(25, 453.528, -1024.25, 28.5024, 'Jandarmerie'),
182(26, -452.199, 5998.27, 31.3405, 'Jandarmerie'),
183(27, 363.84, -610.471, 28.7572, 'Medici'),
184(28, 377.871, -577.933, 28.6979, 'House Garage'),
185(29, -471.664, -324.779, 34.3633, 'Medici'),
186(30, -1538.77, 888.764, 181.677, 'Mafia Cartel Di Medellin'),
187(31, -105.994, 402.026, 112.604, 'Hitman Garage'),
188(32, -112.273, 354.749, 112.696, 'Hitman Elicopter'),
189(33, 702.205, -1104.75, 22.4514, 'House Garage'),
190(34, -1761.42, 2857.57, 32.8065, 'House Garage'),
191(35, -996.279, -3025.5, 13.9451, 'House Garage'),
192(36, -819.255, 184.673, 72.2067, 'House Garage'),
193(37, -562.39, 303.861, 83.2033, 'House Garage'),
194(38, 837.513, -3143.92, 5.9008, 'House Garage'),
195(39, -19.5756, -671.55, 32.3381, 'House Garage'),
196(40, 518.59, 168.831, 99.3693, 'House Garage');
197
198-- --------------------------------------------------------
199
200--
201-- Table structure for table `vrp_giftbox`
202--
203
204CREATE TABLE IF NOT EXISTS `vrp_giftbox` (
205 `user_id` int(255) NOT NULL,
206 `giftbox` int(255) NOT NULL
207) ENGINE=InnoDB DEFAULT CHARSET=latin1;
208
209--
210-- Dumping data for table `vrp_giftbox`
211--
212
213INSERT INTO `vrp_giftbox` (`user_id`, `giftbox`) VALUES
214(41, 1);
215
216-- --------------------------------------------------------
217
218--
219-- Table structure for table `vrp_newcoin`
220--
221
222CREATE TABLE IF NOT EXISTS `vrp_newcoin` (
223 `user_id` int(255) NOT NULL,
224 `coins` int(255) NOT NULL
225) ENGINE=InnoDB DEFAULT CHARSET=latin1;
226
227-- --------------------------------------------------------
228
229--
230-- Table structure for table `vrp_srv_data`
231--
232
233CREATE TABLE IF NOT EXISTS `vrp_srv_data` (
234 `dkey` varchar(100) NOT NULL,
235 `dvalue` text DEFAULT NULL
236) ENGINE=InnoDB DEFAULT CHARSET=latin1;
237
238--
239-- Dumping data for table `vrp_srv_data`
240--
241
242INSERT INTO `vrp_srv_data` (`dkey`, `dvalue`) VALUES
243('chest:u104veh_huraperfospy', '{}'),
244('chest:u104veh_mbgle', '{"drug_lyseracid":{"amount":7},"drug_cocaalka":{"amount":4},"drug_cansativa":{"amount":4},"drug_unprocpcp":{"amount":8}}'),
245('chest:u106veh_g65amg', '{"dirty_money":{"amount":15307}}'),
246('chest:u11veh_rmodbmwi8', '[]'),
247('chest:u121veh_m3e30', '{}'),
248('chest:u14veh_720s', '[]'),
249('chest:u15veh_polchiron', '[]'),
250('chest:u16veh_sandero', '[]'),
251('chest:u1home', '[]'),
252('chest:u1veh_r8v10', '[]'),
253('chest:u24home', '[]'),
254('chest:u25veh_rmodm3e36', '[]'),
255('chest:u30home', '[]'),
256('chest:u30veh_mb250', '{"tea":{"amount":1}}'),
257('chest:u37veh_daduster', '[]'),
258('chest:u37veh_mgt', '[]'),
259('chest:u38veh_audirs6tk', '{"piatra":{"amount":50},"diamant":{"amount":2}}'),
260('chest:u38veh_bs17', '[]'),
261('chest:u38veh_g65amg', '[]'),
262('chest:u3veh_huraperfospy', '{"dirty_money":{"amount":15650}}'),
263('chest:u4veh_logan', '[]'),
264('chest:u4veh_rmodm3e36', '[]'),
265('chest:u50veh_a4', '[]'),
266('chest:u50veh_c63s', '[]'),
267('chest:u5veh_14r8', '[]'),
268('chest:u5veh_lp770r', '[]'),
269('chest:u6veh_c63s', '[]'),
270('chest:u6veh_cayman16', '[]'),
271('chest:u6veh_r6', '{"redbull":{"amount":20},"shaorma":{"amount":14}}'),
272('chest:u6veh_rmodm3e36', '{}'),
273('chest:u93veh_m3e30', '{}'),
274('chest:u93veh_rmodbmwi8', '{"carne":{"amount":33}}'),
275('chest:u94veh_m3e30', '{}'),
276('chest:u94veh_rmodbmwi8', '{}'),
277('chest:u99veh_rmodbmwi8', '[]'),
278('chest:u9veh_aperta', '[]'),
279('chest:u9veh_lp770r', '[]'),
280('chest:u9veh_sandero', '[]'),
281('vRP:hidden_trs', '{"ems":{"position":[-1145.8566894531,4939.5083007813,222.2686920166],"timestamp":1576590138},"lsd bar":{"position":[1992.5993652344,3044.1806640625,47.215068817139],"timestamp":1576590138},"police2":{"position":[1851.6605224609,3690.6713867188,34.267044067383],"timestamp":1576590138},"police1":{"position":[439.57083129883,-995.072265625,30.689596176147],"timestamp":1576590138},"weed field":{"position":[2208.0104980469,5577.6987304688,53.739212036133],"timestamp":1576590138},"police3":{"position":[-449.43395996094,6010.796875,31.716377258301],"timestamp":1576590138},"cocaine dealer":{"position":[-631.00543212891,-229.42568969727,38.057052612305],"timestamp":1576590138}}');
282
283-- --------------------------------------------------------
284
285--
286-- Table structure for table `vrp_tickete_cases`
287--
288
289CREATE TABLE IF NOT EXISTS `vrp_tickete_cases` (
290 `id` int(11) NOT NULL,
291 `user_id` int(11) NOT NULL,
292 `title` varchar(255) NOT NULL,
293 `message` text NOT NULL,
294 `status` int(11) NOT NULL DEFAULT 1
295) ENGINE=InnoDB DEFAULT CHARSET=latin1;
296
297-- --------------------------------------------------------
298
299--
300-- Table structure for table `vrp_tickete_replies`
301--
302
303CREATE TABLE IF NOT EXISTS `vrp_tickete_replies` (
304 `id` int(11) NOT NULL,
305 `user_id` int(11) NOT NULL,
306 `message` text NOT NULL,
307 `case_id` int(11) NOT NULL
308) ENGINE=InnoDB DEFAULT CHARSET=latin1;
309
310-- --------------------------------------------------------
311
312--
313-- Table structure for table `vrp_users`
314--
315
316CREATE TABLE IF NOT EXISTS `vrp_users` (
317 `id` int(11) NOT NULL,
318 `last_login` varchar(100) DEFAULT NULL,
319 `whitelisted` tinyint(1) DEFAULT NULL,
320 `banned` tinyint(1) DEFAULT NULL,
321 `job` varchar(100) NOT NULL DEFAULT 'Somer',
322 `vehLim` int(11) NOT NULL DEFAULT 20,
323 `bizLim` int(11) NOT NULL DEFAULT 5,
324 `hoursPlayed` float NOT NULL DEFAULT 0
325) ENGINE=InnoDB AUTO_INCREMENT=132 DEFAULT CHARSET=latin1;
326
327--
328-- Dumping data for table `vrp_users`
329--
330
331INSERT INTO `vrp_users` (`id`, `last_login`, `whitelisted`, `banned`, `job`, `vehLim`, `bizLim`, `hoursPlayed`) VALUES
332(1, '82.78.210.11 05:29:16 19/12/2019', 0, 0, 'Somer', 20, 5, 0),
333(2, '79.112.90.150 13:06:57 19/12/2019', 0, 0, 'Somer', 20, 5, 0),
334(3, '213.65.214.174 12:56:06 19/12/2019', 0, 0, 'Somer', 20, 5, 0),
335(4, '81.196.219.92 05:37:17 19/12/2019', 0, 0, 'Somer', 20, 5, 0),
336(5, '86.122.56.153 09:45:02 19/12/2019', 0, 0, 'Sofer Autobuz', 20, 5, 0),
337(6, '95.76.2.37 08:17:48 18/12/2019', 0, 0, 'Uber Eatz', 20, 5, 0),
338(7, '78.97.40.237 12:01:27 11/12/2019', 0, 0, 'Somer', 20, 5, 0),
339(8, '188.24.218.18 05:56:27 01/12/2019', 0, 0, 'Somer', 20, 5, 0),
340(9, '89.137.241.99 10:58:29 19/12/2019', 0, 0, 'Somer', 20, 5, 0),
341(10, '79.115.11.115 11:02:48 15/12/2019', 0, 0, 'Sofer Autobuz', 20, 5, 0),
342(11, '94.52.146.130 06:12:33 06/12/2019', 0, 0, 'Somer', 20, 5, 0),
343(12, '109.98.133.88 06:18:15 01/12/2019', 0, 0, 'Somer', 20, 5, 0),
344(13, '92.84.144.188 11:33:01 12/12/2019', 0, 0, 'Somer', 20, 5, 0),
345(14, '77.96.173.127 11:24:38 19/12/2019', 0, 0, 'Sofer Autobuz', 20, 5, 0),
346(15, '86.126.128.242 10:17:15 04/12/2019', 0, 0, 'Uber Eatz', 20, 5, 0),
347(16, '5.13.220.110 11:44:14 19/12/2019', 0, 0, 'Sofer Autobuz', 20, 5, 0),
348(17, '90.84.229.70 06:07:49 01/12/2019', 0, 0, 'Somer', 20, 5, 0),
349(18, '5.14.84.71 06:08:02 01/12/2019', 0, 0, 'Somer', 20, 5, 0),
350(19, '84.117.19.173 06:08:39 01/12/2019', 0, 0, 'Somer', 20, 5, 0),
351(20, '79.113.228.100 06:09:07 01/12/2019', 0, 0, 'Somer', 20, 5, 0),
352(21, '88.65.67.23 06:09:31 01/12/2019', 0, 0, 'Somer', 20, 5, 0),
353(22, '81.196.146.195 06:10:20 01/12/2019', 0, 0, 'Somer', 20, 5, 0),
354(23, '89.137.211.87 06:23:05 01/12/2019', 0, 0, 'Somer', 20, 5, 0),
355(24, '86.126.121.107 11:10:57 17/12/2019', 0, 0, 'Somer', 20, 5, 0),
356(25, '82.76.48.96 07:41:13 10/12/2019', 0, 0, 'Sofer Autobuz', 20, 5, 0),
357(26, '86.124.201.163 06:34:08 01/12/2019', 0, 0, 'Somer', 20, 5, 0),
358(27, '91.13.151.226 07:03:03 01/12/2019', 0, 0, 'Somer', 20, 5, 0),
359(28, '93.229.153.194 07:03:07 01/12/2019', 0, 1, 'Sofer Autobuz', 20, 5, 0),
360(29, '188.25.36.59 07:04:20 01/12/2019', 0, 0, 'Somer', 20, 5, 0),
361(30, '79.112.90.183 13:17:36 19/12/2019', 0, 0, 'Somer', 20, 5, 0),
362(31, '188.26.49.15 14:06:06 14/12/2019', 0, 0, 'Sofer Autobuz', 20, 5, 0),
363(32, '109.98.160.187 09:40:16 14/12/2019', 0, 0, 'Somer', 20, 5, 0),
364(33, '82.77.87.34 09:21:27 01/12/2019', 0, 0, 'Somer', 20, 5, 0),
365(34, '86.121.188.28 09:07:36 01/12/2019', 0, 0, 'Somer', 20, 5, 0),
366(35, '86.123.117.126 09:26:38 01/12/2019', 0, 0, 'Somer', 20, 5, 0),
367(36, '79.112.101.140 10:48:11 01/12/2019', 0, 0, 'Somer', 20, 5, 0),
368(37, '82.77.19.168 11:32:36 19/12/2019', 0, 0, 'Somer', 20, 5, 0),
369(38, '86.124.207.33 07:12:52 15/12/2019', 0, 0, 'Somer', 20, 5, 0),
370(39, '178.138.35.188 12:12:04 01/12/2019', 0, 0, 'Somer', 20, 5, 0),
371(40, '92.80.251.22 13:03:50 03/12/2019', 0, 0, 'Somer', 20, 5, 0),
372(41, '5.13.146.120 13:44:00 08/12/2019', 0, 0, 'Somer', 20, 5, 0),
373(42, '85.186.216.140 14:37:17 01/12/2019', 0, 0, 'Somer', 20, 5, 0),
374(43, '188.26.51.224 01:03:24 02/12/2019', 0, 0, 'Sofer Autobuz', 20, 5, 0),
375(44, '46.102.75.208 10:46:19 02/12/2019', 0, 0, 'Somer', 20, 5, 0),
376(45, '79.116.222.147 14:06:59 01/12/2019', 0, 0, 'Somer', 20, 5, 0),
377(46, '149.172.127.103 04:14:17 08/12/2019', 0, 1, 'Somer', 20, 5, 0),
378(47, '82.77.77.95 04:15:35 08/12/2019', 0, 1, 'Somer', 20, 5, 0),
379(48, '188.24.80.35 08:56:15 02/12/2019', 0, 0, 'Somer', 20, 5, 0),
380(49, '81.196.16.125 10:21:14 02/12/2019', 0, 0, 'Somer', 20, 5, 0),
381(50, '89.47.218.212 11:29:44 19/12/2019', 0, 0, 'Somer', 20, 5, 0),
382(51, '77.102.55.116 13:18:07 02/12/2019', 0, 0, 'Uber Eatz', 20, 5, 0),
383(52, '5.65.16.85 04:41:46 03/12/2019', 0, 0, 'Somer', 20, 5, 0),
384(53, '188.25.137.255 08:19:01 03/12/2019', 0, 0, 'Somer', 20, 5, 0),
385(54, '88.245.140.81 07:06:30 03/12/2019', 0, 0, 'Somer', 20, 5, 0),
386(55, '89.247.127.92 08:03:29 03/12/2019', 0, 0, 'Somer', 20, 5, 0),
387(56, '95.91.239.113 08:52:07 03/12/2019', 0, 0, 'Somer', 20, 5, 0),
388(57, '92.86.39.162 09:12:42 03/12/2019', 0, 0, 'Somer', 20, 5, 0),
389(58, '5.14.47.129 09:37:06 03/12/2019', 0, 0, 'Somer', 20, 5, 0),
390(59, '217.88.242.48 10:48:48 04/12/2019', 0, 0, 'Somer', 20, 5, 0),
391(60, '217.99.252.209 09:56:04 03/12/2019', 0, 0, 'Somer', 20, 5, 0),
392(61, '82.78.175.155 12:54:01 03/12/2019', 0, 0, 'Somer', 20, 5, 0),
393(62, '93.113.98.194 18:03:07 16/12/2019', 0, 0, 'Somer', 20, 5, 0),
394(63, '86.124.209.144 08:56:39 04/12/2019', 0, 0, 'Somer', 20, 5, 0),
395(64, '5.15.245.82 09:14:01 04/12/2019', 0, 0, 'Somer', 20, 5, 0),
396(65, '86.120.151.36 09:42:01 04/12/2019', 0, 0, 'Somer', 20, 5, 0),
397(66, '86.120.166.206 09:27:11 04/12/2019', 0, 0, 'Somer', 20, 5, 0),
398(67, '86.120.158.5 09:57:43 04/12/2019', 0, 0, 'Somer', 20, 5, 0),
399(68, '46.102.24.73 09:36:41 18/12/2019', 0, 0, 'Somer', 20, 5, 0),
400(69, '5.14.178.133 10:16:48 04/12/2019', 0, 0, 'Somer', 20, 5, 0),
401(70, '46.190.13.112 10:18:32 04/12/2019', 0, 0, 'Somer', 20, 5, 0),
402(71, '109.96.32.135 10:59:02 04/12/2019', 0, 0, 'Somer', 20, 5, 0),
403(72, '5.14.4.52 11:49:54 04/12/2019', 0, 0, 'Somer', 20, 5, 0),
404(73, '89.32.217.86 04:50:46 05/12/2019', 0, 0, 'Somer', 20, 5, 0),
405(74, '31.5.179.157 08:44:23 05/12/2019', 0, 0, 'Somer', 20, 5, 0),
406(75, '79.115.11.115 10:38:41 15/12/2019', 0, 0, 'Somer', 20, 5, 0),
407(76, '84.232.178.117 04:43:40 19/12/2019', 0, 0, 'Somer', 20, 5, 0),
408(77, '92.83.181.221 11:24:39 05/12/2019', 0, 0, 'Somer', 20, 5, 0),
409(78, '82.77.30.43 18:12:21 20/12/2019', 0, 0, 'Somer', 20, 5, 0),
410(79, '92.40.249.211 01:32:46 06/12/2019', 0, 1, 'Somer', 20, 5, 0),
411(80, '109.240.167.86 09:38:43 06/12/2019', 0, 0, 'Somer', 20, 5, 0),
412(81, '109.64.43.182 03:52:03 06/12/2019', 0, 0, 'Somer', 20, 5, 0),
413(82, '89.47.218.173 15:10:42 06/12/2019', 0, 0, 'Somer', 20, 5, 0),
414(83, '86.120.243.110 16:07:03 06/12/2019', 0, 0, 'Somer', 20, 5, 0),
415(84, '187.136.102.144 21:36:00 06/12/2019', 0, 0, 'Somer', 20, 5, 0),
416(85, '78.96.210.179 06:17:26 07/12/2019', 0, 0, 'Somer', 20, 5, 0),
417(86, '95.77.192.230 10:51:47 07/12/2019', 0, 0, 'Somer', 20, 5, 0),
418(87, '5.14.202.199 10:39:21 11/12/2019', 0, 0, 'Somer', 20, 5, 0),
419(88, '79.113.172.231 10:02:06 09/12/2019', 0, 0, 'Croitor', 20, 5, 0),
420(89, '79.116.47.126 04:06:20 08/12/2019', 0, 0, 'Somer', 20, 5, 0),
421(90, '109.102.203.74 04:59:09 08/12/2019', 0, 0, 'Somer', 20, 5, 0),
422(91, '109.96.156.104 10:36:55 08/12/2019', 0, 0, 'Somer', 20, 5, 0),
423(92, '87.123.73.67 19:04:13 08/12/2019', 0, 0, 'Somer', 20, 5, 0),
424(93, '86.122.101.106 07:41:32 13/12/2019', 0, 0, 'Somer', 20, 5, 0),
425(94, '31.5.68.74 09:26:02 14/12/2019', 0, 0, 'Somer', 20, 5, 0),
426(95, '109.98.132.86 12:51:45 09/12/2019', 0, 0, 'Somer', 20, 5, 0),
427(96, '46.5.230.245 13:28:29 09/12/2019', 0, 0, 'Somer', 20, 5, 0),
428(97, '82.79.234.222 00:50:35 19/12/2019', 0, 0, 'Sofer Autobuz', 20, 5, 0),
429(98, '5.12.243.90 00:55:42 19/12/2019', 0, 0, 'Sofer Autobuz', 20, 5, 0),
430(99, '81.196.155.176 11:53:23 17/12/2019', 0, 0, 'Uber Eatz', 20, 5, 0),
431(100, '185.198.49.226 02:56:07 11/12/2019', 0, 0, 'Somer', 20, 5, 0),
432(101, '89.137.241.99 02:17:53 19/12/2019', 0, 0, 'Somer', 20, 5, 0),
433(102, '109.102.244.36 23:53:58 12/12/2019', 0, 0, 'Sofer Autobuz', 20, 5, 0),
434(103, '109.101.212.106 11:23:16 12/12/2019', 0, 0, 'Somer', 20, 5, 0),
435(104, '79.115.1.88 12:24:19 17/12/2019', 0, 0, 'Sofer Autobuz', 20, 5, 0),
436(105, '79.114.71.165 11:11:41 19/12/2019', 0, 0, 'Somer', 20, 5, 0),
437(106, '86.120.201.66 11:25:22 19/12/2019', 0, 0, 'Sofer Autobuz', 20, 5, 0),
438(107, '89.136.119.2 12:43:11 14/12/2019', 0, 0, 'Somer', 20, 5, 0),
439(108, '92.114.38.86 08:57:44 14/12/2019', 0, 0, 'Somer', 20, 5, 0),
440(109, '92.80.149.171 08:54:03 14/12/2019', 0, 0, 'Somer', 20, 5, 0),
441(110, '5.14.90.197 12:40:52 14/12/2019', 0, 0, 'Somer', 20, 5, 0),
442(111, '86.127.76.240 12:11:57 14/12/2019', 0, 0, 'Somer', 20, 5, 0),
443(112, '109.102.159.245 13:54:14 14/12/2019', 0, 0, 'Somer', 20, 5, 0),
444(113, '51.91.21.58 23:41:22 14/12/2019', 0, 0, 'Somer', 20, 5, 0),
445(114, '51.91.139.192 02:09:10 15/12/2019', 0, 0, 'Somer', 20, 5, 0),
446(115, '51.91.139.192 01:07:08 15/12/2019', 0, 0, 'Somer', 20, 5, 0),
447(116, '82.58.4.243 12:33:32 15/12/2019', 0, 0, 'Somer', 20, 5, 0),
448(117, '2.45.71.239 12:32:46 15/12/2019', 0, 0, 'Somer', 20, 5, 0),
449(118, '5.89.179.113 12:32:50 15/12/2019', 0, 0, 'Somer', 20, 5, 0),
450(119, '93.146.46.242 12:33:37 15/12/2019', 0, 0, 'Somer', 20, 5, 0),
451(120, '87.79.166.34 12:41:36 15/12/2019', 0, 0, 'Somer', 20, 5, 0),
452(121, '5.15.67.216 15:21:28 16/12/2019', 0, 0, 'Somer', 20, 5, 0),
453(122, '0.0.0.0 23:04:36 15/12/2019', 0, 0, 'Somer', 20, 5, 0),
454(123, '2.91.228.68 23:54:39 15/12/2019', 0, 0, 'Somer', 20, 5, 0),
455(124, '0.0.0.0 10:03:31 16/12/2019', 0, 0, 'Somer', 20, 5, 0),
456(125, '79.113.34.61 18:04:07 16/12/2019', 0, 0, 'Somer', 20, 5, 0),
457(126, '51.91.21.58 09:42:07 16/12/2019', 0, 0, 'Somer', 20, 5, 0),
458(127, '51.91.22.57 06:43:13 17/12/2019', 0, 0, 'Somer', 20, 5, 0),
459(128, '188.24.25.33 11:54:45 17/12/2019', 0, 0, 'Sofer Autobuz', 20, 5, 0),
460(129, '188.25.229.164 05:07:21 18/12/2019', 0, 0, 'Somer', 20, 5, 0),
461(130, '51.91.21.58 11:40:17 18/12/2019', 0, 0, 'Somer', 20, 5, 0),
462(131, '86.126.160.15 11:46:20 19/12/2019', 0, 0, 'Somer', 20, 5, 0);
463
464-- --------------------------------------------------------
465
466--
467-- Table structure for table `vrp_user_business`
468--
469
470CREATE TABLE IF NOT EXISTS `vrp_user_business` (
471 `user_id` int(11) NOT NULL,
472 `name` varchar(30) DEFAULT NULL,
473 `description` text DEFAULT NULL,
474 `capital` int(11) DEFAULT NULL,
475 `laundered` int(11) DEFAULT NULL,
476 `reset_timestamp` int(11) DEFAULT NULL
477) ENGINE=InnoDB DEFAULT CHARSET=latin1;
478
479--
480-- Dumping data for table `vrp_user_business`
481--
482
483INSERT INTO `vrp_user_business` (`user_id`, `name`, `description`, `capital`, `laundered`, `reset_timestamp`) VALUES
484(1, 'CASA DE PAPEL', '', 1480000, 0, 1576609477),
485(3, 'Ciugudean-army', '', 5000000, 0, 1576589590),
486(5, 'Altex SRL', '', 100050000, 0, 1576589439);
487
488-- --------------------------------------------------------
489
490--
491-- Table structure for table `vrp_user_data`
492--
493
494CREATE TABLE IF NOT EXISTS `vrp_user_data` (
495 `user_id` int(11) NOT NULL,
496 `dkey` varchar(100) NOT NULL,
497 `dvalue` text DEFAULT NULL
498) ENGINE=InnoDB DEFAULT CHARSET=latin1;
499
500--
501-- Dumping data for table `vrp_user_data`
502--
503
504INSERT INTO `vrp_user_data` (`user_id`, `dkey`, `dvalue`) VALUES
505(1, 'vRP:datatable', '{"position":{"z":8.349946975708,"x":-887.36083984375,"y":-2187.1606445313},"hunger":67.774451746576,"weapons":{"WEAPON_FLASHLIGHT":{"ammo":0},"WEAPON_PETROLCAN":{"ammo":3834},"WEAPON_KNIFE":{"ammo":0},"WEAPON_SNIPERRIFLE":{"ammo":241},"WEAPON_COMBATPISTOL":{"ammo":242},"WEAPON_ASSAULTRIFLE":{"ammo":197}},"groups":{"Vacar":true,"cop":true,"viponyx":true,"developer":true,"fondator":true,"user":true},"customization":{"1":[0,0,2],"2":[21,0,1],"3":[17,0,2],"4":[77,8,2],"5":[45,0,0],"6":[55,8,2],"7":[0,0,2],"8":[15,0,2],"9":[0,1,2],"10":[0,0,2],"11":[178,8,2],"12":[0,2,0],"13":[5376,2,0],"14":[0,1,255],"15":[0,2,100],"16":[524296,2,255],"17":[134217984,0,255],"18":[33620482,2,255],"19":[33685506,2,255],"20":[33686018,2,255],"0":[0,0,2],"p0":[-1,0],"p3":[-1,0],"p2":[-1,0],"p4":[-1,0],"p5":[-1,0],"p6":[-1,0],"p7":[-1,0],"p9":[-1,0],"p8":[-1,0],"p1":[-1,0],"modelhash":1885233650,"p10":[-1,0]},"thirst":72.048903493152,"gaptitudes":{"level":{"lvl":0},"hacker":{"hacking":0,"logic":0,"lua":0,"c++":0},"physical":{"strength":37.1},"science":{"minerit":0,"chemicals":0,"mathematics":0},"laboratory":{"cocaine":0,"weed":0,"lsd":0}},"inventory":{"Bani Murdari":{"amount":50000},"coffee":{"amount":1},"Medic Kit":{"amount":5},"RedBull":{"amount":5},"heavyrevolver ammo":{"amount":250},"car_doc|hvrod":{"amount":1},"Trusa de Ajutor":{"amount":5},"Lingou Diamant":{"amount":3},"lemonade":{"amount":11},"Punga de Hartie":{"amount":10},"Parachute body":{"amount":1},"Med Kit":{"amount":50},"Kebab":{"amount":10},"Bandaje":{"amount":10},"Bandaj":{"amount":10},"Heavyrevolver body":{"amount":1},"Redbull":{"amount":5},"MedKit":{"amount":5},"Combatpistol ammo":{"amount":275},"Heavyrevolver ammo":{"amount":250},"parachute":{"amount":5},"lapte":{"amount":15},"kebab":{"amount":9}},"health":159}'),
506(1, 'vRP:head:overlay', '{"2":[29,1,0],"1":[10,1,56],"0":[255,0,0],"10":[11,1,0],"-1":[44,0,0],"12":[21,0,29],"11":[255,0,0],"9":[255,0,0],"8":[7,2,0],"7":[255,0,0],"6":[255,0,0],"5":[255,2,0],"4":[255,0,0],"3":[255,0,0]}'),
507(1, 'vRP:home:wardrobe', '{"Sal cf":{"11":[30,0,2],"13":[0,2,0],"18":[33620482,2,255],"14":[0,1,255],"p3":[-1,0],"16":[0,2,255],"p6":[-1,0],"6":[10,0,2],"7":[0,0,2],"4":[24,0,2],"5":[0,0,2],"8":[31,2,2],"9":[0,1,2],"20":[33686018,2,255],"10":[0,0,2],"19":[33686018,2,255],"12":[0,2,0],"p5":[-1,0],"15":[0,2,100],"0":[0,0,2],"17":[258,2,255],"p1":[-1,0],"p7":[-1,0],"p4":[-1,0],"p2":[-1,0],"modelhash":1885233650,"p9":[-1,0],"p8":[-1,0],"p10":[-1,0],"2":[18,0,1],"3":[17,0,2],"1":[0,0,2],"p0":[-1,0]},"Femeie 1":{"1":[0,0,2],"2":[7,0,1],"3":[27,0,2],"4":[27,0,2],"5":[0,0,0],"6":[1,1,2],"7":[0,0,2],"8":[3,0,2],"9":[0,1,2],"10":[0,0,2],"11":[262,0,2],"12":[0,2,0],"13":[0,2,0],"14":[0,1,255],"15":[0,2,102],"16":[65536,2,255],"17":[256,0,255],"18":[33620482,2,255],"19":[33685506,2,255],"20":[33686018,2,255],"0":[0,0,2],"p6":[-1,0],"p8":[-1,0],"p4":[-1,0],"p7":[-1,0],"p10":[-1,0],"p9":[-1,0],"modelhash":-1667301416,"p5":[-1,0],"p2":[-1,0],"p3":[-1,0],"p0":[-1,0],"p1":[-1,0]}}'),
508(2, 'vRP:datatable', '{"inventory":{"car_doc|g65amg":{"amount":1},"car_doc|wraith":{"amount":1},"car_doc|w222wald":{"amount":1},"car_doc|skyline":{"amount":1},"car_doc|a8fsi":{"amount":1}},"health":171,"customization":{"1":[0,0,2],"2":[21,4,2],"3":[26,0,2],"4":[25,0,2],"5":[0,0,0],"6":[26,1,2],"7":[0,0,2],"8":[130,0,2],"9":[0,1,2],"10":[0,0,2],"11":[42,0,2],"12":[0,2,0],"13":[0,2,0],"14":[0,2,255],"15":[262144,2,100],"16":[65536,2,2],"17":[256,0,0],"18":[33686018,2,0],"19":[33685506,2,0],"20":[33686018,2,2],"0":[0,0,2],"p0":[-1,0],"p3":[-1,0],"p2":[2,0],"p4":[-1,0],"p5":[-1,0],"p6":[-1,0],"p7":[-1,0],"p9":[-1,0],"p8":[-1,0],"p1":[5,5],"modelhash":1885233650,"p10":[-1,0]},"groups":{"DIICOT":true,"cop":true,"user":true,"fondator":true},"weapons":{"WEAPON_STUNGUN":{"ammo":0},"WEAPON_COMBATPISTOL":{"ammo":236},"WEAPON_SNIPERRIFLE":{"ammo":60},"WEAPON_PUMPSHOTGUN":{"ammo":250},"WEAPON_CARBINERIFLE":{"ammo":244}},"gaptitudes":{"level":{"lvl":0},"hacker":{"hacking":0,"logic":0,"lua":0,"c++":0},"physical":{"strength":30},"science":{"minerit":0,"chemicals":0,"mathematics":0},"laboratory":{"cocaine":0,"weed":0,"lsd":0}},"thirst":64.010576922655,"phone_directory":{"Dom la costum SRI":"0791601633"},"position":{"z":28.586055755615,"x":182.3330078125,"y":-1346.4348144531},"hunger":3.5052884613276}'),
509(2, 'vRP:head:overlay', '{"2":[255,1,0],"1":[10,1,19],"0":[255,0,0],"7":[255,0,0],"6":[255,0,0],"3":[0,0,0],"4":[255,0,0],"9":[255,0,0],"8":[255,2,0],"-1":[0,0,1],"10":[255,1,0],"5":[255,2,0],"12":[255,0,6],"11":[255,0,0]}'),
510(2, 'vRP:jail:time', '-1'),
511(3, 'vRP:datatable', '{"inventory":{"shaorma":{"amount":9},"wammo|WEAPON_COMBATPISTOL":{"amount":60},"wbody|WEAPON_COMBATPISTOL":{"amount":1},"wbody|WEAPON_KNIFE":{"amount":1},"wbody|WEAPON_PETROLCAN":{"amount":1},"wbody|WEAPON_SNIPERRIFLE":{"amount":2},"wammo|WEAPON_ASSAULTRIFLE":{"amount":594},"wammo|WEAPON_SNIPERRIFLE":{"amount":80},"wbody|WEAPON_FLASHLIGHT":{"amount":2},"wbody|WEAPON_ASSAULTRIFLE":{"amount":2},"redbull":{"amount":9}},"hunger":40.082469744563,"weapons":{"WEAPON_FLASHLIGHT":{"ammo":0},"WEAPON_PETROLCAN":{"ammo":1000},"WEAPON_COMBATPISTOL":{"ammo":50},"WEAPON_SNIPERRIFLE":{"ammo":49},"WEAPON_KNIFE":{"ammo":0},"WEAPON_ASSAULTRIFLE":{"ammo":208}},"groups":{"Lider Cartel Di Medellin":true,"user":true,"fondator":true},"customization":{"1":[0,0,2],"2":[0,0,2],"3":[29,0,2],"4":[31,0,2],"5":[45,0,0],"6":[25,0,2],"7":[0,0,2],"8":[29,0,2],"9":[0,1,2],"10":[11,0,2],"11":[157,0,2],"12":[0,2,0],"13":[5376,2,0],"14":[0,2,255],"15":[0,2,102],"16":[0,2,6],"17":[256,0,0],"18":[33686018,2,0],"19":[33685506,2,0],"20":[33686018,2,4],"p1":[-1,0],"p0":[88,0],"p3":[-1,0],"p2":[2,0],"p4":[-1,0],"p5":[-1,0],"p6":[4,0],"p7":[-1,0],"p9":[-1,0],"p8":[-1,0],"0":[1,0,2],"modelhash":1885233650,"p10":[-1,0]},"phone_directory":[],"thirst":30.99255273728,"gaptitudes":{"level":{"lvl":0},"hacker":{"hacking":0,"logic":0,"lua":0,"c++":0},"physical":{"strength":30},"science":{"minerit":0,"chemicals":0,"mathematics":0},"laboratory":{"cocaine":0,"weed":0,"lsd":0}},"position":{"z":29.317972183228,"x":154.1770324707,"y":-1038.1883544922},"health":150}'),
512(3, 'vRP:police_records', '[Amenda] 2500 $ pentru viteza<br />[Amenda] 11500 $ pentru geamuri fumurii,viteza neaone si burnut<br />[Amenda] 3000 $ pentru viteza<br />'),
513(4, 'vRP:datatable', '{"position":{"z":32.040573120117,"x":419.52661132813,"y":-977.00396728516},"health":200,"customization":{"1":[0,0,0],"2":[0,0,0],"3":[0,0,2],"4":[0,0,2],"5":[0,0,0],"6":[0,0,0],"7":[0,0,0],"8":[0,0,0],"9":[0,0,2],"10":[0,0,0],"11":[0,0,0],"12":[0,2,0],"13":[0,0,0],"14":[0,0,255],"15":[0,2,240],"16":[0,2,255],"17":[0,0,255],"18":[33554434,0,255],"19":[2,0,255],"20":[512,0,255],"p1":[-1,0],"p0":[-1,0],"p3":[-1,0],"p2":[-1,0],"p4":[-1,0],"p5":[-1,0],"p6":[-1,0],"p7":[-1,0],"p9":[-1,0],"p8":[-1,0],"0":[1,0,2],"modelhash":1456041926,"p10":[-1,0]},"cloakroom_idle":{"10":[0,0,2],"p0":[-1,0],"12":[0,2,0],"20":[33686018,2,1],"p4":[-1,0],"16":[196612,2,6],"p6":[1,0],"14":[0,1,255],"18":[33619970,2,0],"p8":[-1,0],"modelhash":1885233650,"2":[3,0,1],"3":[1,0,2],"p3":[-1,0],"1":[0,0,0],"17":[256,0,0],"7":[0,0,0],"4":[60,4,2],"5":[0,0,0],"p9":[-1,0],"19":[131074,0,0],"p10":[-1,0],"15":[0,2,100],"p1":[-1,0],"11":[20,0,2],"0":[4,0,2],"13":[0,0,0],"6":[20,3,2],"8":[11,0,2],"9":[0,1,2],"p7":[-1,0],"p2":[0,0],"p5":[-1,0]},"groups":{"cop":true,"SuperAdmin":true,"user":true,"Agent":true},"hunger":46.295966855618,"thirst":66.091933711236,"gaptitudes":{"level":{"lvl":0},"physical":{"strength":30},"hacker":{"hacking":0,"c++":0,"lua":0,"logic":0},"science":{"minerit":0,"chemicals":0,"mathematics":0},"laboratory":{"cocaine":0,"weed":0,"lsd":0}},"inventory":{"argint":{"amount":5},"car_doc|rmodm3e36":{"amount":1},"car_doc|logan":{"amount":1},"car_doc|2016rs7":{"amount":1},"car_doc|e60":{"amount":1},"gogoasa":{"amount":6},"lemonade":{"amount":3},"car_doc|w222wald":{"amount":1},"car_doc|daf":{"amount":1},"car_doc|m3f80":{"amount":1},"car_doc|daduster":{"amount":1}},"weapons":{"WEAPON_STUNGUN":{"ammo":0},"WEAPON_COMBATPISTOL":{"ammo":231},"WEAPON_CARBINERIFLE":{"ammo":67},"WEAPON_PUMPSHOTGUN":{"ammo":243}}}'),
514(4, 'vRP:head:overlay', '{"6":[1,0,0],"5":[255,2,0],"8":[255,2,0],"7":[255,0,0],"2":[0,1,0],"1":[10,1,17],"4":[255,0,0],"3":[255,0,0],"11":[0,0,0],"12":[3,0,2],"0":[255,0,0],"-1":[0,0,0],"9":[255,0,0],"10":[2,1,1]}'),
515(4, 'vRP:jail:time', '-1'),
516(5, 'vRP:datatable', '{"inventory":{"wammo|WEAPON_COMBATPISTOL":{"amount":171},"car_doc|urus2018":{"amount":1},"wammo|WEAPON_ASSAULTRIFLE":{"amount":250},"AK47":{"amount":82},"wbody|WEAPON_PETROLCAN":{"amount":1},"wammo|WEAPON_PETROLCAN":{"amount":1000},"M4A1":{"amount":60},"car_doc|rmodbmwi8":{"amount":1},"wbody|WEAPON_COMBATPISTOL":{"amount":2},"kebab":{"amount":2},"wbody|WEAPON_FLASHLIGHT":{"amount":1},"wbody|WEAPON_ASSAULTRIFLE":{"amount":1},"redbull":{"amount":1}},"health":192,"weapons":{"WEAPON_STUNGUN":{"ammo":0},"WEAPON_NIGHTSTICK":{"ammo":0},"WEAPON_PUMPSHOTGUN":{"ammo":76},"WEAPON_KNIFE":{"ammo":0},"WEAPON_SNIPERRIFLE":{"ammo":184},"WEAPON_COMBATPISTOL":{"ammo":148},"WEAPON_CARBINERIFLE":{"ammo":0}},"cloakroom_idle":{"10":[59,0,2],"p0":[-1,0],"12":[0,2,0],"20":[33686018,2,1],"p4":[-1,0],"16":[0,2,6],"p6":[1,0],"14":[0,2,255],"18":[33686018,2,0],"p8":[-1,0],"modelhash":1885233650,"p1":[-1,0],"3":[1,0,2],"0":[0,0,2],"13":[0,2,0],"17":[256,0,0],"7":[0,0,2],"4":[34,0,2],"5":[0,0,0],"p9":[-1,0],"9":[0,1,2],"p10":[-1,0],"p2":[10,0],"2":[19,0,2],"11":[112,0,2],"p3":[-1,0],"1":[0,0,2],"6":[25,0,2],"19":[33685506,2,0],"8":[46,0,2],"p7":[-1,0],"15":[0,2,110],"p5":[-1,0]},"groups":{"Administrator":true,"cop":true,"Chestor General":true,"user":true},"customization":{"1":[0,0,0],"2":[0,0,0],"3":[1,0,2],"4":[0,0,0],"5":[0,0,0],"6":[0,0,0],"7":[0,0,0],"8":[0,0,0],"9":[0,1,2],"10":[0,0,0],"11":[0,0,0],"12":[0,2,0],"13":[0,0,0],"14":[0,0,255],"15":[0,2,118],"16":[0,0,255],"17":[256,0,255],"18":[33554434,0,255],"19":[0,0,255],"20":[512,0,255],"0":[0,0,2],"p0":[-1,0],"p3":[-1,0],"p2":[-1,0],"p4":[-1,0],"p5":[-1,0],"p6":[-1,0],"p7":[-1,0],"p9":[-1,0],"p8":[-1,0],"p1":[-1,0],"modelhash":1581098148,"p10":[-1,0]},"thirst":4.2421565294019,"gaptitudes":{"level":{"lvl":0},"hacker":{"hacking":0,"logic":0,"lua":0,"c++":0},"physical":{"strength":30},"science":{"minerit":0,"chemicals":0,"mathematics":0},"laboratory":{"cocaine":0,"weed":0,"lsd":0}},"position":{"z":28.971403121948,"x":-29.372627258301,"y":-947.29748535156},"hunger":6.6685159233723}'),
517(5, 'vRP:jail:time', '-1'),
518(6, 'vRP:datatable', '{"groups":{"SuperAdmin":true,"Moderator":true,"Membru Cartel Di Medellin":true,"Weapons Smuggler":true,"user":true},"thirst":22.158122716661,"customization":{"1":[0,0,2],"2":[2,0,1],"3":[30,0,2],"4":[35,0,2],"5":[45,0,0],"6":[25,0,2],"7":[0,0,2],"8":[138,0,2],"9":[0,1,2],"10":[11,0,2],"11":[157,0,2],"12":[0,2,0],"13":[5376,2,0],"14":[0,1,255],"15":[0,2,102],"16":[0,2,255],"17":[256,0,255],"18":[33620482,2,255],"19":[33685506,2,255],"20":[33686018,2,255],"0":[0,0,2],"p0":[-1,0],"p1":[-1,0],"modelhash":1885233650,"p10":[-1,0],"p3":[-1,0],"p2":[2,0],"p5":[-1,0],"p4":[-1,0],"p6":[7,0],"p7":[-1,0],"p8":[-1,0],"p9":[-1,0]},"gaptitudes":{"science":{"chemicals":0,"mathematics":0,"minerit":0},"hacker":{"logic":0,"hacking":0,"c++":0,"lua":0},"physical":{"strength":30},"level":{"lvl":0},"laboratory":{"weed":0,"cocaine":0,"lsd":0}},"phone_directory":[],"hunger":26.481801416446,"inventory":{"redbull":{"amount":10},"shaorma":{"amount":10},"wammo|WEAPON_ASSAULTRIFLE":{"amount":356},"AK47":{"amount":27},"wbody|WEAPON_ASSAULTRIFLE":{"amount":5},"M4A1":{"amount":12}},"health":174,"position":{"x":21.845458984375,"y":-839.39697265625,"z":38.878406524658},"weapons":{"WEAPON_COMBATPISTOL":{"ammo":68},"WEAPON_KNIFE":{"ammo":0},"WEAPON_ASSAULTRIFLE":{"ammo":100},"WEAPON_SNIPERRIFLE":{"ammo":20}}}'),
519(6, 'vRP:head:overlay', '{"0":[255,0,0],"1":[10,1,0],"10":[255,1,0],"11":[255,0,0],"4":[255,0,0],"5":[255,2,0],"2":[30,1,1],"3":[1,0,0],"8":[255,2,0],"9":[255,0,0],"6":[255,0,0],"7":[7,0,0],"12":[2,0,8],"-1":[0,0,0]}'),
520(6, 'vRP:police_records', '[Amenda] 3000 $ pentru Viteza<br />'),
521(7, 'vRP:datatable', '{"thirst":100,"inventory":{"shaorma":{"amount":8}},"cloakroom_idle":{"modelhash":1885233650,"14":[0,2,255],"12":[0,2,0],"p2":[-1,0],"p0":[-1,0],"p4":[-1,0],"p10":[-1,0],"16":[0,2,255],"9":[0,1,2],"18":[33686018,2,255],"p8":[-1,0],"6":[0,0,2],"5":[0,0,2],"8":[0,0,2],"7":[0,0,2],"2":[0,0,2],"1":[0,0,2],"4":[0,0,2],"3":[0,0,2],"0":[0,0,2],"13":[0,2,0],"11":[0,0,2],"p1":[-1,0],"p3":[-1,0],"p5":[-1,0],"15":[0,2,100],"p7":[-1,0],"17":[256,2,255],"19":[33686018,2,255],"p9":[-1,0],"10":[0,0,2],"p6":[-1,0],"20":[33686018,2,255]},"customization":{"1":[0,0,0],"2":[0,0,0],"3":[0,0,2],"4":[0,0,2],"5":[0,0,0],"6":[0,0,0],"7":[0,0,0],"8":[0,0,0],"9":[0,0,2],"10":[0,0,0],"11":[0,0,0],"12":[0,2,0],"13":[0,0,0],"14":[0,0,255],"15":[0,2,112],"16":[0,2,255],"17":[0,0,255],"18":[33554434,0,255],"19":[2,0,255],"20":[512,0,255],"0":[2,0,2],"p0":[-1,0],"p4":[-1,0],"p10":[-1,0],"p5":[-1,0],"p6":[-1,0],"p7":[-1,0],"p8":[-1,0],"p9":[-1,0],"p3":[-1,0],"p2":[-1,0],"p1":[-1,0],"modelhash":1456041926},"weapons":{"WEAPON_NIGHTSTICK":{"ammo":0},"WEAPON_CARBINERIFLE":{"ammo":91},"WEAPON_COMBATPISTOL":{"ammo":17},"WEAPON_SNIPERRIFLE":{"ammo":248},"WEAPON_PUMPSHOTGUN":{"ammo":245},"WEAPON_FLASHLIGHT":{"ammo":0},"WEAPON_STUNGUN":{"ammo":0}},"gaptitudes":{"level":{"lvl":0},"science":{"mathematics":0,"minerit":0,"chemicals":0},"laboratory":{"weed":0,"cocaine":0,"lsd":0},"hacker":{"logic":0,"lua":0,"c++":0,"hacking":0},"physical":{"strength":30}},"health":154,"position":{"z":11.302092552185,"y":-885.24554443359,"x":-1260.6614990234},"groups":{"Cadet":true,"Agent Principal":true,"Moderator":true,"Capitan Jandarmerie":true,"user":true},"hunger":74.734617176007}'),
522(8, 'vRP:datatable', '{"health":200,"inventory":{"moet":{"amount":1},"kebab":{"amount":21},"milk":{"amount":1},"lemonade":{"amount":15}},"hunger":16.466141674331,"phone_directory":[],"customization":{"1":[0,0,2],"2":[2,4,2],"3":[20,0,2],"4":[24,0,2],"5":[45,0,0],"6":[15,0,2],"7":[0,0,2],"8":[4,0,2],"9":[0,1,2],"10":[0,0,2],"11":[72,2,2],"12":[0,2,0],"13":[5376,2,0],"14":[0,2,255],"15":[262144,2,100],"16":[0,2,255],"17":[33554688,0,255],"18":[33686018,2,255],"19":[33685506,2,255],"20":[33686018,2,255],"0":[44,0,2],"p9":[-1,0],"modelhash":1885233650,"p8":[-1,0],"p5":[-1,0],"p6":[-1,0],"p2":[0,0],"p1":[-1,0],"p4":[-1,0],"p3":[-1,0],"p10":[-1,0],"p7":[-1,0],"p0":[-1,0]},"gaptitudes":{"laboratory":{"weed":0,"cocaine":0,"lsd":0},"hacker":{"c++":0,"lua":0,"hacking":0,"logic":0},"level":{"lvl":0},"science":{"mathematics":0,"minerit":0,"chemicals":0},"physical":{"strength":30}},"groups":{"Helper":true,"DIICOT":true,"user":true},"weapons":{"WEAPON_STUNGUN":{"ammo":0},"WEAPON_COMBATPISTOL":{"ammo":242},"WEAPON_NIGHTSTICK":{"ammo":0},"WEAPON_PUMPSHOTGUN":{"ammo":247},"WEAPON_CARBINERIFLE":{"ammo":245},"WEAPON_FLASHLIGHT":{"ammo":0}},"thirst":51.200290042,"position":{"y":-254.25241088867,"z":37.429218292236,"x":-507.17272949219}}'),
523(8, 'vRP:head:overlay', '{"9":[255,0,0],"8":[255,2,0],"-1":[44,0,0],"1":[10,1,0],"2":[255,1,0],"10":[255,1,0],"11":[255,0,0],"0":[255,0,0],"3":[255,0,0],"12":[255,0,0],"5":[255,2,0],"4":[255,0,0],"7":[255,0,0],"6":[255,0,0]}'),
524(9, 'vRP:datatable', '{"inventory":{"wammo|WEAPON_COMBATPISTOL":{"amount":881},"wbody|WEAPON_COMBATPISTOL":{"amount":2},"wbody|WEAPON_KNIFE":{"amount":7},"wbody|WEAPON_PETROLCAN":{"amount":6},"wbody|WEAPON_SNIPERRIFLE":{"amount":4},"wammo|WEAPON_PETROLCAN":{"amount":16757},"wammo|WEAPON_ASSAULTRIFLE":{"amount":249},"wbody|WEAPON_FLASHLIGHT":{"amount":5},"wbody|WEAPON_ASSAULTRIFLE":{"amount":1},"wammo|WEAPON_SNIPERRIFLE":{"amount":1526}},"hunger":9.168385074303,"weapons":[],"groups":{"Administrator":true,"moderator":true,"Moderator":true,"Membru Cartel Di Medellin":true,"user":true},"health":190,"position":{"z":26.227432250977,"x":-79.472663879395,"y":-1079.8365478516},"thirst":10.836770148606,"gaptitudes":{"level":{"lvl":0},"hacker":{"hacking":0,"c++":0,"lua":0,"logic":0},"physical":{"strength":30},"science":{"minerit":0,"chemicals":0,"mathematics":0},"laboratory":{"cocaine":0,"weed":0,"lsd":0}},"phone_directory":[],"customization":{"1":[0,0,2],"2":[21,0,1],"3":[17,0,2],"4":[26,5,2],"5":[45,0,0],"6":[3,6,2],"7":[0,0,2],"8":[10,0,2],"9":[0,1,2],"10":[0,0,2],"11":[19,0,2],"12":[0,2,0],"13":[2816,2,0],"14":[0,1,255],"15":[0,2,100],"16":[393221,2,255],"17":[256,0,255],"18":[33620482,2,255],"19":[33685506,2,255],"20":[33686018,2,255],"0":[0,0,2],"p0":[-1,0],"p3":[-1,0],"p2":[-1,0],"p4":[-1,0],"p5":[-1,0],"p6":[-1,0],"p7":[-1,0],"p9":[-1,0],"p8":[-1,0],"p1":[-1,0],"modelhash":1885233650,"p10":[-1,0]}}'),
525(9, 'vRP:head:overlay', '{"2":[255,1,0],"1":[8,1,0],"0":[255,0,0],"3":[13,0,0],"4":[255,0,0],"7":[255,0,0],"6":[255,0,0],"9":[255,0,0],"8":[255,2,0],"-1":[0,0,0],"10":[255,1,0],"5":[255,2,0],"12":[21,0,29],"11":[255,0,0]}'),
526(9, 'vRP:jail:time', '-1'),
527(9, 'vRP:police_records', '[Amenda] 7500 $ pentru viteza excesiva<br />[Amenda] 100 $ pentru 10<br />[Amenda] 5000 $ pentru Geamuri fumurii<br />[Amenda] 25000 $ pentru 25000<br />[Amenda] 3000 $ pentru Viteza<br />[Amenda] 15000 $ pentru Fuga de Politie<br />[Amenda] 15000 $ pentru Tentativa de omor<br />[Amenda] 26000 $ pentru Posesia armeloe de calibru mare, Posesia armelor de foc, posesia armelor albe<br />[Amenda] 1000 $ pentru injurii<br />'),
528(10, 'vRP:datatable', '{"inventory":{"wbody|WEAPON_PISTOL":{"amount":1},"wammo|WEAPON_CARBINERIFLE":{"amount":384},"wbody|WEAPON_COMBATPISTOL":{"amount":6},"kebab":{"amount":11},"wbody|WEAPON_CARBINERIFLE":{"amount":2},"wbody|WEAPON_PUMPSHOTGUN":{"amount":1},"wbody|WEAPON_KNIFE":{"amount":1},"redbull":{"amount":8},"wammo|WEAPON_ASSAULTRIFLE":{"amount":457},"wbody|WEAPON_STUNGUN":{"amount":1},"wammo|WEAPON_SNIPERRIFLE":{"amount":548},"wammo|WEAPON_COMBATPISTOL":{"amount":1033},"wbody|WEAPON_FLASHLIGHT":{"amount":1},"wbody|WEAPON_BAT":{"amount":2},"dirty_money":{"amount":15650},"wammo|WEAPON_PUMPSHOTGUN":{"amount":241},"wammo|WEAPON_PISTOL":{"amount":183},"wbody|WEAPON_ASSAULTRIFLE":{"amount":4},"wbody|WEAPON_SNIPERRIFLE":{"amount":3},"wbody|WEAPON_NIGHTSTICK":{"amount":2},"gogoasa":{"amount":1}},"thirst":25.8218339527,"position":{"x":-164.56462097168,"y":-523.64056396484,"z":28.076545715332},"groups":{"user":true,"Mecanic":true},"cloakroom_idle":{"p10":[-1,0],"9":[0,1,2],"7":[0,0,2],"8":[0,0,2],"5":[0,0,2],"6":[0,0,2],"3":[0,0,2],"4":[0,0,2],"1":[0,0,2],"2":[0,0,2],"17":[256,2,255],"0":[0,0,2],"15":[0,2,100],"p5":[-1,0],"p3":[-1,0],"p1":[-1,0],"modelhash":1885233650,"p9":[-1,0],"19":[33686018,2,255],"20":[33686018,2,255],"p0":[-1,0],"10":[0,0,2],"p8":[-1,0],"18":[33686018,2,255],"p6":[-1,0],"16":[0,2,255],"p4":[-1,0],"p2":[-1,0],"11":[0,0,2],"12":[0,2,0],"p7":[-1,0],"14":[0,2,255],"13":[0,2,0]},"health":151,"gaptitudes":{"laboratory":{"lsd":0,"cocaine":0,"weed":0},"level":{"lvl":0},"hacker":{"lua":0,"hacking":0,"c++":0,"logic":0},"physical":{"strength":30},"science":{"chemicals":0,"mathematics":0,"minerit":0}},"customization":{"1":[0,0,0],"2":[0,0,0],"3":[0,0,2],"4":[0,0,2],"5":[0,0,0],"6":[0,0,0],"7":[0,0,0],"8":[0,0,2],"9":[0,1,2],"10":[0,0,2],"11":[0,0,0],"12":[0,2,0],"13":[0,0,0],"14":[0,0,255],"15":[0,2,246],"16":[0,2,255],"17":[256,0,255],"18":[33554434,0,255],"19":[2,0,255],"20":[131586,2,255],"p8":[-1,0],"p7":[-1,0],"p6":[-1,0],"p5":[-1,0],"p3":[-1,0],"p4":[-1,0],"p1":[-1,0],"p2":[-1,0],"modelhash":1581098148,"p9":[-1,0],"p10":[-1,0],"p0":[-1,0],"0":[0,0,2]},"weapons":{"WEAPON_STUNGUN":{"ammo":0},"WEAPON_COMBATPISTOL":{"ammo":245},"WEAPON_NIGHTSTICK":{"ammo":0},"WEAPON_CARBINERIFLE":{"ammo":142},"WEAPON_PUMPSHOTGUN":{"ammo":239}},"hunger":21.38986865276}'),
529(11, 'vRP:datatable', '{"gaptitudes":{"hacker":{"c++":0,"logic":0,"hacking":0,"lua":0},"laboratory":{"cocaine":0,"weed":0,"lsd":0},"level":{"lvl":0},"science":{"chemicals":0,"minerit":0,"mathematics":0},"physical":{"strength":30}},"health":120,"position":{"y":-1106.8326416016,"z":25.929168701172,"x":-87.895118713379},"weapons":[],"hunger":14.153672759636,"groups":{"Sef Medic":true,"user":true},"thirst":28.307345519272,"customization":{"1":[0,0,2],"2":[6,5,2],"3":[19,0,2],"4":[1,0,2],"5":[45,0,0],"6":[28,0,2],"7":[0,0,2],"8":[2,0,2],"9":[0,1,2],"10":[0,0,2],"11":[6,0,2],"12":[0,2,0],"13":[1792,2,0],"14":[0,2,255],"15":[327680,2,100],"16":[0,2,0],"17":[256,0,0],"18":[33686018,2,0],"19":[33685506,2,0],"20":[33686018,2,16],"0":[0,0,2],"p10":[-1,0],"p3":[-1,0],"p4":[-1,0],"p5":[-1,0],"p2":[-1,0],"p1":[-1,0],"p0":[16,5],"p6":[-1,0],"p8":[-1,0],"p7":[-1,0],"modelhash":1885233650,"p9":[-1,0]},"inventory":{"bandage":{"amount":14},"fanta":{"amount":2},"medkit":{"amount":17},"kebab":{"amount":1}}}'),
530(11, 'vRP:police_records', '[Amenda] 4000 $ pentru fara buletin+nerespectarea culorii semaforului<br />'),
531(12, 'vRP:datatable', '{"hunger":3.9786102673733,"position":{"y":-228.0061340332,"z":36.702156066895,"x":-524.59405517578},"customization":{"16":[0,2,255],"p8":[-1,0],"18":[33686018,2,255],"p6":[-1,0],"p2":[-1,0],"20":[33686018,2,255],"p4":[-1,0],"14":[0,2,255],"p0":[-1,0],"p10":[-1,0],"9":[0,1,2],"19":[33686018,2,255],"p9":[-1,0],"5":[0,0,2],"15":[0,2,100],"p5":[-1,0],"17":[256,2,255],"11":[0,0,2],"2":[0,0,2],"3":[0,0,2],"p3":[-1,0],"0":[0,0,2],"modelhash":1885233650,"p7":[-1,0],"6":[0,0,2],"7":[0,0,2],"8":[0,0,2],"10":[0,0,2],"12":[0,2,0],"13":[0,2,0],"4":[0,0,2],"p1":[-1,0],"1":[0,0,2]},"groups":{"user":true},"health":200,"weapons":[],"thirst":4.4572205347465,"inventory":[]}'),
532(13, 'vRP:datatable', '{"inventory":{"kebab":{"amount":5},"redbull":{"amount":4}},"hunger":17.737021890686,"weapons":[],"thirst":25.974043781372,"customization":{"1":[0,0,2],"2":[0,0,2],"3":[0,0,2],"4":[26,0,2],"5":[0,0,0],"6":[1,0,2],"7":[0,0,2],"8":[14,0,2],"9":[0,1,2],"10":[4,0,2],"11":[64,0,2],"12":[0,2,0],"13":[0,2,0],"14":[0,2,255],"15":[0,2,110],"16":[0,2,2],"17":[256,0,0],"18":[33686018,2,0],"19":[33685506,2,0],"20":[33686018,2,0],"0":[0,0,2],"p3":[-1,0],"p0":[-1,0],"p1":[-1,0],"p2":[0,0],"p10":[-1,0],"p9":[-1,0],"modelhash":1885233650,"p8":[-1,0],"p5":[-1,0],"p4":[-1,0],"p7":[-1,0],"p6":[-1,0]},"groups":{"user":true,"Vacar":true},"position":{"z":33.11279296875,"x":-307.85559082031,"y":-689.41943359375},"health":122,"gaptitudes":{"level":{"lvl":0},"science":{"mathematics":0,"chemicals":0,"minerit":0},"hacker":{"c++":0,"hacking":0,"logic":0,"lua":0},"laboratory":{"cocaine":0,"lsd":0,"weed":0},"physical":{"strength":30}}}'),
533(14, 'vRP:datatable', '{"inventory":{"kebab":{"amount":9},"redbull":{"amount":20}},"health":200,"customization":{"1":[0,0,2],"2":[21,4,2],"3":[2,0,2],"4":[33,0,2],"5":[0,0,0],"6":[25,0,2],"7":[0,0,2],"8":[27,0,2],"9":[0,1,2],"10":[11,0,2],"11":[157,0,2],"12":[0,2,0],"13":[0,2,0],"14":[0,2,255],"15":[262144,2,230],"16":[0,2,6],"17":[256,0,0],"18":[33686018,2,0],"19":[33685506,2,0],"20":[33686018,2,3],"p1":[-1,0],"p0":[-1,0],"p3":[-1,0],"p2":[36,0],"p4":[-1,0],"p5":[-1,0],"p6":[3,0],"p7":[-1,0],"p9":[-1,0],"p8":[-1,0],"0":[0,0,2],"modelhash":1885233650,"p10":[-1,0]},"cloakroom_idle":{"10":[0,0,2],"p0":[-1,0],"12":[0,2,0],"p2":[-1,0],"p4":[-1,0],"16":[65536,2,255],"p6":[-1,0],"14":[0,2,255],"18":[33686018,2,255],"p8":[-1,0],"modelhash":1885233650,"2":[0,0,2],"3":[0,0,2],"p3":[-1,0],"13":[0,2,0],"6":[10,1,2],"p5":[-1,0],"15":[0,2,228],"5":[0,0,0],"p9":[-1,0],"19":[33685506,2,255],"p10":[-1,0],"20":[33686018,2,255],"11":[4,0,2],"0":[0,0,2],"1":[0,0,2],"7":[0,0,2],"4":[0,0,2],"8":[4,0,2],"9":[0,1,2],"p7":[-1,0],"17":[256,0,255],"p1":[-1,0]},"groups":{"Membru Cartel Di Medellin":true,"Helper":true,"user":true},"hunger":55.923792710436,"weapons":{"WEAPON_FLASHLIGHT":{"ammo":0},"WEAPON_COMBATPISTOL":{"ammo":250},"WEAPON_ASSAULTRIFLE":{"ammo":250},"WEAPON_KNIFE":{"ammo":0},"WEAPON_SNIPERRIFLE":{"ammo":250}},"thirst":65.847585420873,"gaptitudes":{"level":{"lvl":0},"physical":{"strength":30},"hacker":{"hacking":0,"c++":0,"lua":0,"logic":0},"science":{"minerit":0,"chemicals":0,"mathematics":0},"laboratory":{"cocaine":0,"weed":0,"lsd":0}},"position":{"z":28.623805999756,"x":280.74920654297,"y":-956.75738525391},"phone_directory":[]}'),
534(14, 'vRP:head:overlay', '{"2":[255,1,0],"1":[255,1,0],"0":[255,0,0],"10":[2,1,0],"-1":[255,0,0],"12":[255,0,0],"11":[255,0,0],"9":[255,0,0],"8":[255,2,0],"7":[8,0,11],"6":[255,0,0],"5":[255,2,0],"4":[255,0,0],"3":[255,0,0]}'),
535(14, 'vRP:jail:time', '-1'),
536(14, 'vRP:police_records', '[Amenda] 10000 $ pentru arma de foc<br />'),
537(15, 'vRP:datatable', '{"gaptitudes":{"hacker":{"lua":0,"logic":0,"hacking":0,"c++":0},"laboratory":{"cocaine":0,"weed":0,"lsd":0},"level":{"lvl":0},"science":{"chemicals":0,"minerit":0,"mathematics":0},"physical":{"strength":30}},"health":190,"position":{"y":-1027.9190673828,"z":25.861200332642,"x":820.78240966797},"cloakroom_idle":{"p10":[-1,0],"p3":[-1,0],"15":[0,2,228],"p5":[-1,0],"13":[0,2,0],"17":[50331910,2,255],"p7":[-1,0],"19":[33686018,2,255],"p9":[-1,0],"9":[0,1,2],"7":[0,0,2],"8":[0,6,2],"5":[0,0,2],"6":[0,8,2],"3":[0,0,2],"4":[0,7,2],"11":[0,3,2],"p4":[-1,0],"14":[0,2,255],"p6":[-1,0],"p8":[-1,0],"18":[33686018,2,255],"12":[0,2,0],"10":[0,0,2],"modelhash":1885233650,"p0":[-1,0],"p2":[-1,0],"20":[33686018,2,255],"0":[0,0,2],"16":[524295,2,255],"p1":[-1,0],"2":[0,0,2],"1":[0,0,2]},"thirst":5.8313928042573,"hunger":2.9156964021287,"groups":{"Agent":true,"user":true,"cop":true},"phone_directory":[],"inventory":{"shaorma":{"amount":10},"redbull":{"amount":11}},"customization":{"1":[0,0,2],"2":[0,0,2],"3":[0,0,2],"4":[0,13,2],"5":[0,0,2],"6":[0,10,2],"7":[0,0,2],"8":[0,6,2],"9":[0,1,2],"10":[0,0,2],"11":[0,4,2],"12":[0,2,0],"13":[0,2,0],"14":[0,2,255],"15":[0,2,100],"16":[655373,2,255],"17":[67109126,2,255],"18":[33686018,2,255],"19":[33686018,2,255],"20":[33686018,2,255],"0":[0,0,2],"p10":[-1,0],"p2":[-1,0],"p8":[-1,0],"p5":[-1,0],"p3":[-1,0],"p4":[-1,0],"p0":[-1,0],"p6":[-1,0],"modelhash":1885233650,"p7":[-1,0],"p1":[-1,0],"p9":[-1,0]},"weapons":{"WEAPON_PETROLCAN":{"ammo":1}}}'),
538(16, 'vRP:datatable', '{"position":{"z":6.0069546699524,"x":-111.18800354004,"y":-2631.7351074219},"hunger":27.342633969037,"weapons":{"WEAPON_FLASHLIGHT":{"ammo":0},"WEAPON_STUNGUN":{"ammo":0},"WEAPON_COMBATPISTOL":{"ammo":187},"WEAPON_NIGHTSTICK":{"ammo":0},"WEAPON_CARBINERIFLE":{"ammo":0},"WEAPON_PUMPSHOTGUN":{"ammo":241}},"groups":{"user":true,"DIICOT":true},"customization":{"1":[0,0,2],"2":[1,0,2],"3":[1,0,2],"4":[64,0,2],"5":[0,0,0],"6":[4,0,2],"7":[0,0,2],"8":[15,0,2],"9":[0,1,2],"10":[2,0,2],"11":[141,0,2],"12":[0,2,0],"13":[0,2,0],"14":[0,2,255],"15":[0,2,110],"16":[0,2,2],"17":[256,0,0],"18":[33686018,2,0],"19":[33685506,2,0],"20":[33686018,2,0],"p1":[6,0],"p0":[-1,0],"p3":[-1,0],"p2":[0,0],"p4":[-1,0],"p5":[-1,0],"p6":[-1,0],"p7":[-1,0],"p9":[-1,0],"p8":[-1,0],"0":[0,0,2],"modelhash":1885233650,"p10":[-1,0]},"thirst":48.685267938074,"gaptitudes":{"level":{"lvl":0},"hacker":{"hacking":0,"c++":0,"lua":0,"logic":0},"physical":{"strength":30},"science":{"minerit":0,"chemicals":0,"mathematics":0},"laboratory":{"cocaine":0,"weed":0,"lsd":0}},"inventory":{"kebab":{"amount":1},"sandwich":{"amount":3}},"health":128}'),
539(16, 'vRP:head:overlay', '{"2":[255,1,0],"1":[255,1,0],"0":[255,0,0],"3":[255,0,0],"-1":[255,0,0],"10":[255,1,0],"4":[255,0,0],"9":[255,0,0],"8":[255,2,0],"7":[255,0,0],"6":[255,0,0],"5":[255,2,0],"12":[255,0,0],"11":[255,0,0]}'),
540(17, 'vRP:datatable', '{"health":158,"inventory":[],"hunger":31.653409946178,"phone_directory":[],"customization":{"1":[0,0,2],"2":[3,4,2],"3":[17,3,2],"4":[79,2,2],"5":[0,0,2],"6":[28,0,2],"7":[0,0,2],"8":[57,0,2],"9":[0,1,2],"10":[6,0,2],"11":[50,3,2],"12":[0,2,0],"13":[0,2,0],"14":[0,2,255],"15":[50593792,2,110],"16":[2,2,1],"17":[50331904,2,0],"18":[33686018,2,0],"19":[33686018,2,0],"20":[33686018,2,5],"0":[0,0,2],"p9":[-1,0],"p7":[-1,0],"p10":[-1,0],"p5":[-1,0],"p6":[-1,0],"p2":[-1,0],"p1":[5,2],"p4":[-1,0],"p3":[-1,0],"p8":[-1,0],"modelhash":1885233650,"p0":[-1,0]},"groups":{"user":true},"weapons":[],"thirst":37.806819892357,"position":{"y":-1033.0377197266,"z":28.194868087769,"x":844.18884277344}}'),
541(18, 'vRP:datatable', '{"inventory":[],"position":{"y":-536.63897705078,"z":35.328430175781,"x":-1587.4011230469},"customization":{"1":[0,0,2],"2":[14,4,2],"3":[0,0,2],"4":[4,0,2],"5":[0,0,2],"6":[28,1,2],"7":[0,0,2],"8":[15,0,2],"9":[0,1,2],"10":[0,0,2],"11":[187,0,2],"12":[0,2,0],"13":[0,2,0],"14":[0,2,255],"15":[262144,2,100],"16":[65536,2,0],"17":[256,2,0],"18":[33686018,2,0],"19":[33686018,2,0],"20":[33686018,2,2],"0":[0,0,2],"p9":[-1,0],"p7":[-1,0],"p8":[-1,0],"p5":[-1,0],"p6":[-1,0],"p2":[-1,0],"p1":[-1,0],"p4":[-1,0],"p3":[-1,0],"modelhash":1885233650,"p10":[-1,0],"p0":[2,0]},"groups":{"UBER":true,"user":true},"health":200,"weapons":[],"hunger":27.284898780076,"thirst":32.569797560151}'),
542(19, 'vRP:datatable', '{"groups":{"UBER":true,"user":true},"position":{"y":-436.98916625977,"z":35.124629974365,"x":-1441.6657714844},"customization":{"1":[0,0,2],"2":[0,0,2],"3":[0,0,2],"4":[0,0,2],"5":[45,0,0],"6":[0,0,2],"7":[0,0,2],"8":[0,0,2],"9":[0,1,2],"10":[0,0,2],"11":[0,0,2],"12":[0,2,0],"13":[256,2,0],"14":[0,2,255],"15":[0,2,100],"16":[0,2,255],"17":[256,0,255],"18":[33686018,2,255],"19":[33685506,2,255],"20":[33686018,2,255],"0":[0,0,2],"p9":[-1,0],"modelhash":1885233650,"p8":[-1,0],"p5":[-1,0],"p6":[-1,0],"p2":[-1,0],"p1":[-1,0],"p4":[-1,0],"p3":[-1,0],"p7":[-1,0],"p10":[-1,0],"p0":[-1,0]},"inventory":[],"health":163,"weapons":[],"thirst":49.786624058028,"hunger":36.143312029014}'),
543(20, 'vRP:datatable', '{"inventory":[],"position":{"y":852.80010986328,"z":233.70109558105,"x":-181.61489868164},"customization":{"1":[0,0,0],"2":[0,0,0],"3":[0,0,0],"4":[0,0,0],"5":[0,0,0],"6":[0,0,0],"7":[0,0,0],"8":[0,0,0],"9":[0,0,0],"10":[0,0,0],"11":[0,0,0],"12":[0,0,0],"13":[0,0,0],"14":[0,0,255],"15":[0,0,52],"16":[0,0,255],"17":[0,0,255],"18":[0,0,255],"19":[0,0,255],"20":[0,0,255],"0":[0,0,0],"p9":[-1,0],"p7":[-1,0],"p10":[-1,0],"p5":[-1,0],"p6":[-1,0],"p2":[-1,0],"p1":[-1,0],"p4":[-1,0],"p3":[-1,0],"modelhash":-1044093321,"p8":[-1,0],"p0":[-1,0]},"groups":[],"health":200,"weapons":[],"hunger":1.5,"thirst":1.5}'),
544(21, 'vRP:datatable', '{"groups":{"user":true},"position":{"y":-966.35760498047,"z":21.371938705444,"x":-616.04718017578},"customization":{"1":[0,0,2],"2":[21,4,2],"3":[0,0,2],"4":[4,2,2],"5":[0,0,2],"6":[28,1,2],"7":[0,0,2],"8":[15,0,2],"9":[0,1,2],"10":[5,0,2],"11":[224,1,2],"12":[0,2,0],"13":[0,2,0],"14":[0,2,255],"15":[262144,2,110],"16":[65538,2,1],"17":[16777472,2,0],"18":[33686018,2,0],"19":[33686018,2,0],"20":[33686018,2,0],"0":[0,0,2],"p9":[-1,0],"p7":[-1,0],"p10":[-1,0],"p5":[-1,0],"p6":[-1,0],"p2":[-1,0],"p1":[0,0],"p4":[-1,0],"p3":[-1,0],"modelhash":1885233650,"p8":[-1,0],"p0":[-1,0]},"inventory":[],"health":120,"weapons":[],"thirst":29.183567845781,"hunger":20.84178392289}'),
545(22, 'vRP:datatable', '{"inventory":[],"position":{"y":-972.32824707031,"z":29.28611946106,"x":397.09930419922},"customization":{"1":[0,0,2],"2":[4,0,2],"3":[1,0,2],"4":[3,0,2],"5":[0,0,2],"6":[0,0,2],"7":[0,0,2],"8":[21,0,2],"9":[0,1,2],"10":[0,0,2],"11":[4,0,2],"12":[0,2,0],"13":[0,2,0],"14":[0,2,255],"15":[0,2,100],"16":[0,2,0],"17":[256,2,0],"18":[33686018,2,0],"19":[33686018,2,0],"20":[33686018,2,11],"0":[26,0,2],"p9":[-1,0],"p7":[-1,0],"p10":[-1,0],"p5":[-1,0],"p6":[-1,0],"p2":[-1,0],"p1":[-1,0],"p4":[-1,0],"p3":[-1,0],"modelhash":1885233650,"p8":[-1,0],"p0":[11,0]},"groups":{"user":true},"health":193,"weapons":[],"hunger":38.482038357025,"thirst":60.96407671405}'),
546(23, 'vRP:datatable', '{"health":120,"inventory":[],"hunger":19.161341711217,"phone_directory":[],"customization":{"1":[0,0,2],"2":[0,0,2],"3":[0,0,2],"4":[0,0,2],"5":[0,0,2],"6":[0,0,2],"7":[0,0,2],"8":[0,0,2],"9":[0,1,2],"10":[0,0,2],"11":[0,0,2],"12":[0,2,0],"13":[0,2,0],"14":[0,2,255],"15":[0,2,100],"16":[0,2,255],"17":[256,2,255],"18":[33686018,2,255],"19":[33686018,2,255],"20":[33686018,2,255],"0":[0,0,2],"p9":[-1,0],"p7":[-1,0],"p8":[-1,0],"p5":[-1,0],"p6":[-1,0],"p2":[-1,0],"p1":[-1,0],"p4":[-1,0],"p3":[-1,0],"modelhash":1885233650,"p10":[-1,0],"p0":[-1,0]},"groups":{"user":true},"weapons":[],"thirst":29.322683422433,"position":{"y":-420.99996948242,"z":30.807661056519,"x":503.59365844727}}'),
547(24, 'vRP:datatable', '{"thirst":40.060139193071,"groups":{"user":true,"DIICOT":true},"weapons":{"WEAPON_NIGHTSTICK":{"ammo":0},"WEAPON_PUMPSHOTGUN":{"ammo":239},"WEAPON_COMBATPISTOL":{"ammo":216},"WEAPON_STUNGUN":{"ammo":0},"WEAPON_FLASHLIGHT":{"ammo":0},"WEAPON_CARBINERIFLE":{"ammo":128}},"customization":{"p6":[8,0],"p8":[-1,0],"p2":[0,0],"12":[0,2,0],"p4":[-1,0],"14":[0,1,255],"3":[1,0,2],"2":[3,0,1],"5":[45,0,0],"4":[4,0,2],"7":[0,0,2],"6":[55,7,2],"9":[0,1,2],"8":[3,0,2],"p7":[-1,0],"p9":[-1,0],"13":[4608,2,0],"p3":[-1,0],"10":[1,0,2],"0":[0,0,2],"p10":[-1,0],"19":[33685506,2,0],"1":[0,0,2],"11":[28,0,2],"p0":[-1,0],"p1":[-1,0],"20":[33686018,2,8],"p5":[-1,0],"modelhash":1885233650,"18":[33620482,2,0],"17":[256,0,0],"16":[458752,2,6],"15":[0,2,110]},"gaptitudes":{"physical":{"strength":35.3},"hacker":{"hacking":0,"logic":0,"c++":0,"lua":0},"laboratory":{"lsd":0,"cocaine":0,"weed":0},"science":{"minerit":0,"mathematics":0,"chemicals":0},"level":{"lvl":0}},"health":148,"hunger":23.280069596535,"inventory":{"piatrafull":{"amount":5},"lingouargint":{"amount":1},"argint":{"amount":5},"lemonade":{"amount":8},"kebab":{"amount":10},"car_doc|lp770r":{"amount":1},"aur":{"amount":5}},"phone_directory":{"Gay":"40"},"position":{"z":80.877555847168,"y":42.396240234375,"x":928.89434814453}}'),
548(24, 'vRP:head:overlay', '{"1":[255,1,0],"0":[255,0,0],"5":[255,2,1],"4":[255,0,0],"-1":[255,0,0],"2":[255,1,0],"9":[255,0,0],"8":[255,2,0],"7":[255,0,0],"6":[255,0,0],"11":[255,0,0],"10":[255,1,0],"12":[3,0,0],"3":[1,0,0]}'),
549(24, 'vRP:home:wardrobe', '{"Undercover":{"1":[0,0,2],"2":[14,4,2],"3":[1,0,2],"4":[4,0,2],"5":[45,0,0],"6":[55,7,2],"7":[0,0,2],"8":[3,0,2],"9":[0,1,2],"10":[1,0,2],"11":[28,0,2],"12":[0,2,0],"13":[4608,2,0],"14":[0,2,255],"15":[262144,2,110],"16":[458752,2,2],"17":[256,0,0],"18":[33686018,2,0],"19":[33685506,2,0],"20":[33686018,2,0],"0":[0,0,2],"p2":[0,0],"p1":[-1,0],"p0":[-1,0],"p7":[-1,0],"p3":[-1,0],"p4":[-1,0],"p5":[-1,0],"p6":[8,0],"p8":[-1,0],"p10":[-1,0],"modelhash":1885233650,"p9":[-1,0]}}'),
550(25, 'vRP:datatable', '{"position":{"x":336.22247314453,"y":-949.24810791016,"z":29.530042648315},"groups":{"user":true,"Agent":true,"cop":true},"customization":{"1":[0,0,0],"2":[0,0,0],"3":[0,0,2],"4":[0,0,2],"5":[0,0,0],"6":[0,0,0],"7":[0,0,0],"8":[0,0,0],"9":[0,1,2],"10":[0,0,0],"11":[0,0,0],"12":[0,2,0],"13":[0,0,0],"14":[0,0,255],"15":[0,2,112],"16":[0,2,255],"17":[256,0,255],"18":[33554434,0,255],"19":[2,0,255],"20":[512,0,255],"p3":[-1,0],"p4":[-1,0],"p5":[-1,0],"p6":[-1,0],"p8":[-1,0],"p7":[-1,0],"p9":[-1,0],"modelhash":1456041926,"p10":[-1,0],"p2":[-1,0],"p1":[-1,0],"p0":[-1,0],"0":[0,0,2]},"gaptitudes":{"science":{"mathematics":0,"chemicals":0,"minerit":0},"physical":{"strength":30},"hacker":{"lua":0,"hacking":0,"c++":0,"logic":0},"level":{"lvl":0},"laboratory":{"weed":0,"lsd":0,"cocaine":0}},"inventory":{"cipsuri":{"amount":28},"coffee":{"amount":17}},"cloakroom_idle":{"16":[0,2,255],"modelhash":1885233650,"14":[0,2,255],"0":[0,0,2],"1":[0,0,2],"2":[0,0,2],"p8":[-1,0],"18":[33686018,2,255],"7":[0,0,2],"8":[0,0,2],"9":[0,1,2],"p2":[-1,0],"4":[0,0,2],"p0":[-1,0],"10":[0,0,2],"p10":[-1,0],"15":[0,2,100],"13":[0,2,0],"p3":[-1,0],"p5":[-1,0],"p6":[-1,0],"17":[256,2,255],"p7":[-1,0],"19":[33686018,2,255],"p9":[-1,0],"p4":[-1,0],"3":[0,0,2],"5":[0,0,2],"12":[0,2,0],"11":[0,0,2],"p1":[-1,0],"20":[33686018,2,255],"6":[0,0,2]},"hunger":10.604791855852,"weapons":{"WEAPON_PUMPSHOTGUN":{"ammo":241},"WEAPON_CARBINERIFLE":{"ammo":44},"WEAPON_FLASHLIGHT":{"ammo":0},"WEAPON_COMBATPISTOL":{"ammo":178},"WEAPON_STUNGUN":{"ammo":0},"WEAPON_NIGHTSTICK":{"ammo":0},"WEAPON_HAMMER":{"ammo":0},"WEAPON_PETROLCAN":{"ammo":90}},"thirst":34.957710226427,"health":177}'),
551(25, 'vRP:jail:time', '-1'),
552(25, 'vRP:police_records', '[Amenda] 2500 $ pentru Neoane<br />[Amenda] 8000 $ pentru 8000<br />'),
553(26, 'vRP:datatable', '{"groups":{"user":true},"position":{"y":-574.16516113281,"z":108.52292633057,"x":-1573.3402099609},"customization":{"1":[0,0,2],"2":[3,4,2],"3":[6,0,2],"4":[4,0,2],"5":[0,0,2],"6":[10,0,2],"7":[0,0,2],"8":[31,0,2],"9":[0,1,2],"10":[0,0,2],"11":[31,0,2],"12":[0,2,0],"13":[0,2,0],"14":[0,2,255],"15":[262144,2,100],"16":[0,2,1],"17":[256,2,0],"18":[33686018,2,0],"19":[33686018,2,0],"20":[33686018,2,0],"0":[0,0,2],"p9":[-1,0],"modelhash":1885233650,"p8":[-1,0],"p5":[-1,0],"p6":[-1,0],"p2":[-1,0],"p1":[0,0],"p4":[-1,0],"p3":[-1,0],"p7":[-1,0],"p10":[-1,0],"p0":[-1,0]},"inventory":[],"health":200,"weapons":[],"thirst":15.777965017006,"hunger":13.388982508503}'),
554(27, 'vRP:datatable', '{"groups":{"UBER":true,"user":true},"position":{"y":2570.4819335938,"z":45.564811706543,"x":1641.5478515625},"customization":{"1":[0,0,2],"2":[1,0,2],"3":[1,0,2],"4":[4,0,2],"5":[0,0,2],"6":[1,0,2],"7":[0,0,2],"8":[0,0,2],"9":[0,1,2],"10":[2,0,2],"11":[4,0,2],"12":[0,2,0],"13":[0,2,0],"14":[0,2,255],"15":[0,2,110],"16":[0,2,0],"17":[256,2,0],"18":[33686018,2,0],"19":[33686018,2,0],"20":[33686018,2,12],"0":[2,0,2],"p9":[-1,0],"p7":[-1,0],"p10":[-1,0],"p5":[-1,0],"p6":[-1,0],"p2":[5,0],"p1":[2,0],"p4":[-1,0],"p3":[-1,0],"modelhash":1885233650,"p8":[-1,0],"p0":[12,0]},"inventory":[],"health":200,"weapons":[],"thirst":0.5,"hunger":0.5}'),
555(27, 'vRP:jail:time', '28'),
556(28, 'vRP:datatable', '{"groups":{"UBER":true,"user":true},"position":{"y":-286.14923095703,"z":35.779586791992,"x":-681.04760742188},"customization":{"1":[0,0,2],"2":[0,0,2],"3":[0,0,2],"4":[4,0,2],"5":[45,0,0],"6":[15,0,2],"7":[0,0,2],"8":[11,0,2],"9":[0,1,2],"10":[0,0,2],"11":[74,0,2],"12":[0,2,0],"13":[1024,2,0],"14":[0,2,255],"15":[0,2,108],"16":[0,2,1],"17":[256,0,0],"18":[33686018,2,0],"19":[33685506,2,0],"20":[33686018,2,3],"0":[0,0,2],"p9":[-1,0],"p7":[-1,0],"p10":[-1,0],"p5":[-1,0],"p6":[0,0],"p2":[-1,0],"p1":[3,0],"p4":[-1,0],"p3":[-1,0],"p8":[-1,0],"modelhash":1885233650,"p0":[6,1]},"inventory":[],"health":120,"weapons":[],"thirst":68.138917400168,"hunger":48.069458700084}'),
557(29, 'vRP:datatable', '{"groups":{"user":true},"position":{"y":-188.71585083008,"z":54.737880706787,"x":51.116714477539},"customization":{"1":[0,0,2],"2":[0,0,2],"3":[0,0,2],"4":[0,0,2],"5":[0,0,2],"6":[0,0,2],"7":[0,0,2],"8":[0,0,2],"9":[0,1,2],"10":[0,0,2],"11":[0,0,2],"12":[0,2,0],"13":[0,2,0],"14":[0,2,255],"15":[0,2,100],"16":[0,2,255],"17":[256,2,255],"18":[33686018,2,255],"19":[33686018,2,255],"20":[33686018,2,255],"0":[0,0,2],"p9":[-1,0],"p7":[-1,0],"p10":[-1,0],"p5":[-1,0],"p6":[-1,0],"p2":[-1,0],"p1":[-1,0],"p4":[-1,0],"p3":[-1,0],"modelhash":1885233650,"p8":[-1,0],"p0":[-1,0]},"inventory":[],"health":120,"weapons":[],"thirst":7.3583056915352,"hunger":4.9291528457676}'),
558(30, 'vRP:datatable', '{"position":{"z":28.892265319824,"x":392.12796020508,"y":-1033.3618164063},"hunger":0.54099319949385,"customization":{"1":[0,0,2],"2":[18,0,1],"3":[11,0,2],"4":[10,0,2],"5":[0,0,0],"6":[10,0,2],"7":[0,0,2],"8":[122,0,2],"9":[0,1,2],"10":[8,0,2],"11":[26,0,2],"12":[0,2,0],"13":[0,2,0],"14":[0,1,255],"15":[0,2,102],"16":[0,2,6],"17":[256,0,0],"18":[33620482,2,0],"19":[33685506,2,0],"20":[33686018,2,1],"p1":[3,9],"p0":[-1,0],"p3":[-1,0],"p2":[0,0],"p4":[-1,0],"p5":[-1,0],"p6":[1,0],"p7":[-1,0],"p9":[-1,0],"p8":[-1,0],"0":[2,0,2],"modelhash":1885233650,"p10":[-1,0]},"groups":{"DIICOT":true,"user":true,"fondator":true},"health":183,"phone_directory":[],"thirst":94.372458648377,"gaptitudes":{"level":{"lvl":0},"hacker":{"hacking":0,"c++":0,"lua":0,"logic":0},"physical":{"strength":30},"science":{"minerit":0,"chemicals":0,"mathematics":0},"laboratory":{"cocaine":0,"weed":0,"lsd":0}},"inventory":{"tea":{"amount":3},"shaorma":{"amount":9}},"weapons":{"WEAPON_STUNGUN":{"ammo":0},"WEAPON_COMBATPISTOL":{"ammo":91},"WEAPON_NIGHTSTICK":{"ammo":0},"WEAPON_FLASHLIGHT":{"ammo":0},"WEAPON_CARBINERIFLE":{"ammo":180}}}'),
559(30, 'vRP:head:overlay', '{"2":[255,1,0],"1":[255,1,0],"0":[255,0,0],"4":[255,0,0],"11":[255,0,0],"6":[4,0,1],"7":[255,0,0],"9":[255,0,0],"8":[255,2,0],"-1":[0,0,0],"10":[255,1,0],"5":[255,2,0],"12":[18,0,56],"3":[4,0,4]}'),
560(30, 'vRP:home:wardrobe', '{"Captura":{"1":[0,0,2],"2":[18,0,1],"3":[17,0,2],"4":[9,7,2],"5":[0,0,0],"6":[81,0,2],"7":[0,0,2],"8":[122,0,2],"9":[0,1,2],"10":[24,0,2],"11":[54,0,2],"12":[0,2,0],"13":[0,2,0],"14":[0,1,255],"15":[0,2,110],"16":[7,2,1],"17":[256,0,0],"18":[33620482,2,0],"19":[33685506,2,0],"20":[33686018,2,3],"p10":[-1,0],"p6":[1,0],"p9":[-1,0],"p8":[-1,0],"p2":[0,0],"p3":[-1,0],"p4":[-1,0],"p5":[-1,0],"modelhash":1885233650,"p1":[3,9],"p0":[117,0],"0":[4,0,2],"p7":[-1,0]},"Agent":{"p6":[1,0],"p8":[-1,0],"p2":[0,0],"12":[0,2,0],"p4":[-1,0],"14":[0,1,255],"3":[11,0,2],"2":[18,0,1],"5":[0,0,0],"4":[10,0,2],"7":[0,0,2],"6":[10,0,2],"9":[0,1,2],"8":[122,0,2],"p7":[-1,0],"p9":[-1,0],"13":[0,2,0],"p3":[-1,0],"10":[8,0,2],"20":[33686018,2,3],"p10":[-1,0],"0":[2,0,2],"1":[0,0,2],"11":[26,0,2],"p0":[-1,0],"p1":[3,9],"19":[33685506,2,0],"p5":[-1,0],"modelhash":1885233650,"18":[33620482,2,0],"17":[256,0,0],"16":[0,2,1],"15":[0,2,102]}}'),
561(31, 'vRP:datatable', '{"weapons":{"WEAPON_PUMPSHOTGUN":{"ammo":250},"WEAPON_CARBINERIFLE":{"ammo":11}},"groups":{"developer":true,"Vacar":true,"user":true,"cop":true},"inventory":{"carne":{"amount":9},"minereucurat":{"amount":10},"lapte":{"amount":10}},"hunger":100,"health":120,"gaptitudes":{"laboratory":{"weed":0,"cocaine":0,"lsd":0},"science":{"minerit":0,"mathematics":0,"chemicals":0},"physical":{"strength":53.4},"level":{"lvl":0},"hacker":{"hacking":0,"logic":0,"lua":0,"c++":0}},"position":{"y":2048.6125488281,"z":67.499076843262,"x":1775.8742675781},"customization":{"p10":[-1,0],"p0":[16,0],"10":[0,0,0],"20":[512,0,16],"p4":[-1,0],"14":[0,2,255],"p2":[-1,0],"12":[0,2,0],"1":[0,0,0],"2":[0,0,2],"3":[67,0,0],"4":[3,7,0],"0":[0,0,2],"19":[0,0,0],"17":[257,0,0],"15":[0,0,100],"p5":[-1,0],"p7":[-1,0],"9":[0,1,2],"13":[256,0,0],"6":[27,0,0],"7":[0,0,0],"8":[59,1,0],"modelhash":1885233650,"p1":[-1,0],"18":[131074,0,0],"p3":[-1,0],"16":[7,0,0],"11":[56,0,0],"5":[45,0,0],"p6":[-1,0],"p9":[-1,0],"p8":[-1,0]},"thirst":100}'),
562(32, 'vRP:datatable', '{"inventory":[],"groups":{"user":true},"weapons":[],"hunger":36.139603845958,"health":200,"position":{"z":25.293659210205,"x":-149.44578552246,"y":-1163.6590576172},"thirst":55.279207691917,"customization":{"p8":[-1,0],"13":[0,2,0],"18":[33686018,2,0],"14":[0,2,255],"p4":[-1,0],"16":[65536,2,2],"p6":[-1,0],"6":[26,1,2],"7":[0,0,2],"4":[5,0,2],"5":[0,0,2],"8":[15,0,2],"9":[0,1,2],"20":[33686018,2,0],"p9":[-1,0],"19":[33686018,2,0],"12":[0,2,0],"2":[14,0,2],"15":[0,2,100],"p7":[-1,0],"17":[256,2,0],"p2":[0,0],"p3":[-1,0],"p5":[-1,0],"0":[42,0,2],"p10":[-1,0],"p1":[-1,0],"p0":[-1,0],"modelhash":1885233650,"11":[14,0,2],"10":[0,0,2],"3":[0,0,2],"1":[0,0,2]}}'),
563(33, 'vRP:datatable', '{"health":200,"groups":{"UBER":true,"user":true},"hunger":30.388035458322,"customization":{"1":[0,0,2],"2":[38,0,2],"3":[18,0,2],"4":[10,0,2],"5":[0,0,0],"6":[10,0,2],"7":[0,0,2],"8":[10,0,2],"9":[0,1,2],"10":[1,0,2],"11":[28,0,2],"12":[0,2,0],"13":[0,2,0],"14":[0,2,255],"15":[0,2,110],"16":[0,2,1],"17":[256,0,0],"18":[33686018,2,0],"19":[33685506,2,0],"20":[33686018,2,15],"0":[0,0,2],"p9":[-1,0],"modelhash":1885233650,"p10":[-1,0],"p5":[-1,0],"p6":[-1,0],"p2":[1,0],"p1":[15,0],"p4":[-1,0],"p3":[-1,0],"p7":[-1,0],"p8":[-1,0],"p0":[54,0]},"gaptitudes":{"laboratory":{"weed":0,"cocaine":0,"lsd":0},"physical":{"strength":30},"level":{"lvl":0},"science":{"mathematics":0,"minerit":0,"chemicals":0},"hacker":{"logic":0,"c++":0,"hacking":0,"lua":0}},"position":{"y":-1111.7973632813,"z":26.437534332275,"x":-39.295791625977},"weapons":[],"thirst":40.776070916644,"inventory":[]}'),
564(34, 'vRP:datatable', '{"groups":{"UBER":true,"user":true},"position":{"y":-1116.0244140625,"z":26.434009552002,"x":-62.269779205322},"customization":{"1":[0,0,2],"2":[0,0,2],"3":[0,0,2],"4":[0,0,2],"5":[0,0,2],"6":[0,0,2],"7":[0,0,2],"8":[0,0,2],"9":[0,1,2],"10":[0,0,2],"11":[0,0,2],"12":[0,2,0],"13":[0,2,0],"14":[0,2,255],"15":[0,2,100],"16":[0,2,255],"17":[256,2,255],"18":[33686018,2,255],"19":[33686018,2,255],"20":[33686018,2,255],"0":[0,0,2],"p9":[-1,0],"p7":[-1,0],"p10":[-1,0],"p5":[-1,0],"p6":[-1,0],"p2":[-1,0],"p1":[-1,0],"p4":[-1,0],"p3":[-1,0],"p8":[-1,0],"modelhash":1885233650,"p0":[-1,0]},"inventory":[],"health":200,"weapons":[],"thirst":42.323746607933,"hunger":29.411873303967}'),
565(35, 'vRP:datatable', '{"groups":{"UBER":true,"user":true},"position":{"y":-681.83026123047,"z":32.636138916016,"x":-242.44917297363},"customization":{"1":[0,0,2],"2":[0,0,2],"3":[0,0,2],"4":[0,0,2],"5":[0,0,2],"6":[0,0,2],"7":[0,0,2],"8":[0,0,2],"9":[0,1,2],"10":[0,0,2],"11":[0,0,2],"12":[0,2,0],"13":[0,2,0],"14":[0,2,255],"15":[0,2,100],"16":[0,2,255],"17":[256,2,255],"18":[33686018,2,255],"19":[33686018,2,255],"20":[33686018,2,255],"0":[0,0,2],"p9":[-1,0],"p7":[-1,0],"p8":[-1,0],"p5":[-1,0],"p6":[-1,0],"p2":[-1,0],"p1":[-1,0],"p4":[-1,0],"p3":[-1,0],"modelhash":1885233650,"p10":[-1,0],"p0":[-1,0]},"inventory":[],"health":200,"weapons":[],"thirst":4.1887139901218,"hunger":3.0943569950609}'),
566(36, 'vRP:datatable', '{"health":199,"hunger":39.461283869907,"position":{"x":412.16723632813,"y":-975.03479003906,"z":29.43009185791},"weapons":{"WEAPON_FLASHLIGHT":{"ammo":0},"WEAPON_PUMPSHOTGUN":{"ammo":250},"WEAPON_COMBATPISTOL":{"ammo":250},"WEAPON_NIGHTSTICK":{"ammo":0},"WEAPON_CARBINERIFLE":{"ammo":146},"WEAPON_STUNGUN":{"ammo":0}},"groups":{"Capitan Jandarmerie":true,"Moderator":true,"user":true,"cop":true},"customization":{"1":[0,0,2],"2":[2,3,2],"3":[1,0,2],"4":[4,0,2],"5":[0,0,2],"6":[9,14,2],"7":[0,0,2],"8":[23,1,2],"9":[0,1,2],"10":[0,0,2],"11":[70,5,2],"12":[0,2,0],"13":[0,2,0],"14":[0,2,255],"15":[196608,2,100],"16":[917504,2,1],"17":[83886337,2,0],"18":[33686018,2,0],"19":[33686018,2,0],"20":[33686018,2,5],"0":[0,0,2],"p2":[-1,0],"p1":[5,5],"p0":[-1,0],"p10":[-1,0],"p3":[-1,0],"p4":[-1,0],"p5":[-1,0],"p6":[-1,0],"p8":[-1,0],"p7":[-1,0],"modelhash":1885233650,"p9":[-1,0]},"inventory":[],"thirst":52.422567739814}'),
567(37, 'vRP:datatable', '{"inventory":{"car_doc|daduster":{"amount":1},"cipsuri":{"amount":16},"lemonade":{"amount":2}},"health":200,"weapons":{"WEAPON_FLASHLIGHT":{"ammo":0},"WEAPON_PETROLCAN":{"ammo":100},"WEAPON_KNIFE":{"ammo":0},"WEAPON_ASSAULTRIFLE":{"ammo":250},"WEAPON_SNIPERRIFLE":{"ammo":250},"WEAPON_COMBATPISTOL":{"ammo":250}},"groups":{"Lider Cartel Di Medellin":true,"Helper":true,"user":true},"gaptitudes":{"level":{"lvl":0},"hacker":{"hacking":0,"c++":0,"lua":0,"logic":0},"physical":{"strength":30.4},"science":{"minerit":0,"chemicals":0,"mathematics":0},"laboratory":{"cocaine":0,"weed":0,"lsd":0}},"hunger":10.639640096927,"thirst":12.279280193854,"phone_directory":[],"position":{"z":30.930265426636,"x":-639.88269042969,"y":-663.87420654297},"customization":{"1":[0,0,2],"2":[11,0,2],"3":[1,0,2],"4":[7,0,2],"5":[0,0,0],"6":[25,0,2],"7":[0,0,2],"8":[11,0,2],"9":[0,1,2],"10":[1,0,2],"11":[4,0,2],"12":[0,2,0],"13":[0,2,0],"14":[0,2,255],"15":[0,2,110],"16":[0,2,6],"17":[256,0,0],"18":[33686018,2,0],"19":[33685506,2,0],"20":[33686018,2,0],"p1":[-1,0],"p0":[-1,0],"p3":[-1,0],"p2":[2,0],"p4":[-1,0],"p5":[-1,0],"p6":[0,0],"p7":[-1,0],"p9":[-1,0],"p8":[-1,0],"0":[0,0,2],"modelhash":1885233650,"p10":[-1,0]}}'),
568(38, 'vRP:datatable', '{"inventory":{"wbody|WEAPON_PISTOL":{"amount":1},"wbody|WEAPON_STUNGUN":{"amount":2},"wammo|WEAPON_CARBINERIFLE":{"amount":72},"wbody|WEAPON_COMBATPISTOL":{"amount":2},"wbody|WEAPON_FLASHLIGHT":{"amount":1},"gogoasa":{"amount":10},"redbull":{"amount":9},"wbody|WEAPON_CARBINERIFLE":{"amount":1},"wammo|WEAPON_PUMPSHOTGUN":{"amount":226},"wbody|WEAPON_PUMPSHOTGUN":{"amount":1},"wammo|WEAPON_PISTOL":{"amount":231},"car_doc|audirs6tk":{"amount":1},"wammo|WEAPON_COMBATPISTOL":{"amount":239},"wbody|WEAPON_NIGHTSTICK":{"amount":1}},"thirst":66.814935864819,"hunger":32.65746793241,"gaptitudes":{"laboratory":{"lsd":0,"cocaine":0,"weed":0},"level":{"lvl":0},"hacker":{"lua":0,"logic":0,"hacking":0,"c++":0},"physical":{"strength":30},"science":{"chemicals":0,"mathematics":0,"minerit":0}},"health":200,"groups":{"SuperAdmin":true,"HeadOFStaff":true,"user":true,"DIICOT":true,"cop":true},"customization":{"1":[0,0,2],"2":[3,4,2],"3":[17,0,2],"4":[4,2,2],"5":[45,0,0],"6":[25,0,2],"7":[0,0,2],"8":[15,0,2],"9":[0,1,2],"10":[0,0,2],"11":[281,0,2],"12":[0,2,0],"13":[4352,2,0],"14":[0,2,255],"15":[262144,2,228],"16":[2,2,2],"17":[256,0,0],"18":[33686018,2,0],"19":[33685506,2,0],"20":[33686018,2,0],"p8":[-1,0],"p7":[-1,0],"p6":[-1,0],"p5":[-1,0],"p3":[-1,0],"p4":[-1,0],"p1":[-1,0],"p2":[0,0],"modelhash":1885233650,"p9":[-1,0],"0":[4,0,2],"p0":[-1,0],"p10":[-1,0]},"weapons":{"WEAPON_STUNGUN":{"ammo":0},"WEAPON_FLASHLIGHT":{"ammo":0},"WEAPON_CARBINERIFLE":{"ammo":250},"WEAPON_NIGHTSTICK":{"ammo":0},"WEAPON_COMBATPISTOL":{"ammo":160},"WEAPON_PUMPSHOTGUN":{"ammo":229}},"position":{"x":-1109.1770019531,"y":-3109.6254882813,"z":14.313576698303}}'),
569(38, 'vRP:head:overlay', '{"5":[255,2,0],"6":[255,0,0],"3":[255,0,0],"4":[255,0,0],"1":[18,1,2],"-1":[0,0,0],"0":[255,0,0],"12":[2,0,1],"2":[255,1,0],"11":[255,0,0],"9":[255,0,0],"10":[255,1,0],"7":[255,0,0],"8":[255,2,0]}'),
570(39, 'vRP:datatable', '{"customization":{"1":[0,0,2],"2":[0,0,2],"3":[0,0,2],"4":[0,0,2],"5":[0,0,2],"6":[0,0,2],"7":[0,0,2],"8":[0,0,2],"9":[0,1,2],"10":[0,0,2],"11":[0,0,2],"12":[0,2,0],"13":[0,2,0],"14":[0,2,255],"15":[0,2,100],"16":[0,2,255],"17":[256,2,255],"18":[33686018,2,255],"19":[33686018,2,255],"20":[33686018,2,255],"0":[0,0,2],"p2":[-1,0],"p1":[-1,0],"p0":[-1,0],"p7":[-1,0],"p3":[-1,0],"p4":[-1,0],"p5":[-1,0],"p6":[-1,0],"p8":[-1,0],"p10":[-1,0],"modelhash":1885233650,"p9":[-1,0]},"inventory":[],"weapons":[],"health":200,"groups":{"user":true,"Fan Curier":true},"hunger":3.4382728147622,"position":{"x":-523.15643310547,"y":-251.26472473145,"z":35.719757080078},"thirst":4.8765456295244}');
571INSERT INTO `vrp_user_data` (`user_id`, `dkey`, `dvalue`) VALUES
572(40, 'vRP:datatable', '{"inventory":[],"gaptitudes":{"physical":{"strength":30},"level":{"lvl":0},"science":{"mathematics":0,"chemicals":0,"minerit":0},"laboratory":{"weed":0,"lsd":0,"cocaine":0},"hacker":{"c++":0,"lua":0,"hacking":0,"logic":0}},"hunger":42.804872915814,"position":{"z":31.426746368408,"y":6438.2026367188,"x":-142.39903259277},"thirst":69.609745831629,"phone_directory":[],"groups":{"Membru Cartel Di Medellin":true,"user":true},"health":199,"weapons":{"WEAPON_ASSAULTRIFLE":{"ammo":195},"WEAPON_KNIFE":{"ammo":0},"WEAPON_COMBATPISTOL":{"ammo":184}},"customization":{"1":[0,0,2],"0":[0,0,2],"p1":[-1,0],"11":[64,0,2],"18":[33686018,2,0],"16":[0,2,6],"p6":[17,0],"p8":[-1,0],"p2":[-1,0],"12":[0,2,0],"p4":[-1,0],"14":[0,2,255],"p7":[-1,0],"p9":[-1,0],"p0":[-1,0],"10":[0,0,2],"20":[33686018,2,17],"p3":[-1,0],"p5":[-1,0],"modelhash":1885233650,"p10":[-1,0],"15":[0,2,100],"19":[33685506,2,0],"13":[0,2,0],"17":[256,0,0],"3":[12,0,2],"2":[30,0,2],"5":[0,0,0],"4":[74,0,2],"7":[0,0,2],"6":[53,0,2],"9":[0,1,2],"8":[116,0,2]}}'),
573(41, 'vRP:datatable', '{"gaptitudes":{"hacker":{"lua":0,"logic":0,"hacking":0,"c++":0},"physical":{"strength":30},"level":{"lvl":0},"science":{"mathematics":0,"minerit":0,"chemicals":0},"laboratory":{"cocaine":0,"weed":0,"lsd":0}},"health":200,"position":{"y":-292.27899169922,"z":35.210887908936,"x":-517.21038818359},"weapons":[],"groups":{"Agent":true,"superadmin":true,"fondator":true,"user":true,"developer":true,"cop":true},"hunger":21.974900286547,"thirst":36.449800573094,"customization":{"1":[0,0,2],"2":[0,0,2],"3":[0,0,2],"4":[0,0,2],"5":[45,0,0],"6":[0,0,2],"7":[0,0,2],"8":[0,0,2],"9":[0,1,2],"10":[0,0,2],"11":[0,0,2],"12":[0,2,0],"13":[256,2,0],"14":[0,2,255],"15":[0,2,100],"16":[0,2,255],"17":[256,0,255],"18":[33686018,2,255],"19":[33685506,2,255],"20":[33686018,2,255],"0":[0,0,2],"p10":[-1,0],"p3":[-1,0],"p4":[-1,0],"p5":[-1,0],"p2":[-1,0],"p1":[-1,0],"p0":[-1,0],"p6":[-1,0],"p8":[-1,0],"p7":[-1,0],"modelhash":1885233650,"p9":[-1,0]},"inventory":{"piatrafull":{"amount":2},"lingouargint":{"amount":1}}}'),
574(42, 'vRP:datatable', '{"customization":{"1":[0,0,2],"2":[2,0,2],"3":[4,0,2],"4":[4,0,2],"5":[0,0,2],"6":[1,0,2],"7":[0,0,2],"8":[4,0,2],"9":[0,1,2],"10":[0,0,2],"11":[4,0,2],"12":[0,2,0],"13":[0,2,0],"14":[0,2,255],"15":[0,2,100],"16":[0,2,1],"17":[256,2,0],"18":[33686018,2,0],"19":[33686018,2,0],"20":[33686018,2,7],"p4":[-1,0],"p5":[-1,0],"p2":[-1,0],"p8":[-1,0],"p1":[7,0],"p0":[12,0],"p3":[-1,0],"p10":[-1,0],"modelhash":1885233650,"p6":[-1,0],"0":[4,0,2],"p7":[-1,0],"p9":[-1,0]},"position":{"z":105.41870880127,"x":239.94645690918,"y":330.1096496582},"groups":{"user":true,"Fan Curier":true},"health":156,"hunger":8.4241109556346,"inventory":[],"weapons":[],"thirst":11.848221911269}'),
575(43, 'vRP:datatable', '{"customization":{"1":[0,0,2],"2":[52,0,1],"3":[31,0,2],"4":[51,0,2],"5":[0,0,0],"6":[10,0,2],"7":[0,0,2],"8":[21,0,2],"9":[0,1,2],"10":[4,0,2],"11":[103,0,2],"12":[0,2,0],"13":[0,2,0],"14":[0,1,255],"15":[0,2,110],"16":[0,2,6],"17":[256,0,0],"18":[33620482,2,0],"19":[33685506,2,0],"20":[33686018,2,0],"p4":[-1,0],"p5":[-1,0],"p2":[-1,0],"p3":[-1,0],"p1":[-1,0],"p0":[-1,0],"p9":[-1,0],"p10":[-1,0],"p7":[-1,0],"p8":[-1,0],"modelhash":1885233650,"0":[0,0,2],"p6":[0,0]},"hunger":26.372197844469,"inventory":{"lemonade":{"amount":2},"kebab":{"amount":3}},"thirst":20.244395688939,"gaptitudes":{"hacker":{"logic":0,"hacking":0,"c++":0,"lua":0},"science":{"chemicals":0,"mathematics":0,"minerit":0},"laboratory":{"cocaine":0,"lsd":0,"weed":0},"level":{"lvl":0},"physical":{"strength":30}},"groups":{"user":true,"Fan Curier":true},"weapons":[],"position":{"z":28.318946838379,"x":457.96957397461,"y":-608.96197509766},"health":174}'),
576(43, 'vRP:head:overlay', '{"-1":[0,0,0],"11":[255,0,0],"0":[7,0,0],"1":[255,1,1],"12":[52,0,1],"9":[255,0,0],"4":[255,0,0],"5":[255,2,0],"2":[255,1,0],"3":[8,0,1],"8":[255,2,0],"10":[255,1,0],"6":[255,0,0],"7":[7,0,0]}'),
577(44, 'vRP:datatable', '{"position":{"y":-746.01397705078,"z":19.40944480896,"x":-1035.0096435547},"inventory":[],"weapons":[],"customization":{"1":[0,0,2],"2":[0,0,2],"3":[0,0,2],"4":[0,0,2],"5":[0,0,2],"6":[0,0,2],"7":[0,0,2],"8":[0,0,2],"9":[0,1,2],"10":[0,0,2],"11":[0,0,2],"12":[0,2,0],"13":[0,2,0],"14":[0,2,255],"15":[0,2,100],"16":[0,2,255],"17":[256,2,255],"18":[33686018,2,255],"19":[33686018,2,255],"20":[33686018,2,255],"p0":[-1,0],"p2":[-1,0],"p3":[-1,0],"modelhash":1885233650,"p6":[-1,0],"p5":[-1,0],"p8":[-1,0],"p7":[-1,0],"p9":[-1,0],"p1":[-1,0],"p4":[-1,0],"p10":[-1,0],"0":[0,0,2]},"hunger":28.698253232596,"health":149,"groups":{"user":true},"thirst":41.896506465193}'),
578(45, 'vRP:datatable', '{"hunger":1.5,"groups":[],"inventory":[],"thirst":1.5}'),
579(46, 'vRP:datatable', '{"thirst":3.9965250576542,"weapons":[],"hunger":1.9982625288271,"groups":{"Culegator":true,"user":true},"health":120,"position":{"y":-900.9921875,"z":28.803646087646,"x":-168.35974121094},"customization":{"1":[0,0,2],"2":[0,0,2],"3":[17,3,2],"4":[31,3,2],"5":[0,0,2],"6":[12,4,2],"7":[0,0,2],"8":[131,12,2],"9":[0,1,2],"10":[0,0,2],"11":[49,3,2],"12":[0,2,0],"13":[0,2,0],"14":[1,2,255],"15":[50331648,2,100],"16":[262147,2,255],"17":[50331916,2,255],"18":[33686018,2,255],"19":[33686018,2,255],"20":[33686018,2,255],"0":[0,0,2],"p10":[-1,0],"p2":[-1,0],"modelhash":1885233650,"p4":[-1,0],"p3":[-1,0],"p1":[-1,0],"p0":[-1,0],"p6":[-1,0],"p8":[-1,0],"p7":[-1,0],"p5":[-1,0],"p9":[-1,0]},"inventory":[]}'),
580(47, 'vRP:datatable', '{"gaptitudes":{"hacker":{"c++":0,"logic":0,"hacking":0,"lua":0},"laboratory":{"cocaine":0,"weed":0,"lsd":0},"level":{"lvl":0},"science":{"mathematics":0,"minerit":0,"chemicals":0},"physical":{"strength":30}},"health":200,"position":{"y":-1036.7501220703,"z":29.30002784729,"x":402.8362121582},"weapons":[],"groups":{"user":true},"thirst":38.654356640175,"inventory":[],"customization":{"1":[0,0,2],"2":[0,0,2],"3":[17,0,2],"4":[9,1,2],"5":[0,0,0],"6":[59,3,2],"7":[0,0,2],"8":[131,12,2],"9":[0,1,2],"10":[0,0,2],"11":[49,3,2],"12":[0,2,0],"13":[0,2,0],"14":[1,2,255],"15":[0,2,228],"16":[196609,2,255],"17":[50331916,0,255],"18":[33686018,2,255],"19":[33685506,2,255],"20":[33686018,2,255],"0":[0,0,2],"p10":[-1,0],"p0":[-1,0],"modelhash":1885233650,"p1":[-1,0],"p3":[-1,0],"p4":[-1,0],"p5":[-1,0],"p6":[-1,0],"p8":[-1,0],"p7":[-1,0],"p2":[-1,0],"p9":[-1,0]},"hunger":24.827178320089}'),
581(48, 'vRP:datatable', '{"customization":{"1":[0,0,2],"2":[0,0,2],"3":[0,0,2],"4":[0,0,2],"5":[0,0,2],"6":[0,0,2],"7":[0,0,2],"8":[0,0,2],"9":[0,1,2],"10":[0,0,2],"11":[0,0,2],"12":[0,2,0],"13":[0,2,0],"14":[0,2,255],"15":[0,2,100],"16":[0,2,255],"17":[256,2,255],"18":[33686018,2,255],"19":[33686018,2,255],"20":[33686018,2,255],"p4":[-1,0],"p5":[-1,0],"p2":[-1,0],"p3":[-1,0],"p1":[-1,0],"p0":[-1,0],"0":[0,0,2],"p10":[-1,0],"p9":[-1,0],"modelhash":1885233650,"p7":[-1,0],"p6":[-1,0],"p8":[-1,0]},"position":{"z":108.52295684814,"x":-1572.2091064453,"y":-573.68951416016},"groups":{"user":true},"weapons":[],"hunger":5.7930831531875,"health":200,"inventory":[],"thirst":6.086166306375}'),
582(49, 'vRP:datatable', '{"customization":{"1":[0,0,2],"2":[0,0,2],"3":[0,0,2],"4":[0,0,2],"5":[0,0,0],"6":[0,0,2],"7":[0,0,2],"8":[0,0,2],"9":[0,1,2],"10":[0,0,2],"11":[0,0,2],"12":[0,2,0],"13":[0,2,0],"14":[0,2,255],"15":[0,2,100],"16":[0,2,255],"17":[256,0,255],"18":[33686018,2,255],"19":[33685506,2,255],"20":[33686018,2,255],"0":[0,0,2],"p2":[-1,0],"p3":[-1,0],"p4":[-1,0],"p6":[-1,0],"p5":[-1,0],"p8":[-1,0],"p7":[-1,0],"p9":[-1,0],"modelhash":1885233650,"p1":[-1,0],"p10":[-1,0],"p0":[-1,0]},"inventory":[],"hunger":35.188579561746,"gaptitudes":{"science":{"chemicals":0,"mathematics":0,"minerit":0},"physical":{"strength":30},"laboratory":{"weed":0,"cocaine":0,"lsd":0},"level":{"lvl":0},"hacker":{"lua":0,"logic":0,"hacking":0,"c++":0}},"position":{"y":27.344623565674,"z":74.876876831055,"x":952.5048828125},"weapons":[],"health":192,"groups":{"user":true,"Culegator":true},"thirst":46.377159123492}'),
583(50, 'vRP:datatable', '{"position":{"z":37.121459960938,"x":553.11090087891,"y":-1017.0498657227},"health":200,"weapons":{"WEAPON_FLASHLIGHT":{"ammo":0},"WEAPON_SNIPERRIFLE":{"ammo":95},"WEAPON_KNIFE":{"ammo":0},"WEAPON_ASSAULTRIFLE":{"ammo":206}},"groups":{"Membru Cartel Di Medellin":true,"user":true},"customization":{"1":[0,0,2],"2":[21,4,2],"3":[0,0,2],"4":[31,0,2],"5":[45,0,0],"6":[25,0,2],"7":[0,0,2],"8":[81,0,2],"9":[0,1,2],"10":[11,0,2],"11":[157,0,2],"12":[0,2,0],"13":[5376,2,0],"14":[0,2,255],"15":[262144,2,102],"16":[0,2,0],"17":[256,0,0],"18":[33686018,2,0],"19":[33685506,2,0],"20":[33686018,2,85],"0":[44,0,2],"p0":[85,0],"p3":[-1,0],"p2":[-1,0],"p4":[-1,0],"p5":[-1,0],"p6":[-1,0],"p7":[-1,0],"p9":[-1,0],"p8":[-1,0],"p1":[5,0],"modelhash":1885233650,"p10":[-1,0]},"thirst":47.896774328481,"gaptitudes":{"level":{"lvl":0},"physical":{"strength":30},"hacker":{"hacking":0,"logic":0,"lua":0,"c++":0},"science":{"minerit":0,"chemicals":0,"mathematics":0},"laboratory":{"cocaine":0,"weed":0,"lsd":0}},"inventory":{"kebab":{"amount":9},"wbody|WEAPON_KNIFE":{"amount":2},"wammo|WEAPON_COMBATPISTOL":{"amount":100},"redbull":{"amount":19},"wammo|WEAPON_SNIPERRIFLE":{"amount":29}},"hunger":32.018996190222}'),
584(50, 'vRP:head:overlay', '{"2":[255,1,0],"1":[255,1,12],"0":[255,0,1],"3":[255,0,3],"6":[0,0,0],"12":[3,0,7],"7":[255,0,0],"9":[255,0,0],"8":[255,2,0],"-1":[0,0,0],"10":[0,1,1],"5":[255,2,1],"4":[8,0,0],"11":[255,0,1]}'),
585(51, 'vRP:datatable', '{"customization":{"1":[0,0,2],"2":[0,0,2],"3":[0,0,2],"4":[0,0,2],"5":[0,0,2],"6":[0,0,2],"7":[0,0,2],"8":[0,0,2],"9":[0,1,2],"10":[0,0,2],"11":[0,0,2],"12":[0,2,0],"13":[0,2,0],"14":[0,2,255],"15":[0,2,100],"16":[0,2,255],"17":[256,2,255],"18":[33686018,2,255],"19":[33686018,2,255],"20":[33686018,2,255],"p6":[-1,0],"p5":[-1,0],"p4":[-1,0],"p3":[-1,0],"p1":[-1,0],"p2":[-1,0],"p0":[-1,0],"p9":[-1,0],"0":[0,0,2],"p7":[-1,0],"p8":[-1,0],"p10":[-1,0],"modelhash":1885233650},"weapons":[],"thirst":13.315956177064,"health":200,"position":{"x":-513.05065917969,"y":-293.78890991211,"z":35.388813018799},"groups":{"UBER":true,"user":true},"hunger":10.157978088532,"inventory":[]}'),
586(52, 'vRP:datatable', '{"groups":{"user":true},"health":200,"inventory":[],"weapons":[],"position":{"y":-685.33636474609,"z":43.665718078613,"x":77.900382995605},"customization":{"1":[0,0,2],"2":[0,0,2],"3":[0,0,2],"4":[0,0,2],"5":[0,0,2],"6":[0,0,2],"7":[0,0,2],"8":[0,0,2],"9":[0,1,2],"10":[0,0,2],"11":[0,0,2],"12":[0,2,0],"13":[0,2,0],"14":[0,2,255],"15":[0,2,100],"16":[0,2,255],"17":[256,2,255],"18":[33686018,2,255],"19":[33686018,2,255],"20":[33686018,2,255],"0":[0,0,2],"modelhash":1885233650,"p10":[-1,0],"p0":[-1,0],"p2":[-1,0],"p1":[-1,0],"p5":[-1,0],"p6":[-1,0],"p3":[-1,0],"p4":[-1,0],"p9":[-1,0],"p8":[-1,0],"p7":[-1,0]},"thirst":13.128716999245,"hunger":9.8143584996227}'),
587(53, 'vRP:datatable', '{"groups":{"user":true,"UBER":true},"health":120,"inventory":{"car_doc|bmwm4":{"amount":1},"shaorma":{"amount":8},"water":{"amount":4}},"gaptitudes":{"hacker":{"lua":0,"logic":0,"c++":0,"hacking":0},"science":{"minerit":0,"chemicals":0,"mathematics":0},"physical":{"strength":30},"laboratory":{"cocaine":0,"lsd":0,"weed":0},"level":{"lvl":0}},"weapons":{"WEAPON_COMBATPISTOL":{"ammo":243}},"position":{"y":-234.21556091309,"z":38.061923980713,"x":-622.833984375},"customization":{"1":[0,0,2],"2":[3,4,2],"3":[17,0,2],"4":[7,0,2],"5":[0,0,0],"6":[32,0,2],"7":[0,0,2],"8":[60,0,2],"9":[0,1,2],"10":[0,0,2],"11":[86,0,2],"12":[0,2,0],"13":[0,2,0],"14":[0,2,255],"15":[262144,2,228],"16":[0,2,255],"17":[256,0,255],"18":[33686018,2,255],"19":[33685506,2,255],"20":[33686018,2,255],"0":[3,0,2],"modelhash":1885233650,"p10":[-1,0],"p0":[-1,0],"p2":[-1,0],"p1":[-1,0],"p5":[-1,0],"p6":[-1,0],"p3":[-1,0],"p4":[-1,0],"p9":[-1,0],"p8":[-1,0],"p7":[-1,0]},"hunger":7.7509003902979,"thirst":12.747254717844}'),
588(53, 'vRP:head:overlay', '{"11":[255,0,0],"12":[255,0,0],"10":[255,1,0],"8":[255,2,0],"7":[255,0,0],"9":[255,0,0],"4":[255,0,0],"3":[255,0,0],"6":[255,0,0],"5":[255,2,0],"0":[255,0,0],"-1":[3,0,0],"2":[255,1,0],"1":[255,1,0]}'),
589(54, 'vRP:datatable', '{"groups":{"user":true},"inventory":[],"position":{"y":-209.37091064453,"z":37.454605102539,"x":-542.87371826171},"customization":{"1":[0,0],"2":[0,0],"3":[0,0],"4":[0,0],"5":[0,0],"6":[0,0],"7":[0,0],"8":[0,0],"9":[0,0],"10":[0,0],"11":[0,0],"12":[0,0],"13":[0,0],"14":[0,0],"15":[0,0],"16":[0,0],"17":[0,0],"18":[0,0],"19":[0,0],"model":"mp_m_freemode_01","0":[0,0]},"thirst":1.5,"hunger":1.5}'),
590(55, 'vRP:datatable', '{"groups":{"user":true},"health":200,"inventory":[],"weapons":[],"position":{"y":-254.45964050293,"z":35.692779541016,"x":-502.06994628906},"customization":{"1":[0,0,2],"2":[0,0,2],"3":[0,0,2],"4":[0,0,2],"5":[0,0,2],"6":[0,0,2],"7":[0,0,2],"8":[0,0,2],"9":[0,1,2],"10":[0,0,2],"11":[0,0,2],"12":[0,2,0],"13":[0,2,0],"14":[0,2,255],"15":[0,2,100],"16":[0,2,255],"17":[256,2,255],"18":[33686018,2,255],"19":[33686018,2,255],"20":[33686018,2,255],"0":[0,0,2],"modelhash":1885233650,"p10":[-1,0],"p0":[-1,0],"p2":[-1,0],"p1":[-1,0],"p5":[-1,0],"p6":[-1,0],"p3":[-1,0],"p4":[-1,0],"p9":[-1,0],"p8":[-1,0],"p7":[-1,0]},"thirst":3.4939386222921,"hunger":2.9969693111461}'),
591(56, 'vRP:datatable', '{"groups":{"user":true},"health":200,"inventory":[],"weapons":[],"position":{"y":-256.3913269043,"z":35.586181640625,"x":-497.79049682617},"customization":{"1":[0,0,2],"2":[0,0,2],"3":[0,0,2],"4":[0,0,2],"5":[0,0,2],"6":[0,0,2],"7":[0,0,2],"8":[0,0,2],"9":[0,1,2],"10":[0,0,2],"11":[0,0,2],"12":[0,2,0],"13":[0,2,0],"14":[0,2,255],"15":[0,2,100],"16":[0,2,255],"17":[256,2,255],"18":[33686018,2,255],"19":[33686018,2,255],"20":[33686018,2,255],"0":[0,0,2],"modelhash":1885233650,"p10":[-1,0],"p0":[-1,0],"p2":[-1,0],"p1":[-1,0],"p5":[-1,0],"p6":[-1,0],"p3":[-1,0],"p4":[-1,0],"p9":[-1,0],"p8":[-1,0],"p7":[-1,0]},"thirst":4.0043676931527,"hunger":3.0021838465764}'),
592(57, 'vRP:datatable', '{"groups":{"user":true},"health":200,"inventory":[],"weapons":[],"position":{"y":-292.05456542969,"z":35.664077758789,"x":-483.28146362305},"customization":{"1":[0,0,2],"2":[0,0,2],"3":[0,0,2],"4":[0,0,2],"5":[0,0,2],"6":[0,0,2],"7":[0,0,2],"8":[0,0,2],"9":[0,1,2],"10":[0,0,2],"11":[0,0,2],"12":[0,2,0],"13":[0,2,0],"14":[0,2,255],"15":[0,2,228],"16":[0,2,255],"17":[256,2,255],"18":[33686018,2,255],"19":[33686018,2,255],"20":[33686018,2,255],"0":[0,0,2],"modelhash":1885233650,"p10":[-1,0],"p0":[-1,0],"p2":[-1,0],"p1":[-1,0],"p5":[-1,0],"p6":[-1,0],"p3":[-1,0],"p4":[-1,0],"p9":[-1,0],"p8":[-1,0],"p7":[-1,0]},"thirst":7.9068753256093,"hunger":5.7034376628047}'),
593(58, 'vRP:datatable', '{"groups":{"user":true},"health":120,"inventory":[],"weapons":[],"position":{"y":-994.97772216797,"z":29.80633354187,"x":407.67059326172},"customization":{"1":[0,0,2],"2":[0,0,2],"3":[0,0,2],"4":[0,0,2],"5":[0,0,2],"6":[0,0,2],"7":[0,0,2],"8":[0,0,2],"9":[0,1,2],"10":[0,0,2],"11":[0,0,2],"12":[0,2,0],"13":[0,2,0],"14":[0,2,255],"15":[0,2,100],"16":[0,2,255],"17":[256,2,255],"18":[33686018,2,255],"19":[33686018,2,255],"20":[33686018,2,255],"0":[0,0,2],"modelhash":1885233650,"p10":[-1,0],"p0":[-1,0],"p2":[-1,0],"p1":[-1,0],"p5":[-1,0],"p6":[-1,0],"p3":[-1,0],"p4":[-1,0],"p9":[-1,0],"p8":[-1,0],"p7":[-1,0]},"thirst":21.276759165712,"hunger":16.138379582856}'),
594(59, 'vRP:datatable', '{"thirst":21.809886617656,"inventory":[],"groups":{"user":true},"hunger":15.904943308828,"weapons":[],"position":{"y":-971.11669921875,"z":28.816946029663,"x":263.02493286133},"customization":{"1":[0,0,2],"2":[0,0,2],"3":[0,0,2],"4":[0,0,2],"5":[0,0,2],"6":[0,0,2],"7":[0,0,2],"8":[0,0,2],"9":[0,1,2],"10":[0,0,2],"11":[0,0,2],"12":[0,2,0],"13":[0,2,0],"14":[0,2,255],"15":[0,2,228],"16":[0,2,255],"17":[256,2,255],"18":[33686018,2,255],"19":[33686018,2,255],"20":[33686018,2,255],"0":[0,0,2],"p10":[-1,0],"modelhash":1885233650,"p0":[-1,0],"p1":[-1,0],"p3":[-1,0],"p4":[-1,0],"p5":[-1,0],"p6":[-1,0],"p8":[-1,0],"p7":[-1,0],"p2":[-1,0],"p9":[-1,0]},"health":200}'),
595(60, 'vRP:datatable', '{"groups":[],"thirst":1.0,"inventory":[],"hunger":1.0}'),
596(61, 'vRP:datatable', '{"inventory":{"water":{"amount":5},"sandwich":{"amount":5}},"gaptitudes":{"physical":{"strength":30},"level":{"lvl":0},"science":{"mathematics":0,"chemicals":0,"minerit":0},"laboratory":{"weed":0,"lsd":0,"cocaine":0},"hacker":{"c++":0,"lua":0,"hacking":0,"logic":0}},"hunger":12.441837492154,"position":{"z":26.435819625854,"y":-1111.8521728516,"x":-53.389019012451},"thirst":16.883674984308,"groups":{"user":true},"health":200,"weapons":[],"customization":{"1":[0,0,2],"2":[0,0,2],"3":[22,0,2],"4":[4,0,2],"5":[0,0,0],"6":[25,0,2],"7":[0,0,2],"8":[24,1,2],"9":[0,1,2],"10":[0,0,2],"11":[64,0,2],"12":[0,2,0],"13":[0,2,0],"14":[0,2,255],"15":[0,2,100],"16":[0,2,255],"17":[257,0,255],"18":[33686018,2,255],"19":[33685506,2,255],"20":[33686018,2,255],"0":[0,0,2],"p1":[-1,0],"p0":[-1,0],"modelhash":1885233650,"p10":[-1,0],"p7":[-1,0],"p6":[-1,0],"p9":[-1,0],"p8":[-1,0],"p2":[-1,0],"p3":[-1,0],"p4":[-1,0],"p5":[-1,0]}}'),
597(61, 'vRP:head:overlay', '{"6":[255,0,0],"7":[255,0,0],"4":[255,0,0],"5":[255,2,0],"11":[255,0,0],"10":[255,1,0],"8":[255,2,0],"9":[255,0,0],"-1":[1,0,5],"12":[255,0,0],"2":[255,1,0],"3":[255,0,0],"0":[255,0,0],"1":[18,1,0]}'),
598(62, 'vRP:datatable', '{"groups":{"user":true,"Agent":true,"fondator":true},"customization":{"p5":[-1,0],"15":[0,2,112],"p3":[-1,0],"13":[0,0,0],"p1":[0,0],"6":[0,0,0],"5":[0,0,0],"4":[0,0,2],"3":[0,0,2],"2":[0,0,0],"1":[0,0,0],"0":[2,0,2],"9":[0,0,2],"8":[0,0,0],"7":[0,0,0],"19":[2,0,0],"p7":[-1,0],"17":[0,0,0],"p9":[-1,0],"16":[0,2,0],"10":[0,0,0],"14":[0,0,255],"p4":[-1,0],"p2":[-1,0],"p0":[0,0],"p8":[-1,0],"modelhash":1456041926,"20":[512,0,0],"18":[33554434,0,0],"p6":[-1,0],"11":[0,0,0],"12":[0,2,0],"p10":[-1,0]},"position":{"z":22.896646499634,"y":-1120.9523925781,"x":-258.6435546875},"health":200,"thirst":37.286370069712,"weapons":[],"gaptitudes":{"level":{"lvl":0},"science":{"minerit":0,"mathematics":0,"chemicals":0},"physical":{"strength":30},"laboratory":{"weed":0,"cocaine":0,"lsd":0},"hacker":{"hacking":0,"lua":0,"logic":0,"c++":0}},"inventory":{"minereunecunoscut":{"amount":10}},"cloakroom_idle":{"p5":[-1,0],"15":[0,2,100],"p3":[-1,0],"13":[0,2,0],"p1":[-1,0],"6":[0,0,2],"5":[0,0,0],"4":[0,0,2],"3":[0,0,2],"2":[0,0,2],"1":[0,0,2],"0":[0,0,2],"9":[0,1,2],"8":[0,0,2],"7":[0,0,2],"19":[33685506,2,255],"p7":[-1,0],"17":[256,0,255],"p9":[-1,0],"16":[0,2,255],"10":[0,0,2],"14":[0,2,255],"p4":[-1,0],"p2":[-1,0],"p0":[-1,0],"p8":[-1,0],"modelhash":1885233650,"20":[33686018,2,255],"18":[33686018,2,255],"p6":[-1,0],"11":[0,0,2],"12":[0,2,0],"p10":[-1,0]},"hunger":33.393185034856}'),
599(63, 'vRP:datatable', '{"weapons":[],"inventory":[],"hunger":0.088062300847806,"health":175,"groups":{"user":true},"position":{"y":-1114.037109375,"z":26.435815811157,"x":-58.885845184326},"customization":{"1":[0,0,0],"2":[0,0,0],"3":[0,0,0],"4":[0,0,0],"5":[0,0,0],"6":[0,0,0],"7":[0,0,0],"8":[0,0,0],"9":[0,0,0],"10":[0,0,0],"11":[0,0,0],"12":[0,0,0],"13":[0,0,0],"14":[0,0,255],"15":[0,0,116],"16":[0,0,255],"17":[0,0,255],"18":[0,0,255],"19":[0,0,255],"20":[0,0,255],"0":[0,0,0],"p10":[-1,0],"p0":[-1,0],"modelhash":-1044093321,"p2":[-1,0],"p3":[-1,0],"p4":[-1,0],"p5":[-1,0],"p6":[-1,0],"p8":[-1,0],"p7":[-1,0],"p1":[-1,0],"p9":[-1,0]},"thirst":0.17612460169561}'),
600(64, 'vRP:datatable', '{"thirst":0.35108571679362,"inventory":[],"hunger":0.17554285839681,"health":175,"groups":{"user":true},"position":{"y":-1113.2322998047,"z":26.43581199646,"x":-56.777538299561},"customization":{"1":[0,0,2],"2":[10,3,2],"3":[0,0,2],"4":[106,3,2],"5":[0,0,2],"6":[19,3,2],"7":[0,0,2],"8":[40,8,2],"9":[0,1,2],"10":[0,0,2],"11":[273,1,2],"12":[0,2,0],"13":[0,2,0],"14":[0,2,255],"15":[196608,2,102],"16":[196611,2,255],"17":[16777480,2,255],"18":[33686018,2,255],"19":[33686018,2,255],"20":[33686018,2,255],"0":[40,0,2],"p10":[-1,0],"p4":[-1,0],"p3":[-1,0],"p8":[-1,0],"p2":[-1,0],"p1":[-1,0],"p5":[-1,0],"p6":[-1,0],"modelhash":-1667301416,"p7":[-1,0],"p0":[-1,0],"p9":[-1,0]},"weapons":[]}'),
601(65, 'vRP:datatable', '{"groups":{"user":true},"thirst":2.1011004549069,"hunger":1.0505502274535,"health":200,"inventory":[],"position":{"y":-262.59423828125,"z":35.547283172607,"x":-506.70373535156},"customization":{"1":[0,0,2],"2":[0,0,2],"3":[0,0,2],"4":[0,0,2],"5":[0,0,2],"6":[0,0,2],"7":[0,0,2],"8":[0,0,2],"9":[0,1,2],"10":[0,0,2],"11":[0,0,2],"12":[0,2,0],"13":[0,2,0],"14":[0,2,255],"15":[0,2,100],"16":[0,2,255],"17":[256,2,255],"18":[33686018,2,255],"19":[33686018,2,255],"20":[33686018,2,255],"0":[0,0,2],"p10":[-1,0],"p5":[-1,0],"modelhash":1885233650,"p3":[-1,0],"p2":[-1,0],"p1":[-1,0],"p0":[-1,0],"p6":[-1,0],"p8":[-1,0],"p7":[-1,0],"p4":[-1,0],"p9":[-1,0]},"weapons":[]}'),
602(66, 'vRP:datatable', '{"inventory":[],"hunger":0,"groups":{"user":true},"position":{"y":-209.38305664063,"z":37.331741333007,"x":-542.82550048828},"customization":{"1":[0,0],"2":[0,0],"3":[0,0],"4":[0,0],"5":[0,0],"6":[0,0],"7":[0,0],"8":[0,0],"9":[0,0],"10":[0,0],"11":[0,0],"12":[0,0],"13":[0,0],"14":[0,0],"15":[0,0],"16":[0,0],"17":[0,0],"18":[0,0],"19":[0,0],"0":[0,0],"model":"mp_m_freemode_01"},"thirst":0}'),
603(67, 'vRP:datatable', '{"thirst":1.2192028108856,"inventory":[],"hunger":0.60960140544282,"health":200,"groups":{"user":true,"UBER":true},"position":{"y":-1113.1260986328,"z":26.43579864502,"x":-59.452301025391},"customization":{"p10":[-1,0],"p2":[-1,0],"15":[0,2,100],"p5":[-1,0],"10":[0,0,2],"modelhash":1885233650,"p7":[-1,0],"19":[33686018,2,255],"p9":[-1,0],"9":[0,1,2],"7":[0,0,2],"8":[0,0,2],"5":[0,0,2],"6":[0,0,2],"3":[0,0,2],"4":[0,0,2],"1":[0,0,2],"2":[0,0,2],"14":[0,2,255],"0":[0,0,2],"p8":[-1,0],"18":[33686018,2,255],"16":[0,2,255],"17":[256,2,255],"13":[0,2,0],"12":[0,2,0],"11":[0,0,2],"p3":[-1,0],"p1":[-1,0],"p0":[-1,0],"20":[33686018,2,255],"p6":[-1,0],"p4":[-1,0]},"weapons":[]}'),
604(68, 'vRP:datatable', '{"position":{"y":286.84078979492,"x":588.35003662109,"z":103.48160552979},"groups":{"user":true,"Helper":true,"Membru Cartel Di Medellin":true},"thirst":45.930600566036,"inventory":{"lemonade":{"amount":48}},"health":161,"hunger":100,"weapons":{"WEAPON_SNIPERRIFLE":{"ammo":221},"WEAPON_PETROLCAN":{"ammo":0},"WEAPON_KNIFE":{"ammo":0},"WEAPON_COMBATPISTOL":{"ammo":0},"WEAPON_ASSAULTRIFLE":{"ammo":0}},"customization":{"1":[0,0,2],"2":[32,0,2],"3":[0,0,2],"4":[26,0,2],"5":[0,0,0],"6":[25,0,2],"7":[0,0,2],"8":[1,0,2],"9":[0,1,2],"10":[0,0,2],"11":[6,0,2],"12":[0,2,0],"13":[0,2,0],"14":[0,2,255],"15":[0,2,100],"16":[0,2,255],"17":[256,0,255],"18":[33686018,2,255],"19":[33685506,2,255],"20":[33686018,2,255],"0":[0,0,2],"p8":[-1,0],"p9":[-1,0],"modelhash":1885233650,"p7":[-1,0],"p6":[-1,0],"p0":[-1,0],"p10":[-1,0],"p1":[-1,0],"p3":[-1,0],"p2":[-1,0],"p5":[-1,0],"p4":[-1,0]},"gaptitudes":{"laboratory":{"lsd":0,"weed":0,"cocaine":0},"physical":{"strength":30},"level":{"lvl":0},"science":{"chemicals":0,"minerit":0,"mathematics":0},"hacker":{"logic":0,"c++":0,"hacking":0,"lua":0}}}'),
605(69, 'vRP:datatable', '{"weapons":[],"inventory":[],"hunger":1.8685057232756,"health":120,"groups":{"user":true},"position":{"y":-1048.3885498047,"z":29.410844802856,"x":397.48922729492},"customization":{"1":[0,0,2],"2":[0,0,2],"3":[0,0,2],"4":[0,0,2],"5":[0,0,2],"6":[0,0,2],"7":[0,0,2],"8":[0,0,2],"9":[0,1,2],"10":[0,0,2],"11":[0,0,2],"12":[0,2,0],"13":[0,2,0],"14":[0,2,255],"15":[0,2,100],"16":[0,2,255],"17":[256,2,255],"18":[33686018,2,255],"19":[33686018,2,255],"20":[33686018,2,255],"0":[0,0,2],"p10":[-1,0],"p4":[-1,0],"p8":[-1,0],"p0":[-1,0],"p3":[-1,0],"p1":[-1,0],"p5":[-1,0],"p6":[-1,0],"modelhash":1885233650,"p7":[-1,0],"p2":[-1,0],"p9":[-1,0]},"thirst":3.7370114465511}'),
606(70, 'vRP:datatable', '{"weapons":[],"inventory":[],"hunger":3.4227345451398,"health":200,"groups":{"user":true},"position":{"y":-222.61639404297,"z":37.649787902832,"x":-538.23620605469},"customization":{"1":[0,0,2],"2":[0,0,2],"3":[0,0,2],"4":[0,0,2],"5":[0,0,2],"6":[0,0,2],"7":[0,0,2],"8":[0,0,2],"9":[0,1,2],"10":[0,0,2],"11":[0,0,2],"12":[0,2,0],"13":[0,2,0],"14":[0,2,255],"15":[0,2,100],"16":[0,2,255],"17":[256,2,255],"18":[33686018,2,255],"19":[33686018,2,255],"20":[33686018,2,255],"0":[0,0,2],"p10":[-1,0],"modelhash":1885233650,"p2":[-1,0],"p4":[-1,0],"p3":[-1,0],"p1":[-1,0],"p0":[-1,0],"p6":[-1,0],"p8":[-1,0],"p7":[-1,0],"p5":[-1,0],"p9":[-1,0]},"thirst":6.8454690902796}'),
607(71, 'vRP:datatable', '{"groups":[],"thirst":0,"hunger":0,"inventory":[]}'),
608(72, 'vRP:datatable', '{"groups":[],"thirst":0,"hunger":0,"inventory":[]}'),
609(73, 'vRP:datatable', '{"weapons":[],"inventory":[],"hunger":1.2030929925528,"health":200,"groups":{"user":true},"position":{"y":-229.58850097656,"z":36.696479797363,"x":-524.99096679688},"customization":{"1":[0,0,2],"2":[0,0,2],"3":[0,0,2],"4":[0,0,2],"5":[0,0,2],"6":[0,0,2],"7":[0,0,2],"8":[0,0,2],"9":[0,1,2],"10":[0,0,2],"11":[0,0,2],"12":[0,2,0],"13":[0,2,0],"14":[0,2,255],"15":[0,2,100],"16":[0,2,255],"17":[256,2,255],"18":[33686018,2,255],"19":[33686018,2,255],"20":[33686018,2,255],"0":[0,0,2],"p10":[-1,0],"p4":[-1,0],"p0":[-1,0],"modelhash":1885233650,"p2":[-1,0],"p1":[-1,0],"p5":[-1,0],"p6":[-1,0],"p8":[-1,0],"p7":[-1,0],"p3":[-1,0],"p9":[-1,0]},"thirst":2.4061859851057}'),
610(74, 'vRP:datatable', '{"weapons":[],"inventory":[],"hunger":1.2146478837429,"health":200,"groups":{"user":true},"position":{"y":-254.84744262695,"z":35.897537231445,"x":-551.13977050781},"customization":{"1":[0,0,2],"2":[0,0,2],"3":[0,0,2],"4":[0,0,2],"5":[0,0,2],"6":[0,0,2],"7":[0,0,2],"8":[0,0,2],"9":[0,1,2],"10":[0,0,2],"11":[0,0,2],"12":[0,2,0],"13":[0,2,0],"14":[0,2,255],"15":[0,2,100],"16":[0,2,255],"17":[256,2,255],"18":[33686018,2,255],"19":[33686018,2,255],"20":[33686018,2,255],"0":[0,0,2],"p10":[-1,0],"p2":[-1,0],"p1":[-1,0],"p5":[-1,0],"p3":[-1,0],"p4":[-1,0],"p0":[-1,0],"p6":[-1,0],"modelhash":1885233650,"p7":[-1,0],"p8":[-1,0],"p9":[-1,0]},"thirst":2.4292957674858}'),
611(75, 'vRP:datatable', '{"inventory":[],"groups":{"user":true},"health":200,"thirst":2.3879734539791,"hunger":1.9439867269896,"customization":{"p10":[-1,0],"9":[0,1,2],"7":[0,0,2],"8":[0,0,2],"5":[0,0,2],"6":[0,0,2],"3":[0,0,2],"4":[0,0,2],"1":[0,0,2],"2":[0,0,2],"17":[256,2,255],"0":[0,0,2],"15":[0,2,100],"13":[0,2,0],"p3":[-1,0],"p1":[-1,0],"modelhash":1885233650,"p9":[-1,0],"19":[33686018,2,255],"20":[33686018,2,255],"p0":[-1,0],"10":[0,0,2],"p8":[-1,0],"18":[33686018,2,255],"14":[0,2,255],"16":[0,2,255],"p4":[-1,0],"p2":[-1,0],"p6":[-1,0],"p7":[-1,0],"11":[0,0,2],"12":[0,2,0],"p5":[-1,0]},"position":{"x":81.04808807373,"y":-1056.2330322266,"z":29.435483932495},"weapons":[]}'),
612(76, 'vRP:datatable', '{"inventory":[],"health":120,"customization":{"1":[0,0,0],"2":[0,0,0],"3":[0,0,2],"4":[0,0,0],"5":[0,0,0],"6":[0,0,0],"7":[0,0,0],"8":[0,0,0],"9":[0,1,2],"10":[0,0,0],"11":[0,0,0],"12":[0,0,0],"13":[0,0,0],"14":[0,0,255],"15":[0,2,112],"16":[0,0,255],"17":[256,0,255],"18":[33554432,0,255],"19":[0,0,255],"20":[512,0,255],"p1":[-1,0],"p0":[-1,0],"p3":[-1,0],"p2":[-1,0],"p4":[-1,0],"p5":[-1,0],"p6":[-1,0],"p7":[-1,0],"p9":[-1,0],"p8":[-1,0],"0":[0,0,0],"modelhash":1456041926,"p10":[-1,0]},"cloakroom_idle":{"10":[0,0,2],"p0":[-1,0],"12":[0,2,0],"20":[33686018,2,3],"p4":[-1,0],"16":[0,2,2],"p6":[-1,0],"14":[0,2,255],"18":[33686018,2,0],"p8":[-1,0],"modelhash":1885233650,"2":[33,0,2],"11":[279,0,2],"0":[22,0,2],"1":[0,0,2],"6":[12,0,2],"p5":[-1,0],"15":[0,2,100],"5":[0,0,2],"p9":[-1,0],"19":[33686018,2,0],"p10":[-1,0],"p3":[-1,0],"3":[0,0,2],"p2":[3,0],"17":[256,2,0],"7":[0,0,2],"4":[4,0,2],"p7":[-1,0],"8":[113,0,2],"9":[0,1,2],"13":[0,2,0],"p1":[-1,0]},"groups":{"Agent":true,"cop":true,"user":true},"thirst":100,"position":{"z":30.271480560303,"x":421.16036987305,"y":-977.10864257813},"hunger":68.078666838057,"weapons":{"WEAPON_STUNGUN":{"ammo":0},"WEAPON_FLASHLIGHT":{"ammo":0},"WEAPON_COMBATPISTOL":{"ammo":226},"WEAPON_NIGHTSTICK":{"ammo":0},"WEAPON_CARBINERIFLE":{"ammo":40},"WEAPON_PUMPSHOTGUN":{"ammo":230}}}'),
613(77, 'vRP:datatable', '{"weapons":[],"inventory":[],"hunger":13.645426136468,"health":200,"groups":{"user":true},"position":{"y":-1179.5223388672,"z":29.359790802002,"x":53.051704406738},"customization":{"1":[0,0,2],"2":[0,0,2],"3":[0,0,2],"4":[0,0,2],"5":[0,0,2],"6":[0,0,2],"7":[0,0,2],"8":[0,0,2],"9":[0,1,2],"10":[0,0,2],"11":[0,0,2],"12":[0,2,0],"13":[0,2,0],"14":[0,2,255],"15":[0,2,100],"16":[0,2,255],"17":[256,2,255],"18":[33686018,2,255],"19":[33686018,2,255],"20":[33686018,2,255],"0":[0,0,2],"p10":[-1,0],"modelhash":1885233650,"p1":[-1,0],"p0":[-1,0],"p2":[-1,0],"p4":[-1,0],"p5":[-1,0],"p6":[-1,0],"p8":[-1,0],"p7":[-1,0],"p3":[-1,0],"p9":[-1,0]},"thirst":27.290852272935}'),
614(78, 'vRP:datatable', '{"hunger":100,"gaptitudes":{"level":{"lvl":0},"physical":{"strength":30},"laboratory":{"weed":0,"cocaine":0,"lsd":0},"hacker":{"c++":0,"logic":0,"hacking":0,"lua":0},"science":{"chemicals":0,"minerit":0,"mathematics":0}},"inventory":[],"weapons":[],"thirst":100,"customization":{"p4":[-1,0],"14":[0,2,255],"18":[33686018,2,255],"16":[0,2,255],"1":[0,0,2],"p8":[-1,0],"3":[0,0,2],"2":[0,0,2],"5":[0,0,0],"4":[0,0,2],"7":[0,0,2],"6":[0,0,2],"10":[0,0,2],"20":[33686018,2,255],"12":[0,2,0],"p0":[-1,0],"15":[0,2,228],"p5":[-1,0],"17":[256,0,255],"19":[33685506,2,255],"p9":[-1,0],"modelhash":1885233650,"p3":[-1,0],"11":[0,0,2],"p1":[-1,0],"13":[0,2,0],"0":[0,0,2],"9":[0,1,2],"8":[0,0,2],"p2":[-1,0],"p10":[-1,0],"p6":[-1,0],"p7":[-1,0]},"health":120,"position":{"y":-1110.4345703125,"x":-47.169261932373,"z":26.433563232422},"groups":{"user":true,"Vacar":true,"cop":true}}'),
615(79, 'vRP:datatable', '{"hunger":6.7637855328187,"inventory":[],"weapons":[],"customization":{"18":[33686018,2,255],"p6":[-1,0],"16":[0,2,255],"p8":[-1,0],"p2":[-1,0],"12":[0,2,0],"10":[0,0,2],"20":[33686018,2,255],"p0":[-1,0],"p10":[-1,0],"7":[0,0,2],"17":[256,2,255],"14":[0,2,255],"modelhash":1885233650,"13":[0,2,0],"19":[33686018,2,255],"p7":[-1,0],"5":[0,0,2],"4":[0,0,2],"3":[0,0,2],"2":[0,0,2],"9":[0,1,2],"8":[0,0,2],"15":[0,2,100],"p5":[-1,0],"p1":[-1,0],"p3":[-1,0],"p4":[-1,0],"11":[0,0,2],"1":[0,0,2],"0":[0,0,2],"p9":[-1,0],"6":[0,0,2]},"thirst":8.0275710656375,"health":200,"groups":{"user":true},"position":{"y":-267.91320800781,"x":-121.075340271,"z":42.917663574219}}'),
616(80, 'vRP:datatable', '{"groups":[],"hunger":1.5,"inventory":[],"thirst":1.5}'),
617(81, 'vRP:datatable', '{"groups":[],"hunger":1.0,"inventory":[],"thirst":1.0}'),
618(82, 'vRP:datatable', '{"thirst":1.0,"groups":[],"hunger":1.0,"inventory":[]}'),
619(83, 'vRP:datatable', '{"hunger":1.0112998341781,"groups":{"user":true},"customization":{"1":[0,0],"2":[0,0],"3":[0,0],"4":[0,0],"5":[0,0],"6":[0,0],"7":[0,0],"8":[0,0],"9":[0,0],"10":[0,0],"11":[0,0],"12":[0,0],"13":[0,0],"14":[0,0],"15":[0,0],"16":[0,0],"17":[0,0],"18":[0,0],"19":[0,0],"0":[0,0],"model":"mp_m_freemode_01"},"position":{"y":-209.41693115235,"z":36.98225402832,"x":-541.95983886718},"inventory":[],"thirst":1.0225996683563}'),
620(84, 'vRP:datatable', '{"hunger":1.0,"groups":[],"thirst":1.0,"inventory":[]}'),
621(85, 'vRP:datatable', '{"weapons":[],"inventory":[],"hunger":0.71111006892201,"health":200,"groups":{"user":true},"position":{"y":-1016.0765991211,"z":29.206495285034,"x":190.93962097168},"customization":{"1":[0,0,2],"2":[0,0,2],"3":[0,0,2],"4":[0,0,2],"5":[0,0,2],"6":[0,0,2],"7":[0,0,2],"8":[0,0,2],"9":[0,1,2],"10":[0,0,2],"11":[0,0,2],"12":[0,2,0],"13":[0,2,0],"14":[0,2,255],"15":[0,2,100],"16":[0,2,255],"17":[256,2,255],"18":[33686018,2,255],"19":[33686018,2,255],"20":[33686018,2,255],"0":[0,0,2],"p10":[-1,0],"modelhash":1885233650,"p3":[-1,0],"p0":[-1,0],"p2":[-1,0],"p4":[-1,0],"p5":[-1,0],"p6":[-1,0],"p8":[-1,0],"p7":[-1,0],"p1":[-1,0],"p9":[-1,0]},"thirst":1.422220137844}'),
622(86, 'vRP:datatable', '{"inventory":[],"hunger":0.014547540175456,"groups":{"user":true},"position":{"y":-209.14971923828,"z":37.370132446289,"x":-541.25366210937},"customization":{"1":[0,0],"2":[0,0],"3":[0,0],"4":[0,0],"5":[0,0],"6":[0,0],"7":[0,0],"8":[0,0],"9":[0,0],"10":[0,0],"11":[0,0],"12":[0,0],"13":[0,0],"14":[0,0],"15":[0,0],"16":[0,0],"17":[0,0],"18":[0,0],"19":[0,0],"0":[0,0],"model":"mp_m_freemode_01"},"thirst":0.029095080350912}'),
623(87, 'vRP:datatable', '{"customization":{"1":[0,0,2],"2":[7,0,2],"3":[1,0,2],"4":[24,0,2],"5":[0,0,2],"6":[12,0,2],"7":[0,0,2],"8":[0,0,2],"9":[0,1,2],"10":[2,0,2],"11":[86,0,2],"12":[0,2,0],"13":[0,2,0],"14":[0,2,255],"15":[0,2,110],"16":[0,2,1],"17":[256,2,0],"18":[33686018,2,0],"19":[33686018,2,0],"20":[33686018,2,2],"p2":[2,0],"p0":[-1,0],"p4":[-1,0],"p3":[-1,0],"p5":[-1,0],"p6":[-1,0],"p7":[-1,0],"p8":[-1,0],"p9":[-1,0],"0":[0,0,2],"p1":[2,0],"p10":[-1,0],"modelhash":1885233650},"weapons":{"WEAPON_COMBATPISTOL":{"ammo":17}},"position":{"z":26.435817718506,"y":-1110.4788818359,"x":-60.274871826172},"thirst":63.100248830308,"health":194,"inventory":[],"groups":{"user":true,"Fan Curier":true},"hunger":38.800124415154}'),
624(88, 'vRP:datatable', '{"inventory":[],"groups":{"user":true,"Vacar":true},"position":{"x":-95.469932556152,"y":-1071.9759521484,"z":26.915431976318},"weapons":[],"hunger":30.505095325857,"customization":{"1":[0,0,2],"2":[0,0,2],"3":[0,0,2],"4":[0,0,2],"5":[0,0,2],"6":[0,0,2],"7":[0,0,2],"8":[0,0,2],"9":[0,1,2],"10":[0,0,2],"11":[0,0,2],"12":[0,2,0],"13":[0,2,0],"14":[0,2,255],"15":[0,2,100],"16":[0,2,0],"17":[256,2,0],"18":[33686018,2,0],"19":[33686018,2,0],"20":[33686018,2,16],"p3":[-1,0],"p4":[-1,0],"p5":[-1,0],"p10":[-1,0],"p8":[-1,0],"p7":[-1,0],"p9":[-1,0],"0":[0,0,2],"modelhash":1885233650,"p2":[-1,0],"p1":[-1,0],"p0":[16,1],"p6":[-1,0]},"thirst":52.010190651714,"health":200}'),
625(89, 'vRP:datatable', '{"health":200,"position":{"y":-760.05163574219,"z":23.086038589478,"x":-1433.2121582031},"cloakroom_idle":{"1":[0,0,2],"2":[2,2,2],"3":[0,0,2],"4":[24,0,2],"5":[0,0,2],"6":[1,0,2],"7":[0,0,2],"8":[1,3,2],"9":[0,1,2],"10":[0,0,2],"11":[72,0,2],"12":[0,2,0],"13":[0,2,0],"14":[0,2,255],"15":[131072,2,100],"16":[0,2,255],"17":[259,2,255],"18":[33686018,2,255],"19":[33686018,2,255],"20":[33686018,2,255],"0":[0,0,2],"p10":[-1,0],"p2":[-1,0],"p1":[-1,0],"p0":[-1,0],"p3":[-1,0],"p4":[-1,0],"p5":[-1,0],"p6":[-1,0],"p8":[-1,0],"p7":[-1,0],"modelhash":1885233650,"p9":[-1,0]},"thirst":30.285437462902,"groups":{"Agent":true,"user":true,"cop":true},"weapons":{"WEAPON_FLASHLIGHT":{"ammo":0},"WEAPON_NIGHTSTICK":{"ammo":0},"WEAPON_COMBATPISTOL":{"ammo":238},"WEAPON_PUMPSHOTGUN":{"ammo":244},"WEAPON_CARBINERIFLE":{"ammo":250},"WEAPON_STUNGUN":{"ammo":0}},"inventory":[],"customization":{"1":[0,0,0],"2":[0,0,0],"3":[0,0,2],"4":[0,0,2],"5":[0,0,0],"6":[0,0,0],"7":[0,0,0],"8":[0,0,0],"9":[0,0,2],"10":[0,0,0],"11":[0,0,0],"12":[0,2,0],"13":[0,0,0],"14":[0,0,255],"15":[1,2,112],"16":[0,2,1],"17":[0,0,0],"18":[33554434,0,0],"19":[2,0,0],"20":[512,0,0],"0":[1,1,2],"p10":[-1,0],"p2":[-1,0],"p1":[0,0],"p0":[0,0],"p3":[-1,0],"p4":[-1,0],"p5":[-1,0],"p6":[-1,0],"p8":[-1,0],"p7":[-1,0],"modelhash":1456041926,"p9":[-1,0]},"hunger":15.142718731451}'),
626(90, 'vRP:datatable', '{"weapons":[],"inventory":[],"hunger":0.64327376389422,"health":200,"groups":{"Vacar":true,"user":true},"position":{"y":-577.44451904297,"z":108.53790283203,"x":-1558.9307861328},"customization":{"1":[0,0,2],"2":[0,0,2],"3":[0,0,2],"4":[0,0,2],"5":[0,0,2],"6":[0,0,2],"7":[0,0,2],"8":[0,0,2],"9":[0,1,2],"10":[0,0,2],"11":[0,0,2],"12":[0,2,0],"13":[0,2,0],"14":[0,2,255],"15":[0,2,100],"16":[0,2,255],"17":[256,2,255],"18":[33686018,2,255],"19":[33686018,2,255],"20":[33686018,2,255],"0":[0,0,2],"p10":[-1,0],"p5":[-1,0],"p4":[-1,0],"p8":[-1,0],"p2":[-1,0],"p1":[-1,0],"p0":[-1,0],"p6":[-1,0],"modelhash":1885233650,"p7":[-1,0],"p3":[-1,0],"p9":[-1,0]},"thirst":1.2865475277884}'),
627(91, 'vRP:datatable', '{"weapons":{"WEAPON_PISTOL":{"ammo":213}},"thirst":47.8756355299,"groups":{"user":true},"health":190,"inventory":[],"position":{"y":-991.65808105469,"z":29.26634979248,"x":405.57147216797},"customization":{"1":[0,0,2],"2":[0,0,2],"3":[11,0,2],"4":[24,4,2],"5":[0,0,2],"6":[36,0,2],"7":[0,0,2],"8":[7,12,2],"9":[0,1,2],"10":[0,0,2],"11":[40,0,2],"12":[0,2,0],"13":[0,2,0],"14":[0,2,255],"15":[0,2,100],"16":[4,2,0],"17":[268,2,0],"18":[33686018,2,0],"19":[33686018,2,0],"20":[33686018,2,30],"0":[0,0,2],"p10":[-1,0],"p8":[-1,0],"p0":[30,0],"p1":[-1,0],"p2":[-1,0],"p4":[-1,0],"p5":[-1,0],"p6":[-1,0],"modelhash":1885233650,"p7":[-1,0],"p3":[-1,0],"p9":[-1,0]},"hunger":23.93781776495}'),
628(92, 'vRP:datatable', '{"groups":[],"hunger":1.0,"inventory":[],"thirst":1.0}'),
629(93, 'vRP:datatable', '{"inventory":{"carne":{"amount":17}},"hunger":37.14499925108,"weapons":[],"thirst":100,"customization":{"11":[60,2,2],"13":[1024,2,0],"18":[33686018,2,0],"14":[0,2,255],"p4":[-1,0],"16":[0,2,1],"p6":[2,0],"6":[25,0,2],"7":[0,0,2],"4":[4,0,2],"5":[45,0,0],"8":[21,0,2],"9":[0,1,2],"20":[33686018,2,5],"10":[0,0,2],"19":[33685506,2,0],"12":[0,2,0],"p5":[-1,0],"15":[262144,2,100],"p7":[-1,0],"17":[33554688,0,0],"p0":[-1,0],"p2":[-1,0],"p1":[5,0],"0":[0,0,2],"modelhash":1885233650,"p9":[-1,0],"p8":[-1,0],"2":[21,4,2],"3":[8,0,2],"p3":[-1,0],"1":[0,0,2],"p10":[-1,0]},"groups":{"user":true,"Vacar":true},"position":{"z":33.263080596924,"x":544.83947753906,"y":-367.35900878906},"health":158,"gaptitudes":{"physical":{"strength":30},"science":{"mathematics":0,"chemicals":0,"minerit":0},"hacker":{"c++":0,"hacking":0,"logic":0,"lua":0},"laboratory":{"cocaine":0,"lsd":0,"weed":0},"level":{"lvl":0}}}'),
630(94, 'vRP:datatable', '{"inventory":{},"hunger":29.353408899014,"weapons":[],"thirst":16.892203023792,"customization":{"11":[72,2,2],"13":[0,2,0],"18":[33686018,2,0],"14":[16777216,2,255],"p3":[-1,0],"16":[0,2,2],"p6":[-1,0],"6":[10,0,2],"7":[0,0,2],"4":[10,0,2],"5":[0,0,0],"8":[21,0,2],"9":[0,1,2],"20":[33686018,2,19],"10":[3,0,2],"19":[33685506,2,0],"12":[0,2,0],"p5":[-1,0],"15":[65536,2,110],"p7":[-1,0],"17":[33554688,0,0],"p10":[-1,0],"p0":[-1,0],"p1":[18,0],"p2":[19,0],"modelhash":1885233650,"0":[10,0,2],"p9":[-1,0],"p8":[-1,0],"2":[7,1,2],"3":[5,0,2],"1":[0,0,2],"p4":[-1,0]},"groups":{"user":true,"Vacar":true},"position":{"z":35.342754364014,"x":-462.26245117188,"y":-272.67663574219},"health":159,"gaptitudes":{"level":{"lvl":0},"science":{"mathematics":0,"chemicals":0,"minerit":0},"hacker":{"c++":0,"hacking":0,"logic":0,"lua":0},"laboratory":{"cocaine":0,"lsd":0,"weed":0},"physical":{"strength":30}}}'),
631(95, 'vRP:datatable', '{"inventory":[],"weapons":[],"position":{"x":-377.5078125,"y":-302.39807128906,"z":33.308132171631},"hunger":7.6549178169232,"groups":{"user":true},"thirst":11.809835633846,"customization":{"1":[0,0,2],"2":[0,0,2],"3":[0,0,2],"4":[0,0,2],"5":[0,0,2],"6":[0,0,2],"7":[0,0,2],"8":[0,0,2],"9":[0,1,2],"10":[0,0,2],"11":[0,0,2],"12":[0,2,0],"13":[0,2,0],"14":[0,2,255],"15":[0,2,100],"16":[0,2,255],"17":[256,2,255],"18":[33686018,2,255],"19":[33686018,2,255],"20":[33686018,2,255],"p3":[-1,0],"p4":[-1,0],"p5":[-1,0],"p10":[-1,0],"p8":[-1,0],"p7":[-1,0],"p9":[-1,0],"0":[0,0,2],"p1":[-1,0],"p2":[-1,0],"modelhash":1885233650,"p0":[-1,0],"p6":[-1,0]},"health":200}'),
632(96, 'vRP:datatable', '{"inventory":[],"weapons":[],"position":{"x":-462.3108215332,"y":-269.34210205078,"z":35.765964508057},"hunger":3.3072169808612,"groups":{"user":true},"thirst":4.6144339617224,"customization":{"1":[0,0,2],"2":[0,0,2],"3":[0,0,2],"4":[0,0,2],"5":[0,0,2],"6":[0,0,2],"7":[0,0,2],"8":[0,0,2],"9":[0,1,2],"10":[0,0,2],"11":[0,0,2],"12":[0,2,0],"13":[0,2,0],"14":[0,2,255],"15":[0,2,100],"16":[0,2,255],"17":[256,2,255],"18":[33686018,2,255],"19":[33686018,2,255],"20":[33686018,2,255],"p3":[-1,0],"p4":[-1,0],"p5":[-1,0],"p10":[-1,0],"p8":[-1,0],"p7":[-1,0],"p9":[-1,0],"p6":[-1,0],"modelhash":1885233650,"p2":[-1,0],"p1":[-1,0],"p0":[-1,0],"0":[0,0,2]},"health":200}'),
633(97, 'vRP:datatable', '{"hunger":15.053909141331,"position":{"x":134.65425109863,"z":28.498600006104,"y":-1065.8272705078},"groups":{"jandarm":true,"Capitan Jandarmerie":true,"HeadOFStaff":true,"user":true},"inventory":{"cipsuri":{"amount":12},"lemonade":{"amount":17}},"health":200,"weapons":{"WEAPON_STUNGUN":{"ammo":0},"WEAPON_CARBINERIFLE":{"ammo":250},"WEAPON_NIGHTSTICK":{"ammo":0},"WEAPON_PUMPSHOTGUN":{"ammo":250},"WEAPON_COMBATPISTOL":{"ammo":250},"WEAPON_SNIPERRIFLE":{"ammo":248}},"gaptitudes":{"hacker":{"hacking":0,"logic":0,"c++":0,"lua":0},"physical":{"strength":30},"science":{"minerit":0,"mathematics":0,"chemicals":0},"level":{"lvl":0},"laboratory":{"cocaine":0,"lsd":0,"weed":0}},"thirst":16.607818282662,"cloakroom_idle":{"8":[21,0,2],"7":[0,0,2],"6":[12,0,2],"5":[0,0,0],"4":[4,0,2],"3":[4,0,2],"2":[21,1,2],"1":[0,0,2],"0":[0,0,2],"19":[33685506,2,0],"p5":[-1,0],"15":[65536,2,100],"p7":[-1,0],"p9":[-1,0],"13":[0,2,0],"p1":[10,0],"11":[58,0,2],"p3":[-1,0],"10":[0,0,2],"p0":[-1,0],"p8":[-1,0],"17":[256,0,0],"modelhash":1885233650,"9":[0,1,2],"20":[33686018,2,9],"16":[0,2,2],"p6":[-1,0],"18":[33686018,2,0],"p10":[-1,0],"p2":[9,1],"14":[0,2,255],"p4":[-1,0],"12":[0,2,0]},"customization":{"1":[0,0,0],"2":[2,0,2],"3":[0,0,0],"4":[0,0,2],"5":[0,0,0],"6":[0,0,0],"7":[0,0,0],"8":[0,0,2],"9":[0,0,0],"10":[0,0,2],"11":[0,0,0],"12":[0,2,0],"13":[0,0,0],"14":[0,2,255],"15":[0,0,115],"16":[0,2,255],"17":[0,0,255],"18":[131074,0,255],"19":[2,0,255],"20":[131074,2,255],"0":[1,0,2],"p0":[-1,0],"modelhash":-1920001264,"p9":[-1,0],"p8":[-1,0],"p5":[-1,0],"p6":[-1,0],"p7":[-1,0],"p10":[-1,0],"p2":[-1,0],"p1":[-1,0],"p4":[-1,0],"p3":[-1,0]}}'),
634(98, 'vRP:datatable', '{"hunger":41.99779951666,"position":{"x":1145.8618164063,"z":42.394199371338,"y":-1050.3936767578},"groups":{"cop":true,"Jandarmerie":true,"jandarm":true,"user":true,"Helper":true},"inventory":{"cipsuri":{"amount":6},"dirty_money":{"amount":46950},"bandage":{"amount":10},"medkit":{"amount":19},"lemonade":{"amount":4}},"health":200,"weapons":{"WEAPON_STUNGUN":{"ammo":0},"WEAPON_CARBINERIFLE":{"ammo":207},"WEAPON_PUMPSHOTGUN":{"ammo":250},"WEAPON_FLASHLIGHT":{"ammo":0},"WEAPON_COMBATPISTOL":{"ammo":145},"WEAPON_NIGHTSTICK":{"ammo":0},"WEAPON_SNIPERRIFLE":{"ammo":216}},"gaptitudes":{"laboratory":{"cocaine":0,"lsd":0,"weed":0},"physical":{"strength":30},"science":{"minerit":0,"mathematics":0,"chemicals":0},"level":{"lvl":0},"hacker":{"lua":0,"logic":0,"c++":0,"hacking":0}},"customization":{"1":[0,0,0],"2":[2,2,2],"3":[0,0,2],"4":[0,0,0],"5":[0,0,2],"6":[0,0,0],"7":[0,0,0],"8":[0,0,0],"9":[0,0,0],"10":[0,0,2],"11":[0,0,0],"12":[0,2,0],"13":[0,0,0],"14":[0,2,255],"15":[131072,2,115],"16":[0,0,255],"17":[0,2,255],"18":[33685506,0,255],"19":[512,0,255],"20":[131072,0,255],"0":[0,0,2],"p0":[-1,0],"modelhash":-1920001264,"p8":[-1,0],"p10":[-1,0],"p5":[-1,0],"p6":[-1,0],"p7":[-1,0],"p9":[-1,0],"p2":[-1,0],"p1":[-1,0],"p4":[-1,0],"p3":[-1,0]},"cloakroom_idle":{"8":[67,0,2],"7":[0,0,2],"6":[28,0,2],"5":[0,0,2],"4":[4,0,2],"3":[0,0,2],"2":[2,2,2],"1":[0,0,2],"0":[0,0,2],"19":[33686018,2,255],"p5":[-1,0],"15":[131072,2,100],"p7":[-1,0],"p9":[-1,0],"13":[0,2,0],"p1":[-1,0],"11":[167,14,2],"p3":[-1,0],"10":[0,0,2],"p0":[-1,0],"9":[0,1,2],"p10":[-1,0],"modelhash":1885233650,"17":[234881280,2,255],"20":[33686018,2,255],"16":[0,2,255],"p6":[-1,0],"18":[33686018,2,255],"p8":[-1,0],"p2":[-1,0],"14":[0,2,255],"p4":[-1,0],"12":[0,2,0]},"thirst":58.495599033321}'),
635(99, 'vRP:datatable', '{"thirst":88.62314503087,"groups":{"user":true,"Membru Cartel Di Medellin":true,"Helper":true},"weapons":{"WEAPON_PETROLCAN":{"ammo":215},"WEAPON_SNIPERRIFLE":{"ammo":249},"WEAPON_KNIFE":{"ammo":0},"WEAPON_ASSAULTRIFLE":{"ammo":249},"WEAPON_FLASHLIGHT":{"ammo":0},"WEAPON_COMBATPISTOL":{"ammo":233}},"customization":{"1":[0,0,2],"2":[3,0,2],"3":[21,1,2],"4":[23,7,2],"5":[0,0,2],"6":[0,2,2],"7":[0,0,2],"8":[13,0,2],"9":[0,1,2],"10":[8,0,2],"11":[1,1,2],"12":[0,2,0],"13":[0,2,0],"14":[0,2,255],"15":[16777216,2,110],"16":[131079,2,2],"17":[16777472,2,0],"18":[33686018,2,0],"19":[33686018,2,0],"20":[33686018,2,9],"0":[45,0,2],"p6":[2,2],"p9":[-1,0],"p8":[-1,0],"p2":[9,0],"p3":[-1,0],"p4":[-1,0],"p5":[-1,0],"modelhash":-1667301416,"p7":[-1,0],"p1":[2,0],"p10":[-1,0],"p0":[45,0]},"gaptitudes":{"physical":{"strength":30},"hacker":{"hacking":0,"logic":0,"c++":0,"lua":0},"laboratory":{"lsd":0,"cocaine":0,"weed":0},"science":{"chemicals":0,"mathematics":0,"minerit":0},"level":{"lvl":0}},"cloakroom_idle":{"p6":[-1,0],"p8":[-1,0],"p2":[-1,0],"12":[0,2,0],"p4":[-1,0],"11":[0,0,2],"3":[0,0,2],"2":[0,0,2],"5":[0,0,0],"4":[0,0,2],"7":[0,0,2],"19":[33685506,2,255],"9":[0,1,2],"17":[256,0,255],"p7":[-1,0],"p9":[-1,0],"13":[0,2,0],"p0":[-1,0],"1":[0,0,2],"0":[0,0,2],"p10":[-1,0],"p1":[-1,0],"p3":[-1,0],"14":[0,2,255],"20":[33686018,2,255],"10":[0,0,2],"6":[0,0,2],"8":[0,0,2],"modelhash":1885233650,"18":[33686018,2,255],"p5":[-1,0],"16":[0,2,255],"15":[0,2,100]},"health":169,"inventory":{"redbull":{"amount":7},"kebab":{"amount":10}},"phone_directory":[],"hunger":66.561572515434,"position":{"z":258.15197753906,"y":-746.14166259766,"x":151.96527099609}}'),
636(99, 'vRP:head:overlay', '{"10":[6,1,0],"8":[3,2,0],"1":[3,1,0],"0":[2,0,0],"3":[3,0,2],"2":[4,1,4],"5":[0,2,0],"11":[10,0,0],"7":[1,0,0],"6":[1,0,0],"9":[255,0,0],"-1":[29,0,17],"4":[3,0,0],"12":[73,0,0]}'),
637(99, 'vRP:jail:time', '-1'),
638(99, 'vRP:police_records', '[Amenda] 10000 $ pentru posesia unor arme letale, arme de foc, arme de calibru mare<br />'),
639(100, 'vRP:datatable', '{"thirst":4.9422110513822,"customization":{"1":[0,0,2],"2":[0,0,2],"3":[0,0,2],"4":[0,0,2],"5":[0,0,2],"6":[0,0,2],"7":[0,0,2],"8":[0,0,2],"9":[0,1,2],"10":[0,0,2],"11":[0,0,2],"12":[0,2,0],"13":[0,2,0],"14":[0,2,255],"15":[0,2,100],"16":[0,2,255],"17":[256,2,255],"18":[33686018,2,255],"19":[33686018,2,255],"20":[33686018,2,255],"0":[0,0,2],"p6":[-1,0],"p7":[-1,0],"p8":[-1,0],"p2":[-1,0],"p10":[-1,0],"p4":[-1,0],"p3":[-1,0],"p0":[-1,0],"modelhash":1885233650,"p1":[-1,0],"p5":[-1,0],"p9":[-1,0]},"hunger":3.2211055256911,"weapons":[],"health":200,"position":{"x":-526.50415039063,"z":35.266445159912,"y":-268.82611083984},"inventory":[],"groups":{"user":true}}'),
640(101, 'vRP:datatable', '{"hunger":16.027658154,"inventory":[],"position":{"x":-50.832050323486,"z":29.197326660156,"y":-997.90826416016},"weapons":[],"thirst":19.555316307998,"customization":{"8":[0,0,2],"7":[0,0,2],"6":[0,0,2],"5":[0,0,2],"4":[0,0,2],"3":[0,0,2],"2":[0,0,2],"1":[0,0,2],"0":[0,0,2],"19":[33686018,2,255],"p5":[-1,0],"15":[0,2,100],"p7":[-1,0],"17":[256,2,255],"13":[0,2,0],"p1":[-1,0],"11":[0,0,2],"p3":[-1,0],"10":[0,0,2],"p0":[-1,0],"9":[0,1,2],"p9":[-1,0],"modelhash":1885233650,"p8":[-1,0],"20":[33686018,2,255],"16":[0,2,255],"p6":[-1,0],"18":[33686018,2,255],"p10":[-1,0],"p2":[-1,0],"14":[0,2,255],"p4":[-1,0],"12":[0,2,0]},"health":180,"groups":{"user":true}}'),
641(102, 'vRP:datatable', '{"inventory":{"medkit":{"amount":20},"bandage":{"amount":20}},"hunger":68.118609728106,"weapons":[],"thirst":86.237219456212,"customization":{"1":[0,0,0],"2":[0,0,0],"3":[0,0,2],"4":[0,0,2],"5":[0,0,0],"6":[0,0,0],"7":[0,0,0],"8":[0,0,2],"9":[0,0,0],"10":[0,0,0],"11":[0,0,0],"12":[0,2,0],"13":[0,0,0],"14":[0,0,255],"15":[0,2,112],"16":[0,2,255],"17":[0,0,255],"18":[33554434,0,255],"19":[2,0,255],"20":[2,2,255],"0":[0,0,2],"p5":[-1,0],"p6":[-1,0],"p3":[-1,0],"p0":[-1,0],"p10":[-1,0],"p9":[-1,0],"modelhash":-1286380898,"p8":[-1,0],"p2":[-1,0],"p4":[-1,0],"p7":[-1,0],"p1":[-1,0]},"groups":{"user":true,"Sef Medic":true},"cloakroom_idle":{"11":[0,0,2],"13":[0,2,0],"18":[33686018,2,255],"14":[0,2,255],"p3":[-1,0],"16":[0,2,255],"p6":[-1,0],"6":[0,0,2],"7":[0,0,2],"4":[0,0,2],"5":[0,0,2],"8":[0,0,2],"9":[0,1,2],"20":[33686018,2,255],"10":[0,0,2],"19":[33686018,2,255],"12":[0,2,0],"p5":[-1,0],"15":[0,2,100],"0":[0,0,2],"17":[256,2,255],"p1":[-1,0],"p0":[-1,0],"p4":[-1,0],"p2":[-1,0],"p10":[-1,0],"modelhash":1885233650,"p9":[-1,0],"p8":[-1,0],"p7":[-1,0],"2":[0,0,2],"3":[0,0,2],"1":[0,0,2]},"gaptitudes":{"physical":{"strength":30},"science":{"mathematics":0,"chemicals":0,"minerit":0},"hacker":{"c++":0,"hacking":0,"logic":0,"lua":0},"laboratory":{"cocaine":0,"lsd":0,"weed":0},"level":{"lvl":0}},"health":175,"position":{"z":25.571592330933,"x":-41.171188354492,"y":-1115.4886474609}}'),
642(103, 'vRP:datatable', '{"inventory":[],"weapons":[],"health":200,"hunger":4.8196172901144,"groups":{"user":true},"position":{"z":108.52293395996,"x":-1571.2791748047,"y":-572.78192138672},"thirst":5.6392345802288,"customization":{"1":[0,0,2],"2":[0,0,2],"3":[0,0,2],"4":[0,0,2],"5":[0,0,2],"6":[0,0,2],"7":[0,0,2],"8":[0,0,2],"9":[0,1,2],"10":[0,0,2],"11":[0,0,2],"12":[0,2,0],"13":[0,2,0],"14":[0,2,255],"15":[0,2,100],"16":[0,2,255],"17":[256,2,255],"18":[33686018,2,255],"19":[33686018,2,255],"20":[33686018,2,255],"0":[0,0,2],"p2":[-1,0],"p8":[-1,0],"p1":[-1,0],"p3":[-1,0],"p10":[-1,0],"p9":[-1,0],"modelhash":1885233650,"p0":[-1,0],"p5":[-1,0],"p4":[-1,0],"p7":[-1,0],"p6":[-1,0]}}'),
643(104, 'vRP:datatable', '{"thirst":14.999370670204,"groups":{"user":true},"weapons":{"WEAPON_PISTOL":{"ammo":198}},"customization":{"1":[0,0,2],"2":[3,5,2],"3":[0,0,2],"4":[4,0,2],"5":[0,0,0],"6":[10,0,2],"7":[0,0,2],"8":[2,0,2],"9":[0,1,2],"10":[0,0,2],"11":[19,0,2],"12":[0,2,0],"13":[0,2,0],"14":[0,2,255],"15":[327680,2,100],"16":[0,2,2],"17":[256,0,0],"18":[33686018,2,0],"19":[33685506,2,0],"20":[33686018,2,18],"0":[0,0,2],"p6":[-1,0],"p9":[-1,0],"p8":[-1,0],"p1":[7,0],"p3":[-1,0],"p4":[-1,0],"p5":[-1,0],"modelhash":1885233650,"p0":[-1,0],"p7":[-1,0],"p10":[-1,0],"p2":[18,0]},"gaptitudes":{"physical":{"strength":30},"science":{"minerit":0,"mathematics":0,"chemicals":0},"laboratory":{"lsd":0,"weed":0,"cocaine":0},"hacker":{"lua":0,"logic":0,"c++":0,"hacking":0},"level":{"lvl":0}},"health":120,"inventory":{"kebab":{"amount":8},"medkit":{"amount":1},"redbull":{"amount":8}},"hunger":12.249685335102,"phone_directory":[],"position":{"z":30.371332168579,"y":4492.6352539063,"x":1858.0450439453}}');
644INSERT INTO `vrp_user_data` (`user_id`, `dkey`, `dvalue`) VALUES
645(105, 'vRP:datatable', '{"inventory":{"wammo|WEAPON_COMBATPISTOL":{"amount":150},"water":{"amount":19},"kebab":{"amount":1},"wammo|WEAPON_ASSAULTRIFLE":{"amount":49}},"hunger":18.636532794732,"weapons":{"WEAPON_FLASHLIGHT":{"ammo":0},"WEAPON_KNIFE":{"ammo":0},"WEAPON_ASSAULTRIFLE":{"ammo":250},"WEAPON_COMBATPISTOL":{"ammo":250},"WEAPON_SNIPERRIFLE":{"ammo":250}},"groups":{"Membru Cartel Di Medellin":true,"user":true},"health":190,"thirst":29.273065589463,"gaptitudes":{"level":{"lvl":0},"hacker":{"hacking":0,"c++":0,"lua":0,"logic":0},"physical":{"strength":30},"science":{"minerit":0,"chemicals":0,"mathematics":0},"laboratory":{"cocaine":0,"weed":0,"lsd":0}},"position":{"z":37.154949188232,"x":-1033.4362792969,"y":-300.09613037109},"customization":{"1":[0,0,2],"2":[21,1,2],"3":[6,0,2],"4":[26,0,2],"5":[0,0,0],"6":[4,1,2],"7":[0,0,2],"8":[31,0,2],"9":[0,1,2],"10":[0,0,2],"11":[30,0,2],"12":[0,2,0],"13":[0,2,0],"14":[0,2,255],"15":[65536,2,100],"16":[65536,2,6],"17":[256,0,0],"18":[33686018,2,0],"19":[33685506,2,0],"20":[33686018,2,0],"0":[0,0,2],"p0":[-1,0],"p3":[-1,0],"p2":[0,0],"p4":[-1,0],"p5":[-1,0],"p6":[0,0],"p7":[-1,0],"p9":[-1,0],"p8":[-1,0],"p1":[-1,0],"modelhash":1885233650,"p10":[-1,0]}}'),
646(106, 'vRP:datatable', '{"position":{"z":29.462575912476,"x":-43.240592956543,"y":-915.03234863281},"health":120,"customization":{"1":[0,0,2],"2":[47,0,2],"3":[158,0,2],"4":[26,0,2],"5":[45,0,0],"6":[82,0,2],"7":[0,0,2],"8":[32,0,2],"9":[0,1,2],"10":[0,0,2],"11":[108,0,2],"12":[0,2,0],"13":[6400,2,0],"14":[0,2,255],"15":[0,2,228],"16":[0,2,255],"17":[256,0,255],"18":[33686018,2,255],"19":[33685506,2,255],"20":[33686018,2,255],"0":[12,0,2],"p0":[-1,0],"p3":[-1,0],"p2":[-1,0],"p4":[-1,0],"p5":[-1,0],"p6":[-1,0],"p7":[-1,0],"p9":[-1,0],"p8":[-1,0],"p1":[-1,0],"modelhash":1885233650,"p10":[-1,0]},"groups":{"Membru Cartel Di Medellin":true,"user":true},"gaptitudes":{"level":{"lvl":0},"hacker":{"hacking":0,"c++":0,"lua":0,"logic":0},"physical":{"strength":30},"science":{"minerit":0,"chemicals":0,"mathematics":0},"laboratory":{"cocaine":0,"weed":0,"lsd":0}},"inventory":{"kebab":{"amount":8}},"thirst":3.2564308320189,"phone_directory":[],"hunger":2.3782154160094,"weapons":[]}'),
647(107, 'vRP:datatable', '{"hunger":100,"position":{"x":296.87286376953,"y":741.64495849609,"z":181.64071655273},"inventory":[],"weapons":[],"groups":{"user":true,"fondator":true},"gaptitudes":{"laboratory":{"lsd":0,"cocaine":0,"weed":0},"level":{"lvl":0},"physical":{"strength":30},"hacker":{"hacking":0,"logic":0,"c++":0,"lua":0},"science":{"mathematics":0,"chemicals":0,"minerit":0}},"health":120,"thirst":100,"customization":{"1":[0,0,2],"2":[0,0,2],"3":[0,0,2],"4":[0,0,2],"5":[0,0,0],"6":[0,0,2],"7":[0,0,2],"8":[0,0,2],"9":[0,1,2],"10":[0,0,2],"11":[0,0,2],"12":[0,2,0],"13":[0,2,0],"14":[0,2,255],"15":[0,2,228],"16":[0,2,2],"17":[256,0,0],"18":[33686018,2,0],"19":[33685506,2,0],"20":[33686018,2,1],"p4":[-1,0],"p5":[-1,0],"p2":[1,0],"p3":[-1,0],"p1":[0,0],"p0":[-1,0],"p10":[-1,0],"modelhash":1885233650,"0":[0,0,2],"p7":[-1,0],"p6":[-1,0],"p9":[-1,0],"p8":[-1,0]}}'),
648(108, 'vRP:datatable', '{"inventory":[],"weapons":[],"health":195,"groups":{"user":true},"hunger":3.3454796980623,"position":{"z":28.99750328064,"x":-37.178379058838,"y":-1014.5709838867},"thirst":6.6909593961247,"customization":{"1":[0,0,2],"2":[0,0,2],"3":[0,0,2],"4":[0,0,2],"5":[0,0,2],"6":[0,0,2],"7":[0,0,2],"8":[0,0,2],"9":[0,1,2],"10":[0,0,2],"11":[0,0,2],"12":[0,2,0],"13":[0,2,0],"14":[0,2,255],"15":[0,2,100],"16":[0,2,255],"17":[256,2,255],"18":[33686018,2,255],"19":[33686018,2,255],"20":[33686018,2,255],"0":[0,0,2],"p2":[-1,0],"p1":[-1,0],"p10":[-1,0],"p0":[-1,0],"p8":[-1,0],"p9":[-1,0],"modelhash":1885233650,"p3":[-1,0],"p5":[-1,0],"p4":[-1,0],"p7":[-1,0],"p6":[-1,0]}}'),
649(109, 'vRP:datatable', '{"inventory":[],"weapons":[],"health":200,"hunger":0.52248587728886,"groups":{"user":true},"position":{"z":37.649806976318,"x":-540.40319824219,"y":-210.27410888672},"thirst":1.0449717545777,"customization":{"1":[0,0,2],"2":[0,0,2],"3":[0,0,2],"4":[0,0,2],"5":[0,0,2],"6":[0,0,2],"7":[0,0,2],"8":[0,0,2],"9":[0,1,2],"10":[0,0,2],"11":[0,0,2],"12":[0,2,0],"13":[0,2,0],"14":[0,2,255],"15":[0,2,100],"16":[0,2,255],"17":[256,2,255],"18":[33686018,2,255],"19":[33686018,2,255],"20":[33686018,2,255],"0":[0,0,2],"p3":[-1,0],"p2":[-1,0],"p10":[-1,0],"p7":[-1,0],"p8":[-1,0],"p9":[-1,0],"modelhash":1885233650,"p6":[-1,0],"p5":[-1,0],"p4":[-1,0],"p0":[-1,0],"p1":[-1,0]}}'),
650(110, 'vRP:datatable', '{"hunger":46.023717951838,"customization":{"1":[0,0,2],"2":[0,0,2],"3":[0,0,2],"4":[0,0,2],"5":[0,0,2],"6":[0,0,2],"7":[0,0,2],"8":[0,0,2],"9":[0,1,2],"10":[0,0,2],"11":[0,0,2],"12":[0,2,0],"13":[0,2,0],"14":[0,2,255],"15":[0,2,100],"16":[0,2,255],"17":[256,2,255],"18":[33686018,2,255],"19":[33686018,2,255],"20":[33686018,2,255],"0":[0,0,2],"p5":[-1,0],"p2":[-1,0],"p3":[-1,0],"p1":[-1,0],"p0":[-1,0],"p10":[-1,0],"modelhash":1885233650,"p4":[-1,0],"p7":[-1,0],"p6":[-1,0],"p9":[-1,0],"p8":[-1,0]},"health":123,"thirst":64.047435903675,"inventory":[],"weapons":[],"position":{"x":-410.8486328125,"y":1152.2528076172,"z":325.85919189453},"groups":{"user":true}}'),
651(111, 'vRP:datatable', '{"inventory":[],"groups":{"user":true},"weapons":[],"health":120,"position":{"x":-425.45169067383,"y":1131.9285888672,"z":325.96765136719},"thirst":6.5591573344574,"hunger":3.2795786672287,"customization":{"1":[0,0,2],"2":[0,0,2],"3":[0,0,2],"4":[0,0,2],"5":[0,0,2],"6":[0,0,2],"7":[0,0,2],"8":[0,0,2],"9":[0,1,2],"10":[0,0,2],"11":[0,0,2],"12":[0,2,0],"13":[0,2,0],"14":[0,2,255],"15":[0,2,100],"16":[0,2,255],"17":[256,2,255],"18":[33686018,2,255],"19":[33686018,2,255],"20":[33686018,2,255],"p8":[-1,0],"p7":[-1,0],"p6":[-1,0],"p10":[-1,0],"p3":[-1,0],"p4":[-1,0],"p1":[-1,0],"p2":[-1,0],"modelhash":1885233650,"p9":[-1,0],"p5":[-1,0],"p0":[-1,0],"0":[0,0,2]}}'),
652(112, 'vRP:datatable', '{"hunger":12.303037426184,"health":200,"position":{"x":299.58264160156,"y":880.32989501953,"z":198.23384094238},"thirst":18.106074852367,"inventory":[],"weapons":[],"customization":{"1":[0,0,2],"2":[0,0,2],"3":[0,0,2],"4":[0,0,2],"5":[0,0,2],"6":[0,0,2],"7":[0,0,2],"8":[0,0,2],"9":[0,1,2],"10":[0,0,2],"11":[0,0,2],"12":[0,2,0],"13":[0,2,0],"14":[0,2,255],"15":[0,2,100],"16":[0,2,255],"17":[256,2,255],"18":[33686018,2,255],"19":[33686018,2,255],"20":[33686018,2,255],"p4":[-1,0],"p5":[-1,0],"p2":[-1,0],"p3":[-1,0],"p1":[-1,0],"p0":[-1,0],"p10":[-1,0],"modelhash":1885233650,"0":[0,0,2],"p7":[-1,0],"p6":[-1,0],"p9":[-1,0],"p8":[-1,0]},"groups":{"user":true}}'),
653(113, 'vRP:datatable', '{"inventory":[],"thirst":0,"hunger":0,"groups":[]}'),
654(114, 'vRP:datatable', '{"inventory":[],"thirst":0,"hunger":0,"groups":[]}'),
655(115, 'vRP:datatable', '{"inventory":[],"thirst":0,"hunger":0,"groups":[]}'),
656(116, 'vRP:datatable', '{"inventory":[],"hunger":1.5,"thirst":1.5,"groups":[]}'),
657(117, 'vRP:datatable', '{"inventory":[],"hunger":1.0,"groups":[],"thirst":1.0}'),
658(118, 'vRP:datatable', '{"inventory":[],"hunger":1.0,"groups":[],"thirst":1.0}'),
659(119, 'vRP:datatable', '{"inventory":[],"hunger":1.0,"groups":[],"thirst":1.0}'),
660(120, 'vRP:datatable', '{"inventory":[],"hunger":1.5,"groups":[],"thirst":1.5}'),
661(121, 'vRP:datatable', '{"hunger":44.536292064827,"health":120,"phone_directory":{"dan":"1"},"groups":{"Vacar":true,"user":true},"gaptitudes":{"science":{"chemicals":0,"minerit":0,"mathematics":0},"level":{"lvl":0},"physical":{"strength":30},"hacker":{"c++":0,"lua":0,"hacking":0,"logic":0},"laboratory":{"cocaine":0,"lsd":0,"weed":0}},"thirst":17.822473792695,"inventory":{"drug_cocaalka":{"amount":14},"water":{"amount":7},"drug_cansativa":{"amount":4},"drug_unprocpcp":{"amount":8},"chem_set":{"amount":1}},"customization":{"1":[0,0,2],"2":[13,0,1],"3":[20,0,2],"4":[59,9,2],"5":[45,0,0],"6":[8,2,2],"7":[0,0,2],"8":[25,0,2],"9":[0,1,2],"10":[55,0,2],"11":[35,4,2],"12":[0,2,0],"13":[1280,2,0],"14":[0,1,255],"15":[0,2,110],"16":[131081,2,0],"17":[67109120,0,0],"18":[33620482,2,0],"19":[33685506,2,0],"20":[33686018,2,50],"0":[19,0,2],"p7":[-1,0],"p8":[-1,0],"p9":[-1,0],"modelhash":1885233650,"p0":[50,0],"p1":[-1,0],"p6":[-1,0],"p10":[-1,0],"p5":[-1,0],"p4":[-1,0],"p3":[-1,0],"p2":[24,0]},"weapons":{"WEAPON_ASSAULTRIFLE":{"ammo":241},"WEAPON_COMBATPISTOL":{"ammo":234}},"position":{"y":-699.19329833984,"x":-171.06214904785,"z":35.908229827881}}'),
662(121, 'vRP:head:overlay', '{"1":[6,1,2],"10":[255,1,0],"11":[255,0,0],"0":[5,0,0],"-1":[255,0,0],"12":[13,0,12],"9":[255,0,0],"2":[255,1,0],"7":[255,0,0],"8":[255,2,0],"5":[11,2,0],"6":[255,0,0],"3":[1,0,0],"4":[255,0,0]}'),
663(122, 'vRP:datatable', '{"inventory":[],"hunger":100,"groups":[],"thirst":100}'),
664(123, 'vRP:datatable', '{"inventory":[],"hunger":1.5,"groups":[],"thirst":1.5}'),
665(124, 'vRP:datatable', '{"inventory":[],"hunger":100,"groups":[],"thirst":100}'),
666(125, 'vRP:datatable', '{"thirst":19.5,"inventory":[],"hunger":19.5}'),
667(126, 'vRP:datatable', '{"hunger":1.0,"inventory":[],"position":{"x":-542.69268798828,"y":-208.90679931641,"z":37.068984985351},"groups":{"user":true},"customization":{"1":[0,0],"2":[0,0],"3":[0,0],"4":[0,0],"5":[0,0],"6":[0,0],"7":[0,0],"8":[0,0],"9":[0,0],"10":[0,0],"11":[0,0],"12":[0,0],"13":[0,0],"14":[0,0],"15":[0,0],"16":[0,0],"17":[0,0],"18":[0,0],"19":[0,0],"0":[0,0],"model":"mp_m_freemode_01"},"thirst":1.0}'),
668(127, 'vRP:datatable', '{"weapons":[],"hunger":3.0566092221952,"inventory":[],"groups":{"user":true},"health":200,"position":{"z":38.044422149658,"x":-478.61776733398,"y":-244.50151062012},"thirst":4.6132184443905,"customization":{"1":[0,0,2],"2":[0,0,2],"3":[0,0,2],"4":[0,0,2],"5":[0,0,2],"6":[0,0,2],"7":[0,0,2],"8":[0,0,2],"9":[0,1,2],"10":[0,0,2],"11":[0,0,2],"12":[0,2,0],"13":[0,2,0],"14":[0,2,255],"15":[0,2,100],"16":[0,2,255],"17":[256,2,255],"18":[33686018,2,255],"19":[33686018,2,255],"20":[33686018,2,255],"0":[0,0,2],"p7":[-1,0],"p8":[-1,0],"p9":[-1,0],"p3":[-1,0],"p1":[-1,0],"p5":[-1,0],"p4":[-1,0],"p0":[-1,0],"p6":[-1,0],"p10":[-1,0],"p2":[-1,0],"modelhash":1885233650}}'),
669(128, 'vRP:datatable', '{"thirst":45.885824810524,"groups":{"user":true},"weapons":[],"customization":{"1":[0,0,2],"2":[11,1,2],"3":[1,0,2],"4":[4,0,2],"5":[0,0,0],"6":[7,0,2],"7":[0,0,2],"8":[2,0,2],"9":[0,1,2],"10":[0,0,2],"11":[20,0,2],"12":[0,2,0],"13":[0,2,0],"14":[0,2,255],"15":[65536,2,100],"16":[0,2,255],"17":[256,0,255],"18":[33686018,2,255],"19":[33685506,2,255],"20":[33686018,2,255],"0":[0,0,2],"p6":[-1,0],"p9":[-1,0],"p8":[-1,0],"p1":[-1,0],"p3":[-1,0],"p4":[-1,0],"p5":[-1,0],"modelhash":1885233650,"p7":[-1,0],"p10":[-1,0],"p2":[-1,0],"p0":[-1,0]},"gaptitudes":{"physical":{"strength":30},"science":{"chemicals":0,"mathematics":0,"minerit":0},"laboratory":{"lsd":0,"weed":0,"cocaine":0},"hacker":{"hacking":0,"logic":0,"c++":0,"lua":0},"level":{"lvl":0}},"hunger":39.192912405262,"inventory":[],"health":186,"position":{"z":30.298030853271,"y":-1548.0777587891,"x":325.48199462891}}'),
670(129, 'vRP:datatable', '{"weapons":[],"thirst":13.221680276348,"hunger":9.3608401381738,"inventory":[],"health":200,"customization":{"1":[0,0,2],"2":[0,0,2],"3":[0,0,2],"4":[0,0,2],"5":[0,0,2],"6":[0,0,2],"7":[0,0,2],"8":[0,0,2],"9":[0,1,2],"10":[0,0,2],"11":[0,0,2],"12":[0,2,0],"13":[0,2,0],"14":[0,2,255],"15":[0,2,100],"16":[0,2,255],"17":[256,2,255],"18":[33686018,2,255],"19":[33686018,2,255],"20":[33686018,2,255],"0":[0,0,2],"p0":[-1,0],"p1":[-1,0],"p3":[-1,0],"p7":[-1,0],"p10":[-1,0],"p2":[-1,0],"p5":[-1,0],"p4":[-1,0],"p6":[-1,0],"modelhash":1885233650,"p8":[-1,0],"p9":[-1,0]},"position":{"x":-58.677394866943,"y":-1112.1474609375,"z":26.435813903809},"groups":{"user":true}}'),
671(130, 'vRP:datatable', '{"thirst":1.0,"hunger":1.0,"inventory":[],"groups":[]}'),
672(131, 'vRP:datatable', '{"groups":{"user":true},"inventory":[],"weapons":[],"health":139,"hunger":38.57778444148,"customization":{"1":[0,0,2],"2":[0,0,2],"3":[0,0,2],"4":[4,0,2],"5":[0,0,2],"6":[4,0,2],"7":[0,0,2],"8":[1,0,2],"9":[0,1,2],"10":[10,0,2],"11":[1,0,2],"12":[0,2,0],"13":[0,2,0],"14":[0,2,255],"15":[0,2,110],"16":[0,2,1],"17":[256,2,0],"18":[33686018,2,0],"19":[33686018,2,0],"20":[33686018,2,3],"0":[10,0,2],"p0":[2,0],"p3":[-1,0],"p2":[-1,0],"p4":[-1,0],"p5":[-1,0],"p6":[-1,0],"p7":[-1,0],"p9":[-1,0],"p8":[-1,0],"p1":[3,0],"modelhash":1885233650,"p10":[-1,0]},"position":{"z":29.483291625977,"x":423.82482910156,"y":-859.04638671875},"thirst":48.15556888296}');
673
674-- --------------------------------------------------------
675
676--
677-- Table structure for table `vrp_user_homes`
678--
679
680CREATE TABLE IF NOT EXISTS `vrp_user_homes` (
681 `user_id` int(11) NOT NULL,
682 `home` varchar(100) DEFAULT NULL,
683 `number` int(11) DEFAULT NULL
684) ENGINE=InnoDB DEFAULT CHARSET=latin1;
685
686--
687-- Dumping data for table `vrp_user_homes`
688--
689
690INSERT INTO `vrp_user_homes` (`user_id`, `home`, `number`) VALUES
691(3, 'Cheap Home', 1),
692(1, 'Downtown Mansion', 1),
693(131, 'Lowside House', 1),
694(30, 'Modern Apt', 1),
695(6, 'Rich flat', 1),
696(24, 'Rich Housing', 1);
697
698-- --------------------------------------------------------
699
700--
701-- Table structure for table `vrp_user_identities`
702--
703
704CREATE TABLE IF NOT EXISTS `vrp_user_identities` (
705 `user_id` int(11) NOT NULL,
706 `registration` varchar(100) DEFAULT NULL,
707 `phone` varchar(100) DEFAULT NULL,
708 `firstname` varchar(100) DEFAULT NULL,
709 `name` varchar(100) DEFAULT NULL,
710 `age` int(11) DEFAULT NULL
711) ENGINE=InnoDB DEFAULT CHARSET=latin1;
712
713--
714-- Dumping data for table `vrp_user_identities`
715--
716
717INSERT INTO `vrp_user_identities` (`user_id`, `registration`, `phone`, `firstname`, `name`, `age`) VALUES
718(1, '661RLJ', '0706785387', 'Jax', 'Teller', 31),
719(2, '984SIP', '0745032989', 'Bogdan', 'Popescu', 30),
720(3, '225RVS', '0742744971', 'Samuel', 'Ciugudean', 50),
721(4, '245DIT', '0738987391', 'Adi ', 'Picamar', 27),
722(5, '963LBZ', '0761885118', 'Fritz', 'Futerman', 26),
723(6, '340ZRD', '0788511841', 'Price', 'John', 40),
724(7, '445QWV', '0767531759', 'Stefan', 'Agent Principal', 25),
725(8, '071KIZ', '0702121689', 'Alex', 'Smecherescu', 27),
726(9, '427MLY', '0771537653', 'Costel\n', 'Ion\n', 28),
727(10, '765JDF', '0748597316', 'Garcea', 'Garcea', 45),
728(11, '300QVO', '0744245137', 'Alexandru bahtalia', 'hatz', 21),
729(12, '008WFD', '0750147650', 'Change', 'Me', 36),
730(13, '787TPJ', '0782822590', 'Jumara', 'Marcel', 21),
731(14, '489KSP', '0788550745', 'Andrei', 'Bodoasca', 25),
732(15, '180LOH', '0752318127', 'Razvan', 'Tudor', 21),
733(16, '382HQD', '0723382428', 'Vlad', 'Bulau', 32),
734(17, '563ASC', '0768474375', 'Change', 'Me', 35),
735(18, '526YLX', '0709675123', 'Ginel', 'Laservici', 21),
736(19, '125XCX', '0740719782', 'Edy', 'Ciocanaru', 21),
737(20, '828FGO', '0790054028', 'Change', 'Me', 27),
738(21, '039KLY', '0785863205', 'Change', 'Me', 28),
739(22, '040RWB', '0786685616', 'Change', 'Me', 25),
740(23, '616OKY', '0755523307', 'Change', 'Me', 31),
741(24, '771FHR', '0793519256', 'RedX', 'Ciocanaru', 21),
742(25, '336DKB', '0767166650', 'sebastian', 'anton', 23),
743(26, '586IAG', '0732738176', 'Denis', 'Munteanu', 25),
744(27, '878XXN', '0741384106', 'radu', 'futerman', 21),
745(28, '700KRU', '0711030960', 'Casian', 'Stanila', 31),
746(29, '402KRU', '0708165942', 'Sex', 'Animalic', 69),
747(30, '605OLB', '0791601633', 'Alexandru', 'Palaghia', 35),
748(31, '142WFU', '0789963228', 'Mihnea', 'Banditu', 19),
749(32, '077WAL', '0748447250', 'Change', 'Me', 38),
750(33, '920UFO', '0788359862', 'Kristof', 'Simo', 20),
751(34, '081GHR', '0759674871', 'Kiro', 'snk', 19),
752(35, '473AMQ', '0743025849', 'Cristian', 'Stefan', 18),
753(36, '531FLU', '0759731640', 'Vlad', 'TCox', 23),
754(37, '059VNW', '0780555591', 'Alexandru', 'Pericol', 28),
755(38, '867OJE', '0775921665', 'Kenshee', 'Smecherescu', 25),
756(39, '873YDB', '0775690863', 'geordel\n', 'rares', 23),
757(40, '030QDW', '0785780176', 'Stefan', 'Ferescu', 24),
758(41, '000IXK', '0749858632', 'Change', 'Me', 40),
759(42, '176RXL', '0796165495', 'FlashBang', 'Popescu', 23),
760(43, '407CKI', '0790212168', 'Stefan', 'King', 27),
761(44, '307FBK', '0750116466', 'Change', 'Me', 31),
762(45, '355PPE', '0764306785', 'Change', 'Me', 36),
763(46, '753ETO', '0792166534', 'Change', 'Me', 34),
764(47, '006VOL', '0742451373', 'Change', 'Me', 38),
765(48, '375MNF', '0794691780', 'Mihaita', 'Buci De Fier', 21),
766(49, '376OJD', '0724859731', 'Jhon', 'Balon', 19),
767(50, '841NTK', '0725677413', 'Vlad\n', 'Grigore\n', 22),
768(51, '406NDY', '0719634096', 'Aurel', 'Frana', 21),
769(52, '641YXO', '0734383429', 'Change', 'Me', 34),
770(53, '670RZI', '0753118871', 'Giovani', 'Bahtali', 22),
771(54, '188PSW', '0701762016', 'Change', 'Me', 30),
772(55, '900BIX', '0734985863', 'Change', 'Me', 33),
773(56, '782LAT', '0714390212', 'Change', 'Me', 39),
774(57, '877XKK', '0793353777', 'Change', 'Me', 28),
775(58, '654TBP', '0705089997', 'Change', 'Me', 29),
776(59, '648GKG', '0740192875', 'Change', 'Me', 27),
777(60, '713BFR', '0745421575', 'Change', 'Me', 26),
778(61, '785HWS', '0799514282', 'Pablo', 'El', 31),
779(62, '511VME', '0757425677', 'Change', 'Me', 30),
780(63, '118WTE', '0730068544', 'JUST', 'EPIC', 22),
781(64, '389WSH', '0791075690', 'Change', 'Me', 30),
782(65, '753RNP', '0730716847', 'Change', 'Me', 37),
783(66, '603BQD', '0788578017', 'Change', 'Me', 26),
784(67, '709RQI', '0717376224', 'Corleone', 'Andy', 22),
785(68, '406DBE', '0791066575', 'Change', 'Me', 31),
786(69, '315VCM', '0764117341', 'Change', 'Me', 28),
787(70, '661KPV', '0783791584', 'Change', 'Me', 39),
788(71, '815QMH', '0755924640', 'Change', 'Me', 26),
789(72, '562IRK', '0747620133', 'Change', 'Me', 25),
790(73, '963QYY', '0768423227', 'Change', 'Me', 34),
791(74, '817THI', '0784056768', 'Change', 'Me', 28),
792(75, '928NGP', '0725497709', 'Change', 'Me', 27),
793(76, '798ORU', '0717770597', 'Alexandru', 'Ungureanu', 18),
794(77, '426HUR', '0761068798', 'Jenqo', 'Leet', 18),
795(78, '430PUU', '0753879951', 'Nelu', 'Lungu', 32),
796(79, '854JXV', '0771875300', 'Change', 'Me', 27),
797(80, '387YYO', '0714282789', 'Change', 'Me', 31),
798(81, '871WSN', '0730031194', 'Change', 'Me', 25),
799(82, '530CJD', '0719410035', 'Change', 'Me', 34),
800(83, '875HAC', '0731194100', 'Change', 'Me', 34),
801(84, '827VZZ', '0763228030', 'Change', 'Me', 25),
802(85, '220EJP', '0784107262', 'Change', 'Me', 30),
803(86, '933HPE', '0767334496', 'Change', 'Me', 38),
804(87, '055QTS', '0785975900', 'Andrei', 'Raul', 20),
805(88, '389DIJ', '0768749462', 'Virgil', 'Abagiu', 22),
806(89, '443ZBH', '0700442797', 'Change', 'Me', 36),
807(90, '104BZH', '0735909540', 'Alexandru', 'Gheorghe', 22),
808(91, '151YQC', '0792760707', 'Change', 'Me', 39),
809(92, '571LJH', '0724588213', 'Change', 'Me', 38),
810(93, '971PKT', '0765312485', 'Giorgio', 'Alessandro', 25),
811(94, '973ERM', '0706519196', 'George', 'Geangu', 23),
812(95, '644PQW', '0786753175', 'Change', 'Me', 28),
813(96, '887EIC', '0706854424', 'Change', 'Me', 30),
814(97, '333QOT', '0757126160', 'Marian', 'Olandezu', 25),
815(98, '229RDY', '0733943610', 'Ionut', 'Biscuite', 23),
816(99, '274FQP', '0744568867', 'Pijlea ', 'Madalina-Andreea', 21),
817(100, '718SNH', '0700311941', 'Change', 'Me', 31),
818(101, '194DAA', '0735566164', 'Change', 'Me', 34),
819(102, '383LHZ', '0727517835', 'Alex', 'Dracu', 21),
820(103, '596YEI', '0719490604', 'Marcel', 'Borcan', 28),
821(104, '770XNY', '0719360871', 'Eduard', 'Bodoasca', 20),
822(105, '745JXX', '0798390210', 'Alexandru\n', 'Sopitoru''', 21),
823(106, '611ARZ', '0758172618', 'Razvan\n', 'Teleki', 22),
824(107, '185JJU', '0712303768', 'Change', 'Me', 37),
825(108, '297QHC', '0721606159', 'Change', 'Me', 26),
826(109, '489OLX', '0772107453', 'Change', 'Me', 34),
827(110, '003DEZ', '0741003556', 'Change', 'Me', 35),
828(111, '538SYY', '0751428278', 'Change', 'Me', 34),
829(112, '388TEW', '0775300311', 'Change', 'Me', 26),
830(113, '885EEV', '0741574256', 'Change', 'Me', 32),
831(114, '419XOI', '0743834292', 'Change', 'Me', 28),
832(115, '231TVS', '0767210088', 'Change', 'Me', 33),
833(116, '753ACJ', '0711941003', 'Change', 'Me', 34),
834(117, '616LJB', '0767853879', 'Change', 'Me', 27),
835(118, '428FUV', '0799632280', 'Change', 'Me', 35),
836(119, '009HHP', '0768742744', 'Change', 'Me', 26),
837(120, '537POJ', '0712485973', 'Change', 'Me', 32),
838(121, '529UZD', '0749676389', 'Change', 'Me', 35),
839(122, '138ANR', '0741995343', 'Change', 'Me', 32),
840(123, '751TVK', '0758095051', 'Change', 'Me', 35),
841(124, '186UMY', '0784562257', 'Change', 'Me', 26),
842(125, '518PMJ', '0788718753', 'Change', 'Me', 30),
843(126, '164JBP', '0778538799', 'Change', 'Me', 32),
844(127, '941AAJ', '0755661643', 'Change', 'Me', 37),
845(128, '519DXS', '0734096188', 'Rares', 'Muresan', 23),
846(129, '119LDA', '0703556616', 'Change', 'Me', 25),
847(130, '410AJN', '0756616430', 'Change', 'Me', 37),
848(131, '859TIE', '0764065191', 'Change', 'Me', 29);
849
850-- --------------------------------------------------------
851
852--
853-- Table structure for table `vrp_user_ids`
854--
855
856CREATE TABLE IF NOT EXISTS `vrp_user_ids` (
857 `identifier` varchar(100) NOT NULL,
858 `user_id` int(11) DEFAULT NULL
859) ENGINE=InnoDB DEFAULT CHARSET=latin1;
860
861--
862-- Dumping data for table `vrp_user_ids`
863--
864
865INSERT INTO `vrp_user_ids` (`identifier`, `user_id`) VALUES
866('discord:468151293026762752', 1),
867('license:423db05723a0b613bfd77f9409c0528341fa8b0c', 1),
868('steam:11000013df5964c', 1),
869('discord:247794630995869707', 2),
870('fivem:560563', 2),
871('license:053e2d77f4465f95499d09bed2ef886417a94272', 2),
872('live:844425131157332', 2),
873('xbl:2535451174881104', 2),
874('discord:299903927665819648', 3),
875('license:f9567ce6b94f9139e4122fe35fa84ac80565706e', 3),
876('live:1899946246061212', 3),
877('steam:11000011493c958', 3),
878('discord:560147575588651009', 4),
879('license:a6429400cec3451ff8ffe9ae8aa14e5170389083', 4),
880('steam:11000013a24ed2a', 4),
881('discord:502478911918047234', 5),
882('license:e38f776d3e5c7f75429554990a3ad50448ae3715', 5),
883('live:914797973356937', 5),
884('steam:11000011c8fc9fa', 5),
885('xbl:2535467859647203', 5),
886('discord:311174971634221056', 6),
887('fivem:656325', 6),
888('license:6f96f4c0e259ff3429f483a818c0c51d4957029e', 6),
889('steam:110000119118976', 6),
890('discord:500314313903570976', 7),
891('license:e7bbf06e1b523f3653528370f480108f8e03ed3a', 7),
892('live:1688854130587723', 7),
893('steam:11000013e62cd1c', 7),
894('xbl:2535463512704438', 7),
895('discord:241596099712778242', 8),
896('fivem:464749', 8),
897('license:3dcd0cbb00be29e5b87f1e6c1319ef792c888e25', 8),
898('live:1055518497516355', 8),
899('discord:462625218792390667', 9),
900('license:a1e83bc61683df2bd0b44b8c3d2abb1fc1bc2c68', 9),
901('steam:11000013d93ef5a', 9),
902('discord:466958810775420929', 10),
903('license:9860dba38b90021529c26b82a58b3da4904aaa90', 10),
904('steam:110000117d9d8a7', 10),
905('discord:600281250107883531', 11),
906('license:2a0ea925e739f7f7bdc68a3fcc2153733e85c522', 11),
907('live:914798142922926', 11),
908('discord:542335932624535563', 12),
909('license:17380de6584b1a9290ad6f80e71129de6fe36efd', 12),
910('steam:1100001364d7d7a', 12),
911('discord:432629059441262604', 13),
912('license:6da56f0de00921c774140b9c76d46cae72b53ea5', 13),
913('live:914798053984308', 13),
914('steam:110000111c2588b', 13),
915('xbl:2535454895039133', 13),
916('discord:526374079830163466', 14),
917('license:11dce36fb9dbd71374dd8dbfe7d7f52b0108742b', 14),
918('steam:110000133b6c667', 14),
919('discord:253124049155260417', 15),
920('license:6f9836795052a85abf72de124bb708b5fb90ea1c', 15),
921('steam:11000010c47423e', 15),
922('discord:365393037452640257', 16),
923('license:de835d67a4dc30e2fe4324cfc23a2a46154e62a7', 16),
924('live:1055518695724187', 16),
925('xbl:2535434336527297', 16),
926('license:00a9c1015adfacdec0c2513b030db72dae8aa4bb', 17),
927('steam:110000119d417dc', 17),
928('discord:396238494101667860', 18),
929('license:bbb521b5a59af14c69f898ef466f1b492b5acb18', 18),
930('live:914802205881307', 18),
931('steam:110000113a445e1', 18),
932('xbl:2535472156511019', 18),
933('discord:266232965699207173', 19),
934('fivem:329549', 19),
935('license:e7617c4a419038d8deca7c4cdc82ab8af7f2434f', 19),
936('discord:304304917198274560', 20),
937('license:0c522a47568a0b8c3abf562c5d6de7798edbe2f7', 20),
938('live:985154337459274', 20),
939('steam:1100001396b7663', 20),
940('xbl:2535460605506397', 20),
941('license:8c29d04a4b779a590d84246cc5b1abb8e887628c', 21),
942('live:1055518887322761', 21),
943('steam:1100001365e26da', 21),
944('discord:350225223213252609', 22),
945('license:4cec52ea1a316eab1bf3349dfc0b880f7a3d5146', 22),
946('steam:11000011a5a2ff1', 22),
947('license:73caf03a1ad715d1acaaf224b463fffc46d271f7', 23),
948('discord:431107300028055552', 24),
949('license:5f724dd782245f2b909c70c6c701002bd21195ac', 24),
950('live:844424994174276', 24),
951('steam:11000011aa7254b', 24),
952('xbl:2535450457953816', 24),
953('discord:612972872335622175', 25),
954('license:e9eee04bff5998aaf58d45cd547ded75c2e3c4ce', 25),
955('steam:110000116c67c0d', 25),
956('discord:534450223393800198', 26),
957('license:5094eb181c0fb448d50b034ccc1b746c3ef1c149', 26),
958('live:1055518774764449', 26),
959('xbl:2535459955581342', 26),
960('discord:519969887007801375', 27),
961('license:84b0ab3fcc62301290d4d91c684ae8f2a62df7f8', 27),
962('live:844425030087666', 27),
963('steam:11000013ba0acc2', 27),
964('xbl:2535426409033827', 27),
965('discord:552897836501696527', 28),
966('license:a5d038913d746d58b889c468dc826bb5f7da1362', 28),
967('live:844425327745022', 28),
968('steam:110000136013f2d', 28),
969('discord:278536807409516544', 29),
970('license:164cd26192802f26231e92736d543c5c21744e4c', 29),
971('live:914802223581758', 29),
972('xbl:2535406809171838', 29),
973('discord:363374095720775683', 30),
974('fivem:587426', 30),
975('license:2f6fefcf144cac809c8e23e5370de3aa43a5770a', 30),
976('live:914798081548861', 30),
977('steam:110000136801546', 30),
978('xbl:2535443063091780', 30),
979('discord:210010112083886081', 31),
980('license:a4dff3a7394ed493cebecc179c85eda227fc90e0', 31),
981('live:985157361580207', 31),
982('xbl:2535414556668086', 31),
983('discord:323829166938259458', 32),
984('license:506aa6be420a8eed71213cff372422233088432b', 32),
985('live:844425004345563', 32),
986('steam:11000013e5d6b6d', 32),
987('discord:394163491508060162', 33),
988('fivem:669338', 33),
989('license:c10324179e9d845cd070fb97cd66e00f0400f283', 33),
990('live:985158101428205', 33),
991('steam:11000013cecf2c3', 33),
992('fivem:622772', 34),
993('license:0dbf4d57f2927e3b3886728af21b1c17b4889af2', 34),
994('live:1055518475504683', 34),
995('xbl:2535418297646883', 34),
996('discord:509115125605728291', 35),
997('license:2fffd5e624a6d338be31d40320c98979fd92c9fc', 35),
998('discord:261797739942117377', 36),
999('license:ecc8b597d64ec84fa4c5f8f777de491abeb951d7', 36),
1000('live:985153999933780', 36),
1001('xbl:2535455060564273', 36),
1002('discord:365183302484885515', 37),
1003('license:c7fc4a645910541f753e6cfd0510bc8c3968f9b7', 37),
1004('live:914801193932772', 37),
1005('steam:11000011c5ea539', 37),
1006('xbl:2535467609728211', 37),
1007('discord:241547101056532490', 38),
1008('license:fbb576e445982b49441a111cb5c7784da06905db', 38),
1009('live:844428675371193', 38),
1010('steam:110000114603ee3', 38),
1011('xbl:2535415448193705', 38),
1012('discord:486549698761457676', 39),
1013('license:e3e7da78c0ff85d1c059dbcd1a8ef6537b757db9', 39),
1014('live:985154329777046', 39),
1015('steam:110000115b6daf4', 39),
1016('xbl:2535461611607628', 39),
1017('discord:520914648669880322', 40),
1018('fivem:380338', 40),
1019('license:95cf9305374afedee2cc668607a6704d447bd717', 40),
1020('live:985154320373621', 40),
1021('discord:394237485049446400', 41),
1022('license:0d8caa08fb1fec7b7c39f16810b1755cbbc7f892', 41),
1023('steam:11000013dbbc818', 41),
1024('discord:526833328385687562', 42),
1025('license:b6a8a5cb786d3dcd634b623aa3c2afa8ce9e2b09', 42),
1026('live:1055518729263942', 42),
1027('steam:11000013dd09aae', 42),
1028('xbl:2535470869895389', 42),
1029('discord:331407158224879626', 43),
1030('license:7f5b3504d699c424b377edb54ccca8e249c9e7b2', 43),
1031('live:1055521882929655', 43),
1032('steam:11000010e231c4d', 43),
1033('xbl:2535458190372538', 43),
1034('discord:257163502207238144', 44),
1035('license:66fbbd3eb0fecf87754693d9781a09d7316a6c5d', 44),
1036('live:844428264534688', 44),
1037('xbl:2535418706004136', 44),
1038('discord:598283998707318799', 45),
1039('license:a9d3618f6a39ee0dc0317ba8536a2e41e99233b5', 45),
1040('discord:426760747104600065', 46),
1041('license:8baec0191dedf4d98763c1f91868226b783321ee', 46),
1042('live:844425225787175', 46),
1043('steam:1100001176c264a', 46),
1044('xbl:2535451576576312', 46),
1045('discord:508339375009038399', 47),
1046('license:f09e87bdb45647823bc2c233c83c1aec3d858f85', 47),
1047('steam:110000138252e60', 47),
1048('license:afcac079d86e72ddec5aa8322a12b2efc9910a5d', 48),
1049('live:914802155157591', 48),
1050('xbl:2535433664429238', 48),
1051('license:817addc263bb617b4cd9880716a2c827d1653fe8', 49),
1052('steam:11000013bb08b13', 49),
1053('discord:647054306620735488', 50),
1054('license:46eba1ddd9a5e51c4ad26409aa0285abdfe57e3e', 50),
1055('steam:11000013e3c1483', 50),
1056('discord:310044305903321090', 51),
1057('license:9819932e95b8f1e5c8831f5dd349234f54cba268', 51),
1058('live:985153835659767', 51),
1059('xbl:2535439655795544', 51),
1060('discord:493928774963036180', 52),
1061('license:c6431f8fd78c24a3fb93f4e462c2e1682d75ba81', 52),
1062('steam:11000013c5cb828', 52),
1063('discord:272788485549588484', 53),
1064('fivem:650098', 53),
1065('license:136632f048ad7963c103c4b8315434d45846a75e', 53),
1066('steam:110000115d96500', 53),
1067('discord:486470869573566487', 54),
1068('license:6ca340d0cfbc639e42a31f482dc936712e05c4ba', 54),
1069('live:1899947281693291', 54),
1070('xbl:2535457109073833', 54),
1071('discord:389076501561212938', 55),
1072('license:8e6c2a2b230e8a65b1b6d84debc44b84800af6dd', 55),
1073('steam:11000011d3488c2', 55),
1074('discord:501050406319685645', 56),
1075('license:eff561dffcb61d60916b37c464e2829b3ee5d619', 56),
1076('live:1055518485633351', 56),
1077('xbl:2535461024258406', 56),
1078('license:a6a67f33cf1c91c7c3acc3a85694715193cb16eb', 57),
1079('steam:11000013bd2cc49', 57),
1080('discord:585534377262448653', 58),
1081('license:e4fa8bafbe590aa44ce99d57f476ad60d17b4f06', 58),
1082('steam:11000011313e22b', 58),
1083('discord:349861218368094209', 59),
1084('license:9f98c62946dd7577dade3f7992267c7602b225f8', 59),
1085('steam:110000118f067ab', 59),
1086('discord:566717568623050756', 60),
1087('license:7f682953442b2aecdd107345b1fc7492aba87989', 60),
1088('steam:11000013d2fb3da', 60),
1089('discord:593103795840614410', 61),
1090('license:df0324476ba8122e5df6ea1d2a125a618f12d28c', 61),
1091('live:985154406393907', 61),
1092('steam:110000136c0d0c0', 61),
1093('xbl:2535469347714732', 61),
1094('discord:399329058279915548', 62),
1095('license:9310465b493b511bbe54b2bc6204941062a53cc3', 62),
1096('live:985154462424679', 62),
1097('steam:110000115b07a5e', 62),
1098('xbl:2535413752537671', 62),
1099('discord:431480788933017613', 63),
1100('license:a82f87855dbd8ffbbc027659de78dfa52ba77e2d', 63),
1101('discord:194247934416650240', 64),
1102('fivem:548802', 64),
1103('license:83239b1f8b5f19781558c4ab38369a69eb9885ea', 64),
1104('live:1055518717494694', 64),
1105('steam:1100001021516aa', 64),
1106('discord:592321585931616266', 65),
1107('license:95bc17dfe5a06a7e870187aaae06332764d9b11a', 65),
1108('live:1055518612940090', 65),
1109('steam:110000137895a6a', 65),
1110('discord:470217748534788096', 66),
1111('license:6c3b9d2d9989cb7d47be6e1fe8817b761fe9701d', 66),
1112('discord:240875439835447296', 67),
1113('license:dda92592ef72f262bc2a83ca2a3933b8bd6b1f27', 67),
1114('live:1055518502958969', 67),
1115('steam:1100001148651ef', 67),
1116('xbl:2535461432137405', 67),
1117('discord:243014963269074944', 68),
1118('license:20c7d1ad918eb436da604889d6b74a61bf98d0aa', 68),
1119('live:1055522076958371', 68),
1120('xbl:2535450806937008', 68),
1121('discord:217714242755756032', 69),
1122('license:9f1570dfeb9a7b132cbd834dd47d2c5472c7e03b', 69),
1123('steam:110000114603f27', 69),
1124('discord:358204930839805959', 70),
1125('license:6cd6e2b4464711f656ce85644d441b5ad16d3782', 70),
1126('steam:1100001098780ea', 70),
1127('discord:416545491883655168', 71),
1128('license:a4fe48d242cd8f48167c16c57917f76e659ab0ad', 71),
1129('steam:110000132eefbd0', 71),
1130('discord:334205699745906688', 72),
1131('license:d4ca7eec2adeca63e9856c8de2032c7902b2569f', 72),
1132('live:1899947229231480', 72),
1133('steam:1100001106eec4e', 72),
1134('xbl:2535457564244653', 72),
1135('discord:558700613286887447', 73),
1136('fivem:687688', 73),
1137('license:32a8d36a9c1701d5cc4e6cccad25fe4d0ed40fa3', 73),
1138('steam:11000013c79c712', 73),
1139('discord:484238156657459210', 74),
1140('license:33f58ff8d0d7bb5430f183c36e2f0ad405d169a6', 74),
1141('license:fd9912ccd970f7159123d9b3cbd2fe9745c4772d', 75),
1142('discord:266622038096085003', 76),
1143('license:6c365415e10bf543bc123e027674b8c7311a8690', 76),
1144('discord:308658906995884052', 77),
1145('license:9d27f25d86ffe6664cef16003a735ec9f0cb5e87', 77),
1146('live:985154287345652', 77),
1147('xbl:2535448091633208', 77),
1148('discord:424176566432432138', 78),
1149('license:e6ee63765fd037bee1c861b19528a55968dbe3c0', 78),
1150('live:844425054007938', 78),
1151('xbl:2535408731584563', 78),
1152('discord:443439452983918592', 79),
1153('license:8146cb38e191f3c4b3d09e463cbb58f30fe60e4d', 79),
1154('live:844424930744225', 79),
1155('xbl:2535427786105311', 79),
1156('discord:212113054471684097', 80),
1157('license:7bf9a883352ce4ec3d9ccc536c6b80724e6ba5bd', 80),
1158('live:985154113564834', 80),
1159('steam:110000115df2f6a', 80),
1160('discord:170889077766356992', 81),
1161('license:308e301ccff677b0e862144c3b2239e739fa5a8b', 81),
1162('live:914801218438907', 81),
1163('steam:11000010a5a4ef7', 81),
1164('xbl:2535467818735532', 81),
1165('discord:292011324022718474', 82),
1166('license:165a66f3e6c8fd0b562ad7a7582426dd631f54f9', 82),
1167('live:1055518324128440', 82),
1168('steam:110000116d24826', 82),
1169('xbl:2535423244567544', 82),
1170('discord:454417455264169998', 83),
1171('license:a9f0bd919106f70838e6458c0b2cf9543aceb190', 83),
1172('steam:11000013e289f60', 83),
1173('discord:568926781076275210', 84),
1174('license:a026dec00abf9a6c2cf799ea330422874e81b6cd', 84),
1175('live:844428245566018', 84),
1176('steam:11000013b69bcfd', 84),
1177('discord:600020510721441813', 85),
1178('license:49638a6a57839f7c6b10a571860c525724594c75', 85),
1179('steam:11000013d1167ee', 85),
1180('discord:486702261188427786', 86),
1181('license:1505cabef07796dd99ba8e66c88613075f393209', 86),
1182('steam:110000135dd328e', 86),
1183('discord:369381368938889216', 87),
1184('license:c70a250f489eaec06ccd6963f55068729eb3f845', 87),
1185('license:5a2155e592d52a3a33daeaeffee8a50724fd3e36', 88),
1186('live:844425450436819', 88),
1187('steam:11000013cfdfcfe', 88),
1188('discord:572032484099883008', 89),
1189('license:a87ac64c9738b991bfe959b508444c2620c7fe6d', 89),
1190('live:844425144116127', 89),
1191('steam:11000013cba2ef0', 89),
1192('xbl:2535455846780459', 89),
1193('discord:196531311328886785', 90),
1194('license:c281d43fbe069931aa74db0ee3c9aaba96c55d44', 90),
1195('live:844428240370526', 90),
1196('xbl:2535465317586113', 90),
1197('license:1a13a37b88fe2e9f478a1fd42b3f6ae76dcd87ed', 91),
1198('discord:276712755913031690', 92),
1199('license:2efe7070d3338b878a0fef1d75bd6162bf4f15b3', 92),
1200('steam:110000102072869', 92),
1201('discord:382543795453165569', 93),
1202('license:957c8e13503604e08c9e576d969a64e71f13636c', 93),
1203('steam:1100001333a090f', 93),
1204('discord:329537647519334400', 94),
1205('license:e2e7572af3d39b2f3f6f2219beee482d7e778d09', 94),
1206('steam:11000013585a6b7', 94),
1207('discord:370548181739634688', 95),
1208('license:178b1924417f344ceaf1b9132a6dfad343fd631c', 95),
1209('live:985153985040451', 95),
1210('xbl:2535413798954313', 95),
1211('license:f1d45e054a285ebe889f545dd3fab1cfb3f0b3e4', 96),
1212('discord:453502534804570124', 97),
1213('license:d70fce8b0f55915a16f63f1752270312137a8c89', 97),
1214('live:1055521764352316', 97),
1215('xbl:2535432192812856', 97),
1216('discord:385899946219667456', 98),
1217('license:0585100ba44edb2cf5ad792e76cfa0554ec1908c', 98),
1218('live:1055522503099234', 98),
1219('steam:1100001196621ad', 98),
1220('xbl:2535473697038992', 98),
1221('discord:421768445584080916', 99),
1222('license:73884aac7fdd10692878a9a017d119f21b14dd28', 99),
1223('live:844425138834672', 99),
1224('xbl:2535414017504265', 99),
1225('discord:556928537995509789', 100),
1226('license:601e13a67cc4e60b7423e496b381b5745ebbde80', 100),
1227('live:1055518728073299', 100),
1228('steam:110000139c8f006', 100),
1229('xbl:2535457376934597', 100),
1230('license:3650c55e2d7015f78f9703047c11d3edcd181f2f', 101),
1231('discord:418806365545431051', 102),
1232('fivem:692561', 102),
1233('license:cd563ae40cecdfb2b54330ae97ef39f2740418bc', 102),
1234('live:844429194179357', 102),
1235('xbl:2535439117855381', 102),
1236('discord:640509312158007306', 103),
1237('license:272f3a097ded489a865816c49d5ce2dbb6c792d0', 103),
1238('live:985154435538150', 103),
1239('discord:457967066767556649', 104),
1240('license:9f13cb1c55dc5c0a4adbc136c814cb8a0d2cdc94', 104),
1241('steam:110000117be7f92', 104),
1242('discord:474276335070609408', 105),
1243('license:494d54d9c5c9e0d74b56c8455373a8485581affe', 105),
1244('live:1055518889308450', 105),
1245('steam:11000011d1a020a', 105),
1246('xbl:2535451516391425', 105),
1247('discord:622851047756398592', 106),
1248('license:8d7a28d64b2936316117f0b38dffce0459898127', 106),
1249('live:914798104385810', 106),
1250('steam:1100001320078f9', 106),
1251('xbl:2535464889055637', 106),
1252('discord:268528208964616193', 107),
1253('license:3cc922b4b4fea152515cde7011f14422eb520a78', 107),
1254('live:1055518307710555', 107),
1255('xbl:2535426410575230', 107),
1256('discord:322070317184974859', 108),
1257('license:a56002788845a63bf13e32448c52c992b25b4657', 108),
1258('live:914801981677818', 108),
1259('steam:1100001363a4ba1', 108),
1260('xbl:2535405501057538', 108),
1261('discord:284064221593993216', 109),
1262('license:dcdd44930c159b1b78a3642a6f435255faefb1bd', 109),
1263('live:914801420020722', 109),
1264('xbl:2535415147764824', 109),
1265('discord:337310737863147520', 110),
1266('license:c55fc3173a46627dd6304acea1f8b50b8d3d64b4', 110),
1267('live:844425274083480', 110),
1268('steam:11000011cd418be', 110),
1269('discord:243247187813728256', 111),
1270('license:edd21798f92f99836a60771d562d4ea567491d43', 111),
1271('discord:534420040905261056', 112),
1272('license:7a566e34e1fed224abf0b62920bb01efe0a2ba33', 112),
1273('steam:110000133deefd8', 112),
1274('discord:655667392420249613', 113),
1275('license:b7725f97b5b0f3e4d2cd47796c953d49b73156c3', 113),
1276('steam:11000013dd9a2d3', 113),
1277('discord:440596862396006411', 114),
1278('license:115deb33215ece236fb32ed46d958e5092aee490', 114),
1279('live:985154280430323', 114),
1280('steam:110000133e937c6', 114),
1281('xbl:2535453294707760', 114),
1282('discord:247350756502405122', 115),
1283('fivem:656403', 115),
1284('license:734533295ca8c39fda10cdb4686fab36ae7cee82', 115),
1285('steam:11000013de89320', 115),
1286('discord:651481246182014997', 116),
1287('license:902afac9ff5354b3929c1ddc5d715766f41bf931', 116),
1288('steam:11000011c2a2396', 116),
1289('license:b850e507ed05be8a7628e7c935108350ab27394a', 117),
1290('license:4c8f6e2cb8a6a6e131c5197b530acedbb1b4eb80', 118),
1291('live:844429177120846', 118),
1292('xbl:2535460069030027', 118),
1293('discord:497781845761458186', 119),
1294('license:2f0b60e66d93119141d08637bdcc41c5028de05c', 119),
1295('live:985154428673022', 119),
1296('license:3f2ff9e910d0d24a1b87ceab9ae88a7231237b1f', 120),
1297('steam:110000111797b89', 120),
1298('discord:291566034958155787', 121),
1299('license:69bd25f2060150cf594113c97832b9ee873fb827', 121),
1300('steam:1100001031687b8', 121),
1301('discord:265230363100577795', 122),
1302('license:557f1c0d4b6384790d92bdfd253d26577fb81ea6', 122),
1303('steam:11000013e246e18', 122),
1304('discord:417037882537148430', 123),
1305('fivem:142343', 123),
1306('license:0fb21588d4d636d05bf72f16143e3658a5c9dfcf', 123),
1307('live:914798347579849', 123),
1308('steam:110000137182f00', 123),
1309('xbl:2535436636785736', 123),
1310('discord:295085114042482688', 124),
1311('license:e4de5989dec8350840ddd3f5b5baf0a2362c652d', 124),
1312('live:985157801035069', 124),
1313('steam:11000011a588e2d', 124),
1314('xbl:2535446384872761', 124),
1315('discord:412579364098539531', 125),
1316('license:5bb44c64ec8d3272e69893e46a0f0a6952e89aff', 125),
1317('live:914798215127923', 125),
1318('xbl:2535465295304572', 125),
1319('discord:374112546593964032', 126),
1320('license:4732d90cc0b0a8b29a6da0e9368d0852c5cb09d6', 126),
1321('steam:110000104693161', 126),
1322('discord:609219321339707422', 127),
1323('license:fe518e7335bccab7615f2d766e0e8ddba4627e8a', 127),
1324('live:1688853948746165', 127),
1325('xbl:2535417419828326', 127),
1326('discord:562971797914648576', 128),
1327('license:a129165e387fc8b627919e8b27f5187d55681d4f', 128),
1328('live:914798500604742', 128),
1329('xbl:2535436190131355', 128),
1330('discord:527821085400367104', 129),
1331('license:053f5fcdc02027286b29ab93577de09781fa2aca', 129),
1332('live:985154059731444', 129),
1333('xbl:2535411146665186', 129),
1334('discord:241521598870454272', 130),
1335('license:3ecf1a3f6da47b26e4a932dbe53a3880415a92f9', 130),
1336('steam:11000013ea9900e', 130),
1337('discord:511214155576115213', 131),
1338('license:ede45b38bbb05abefac15d9dc15be18b3a3689c0', 131),
1339('live:1055518775921961', 131),
1340('xbl:2535464238821995', 131);
1341
1342-- --------------------------------------------------------
1343
1344--
1345-- Table structure for table `vrp_user_moneys`
1346--
1347
1348CREATE TABLE IF NOT EXISTS `vrp_user_moneys` (
1349 `user_id` int(11) NOT NULL,
1350 `wallet` int(11) DEFAULT NULL,
1351 `bank` int(11) DEFAULT NULL
1352) ENGINE=InnoDB DEFAULT CHARSET=latin1;
1353
1354--
1355-- Dumping data for table `vrp_user_moneys`
1356--
1357
1358INSERT INTO `vrp_user_moneys` (`user_id`, `wallet`, `bank`) VALUES
1359(1, 365177915, 124330033),
1360(2, 1816345, 755000),
1361(3, 2849697, 38023241),
1362(4, 331460, 6235000),
1363(5, 7429576, 610000),
1364(6, 50362, 0),
1365(7, 5842179, 0),
1366(8, 100894, 5000),
1367(9, 595, 105122910),
1368(10, 56107, 0),
1369(11, 10073, 49),
1370(12, 2500, 5000),
1371(13, 37175, 1000),
1372(14, 137864, 560238),
1373(15, 41351, 585),
1374(16, 66173, 800),
1375(17, 0, 617),
1376(18, 7280, 0),
1377(19, 6500, 277),
1378(20, 2500, 5000),
1379(21, 1855, 5000),
1380(22, 505, 1021),
1381(23, 1650, 5000),
1382(24, 247582, 5000),
1383(25, 45400, 2225808),
1384(26, 629, 50),
1385(27, 275, 6949),
1386(28, 7310, 949),
1387(29, 2150, 5000),
1388(30, 123361, 5000),
1389(31, 66189, 4000),
1390(32, 9861875, 0),
1391(33, 2200, 5000),
1392(34, 43649, 5000),
1393(35, 2150, 5000),
1394(36, 60090, 278),
1395(37, 11810, 84382),
1396(38, 84997, 50000),
1397(39, 2400, 5000),
1398(40, 24455, 5000),
1399(41, 258032, 0),
1400(42, 3920, 5000),
1401(43, 94328, 271223),
1402(44, 0, 424),
1403(45, 2500, 5000),
1404(46, 22, 85),
1405(47, 66, 0),
1406(48, 2400, 5000),
1407(49, 3890, 800),
1408(50, 28319, 52360),
1409(51, 2400, 5000),
1410(52, 0, 1050),
1411(53, 12928, 0),
1412(54, 2500, 5000),
1413(55, 2500, 5000),
1414(56, 2499, 5000),
1415(57, 2500, 5000),
1416(58, 0, 4010),
1417(59, 1290, 0),
1418(60, 2500, 5000),
1419(61, 105, 100),
1420(62, 0, 1002),
1421(63, 3579, 90),
1422(64, 1000, 0),
1423(65, 1250, 5000),
1424(66, 2500, 5000),
1425(67, 2150, 5000),
1426(68, 314665, 5000),
1427(69, 0, 1050),
1428(70, 2500, 5000),
1429(71, 2500, 5000),
1430(72, 2500, 5000),
1431(73, 2500, 5000),
1432(74, 2250, 5000),
1433(75, 2500, 5000),
1434(76, 181153, 98152),
1435(77, 57138, 5000),
1436(78, 60000, 717),
1437(79, 2250, 5000),
1438(80, 2500, 5000),
1439(81, 2500, 5000),
1440(82, 2500, 5000),
1441(83, 2500, 5000),
1442(84, 2500, 5000),
1443(85, 2500, 5000),
1444(86, 2500, 5000),
1445(87, 8553, 5000),
1446(88, 0, 2400),
1447(89, 20334, 334),
1448(90, 2400, 5000),
1449(91, 716, 5000),
1450(92, 2500, 5000),
1451(93, 95173, 300000),
1452(94, 0, 375442),
1453(95, 2250, 5000),
1454(96, 2500, 5000),
1455(97, 25610262, 130000),
1456(98, 450, 463625),
1457(99, 652, 565563),
1458(100, 2000, 5000),
1459(101, 2500, 5000),
1460(102, 68, 430),
1461(103, 2400, 5000),
1462(104, 14811, 5000),
1463(105, 15619, 20029),
1464(106, 19873, 215),
1465(107, 999956220, 1000),
1466(108, 2500, 5000),
1467(109, 2500, 5000),
1468(110, 2250, 5000),
1469(111, 2500, 5000),
1470(112, 2250, 5000),
1471(113, 2500, 5000),
1472(114, 2500, 5000),
1473(115, 2500, 5000),
1474(116, 2500, 5000),
1475(117, 2500, 5000),
1476(118, 2500, 5000),
1477(119, 2500, 5000),
1478(120, 2500, 5000),
1479(121, 0, 89842),
1480(122, 2500, 5000),
1481(123, 2500, 5000),
1482(124, 2500, 5000),
1483(125, 2500, 5000),
1484(126, 2500, 5000),
1485(127, 2500, 5000),
1486(128, 9064, 5000),
1487(129, 2494500, 5000),
1488(130, 2500, 5000),
1489(131, 89, 0);
1490
1491-- --------------------------------------------------------
1492
1493--
1494-- Table structure for table `vrp_user_vehicles`
1495--
1496
1497CREATE TABLE IF NOT EXISTS `vrp_user_vehicles` (
1498 `id` int(255) NOT NULL,
1499 `user_id` int(11) NOT NULL,
1500 `vehicle` varchar(100) NOT NULL,
1501 `veh_type` varchar(255) NOT NULL DEFAULT 'default',
1502 `vehicle_plate` varchar(255) NOT NULL,
1503 `vehicle_colorprimary` varchar(255) DEFAULT NULL,
1504 `vehicle_colorsecondary` varchar(255) DEFAULT NULL,
1505 `vehicle_pearlescentcolor` varchar(255) DEFAULT NULL,
1506 `vehicle_wheelcolor` varchar(255) DEFAULT NULL,
1507 `vehicle_plateindex` varchar(255) DEFAULT NULL,
1508 `vehicle_neoncolor1` varchar(255) DEFAULT NULL,
1509 `vehicle_neoncolor2` varchar(255) DEFAULT NULL,
1510 `vehicle_neoncolor3` varchar(255) DEFAULT NULL,
1511 `vehicle_windowtint` varchar(255) DEFAULT NULL,
1512 `vehicle_wheeltype` varchar(255) DEFAULT NULL,
1513 `vehicle_mods0` varchar(255) DEFAULT NULL,
1514 `vehicle_mods1` varchar(255) DEFAULT NULL,
1515 `vehicle_mods2` varchar(255) DEFAULT NULL,
1516 `vehicle_mods3` varchar(255) DEFAULT NULL,
1517 `vehicle_mods4` varchar(255) DEFAULT NULL,
1518 `vehicle_mods5` varchar(255) DEFAULT NULL,
1519 `vehicle_mods6` varchar(255) DEFAULT NULL,
1520 `vehicle_mods7` varchar(255) DEFAULT NULL,
1521 `vehicle_mods8` varchar(255) DEFAULT NULL,
1522 `vehicle_mods9` varchar(255) DEFAULT NULL,
1523 `vehicle_mods10` varchar(255) DEFAULT NULL,
1524 `vehicle_mods11` varchar(255) DEFAULT NULL,
1525 `vehicle_mods12` varchar(255) DEFAULT NULL,
1526 `vehicle_mods13` varchar(255) DEFAULT NULL,
1527 `vehicle_mods14` varchar(255) DEFAULT NULL,
1528 `vehicle_mods15` varchar(255) DEFAULT NULL,
1529 `vehicle_mods16` varchar(255) DEFAULT NULL,
1530 `vehicle_turbo` varchar(255) NOT NULL DEFAULT 'off',
1531 `vehicle_tiresmoke` varchar(255) NOT NULL DEFAULT 'off',
1532 `vehicle_xenon` varchar(255) NOT NULL DEFAULT 'off',
1533 `vehicle_mods23` varchar(255) DEFAULT NULL,
1534 `vehicle_mods24` varchar(255) DEFAULT NULL,
1535 `vehicle_neon0` varchar(255) DEFAULT NULL,
1536 `vehicle_neon1` varchar(255) DEFAULT NULL,
1537 `vehicle_neon2` varchar(255) DEFAULT NULL,
1538 `vehicle_neon3` varchar(255) DEFAULT NULL,
1539 `vehicle_bulletproof` varchar(255) DEFAULT NULL,
1540 `vehicle_smokecolor1` varchar(255) DEFAULT NULL,
1541 `vehicle_smokecolor2` varchar(255) DEFAULT NULL,
1542 `vehicle_smokecolor3` varchar(255) DEFAULT NULL,
1543 `vehicle_modvariation` varchar(255) NOT NULL DEFAULT 'off'
1544) ENGINE=InnoDB AUTO_INCREMENT=505 DEFAULT CHARSET=latin1;
1545
1546--
1547-- Dumping data for table `vrp_user_vehicles`
1548--
1549
1550INSERT INTO `vrp_user_vehicles` (`id`, `user_id`, `vehicle`, `veh_type`, `vehicle_plate`, `vehicle_colorprimary`, `vehicle_colorsecondary`, `vehicle_pearlescentcolor`, `vehicle_wheelcolor`, `vehicle_plateindex`, `vehicle_neoncolor1`, `vehicle_neoncolor2`, `vehicle_neoncolor3`, `vehicle_windowtint`, `vehicle_wheeltype`, `vehicle_mods0`, `vehicle_mods1`, `vehicle_mods2`, `vehicle_mods3`, `vehicle_mods4`, `vehicle_mods5`, `vehicle_mods6`, `vehicle_mods7`, `vehicle_mods8`, `vehicle_mods9`, `vehicle_mods10`, `vehicle_mods11`, `vehicle_mods12`, `vehicle_mods13`, `vehicle_mods14`, `vehicle_mods15`, `vehicle_mods16`, `vehicle_turbo`, `vehicle_tiresmoke`, `vehicle_xenon`, `vehicle_mods23`, `vehicle_mods24`, `vehicle_neon0`, `vehicle_neon1`, `vehicle_neon2`, `vehicle_neon3`, `vehicle_bulletproof`, `vehicle_smokecolor1`, `vehicle_smokecolor2`, `vehicle_smokecolor3`, `vehicle_modvariation`) VALUES
1551(1, 3, 'huraperfospy', 'car', 'B 92688', '64', '9', '9', '0', '0', '0', '150', '255', '1', '0', '-1', '-1', '-1', '-1', '-1', '-1', '-1', '-1', '-1', '-1', '-1', '2', '2', '2', '0', '3', '4', 'on', 'off', 'off', '-1', '-1', 'on', 'on', 'on', 'on', 'on', '0', '0', '0', 'off'),
1552(2, 99, 'c63s', 'car', 'B 17234', '119', '0', '0', '0', '0', '0', '0', '0', '3', '0', '0', '0', '0', '-1', '-1', '0', '-1', '-1', '-1', '-1', '-1', '2', '2', '2', '-1', '3', '4', 'on', 'on', 'off', '-1', '-1', 'off', 'off', 'off', 'off', 'on', '254', '254', '254', 'off'),
1553(3, 5, 'm3e30', 'car', 'B 76665', '0', '0', '0', '0', '0', '255', '0', '0', '0', '0', '-1', '-1', '-1', '-1', '-1', '-1', '-1', '-1', '-1', '-1', '-1', '2', '0', '2', '0', '3', '0', 'on', 'off', 'on', '0', '-1', 'on', 'on', 'on', 'on', 'off', '0', '0', '0', 'off'),
1554(4, 7, 'm3e30', 'car', 'B 65082', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'off', 'off', 'off', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'off'),
1555(5, 9, 'sandero', 'car', 'B 16893', '0', '0', '0', '28', '0', '255', '0', '0', '1', '0', '-1', '-1', '-1', '-1', '-1', '-1', '-1', '-1', '-1', '-1', '-1', '2', '2', '2', '0', '3', '4', 'on', 'on', 'off', '-1', '-1', 'on', 'on', 'on', 'on', 'on', '255', '10', '10', 'off'),
1556(6, 11, 'm3e30', 'car', 'B 67686', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '-1', '-1', '-1', '-1', '-1', '-1', '-1', '-1', '-1', '-1', '-1', '0', '0', '0', '0', '0', '0', 'off', 'off', 'off', '0', '-1', 'off', 'off', 'off', 'off', 'off', '0', '0', '0', 'off'),
1557(7, 10, 'm3e30', 'car', 'B 83797', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'off', 'off', 'off', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'off'),
1558(8, 13, 'sandero', 'car', 'B 59056', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'off', 'off', 'off', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'off'),
1559(9, 14, 'm3e30', 'car', 'B 50341', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '-1', '-1', '-1', '-1', '-1', '-1', '-1', '-1', '-1', '-1', '-1', '0', '0', '0', '0', '0', '0', 'off', 'off', 'off', '0', '-1', 'off', 'off', 'off', 'off', 'off', '0', '0', '0', 'off'),
1560(10, 7, 'polduster', 'car', 'B 73709', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'off', 'off', 'off', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'off'),
1561(11, 7, 'polgs350', 'car', 'B 65541', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'off', 'off', 'off', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'off'),
1562(12, 7, 'ghispo2', 'car', 'B 32832', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'off', 'off', 'off', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'off'),
1563(13, 7, 'polchiron', 'car', 'B 90568', '111', '0', '0', '0', '0', '0', '0', '0', '0', '0', '-1', '-1', '-1', '-1', '-1', '-1', '-1', '-1', '-1', '-1', '-1', '2', '0', '2', '0', '0', '0', 'off', 'off', 'off', '0', '-1', 'off', 'off', 'off', 'off', 'on', '0', '0', '0', 'off'),
1564(14, 6, 'r6', 'bike', 'B 81065', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '-1', '-1', '0', '0', '-1', '-1', '-1', '-1', '-1', '0', '2', '2', '2', '-1', '-1', '4', 'on', 'off', 'on', '0', '-1', 'off', 'off', 'off', 'off', 'off', '0', '0', '0', 'off'),
1565(15, 10, 'polduster', 'car', 'B 88178', '0', '0', '0', '0', '0', '0', '0', '0', '0', '4', '-1', '-1', '-1', '-1', '-1', '-1', '-1', '-1', '-1', '-1', '-1', '-1', '-1', '-1', '-1', '-1', '-1', 'on', 'off', 'off', '-1', '-1', 'off', 'off', 'off', 'off', 'off', '0', '0', '0', 'off'),
1566(16, 6, 'cayman16', 'car', 'B 68005', '118', '0', '0', '0', '0', '0', '0', '0', '1', '0', '-1', '-1', '-1', '-1', '-1', '-1', '-1', '-1', '-1', '-1', '-1', '-1', '-1', '-1', '-1', '-1', '-1', 'on', 'off', 'on', '-1', '-1', 'off', 'off', 'off', 'off', 'off', '0', '0', '0', 'off'),
1567(17, 10, 'polchiron', 'car', 'B 73588', '131', '131', '143', '111', '4', '0', '0', '0', '0', '4', '-1', '-1', '-1', '-1', '-1', '-1', '-1', '-1', '-1', '-1', '-1', '2', '2', '2', '1', '3', '4', 'off', 'on', 'on', '2', '-1', 'off', 'off', 'off', 'off', 'on', '1', '1', '1', 'off'),
1568(18, 10, 'polgs350', 'car', 'B 15289', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '-1', '-1', '-1', '-1', '-1', '-1', '-1', '-1', '-1', '-1', '-1', '-1', '-1', '-1', '-1', '-1', '-1', 'off', 'off', 'off', '-1', '-1', 'off', 'off', 'off', 'off', 'off', '0', '0', '0', 'off'),
1569(19, 10, 'ghispo2', 'car', 'B 43077', '0', '0', '0', '111', '0', '0', '0', '0', '0', '7', '-1', '0', '0', '0', '-1', '-1', '-1', '-1', '-1', '-1', '-1', '2', '2', '2', '1', '3', '4', 'off', 'off', 'on', '9', '-1', 'off', 'off', 'off', 'off', 'off', '0', '0', '0', 'off'),
1570(20, 16, 'sandero', 'car', 'B 72506', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '-1', '-1', '-1', '-1', '-1', '-1', '-1', '-1', '-1', '-1', '-1', '0', '0', '0', '0', '0', '0', 'off', 'off', 'off', '-1', '-1', 'off', 'off', 'off', 'off', 'off', '0', '0', '0', 'off'),
1571(21, 17, 'm3e30', 'car', 'B 29676', '5', '0', '0', '0', '0', '0', '0', '0', '0', '0', '-1', '-1', '-1', '-1', '-1', '-1', '-1', '-1', '-1', '-1', '-1', '0', '0', '0', '0', '0', '0', 'off', 'off', 'off', '0', '-1', 'off', 'off', 'off', 'off', 'off', '0', '0', '0', 'off'),
1572(22, 11, 'ambulance', 'car', 'B 27608', '131', '0', '0', '0', '0', '0', '0', '0', '0', '0', '-1', '-1', '-1', '-1', '-1', '-1', '-1', '-1', '-1', '-1', '-1', '0', '0', '0', '0', '0', '0', 'off', 'off', 'off', '0', '-1', 'off', 'off', 'off', 'off', 'off', '0', '0', '0', 'off'),
1573(23, 19, 'logan', 'car', 'B 80166', '62', '0', '0', '0', '0', '0', '150', '255', '0', '0', '-1', '-1', '-1', '-1', '-1', '-1', '-1', '-1', '-1', '-1', '-1', '0', '0', '0', '0', '0', '0', 'off', 'off', 'off', '0', '-1', 'on', 'on', 'on', 'on', 'off', '0', '0', '0', 'off'),
1574(24, 18, 'm3e30', 'car', 'B 68098', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'off', 'off', 'off', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'off'),
1575(25, 3, '2017chiron', 'car', 'B 69106', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'off', 'off', 'off', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'off'),
1576(26, 3, 'aperta', 'car', 'B 91820', '28', '0', '0', '0', '0', '255', '0', '0', '1', '0', '-1', '-1', '-1', '-1', '-1', '-1', '-1', '-1', '-1', '-1', '-1', '2', '2', '2', '0', '0', '4', 'on', 'off', 'off', '-1', '-1', 'on', 'on', 'on', 'on', 'on', '0', '0', '0', 'off'),
1577(27, 22, 'logan', 'car', 'B 61698', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'off', 'off', 'off', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'off'),
1578(28, 15, 'm3e30', 'car', 'B 49465', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '-1', '-1', '-1', '-1', '-1', '-1', '-1', '-1', '-1', '-1', '-1', '2', '2', '0', '0', '0', '0', 'off', 'off', 'off', '0', '-1', 'off', 'off', 'off', 'off', 'off', '0', '0', '0', 'off'),
1579(29, 2, 'k5blazer', 'car', 'B 59081', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'off', 'off', 'off', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'off'),
1580(30, 2, 'w222wald', 'car', 'IS666HTM', '12', '12', '0', '0', '1', '0', '0', '0', '1', '0', '-1', '-1', '-1', '-1', '-1', '-1', '-1', '-1', '-1', '-1', '-1', '2', '2', '2', '-1', '3', '4', 'on', 'off', 'on', '-1', '-1', 'off', 'off', 'off', 'off', 'on', '0', '0', '0', 'off'),
1581(31, 3, 'bugatti', 'car', 'B 85835', '143', '106', '106', '0', '0', '255', '255', '255', '1', '0', '-1', '0', '0', '-1', '-1', '0', '-1', '0', '-1', '-1', '-1', '2', '2', '2', '0', '3', '0', 'on', 'off', 'on', '-1', '-1', 'on', 'on', 'on', 'on', 'on', '0', '0', '0', 'off'),
1582(32, 3, 'divo', 'car', 'B 94806', '0', '28', '0', '0', '0', '255', '0', '0', '1', '0', '-1', '-1', '-1', '-1', '-1', '-1', '-1', '-1', '-1', '-1', '-1', '2', '2', '2', '0', '3', '0', 'on', 'off', 'on', '-1', '-1', 'on', 'on', 'on', 'on', 'on', '0', '0', '0', 'off'),
1583(33, 14, 'teslax', 'car', 'B 14812', '29', '0', '0', '28', '1', '255', '0', '0', '1', '1', '-1', '-1', '-1', '-1', '-1', '-1', '-1', '-1', '-1', '-1', '-1', '2', '2', '2', '0', '3', '4', 'on', 'on', 'on', '-1', '-1', 'on', 'on', 'on', 'on', 'on', '255', '10', '10', 'off'),
1584(34, 13, 'aventadors', 'car', 'B 60655', '1', '138', '138', '0', '0', '50', '255', '155', '0', '0', '-1', '-1', '-1', '-1', '0', '0', '-1', '-1', '-1', '-1', '-1', '2', '2', '2', '0', '3', '4', 'on', 'off', 'on', '-1', '-1', 'on', 'on', 'on', 'on', 'on', '0', '0', '0', 'off'),
1585(35, 26, 'm3e30', 'car', 'B 37575', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '-1', '-1', '-1', '-1', '-1', '-1', '-1', '-1', '-1', '-1', '-1', '0', '0', '0', '-1', '0', '0', 'off', 'off', 'off', '-1', '-1', 'off', 'off', 'off', 'off', 'off', '0', '0', '0', 'off'),
1586(36, 8, 'cayman16', 'car', 'B 11675', '12', '5', '5', '0', '1', '255', '255', '255', '1', '0', '-1', '-1', '-1', '-1', '-1', '-1', '-1', '-1', '-1', '-1', '-1', '-1', '-1', '-1', '-1', '-1', '-1', 'on', 'on', 'on', '-1', '-1', 'on', 'on', 'on', 'on', 'off', '1', '1', '1', 'off'),
1587(37, 25, 'logan', 'car', 'B 63047', '131', '0', '0', '0', '0', '0', '0', '0', '0', '0', '-1', '-1', '-1', '-1', '-1', '-1', '-1', '-1', '-1', '-1', '-1', '2', '2', '2', '0', '3', '0', 'off', 'off', 'off', '0', '-1', 'off', 'off', 'off', 'off', 'off', '0', '0', '0', 'off'),
1588(38, 15, 'polduster', 'car', 'B 90452', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'off', 'off', 'off', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'off'),
1589(39, 5, 'acr', 'car', 'B 26471', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'off', 'off', 'off', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'off'),
1590(40, 15, 'polchiron', 'car', 'B 58199', '111', '0', '0', '0', '0', '0', '0', '0', '0', '0', '-1', '-1', '-1', '-1', '-1', '-1', '-1', '-1', '-1', '-1', '-1', '2', '0', '0', '0', '0', '0', 'on', 'off', 'off', '0', '-1', 'off', 'off', 'off', 'off', 'off', '0', '0', '0', 'off'),
1591(41, 15, 'polgs350', 'car', 'B 91177', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'off', 'off', 'off', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'off'),
1592(42, 15, 'ghispo2', 'car', 'B 80205', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'off', 'off', 'off', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'off'),
1593(43, 13, 'huraperfospy', 'car', 'B 96866', '34', '89', '89', '4', '0', '255', '255', '255', '1', '0', '-1', '-1', '-1', '-1', '-1', '-1', '-1', '-1', '-1', '-1', '-1', '2', '2', '2', '0', '3', '4', 'on', 'off', 'on', '-1', '-1', 'on', 'on', 'on', 'on', 'on', '0', '0', '0', 'off'),
1594(44, 1, 'aperta', 'car', 'B 53283', '0', '0', '0', '0', '0', '0', '0', '0', '3', '0', '-1', '-1', '-1', '-1', '-1', '-1', '-1', '-1', '-1', '-1', '-1', '2', '2', '2', '4', '3', '4', 'off', 'on', 'off', '-1', '-1', 'off', 'off', 'off', 'off', 'on', '1', '1', '1', 'off'),
1595(45, 4, 'e60', 'car', 'VL03ADI', '12', '4', '4', '0', '1', '0', '0', '0', '1', '0', '-1', '-1', '-1', '-1', '0', '-1', '0', '-1', '-1', '-1', '0', '2', '2', '2', '0', '3', '4', 'on', 'off', 'on', '-1', '-1', 'off', 'off', 'off', 'off', 'off', '0', '0', '0', 'off'),
1596(46, 6, 'logan', 'car', 'B 92271', '28', '135', '135', '5', '0', '255', '102', '255', '1', '1', '-1', '-1', '-1', '-1', '-1', '-1', '-1', '-1', '-1', '-1', '-1', '2', '2', '2', '8', '3', '4', 'on', 'off', 'on', '2', '-1', 'on', 'on', 'on', 'on', 'on', '0', '0', '0', 'off'),
1597(47, 77, 'daf', 'car', 'B 67370', '158', '158', '0', '0', '0', '204', '204', '0', '0', '0', '-1', '-1', '-1', '-1', '-1', '-1', '-1', '-1', '-1', '-1', '-1', '-1', '-1', '-1', '-1', '-1', '-1', 'on', 'off', 'on', '-1', '-1', 'on', 'on', 'on', 'on', 'off', '0', '0', '0', 'off'),
1598(48, 24, 'rmodbmwi8', 'car', 'B 98596', '0', '28', '28', '27', '1', '255', '0', '0', '3', '0', '-1', '0', '0', '1', '-1', '0', '0', '-1', '-1', '-1', '-1', '2', '2', '2', '1', '3', '4', 'on', 'on', 'on', '0', '-1', 'on', 'on', 'on', 'on', 'off', '255', '10', '10', 'off'),
1599(49, 28, 'm3e30', 'car', 'B 78021', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'off', 'off', 'off', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'off'),
1600(50, 27, 'sandero', 'car', 'B 23579', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'off', 'off', 'off', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'off'),
1601(51, 14, 'polchiron', 'car', 'B 75742', '111', '0', '0', '0', '0', '0', '0', '0', '0', '1', '-1', '-1', '-1', '-1', '-1', '-1', '-1', '-1', '-1', '-1', '-1', '2', '2', '2', '0', '3', '4', 'off', 'off', 'off', '5', '-1', 'off', 'off', 'off', 'off', 'off', '0', '0', '0', 'off'),
1602(52, 27, 'm3e30', 'car', 'B 68820', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'off', 'off', 'off', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'off'),
1603(53, 3, 'k5blazer', 'car', 'B 46947', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'off', 'off', 'off', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'off'),
1604(54, 3, 'r6', 'bike', 'B 48474', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'off', 'off', 'off', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'off'),
1605(55, 3, 'maj935', 'car', 'B 29945', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'off', 'off', 'off', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'off'),
1606(56, 3, 'maverick2', 'car', 'B 71064', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'off', 'off', 'off', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'off'),
1607(57, 1, 'acr', 'car', 'B 24979', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'off', 'off', 'off', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'off'),
1608(58, 105, 'urus2018', 'car', 'B 15366', '42', '0', '0', '0', '0', '153', '0', '153', '5', '0', '-1', '-1', '-1', '-1', '-1', '-1', '-1', '-1', '-1', '-1', '-1', '2', '2', '2', '0', '3', '4', 'on', 'on', 'on', '-1', '-1', 'on', 'on', 'on', 'on', 'on', '255', '255', '50', 'off'),
1609(59, 2, 'urus', 'car', 'B 78043', '0', '0', '0', '0', '1', '255', '255', '255', '1', '4', '-1', '-1', '-1', '-1', '-1', '-1', '-1', '-1', '-1', '-1', '-1', '2', '2', '2', '1', '3', '4', 'on', 'off', 'on', '-1', '-1', 'off', 'off', 'off', 'off', 'on', '0', '0', '0', 'off'),
1610(60, 5, 'daf', 'car', 'B 92276', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '-1', '-1', '-1', '-1', '-1', '-1', '-1', '-1', '-1', '-1', '-1', '-1', '-1', '-1', '-1', '-1', '-1', 'on', 'off', 'off', '-1', '-1', 'off', 'off', 'off', 'off', 'off', '0', '0', '0', 'off'),
1611(61, 11, 'rmodbmwi8', 'car', 'B 86151', '131', '70', '0', '0', '1', '0', '150', '255', '1', '0', '0', '0', '0', '0', '-1', '0', '0', '-1', '-1', '-1', '-1', '2', '2', '0', '-1', '3', '4', 'on', 'off', 'off', '0', '-1', 'on', 'on', 'on', 'on', 'off', '0', '0', '0', 'off'),
1612(62, 32, 'logan', 'car', 'B 86028', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'off', 'off', 'off', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'off'),
1613(63, 34, 'ferrari812', 'car', 'B 37476', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'off', 'off', 'off', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'off'),
1614(64, 37, 'RS5', 'car', 'B 41525', '12', '12', '0', '0', '0', '0', '0', '0', '1', '0', '0', '0', '-1', '-1', '0', '-1', '-1', '-1', '-1', '-1', '0', '2', '2', '2', '0', '0', '4', 'on', 'off', 'off', '-1', '-1', 'off', 'off', 'off', 'off', 'on', '0', '0', '0', 'off'),
1615(65, 2, 'ghispo2', 'car', 'B 90634', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '-1', '-1', '-1', '-1', '-1', '-1', '-1', '-1', '-1', '-1', '-1', '0', '0', '0', '0', '0', '0', 'off', 'off', 'off', '-1', '-1', 'off', 'off', 'off', 'off', 'off', '0', '0', '0', 'off'),
1616(66, 2, 'polduster', 'car', 'B 84053', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'off', 'off', 'off', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'off'),
1617(67, 2, 'polchiron', 'car', 'B 77192', '111', '0', '0', '0', '0', '0', '0', '0', '0', '0', '-1', '-1', '-1', '-1', '-1', '-1', '-1', '-1', '-1', '-1', '-1', '0', '0', '0', '0', '0', '0', 'off', 'off', 'off', '-1', '-1', 'off', 'off', 'off', 'off', 'off', '0', '0', '0', 'off'),
1618(68, 2, 'polgs350', 'car', 'B 25669', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'off', 'off', 'off', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'off'),
1619(69, 5, 'k5blazer', 'car', 'B 87302', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'off', 'off', 'off', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'off'),
1620(70, 5, 'maj935', 'car', 'B 73943', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '-1', '-1', '-1', '-1', '-1', '-1', '-1', '-1', '-1', '-1', '-1', '-1', '-1', '-1', '-1', '-1', '-1', 'on', 'off', 'off', '-1', '-1', 'off', 'off', 'off', 'off', 'off', '0', '0', '0', 'off'),
1621(71, 5, 'maverick2', 'car', 'B 56216', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'off', 'off', 'off', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'off'),
1622(72, 5, 'aventadors', 'car', 'B 80496', '88', '29', '29', '4', '0', '0', '0', '0', '2', '0', '-1', '-1', '-1', '-1', '-1', '0', '-1', '-1', '-1', '-1', '-1', '2', '0', '2', '0', '3', '0', 'on', 'off', 'off', '0', '-1', 'off', 'off', 'off', 'off', 'on', '0', '0', '0', 'off'),
1623(73, 4, 'aventadors', 'car', 'B 82232', '89', '0', '0', '0', '1', '255', '255', '0', '0', '0', '-1', '-1', '-1', '-1', '0', '0', '-1', '-1', '-1', '-1', '-1', '2', '2', '2', '-1', '3', '4', 'on', 'off', 'off', '-1', '-1', 'on', 'on', 'on', 'on', 'on', '0', '0', '0', 'off'),
1624(74, 9, 'k5blazer', 'car', 'B 75398', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'off', 'off', 'off', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'off'),
1625(75, 9, 'maj935', 'car', 'B 96028', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'off', 'off', 'off', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'off'),
1626(76, 5, 'lp770r', 'car', 'B 58540', '0', '89', '89', '2', '0', '255', '255', '0', '1', '7', '-1', '-1', '-1', '-1', '-1', '-1', '-1', '-1', '-1', '-1', '-1', '2', '2', '2', '34', '3', '0', 'on', 'on', 'on', '19', '-1', 'on', 'on', 'on', 'on', 'on', '255', '255', '50', 'off'),
1627(77, 36, 'sef_pfinder', 'car', 'B 23274', '0', '0', '0', '142', '0', '0', '0', '0', '5', '2', '3', '-1', '-1', '0', '0', '0', '-1', '-1', '-1', '-1', '-1', '2', '2', '2', '2', '-1', '0', 'on', 'on', 'on', '-1', '-1', 'off', 'off', 'off', 'off', 'on', '0', '150', '255', 'off'),
1628(78, 36, 'hwaycarstan', 'car', 'B 95459', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'off', 'off', 'off', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'off'),
1629(79, 3, 'panamera17turbo', 'car', 'B 22741', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'off', 'off', 'off', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'off'),
1630(80, 3, 'z1000', 'bike', 'B 91458', '12', '12', '0', '0', '0', '255', '0', '0', '0', '6', '0', '0', '-1', '0', '0', '-1', '-1', '0', '-1', '-1', '0', '2', '2', '2', '0', '-1', '4', 'on', 'off', 'off', '-1', '-1', 'on', 'on', 'on', 'on', 'on', '0', '0', '0', 'off'),
1631(81, 5, 'w222wald', 'car', 'B 72358', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '-1', '-1', '-1', '-1', '-1', '-1', '-1', '-1', '-1', '-1', '-1', '2', '0', '2', '0', '3', '0', 'on', 'off', 'off', '0', '-1', 'off', 'off', 'off', 'off', 'on', '0', '0', '0', 'off'),
1632(82, 5, 'z1000', 'bike', 'B 23999', '0', '0', '0', '0', '0', '255', '255', '255', '0', '0', '0', '0', '-1', '0', '0', '-1', '-1', '0', '-1', '-1', '0', '2', '0', '2', '0', '-1', '0', 'on', 'off', 'off', '0', '-1', 'off', 'off', 'off', 'off', 'off', '0', '0', '0', 'off'),
1633(83, 9, 'z1000', 'bike', 'B 61185', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '-1', '0', '0', '-1', '-1', '0', '-1', '-1', '0', '2', '0', '0', '0', '-1', '4', 'off', 'off', 'off', '0', '-1', 'off', 'off', 'off', 'off', 'off', '0', '0', '0', 'off'),
1634(84, 13, 'z1000', 'bike', 'B 78024', '12', '12', '0', '0', '0', '0', '0', '0', '1', '0', '0', '0', '-1', '0', '0', '-1', '-1', '0', '-1', '-1', '0', '2', '2', '2', '0', '-1', '4', 'on', 'off', 'on', '0', '-1', 'off', 'off', 'off', 'off', 'off', '0', '0', '0', 'off'),
1635(85, 36, 'r8v10', 'car', 'B 78516', '112', '0', '0', '112', '1', '255', '255', '255', '1', '2', '0', '0', '0', '-1', '-1', '0', '-1', '-1', '-1', '-1', '-1', '2', '2', '2', '3', '-1', '4', 'on', 'on', 'on', '-1', '-1', 'on', 'on', 'on', 'on', 'on', '1', '1', '1', 'off'),
1636(86, 24, 'polduster', 'car', 'B 40267', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'off', 'off', 'off', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'off'),
1637(87, 24, 'polgs350', 'car', 'B 22623', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'off', 'off', 'off', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'off'),
1638(88, 24, 'ghispo2', 'car', 'B 75975', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'off', 'off', 'off', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'off'),
1639(89, 24, 'polchiron', 'car', 'B 85113', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'off', 'off', 'off', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'off'),
1640(90, 24, 'sef_pfinder', 'car', 'B 73717', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'off', 'off', 'off', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'off'),
1641(91, 24, 'hwaycarstan', 'car', 'B 64019', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'off', 'off', 'off', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'off'),
1642(92, 37, 'polduster', 'car', 'B 77247', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'off', 'off', 'off', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'off'),
1643(93, 24, 'lp770r', 'car', 'VL69XXX', '0', '27', '27', '27', '1', '255', '0', '0', '1', '0', '-1', '0', '0', '0', '-1', '-1', '-1', '0', '0', '-1', '-1', '2', '2', '2', '1', '3', '4', 'on', 'on', 'on', '0', '-1', 'on', 'on', 'on', 'on', 'off', '255', '10', '10', 'off'),
1644(94, 13, 'k5blazer', 'car', 'B 58908', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'off', 'off', 'off', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'off'),
1645(95, 13, 'maj935', 'car', 'B 16649', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'off', 'off', 'off', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'off'),
1646(96, 13, 'maverick2', 'car', 'B 49303', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'off', 'off', 'off', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'off'),
1647(97, 30, 'polgs350', 'car', 'B 41615', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'off', 'off', 'off', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'off'),
1648(98, 37, 'm82020', 'car', 'B 54500', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'off', 'off', 'off', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'off'),
1649(99, 30, 'sef_pfinder', 'car', 'B 17234', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'off', 'off', 'off', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'off'),
1650(100, 68, 'lp770r', 'car', 'B 72199', '147', '0', '0', '0', '0', '255', '0', '0', '1', '0', '0', '0', '-1', '0', '-1', '-1', '-1', '-1', '0', '-1', '-1', '2', '2', '2', '0', '3', '4', 'off', 'off', 'off', '0', '-1', 'on', 'on', 'on', 'on', 'off', '0', '0', '0', 'off'),
1651(101, 25, 'xclass', 'car', 'B 82405', '111', '0', '0', '111', '0', '0', '0', '0', '2', '4', '-1', '-1', '-1', '-1', '-1', '-1', '-1', '-1', '-1', '-1', '-1', '2', '2', '2', '0', '2', '4', 'off', 'on', 'off', '8', '-1', 'off', 'off', 'off', 'off', 'on', '254', '254', '254', 'off'),
1652(102, 38, 'polduster', 'car', 'B 23419', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'off', 'off', 'off', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'off'),
1653(103, 38, 'polgs350', 'car', 'B 61841', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'off', 'off', 'off', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'off'),
1654(104, 38, 'ghispo2', 'car', 'B 88093', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'off', 'off', 'off', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'off'),
1655(105, 38, 'polchiron', 'car', 'B 92037', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'off', 'off', 'off', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'off'),
1656(106, 38, 'hwaycarstan', 'car', 'B 65321', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'off', 'off', 'off', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'off'),
1657(107, 38, 'sef_pfinder', 'car', 'B 75489', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'off', 'off', 'off', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'off'),
1658(108, 3, '720s', 'car', 'B 96314', '111', '0', '0', '0', '0', '0', '150', '255', '1', '0', '-1', '-1', '-1', '-1', '0', '-1', '-1', '-1', '-1', '-1', '-1', '2', '2', '2', '0', '3', '-1', 'on', 'off', 'off', '-1', '-1', 'on', 'on', 'on', 'on', 'off', '0', '0', '0', 'off'),
1659(109, 25, 'pcs18', 'car', 'B 44120', '131', '0', '0', '0', '0', '0', '0', '0', '0', '0', '-1', '-1', '-1', '-1', '-1', '-1', '-1', '-1', '-1', '-1', '-1', '2', '2', '2', '0', '3', '4', 'on', 'off', 'off', '0', '-1', 'off', 'off', 'off', 'off', 'off', '0', '0', '0', 'off'),
1660(110, 13, '440i', 'car', 'B 82213', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'off', 'off', 'off', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'off'),
1661(111, 25, 'daf', 'car', 'B 82721', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'off', 'off', 'off', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'off'),
1662(112, 25, 'r6', 'bike', 'B 22123', '0', '0', '0', '0', '0', '0', '0', '0', '0', '6', '0', '-1', '-1', '0', '-1', '-1', '-1', '-1', '-1', '-1', '0', '2', '2', '2', '1', '-1', '0', 'off', 'off', 'off', '2', '-1', 'off', 'off', 'off', 'off', 'on', '0', '0', '0', 'off'),
1663(113, 25, 'mbgle', 'car', 'B 35581', '147', '0', '0', '0', '0', '0', '0', '0', '0', '0', '-1', '-1', '-1', '-1', '-1', '-1', '-1', '-1', '-1', '-1', '-1', '2', '2', '2', '0', '3', '0', 'off', 'off', 'off', '0', '-1', 'off', 'off', 'off', 'off', 'off', '0', '0', '0', 'off'),
1664(114, 41, 'sandero', 'car', 'B 71559', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'off', 'off', 'off', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'off'),
1665(115, 40, 'logan', 'car', 'B 95072', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'off', 'off', 'off', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'off'),
1666(116, 42, 'm3e30', 'car', 'B 15059', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'off', 'off', 'off', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'off'),
1667(117, 9, 'urus2018', 'car', 'B 90513', '4', '10', '10', '4', '0', '255', '255', '255', '2', '0', '-1', '-1', '-1', '-1', '-1', '-1', '-1', '-1', '-1', '-1', '-1', '2', '0', '0', '0', '0', '4', 'on', 'off', 'off', '-1', '-1', 'on', 'on', 'on', 'on', 'on', '0', '0', '0', 'off'),
1668(118, 25, 'lp770r', 'car', 'B 79213', '12', '131', '0', '0', '0', '255', '255', '255', '1', '0', '0', '0', '0', '0', '-1', '-1', '-1', '0', '0', '-1', '0', '2', '2', '2', '0', '3', '4', 'on', 'off', 'off', '7', '-1', 'off', 'off', 'off', 'off', 'off', '0', '0', '0', 'off'),
1669(119, 43, 'x6m', 'car', 'B 66228', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'off', 'off', 'off', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'off'),
1670(120, 46, 'sandero', 'car', 'B 80644', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'off', 'off', 'off', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'off'),
1671(121, 47, 'sandero', 'car', 'B 57210', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'off', 'off', 'off', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'off'),
1672(122, 9, 'lp770r', 'car', 'B 81065', '12', '28', '28', '0', '0', '255', '0', '0', '2', '0', '0', '0', '0', '0', '-1', '-1', '-1', '-1', '0', '-1', '-1', '2', '2', '0', '0', '0', '4', 'on', 'off', 'on', '0', '-1', 'on', 'on', 'on', 'on', 'off', '0', '0', '0', 'off'),
1673(123, 40, 'z1000', 'bike', 'B 58815', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'off', 'off', 'off', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'off'),
1674(124, 14, 'ambulance', 'car', 'B 48410', '111', '0', '0', '0', '0', '0', '0', '0', '0', '0', '-1', '-1', '-1', '-1', '-1', '-1', '-1', '-1', '-1', '-1', '-1', '0', '0', '0', '0', '0', '0', 'off', 'off', 'off', '0', '-1', 'off', 'off', 'off', 'off', 'off', '0', '0', '0', 'off'),
1675(125, 38, 'audirs6tk', 'car', 'BR69SRI', '147', '4', '4', '5', '1', '0', '0', '0', '1', '7', '-1', '4', '1', '-1', '-1', '0', '0', '-1', '0', '-1', '-1', '2', '2', '0', '0', '0', '4', 'off', 'off', 'off', '4', '-1', 'off', 'off', 'off', 'off', 'off', '0', '0', '0', 'off'),
1676(126, 4, 'daf', 'car', 'VL05ADI', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'off', 'off', 'off', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'off'),
1677(127, 10, 'hwaycarstan', 'car', 'B 79592', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'off', 'off', 'off', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'off'),
1678(128, 3, 'm3e30', 'car', 'B 22164', '0', '0', '0', '0', '0', '0', '0', '255', '1', '0', '-1', '-1', '-1', '-1', '-1', '-1', '-1', '-1', '-1', '-1', '-1', '2', '2', '2', '-1', '3', '4', 'on', 'off', 'on', '-1', '-1', 'on', 'on', 'on', 'on', 'on', '0', '0', '0', 'off'),
1679(129, 5, 'e60', 'car', 'B 24916', '0', '0', '0', '0', '0', '255', '0', '0', '0', '0', '-1', '0', '-1', '-1', '-1', '-1', '-1', '-1', '-1', '-1', '-1', '2', '2', '2', '0', '3', '0', 'on', 'off', 'on', '0', '0', 'on', 'on', 'on', 'on', 'off', '0', '0', '0', 'off'),
1680(130, 10, 'rmodbmwi8', 'car', 'B 29929', '92', '55', '89', '141', '0', '0', '255', '0', '1', '0', '0', '0', '0', '0', '-1', '0', '0', '-1', '-1', '-1', '-1', '2', '2', '2', '0', '3', '4', 'on', 'on', 'off', '10', '-1', 'on', 'on', 'on', 'on', 'off', '10', '255', '10', 'off'),
1681(131, 5, 'gl63', 'car', 'B 32697', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'off', 'off', 'off', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'off'),
1682(132, 38, 'bs17', 'bike', 'B 56485', '12', '83', '0', '0', '0', '0', '0', '0', '0', '0', '-1', '-1', '-1', '-1', '0', '-1', '-1', '-1', '-1', '-1', '-1', '0', '0', '0', '0', '0', '0', 'off', 'off', 'off', '0', '-1', 'off', 'off', 'off', 'off', 'off', '0', '0', '0', 'off'),
1683(133, 25, 'wraith', 'car', 'B 16303', '28', '12', '0', '0', '0', '255', '0', '0', '1', '0', '-1', '-1', '-1', '-1', '-1', '-1', '-1', '-1', '-1', '-1', '-1', '2', '2', '2', '0', '3', '4', 'on', 'off', 'off', '7', '-1', 'on', 'on', 'on', 'on', 'off', '0', '0', '0', 'off'),
1684(134, 49, 'm3e30', 'car', 'B 50111', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '-1', '-1', '-1', '-1', '-1', '-1', '-1', '-1', '-1', '-1', '-1', '2', '2', '2', '0', '3', '0', 'off', 'off', 'on', '-1', '-1', 'off', 'off', 'off', 'off', 'off', '0', '0', '0', 'off'),
1685(135, 1, 'urus2018', 'car', 'B 58540', '131', '29', '0', '0', '0', '204', '204', '0', '2', '0', '-1', '-1', '-1', '-1', '-1', '-1', '-1', '-1', '-1', '-1', '-1', '2', '2', '2', '3', '3', '4', 'on', 'on', 'on', '-1', '-1', 'on', 'on', 'on', 'on', 'on', '0', '150', '255', 'off'),
1686(136, 11, 'sandero', 'car', 'B 80166', '131', '131', '0', '150', '0', '0', '0', '0', '0', '0', '-1', '-1', '-1', '-1', '-1', '-1', '-1', '-1', '-1', '-1', '-1', '2', '0', '0', '-1', '0', '4', 'off', 'off', 'off', '0', '-1', 'off', 'off', 'off', 'off', 'off', '0', '0', '0', 'off'),
1687(137, 3, 'g65amg', 'car', 'B 99969', '27', '111', '111', '0', '0', '0', '0', '0', '0', '0', '-1', '-1', '-1', '-1', '-1', '-1', '-1', '-1', '-1', '-1', '-1', '2', '2', '2', '0', '0', '-1', 'on', 'off', 'on', '-1', '-1', 'off', 'off', 'off', 'off', 'on', '0', '0', '0', 'off'),
1688(138, 5, 'g65amg', 'car', 'B 36754', '0', '0', '0', '0', '0', '0', '0', '0', '1', '0', '-1', '-1', '-1', '-1', '-1', '-1', '-1', '-1', '-1', '-1', '-1', '2', '2', '2', '0', '0', '0', 'on', 'off', 'off', '0', '-1', 'off', 'off', 'off', 'off', 'on', '0', '0', '0', 'on'),
1689(139, 44, 'bs17', 'bike', 'B 85382', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '-1', '-1', '-1', '-1', '0', '-1', '-1', '-1', '-1', '-1', '-1', '-1', '0', '2', '0', '0', '0', 'off', 'off', 'off', '0', '-1', 'off', 'off', 'off', 'off', 'off', '0', '0', '0', 'off'),
1690(140, 9, 'g65amg', 'car', 'B 75382', '12', '28', '28', '28', '0', '0', '0', '0', '1', '3', '-1', '-1', '-1', '-1', '-1', '-1', '-1', '-1', '-1', '-1', '-1', '2', '2', '0', '0', '0', '4', 'on', 'off', 'off', '-1', '-1', 'off', 'off', 'off', 'off', 'on', '0', '0', '0', 'off'),
1691(141, 3, 'urus', 'car', 'B 64157', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'off', 'off', 'off', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'off'),
1692(142, 3, 'wraith', 'car', 'B02CDM', '101', '5', '0', '0', '0', '0', '0', '0', '1', '0', '-1', '-1', '-1', '-1', '-1', '-1', '-1', '-1', '-1', '-1', '-1', '2', '2', '2', '0', '3', '0', 'on', 'off', 'on', '-1', '-1', 'off', 'off', 'off', 'off', 'on', '0', '0', '0', 'off'),
1693(143, 37, 'daduster', 'car', 'VS69PLM', '12', '0', '0', '0', '1', '0', '0', '0', '1', '4', '-1', '-1', '-1', '-1', '-1', '-1', '-1', '-1', '-1', '-1', '-1', '2', '2', '2', '0', '0', '4', 'on', 'off', 'on', '-1', '-1', 'off', 'off', 'off', 'off', 'on', '0', '0', '0', 'off'),
1694(144, 41, 'm3e30', 'car', 'B 98964', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'off', 'off', 'off', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'off'),
1695(145, 3, 'ferrari812', 'car', 'B 24960', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'off', 'off', 'off', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'off'),
1696(146, 5, 'a8fsi', 'car', 'B 23790', '111', '0', '0', '0', '0', '0', '0', '0', '0', '0', '-1', '-1', '-1', '-1', '-1', '-1', '-1', '-1', '-1', '-1', '-1', '2', '2', '2', '0', '3', '0', 'on', 'off', 'off', '0', '-1', 'off', 'off', 'off', 'off', 'off', '0', '0', '0', 'off'),
1697(147, 14, 'lp770r', 'car', 'B 57817', '0', '38', '38', '0', '0', '255', '128', '0', '1', '0', '0', '0', '0', '0', '-1', '-1', '-1', '-1', '0', '-1', '0', '2', '2', '2', '0', '3', '4', 'on', 'on', 'on', '-1', '-1', 'on', 'on', 'on', 'on', 'off', '255', '153', '51', 'off'),
1698(148, 14, 'daf', 'car', 'B 27465', '0', '28', '28', '0', '0', '255', '0', '0', '0', '0', '-1', '-1', '-1', '-1', '-1', '-1', '-1', '-1', '-1', '-1', '-1', '-1', '-1', '-1', '-1', '-1', '-1', 'on', 'off', 'on', '-1', '-1', 'on', 'on', 'on', 'on', 'off', '0', '0', '0', 'off'),
1699(149, 16, '440i', 'car', 'B 41690', '111', '106', '106', '0', '0', '0', '0', '0', '0', '0', '-1', '-1', '-1', '-1', '-1', '-1', '-1', '-1', '-1', '-1', '-1', '-1', '-1', '-1', '-1', '-1', '-1', 'off', 'off', 'off', '-1', '-1', 'off', 'off', 'off', 'off', 'off', '0', '0', '0', 'off'),
1700(150, 5, 'polduster', 'car', 'B 99513', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'off', 'off', 'off', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'off'),
1701(151, 52, 'm3e30', 'car', 'B 61531', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'off', 'off', 'off', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'off'),
1702(152, 6, 'rmodm3e36', 'car', 'B 28174', '3', '3', '3', '5', '0', '0', '0', '0', '2', '0', '0', '0', '0', '-1', '0', '0', '0', '-1', '-1', '-1', '0', '2', '2', '2', '-1', '3', '4', 'on', 'off', 'on', '5', '-1', 'off', 'off', 'off', 'off', 'off', '0', '0', '0', 'off'),
1703(153, 53, 'logan', 'car', 'B 86929', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'off', 'off', 'off', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'off'),
1704(154, 3, '14r8', 'car', 'B 64997', '70', '0', '0', '0', '0', '0', '150', '255', '1', '0', '-1', '-1', '-1', '-1', '-1', '-1', '-1', '-1', '-1', '-1', '-1', '2', '2', '2', '0', '3', '0', 'on', 'off', 'on', '-1', '-1', 'on', 'on', 'on', 'on', 'on', '0', '0', '0', 'off'),
1705(155, 5, 'r8v10', 'car', 'B 19956', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '-1', '-1', '0', '-1', '-1', '-1', '-1', '-1', '2', '2', '2', '0', '-1', '0', 'on', 'off', 'off', '0', '-1', 'off', 'off', 'off', 'off', 'off', '0', '0', '0', 'off'),
1706(156, 5, '14r8', 'car', 'B 82721', '92', '120', '0', '92', '0', '0', '255', '0', '0', '5', '-1', '-1', '-1', '-1', '-1', '-1', '-1', '-1', '-1', '-1', '-1', '2', '0', '2', '34', '3', '0', 'on', 'off', 'on', '5', '-1', 'on', 'on', 'on', 'on', 'on', '0', '0', '0', 'off'),
1707(157, 7, 'bmwm4', 'car', 'B 81065', '13', '27', '27', '0', '0', '255', '0', '0', '1', '0', '-1', '-1', '-1', '-1', '-1', '-1', '-1', '-1', '-1', '-1', '-1', '-1', '-1', '-1', '-1', '-1', '-1', 'off', 'off', 'on', '-1', '-1', 'on', 'on', 'on', 'on', 'off', '0', '0', '0', 'off'),
1708(158, 99, 'rmodbmwi8', 'car', 'B 30563', '131', '28', '28', '1', '0', '255', '0', '0', '1', '0', '0', '0', '0', '0', '-1', '0', '0', '-1', '-1', '-1', '-1', '2', '2', '0', '0', '3', '4', 'on', 'off', 'on', '-1', '-1', 'on', 'on', 'on', 'on', 'on', '0', '0', '0', 'off'),
1709(159, 7, 'sef_pfinder', 'car', 'B 87720', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'off', 'off', 'off', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'off'),
1710(160, 7, 'hwaycarstan', 'car', 'B 30648', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'off', 'off', 'off', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'off'),
1711(161, 15, '63lb', 'car', 'B 32458', '2', '136', '136', '0', '0', '0', '0', '0', '0', '0', '-1', '-1', '-1', '-1', '-1', '-1', '-1', '-1', '-1', '-1', '-1', '2', '2', '2', '0', '3', '0', 'off', 'off', 'off', '0', '-1', 'off', 'off', 'off', 'off', 'off', '0', '0', '0', 'off'),
1712(162, 7, 'rmodbmwi8', 'car', 'B 17327', '12', '64', '64', '64', '0', '0', '150', '255', '1', '0', '0', '0', '0', '0', '-1', '0', '0', '-1', '-1', '-1', '-1', '2', '2', '2', '0', '3', '4', 'off', 'on', 'on', '5', '-1', 'on', 'on', 'on', 'on', 'on', '0', '150', '255', 'on'),
1713(163, 5, 'r6', 'bike', 'B 21258', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'off', 'off', 'off', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'off'),
1714(164, 53, 'bmwm4', 'car', 'B249KEN', '12', '28', '28', '0', '1', '255', '0', '0', '1', '0', '-1', '-1', '-1', '-1', '-1', '-1', '-1', '-1', '-1', '-1', '-1', '-1', '-1', '-1', '-1', '-1', '-1', 'off', 'on', 'on', '-1', '-1', 'on', 'on', 'on', 'on', 'off', '254', '254', '254', 'off'),
1715(165, 14, 'g65amg', 'car', 'B 72759', '0', '88', '88', '0', '0', '255', '255', '0', '1', '7', '-1', '-1', '-1', '-1', '-1', '-1', '-1', '-1', '-1', '-1', '-1', '2', '2', '2', '0', '3', '4', 'off', 'off', 'on', '-1', '-1', 'on', 'on', 'on', 'on', 'off', '0', '0', '0', 'off'),
1716(166, 3, '440i', 'car', 'B 16229', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '-1', '-1', '-1', '-1', '-1', '-1', '-1', '-1', '-1', '-1', '-1', '-1', '-1', '-1', '-1', '-1', '-1', 'on', 'off', 'on', '-1', '-1', 'off', 'off', 'off', 'off', 'on', '0', '0', '0', 'off'),
1717(167, 59, 'm3e30', 'car', 'B 38995', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'off', 'off', 'off', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'off'),
1718(168, 58, 'x6m', 'car', 'B 96360', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'off', 'off', 'off', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'off'),
1719(169, 25, 'mb250', 'car', 'B 97907', '12', '6', '6', '0', '0', '255', '255', '255', '2', '0', '-1', '-1', '-1', '-1', '-1', '-1', '-1', '-1', '-1', '-1', '-1', '2', '2', '2', '0', '0', '4', 'on', 'off', 'off', '0', '-1', 'off', 'off', 'off', 'off', 'off', '0', '0', '0', 'off'),
1720(170, 14, 'polduster', 'car', 'B 81001', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '-1', '-1', '-1', '-1', '-1', '-1', '-1', '-1', '-1', '-1', '-1', '-1', '-1', '-1', '-1', '-1', '-1', 'off', 'off', 'off', '-1', '-1', 'off', 'off', 'off', 'off', 'off', '0', '0', '0', 'off'),
1721(171, 14, 'ghispo2', 'car', 'B 32824', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '-1', '0', '0', '0', '-1', '-1', '-1', '-1', '-1', '-1', '-1', '2', '2', '2', '0', '0', '4', 'off', 'off', 'off', '0', '-1', 'off', 'off', 'off', 'off', 'off', '0', '0', '0', 'off'),
1722(172, 14, 'polgs350', 'car', 'B 45518', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '-1', '-1', '-1', '-1', '-1', '-1', '-1', '-1', '-1', '-1', '-1', '-1', '-1', '-1', '-1', '-1', '-1', 'on', 'off', 'off', '-1', '-1', 'off', 'off', 'off', 'off', 'off', '0', '0', '0', 'off'),
1723(173, 38, 'g65amg', 'car', 'B 88239', '61', '64', '64', '0', '1', '0', '0', '0', '1', '4', '-1', '-1', '-1', '-1', '-1', '-1', '-1', '-1', '-1', '-1', '-1', '2', '2', '2', '1', '3', '4', 'on', 'off', 'on', '6', '-1', 'off', 'off', 'off', 'off', 'on', '0', '0', '0', 'off'),
1724(174, 1, 'hwaycarstan', 'car', 'B 16319', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'off', 'off', 'off', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'off'),
1725(175, 1, 'sef_pfinder', 'car', 'B 75280', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'off', 'off', 'off', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'off'),
1726(176, 1, 'polchiron', 'car', 'B 19261', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'off', 'off', 'off', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'off');
1727INSERT INTO `vrp_user_vehicles` (`id`, `user_id`, `vehicle`, `veh_type`, `vehicle_plate`, `vehicle_colorprimary`, `vehicle_colorsecondary`, `vehicle_pearlescentcolor`, `vehicle_wheelcolor`, `vehicle_plateindex`, `vehicle_neoncolor1`, `vehicle_neoncolor2`, `vehicle_neoncolor3`, `vehicle_windowtint`, `vehicle_wheeltype`, `vehicle_mods0`, `vehicle_mods1`, `vehicle_mods2`, `vehicle_mods3`, `vehicle_mods4`, `vehicle_mods5`, `vehicle_mods6`, `vehicle_mods7`, `vehicle_mods8`, `vehicle_mods9`, `vehicle_mods10`, `vehicle_mods11`, `vehicle_mods12`, `vehicle_mods13`, `vehicle_mods14`, `vehicle_mods15`, `vehicle_mods16`, `vehicle_turbo`, `vehicle_tiresmoke`, `vehicle_xenon`, `vehicle_mods23`, `vehicle_mods24`, `vehicle_neon0`, `vehicle_neon1`, `vehicle_neon2`, `vehicle_neon3`, `vehicle_bulletproof`, `vehicle_smokecolor1`, `vehicle_smokecolor2`, `vehicle_smokecolor3`, `vehicle_modvariation`) VALUES
1728(177, 7, 'lp770r', 'car', 'B 28083', '0', '0', '0', '0', '1', '0', '150', '255', '0', '0', '0', '0', '0', '0', '-1', '-1', '-1', '0', '0', '-1', '0', '2', '2', '2', '0', '3', '4', 'off', 'off', 'on', '0', '-1', 'on', 'on', 'on', 'on', 'off', '0', '0', '0', 'off'),
1729(178, 61, 'sandero', 'car', 'B 53643', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'off', 'off', 'off', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'off'),
1730(179, 104, 'huraperfospy', 'car', 'B 13158', '0', '92', '92', '0', '0', '0', '255', '0', '1', '0', '-1', '-1', '-1', '-1', '-1', '-1', '-1', '-1', '-1', '-1', '-1', '2', '2', '2', '0', '3', '4', 'on', 'off', 'on', '0', '-1', 'on', 'on', 'on', 'on', 'off', '0', '0', '0', 'off'),
1731(180, 14, 'aventadors', 'car', 'B 10791', '0', '91', '91', '0', '0', '255', '255', '0', '1', '0', '-1', '0', '0', '-1', '0', '0', '-1', '-1', '-1', '-1', '-1', '2', '2', '2', '0', '3', '4', 'on', 'off', 'on', '-1', '-1', 'on', 'on', 'on', 'on', 'off', '0', '0', '0', 'off'),
1732(181, 25, 'a8lfsi', 'car', 'B 33958', '111', '39', '0', '0', '0', '255', '0', '0', '1', '0', '-1', '-1', '-1', '-1', '-1', '-1', '-1', '-1', '-1', '-1', '0', '2', '2', '2', '0', '3', '3', 'on', 'off', 'off', '0', '-1', 'on', 'on', 'on', 'on', 'off', '0', '0', '0', 'off'),
1733(182, 25, 'urus', 'car', 'B 36754', '138', '159', '0', '38', '0', '255', '128', '0', '1', '0', '-1', '-1', '-1', '-1', '-1', '-1', '-1', '-1', '-1', '-1', '-1', '2', '2', '2', '0', '3', '4', 'on', 'off', 'off', '7', '-1', 'on', 'on', 'on', 'on', 'on', '0', '0', '0', 'off'),
1734(183, 91, 'c63s', 'car', 'B 12136', '12', '27', '27', '0', '0', '255', '0', '0', '1', '0', '0', '0', '0', '-1', '-1', '0', '-1', '-1', '-1', '-1', '-1', '2', '2', '2', '0', '3', '4', 'on', 'on', 'off', '-1', '-1', 'on', 'on', 'on', 'on', 'off', '255', '10', '10', 'off'),
1735(184, 25, 'teslax', 'car', 'B 70946', '0', '0', '0', '0', '0', '0', '0', '255', '1', '0', '-1', '-1', '-1', '-1', '-1', '-1', '-1', '-1', '-1', '-1', '-1', '2', '2', '2', '0', '3', '4', 'off', 'off', 'off', '15', '-1', 'on', 'on', 'on', 'on', 'on', '0', '0', '0', 'off'),
1736(185, 25, 'panamera17turbo', 'car', 'B 15059', '159', '0', '0', '0', '0', '204', '204', '0', '1', '0', '-1', '-1', '-1', '-1', '-1', '-1', '-1', '-1', '-1', '-1', '-1', '2', '2', '2', '1', '3', '4', 'off', 'on', 'off', '-1', '-1', 'on', 'on', 'on', 'on', 'on', '1', '1', '1', 'off'),
1737(186, 62, 'm3e30', 'car', 'B 69666', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '-1', '-1', '-1', '-1', '-1', '-1', '-1', '-1', '-1', '-1', '-1', '0', '0', '0', '0', '0', '0', 'off', 'off', 'off', '0', '-1', 'off', 'off', 'off', 'off', 'off', '0', '0', '0', 'off'),
1738(187, 11, 'r6', 'bike', 'B 27465', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '-1', '-1', '0', '0', '-1', '-1', '-1', '-1', '-1', '0', '2', '0', '0', '-1', '-1', '0', 'on', 'off', 'off', '0', '-1', 'off', 'off', 'off', 'off', 'off', '0', '0', '0', 'off'),
1739(188, 14, 'logan', 'car', 'B 75975', '0', '135', '135', '0', '0', '255', '0', '255', '1', '7', '-1', '-1', '-1', '-1', '-1', '-1', '-1', '-1', '-1', '-1', '-1', '2', '2', '2', '0', '3', '4', 'on', 'on', 'on', '18', '-1', 'on', 'on', 'on', 'on', 'off', '255', '102', '178', 'off'),
1740(189, 3, 'logan', 'car', 'B 23002', '99', '88', '88', '0', '0', '255', '255', '0', '1', '0', '-1', '-1', '-1', '-1', '-1', '-1', '-1', '-1', '-1', '-1', '-1', '2', '2', '2', '33', '3', '0', 'on', 'off', 'off', '-1', '-1', 'on', 'on', 'on', 'on', 'on', '0', '0', '0', 'off'),
1741(190, 11, 'logan', 'car', 'B 10145', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'off', 'off', 'off', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'off'),
1742(191, 131, 'z1000', 'bike', 'B 20404', '0', '0', '0', '27', '0', '0', '0', '0', '0', '6', '0', '0', '-1', '0', '0', '-1', '-1', '0', '-1', '-1', '0', '2', '2', '2', '0', '-1', '4', 'on', 'on', 'off', '-1', '-1', 'off', 'off', 'off', 'off', 'off', '255', '10', '10', 'off'),
1743(192, 5, 'SQ72016', 'car', 'B 71751', '135', '0', '0', '0', '0', '255', '102', '255', '0', '0', '-1', '0', '0', '-1', '-1', '-1', '-1', '-1', '0', '0', '-1', '2', '2', '2', '0', '3', '0', 'on', 'off', 'on', '0', '-1', 'on', 'on', 'on', 'on', 'off', '0', '0', '0', 'off'),
1744(193, 5, '720s', 'car', 'B 49303', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '-1', '0', '-1', '-1', '0', '0', '-1', '-1', '2', '2', '2', '0', '3', '0', 'on', 'off', 'off', '0', '-1', 'off', 'off', 'off', 'off', 'off', '0', '0', '0', 'off'),
1745(194, 38, 'teslax', 'car', 'B 62006', '54', '88', '88', '54', '0', '50', '255', '155', '1', '7', '-1', '-1', '-1', '-1', '-1', '-1', '-1', '-1', '-1', '-1', '-1', '2', '2', '2', '0', '3', '4', 'off', 'off', 'on', '18', '-1', 'on', 'on', 'on', 'on', 'on', '0', '0', '0', 'on'),
1746(195, 7, 'daduster', 'car', 'B 31857', '12', '27', '27', '0', '0', '255', '255', '255', '1', '0', '-1', '-1', '-1', '-1', '-1', '-1', '-1', '-1', '-1', '-1', '-1', '2', '2', '2', '0', '0', '4', 'on', 'off', 'on', '0', '-1', 'on', 'on', 'on', 'on', 'off', '0', '0', '0', 'off'),
1747(196, 63, 'daduster', 'car', 'B 33417', '131', '0', '0', '0', '1', '0', '0', '0', '4', '0', '-1', '-1', '-1', '-1', '-1', '-1', '-1', '-1', '-1', '-1', '-1', '0', '0', '0', '0', '0', '0', 'off', 'off', 'on', '18', '-1', 'off', 'off', 'off', 'off', 'off', '0', '0', '0', 'on'),
1748(197, 14, 'c63s', 'car', 'B 45700', '0', '0', '0', '0', '0', '255', '0', '0', '1', '0', '0', '0', '0', '-1', '-1', '0', '-1', '-1', '-1', '-1', '-1', '2', '2', '2', '0', '0', '0', 'on', 'off', 'on', '0', '-1', 'on', 'on', 'on', 'on', 'off', '0', '0', '0', 'off'),
1749(198, 25, 'x6m', 'car', 'B 10565', '55', '0', '0', '0', '0', '0', '0', '0', '2', '0', '-1', '-1', '-1', '-1', '-1', '-1', '-1', '-1', '-1', '-1', '-1', '2', '2', '2', '0', '3', '4', 'off', 'on', 'off', '15', '-1', 'off', 'off', 'off', 'off', 'on', '10', '255', '10', 'off'),
1750(199, 69, 'm3e30', 'car', 'B 34439', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'off', 'off', 'off', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'off'),
1751(200, 1, 'urus', 'car', 'CT69DAN', '0', '0', '0', '0', '0', '0', '0', '0', '1', '0', '-1', '-1', '-1', '-1', '-1', '-1', '-1', '-1', '-1', '-1', '-1', '2', '2', '2', '3', '3', '4', 'on', 'on', 'off', '-1', '-1', 'off', 'off', 'off', 'off', 'on', '1', '1', '1', 'off'),
1752(201, 14, 'x6m', 'car', 'B 73281', '28', '0', '0', '28', '0', '255', '0', '0', '2', '0', '-1', '-1', '-1', '-1', '-1', '-1', '-1', '-1', '-1', '-1', '-1', '2', '2', '0', '0', '0', '0', 'on', 'on', 'on', '10', '-1', 'on', 'on', 'on', 'on', 'off', '255', '10', '10', 'off'),
1753(202, 10, 'wraith', 'car', 'B 67656', '111', '0', '0', '0', '1', '255', '255', '255', '1', '7', '-1', '-1', '-1', '-1', '-1', '-1', '-1', '-1', '-1', '-1', '-1', '2', '2', '2', '12', '3', '4', 'off', 'on', 'on', '9', '-1', 'off', 'off', 'off', 'off', 'off', '1', '1', '1', 'off'),
1754(203, 10, 'teslax', 'car', 'B 51050', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'off', 'off', 'off', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'off'),
1755(204, 14, 'wraith', 'car', 'B 24013', '0', '0', '0', '0', '1', '255', '255', '255', '1', '7', '-1', '-1', '-1', '-1', '-1', '-1', '-1', '-1', '-1', '-1', '-1', '2', '2', '0', '0', '3', '4', 'on', 'on', 'on', '9', '-1', 'off', 'off', 'off', 'off', 'on', '1', '1', '1', 'on'),
1756(205, 14, 'm3f80', 'car', 'B 77192', '12', '0', '0', '0', '1', '255', '0', '0', '1', '0', '-1', '-1', '-1', '-1', '-1', '-1', '-1', '-1', '-1', '-1', '-1', '-1', '-1', '-1', '-1', '-1', '-1', 'off', 'on', 'on', '-1', '-1', 'on', 'on', 'on', 'on', 'off', '255', '255', '50', 'off'),
1757(206, 38, 'a8fsi', 'car', 'B 52308', '0', '83', '83', '0', '0', '0', '0', '0', '1', '0', '-1', '-1', '-1', '-1', '-1', '-1', '-1', '-1', '-1', '-1', '-1', '2', '2', '2', '1', '3', '4', 'on', 'on', 'off', '7', '-1', 'off', 'off', 'off', 'off', 'off', '0', '150', '255', 'off'),
1758(207, 25, '720s', 'car', 'B 77670', '12', '131', '0', '0', '1', '0', '0', '0', '1', '0', '0', '0', '0', '-1', '0', '-1', '-1', '0', '0', '-1', '-1', '2', '2', '2', '0', '3', '4', 'on', 'on', 'off', '8', '-1', 'off', 'off', 'off', 'off', 'on', '254', '254', '254', 'off'),
1759(208, 1, 'm82020', 'car', 'B 13133', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'off', 'off', 'off', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'off'),
1760(209, 1, '63lb', 'car', 'B 68227', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'off', 'off', 'off', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'off'),
1761(210, 25, 'A4', 'car', 'B 54013', '0', '27', '27', '0', '0', '255', '0', '0', '3', '0', '-1', '-1', '-1', '-1', '-1', '-1', '-1', '-1', '-1', '-1', '-1', '2', '2', '2', '0', '3', '4', 'on', 'off', 'on', '-1', '-1', 'on', 'on', 'on', 'on', 'off', '0', '0', '0', 'off'),
1762(211, 2, 'c5rs6', 'car', 'B 53813', '0', '0', '0', '0', '1', '0', '0', '0', '0', '0', '-1', '-1', '-1', '-1', '-1', '-1', '-1', '-1', '-1', '-1', '-1', '2', '2', '0', '1', '3', '4', 'on', 'off', 'on', '-1', '-1', 'off', 'off', 'off', 'off', 'on', '0', '0', '0', 'off'),
1763(212, 25, 'g65amg', 'car', 'B 15946', '131', '0', '0', '0', '0', '0', '0', '0', '0', '0', '-1', '-1', '-1', '-1', '-1', '-1', '-1', '-1', '-1', '-1', '-1', '2', '2', '2', '0', '3', '4', 'off', 'on', 'off', '7', '-1', 'off', 'off', 'off', 'off', 'on', '254', '254', '254', 'off'),
1764(213, 50, 'maj935', 'car', 'B 73325', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'off', 'off', 'off', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'off'),
1765(214, 50, 'k5blazer', 'car', 'B 96020', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'off', 'off', 'off', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'off'),
1766(215, 2, 'g65amg', 'car', 'IS777HTM', '12', '12', '0', '0', '1', '0', '0', '0', '1', '4', '-1', '-1', '-1', '-1', '-1', '-1', '-1', '-1', '-1', '-1', '-1', '2', '2', '2', '0', '3', '4', 'on', 'off', 'on', '3', '-1', 'off', 'off', 'off', 'off', 'on', '0', '0', '0', 'off'),
1767(216, 76, 'mlbrabus', 'car', 'B 88961', '12', '153', '0', '0', '0', '255', '255', '255', '4', '0', '0', '0', '-1', '0', '0', '-1', '-1', '-1', '-1', '-1', '0', '2', '1', '1', '0', '2', '3', 'on', 'off', 'off', '0', '-1', 'on', 'on', 'on', 'on', 'off', '0', '0', '0', 'off'),
1768(217, 14, '720s', 'car', 'B 25018', '39', '39', '0', '0', '0', '255', '0', '0', '1', '1', '0', '0', '0', '-1', '0', '-1', '-1', '0', '0', '-1', '-1', '2', '2', '2', '0', '3', '4', 'on', 'off', 'on', '-1', '-1', 'on', 'on', 'on', 'on', 'off', '0', '0', '0', 'off'),
1769(218, 78, 'polduster', 'car', 'B 82784', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'off', 'off', 'off', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'off'),
1770(219, 78, 'polchiron', 'car', 'B 53187', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'off', 'off', 'off', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'off'),
1771(220, 78, 'logan', 'car', 'B 41525', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'off', 'off', 'off', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'off'),
1772(221, 1, 'lp770r', 'car', 'B 23504', '111', '0', '0', '0', '0', '255', '0', '0', '0', '0', '-1', '0', '0', '-1', '-1', '-1', '-1', '-1', '-1', '-1', '-1', '2', '2', '2', '0', '3', '4', 'on', 'on', 'on', '-1', '-1', 'on', 'on', 'on', 'on', 'on', '254', '254', '254', 'off'),
1773(222, 5, 'urus2018', 'car', 'BC78MUE', '150', '147', '147', '0', '0', '0', '0', '0', '0', '0', '-1', '-1', '-1', '-1', '-1', '-1', '-1', '-1', '-1', '-1', '-1', '2', '2', '2', '0', '3', '0', 'on', 'off', 'off', '0', '-1', 'off', 'off', 'off', 'off', 'off', '0', '0', '0', 'off'),
1774(223, 5, 'aperta', 'car', 'B 21409', '147', '31', '31', '0', '1', '255', '0', '0', '5', '0', '-1', '-1', '-1', '-1', '-1', '-1', '-1', '-1', '-1', '-1', '-1', '2', '2', '2', '0', '3', '0', 'on', 'off', 'on', '0', '-1', 'on', 'on', 'on', 'on', 'off', '0', '0', '0', 'off'),
1775(224, 5, 'rmodm3e36', 'car', 'B 99755', '29', '0', '0', '150', '0', '255', '0', '0', '0', '0', '-1', '0', '0', '-1', '1', '-1', '-1', '-1', '-1', '-1', '-1', '2', '2', '2', '34', '3', '0', 'on', 'on', 'on', '7', '-1', 'on', 'on', 'on', 'on', 'on', '255', '10', '10', 'off'),
1776(225, 1, 'c63s', 'car', 'B 36246', '27', '41', '0', '0', '0', '0', '255', '0', '1', '0', '0', '0', '0', '-1', '-1', '0', '-1', '-1', '-1', '-1', '-1', '2', '2', '2', '25', '3', '4', 'on', 'on', 'on', '-1', '-1', 'on', 'on', 'on', 'on', 'on', '1', '1', '1', 'off'),
1777(226, 16, 'polduster', 'car', 'B 76522', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'off', 'off', 'off', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'off'),
1778(227, 16, 'ambulance', 'car', 'B 62036', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'off', 'off', 'off', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'off'),
1779(228, 5, 'a8lfsi', 'car', 'B 10670', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '-1', '-1', '-1', '-1', '-1', '-1', '-1', '-1', '-1', '-1', '-1', '2', '2', '2', '0', '3', '0', 'on', 'off', 'off', '0', '-1', 'off', 'off', 'off', 'off', 'off', '0', '0', '0', 'off'),
1780(229, 5, 'tmodel', 'car', 'B 48040', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '-1', '-1', '-1', '-1', '-1', '-1', '-1', '-1', '-1', '-1', '-1', '2', '2', '2', '0', '3', '0', 'on', 'off', 'off', '0', '-1', 'off', 'off', 'off', 'off', 'off', '0', '0', '0', 'off'),
1781(230, 5, 'teslax', 'car', 'B 46535', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '-1', '-1', '-1', '-1', '-1', '-1', '-1', '-1', '-1', '-1', '-1', '2', '2', '2', '0', '3', '0', 'on', 'off', 'off', '0', '-1', 'off', 'off', 'off', 'off', 'off', '0', '0', '0', 'off'),
1782(231, 4, '2016rs7', 'car', 'VL02ADI', '131', '14', '0', '5', '1', '0', '0', '0', '1', '0', '0', '0', '0', '-1', '0', '-1', '-1', '-1', '0', '0', '-1', '2', '2', '2', '0', '3', '4', 'on', 'off', 'on', '3', '-1', 'off', 'off', 'off', 'off', 'off', '0', '0', '0', 'on'),
1783(232, 4, 'w222wald', 'car', 'VL08ADI', '111', '111', '111', '0', '1', '0', '0', '0', '1', '0', '-1', '-1', '-1', '-1', '-1', '-1', '-1', '-1', '-1', '-1', '-1', '2', '2', '2', '0', '3', '4', 'on', 'off', 'on', '-1', '-1', 'off', 'off', 'off', 'off', 'off', '0', '0', '0', 'off'),
1784(233, 4, 'm3f80', 'car', 'VL04ADI', '131', '0', '0', '0', '0', '0', '0', '0', '0', '0', '-1', '-1', '-1', '-1', '-1', '-1', '-1', '-1', '-1', '-1', '-1', '-1', '-1', '-1', '-1', '-1', '-1', 'on', 'off', 'on', '-1', '-1', 'off', 'off', 'off', 'off', 'off', '0', '0', '0', 'off'),
1785(234, 4, 'rmodm3e36', 'car', 'VL01ADI', '131', '12', '0', '5', '1', '0', '0', '0', '1', '0', '-1', '0', '0', '-1', '0', '0', '0', '-1', '-1', '-1', '0', '2', '2', '2', '0', '3', '4', 'off', 'off', 'on', '15', '-1', 'off', 'off', 'off', 'off', 'off', '0', '0', '0', 'off'),
1786(235, 4, 'logan', 'car', 'VL07ADI', '42', '0', '0', '88', '1', '0', '0', '0', '0', '4', '-1', '-1', '-1', '-1', '-1', '-1', '-1', '-1', '-1', '-1', '-1', '2', '2', '2', '0', '3', '4', 'on', 'off', 'on', '7', '-1', 'off', 'off', 'off', 'off', 'off', '0', '0', '0', 'off'),
1787(236, 4, 'daduster', 'car', 'VL06ADI', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'off', 'off', 'off', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'off'),
1788(237, 3, 'daf', 'car', 'B 32137', '27', '111', '111', '0', '0', '255', '255', '255', '0', '0', '-1', '-1', '-1', '-1', '-1', '-1', '-1', '-1', '-1', '-1', '-1', '-1', '-1', '-1', '-1', '-1', '-1', 'on', 'off', 'on', '-1', '-1', 'on', 'on', 'on', 'on', 'off', '0', '0', '0', 'off'),
1789(238, 25, 'bmwm4', 'car', 'B 73283', '131', '0', '0', '0', '0', '0', '0', '0', '1', '0', '-1', '-1', '-1', '-1', '-1', '-1', '-1', '-1', '-1', '-1', '-1', '-1', '-1', '-1', '-1', '-1', '-1', 'off', 'off', 'off', '-1', '-1', 'off', 'off', 'off', 'off', 'off', '0', '0', '0', 'off'),
1790(239, 5, '2017chiron', 'car', 'B 77483', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'off', 'off', 'off', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'off'),
1791(240, 5, 'xclass', 'car', 'B 34007', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '-1', '-1', '-1', '-1', '-1', '-1', '-1', '-1', '-1', '-1', '-1', '2', '2', '2', '0', '3', '0', 'on', 'off', 'off', '0', '-1', 'off', 'off', 'off', 'off', 'off', '0', '0', '0', 'off'),
1792(241, 76, 'x6m', 'car', 'B 74769', '131', '0', '0', '0', '1', '0', '0', '0', '2', '0', '-1', '-1', '-1', '-1', '-1', '-1', '-1', '-1', '-1', '-1', '-1', '2', '1', '1', '0', '2', '4', 'on', 'on', 'on', '20', '-1', 'off', 'off', 'off', 'off', 'on', '254', '254', '254', 'off'),
1793(242, 41, 'audiq8', 'car', 'B 53187', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'off', 'off', 'off', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'off'),
1794(243, 41, 'bmwx7', 'car', 'B 84053', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'off', 'off', 'off', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'off'),
1795(244, 16, 'polgs350', 'car', 'B 85684', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'off', 'off', 'off', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'off'),
1796(245, 16, 'ghispo2', 'car', 'B 95580', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'off', 'off', 'off', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'off'),
1797(246, 16, 'polchiron', 'car', 'B 52962', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'off', 'off', 'off', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'off'),
1798(247, 16, 'sef_pfinder', 'car', 'B 21096', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'off', 'off', 'off', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'off'),
1799(248, 62, '440i', 'car', 'B 25669', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'off', 'off', 'off', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'off'),
1800(249, 9, 'maverick2', 'car', 'B 77035', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'off', 'off', 'off', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'off'),
1801(250, 5, 'divo', 'car', 'B 19986', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '-1', '-1', '-1', '-1', '-1', '-1', '-1', '-1', '-1', '-1', '-1', '2', '2', '2', '0', '3', '0', 'on', 'off', 'off', '0', '-1', 'off', 'off', 'off', 'off', 'off', '0', '0', '0', 'off'),
1802(251, 5, 'bugatti', 'car', 'B 10513', '0', '0', '0', '0', '0', '255', '0', '0', '0', '0', '0', '0', '0', '-1', '-1', '0', '-1', '1', '-1', '-1', '-1', '2', '2', '2', '0', '3', '0', 'on', 'off', 'on', '0', '-1', 'on', 'on', 'on', 'on', 'off', '0', '0', '0', 'off'),
1803(252, 3, 's600w220', 'car', 'B 79450', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'off', 'off', 'off', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'off'),
1804(253, 5, 'a45amg', 'car', 'B 28424', '28', '2', '2', '2', '0', '0', '0', '0', '0', '0', '-1', '-1', '-1', '-1', '-1', '-1', '-1', '-1', '-1', '-1', '-1', '2', '2', '2', '0', '3', '0', 'on', 'on', 'off', '4', '-1', 'off', 'off', 'off', 'off', 'on', '255', '10', '10', 'on'),
1805(254, 3, 'tmodel', 'car', 'B 24891', '111', '0', '0', '0', '0', '0', '0', '0', '0', '0', '-1', '-1', '-1', '-1', '-1', '-1', '-1', '-1', '-1', '-1', '-1', '2', '2', '2', '0', '3', '0', 'on', 'off', 'off', '-1', '-1', 'off', 'off', 'off', 'off', 'off', '0', '0', '0', 'off'),
1806(255, 16, 'wraith', 'car', 'B 90161', '64', '0', '0', '0', '0', '0', '0', '0', '5', '4', '-1', '-1', '-1', '-1', '-1', '-1', '-1', '-1', '-1', '-1', '-1', '2', '2', '2', '0', '3', '4', 'on', 'off', 'off', '2', '-1', 'off', 'off', 'off', 'off', 'off', '0', '0', '0', 'off'),
1807(256, 5, 'cayman16', 'car', 'B 64986', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '-1', '-1', '-1', '-1', '-1', '-1', '-1', '-1', '-1', '-1', '-1', '-1', '-1', '-1', '-1', '-1', '-1', 'on', 'off', 'off', '-1', '-1', 'off', 'off', 'off', 'off', 'off', '0', '0', '0', 'off'),
1808(257, 5, 'mbgle', 'car', 'B 85465', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'off', 'off', 'off', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'off'),
1809(258, 2, 'huraperfospy', 'car', 'B 79244', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'off', 'off', 'off', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'off'),
1810(259, 9, 'aperta', 'car', 'B 67120', '12', '0', '0', '0', '0', '255', '0', '0', '1', '0', '-1', '-1', '-1', '-1', '-1', '-1', '-1', '-1', '-1', '-1', '-1', '2', '2', '0', '0', '0', '4', 'on', 'off', 'on', '-1', '-1', 'on', 'on', 'on', 'on', 'on', '0', '0', '0', 'off'),
1811(260, 76, 'polchiron', 'car', 'B 22474', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'off', 'off', 'off', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'off'),
1812(261, 76, 'ghispo2', 'car', 'B 22104', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'off', 'off', 'off', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'off'),
1813(262, 76, 'polgs350', 'car', 'B 79079', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'off', 'off', 'off', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'off'),
1814(263, 76, 'polduster', 'car', 'B 11587', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'off', 'off', 'off', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'off'),
1815(264, 76, 'sef_pfinder', 'car', 'B 35724', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'off', 'off', 'off', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'off'),
1816(265, 76, 'hwaycarstan', 'car', 'B 57416', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'off', 'off', 'off', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'off'),
1817(266, 76, 'maverick2', 'car', 'B 87750', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'off', 'off', 'off', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'off'),
1818(267, 25, 'polduster', 'car', 'B 62385', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'off', 'off', 'off', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'off'),
1819(268, 25, 'polchiron', 'car', 'B 10961', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'off', 'off', 'off', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'off'),
1820(269, 1, 'huraperfospy', 'car', 'B 28825', '111', '0', '0', '0', '0', '0', '255', '0', '2', '0', '-1', '-1', '-1', '-1', '-1', '-1', '-1', '-1', '-1', '-1', '-1', '2', '2', '2', '11', '3', '4', 'on', 'on', 'on', '-1', '-1', 'on', 'on', 'on', 'on', 'on', '1', '1', '1', 'off'),
1821(270, 6, '63lb', 'car', 'B 64236', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'off', 'off', 'off', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'off'),
1822(271, 3, 'cayman16', 'car', 'B 66939', '104', '0', '0', '0', '0', '0', '0', '0', '0', '0', '-1', '-1', '-1', '-1', '-1', '-1', '-1', '-1', '-1', '-1', '-1', '-1', '-1', '-1', '-1', '-1', '-1', 'on', 'off', 'off', '-1', '-1', 'off', 'off', 'off', 'off', 'on', '0', '0', '0', 'off'),
1823(272, 1, 'ghispo2', 'car', 'B 35449', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'off', 'off', 'off', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'off'),
1824(273, 25, 'sef_pfinder', 'car', 'B 23469', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'off', 'off', 'off', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'off'),
1825(274, 25, 'ghispo2', 'car', 'B 34878', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'off', 'off', 'off', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'off'),
1826(275, 25, 'hwaycarstan', 'car', 'B 63865', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'off', 'off', 'off', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'off'),
1827(276, 6, 'k5blazer', 'car', 'B 17613', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'off', 'off', 'off', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'off'),
1828(277, 6, '14r8', 'car', 'B 16676', '5', '0', '0', '0', '0', '255', '255', '255', '1', '0', '-1', '-1', '-1', '-1', '-1', '-1', '-1', '-1', '-1', '-1', '-1', '2', '2', '2', '-1', '3', '4', 'on', 'off', 'on', '-1', '-1', 'on', 'on', 'on', 'on', 'on', '0', '0', '0', 'off'),
1829(278, 87, 'x6m', 'car', 'B 75679', '28', '0', '0', '0', '0', '255', '0', '0', '1', '0', '-1', '-1', '-1', '-1', '-1', '-1', '-1', '-1', '-1', '-1', '-1', '2', '2', '2', '8', '3', '4', 'on', 'on', 'on', '-1', '-1', 'on', 'on', 'on', 'on', 'on', '1', '1', '1', 'off'),
1830(279, 25, 'polgs350', 'car', 'B 92092', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'off', 'off', 'off', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'off'),
1831(280, 3, 'mb250', 'car', 'B 79309', '147', '0', '0', '0', '0', '0', '0', '0', '1', '0', '-1', '-1', '-1', '-1', '-1', '-1', '-1', '-1', '-1', '-1', '-1', '2', '2', '2', '0', '0', '0', 'on', 'off', 'off', '-1', '-1', 'off', 'off', 'off', 'off', 'on', '0', '0', '0', 'off'),
1832(281, 6, 'xclass', 'car', 'B 78653', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'off', 'off', 'off', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'off'),
1833(282, 68, 'huraperfospy', 'car', 'B 56911', '83', '83', '0', '0', '2', '0', '150', '255', '3', '0', '-1', '-1', '-1', '-1', '-1', '-1', '-1', '-1', '-1', '-1', '-1', '2', '2', '2', '8', '3', '4', 'on', 'on', 'on', '-1', '-1', 'on', 'on', 'on', 'on', 'off', '0', '150', '255', 'off'),
1834(283, 1, 'g65amg', 'car', 'B 56875', '0', '0', '0', '0', '0', '0', '0', '0', '1', '0', '-1', '-1', '-1', '-1', '-1', '-1', '-1', '-1', '-1', '-1', '-1', '2', '2', '2', '5', '3', '4', 'on', 'on', 'off', '-1', '-1', 'off', 'off', 'off', 'off', 'on', '0', '150', '255', 'off'),
1835(284, 2, 'e60', 'car', 'B 33878', '131', '131', '0', '0', '1', '0', '0', '0', '1', '0', '-1', '0', '-1', '-1', '0', '-1', '0', '-1', '-1', '-1', '0', '2', '2', '2', '0', '0', '0', 'on', 'off', 'on', '-1', '-1', 'off', 'off', 'off', 'off', 'on', '0', '0', '0', 'off'),
1836(285, 2, 'audirs6tk', 'car', 'B 52775', '0', '29', '29', '0', '0', '0', '0', '0', '1', '0', '-1', '-1', '-1', '-1', '-1', '-1', '-1', '-1', '-1', '-1', '-1', '2', '2', '2', '0', '3', '4', 'on', 'off', 'on', '-1', '-1', 'off', 'off', 'off', 'off', 'on', '0', '0', '0', 'off'),
1837(286, 89, 'polduster', 'car', 'B 43140', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'off', 'off', 'off', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'off'),
1838(287, 89, 'polgs350', 'car', 'B 49267', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'off', 'off', 'off', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'off'),
1839(288, 89, 'ghispo2', 'car', 'B 70647', '0', '0', '0', '0', '0', '0', '0', '0', '2', '1', '0', '-1', '-1', '0', '-1', '-1', '-1', '-1', '-1', '-1', '-1', '0', '0', '0', '1', '0', '0', 'off', 'off', 'off', '-1', '-1', 'off', 'off', 'off', 'off', 'off', '0', '0', '0', 'off'),
1840(289, 89, 'polchiron', 'car', 'B 11093', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'off', 'off', 'off', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'off'),
1841(290, 89, 'sef_pfinder', 'car', 'B 29360', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'off', 'off', 'off', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'off'),
1842(291, 89, 'sandero', 'car', 'B 40684', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'off', 'off', 'off', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'off'),
1843(292, 30, 'mb250', 'car', 'B 18508', '12', '0', '0', '0', '0', '0', '0', '0', '2', '3', '-1', '-1', '-1', '-1', '-1', '-1', '-1', '-1', '-1', '-1', '-1', '2', '2', '2', '1', '1', '4', 'off', 'off', 'on', '-1', '-1', 'off', 'off', 'off', 'off', 'on', '0', '0', '0', 'off'),
1844(293, 30, 'a8lfsi', 'car', 'B 94081', '0', '0', '0', '0', '0', '0', '0', '0', '2', '0', '-1', '-1', '-1', '-1', '-1', '-1', '-1', '-1', '-1', '-1', '-1', '0', '2', '2', '1', '0', '0', 'off', 'off', 'off', '-1', '-1', 'off', 'off', 'off', 'off', 'off', '0', '0', '0', 'off'),
1845(294, 30, 'hwaycarstan', 'car', 'B 21942', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'off', 'off', 'off', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'off'),
1846(295, 68, 'r8v10', 'car', 'B 64593', '38', '88', '88', '0', '0', '0', '0', '0', '4', '0', '-1', '0', '0', '-1', '-1', '0', '-1', '-1', '-1', '-1', '-1', '2', '2', '2', '0', '-1', '0', 'on', 'off', 'off', '-1', '-1', 'off', 'off', 'off', 'off', 'on', '0', '0', '0', 'off'),
1847(296, 2, 'pcs18', 'car', 'B 16698', '131', '131', '0', '0', '0', '0', '0', '0', '1', '4', '-1', '-1', '-1', '-1', '-1', '-1', '-1', '-1', '-1', '-1', '-1', '2', '2', '2', '0', '3', '4', 'off', 'off', 'on', '-1', '-1', 'off', 'off', 'off', 'off', 'on', '0', '0', '0', 'off'),
1848(297, 4, 'sef_pfinder', 'car', 'B 34815', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'off', 'off', 'off', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'off'),
1849(298, 4, 'hwaycarstan', 'car', 'B 43236', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'off', 'off', 'off', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'off'),
1850(299, 1, '720s', 'car', 'B 16968', '70', '0', '0', '0', '0', '0', '0', '0', '1', '0', '0', '0', '0', '-1', '0', '-1', '-1', '0', '0', '-1', '-1', '2', '0', '0', '0', '0', '0', 'off', 'on', 'off', '-1', '-1', 'off', 'off', 'off', 'off', 'on', '1', '1', '1', 'off'),
1851(300, 1, 'teslax', 'car', 'B 31318', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'off', 'off', 'off', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'off'),
1852(301, 88, 'bs17', 'bike', 'B 88475', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'off', 'off', 'off', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'off'),
1853(302, 1, 'ambulance', 'car', 'B 29259', '131', '0', '0', '0', '0', '0', '0', '0', '0', '0', '-1', '-1', '-1', '-1', '-1', '-1', '-1', '-1', '-1', '-1', '-1', '0', '0', '0', '0', '0', '0', 'off', 'off', 'off', '-1', '-1', 'off', 'off', 'off', 'off', 'off', '0', '0', '0', 'off'),
1854(303, 1, 'ferrari812', 'car', 'B 41714', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'off', 'off', 'off', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'off'),
1855(304, 25, 'c63s', 'car', 'B 25441', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'off', 'off', 'off', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'off'),
1856(305, 91, 'w222wald', 'car', 'B 94078', '12', '0', '0', '27', '0', '255', '0', '0', '1', '0', '-1', '-1', '-1', '-1', '-1', '-1', '-1', '-1', '-1', '-1', '-1', '2', '2', '2', '0', '-1', '4', 'on', 'on', 'off', '-1', '-1', 'on', 'on', 'on', 'on', 'off', '255', '10', '10', 'off'),
1857(306, 32, 'SQ72016', 'car', 'B 41525', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'off', 'off', 'off', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'off'),
1858(307, 25, 'm3e30', 'car', 'B 11348', '131', '83', '0', '64', '1', '0', '0', '0', '0', '0', '-1', '-1', '-1', '-1', '-1', '-1', '-1', '-1', '-1', '-1', '-1', '2', '2', '2', '1', '3', '4', 'off', 'on', 'on', '7', '-1', 'off', 'off', 'off', 'off', 'on', '0', '150', '255', 'off'),
1859(308, 32, 'rmodbmwi8', 'car', 'B 18226', '158', '159', '0', '99', '1', '0', '255', '0', '4', '0', '-1', '0', '0', '1', '-1', '0', '0', '-1', '-1', '-1', '-1', '2', '2', '2', '7', '0', '4', 'on', 'on', 'on', '2', '-1', 'on', 'on', 'on', 'on', 'off', '255', '255', '50', 'off'),
1860(309, 25, 'rmodbmwi8', 'car', 'B 42799', '92', '64', '0', '64', '0', '0', '0', '255', '2', '0', '-1', '0', '0', '1', '-1', '0', '0', '-1', '-1', '-1', '-1', '2', '2', '2', '0', '3', '2', 'off', 'on', 'off', '7', '-1', 'on', 'on', 'on', 'on', 'on', '0', '150', '255', 'off'),
1861(310, 93, 'm3e30', 'car', 'B 55351', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'off', 'off', 'off', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'off'),
1862(311, 94, 'm3e30', 'car', 'B 75879', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'off', 'off', 'off', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'off'),
1863(312, 5, 'polgs350', 'car', 'B 14545', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'off', 'off', 'off', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'off'),
1864(313, 5, 'ghispo2', 'car', 'B 57817', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'off', 'off', 'off', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'off'),
1865(314, 5, 'polchiron', 'car', 'B 66406', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'off', 'off', 'off', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'off'),
1866(315, 5, 'rmodbmwi8', 'car', 'BC03SEK', '55', '3', '3', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '1', '-1', '0', '0', '-1', '-1', '-1', '-1', '2', '2', '2', '0', '3', '0', 'on', 'off', 'off', '0', '-1', 'off', 'off', 'off', 'off', 'off', '0', '0', '0', 'off'),
1867(316, 93, 'rmodbmwi8', 'car', 'B 36100', '0', '0', '0', '28', '1', '255', '0', '0', '2', '0', '0', '0', '0', '0', '-1', '0', '0', '-1', '-1', '-1', '-1', '2', '2', '2', '0', '3', '4', 'on', 'on', 'on', '9', '-1', 'on', 'on', 'on', 'on', 'on', '255', '10', '10', 'off'),
1868(317, 25, 'z1000', 'bike', 'B 30456', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '-1', '0', '0', '-1', '-1', '0', '-1', '-1', '0', '2', '2', '2', '0', '-1', '4', 'on', 'off', 'on', '0', '-1', 'off', 'off', 'off', 'off', 'off', '0', '0', '0', 'off'),
1869(318, 94, 'pcs18', 'car', 'B 66524', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'off', 'off', 'off', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'off'),
1870(319, 9, 'r6', 'bike', 'B 79117', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'off', 'off', 'off', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'off'),
1871(320, 99, 'bs17', 'bike', 'B 98319', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'off', 'off', 'off', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'off'),
1872(321, 99, 'kr150', 'bike', 'B 24007', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'off', 'off', 'off', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'off'),
1873(322, 9, 'kx450f', 'bike', 'B 25078', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'off', 'off', 'off', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'off'),
1874(323, 99, 'x6m', 'car', 'B 18379', '84', '63', '63', '147', '2', '0', '150', '255', '1', '3', '-1', '-1', '-1', '-1', '-1', '-1', '-1', '-1', '-1', '-1', '-1', '2', '2', '2', '0', '3', '4', 'on', 'off', 'off', '-1', '-1', 'on', 'on', 'on', 'on', 'on', '0', '0', '0', 'off'),
1875(324, 25, 'rmodm3e36', 'car', 'B 53228', '92', '55', '0', '92', '0', '0', '255', '0', '1', '0', '-1', '0', '0', '-1', '1', '0', '-1', '-1', '-1', '-1', '-1', '2', '2', '2', '0', '3', '4', 'off', 'on', 'on', '7', '-1', 'on', 'on', 'on', 'on', 'on', '153', '10', '153', 'off'),
1876(325, 6, '2017chiron', 'car', 'B 46699', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'off', 'off', 'off', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'off'),
1877(326, 6, 'bugatti', 'car', 'B 59779', '3', '0', '0', '4', '0', '255', '255', '255', '2', '7', '-1', '0', '0', '-1', '-1', '0', '-1', '0', '-1', '-1', '-1', '2', '2', '2', '-1', '3', '4', 'on', 'off', 'on', '4', '-1', 'on', 'on', 'on', 'on', 'off', '0', '0', '0', 'off'),
1878(327, 6, 'bs17', 'bike', 'B 85896', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'off', 'off', 'off', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'off'),
1879(328, 94, 'rmodbmwi8', 'car', 'B 31557', '0', '0', '0', '0', '1', '255', '0', '0', '2', '0', '0', '0', '0', '1', '-1', '0', '0', '-1', '-1', '-1', '-1', '2', '2', '2', '0', '3', '4', 'on', 'on', 'on', '0', '-1', 'on', 'on', 'on', 'on', 'on', '255', '10', '10', 'off'),
1880(329, 14, 'rmodm3e36', 'car', 'B 65903', '131', '0', '0', '0', '4', '255', '255', '255', '1', '7', '-1', '0', '0', '-1', '0', '-1', '-1', '-1', '-1', '-1', '0', '2', '2', '2', '0', '3', '4', 'on', 'off', 'on', '-1', '-1', 'on', 'on', 'on', 'on', 'off', '0', '0', '0', 'off'),
1881(330, 87, 'm3e30', 'car', 'B 24960', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'off', 'off', 'off', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'off'),
1882(331, 99, 'polduster', 'car', 'B 82784', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'off', 'off', 'off', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'off'),
1883(332, 99, 'polgs350', 'car', 'B 53187', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'off', 'off', 'off', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'off'),
1884(333, 99, 'ghispo2', 'car', 'B 84053', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'off', 'off', 'off', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'off'),
1885(334, 99, 'polchiron', 'car', 'B 11348', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'off', 'off', 'off', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'off'),
1886(335, 31, 'audirs6tk', 'car', 'B 26009', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'off', 'off', 'off', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'off'),
1887(336, 5, 'RS5', 'car', 'B 82784', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '-1', '0', '-1', '-1', '-1', '-1', '-1', '-1', '-1', '-1', '0', '2', '2', '2', '0', '3', '0', 'on', 'off', 'off', '0', '-1', 'off', 'off', 'off', 'off', 'off', '0', '0', '0', 'off'),
1888(337, 1, 'r8v10', 'car', 'B 84053', '131', '0', '0', '0', '0', '255', '0', '255', '1', '0', '0', '0', '0', '-1', '-1', '0', '-1', '-1', '-1', '-1', '-1', '2', '2', '2', '4', '2', '4', 'on', 'on', 'on', '-1', '-1', 'on', 'on', 'on', 'on', 'on', '1', '1', '1', 'off'),
1889(338, 1, 'w222wald', 'car', 'B 11348', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'off', 'off', 'off', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'off'),
1890(339, 97, '720s', 'car', 'B 24930', '12', '131', '0', '27', '0', '0', '0', '0', '2', '7', '0', '-1', '0', '-1', '0', '-1', '-1', '-1', '0', '-1', '-1', '2', '2', '2', '-1', '0', '0', 'on', 'off', 'on', '3', '-1', 'off', 'off', 'off', 'off', 'off', '0', '0', '0', 'off'),
1891(340, 98, 'tmodel', 'car', 'B 98964', '70', '111', '111', '0', '1', '0', '0', '0', '1', '7', '-1', '-1', '-1', '-1', '-1', '-1', '-1', '-1', '-1', '-1', '-1', '2', '2', '2', '0', '3', '0', 'off', 'off', 'on', '4', '-1', 'off', 'off', 'off', 'off', 'on', '0', '0', '0', 'on'),
1892(341, 98, 'teslax', 'car', 'B 20717', '70', '111', '111', '0', '0', '0', '0', '0', '0', '4', '-1', '-1', '-1', '-1', '-1', '-1', '-1', '-1', '-1', '-1', '-1', '2', '2', '2', '-1', '3', '0', 'on', 'off', 'off', '0', '-1', 'off', 'off', 'off', 'off', 'off', '0', '0', '0', 'off'),
1893(342, 98, '720s', 'car', 'B 10420', '0', '0', '0', '0', '0', '0', '0', '0', '1', '0', '0', '0', '0', '-1', '0', '-1', '-1', '0', '0', '-1', '-1', '2', '2', '2', '-1', '3', '0', 'on', 'off', 'off', '-1', '-1', 'off', 'off', 'off', 'off', 'on', '0', '0', '0', 'off'),
1894(343, 98, 'sef_pfinder', 'car', 'B 10802', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'off', 'off', 'off', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'off'),
1895(344, 98, 'hwaycarstan', 'car', 'B 44008', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'off', 'off', 'off', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'off'),
1896(345, 37, 'k5blazer', 'car', 'B 57848', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'off', 'off', 'off', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'off'),
1897(346, 37, 'maj935', 'car', 'B 61405', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'off', 'off', 'off', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'off'),
1898(347, 9, 'urus', 'car', 'B 80496', '12', '12', '0', '0', '0', '0', '0', '0', '1', '3', '-1', '-1', '-1', '-1', '-1', '-1', '-1', '-1', '-1', '-1', '-1', '2', '2', '2', '0', '0', '4', 'on', 'off', 'off', '-1', '-1', 'off', 'off', 'off', 'off', 'off', '0', '0', '0', 'off'),
1899(348, 9, 'wraith', 'car', 'B 37174', '12', '12', '0', '0', '0', '0', '0', '0', '1', '1', '-1', '-1', '-1', '-1', '-1', '-1', '-1', '-1', '-1', '-1', '-1', '2', '2', '2', '0', '0', '4', 'on', 'off', 'off', '-1', '-1', 'off', 'off', 'off', 'off', 'off', '0', '0', '0', 'off'),
1900(349, 99, 'daf', 'car', 'B 88835', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'off', 'off', 'off', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'off'),
1901(350, 102, 'm3e30', 'car', 'B 90112', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'off', 'off', 'off', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'off'),
1902(351, 102, 'e60', 'car', 'B 21098', '147', '29', '29', '0', '0', '0', '0', '0', '1', '0', '-1', '0', '-1', '-1', '0', '-1', '0', '-1', '-1', '-1', '0', '2', '2', '0', '0', '0', '4', 'off', 'off', 'off', '-1', '-1', 'off', 'off', 'off', 'off', 'off', '0', '0', '0', 'off');
1903INSERT INTO `vrp_user_vehicles` (`id`, `user_id`, `vehicle`, `veh_type`, `vehicle_plate`, `vehicle_colorprimary`, `vehicle_colorsecondary`, `vehicle_pearlescentcolor`, `vehicle_wheelcolor`, `vehicle_plateindex`, `vehicle_neoncolor1`, `vehicle_neoncolor2`, `vehicle_neoncolor3`, `vehicle_windowtint`, `vehicle_wheeltype`, `vehicle_mods0`, `vehicle_mods1`, `vehicle_mods2`, `vehicle_mods3`, `vehicle_mods4`, `vehicle_mods5`, `vehicle_mods6`, `vehicle_mods7`, `vehicle_mods8`, `vehicle_mods9`, `vehicle_mods10`, `vehicle_mods11`, `vehicle_mods12`, `vehicle_mods13`, `vehicle_mods14`, `vehicle_mods15`, `vehicle_mods16`, `vehicle_turbo`, `vehicle_tiresmoke`, `vehicle_xenon`, `vehicle_mods23`, `vehicle_mods24`, `vehicle_neon0`, `vehicle_neon1`, `vehicle_neon2`, `vehicle_neon3`, `vehicle_bulletproof`, `vehicle_smokecolor1`, `vehicle_smokecolor2`, `vehicle_smokecolor3`, `vehicle_modvariation`) VALUES
1904(352, 97, 'cayman16', 'car', 'B 19893', '0', '0', '0', '0', '1', '0', '0', '0', '0', '0', '-1', '-1', '-1', '-1', '-1', '-1', '-1', '-1', '-1', '-1', '-1', '-1', '-1', '-1', '-1', '-1', '-1', 'on', 'off', 'on', '-1', '-1', 'off', 'off', 'off', 'off', 'off', '0', '0', '0', 'off'),
1905(353, 102, '2016rs7', 'car', 'B 76879', '12', '39', '0', '0', '0', '255', '0', '0', '2', '0', '1', '0', '-1', '-1', '0', '0', '-1', '-1', '0', '1', '-1', '2', '2', '2', '0', '3', '4', 'off', 'on', 'on', '-1', '-1', 'on', 'on', 'on', 'on', 'off', '1', '1', '1', 'off'),
1906(354, 98, '2016rs7', 'car', 'B 35746', '154', '0', '0', '0', '0', '0', '0', '0', '1', '0', '0', '0', '-1', '-1', '-1', '-1', '-1', '-1', '-1', '-1', '-1', '2', '2', '2', '0', '3', '0', 'on', 'off', 'off', '-1', '-1', 'off', 'off', 'off', 'off', 'off', '0', '0', '0', 'off'),
1907(355, 98, '14r8', 'car', 'B 85113', '70', '111', '111', '70', '0', '0', '0', '0', '4', '7', '-1', '-1', '-1', '-1', '-1', '-1', '-1', '-1', '-1', '-1', '-1', '2', '2', '2', '0', '3', '0', 'on', 'on', 'off', '16', '-1', 'off', 'off', 'off', 'off', 'on', '0', '150', '255', 'off'),
1908(356, 97, '14r8', 'car', 'B 23002', '12', '27', '27', '0', '0', '0', '0', '0', '4', '0', '-1', '-1', '-1', '-1', '-1', '-1', '-1', '-1', '-1', '-1', '-1', '2', '2', '2', '-1', '3', '0', 'on', 'off', 'on', '-1', '-1', 'off', 'off', 'off', 'off', 'off', '0', '0', '0', 'off'),
1909(357, 97, '2016rs7', 'car', 'B 82559', '12', '27', '27', '0', '1', '0', '0', '0', '1', '0', '1', '-1', '0', '-1', '0', '-1', '-1', '-1', '0', '1', '-1', '2', '2', '2', '-1', '-1', '4', 'on', 'off', 'on', '-1', '-1', 'off', 'off', 'off', 'off', 'off', '0', '0', '0', 'off'),
1910(358, 98, 'a8lfsi', 'car', 'B 93833', '111', '73', '73', '0', '1', '0', '0', '0', '1', '0', '-1', '-1', '-1', '-1', '-1', '-1', '-1', '-1', '-1', '-1', '-1', '2', '2', '2', '0', '3', '0', 'on', 'off', 'off', '-1', '-1', 'off', 'off', 'off', 'off', 'on', '0', '0', '0', 'off'),
1911(359, 98, 'w222wald', 'car', 'B 14358', '131', '12', '0', '0', '1', '0', '0', '0', '1', '0', '-1', '-1', '-1', '-1', '-1', '-1', '-1', '-1', '-1', '-1', '-1', '2', '2', '2', '0', '3', '0', 'on', 'on', 'on', '-1', '-1', 'off', 'off', 'off', 'off', 'on', '1', '1', '1', 'off'),
1912(360, 2, 'a8fsi', 'car', 'B 99BOS', '0', '0', '0', '0', '4', '0', '0', '0', '1', '0', '-1', '-1', '-1', '-1', '-1', '-1', '-1', '-1', '-1', '-1', '-1', '2', '2', '2', '0', '3', '4', 'on', 'off', 'on', '-1', '-1', 'off', 'off', 'off', 'off', 'on', '0', '0', '0', 'off'),
1913(361, 102, 'ambulance', 'car', 'B 21164', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'off', 'off', 'off', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'off'),
1914(362, 102, 'polgs350', 'car', 'B 84701', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'off', 'off', 'off', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'off'),
1915(363, 102, 'k5blazer', 'car', 'B 15528', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'off', 'off', 'off', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'off'),
1916(364, 102, 'hwaycarstan', 'car', 'B 98802', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'off', 'off', 'off', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'off'),
1917(365, 5, 'A4', 'car', 'B 45354', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '-1', '-1', '-1', '-1', '-1', '-1', '-1', '-1', '-1', '-1', '-1', '2', '2', '2', '0', '3', '0', 'on', 'off', 'off', '0', '-1', 'off', 'off', 'off', 'off', 'off', '0', '0', '0', 'off'),
1918(366, 4, 'polduster', 'car', 'B 37864', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'off', 'off', 'off', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'off'),
1919(367, 4, 'polgs350', 'car', 'B 90126', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'off', 'off', 'off', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'off'),
1920(368, 4, 'ghispo2', 'car', 'B 17734', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'off', 'off', 'off', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'off'),
1921(369, 4, 'polchiron', 'car', 'B 66585', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'off', 'off', 'off', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'off'),
1922(370, 5, '718', 'car', 'B 96267', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'off', 'off', 'off', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'off'),
1923(371, 30, 'a8fsi', 'car', 'B 95278', '147', '0', '0', '0', '0', '0', '0', '0', '1', '0', '-1', '-1', '-1', '-1', '-1', '-1', '-1', '-1', '-1', '-1', '-1', '2', '0', '2', '1', '0', '3', 'off', 'off', 'on', '-1', '-1', 'off', 'off', 'off', 'off', 'off', '0', '0', '0', 'off'),
1924(372, 104, 'bs17', 'bike', 'B 92905', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '-1', '-1', '-1', '-1', '-1', '-1', '-1', '-1', '-1', '-1', '-1', '2', '2', '2', '8', '0', '4', 'on', 'off', 'off', '0', '-1', 'off', 'off', 'off', 'off', 'off', '0', '0', '0', 'off'),
1925(373, 98, 'g65amg', 'car', 'B 80702', '131', '28', '28', '0', '0', '0', '0', '0', '1', '4', '-1', '-1', '-1', '-1', '-1', '-1', '-1', '-1', '-1', '-1', '-1', '2', '2', '2', '-1', '3', '4', 'on', 'off', 'off', '0', '-1', 'off', 'off', 'off', 'off', 'off', '0', '0', '0', 'off'),
1926(374, 38, 'urus', 'car', 'B 29000', '62', '92', '0', '0', '0', '0', '0', '0', '0', '4', '-1', '-1', '-1', '-1', '-1', '-1', '-1', '-1', '-1', '-1', '-1', '2', '2', '2', '1', '3', '4', 'on', 'off', 'off', '9', '-1', 'off', 'off', 'off', 'off', 'off', '0', '0', '0', 'off'),
1927(375, 106, 'rmodbmwi8', 'car', 'B 88590', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'off', 'off', 'off', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'off'),
1928(376, 106, 'RS5', 'car', 'B 60830', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '-1', '-1', '0', '-1', '-1', '-1', '-1', '-1', '0', '2', '0', '0', '0', '3', '0', 'on', 'off', 'off', '0', '-1', 'off', 'off', 'off', 'off', 'off', '0', '0', '0', 'off'),
1929(377, 104, '2016rs7', 'car', 'B 54741', '27', '0', '0', '147', '1', '255', '0', '0', '1', '0', '0', '0', '0', '-1', '0', '0', '-1', '-1', '0', '0', '-1', '2', '2', '2', '28', '3', '4', 'on', 'on', 'on', '3', '-1', 'on', 'on', 'on', 'on', 'off', '255', '10', '10', 'off'),
1930(378, 1, 'aventadors', 'car', 'B 98406', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '-1', '0', '0', '-1', '-1', '-1', '-1', '-1', '-1', '-1', '-1', '2', '0', '0', '0', '0', '0', 'off', 'off', 'off', '0', '-1', 'off', 'off', 'off', 'off', 'off', '0', '0', '0', 'off'),
1931(379, 14, 'huraperfospy', 'car', 'B 63110', '28', '0', '0', '0', '1', '0', '0', '0', '0', '0', '-1', '-1', '-1', '-1', '-1', '-1', '-1', '-1', '-1', '-1', '-1', '2', '2', '2', '0', '3', '4', 'on', 'off', 'on', '-1', '-1', 'off', 'off', 'off', 'off', 'off', '0', '0', '0', 'off'),
1932(380, 106, 's600w220', 'car', 'B 50127', '0', '28', '28', '0', '0', '255', '0', '0', '0', '0', '-1', '-1', '-1', '-1', '-1', '-1', '-1', '-1', '-1', '-1', '-1', '2', '2', '2', '0', '3', '4', 'on', 'on', 'on', '10', '-1', 'on', 'on', 'on', 'on', 'off', '255', '10', '10', 'off'),
1933(381, 4, 'aperta', 'car', 'B 50036', '27', '27', '27', '0', '0', '255', '255', '255', '5', '7', '-1', '-1', '-1', '-1', '-1', '-1', '-1', '-1', '-1', '-1', '-1', '2', '2', '2', '0', '3', '4', 'on', 'off', 'on', '5', '-1', 'off', 'off', 'off', 'off', 'on', '0', '0', '0', 'off'),
1934(382, 97, 'aperta', 'car', 'B 14696', '12', '0', '0', '0', '0', '0', '0', '0', '4', '0', '-1', '-1', '-1', '-1', '-1', '-1', '-1', '-1', '-1', '-1', '-1', '2', '2', '2', '1', '0', '0', 'on', 'off', 'on', '-1', '-1', 'off', 'off', 'off', 'off', 'off', '0', '0', '0', 'off'),
1935(383, 6, 'z1000', 'bike', 'B 48839', '12', '12', '0', '0', '0', '0', '0', '0', '0', '6', '0', '0', '-1', '0', '0', '-1', '-1', '0', '-1', '-1', '0', '2', '2', '2', '0', '-1', '4', 'on', 'off', 'on', '-1', '-1', 'off', 'off', 'off', 'off', 'on', '0', '0', '0', 'off'),
1936(384, 14, 'r6', 'bike', 'B 56980', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'off', 'off', 'off', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'off'),
1937(385, 107, 'sandero', 'car', 'B 27350', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'off', 'off', 'off', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'off'),
1938(386, 4, 'xclass', 'car', 'B 66013', '151', '0', '0', '0', '1', '0', '0', '0', '1', '3', '-1', '-1', '-1', '-1', '-1', '-1', '-1', '-1', '-1', '-1', '-1', '2', '2', '2', '0', '3', '4', 'on', 'off', 'on', '2', '-1', 'off', 'off', 'off', 'off', 'on', '0', '0', '0', 'off'),
1939(387, 2, 'mlbrabus', 'car', 'B 42461', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'off', 'off', 'off', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'off'),
1940(388, 2, 'wraith', 'car', 'IS333LUX', '158', '158', '112', '0', '1', '0', '0', '0', '1', '7', '-1', '-1', '-1', '-1', '-1', '-1', '-1', '-1', '-1', '-1', '-1', '2', '2', '2', '0', '3', '4', 'on', 'off', 'off', '-1', '-1', 'off', 'off', 'off', 'off', 'on', '0', '0', '0', 'off'),
1941(389, 106, 'r6', 'bike', 'B 96989', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'off', 'off', 'off', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'off'),
1942(390, 106, 'A4', 'car', 'B 13076', '138', '0', '0', '0', '0', '153', '0', '153', '3', '4', '-1', '-1', '-1', '-1', '-1', '-1', '-1', '-1', '-1', '-1', '-1', '2', '0', '0', '0', '3', '0', 'off', 'off', 'on', '0', '-1', 'on', 'on', 'on', 'on', 'off', '0', '0', '0', 'off'),
1943(391, 106, 'mb250', 'car', 'B 71798', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'off', 'off', 'off', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'off'),
1944(392, 104, 'r6', 'bike', 'B 56972', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'off', 'off', 'off', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'off'),
1945(393, 6, '720s', 'car', 'B 41552', '142', '0', '0', '0', '0', '0', '0', '255', '2', '0', '-1', '0', '0', '-1', '0', '-1', '-1', '-1', '-1', '-1', '-1', '2', '2', '2', '0', '3', '4', 'on', 'on', 'on', '-1', '-1', 'on', 'on', 'on', 'on', 'on', '255', '10', '10', 'off'),
1946(394, 131, 'r8v10', 'car', 'B 28814', '0', '0', '0', '27', '0', '255', '0', '0', '0', '0', '0', '-1', '-1', '-1', '-1', '0', '-1', '-1', '-1', '-1', '-1', '2', '2', '2', '0', '2', '4', 'on', 'on', 'on', '19', '-1', 'on', 'on', 'on', 'on', 'on', '255', '10', '10', 'off'),
1947(395, 3, 'kx450f', 'bike', 'B 66667', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'off', 'off', 'off', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'off'),
1948(396, 3, 'kr150', 'bike', 'B 29250', '0', '0', '0', '0', '0', '0', '0', '0', '0', '6', '-1', '-1', '-1', '-1', '-1', '-1', '-1', '-1', '-1', '-1', '-1', '-1', '-1', '-1', '-1', '-1', '-1', 'on', 'off', 'off', '-1', '-1', 'off', 'off', 'off', 'off', 'off', '0', '0', '0', 'off'),
1949(397, 6, 'kr150', 'bike', 'B 64986', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '-1', '-1', '-1', '-1', '-1', '-1', '-1', '-1', '-1', '-1', '-1', '-1', '-1', '-1', '-1', '-1', '-1', 'off', 'off', 'off', '-1', '-1', 'off', 'off', 'off', 'off', 'off', '0', '0', '0', 'off'),
1950(398, 121, 'kr150', 'bike', 'B 55101', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'off', 'off', 'off', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'off'),
1951(399, 6, 'kx450f', 'bike', 'B 29223', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'off', 'off', 'off', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'off'),
1952(400, 107, 'x6m', 'car', 'B 18335', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'off', 'off', 'off', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'off'),
1953(401, 50, 'r6', 'bike', 'B 62006', '0', '27', '27', '0', '0', '0', '0', '0', '0', '6', '0', '-1', '-1', '0', '0', '-1', '-1', '-1', '-1', '-1', '0', '2', '2', '2', '0', '-1', '4', 'on', 'off', 'off', '-1', '-1', 'off', 'off', 'off', 'off', 'off', '0', '0', '0', 'off'),
1954(402, 106, 'gl63', 'car', 'B 10975', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'off', 'off', 'off', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'off'),
1955(403, 121, 'm3e30', 'car', 'B 30151', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'off', 'off', 'off', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'off'),
1956(404, 38, 'daf', 'car', 'B 13323', '0', '0', '0', '0', '0', '0', '0', '0', '0', '4', '-1', '-1', '-1', '-1', '-1', '-1', '-1', '-1', '-1', '-1', '-1', '-1', '-1', '-1', '-1', '-1', '-1', 'off', 'off', 'off', '-1', '-1', 'off', 'off', 'off', 'off', 'off', '0', '0', '0', 'off'),
1957(405, 105, 'daduster', 'car', 'B 70633', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'off', 'off', 'off', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'off'),
1958(406, 105, 'a45amg', 'car', 'B 28572', '99', '4', '0', '0', '4', '255', '102', '255', '3', '0', '-1', '-1', '-1', '-1', '-1', '-1', '-1', '-1', '-1', '-1', '-1', '2', '2', '2', '1', '3', '3', 'on', 'on', 'on', '-1', '-1', 'on', 'on', 'on', 'on', 'on', '255', '102', '178', 'off'),
1959(407, 2, 'm3f80', 'car', 'B 88865', '112', '0', '0', '0', '0', '0', '0', '0', '0', '0', '-1', '-1', '-1', '-1', '-1', '-1', '-1', '-1', '-1', '-1', '-1', '-1', '-1', '-1', '-1', '-1', '-1', 'on', 'off', 'off', '-1', '-1', 'off', 'off', 'off', 'off', 'off', '0', '0', '0', 'off'),
1960(408, 2, 'rmodbmwi8', 'car', 'B 93614', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'off', 'off', 'off', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'off'),
1961(409, 2, 's600w220', 'car', 'B 78763', '0', '0', '0', '0', '1', '0', '0', '0', '1', '0', '-1', '-1', '-1', '-1', '-1', '-1', '-1', '-1', '-1', '-1', '-1', '2', '2', '2', '0', '-1', '4', 'on', 'off', 'on', '-1', '-1', 'off', 'off', 'off', 'off', 'on', '0', '0', '0', 'off'),
1962(410, 106, 'k5blazer', 'car', 'B 78941', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'off', 'off', 'off', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'off'),
1963(411, 106, 'maj935', 'car', 'B 65162', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'off', 'off', 'off', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'off'),
1964(412, 106, 'maverick2', 'car', 'B 77170', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'off', 'off', 'off', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'off'),
1965(413, 30, 'a8audi', 'car', 'B 94962', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'off', 'off', 'off', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'off'),
1966(414, 30, 'w222wald', 'car', 'B 26825', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'off', 'off', 'off', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'off'),
1967(415, 30, 'mlbrabus', 'car', 'B 24658', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'off', 'off', 'off', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'off'),
1968(416, 30, 'gl63', 'car', 'B 36672', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'off', 'off', 'off', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'off'),
1969(417, 121, '14r8', 'car', 'B 71765', '97', '0', '0', '0', '0', '0', '0', '255', '1', '0', '-1', '-1', '-1', '-1', '-1', '-1', '-1', '-1', '-1', '-1', '-1', '2', '2', '2', '34', '3', '4', 'on', 'on', 'on', '-1', '-1', 'on', 'on', 'on', 'on', 'on', '255', '10', '10', 'off'),
1970(418, 30, '440i', 'car', 'B 75080', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '-1', '-1', '-1', '-1', '-1', '-1', '-1', '-1', '-1', '-1', '-1', '-1', '-1', '-1', '-1', '-1', '-1', 'off', 'off', 'off', '-1', '-1', 'off', 'off', 'off', 'off', 'off', '0', '0', '0', 'off'),
1971(419, 105, 'sandero', 'car', 'B 99785', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'off', 'off', 'off', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'off'),
1972(420, 50, '14r8', 'car', 'B 20079', '70', '5', '5', '70', '0', '0', '0', '0', '0', '7', '-1', '-1', '-1', '-1', '-1', '-1', '-1', '-1', '-1', '-1', '-1', '2', '2', '2', '0', '3', '4', 'on', 'off', 'off', '16', '-1', 'off', 'off', 'off', 'off', 'on', '0', '0', '0', 'off'),
1973(421, 104, 'wraith', 'car', 'B 25831', '0', '0', '0', '0', '1', '255', '0', '0', '1', '0', '-1', '-1', '-1', '-1', '-1', '-1', '-1', '-1', '-1', '-1', '-1', '2', '2', '2', '0', '3', '4', 'on', 'off', 'on', '0', '-1', 'on', 'on', 'on', 'on', 'off', '0', '0', '0', 'off'),
1974(422, 3, '718', 'car', 'B 90634', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'off', 'off', 'off', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'off'),
1975(423, 106, 'g65amg', 'car', 'B 64157', '12', '0', '0', '0', '0', '0', '0', '0', '1', '0', '-1', '-1', '-1', '-1', '-1', '-1', '-1', '-1', '-1', '-1', '-1', '2', '2', '2', '0', '3', '4', 'on', 'off', 'off', '0', '-1', 'off', 'off', 'off', 'off', 'off', '0', '0', '0', 'off'),
1976(424, 6, 'mb250', 'car', 'B 72358', '12', '12', '0', '147', '0', '0', '0', '0', '1', '1', '-1', '-1', '-1', '-1', '-1', '-1', '-1', '-1', '-1', '-1', '-1', '2', '2', '2', '0', '3', '4', 'on', 'off', 'on', '9', '-1', 'off', 'off', 'off', 'off', 'on', '0', '0', '0', 'on'),
1977(425, 104, 'mbgle', 'car', 'B 48388', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'off', 'off', 'off', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'off'),
1978(426, 1, 'sandero', 'car', 'B 85119', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'off', 'off', 'off', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'off'),
1979(427, 2, '2016rs7', 'car', 'B 13158', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'off', 'off', 'off', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'off'),
1980(428, 2, 'a8lfsi', 'car', 'B 69666', '0', '0', '0', '0', '0', '0', '0', '0', '1', '0', '-1', '-1', '-1', '-1', '-1', '-1', '-1', '-1', '-1', '-1', '-1', '2', '2', '2', '1', '3', '4', 'on', 'off', 'on', '-1', '-1', 'off', 'off', 'off', 'off', 'on', '0', '0', '0', 'off'),
1981(429, 5, 'rs6sedan', 'car', 'B 19420', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '-1', '-1', '-1', '-1', '-1', '-1', '-1', '-1', '-1', '-1', '-1', '2', '2', '2', '0', '3', '0', 'on', 'off', 'off', '0', '-1', 'off', 'off', 'off', 'off', 'off', '0', '0', '0', 'off'),
1982(430, 5, 'c5rs6', 'car', 'B 59457', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '-1', '-1', '-1', '-1', '-1', '-1', '-1', '-1', '-1', '-1', '-1', '2', '2', '2', '0', '3', '0', 'on', 'off', 'off', '0', '-1', 'off', 'off', 'off', 'off', 'off', '0', '0', '0', 'off'),
1983(431, 5, 'audirs6tk', 'car', 'B 41138', '111', '0', '0', '0', '0', '153', '0', '153', '0', '0', '0', '0', '0', '-1', '-1', '0', '0', '-1', '0', '-1', '-1', '2', '2', '2', '0', '1', '4', 'on', 'off', 'on', '0', '-1', 'on', 'on', 'on', 'on', 'off', '0', '0', '0', 'off'),
1984(432, 106, 'c63s', 'car', 'B 85547', '12', '0', '0', '0', '0', '0', '0', '0', '1', '0', '0', '0', '0', '-1', '-1', '0', '-1', '-1', '-1', '-1', '-1', '2', '2', '2', '0', '3', '4', 'on', 'off', 'off', '-1', '-1', 'off', 'off', 'off', 'off', 'off', '0', '0', '0', 'off'),
1985(433, 6, 'daf', 'car', 'B 23257', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'off', 'off', 'off', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'off'),
1986(434, 6, 'maj935', 'car', 'B 24930', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'off', 'off', 'off', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'off'),
1987(435, 6, 'maverick2', 'car', 'B 20717', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'off', 'off', 'off', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'off'),
1988(436, 14, 'kx450f', 'bike', 'B 24960', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'off', 'off', 'off', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'off'),
1989(437, 30, 'A4', 'car', 'B 41525', '0', '0', '0', '0', '0', '0', '0', '0', '2', '0', '-1', '-1', '-1', '-1', '-1', '-1', '-1', '-1', '-1', '-1', '-1', '0', '0', '0', '0', '0', '0', 'off', 'off', 'off', '0', '-1', 'off', 'off', 'off', 'off', 'off', '0', '0', '0', 'off'),
1990(438, 1, 'hvrod', 'bike', 'CT07DAN', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '-1', '-1', '-1', '-1', '-1', '-1', '-1', '-1', '-1', '-1', '-1', '-1', '-1', '-1', '-1', '-1', '-1', 'on', 'off', 'off', '-1', '-1', 'off', 'off', 'off', 'off', 'off', '0', '0', '0', 'off'),
1991(439, 9, 'hvrod', 'bike', 'B 53187', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'off', 'off', 'off', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'off'),
1992(440, 105, '63lb', 'car', 'B 56788', '67', '82', '0', '32', '1', '255', '102', '255', '2', '0', '-1', '-1', '-1', '-1', '-1', '-1', '-1', '-1', '-1', '-1', '-1', '2', '2', '2', '2', '3', '4', 'on', 'on', 'on', '0', '-1', 'on', 'on', 'on', 'on', 'on', '153', '10', '153', 'off'),
1993(441, 106, '14r8', 'car', 'B 37174', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'off', 'off', 'off', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'off'),
1994(442, 99, 'daduster', 'car', 'B 72976', '12', '0', '0', '0', '0', '0', '0', '0', '1', '0', '-1', '-1', '-1', '-1', '-1', '-1', '-1', '-1', '-1', '-1', '-1', '0', '2', '2', '0', '0', '0', 'on', 'off', 'off', '0', '-1', 'off', 'off', 'off', 'off', 'on', '0', '0', '0', 'off'),
1995(443, 1, 'tmodel', 'car', 'B 22741', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'off', 'off', 'off', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'off'),
1996(444, 105, 'acr', 'car', 'B 90112', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'off', 'off', 'off', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'off'),
1997(445, 9, '14r8', 'car', 'B 19893', '41', '53', '53', '0', '0', '255', '128', '0', '1', '0', '-1', '-1', '-1', '-1', '-1', '-1', '-1', '-1', '-1', '-1', '-1', '2', '2', '2', '0', '0', '4', 'on', 'off', 'on', '-1', '-1', 'on', 'on', 'on', 'on', 'on', '0', '0', '0', 'off'),
1998(446, 1, 'f8t', 'car', 'B 77192', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '-1', '-1', '-1', '-1', '-1', '-1', '-1', '-1', '-1', '-1', '-1', '2', '0', '0', '0', '0', '0', 'off', 'off', 'off', '0', '-1', 'off', 'off', 'off', 'off', 'off', '0', '0', '0', 'off'),
1999(447, 1, 'skyline', 'car', 'B 82784', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '-1', '0', '0', '-1', '-1', '-1', '-1', '-1', '-1', '-1', '-1', '2', '0', '0', '0', '0', '0', 'on', 'on', 'off', '-1', '-1', 'off', 'off', 'off', 'off', 'on', '254', '254', '254', 'off'),
2000(448, 5, 'skyline', 'car', 'B 53187', '29', '31', '31', '143', '0', '255', '0', '0', '0', '7', '0', '0', '0', '-1', '-1', '-1', '-1', '-1', '-1', '-1', '-1', '2', '2', '2', '0', '3', '0', 'on', 'on', 'on', '19', '-1', 'on', 'on', 'on', 'on', 'on', '255', '10', '10', 'on'),
2001(449, 1, 'cyrus', 'car', 'B 41525', '120', '0', '0', '0', '0', '0', '0', '0', '0', '0', '-1', '-1', '-1', '-1', '-1', '-1', '-1', '-1', '-1', '-1', '-1', '2', '2', '2', '3', '3', '4', 'on', 'on', 'off', '-1', '-1', 'off', 'off', 'off', 'off', 'on', '1', '1', '1', 'off'),
2002(450, 1, 'warrior', 'car', 'B 11348', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'off', 'off', 'off', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'off'),
2003(451, 9, 'warrior', 'car', 'B 50111', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'off', 'off', 'off', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'off'),
2004(452, 2, 'skyline', 'car', 'IS004GTR', '145', '0', '0', '111', '1', '153', '0', '153', '1', '7', '0', '0', '0', '0', '0', '-1', '-1', '0', '-1', '-1', '-1', '2', '2', '0', '1', '3', '4', 'on', 'on', 'on', '16', '-1', 'on', 'on', 'on', 'on', 'on', '153', '10', '153', 'off'),
2005(453, 3, 'hvrod', 'bike', 'B 75398', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '-1', '-1', '-1', '-1', '-1', '-1', '-1', '-1', '-1', '-1', '-1', '-1', '-1', '-1', '-1', '-1', '-1', 'on', 'off', 'off', '-1', '-1', 'off', 'off', 'off', 'off', 'on', '0', '0', '0', 'off'),
2006(454, 14, 'skyline', 'car', 'B 58540', '136', '0', '0', '0', '1', '255', '0', '255', '1', '1', '0', '0', '0', '0', '0', '-1', '-1', '-1', '-1', '-1', '-1', '2', '2', '2', '0', '3', '4', 'on', 'on', 'on', '-1', '-1', 'on', 'on', 'on', 'on', 'on', '255', '102', '178', 'off'),
2007(455, 50, 'skyline', 'car', 'B 51585', '70', '4', '4', '111', '0', '0', '0', '255', '1', '0', '-1', '0', '0', '0', '-1', '-1', '-1', '-1', '-1', '-1', '-1', '2', '2', '2', '0', '3', '4', 'on', 'on', 'on', '8', '-1', 'on', 'on', 'on', 'on', 'on', '0', '150', '255', 'off'),
2008(456, 3, 'cyrus', 'car', 'B 31178', '111', '30', '30', '0', '0', '0', '0', '0', '0', '0', '-1', '-1', '-1', '-1', '-1', '-1', '-1', '-1', '-1', '-1', '-1', '2', '2', '2', '0', '3', '0', 'on', 'off', 'off', '-1', '-1', 'off', 'off', 'off', 'off', 'on', '0', '0', '0', 'off'),
2009(457, 3, 'warrior', 'car', 'B 87599', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'off', 'off', 'off', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'off'),
2010(458, 6, 'skyline', 'car', 'B 99708', '104', '0', '0', '0', '0', '255', '255', '255', '2', '7', '0', '0', '0', '0', '0', '-1', '-1', '0', '-1', '-1', '-1', '2', '2', '2', '-1', '3', '4', 'on', 'off', 'on', '19', '-1', 'on', 'on', 'on', 'on', 'off', '0', '0', '0', 'on'),
2011(459, 68, 'k5blazer', 'car', 'B 99969', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'off', 'off', 'off', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'off'),
2012(460, 68, 'skyline', 'car', 'B 33958', '12', '12', '0', '0', '0', '255', '0', '0', '0', '0', '0', '0', '0', '0', '0', '-1', '-1', '0', '-1', '-1', '-1', '2', '2', '2', '0', '3', '4', 'on', 'off', 'on', '15', '-1', 'on', 'on', 'on', 'on', 'off', '0', '0', '0', 'off'),
2013(461, 9, 'skyline', 'car', 'B 43826', '39', '28', '28', '0', '0', '255', '0', '0', '1', '0', '0', '0', '0', '0', '0', '-1', '-1', '0', '-1', '-1', '-1', '2', '2', '0', '0', '3', '4', 'on', 'on', 'on', '-1', '-1', 'on', 'on', 'on', 'on', 'on', '255', '153', '51', 'off'),
2014(462, 105, 'hvrod', 'bike', 'B 75382', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'off', 'off', 'off', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'off'),
2015(463, 14, 'audirs6tk', 'car', 'B 25207', '36', '0', '0', '0', '1', '0', '0', '0', '1', '1', '0', '0', '0', '-1', '-1', '0', '0', '-1', '0', '-1', '-1', '2', '2', '2', '0', '3', '4', 'on', 'on', 'on', '-1', '-1', 'off', 'off', 'off', 'off', 'on', '255', '153', '51', 'off'),
2016(464, 6, 'acr', 'car', 'B 69155', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'off', 'off', 'off', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'off'),
2017(465, 14, 'r8v10', 'car', 'B 54269', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '-1', '-1', '0', '-1', '-1', '-1', '-1', '-1', '2', '2', '2', '0', '-1', '4', 'off', 'off', 'off', '0', '-1', 'off', 'off', 'off', 'off', 'off', '0', '0', '0', 'off'),
2018(466, 14, '14r8', 'car', 'B 15718', '83', '0', '0', '0', '1', '0', '0', '0', '1', '0', '-1', '-1', '-1', '-1', '-1', '-1', '-1', '-1', '-1', '-1', '-1', '2', '2', '2', '0', '3', '4', 'on', 'off', 'on', '-1', '-1', 'off', 'off', 'off', 'off', 'off', '0', '0', '0', 'off'),
2019(467, 1, 'gsxr', 'bike', 'B 82784', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '-1', '-1', '-1', '-1', '0', '2', '2', '0', '0', '-1', '0', 'on', 'off', 'off', '0', '-1', 'off', 'off', 'off', 'off', 'off', '0', '0', '0', 'off'),
2020(468, 9, 'tmodel', 'car', 'B 51585', '120', '120', '30', '0', '0', '255', '0', '0', '1', '2', '-1', '-1', '-1', '-1', '-1', '-1', '-1', '-1', '-1', '-1', '-1', '2', '2', '2', '0', '3', '4', 'on', 'on', 'on', '-1', '-1', 'on', 'on', 'on', 'on', 'on', '0', '150', '255', 'off'),
2021(469, 106, 'huraperfospy', 'car', 'B 80166', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '-1', '-1', '-1', '-1', '-1', '-1', '-1', '-1', '-1', '-1', '-1', '0', '0', '0', '0', '0', '0', 'off', 'off', 'off', '0', '-1', 'off', 'off', 'off', 'off', 'off', '0', '0', '0', 'off'),
2022(470, 1, 'brabus700', 'car', 'B 82784', '0', '0', '0', '0', '0', '0', '0', '0', '1', '0', '-1', '-1', '-1', '-1', '-1', '-1', '-1', '-1', '-1', '-1', '-1', '2', '2', '0', '0', '0', '4', 'on', 'off', 'off', '-1', '-1', 'off', 'off', 'off', 'off', 'on', '0', '0', '0', 'off'),
2023(471, 9, 'brabus700', 'car', 'B 53187', '120', '120', '0', '0', '0', '0', '0', '0', '1', '1', '-1', '-1', '-1', '-1', '-1', '-1', '-1', '-1', '-1', '-1', '-1', '2', '2', '2', '0', '0', '4', 'on', 'on', 'off', '-1', '-1', 'off', 'off', 'off', 'off', 'on', '1', '1', '1', 'off'),
2024(472, 5, 'hvrod', 'bike', 'B 75398', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '-1', '-1', '-1', '-1', '-1', '-1', '-1', '-1', '-1', '-1', '-1', '-1', '-1', '-1', '-1', '-1', '-1', 'on', 'off', 'off', '-1', '-1', 'off', 'off', 'off', 'off', 'off', '0', '0', '0', 'off'),
2025(473, 5, 'gsxr', 'bike', 'B 58540', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '-1', '0', '0', '-1', '-1', '-1', '-1', '-1', '-1', '-1', '-1', '2', '2', '2', '0', '-1', '0', 'on', 'off', 'off', '0', '-1', 'off', 'off', 'off', 'off', 'off', '0', '0', '0', 'off'),
2026(474, 5, 'brabus700', 'car', 'B 51585', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '-1', '-1', '-1', '-1', '-1', '-1', '-1', '-1', '-1', '-1', '-1', '2', '2', '2', '0', '3', '0', 'on', 'off', 'on', '0', '-1', 'off', 'off', 'off', 'off', 'off', '0', '0', '0', 'off'),
2027(475, 3, 'f8t', 'car', 'B 36754', '70', '0', '0', '0', '0', '0', '0', '0', '0', '0', '-1', '-1', '-1', '-1', '-1', '-1', '-1', '-1', '-1', '-1', '-1', '2', '2', '2', '0', '3', '0', 'on', 'off', 'off', '-1', '-1', 'off', 'off', 'off', 'off', 'on', '0', '0', '0', 'off'),
2028(476, 3, 'brabus700', 'car', 'B 12136', '147', '0', '0', '0', '0', '0', '0', '0', '1', '0', '-1', '-1', '-1', '-1', '-1', '-1', '-1', '-1', '-1', '-1', '-1', '2', '2', '2', '0', '3', '4', 'on', 'off', 'off', '-1', '-1', 'off', 'off', 'off', 'off', 'on', '0', '0', '0', 'off'),
2029(477, 50, 'hvrod', 'bike', 'B 10791', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '-1', '-1', '-1', '-1', '-1', '-1', '-1', '-1', '-1', '-1', '-1', '-1', '-1', '-1', '-1', '-1', '-1', 'on', 'off', 'off', '-1', '-1', 'off', 'off', 'off', 'off', 'off', '0', '0', '0', 'off'),
2030(478, 37, 'brabus700', 'car', 'B 34829', '12', '0', '0', '0', '1', '0', '0', '0', '1', '4', '-1', '-1', '-1', '-1', '-1', '-1', '-1', '-1', '-1', '-1', '-1', '2', '2', '2', '0', '0', '4', 'on', 'off', 'on', '-1', '-1', 'off', 'off', 'off', 'off', 'on', '0', '0', '0', 'off'),
2031(479, 3, 'skyline', 'car', 'B 34559', '111', '0', '0', '0', '0', '0', '150', '255', '1', '0', '0', '0', '0', '0', '-1', '-1', '-1', '0', '-1', '-1', '-1', '2', '2', '2', '0', '3', '4', 'on', 'off', 'on', '-1', '-1', 'on', 'on', 'on', 'on', 'on', '0', '0', '0', 'off'),
2032(480, 6, 'hvrod', 'bike', 'B 76934', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '-1', '-1', '-1', '-1', '-1', '-1', '-1', '-1', '-1', '-1', '-1', '-1', '-1', '-1', '-1', '-1', '-1', 'on', 'off', 'on', '-1', '-1', 'off', 'off', 'off', 'off', 'off', '0', '0', '0', 'off'),
2033(481, 2, 'bmwm4', 'car', 'B 19744', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'off', 'off', 'off', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'off'),
2034(482, 2, '440i', 'car', 'B 63912', '0', '0', '0', '0', '0', '0', '0', '0', '1', '0', '-1', '-1', '-1', '-1', '-1', '-1', '-1', '-1', '-1', '-1', '-1', '-1', '-1', '-1', '-1', '-1', '-1', 'on', 'off', 'off', '-1', '-1', 'off', 'off', 'off', 'off', 'on', '0', '0', '0', 'off'),
2035(483, 14, 'hvrod', 'bike', 'B 91458', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '-1', '-1', '-1', '-1', '-1', '-1', '-1', '-1', '-1', '-1', '-1', '-1', '-1', '-1', '-1', '-1', '-1', 'on', 'off', 'off', '-1', '-1', 'off', 'off', 'off', 'off', 'off', '0', '0', '0', 'off'),
2036(484, 3, 'gsxr', 'bike', 'B 48388', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'off', 'off', 'off', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'off'),
2037(485, 1, 'mgt', 'car', 'B 82784', '150', '0', '0', '0', '0', '0', '0', '0', '0', '0', '-1', '-1', '-1', '-1', '-1', '-1', '-1', '-1', '-1', '-1', '-1', '2', '2', '2', '2', '3', '4', 'on', 'on', 'off', '-1', '-1', 'off', 'off', 'off', 'off', 'on', '1', '1', '1', 'off'),
2038(486, 3, 'mgt', 'car', 'B 53187', '120', '0', '0', '0', '0', '0', '0', '0', '0', '0', '-1', '0', '0', '0', '-1', '0', '-1', '-1', '-1', '0', '-1', '2', '2', '2', '0', '3', '0', 'on', 'off', 'off', '-1', '-1', 'off', 'off', 'off', 'off', 'on', '0', '0', '0', 'off'),
2039(487, 105, 'brabus700', 'car', 'B 77192', '106', '131', '131', '0', '1', '255', '102', '255', '3', '4', '-1', '-1', '-1', '-1', '-1', '-1', '-1', '-1', '-1', '-1', '-1', '2', '2', '2', '2', '3', '4', 'on', 'off', 'on', '-1', '-1', 'on', 'on', 'on', 'on', 'on', '0', '0', '0', 'off'),
2040(488, 37, 'mgt', 'car', 'B 11348', '12', '12', '0', '0', '0', '0', '0', '0', '1', '0', '0', '0', '0', '0', '-1', '0', '-1', '-1', '-1', '0', '-1', '2', '2', '0', '0', '0', '4', 'on', 'off', 'on', '-1', '-1', 'off', 'off', 'off', 'off', 'on', '0', '0', '0', 'off'),
2041(489, 2, 'mgt', 'car', 'B 10420', '0', '0', '0', '0', '1', '0', '0', '0', '1', '0', '-1', '-1', '-1', '-1', '-1', '-1', '-1', '-1', '-1', '0', '-1', '2', '2', '2', '1', '3', '4', 'on', 'off', 'on', '-1', '-1', 'off', 'off', 'off', 'off', 'on', '0', '0', '0', 'off'),
2042(490, 30, 'mgt', 'car', 'B 24960', '0', '0', '0', '0', '1', '0', '0', '0', '1', '0', '0', '0', '0', '0', '-1', '0', '-1', '-1', '-1', '0', '-1', '2', '2', '2', '1', '2', '3', 'off', 'off', 'on', '-1', '-1', 'off', 'off', 'off', 'off', 'on', '0', '0', '0', 'off'),
2043(491, 5, 'mgt', 'car', 'B 41690', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'off', 'off', 'off', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'off'),
2044(492, 1, 'ben17', 'car', 'B 82784', '131', '12', '0', '0', '0', '255', '0', '255', '1', '0', '-1', '-1', '-1', '-1', '-1', '-1', '-1', '-1', '-1', '-1', '-1', '2', '2', '2', '4', '3', '4', 'on', 'on', 'on', '-1', '-1', 'on', 'on', 'on', 'on', 'on', '255', '102', '178', 'off'),
2045(493, 5, 'ben17', 'car', 'B 53187', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'off', 'off', 'off', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'off'),
2046(494, 3, 'acr', 'car', 'B 82784', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'off', 'off', 'off', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'off'),
2047(495, 3, 'ben17', 'car', 'B 53187', '107', '101', '0', '0', '0', '0', '0', '0', '0', '0', '-1', '-1', '-1', '-1', '-1', '-1', '-1', '-1', '-1', '-1', '-1', '2', '2', '2', '0', '3', '4', 'on', 'off', 'off', '-1', '-1', 'off', 'off', 'off', 'off', 'on', '0', '0', '0', 'off'),
2048(496, 106, 'brabus700', 'car', 'B 95421', '12', '0', '0', '0', '0', '255', '255', '0', '2', '4', '-1', '-1', '-1', '-1', '-1', '-1', '-1', '-1', '-1', '-1', '-1', '2', '2', '2', '0', '3', '4', 'on', 'on', 'on', '9', '-1', 'on', 'on', 'on', 'on', 'on', '1', '1', '1', 'off'),
2049(497, 98, 'lp770r', 'car', 'B 19744', '12', '131', '0', '0', '0', '0', '0', '0', '1', '0', '0', '-1', '-1', '0', '-1', '-1', '-1', '-1', '-1', '-1', '-1', '2', '2', '2', '0', '3', '0', 'on', 'off', 'off', '-1', '-1', 'off', 'off', 'off', 'off', 'on', '0', '0', '0', 'off'),
2050(498, 1, '14r8', 'car', 'B 82257', '67', '0', '0', '0', '0', '0', '0', '0', '0', '0', '-1', '-1', '-1', '-1', '-1', '-1', '-1', '-1', '-1', '-1', '-1', '2', '2', '2', '-1', '3', '4', 'off', 'off', 'on', '0', '-1', 'off', 'off', 'off', 'off', 'off', '0', '0', '0', 'off'),
2051(499, 1, 'r6', 'bike', 'B 56538', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'off', 'off', 'off', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'off'),
2052(500, 1, '440i', 'car', 'B 99096', '131', '102', '0', '0', '0', '0', '0', '0', '1', '0', '-1', '-1', '-1', '-1', '-1', '-1', '-1', '-1', '-1', '-1', '-1', '-1', '-1', '-1', '-1', '-1', '-1', 'on', 'on', 'on', '-1', '-1', 'off', 'off', 'off', 'off', 'on', '128', '128', '128', 'off'),
2053(501, 2, 'ben17', 'car', 'B 54269', '70', '112', '112', '0', '1', '0', '0', '0', '1', '0', '-1', '-1', '-1', '-1', '-1', '-1', '-1', '-1', '-1', '-1', '-1', '2', '2', '2', '0', '3', '4', 'on', 'off', 'on', '-1', '-1', 'off', 'off', 'off', 'off', 'on', '0', '0', '0', 'off'),
2054(502, 1, '2015polstang', 'car', 'B 82784', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'off', 'off', 'off', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'off'),
2055(503, 76, 'daf', 'car', 'B 42799', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'off', 'off', 'off', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'off'),
2056(504, 50, 'g65amg', 'car', 'B 98464', '0', '29', '29', '0', '0', '255', '0', '0', '2', '0', '-1', '-1', '-1', '-1', '-1', '-1', '-1', '-1', '-1', '-1', '-1', '2', '2', '2', '0', '3', '4', 'on', 'off', 'on', '-1', '-1', 'on', 'on', 'on', 'on', 'on', '0', '0', '0', 'off');
2057
2058-- --------------------------------------------------------
2059
2060--
2061-- Table structure for table `vrp_vehiclesh`
2062--
2063
2064CREATE TABLE IF NOT EXISTS `vrp_vehiclesh` (
2065 `vehicle_plate` text DEFAULT NULL,
2066 `x` float DEFAULT NULL,
2067 `y` float DEFAULT NULL,
2068 `z` float DEFAULT NULL,
2069 `h` float DEFAULT NULL,
2070 `price` int(11) DEFAULT NULL
2071) ENGINE=InnoDB DEFAULT CHARSET=latin1;
2072
2073-- --------------------------------------------------------
2074
2075--
2076-- Table structure for table `weed`
2077--
2078
2079CREATE TABLE IF NOT EXISTS `weed` (
2080 `ID` int(10) NOT NULL,
2081 `Spot` int(10) NOT NULL,
2082 `Timer` int(10) NOT NULL,
2083 `Status` int(10) NOT NULL,
2084 `Ready` int(10) NOT NULL,
2085 `Water` int(10) NOT NULL,
2086 `Fertilizer` int(10) NOT NULL,
2087 `Quality` int(10) NOT NULL,
2088 `QualityCounter` int(10) NOT NULL
2089) ENGINE=InnoDB DEFAULT CHARSET=latin1;
2090
2091--
2092-- Indexes for dumped tables
2093--
2094
2095--
2096-- Indexes for table `vrp_bennys_table`
2097--
2098ALTER TABLE `vrp_bennys_table`
2099 ADD PRIMARY KEY (`id`);
2100
2101--
2102-- Indexes for table `vrp_business`
2103--
2104ALTER TABLE `vrp_business`
2105 ADD PRIMARY KEY (`id`);
2106
2107--
2108-- Indexes for table `vrp_garages`
2109--
2110ALTER TABLE `vrp_garages`
2111 ADD PRIMARY KEY (`id`),
2112 ADD UNIQUE KEY `id` (`id`);
2113
2114--
2115-- Indexes for table `vrp_giftbox`
2116--
2117ALTER TABLE `vrp_giftbox`
2118 ADD PRIMARY KEY (`user_id`);
2119
2120--
2121-- Indexes for table `vrp_newcoin`
2122--
2123ALTER TABLE `vrp_newcoin`
2124 ADD PRIMARY KEY (`user_id`);
2125
2126--
2127-- Indexes for table `vrp_srv_data`
2128--
2129ALTER TABLE `vrp_srv_data`
2130 ADD PRIMARY KEY (`dkey`);
2131
2132--
2133-- Indexes for table `vrp_users`
2134--
2135ALTER TABLE `vrp_users`
2136 ADD PRIMARY KEY (`id`);
2137
2138--
2139-- Indexes for table `vrp_user_business`
2140--
2141ALTER TABLE `vrp_user_business`
2142 ADD PRIMARY KEY (`user_id`);
2143
2144--
2145-- Indexes for table `vrp_user_data`
2146--
2147ALTER TABLE `vrp_user_data`
2148 ADD PRIMARY KEY (`user_id`,`dkey`);
2149
2150--
2151-- Indexes for table `vrp_user_homes`
2152--
2153ALTER TABLE `vrp_user_homes`
2154 ADD PRIMARY KEY (`user_id`),
2155 ADD UNIQUE KEY `home` (`home`,`number`);
2156
2157--
2158-- Indexes for table `vrp_user_identities`
2159--
2160ALTER TABLE `vrp_user_identities`
2161 ADD PRIMARY KEY (`user_id`),
2162 ADD KEY `registration` (`registration`),
2163 ADD KEY `phone` (`phone`);
2164
2165--
2166-- Indexes for table `vrp_user_ids`
2167--
2168ALTER TABLE `vrp_user_ids`
2169 ADD PRIMARY KEY (`identifier`),
2170 ADD KEY `fk_user_ids_users` (`user_id`);
2171
2172--
2173-- Indexes for table `vrp_user_moneys`
2174--
2175ALTER TABLE `vrp_user_moneys`
2176 ADD PRIMARY KEY (`user_id`);
2177
2178--
2179-- Indexes for table `vrp_user_vehicles`
2180--
2181ALTER TABLE `vrp_user_vehicles`
2182 ADD PRIMARY KEY (`id`);
2183
2184--
2185-- Indexes for table `weed`
2186--
2187ALTER TABLE `weed`
2188 ADD PRIMARY KEY (`ID`);
2189
2190--
2191-- AUTO_INCREMENT for dumped tables
2192--
2193
2194--
2195-- AUTO_INCREMENT for table `vrp_bennys_table`
2196--
2197ALTER TABLE `vrp_bennys_table`
2198 MODIFY `id` int(11) NOT NULL AUTO_INCREMENT,AUTO_INCREMENT=2;
2199--
2200-- AUTO_INCREMENT for table `vrp_business`
2201--
2202ALTER TABLE `vrp_business`
2203 MODIFY `id` int(255) NOT NULL AUTO_INCREMENT,AUTO_INCREMENT=6;
2204--
2205-- AUTO_INCREMENT for table `vrp_garages`
2206--
2207ALTER TABLE `vrp_garages`
2208 MODIFY `id` int(255) NOT NULL AUTO_INCREMENT,AUTO_INCREMENT=41;
2209--
2210-- AUTO_INCREMENT for table `vrp_users`
2211--
2212ALTER TABLE `vrp_users`
2213 MODIFY `id` int(11) NOT NULL AUTO_INCREMENT,AUTO_INCREMENT=132;
2214--
2215-- AUTO_INCREMENT for table `vrp_user_vehicles`
2216--
2217ALTER TABLE `vrp_user_vehicles`
2218 MODIFY `id` int(255) NOT NULL AUTO_INCREMENT,AUTO_INCREMENT=505;
2219--
2220-- AUTO_INCREMENT for table `weed`
2221--
2222ALTER TABLE `weed`
2223 MODIFY `ID` int(10) NOT NULL AUTO_INCREMENT;
2224--
2225-- Constraints for dumped tables
2226--
2227
2228--
2229-- Constraints for table `vrp_user_business`
2230--
2231ALTER TABLE `vrp_user_business`
2232 ADD CONSTRAINT `fk_user_business_users` FOREIGN KEY (`user_id`) REFERENCES `vrp_users` (`id`) ON DELETE CASCADE;
2233
2234--
2235-- Constraints for table `vrp_user_data`
2236--
2237ALTER TABLE `vrp_user_data`
2238 ADD CONSTRAINT `fk_user_data_users` FOREIGN KEY (`user_id`) REFERENCES `vrp_users` (`id`) ON DELETE CASCADE;
2239
2240--
2241-- Constraints for table `vrp_user_homes`
2242--
2243ALTER TABLE `vrp_user_homes`
2244 ADD CONSTRAINT `fk_user_homes_users` FOREIGN KEY (`user_id`) REFERENCES `vrp_users` (`id`) ON DELETE CASCADE;
2245
2246--
2247-- Constraints for table `vrp_user_identities`
2248--
2249ALTER TABLE `vrp_user_identities`
2250 ADD CONSTRAINT `fk_user_identities_users` FOREIGN KEY (`user_id`) REFERENCES `vrp_users` (`id`) ON DELETE CASCADE;
2251
2252--
2253-- Constraints for table `vrp_user_ids`
2254--
2255ALTER TABLE `vrp_user_ids`
2256 ADD CONSTRAINT `fk_user_ids_users` FOREIGN KEY (`user_id`) REFERENCES `vrp_users` (`id`) ON DELETE CASCADE;
2257
2258--
2259-- Constraints for table `vrp_user_moneys`
2260--
2261ALTER TABLE `vrp_user_moneys`
2262 ADD CONSTRAINT `fk_user_moneys_users` FOREIGN KEY (`user_id`) REFERENCES `vrp_users` (`id`) ON DELETE CASCADE;
2263
2264/*!40101 SET CHARACTER_SET_CLIENT=@OLD_CHARACTER_SET_CLIENT */;
2265/*!40101 SET CHARACTER_SET_RESULTS=@OLD_CHARACTER_SET_RESULTS */;
2266/*!40101 SET COLLATION_CONNECTION=@OLD_COLLATION_CONNECTION */;