-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsql.sql
860 lines (851 loc) · 99.8 KB
/
sql.sql
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
CREATE TABLE `phone` (
`dsid` bigint(20) NOT NULL,
`phone_number` bigint(20) NOT NULL,
`email` varchar(50) NOT NULL,
`imei` int(20) NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;
CREATE TABLE `rank` (
`rank` varchar(20) NOT NULL,
`can_tp` enum('yes','no') NOT NULL DEFAULT 'no',
`can_spawn_vehicle` enum('yes','no') NOT NULL DEFAULT 'no'
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;
CREATE TABLE `users` (
`id` bigint(20) NOT NULL DEFAULT -1,
`dsid` bigint(20) NOT NULL,
`username` varchar(32) NOT NULL,
`rank` enum('admin','moderator','supporter','citizen','owner') NOT NULL DEFAULT 'citizen',
`health` decimal(4,1) NOT NULL DEFAULT 100.0,
`shield` decimal(4,1) NOT NULL DEFAULT 100.0,
`hunger` decimal(4,1) NOT NULL DEFAULT 100.0,
`thirsty` decimal(4,1) NOT NULL DEFAULT 100.0,
`toilet` decimal(4,1) NOT NULL DEFAULT 0.0,
`temperatur` decimal(4,1) NOT NULL DEFAULT 50.0,
`oxygen` decimal(4,1) NOT NULL DEFAULT 100.0,
`running` decimal(4,1) NOT NULL DEFAULT 100.0,
`stress` decimal(4,1) NOT NULL DEFAULT 0.0,
`isdead` enum('yes','no') NOT NULL DEFAULT 'no',
`cash` decimal(65,2) NOT NULL DEFAULT 150.00,
`bank` decimal(65,2) NOT NULL DEFAULT 5000.00,
`bmoney` decimal(65,2) NOT NULL DEFAULT 0.00
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;
CREATE TABLE `vehicles` (
`hashname` varchar(30) NOT NULL,
`hash` varchar(30) NOT NULL,
`category` varchar(30) NOT NULL,
`price` varchar(30) NOT NULL DEFAULT '0',
`producer` varchar(30) NOT NULL DEFAULT 'NA',
`speed` varchar(10) NOT NULL DEFAULT '0',
`acceleration` varchar(10) NOT NULL DEFAULT '0',
`displayname` varchar(30) NOT NULL DEFAULT 'NA',
`signedhash` varchar(30) NOT NULL,
`hexhash` varchar(30) NOT NULL,
`seats` int(3) NOT NULL DEFAULT 1,
`blacklisted` enum('yes','no') NOT NULL DEFAULT 'no'
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;
ALTER TABLE `phone`
ADD PRIMARY KEY (`dsid`);
ALTER TABLE `rank`
ADD PRIMARY KEY (`rank`);
ALTER TABLE `users`
ADD PRIMARY KEY (`dsid`);
ALTER TABLE `vehicles`
ADD PRIMARY KEY (`hashname`);
INSERT INTO `rank` (`rank`, `can_tp`, `can_spawn_vehicle`) VALUES
('admin', 'yes', 'no'),
('moderator', 'yes', 'no'),
('owner', 'yes', 'yes'),
('supporter', 'yes', 'no');
INSERT INTO `vehicles` (`hashname`, `hash`, `category`, `price`, `producer`, `speed`, `acceleration`, `displayname`, `signedhash`, `hexhash`, `seats`, `blacklisted`) VALUES
('adder', '3078201489', 'supersportcar', '0', 'Truffade', '51.77096', '0.32', 'Adder', '-1216765807', '0xB779A091', 2, 'no'),
('airbus', '1283517198', 'commercial', '0', 'null', '25.580894', '0.12', 'Airport Bus', '1283517198', '0x4C80EB0E', 16, 'no'),
('airtug', '1560980623', 'ecommercial', '0', 'null', '10.941742', '0.06', 'Airtug', '1560980623', '0x5D0AAC8F', 2, 'no'),
('akula', '1181327175', 'military', '0', 'null', '61.089123', '5.88', 'Akula', '1181327175', '0x46699F47', 4, 'no'),
('akuma', '1672195559', 'motorcycle', '0', 'Dinka', '48.333336', '0.4', 'Akuma', '1672195559', '0x63ABADE7', 2, 'no'),
('alkonost', '3929093893', 'military', '0', 'null', '82.61924', '13.524', 'RO-86 Alkonost', '-365873403', '0xEA313705', 10, 'no'),
('alpha', '767087018', 'sportscar', '0', 'Albany', '49.538807', '0.33', 'Alpha', '767087018', '0x2DB8D1AA', 4, 'no'),
('alphaz1', '2771347558', 'plans', '0', 'Buckingham', '100', '20.58', 'Alpha-Z1', '-1523619738', '0xA52F6866', 1, 'no'),
('ambulance', '1171614426', 'emccar', '0', 'null', '39.911697', '0.18', 'Ambulance', '1171614426', '0x45D56ADA', 4, 'no'),
('annihilator', '837858166', 'military', '0', 'null', '47.25649', '4.606', 'Annihilator', '837858166', '0x31F0B376', 6, 'no'),
('annihilator2', '295054921', 'military', '0', 'null', '52.709553', '5.2920003', 'Annihilator Stealth', '295054921', '0x11962E49', 6, 'no'),
('apc', '562680400', 'military', '0', 'HVY', '23.00633', '0.21', 'APC', '562680400', '0x2189D250', 4, 'no'),
('ardent', '159274291', 'sportsclassiccar', '0', 'Ocelot', '47.79096', '0.285', 'Ardent', '159274291', '0x97E5533', 2, 'no'),
('armytanker', '3087536137', 'supersportcar', '0', 'null', '-0.5051028', '0', 'Army Trailer', '-1207431159', '0xB8081009', 2, 'no'),
('armytrailer', '2818520053', 'supersportcar', '0', 'null', '-0.5131671', '0', 'Army Trailer', '-1476447243', '0xA7FF33F5', 2, 'no'),
('armytrailer2', '2657817814', 'supersportcar', '0', 'null', '-0.5131671', '0', 'Army Trailer', '-1637149482', '0x9E6B14D6', 2, 'no'),
('asbo', '1118611807', 'compact', '0', 'Maxwell', '38.07009', '0.234', 'Asbo', '1118611807', '0x42ACA95F', 4, 'no'),
('asea', '2485144969', 'sedan', '0', 'Declasse', '38.42887', '0.2', 'Asea', '-1809822327', '0x94204D89', 4, 'no'),
('asea2', '2487343317', 'sedan', '0', 'Declasse', '38.42887', '0.2', 'Asea', '-1807623979', '0x9441D8D5', 4, 'no'),
('asterope', '2391954683', 'sedan', '0', 'Karin', '38.42887', '0.2', 'Asterope', '-1903012613', '0x8E9254FB', 4, 'no'),
('astron', '629969764', 'suv', '0', 'Pfister', '49.56667', '0.324', 'Astron', '629969764', '0x258C9364', 4, 'no'),
('autarch', '3981782132', 'supersportcar', '0', 'Overflod', '51.2899', '0.377', 'Autarch', '-313185164', '0xED552C74', 2, 'no'),
('avarus', '2179174271', 'chopper', '0', 'LCC', '44.136932', '0.27', 'Avarus', '-2115793025', '0x81E38F7F', 2, 'no'),
('avenger', '2176659152', 'military', '0', 'Mammoth', '95.98338', '8.82', 'Avenger', '-2118308144', '0x81BD2ED0', 3, 'no'),
('avenger2', '408970549', 'plans', '0', 'Mammoth', '95.98338', '8.82', 'Avenger', '408970549', '0x18606535', 3, 'no'),
('avisa', '2588363614', 'researchboat', '0', 'Kraken', '25.000002', '10.5', 'Avisa', '-1706603682', '0x9A474B5E', 4, 'no'),
('bagger', '2154536131', 'chopper', '0', 'Western', '37.868603', '0.21', 'Bagger', '-2140431165', '0x806B9CC3', 2, 'no'),
('baletrailer', '3895125590', 'supersportcar', '0', 'null', '-0.5131671', '0', 'Baletrailer', '-399841706', '0xE82AE656', 2, 'no'),
('baller', '3486135912', 'suv', '0', 'Gallivanter', '39.617653', '0.21', 'Baller', '-808831384', '0xCFCA3668', 4, 'no'),
('baller2', '142944341', 'suv', '0', 'Gallivanter', '45', '0.27', 'Baller', '142944341', '0x8852855', 4, 'no'),
('baller3', '1878062887', 'suv', '0', 'Gallivanter', '45', '0.275', 'Baller LE', '1878062887', '0x6FF0F727', 4, 'no'),
('baller4', '634118882', 'suv', '0', 'Gallivanter', '45', '0.27', 'Baller LE LWB', '634118882', '0x25CBE2E2', 4, 'no'),
('baller5', '470404958', 'suv', '0', 'Gallivanter', '45', '0.27', 'Baller LE (Armored)', '470404958', '0x1C09CF5E', 4, 'no'),
('baller6', '666166960', 'suv', '0', 'Gallivanter', '45', '0.265', 'Baller LE LWB (Armored)', '666166960', '0x27B4E6B0', 4, 'no'),
('baller7', '359875117', 'suv', '0', 'Gallivanter', '46.583336', '0.3025', 'Baller ST', '359875117', '0x1573422D', 4, 'no'),
('banshee', '3253274834', 'sportscar', '0', 'Bravado', '47.524525', '0.34', 'Banshee', '-1041692462', '0xC1E908D2', 2, 'no'),
('banshee2', '633712403', 'supersportcar', '0', 'Bravado', '44.7295', '0.3475', 'Banshee 900R', '633712403', '0x25C5AF13', 2, 'no'),
('barracks', '3471458123', 'military', '0', 'null', '32.402092', '0.11', 'Barracks', '-823509173', '0xCEEA3F4B', 10, 'no'),
('barracks2', '1074326203', 'military', '0', 'HVY', '35.70579', '0.23', 'Barracks Semi', '1074326203', '0x4008EABB', 2, 'no'),
('barracks3', '630371791', 'military', '0', 'null', '32.402092', '0.11', 'Barracks', '630371791', '0x2592B5CF', 10, 'no'),
('barrage', '4081974053', 'military', '0', 'null', '39.93803', '0.2225', 'Barrage', '-212993243', '0xF34DFB25', 4, 'no'),
('bati', '4180675781', 'motorcycle', '0', 'Pegassi', '49.29604', '0.3', 'Bati 801', '-114291515', '0xF9300CC5', 2, 'no'),
('bati2', '3403504941', 'motorcycle', '0', 'Pegassi', '49.29604', '0.3', 'Bati 801RR', '-891462355', '0xCADD5D2D', 2, 'no'),
('benson', '2053223216', 'commercial', '0', 'Vapid', '36.947178', '0.16', 'Benson', '2053223216', '0x7A61B330', 6, 'no'),
('besra', '1824333165', 'military', '0', 'Western', '87.7058', '21.070002', 'Besra', '1824333165', '0x6CBD1D6D', 1, 'no'),
('bestiagts', '1274868363', 'sportscar', '0', 'Grotti', '47.794605', '0.32', 'Bestia GTS', '1274868363', '0x4BFCF28B', 2, 'no'),
('bf400', '86520421', 'moped', '0', 'Nagasaki', '44.14795', '0.29', 'BF400', '86520421', '0x5283265', 2, 'no'),
('bfinjection', '1126868326', 'offroadcar', '0', 'BF', '40.779922', '0.22', 'Injection', '1126868326', '0x432AA566', 2, 'no'),
('biff', '850991848', 'commercial', '0', 'HVY', '34.497902', '0.12', 'Biff', '850991848', '0x32B91AE8', 2, 'no'),
('bifta', '3945366167', 'beachbuggy', '0', 'BF', '45.195316', '0.26', 'Bifta', '-349601129', '0xEB298297', 2, 'no'),
('bison', '4278019151', 'van', '0', 'Bravado', '37.555943', '0.2', 'Bison', '-16948145', '0xFEFD644F', 6, 'no'),
('bison2', '2072156101', 'commercial', '0', 'Bravado', '37.555943', '0.2', 'Bison', '2072156101', '0x7B8297C5', 6, 'no'),
('bison3', '1739845664', 'van', '0', 'Bravado', '37.555943', '0.2', 'Bison', '1739845664', '0x67B3F020', 6, 'no'),
('bjxl', '850565707', 'suv', '0', 'Karin', '36.37293', '0.19', 'BeeJay XL', '850565707', '0x32B29A4B', 4, 'no'),
('blade', '3089165662', 'musclecar', '0', 'Vapid', '42.247066', '0.324', 'Blade', '-1205801634', '0xB820ED5E', 2, 'no'),
('blazer', '2166734073', 'atv', '0', 'Nagasaki', '33.983124', '0.2', 'Blazer', '-2128233223', '0x8125BCF9', 1, 'no'),
('blazer2', '4246935337', 'atv', '0', 'Nagasaki', '24.712118', '0.12', 'Blazer Lifeguard', '-48031959', '0xFD231729', 1, 'no'),
('blazer3', '3025077634', 'atv', '0', 'Nagasaki', '33.983124', '0.2', 'Hot Rod Blazer', '-1269889662', '0xB44F0582', 1, 'no'),
('blazer4', '3854198872', 'atv', '0', 'Nagasaki', '38.87602', '0.25', 'Street Blazer', '-440768424', '0xE5BA6858', 1, 'no'),
('blazer5', '2704629607', 'atv', '0', 'Nagasaki', '40.877346', '0.272', 'Blazer Aqua', '-1590337689', '0xA1355F67', 1, 'no'),
('blimp', '4143991942', 'plans', '0', 'null', '70', '5.684', 'Atomic Blimp', '-150975354', '0xF7004C86', 4, 'no'),
('blimp2', '3681241380', 'plans', '0', 'null', '70', '6.076', 'Xero Blimp', '-613725916', '0xDB6B4924', 4, 'no'),
('blimp3', '3987008919', 'plans', '0', 'null', '70', '5.684', 'Blimp', '-307958377', '0xEDA4ED97', 4, 'no'),
('blista', '3950024287', 'compact', '0', 'Dinka', '41.917366', '0.23', 'Blista', '-344943009', '0xEB70965F', 4, 'no'),
('blista2', '1039032026', 'sportscar', '0', 'Dinka', '41.917366', '0.23', 'Blista Compact', '1039032026', '0x3DEE5EDA', 2, 'no'),
('blista3', '3703315515', 'sportscar', '0', 'Dinka', '41.917366', '0.23', 'Go Go Monkey Blista', '-591651781', '0xDCBC1C3B', 2, 'no'),
('bmx', '1131912276', 'cycle', '0', 'null', '14.53347', '0.16', 'BMX', '1131912276', '0x43779C54', 1, 'no'),
('boattrailer', '524108981', 'supersportcar', '0', 'null', '-0.5131671', '0', 'Boat Trailer', '524108981', '0x1F3D44B5', 2, 'no'),
('bobcatxl', '1069929536', 'van', '0', 'Vapid', '35.160107', '0.18', 'Bobcat XL', '1069929536', '0x3FC5D440', 4, 'no'),
('bodhi2', '2859047862', 'offroadcar', '0', 'Canis', '35.507397', '0.215', 'Bodhi', '-1435919434', '0xAA699BB6', 4, 'no'),
('bombushka', '4262088844', 'plans', '0', 'null', '36.51484', '5.3900003', 'RM-10 Bombushka', '-32878452', '0xFE0A508C', 6, 'no'),
('boor', '996383885', 'sportsclassiccar', '0', 'Karin', '40.429604', '0.267', 'Boor', '996383885', '0x3B639C8D', 2, 'no'),
('boxville', '2307837162', 'commercial', '0', 'Brute', '28.696072', '0.11', 'Boxville', '-1987130134', '0x898ECCEA', 6, 'no'),
('boxville2', '4061868990', 'commercial', '0', 'null', '28.696072', '0.11', 'Boxville', '-233098306', '0xF21B33BE', 6, 'no'),
('boxville3', '121658888', 'commercial', '0', 'Brute', '28.696072', '0.11', 'Boxville', '121658888', '0x7405E08', 6, 'no'),
('boxville4', '444171386', 'commercial', '0', 'Brute', '28.696072', '0.11', 'Boxville', '444171386', '0x1A79847A', 6, 'no'),
('boxville5', '682434785', 'commercial', '0', 'null', '39.468403', '0.32', 'Armored Boxville', '682434785', '0x28AD20E1', 5, 'no'),
('brawler', '2815302597', 'offroadcar', '0', 'Coil', '46.666668', '0.28', 'Brawler', '-1479664699', '0xA7CE1BC5', 2, 'no'),
('brickade', '3989239879', 'military', '0', 'MTL', '32.830296', '0.2', 'Brickade', '-305727417', '0xEDC6F847', 6, 'no'),
('brickade2', '2718380883', 'military', '0', 'MTL', '32.830296', '0.2', 'Brickade 6x6', '-1576586413', '0xA2073353', 6, 'no'),
('brioso', '1549126457', 'compact', '0', 'Grotti', '41.536022', '0.29', 'Brioso R/A', '1549126457', '0x5C55CB39', 2, 'no'),
('brioso2', '1429622905', 'compact', '0', 'Grotti', '32.944153', '0.179', 'Brioso 300', '1429622905', '0x55365079', 4, 'no'),
('brioso3', '15214558', 'compact', '0', 'Grotti', '37.271378', '0.216', 'Brioso 300 Widebody', '15214558', '0xE827DE', 4, 'no'),
('broadway', '2361724968', 'musclecar', '0', 'Classique', '37.47392', '0.195', 'Broadway', '-1933242328', '0x8CC51028', 4, 'no'),
('bruiser', '668439077', 'offroadcar', '0', 'Benefactor', '38.40471', '0.26', 'Apocalypse Bruiser', '668439077', '0x27D79225', 4, 'no'),
('bruiser2', '2600885406', 'offroadcar', '0', 'Benefactor', '38.40471', '0.26', 'Future Shock Bruiser', '-1694081890', '0x9B065C9E', 4, 'no'),
('bruiser3', '2252616474', 'offroadcar', '0', 'Benefactor', '38.40471', '0.26', 'Nightmare Bruiser', '-2042350822', '0x8644331A', 4, 'no'),
('brutus', '2139203625', 'offroadcar', '0', 'Declasse', '42.30679', '0.27', 'Apocalypse Brutus', '2139203625', '0x7F81A829', 2, 'no'),
('brutus2', '2403970600', 'offroadcar', '0', 'Declasse', '42.30679', '0.27', 'Future Shock Brutus', '-1890996696', '0x8F49AE28', 2, 'no'),
('brutus3', '2038858402', 'offroadcar', '0', 'Declasse', '42.30679', '0.27', 'Nightmare Brutus', '2038858402', '0x798682A2', 2, 'no'),
('btype', '117401876', 'sportsclassiccar', '0', 'Albany', '41.66667', '0.27', 'Roosevelt', '117401876', '0x6FF6914', 6, 'no'),
('btype2', '3463132580', 'sportsclassiccar', '0', 'Albany', '45', '0.355', 'Fränken Stange', '-831834716', '0xCE6B35A4', 4, 'no'),
('btype3', '3692679425', 'sportsclassiccar', '0', 'Albany', '41.66667', '0.27', 'Roosevelt Valor', '-602287871', '0xDC19D101', 6, 'no'),
('buccaneer', '3612755468', 'musclecar', '0', 'Albany', '46.156612', '0.28', 'Buccaneer', '-682211828', '0xD756460C', 2, 'no'),
('buccaneer2', '3281516360', 'musclecar', '0', 'Albany', '46.156612', '0.28', 'Buccaneer Custom', '-1013450936', '0xC397F748', 2, 'no'),
('buffalo', '3990165190', 'sportscar', '0', 'Bravado', '45.152653', '0.27', 'Buffalo', '-304802106', '0xEDD516C6', 4, 'no'),
('buffalo2', '736902334', 'sportscar', '0', 'Bravado', '46.281605', '0.29', 'Buffalo S', '736902334', '0x2BEC3CBE', 4, 'no'),
('buffalo3', '237764926', 'sportscar', '0', 'Bravado', '48.165176', '0.31', 'Sprunk Buffalo', '237764926', '0xE2C013E', 4, 'no'),
('buffalo4', '3675036420', 'sportscar', '0', 'Bravado', '48.308033', '0.3425', 'Buffalo STX', '-619930876', '0xDB0C9B04', 4, 'no'),
('bulldozer', '1886712733', 'industrial', '0', 'HVY', '5.0000005', '0.14', 'Dozer', '1886712733', '0x7074F39D', 1, 'no'),
('bullet', '2598821281', 'supersportcar', '0', 'Vapid', '49.76318', '0.33', 'Bullet', '-1696146015', '0x9AE6DDA1', 2, 'no'),
('burrito', '2948279460', 'commercial', '0', 'Declasse', '36.947178', '0.16', 'Burrito', '-1346687836', '0xAFBB2CA4', 4, 'no'),
('burrito2', '3387490166', 'commercial', '0', 'Declasse', '36.947178', '0.16', 'null', '-907477130', '0xC9E8FF76', 4, 'no'),
('burrito3', '2551651283', 'van', '0', 'Declasse', '36.947178', '0.16', 'Burrito', '-1743316013', '0x98171BD3', 4, 'no'),
('burrito4', '893081117', 'commercial', '0', 'Declasse', '36.947178', '0.16', 'Burrito', '893081117', '0x353B561D', 4, 'no'),
('burrito5', '1132262048', 'van', '0', 'Declasse', '36.947178', '0.16', 'Burrito', '1132262048', '0x437CF2A0', 4, 'no'),
('bus', '3581397346', 'commercial', '0', 'null', '25.580894', '0.12', 'Bus', '-713569950', '0xD577C962', 16, 'no'),
('buzzard', '788747387', 'military', '0', 'null', '57.907227', '5.3900003', 'Buzzard Attack Chopper', '788747387', '0x2F03547B', 4, 'no'),
('buzzard2', '745926877', 'helicopter', '0', 'null', '57.907227', '5.3900003', 'Buzzard', '745926877', '0x2C75F0DD', 4, 'no'),
('cablecar', '3334677549', 'supersportcar', '0', 'null', '26.66667', '0.2', 'Cable Car', '-960289747', '0xC6C3242D', 4, 'no'),
('caddy', '1147287684', 'commercial', '0', 'null', '21.66667', '0.3', 'Caddy', '1147287684', '0x44623884', 2, 'no'),
('caddy2', '3757070668', 'commercial', '0', 'null', '21.66667', '0.3', 'Caddy', '-537896628', '0xDFF0594C', 2, 'no'),
('caddy3', '3525819835', 'commercial', '0', 'null', '21.334204', '0.3', 'Caddy', '-769147461', '0xD227BDBB', 2, 'no'),
('calico', '3101054893', 'sportscar', '0', 'Karin', '49.4621', '0.3385', 'Calico GTF', '-1193912403', '0xB8D657AD', 2, 'no'),
('camper', '1876516712', 'van', '0', 'Brute', '30.462002', '0.12', 'Camper', '1876516712', '0x6FD95F68', 4, 'no'),
('caracara', '1254014755', 'offroadcar', '0', 'Vapid', '38.613308', '0.27', 'Caracara', '1254014755', '0x4ABEBF23', 5, 'no'),
('caracara2', '2945871676', 'offroadcar', '0', 'Vapid', '39.27036', '0.27', 'Caracara 4x4', '-1349095620', '0xAF966F3C', 4, 'no'),
('carbonizzare', '2072687711', 'sportscar', '0', 'Grotti', '48.336765', '0.35', 'Carbonizzare', '2072687711', '0x7B8AB45F', 2, 'no'),
('carbonrs', '11251904', 'motorcycle', '0', 'Nagasaki', '47.01816', '0.3', 'Carbon RS', '11251904', '0xABB0C0', 2, 'no'),
('cargobob', '4244420235', 'military', '0', 'null', '49.91996', '4.998', 'Cargobob', '-50547061', '0xFCFCB68B', 10, 'no'),
('cargobob2', '1621617168', 'helicopter', '0', 'null', '49.91996', '4.998', 'Cargobob', '1621617168', '0x60A7EA10', 10, 'no'),
('cargobob3', '1394036463', 'military', '0', 'null', '49.91996', '4.998', 'Cargobob', '1394036463', '0x53174EEF', 10, 'no'),
('cargobob4', '2025593404', 'military', '0', 'null', '49.91996', '4.998', 'Cargobob', '2025593404', '0x78BC1A3C', 10, 'no'),
('cargoplane', '368211810', 'plans', '0', 'null', '78.90234', '6.1740003', 'Cargo Plane', '368211810', '0x15F27762', 4, 'no'),
('cargoplane2', '2336777441', 'plans', '0', 'null', '78.90234', '6.1740003', 'Cargo Plane', '-1958189855', '0x8B4864E1', 5, 'no'),
('casco', '941800958', 'sportsclassiccar', '0', 'Lampadati', '50.33334', '0.32', 'Casco', '941800958', '0x3822BDFE', 2, 'no'),
('cavalcade', '2006918058', 'suv', '0', 'Albany', '38.42887', '0.2', 'Cavalcade', '2006918058', '0x779F23AA', 4, 'no'),
('cavalcade2', '3505073125', 'suv', '0', 'Albany', '38.42887', '0.2', 'Cavalcade', '-789894171', '0xD0EB2BE5', 4, 'no'),
('cerberus', '3493417227', 'commercial', '0', 'MTL', '37.211666', '0.19', 'Apocalypse Cerberus', '-801550069', '0xD039510B', 2, 'yes'),
('cerberus2', '679453769', 'commercial', '0', 'MTL', '37.211666', '0.19', 'Future Shock Cerberus', '679453769', '0x287FA449', 2, 'yes'),
('cerberus3', '1909700336', 'commercial', '0', 'MTL', '37.211666', '0.19', 'Nightmare Cerberus', '1909700336', '0x71D3B6F0', 2, 'yes'),
('champion', '3379732821', 'musclecar', '0', 'Dewbauchee', '51.86634', '0.359', 'Champion', '-915234475', '0xC972A155', 2, 'no'),
('cheburek', '3306466016', 'sportsclassiccar', '0', 'RUNE', '44.643963', '0.265', 'Cheburek', '-988501280', '0xC514AAE0', 4, 'no'),
('cheetah', '2983812512', 'supersportcar', '0', 'Grotti', '50.00953', '0.32', 'Cheetah', '-1311154784', '0xB1D95DA0', 2, 'no'),
('cheetah2', '223240013', 'sportsclassiccar', '0', 'Grotti', '49.923035', '0.3', 'Cheetah Classic', '223240013', '0xD4E5F4D', 2, 'no'),
('chernobog', '3602674979', 'military', '0', 'null', '22.587225', '0.12', 'Chernobog', '-692292317', '0xD6BC7523', 2, 'no'),
('chimera', '6774487', 'trike', '0', 'Nagasaki', '35.424885', '0.275', 'Chimera', '6774487', '0x675ED7', 2, 'no'),
('chino', '349605904', 'musclecar', '0', 'Vapid', '35.276928', '0.2', 'Chino', '349605904', '0x14D69010', 2, 'no'),
('chino2', '2933279331', 'musclecar', '0', 'Vapid', '36.346527', '0.21', 'Chino Custom', '-1361687965', '0xAED64A63', 2, 'no'),
('cinquemila', '2767531027', 'sportscar', '0', 'Lampadati', '48.235992', '0.3535', 'Cinquemila', '-1527436269', '0xA4F52C13', 4, 'no'),
('cliffhanger', '390201602', 'chopper', '0', 'Western', '49.12712', '0.318', 'Cliffhanger', '390201602', '0x17420102', 2, 'no'),
('clique', '2728360112', 'musclecar', '0', 'Vapid', '45.998135', '0.3', 'Clique', '-1566607184', '0xA29F78B0', 2, 'no'),
('club', '2196012677', 'compact', '0', 'BF', '41.75986', '0.2375', 'Club', '-2098954619', '0x82E47E85', 4, 'no'),
('coach', '2222034228', 'commercial', '0', 'null', '25.580894', '0.12', 'Dashound', '-2072933068', '0x84718D34', 10, 'no'),
('cog55', '906642318', 'sedan', '0', 'Enus', '46.29608', '0.265', 'Cognoscenti 55', '906642318', '0x360A438E', 4, 'no'),
('cog552', '704435172', 'sedan', '0', 'Enus', '45.75964', '0.26', 'Cognoscenti 55 (Armored)', '704435172', '0x29FCD3E4', 4, 'no'),
('cogcabrio', '330661258', 'coupe', '0', 'Enus', '45.195316', '0.26', 'Cognoscenti Cabrio', '330661258', '0x13B57D8A', 2, 'no'),
('cognoscenti', '2264796000', 'sedan', '0', 'Enus', '45.75964', '0.26', 'Cognoscenti', '-2030171296', '0x86FE0B60', 4, 'no'),
('cognoscenti2', '3690124666', 'sedan', '0', 'Enus', '45.21825', '0.255', 'Cognoscenti (Armored)', '-604842630', '0xDBF2D57A', 4, 'no'),
('comet2', '3249425686', 'sportscar', '0', 'Pfister', '50.19611', '0.34', 'Comet', '-1045541610', '0xC1AE4D16', 2, 'no'),
('comet3', '2272483501', 'sportscar', '0', 'Pfister', '50.17371', '0.34', 'Comet Retro Custom', '-2022483795', '0x877358AD', 2, 'no'),
('comet4', '1561920505', 'sportscar', '0', 'Pfister', '47.165966', '0.2925', 'Comet Safari', '1561920505', '0x5D1903F9', 2, 'no'),
('comet5', '661493923', 'sportscar', '0', 'Pfister', '46.8946', '0.32', 'Comet SR', '661493923', '0x276D98A3', 2, 'no'),
('comet6', '2568944644', 'sportscar', '0', 'Pfister', '50.15962', '0.346', 'Comet S2', '-1726022652', '0x991EFC04', 2, 'no'),
('comet7', '1141395928', 'sportscar', '0', 'Pfister', '50.380608', '0.3495', 'Comet S2 Cabrio', '1141395928', '0x440851D8', 2, 'no'),
('conada', '3817135397', 'helicopter', '0', 'Buckingham', '62.16899', '5.6644', 'Conada', '-477831899', '0xE384DD25', 4, 'no'),
('contender', '683047626', 'suv', '0', 'Vapid', '41.36147', '0.26', 'Contender', '683047626', '0x28B67ACA', 4, 'no'),
('coquette', '108773431', 'sportscar', '0', 'Invetero', '50.45626', '0.33', 'Coquette', '108773431', '0x67BC037', 2, 'no'),
('coquette2', '1011753235', 'sportsclassiccar', '0', 'Invetero', '49.537365', '0.34', 'Coquette Classic', '1011753235', '0x3C4E2113', 2, 'no'),
('coquette3', '784565758', 'musclecar', '0', 'Invetero', '45.078148', '0.29', 'Coquette BlackFin', '784565758', '0x2EC385FE', 4, 'no'),
('coquette4', '2566281822', 'sportscar', '0', 'Invetero', '48.862133', '0.32', 'Coquette D10', '-1728685474', '0x98F65A5E', 2, 'no'),
('corsita', '3540279623', 'supersportcar', '0', 'Lampadati', '52.280067', '0.4', 'Corsita', '-754687673', '0xD3046147', 2, 'no'),
('cruiser', '448402357', 'cycle', '0', 'null', '15.000002', '0.08', 'Cruiser', '448402357', '0x1ABA13B5', 1, 'no'),
('crusader', '321739290', 'military', '0', 'Canis', '35.963905', '0.18', 'Crusader', '321739290', '0x132D5A1A', 4, 'no'),
('cuban800', '3650256867', 'plans', '0', 'null', '76.79571', '5.88', 'Cuban 800', '-644710429', '0xD9927FE3', 2, 'no'),
('cutter', '3288047904', 'industrial', '0', 'HVY', '12.761157', '0.16', 'Cutter', '-1006919392', '0xC3FBA120', 1, 'no'),
('cyclone', '1392481335', 'ecar', '0', 'Coil', '40.9219', '0.2725', 'Cyclone', '1392481335', '0x52FF9437', 2, 'no'),
('cypher', '1755697647', 'sportscar', '0', 'Ubermacht', '45.565796', '0.326', 'Cypher', '1755697647', '0x68A5D1EF', 2, 'no'),
('daemon', '2006142190', 'chopper', '0', 'Western', '43.14252', '0.26', 'Daemon', '2006142190', '0x77934CEE', 2, 'no'),
('daemon2', '2890830793', 'chopper', '0', 'Western', '43.342857', '0.262', 'Daemon', '-1404136503', '0xAC4E93C9', 2, 'no'),
('deathbike', '4267640610', 'chopper', '0', 'Western', '48.286507', '0.3125', 'Apocalypse Deathbike', '-27326686', '0xFE5F0722', 2, 'no'),
('deathbike2', '2482017624', 'chopper', '0', 'Western', '48.286507', '0.3125', 'Future Shock Deathbike', '-1812949672', '0x93F09558', 2, 'no'),
('deathbike3', '2920466844', 'chopper', '0', 'Western', '48.286507', '0.3125', 'Nightmare Deathbike', '-1374500452', '0xAE12C99C', 2, 'no'),
('defiler', '822018448', 'motorcycle', '0', 'Shitzu', '48.843647', '0.405', 'Defiler', '822018448', '0x30FF0190', 2, 'no'),
('deity', '1532171089', 'musclecar', '0', 'Enus', '44.373707', '0.2925', 'Deity', '1532171089', '0x5B531351', 4, 'no'),
('deluxo', '1483171323', 'sportsclassiccar', '0', 'Imponte', '42.67659', '0.2275', 'Deluxo', '1483171323', '0x586765FB', 2, 'no'),
('deveste', '1591739866', 'sportscar', '0', 'Principe', '52.677788', '0.42', 'Deveste Eight', '1591739866', '0x5EE005DA', 2, 'no'),
('deviant', '1279262537', 'musclecar', '0', 'Schyster', '42.457035', '0.29', 'Deviant', '1279262537', '0x4C3FFF49', 2, 'no'),
('diablous', '4055125828', 'motorcycle', '0', 'Principe', '47.286667', '0.312', 'Diabolus', '-239841468', '0xF1B44F44', 2, 'no'),
('diablous2', '1790834270', 'motorcycle', '0', 'Principe', '47.53334', '0.32', 'Diabolus Custom', '1790834270', '0x6ABDF65E', 2, 'no'),
('dilettante', '3164157193', 'ecar', '0', 'Karin', '24.006582', '0.1', 'Dilettante', '-1130810103', '0xBC993509', 4, 'no'),
('dilettante2', '1682114128', 'policecar', '0', 'Karin', '24.006582', '0.1', 'Dilettante', '1682114128', '0x64430650', 4, 'no'),
('dinghy', '1033245328', 'emcboat', '0', 'Nagasaki', '41.66667', '16', 'Dinghy', '1033245328', '0x3D961290', 4, 'no'),
('dinghy2', '276773164', 'boat', '0', 'Nagasaki', '41.66667', '16', 'Dinghy', '276773164', '0x107F392C', 4, 'no'),
('dinghy3', '509498602', 'fibboat', '0', 'Nagasaki', '41.66667', '16', 'Dinghy', '509498602', '0x1E5E54EA', 4, 'no'),
('dinghy4', '867467158', 'fibboat', '0', 'Nagasaki', '41.66667', '16', 'Dinghy', '867467158', '0x33B47F96', 4, 'no'),
('dinghy5', '3314393930', 'military', '0', 'Nagasaki', '41.66667', '16', 'Weaponized Dinghy', '-980573366', '0xC58DA34A', 5, 'no'),
('dloader', '1770332643', 'offroadcar', '0', 'Bravado', '33.1998', '0.17', 'Duneloader', '1770332643', '0x698521E3', 4, 'no'),
('docktrailer', '2154757102', 'supersportcar', '0', 'null', '-0.5131671', '0', 'null', '-2140210194', '0x806EFBEE', 2, 'no'),
('docktug', '3410276810', 'commercial', '0', 'null', '24.640646', '0.2', 'Docktug', '-884690486', '0xCB44B1CA', 1, 'no'),
('dodo', '3393804037', 'plans', '0', 'Mammoth', '69.36756', '4.9', 'Dodo', '-901163259', '0xCA495705', 4, 'no'),
('dominator', '80636076', 'musclecar', '0', 'Vapid', '48.333336', '0.29', 'Dominator', '80636076', '0x4CE68AC', 4, 'no'),
('dominator2', '3379262425', 'musclecar', '0', 'Vapid', '49.000004', '0.31', 'Pisswasser Dominator', '-915704871', '0xC96B73D9', 4, 'no'),
('dominator3', '3308022675', 'musclecar', '0', 'Vapid', '47.11404', '0.335', 'Dominator GTX', '-986944621', '0xC52C6B93', 2, 'no'),
('dominator4', '3606777648', 'musclecar', '0', 'Vapid', '48.423264', '0.375', 'Apocalypse Dominator', '-688189648', '0xD6FB0F30', 2, 'no'),
('dominator5', '2919906639', 'musclecar', '0', 'Vapid', '48.423264', '0.375', 'Future Shock Dominator', '-1375060657', '0xAE0A3D4F', 2, 'no'),
('dominator6', '3001042683', 'musclecar', '0', 'Vapid', '48.423264', '0.375', 'Nightmare Dominator', '-1293924613', '0xB2E046FB', 2, 'no'),
('dominator7', '426742808', 'musclecar', '0', 'Vapid', '50.091324', '0.342', 'Dominator ASP', '426742808', '0x196F9418', 2, 'no'),
('dominator8', '736672010', 'musclecar', '0', 'Vapid', '45.949604', '0.3027', 'Dominator GTT', '736672010', '0x2BE8B90A', 2, 'no'),
('double', '2623969160', 'motorcycle', '0', 'Dinka', '47.947342', '0.31', 'Double-T', '-1670998136', '0x9C669788', 2, 'no'),
('drafter', '686471183', 'sportscar', '0', 'Obey', '47.878384', '0.342', '8F Drafter', '686471183', '0x28EAB80F', 2, 'no'),
('draugur', '3526730918', 'offroadcar', '0', 'Declasse', '43.839996', '0.3425', 'Draugur', '-768236378', '0xD235A4A6', 4, 'no'),
('dubsta', '1177543287', 'suv', '0', 'Benefactor', '37.555943', '0.2', 'Dubsta', '1177543287', '0x462FE277', 4, 'no'),
('dubsta2', '3900892662', 'suv', '0', 'Benefactor', '37.555943', '0.2', 'Dubsta', '-394074634', '0xE882E5F6', 4, 'no'),
('dubsta3', '3057713523', 'offroadcar', '0', 'Benefactor', '38.80768', '0.28', 'Dubsta 6x6', '-1237253773', '0xB6410173', 6, 'no'),
('dukes', '723973206', 'musclecar', '0', 'Imponte', '47.794605', '0.32', 'Dukes', '723973206', '0x2B26F456', 2, 'no'),
('dukes2', '3968823444', 'musclecar', '0', 'Imponte', '46.52688', '0.35', 'Duke O`Death', '-326143852', '0xEC8F7094', 2, 'no'),
('dukes3', '2134119907', 'musclecar', '0', 'Imponte', '47.350716', '0.315', 'Beater Dukes', '2134119907', '0x7F3415E3', 2, 'no'),
('dump', '2164484578', 'industrial', '0', 'HVY', '14.333334', '0.19', 'Dump', '-2130482718', '0x810369E2', 1, 'no'),
('dune', '2633113103', 'beachbuggy', '0', 'BF', '38.87602', '0.25', 'Dune Buggy', '-1661854193', '0x9CF21E0F', 2, 'no'),
('dune2', '534258863', 'beachbuggy', '0', 'null', '37.938187', '0.24', 'Space Docker', '534258863', '0x1FD824AF', 2, 'no'),
('dune3', '1897744184', 'military', '0', 'BF', '38.87602', '0.25', 'Dune FAV', '1897744184', '0x711D4738', 2, 'no'),
('dune4', '3467805257', 'formula', '0', 'null', '49.224163', '0.324', 'Ramp Buggy', '-827162039', '0xCEB28249', 2, 'no'),
('dune5', '3982671785', 'formula', '0', 'null', '48.84004', '0.32', 'Ramp Buggy', '-312295511', '0xED62BFA9', 2, 'no'),
('duster', '970356638', 'plans', '0', 'null', '69.36756', '4.9', 'Duster', '970356638', '0x39D6779E', 2, 'no'),
('dynasty', '310284501', 'sportsclassiccar', '0', 'Weeny', '35.635258', '0.18', 'Dynasty', '310284501', '0x127E90D5', 4, 'no'),
('elegy', '196747873', 'sportscar', '0', 'Annis', '47.169712', '0.33', 'Elegy Retro Custom', '196747873', '0xBBA2261', 2, 'no'),
('elegy2', '3728579874', 'sportscar', '0', 'Annis', '48.6724', '0.33', 'Elegy RH8', '-566387422', '0xDE3D9D22', 4, 'no'),
('ellie', '3027423925', 'musclecar', '0', 'Vapid', '45.83407', '0.325', 'Ellie', '-1267543371', '0xB472D2B5', 2, 'no'),
('emerus', '1323778901', 'supersportcar', '0', 'Progen', '50.859398', '0.378', 'Emerus', '1323778901', '0x4EE74355', 2, 'no'),
('emperor', '3609690755', 'sedan', '0', 'Albany', '33.80885', '0.14', 'Emperor', '-685276541', '0xD7278283', 4, 'no'),
('emperor2', '2411965148', 'sedan', '0', 'Albany', '33.80885', '0.14', 'Emperor', '-1883002148', '0x8FC3AADC', 4, 'no'),
('emperor3', '3053254478', 'sedan', '0', 'Albany', '33.80885', '0.14', 'Emperor', '-1241712818', '0xB5FCF74E', 4, 'no'),
('enduro', '1753414259', 'moped', '0', 'Dinka', '39.66667', '0.3', 'Enduro', '1753414259', '0x6882FA73', 2, 'no'),
('entity2', '2174267100', 'supersportcar', '0', 'Overflod', '53.714085', '0.355', 'Entity XXR', '-2120700196', '0x8198AEDC', 2, 'no'),
('entity3', '1748565021', 'supersportcar', '0', 'Overflod', '53.616463', '0.3545', 'Entity MT', '1748565021', '0x6838FC1D', 2, 'no'),
('entityxf', '3003014393', 'supersportcar', '0', 'Overflod', '50.935776', '0.33', 'Entity XF', '-1291952903', '0xB2FE5CF9', 2, 'no'),
('esskey', '2035069708', 'moped', '0', 'Pegassi', '44.106396', '0.295', 'Esskey', '2035069708', '0x794CB30C', 2, 'no'),
('eudora', '3045179290', 'musclecar', '0', 'Willard', '40.72726', '0.195', 'Eudora', '-1249788006', '0xB581BF9A', 4, 'no'),
('euros', '2038480341', 'sportscar', '0', 'Annis', '47.347527', '0.324', 'Euros', '2038480341', '0x7980BDD5', 2, 'no'),
('everon', '2538945576', 'offroadcar', '0', 'Karin', '41.73223', '0.295', 'Everon', '-1756021720', '0x97553C28', 4, 'no'),
('everon2', '4163619118', 'sportscar', '0', 'Karin', '48.157658', '0.3395', 'Hotring Everon', '-131348178', '0xF82BC92E', 2, 'no'),
('exemplar', '4289813342', 'coupe', '0', 'Dewbauchee', '48.132133', '0.26', 'Exemplar', '-5153954', '0xFFB15B5E', 4, 'no'),
('f620', '3703357000', 'coupe', '0', 'Ocelot', '47.994846', '0.24', 'F620', '-591610296', '0xDCBCBE48', 2, 'no'),
('faction', '2175389151', 'musclecar', '0', 'Willard', '46.666668', '0.28', 'Faction', '-2119578145', '0x81A9CDDF', 2, 'no'),
('faction2', '2504420315', 'musclecar', '0', 'Willard', '46.666668', '0.28', 'Faction Custom', '-1790546981', '0x95466BDB', 2, 'no'),
('faction3', '2255212070', 'musclecar', '0', 'Willard', '35.276928', '0.2', 'Faction Custom Donk', '-2039755226', '0x866BCE26', 2, 'no'),
('fagaloa', '1617472902', 'sportsclassiccar', '0', 'Vulcar', '34.39128', '0.21', 'Fagaloa', '1617472902', '0x6068AD86', 4, 'no'),
('faggio', '2452219115', 'scooter', '0', 'Pegassi', '28.282679', '0.1975', 'Faggio Sport', '-1842748181', '0x9229E4EB', 2, 'no'),
('faggio2', '55628203', 'scooter', '0', 'Pegassi', '23.54772', '0.1', 'Faggio', '55628203', '0x350D1AB', 2, 'no'),
('faggio3', '3005788552', 'scooter', '0', 'Pegassi', '27.413752', '0.195', 'Faggio Mod', '-1289178744', '0xB328B188', 2, 'no'),
('fbi', '1127131465', 'fibcar', '0', 'null', '46.156612', '0.28', 'FIB', '1127131465', '0x432EA949', 4, 'no'),
('fbi2', '2647026068', 'fibcar', '0', 'null', '37.555943', '0.2', 'FIB', '-1647941228', '0x9DC66994', 8, 'no'),
('fcr', '627535535', 'motorcycle', '0', 'Pegassi', '46.452568', '0.305', 'FCR 1000', '627535535', '0x25676EAF', 2, 'no'),
('fcr2', '3537231886', 'motorcycle', '0', 'Pegassi', '46.733337', '0.31', 'FCR 1000 Custom', '-757735410', '0xD2D5E00E', 2, 'no'),
('felon', '3903372712', 'coupe', '0', 'Lampadati', '45.795193', '0.24', 'Felon', '-391594584', '0xE8A8BDA8', 4, 'no'),
('felon2', '4205676014', 'coupe', '0', 'Lampadati', '43.454967', '0.24', 'Felon GT', '-89291282', '0xFAAD85EE', 4, 'no'),
('feltzer2', '2299640309', 'sportscar', '0', 'Benefactor', '49.537365', '0.34', 'Feltzer', '-1995326987', '0x8911B9F5', 2, 'no'),
('feltzer3', '2728226064', 'sportsclassiccar', '0', 'Benefactor', '45.998135', '0.3', 'Stirling GT', '-1566741232', '0xA29D6D10', 2, 'no'),
('firetruk', '1938952078', 'emccar', '0', 'MTL', '39.295868', '0.16', 'Fire Truck', '1938952078', '0x73920F8E', 8, 'no'),
('fixter', '3458454463', 'cycle', '0', 'null', '17.851046', '0.135', 'Fixter', '-836512833', '0xCE23D3BF', 1, 'no'),
('flashgt', '3035832600', 'sportscar', '0', 'Vapid', '44.16147', '0.32', 'Flash GT', '-1259134696', '0xB4F32118', 4, 'no'),
('flatbed', '1353720154', 'commercial', '0', 'MTL', '28.236109', '0.14', 'Flatbed', '1353720154', '0x50B0215A', 2, 'no'),
('fmj', '1426219628', 'supersportcar', '0', 'Vapid', '52.800003', '0.3655', 'FMJ', '1426219628', '0x5502626C', 2, 'no'),
('forklift', '1491375716', 'commercial', '0', 'HVY', '10.000001', '0.18', 'Forklift', '1491375716', '0x58E49664', 1, 'no'),
('formula', '340154634', 'formula', '0', 'Progen', '52.564735', '0.75', 'PR4', '340154634', '0x1446590A', 1, 'no'),
('formula2', '2334210311', 'formula', '0', 'Ocelot', '52.386055', '0.745', 'R88', '-1960756985', '0x8B213907', 1, 'no'),
('fq2', '3157435195', 'suv', '0', 'Fathom', '39.911697', '0.18', 'FQ 2', '-1137532101', '0xBC32A33B', 4, 'no'),
('freecrawler', '4240635011', 'offroadcar', '0', 'Canis', '36.623436', '0.24', 'Freecrawler', '-54332285', '0xFCC2F483', 4, 'no'),
('freight', '1030400667', 'train', '0', 'null', '26.66667', '0.2', 'Freight Train', '1030400667', '0x3D6AAA9B', 4, 'no'),
('freightcar', '184361638', 'train', '0', 'null', '26.66667', '0.2', 'Freight Train', '184361638', '0xAFD22A6', 4, 'no'),
('freightcar2', '3186376089', 'train', '0', 'null', '26.66667', '0.2', 'Freight Train', '-1108591207', '0xBDEC3D99', 4, 'no'),
('freightcont1', '920453016', 'train', '0', 'null', '26.66667', '0.2', 'Freight Train', '920453016', '0x36DCFF98', 4, 'no'),
('freightcont2', '240201337', 'train', '0', 'null', '26.66667', '0.2', 'Freight Train', '240201337', '0xE512E79', 4, 'no'),
('freightgrain', '642617954', 'train', '0', 'null', '26.66667', '0.2', 'Freight Train', '642617954', '0x264D9262', 4, 'no'),
('freighttrailer', '3517691494', 'supersportcar', '0', 'null', '-0.5131671', '0', 'null', '-777275802', '0xD1ABB666', 2, 'no'),
('frogger', '744705981', 'helicopter', '0', 'null', '56.668118', '5.488', 'Frogger', '744705981', '0x2C634FBD', 4, 'no'),
('frogger2', '1949211328', 'helicopter', '0', 'null', '56.668118', '5.488', 'Frogger', '1949211328', '0x742E9AC0', 4, 'no'),
('fugitive', '1909141499', 'sedan', '0', 'Cheval', '40.39331', '0.2', 'Fugitive', '1909141499', '0x71CB2FFB', 4, 'no'),
('furia', '960812448', 'supersportcar', '0', 'Grotti', '49.833782', '0.365', 'Furia', '960812448', '0x3944D5A0', 2, 'no'),
('furoregt', '3205927392', 'sportscar', '0', 'Lampadati', '50.66667', '0.335', 'Furore GT', '-1089039904', '0xBF1691E0', 2, 'no'),
('fusilade', '499169875', 'sportscar', '0', 'Schyster', '48.862133', '0.32', 'Fusilade', '499169875', '0x1DC0BA53', 2, 'no'),
('futo', '2016857647', 'sportscar', '0', 'Karin', '45', '0.29', 'Futo', '2016857647', '0x7836CE2F', 4, 'no'),
('futo2', '2787736776', 'sportscar', '0', 'Karin', '45.66667', '0.2965', 'Futo GTX', '-1507230520', '0xA6297CC8', 4, 'no'),
('gargoyle', '741090084', 'chopper', '0', 'Western', '48.286507', '0.3125', 'Gargoyle', '741090084', '0x2C2C2324', 2, 'no'),
('gauntlet', '2494797253', 'musclecar', '0', 'Bravado', '47.01816', '0.3', 'Gauntlet', '-1800170043', '0x94B395C5', 2, 'no'),
('gauntlet2', '349315417', 'musclecar', '0', 'Bravado', '48.406494', '0.315', 'Redwood Gauntlet', '349315417', '0x14D22159', 2, 'no'),
('gauntlet3', '722226637', 'musclecar', '0', 'Bravado', '44.142666', '0.28', 'Gauntlet Classic', '722226637', '0x2B0C4DCD', 2, 'no'),
('gauntlet4', '1934384720', 'musclecar', '0', 'Bravado', '48.655342', '0.36', 'Gauntlet Hellfire', '1934384720', '0x734C5E50', 4, 'no'),
('gauntlet5', '2172320429', 'musclecar', '0', 'Bravado', '48.296795', '0.29', 'Gauntlet Classic Custom', '-2122646867', '0x817AFAAD', 2, 'no'),
('gb200', '1909189272', 'sportscar', '0', 'Vapid', '44.57395', '0.315', 'GB200', '1909189272', '0x71CBEA98', 2, 'no'),
('gburrito', '2549763894', 'van', '0', 'Declasse', '36.947178', '0.16', 'Gang Burrito', '-1745203402', '0x97FA4F36', 4, 'no'),
('gburrito2', '296357396', 'van', '0', 'Declasse', '39.911697', '0.18', 'Gang Burrito', '296357396', '0x11AA0E14', 4, 'no'),
('glendale', '75131841', 'sedan', '0', 'Benefactor', '39.717964', '0.235', 'Glendale', '75131841', '0x47A6BC1', 4, 'no'),
('glendale2', '3381377750', 'sedan', '0', 'Benefactor', '39.845104', '0.233', 'Glendale Custom', '-913589546', '0xC98BBAD6', 4, 'no'),
('gp1', '1234311532', 'supersportcar', '0', 'Progen', '50.31808', '0.37', 'GP1', '1234311532', '0x4992196C', 2, 'no'),
('graintrailer', '1019737494', 'supersportcar', '0', 'null', '-0.5131671', '0', 'Graintrailer', '1019737494', '0x3CC7F596', 2, 'no'),
('granger', '2519238556', 'suv', '0', 'Declasse', '36.37293', '0.19', 'Granger', '-1775728740', '0x9628879C', 8, 'no'),
('granger2', '4033620423', 'suv', '0', 'Declasse', '34.025684', '0.2075', 'Granger 3600LX', '-261346873', '0xF06C29C7', 8, 'no'),
('greenwood', '40817712', 'sedan', '0', 'Bravado', '47.66667', '0.282', 'Greenwood', '40817712', '0x26ED430', 4, 'no'),
('gresley', '2751205197', 'suv', '0', 'Bravado', '38.42887', '0.2', 'Gresley', '-1543762099', '0xA3FC0F4D', 4, 'no'),
('growler', '1304459735', 'sportscar', '0', 'Pfister', '49.75962', '0.33375', 'Growler', '1304459735', '0x4DC079D7', 2, 'no'),
('gt500', '2215179066', 'sportsclassiccar', '0', 'Grotti', '45.869114', '0.29', 'GT500', '-2079788230', '0x8408F33A', 2, 'no'),
('guardian', '2186977100', 'swat', '0', 'Vapid', '39.617653', '0.21', 'Guardian', '-2107990196', '0x825A9F4C', 6, 'no'),
('habanero', '884422927', 'suv', '0', 'Emperor', '39.911697', '0.18', 'Habanero', '884422927', '0x34B7390F', 4, 'no'),
('hakuchou', '1265391242', 'motorcycle', '0', 'Shitzu', '49.54116', '0.315', 'Hakuchou', '1265391242', '0x4B6C568A', 2, 'no'),
('hakuchou2', '4039289119', 'motorcycle', '0', 'Shitzu', '52.03867', '0.425', 'Hakuchou Drag', '-255678177', '0xF0C2A91F', 2, 'no'),
('halftrack', '4262731174', 'military', '0', 'Bravado', '20.93335', '0.16', 'Half-track', '-32236122', '0xFE141DA6', 3, 'no'),
('handler', '444583674', 'industrial', '0', 'null', '8.333334', '0.14', 'Dock Handler', '444583674', '0x1A7FCEFA', 1, 'no'),
('hauler', '1518533038', 'commercial', '0', 'JoBuilt', '28.650146', '0.16', 'Hauler', '1518533038', '0x5A82F9AE', 2, 'no'),
('hauler2', '387748548', 'commercial', '0', 'JoBuilt', '41.94424', '0.32', 'Hauler Custom', '387748548', '0x171C92C4', 2, 'yes'),
('havok', '2310691317', 'helicopter', '0', 'Nagasaki', '57.907227', '5.3900003', 'Havok', '-1984275979', '0x89BA59F5', 1, 'no'),
('hellion', '3932816511', 'offroadcar', '0', 'Annis', '40.398415', '0.25', 'Hellion', '-362150785', '0xEA6A047F', 4, 'no'),
('hermes', '15219735', 'musclecar', '0', 'Albany', '41.26047', '0.285', 'Hermes', '15219735', '0xE83C17', 2, 'no'),
('hexer', '301427732', 'chopper', '0', 'LCC', '43.14252', '0.26', 'Hexer', '301427732', '0x11F76C14', 2, 'no'),
('hotknife', '37348240', 'musclecar', '0', 'Vapid', '45.045437', '0.3', 'Hotknife', '37348240', '0x239E390', 2, 'no'),
('hotring', '1115909093', 'sportscar', '0', 'Declasse', '48.07754', '0.335', 'Hotring Sabre', '1115909093', '0x42836BE5', 2, 'no'),
('howard', '3287439187', 'plans', '0', 'Buckingham', '100', '20.58', 'Howard NX-25', '-1007528109', '0xC3F25753', 1, 'no'),
('hunter', '4252008158', 'military', '0', 'null', '58.554256', '5.488', 'FH-1 Hunter', '-42959138', '0xFD707EDE', 2, 'no'),
('huntley', '486987393', 'suv', '0', 'Enus', '45.333336', '0.265', 'Huntley S', '486987393', '0x1D06D681', 4, 'no'),
('hustler', '600450546', 'musclecar', '0', 'Vapid', '44.15281', '0.3', 'Hustler', '600450546', '0x23CA25F2', 2, 'no'),
('hydra', '970385471', 'military', '0', 'Mammoth', '109.76426', '8.82', 'Hydra', '970385471', '0x39D6E83F', 1, 'no'),
('ignus', '2850852987', 'supersportcar', '0', 'Pegassi', '52.36531', '0.3835', 'Ignus', '-1444114309', '0xA9EC907B', 2, 'no'),
('imorgon', '3162245632', 'ecar', '0', 'Overflod', '45.498978', '0.66', 'Imorgon', '-1132721664', '0xBC7C0A00', 2, 'no'),
('impaler', '3001042683', 'musclecar', '0', 'Vapid', '48.423264', '0.375', 'Nightmare Dominator', '-1293924613', '0xB2E046FB', 2, 'no'),
('impaler2', '1009171724', 'musclecar', '0', 'Declasse', '50.707794', '0.38', 'Apocalypse Impaler', '1009171724', '0x3C26BD0C', 2, 'no'),
('impaler3', '2370166601', 'musclecar', '0', 'Declasse', '50.707794', '0.38', 'Future Shock Impaler', '-1924800695', '0x8D45DF49', 2, 'no'),
('impaler4', '2550461639', 'musclecar', '0', 'Declasse', '50.707794', '0.38', 'Nightmare Impaler', '-1744505657', '0x9804F4C7', 2, 'no'),
('imperator', '444994115', 'musclecar', '0', 'Vapid', '48.57513', '0.365', 'Apocalypse Imperator', '444994115', '0x1A861243', 2, 'no'),
('imperator2', '1637620610', 'musclecar', '0', 'Vapid', '48.57513', '0.365', 'Future Shock Imperator', '1637620610', '0x619C1B82', 2, 'no'),
('imperator3', '3539435063', 'musclecar', '0', 'Vapid', '48.57513', '0.365', 'Nightmare Imperator', '-755532233', '0xD2F77E37', 2, 'no'),
('infernus', '418536135', 'supersportcar', '0', 'Pegassi', '49.113136', '0.34', 'Infernus', '418536135', '0x18F25AC7', 2, 'no'),
('infernus2', '2889029532', 'sportsclassiccar', '0', 'Pegassi', '48.053272', '0.33', 'Infernus Classic', '-1405937764', '0xAC33179C', 2, 'no'),
('ingot', '3005245074', 'sedan', '0', 'Vulcar', '32.080177', '0.14', 'Ingot', '-1289722222', '0xB3206692', 4, 'no'),
('innovation', '4135840458', 'chopper', '0', 'LCC', '45', '0.32', 'Innovation', '-159126838', '0xF683EACA', 2, 'no'),
('insurgent', '2434067162', 'military', '0', 'HVY', '35.443645', '0.24', 'Insurgent Pick-Up', '-1860900134', '0x9114EADA', 9, 'no'),
('insurgent2', '2071877360', 'military', '0', 'HVY', '35.443645', '0.24', 'Insurgent', '2071877360', '0x7B7E56F0', 9, 'no'),
('insurgent3', '2370534026', 'military', '0', 'HVY', '35.443645', '0.24', 'Insurgent Pick-Up Custom', '-1924433270', '0x8D4B7A8A', 9, 'no'),
('intruder', '886934177', 'sedan', '0', 'Karin', '39.371296', '0.2', 'Intruder', '886934177', '0x34DD8AA1', 4, 'no'),
('issi2', '3117103977', 'compact', '0', 'Weeny', '41.917366', '0.23', 'Issi', '-1177863319', '0xB9CB3B69', 4, 'no'),
('issi3', '931280609', 'compact', '0', 'Weeny', '39.795876', '0.26', 'Issi Classic', '931280609', '0x378236E1', 4, 'no'),
('issi4', '628003514', 'compact', '0', 'Weeny', '44.937466', '0.34', 'Apocalypse Issi', '628003514', '0x256E92BA', 2, 'no'),
('issi5', '1537277726', 'compact', '0', 'Weeny', '44.937466', '0.34', 'Future Shock Issi', '1537277726', '0x5BA0FF1E', 2, 'no'),
('issi6', '1239571361', 'compact', '0', 'Weeny', '44.937466', '0.34', 'Nightmare Issi', '1239571361', '0x49E25BA1', 2, 'no'),
('issi7', '1854776567', 'sportscar', '0', 'Weeny', '42.037476', '0.305', 'Issi Sport', '1854776567', '0x6E8DA4F7', 2, 'no'),
('issi8', '1550581940', 'suv', '0', 'Weeny', '48.20894', '0.3215', 'Issi Rally', '1550581940', '0x5C6C00B4', 4, 'no'),
('italigtb', '2246633323', 'supersportcar', '0', 'Progen', '52.15954', '0.3365', 'Itali GTB', '-2048333973', '0x85E8E76B', 2, 'no'),
('italigtb2', '3812247419', 'supersportcar', '0', 'Progen', '52.482124', '0.34', 'Itali GTB Custom', '-482719877', '0xE33A477B', 2, 'no'),
('italigto', '3963499524', 'sportscar', '0', 'Grotti', '52.392235', '0.4', 'Itali GTO', '-331467772', '0xEC3E3404', 2, 'no'),
('italirsx', '3145241962', 'sportscar', '0', 'Grotti', '52.269176', '0.40125', 'Itali RSX', '-1149725334', '0xBB78956A', 2, 'no'),
('iwagen', '662793086', 'ecar', '0', 'Obey', '33.31249', '0.2315', 'I-Wagen', '662793086', '0x27816B7E', 4, 'no'),
('jackal', '3670438162', 'coupe', '0', 'Ocelot', '45.982548', '0.22', 'Jackal', '-624529134', '0xDAC67112', 4, 'no'),
('jb700', '1051415893', 'sportsclassiccar', '0', 'Dewbauchee', '50.000004', '0.26', 'JB 700', '1051415893', '0x3EAB5555', 2, 'no'),
('jb7002', '394110044', 'sportsclassiccar', '0', 'Dewbauchee', '50.000004', '0.26', 'JB 700W', '394110044', '0x177DA45C', 2, 'no'),
('jester', '2997294755', 'sportscar', '0', 'Dinka', '45.998135', '0.3', 'Jester', '-1297672541', '0xB2A716A3', 2, 'no'),
('jester2', '3188613414', 'sportscar', '0', 'Dinka', '46.903397', '0.31', 'Jester (Racecar)', '-1106353882', '0xBE0E6126', 2, 'no'),
('jester3', '4080061290', 'sportscar', '0', 'Dinka', '48.31899', '0.32', 'Jester Classic', '-214906006', '0xF330CB6A', 4, 'no'),
('jester4', '2712905841', 'sportscar', '0', 'Dinka', '48.03665', '0.3291', 'Jester RR', '-1582061455', '0xA1B3A871', 2, 'no'),
('jet', '1058115860', 'plans', '0', 'null', '78.90234', '6.1740003', 'Jet', '1058115860', '0x3F119114', 2, 'no'),
('jetmax', '861409633', 'boat', '0', 'Shitzu', '45', '17', 'Jetmax', '861409633', '0x33581161', 2, 'no'),
('journey', '4174679674', 'van', '0', 'Zirconium', '32.16411', '0.13', 'Journey', '-120287622', '0xF8D48E7A', 6, 'no'),
('journey2', '2667889793', 'van', '0', 'Zirconium', '32.16411', '0.13', 'Journey II', '-1627077503', '0x9F04C481', 6, 'no'),
('jubilee', '461465043', 'suv', '0', 'Enus', '42.781353', '0.2975', 'Jubilee', '461465043', '0x1B8165D3', 4, 'no'),
('jugular', '4086055493', 'sportscar', '0', 'Ocelot', '48.64662', '0.378', 'Jugular', '-208911803', '0xF38C4245', 4, 'no'),
('kalahari', '92612664', 'offroadcar', '0', 'Canis', '35.004', '0.26', 'Kalahari', '92612664', '0x5852838', 2, 'no'),
('kamacho', '4173521127', 'offroadcar', '0', 'Canis', '40.882217', '0.255', 'Kamacho', '-121446169', '0xF8C2E0E7', 4, 'no'),
('kanjo', '409049982', 'compact', '0', 'Dinka', '44.404194', '0.32', 'Blista Kanjo', '409049982', '0x18619B7E', 2, 'no'),
('kanjosj', '4230891418', 'coupe', '0', 'Dinka', '44.658356', '0.315', 'Kanjo SJ', '-64075878', '0xFC2E479A', 4, 'no'),
('khamelion', '544021352', 'ecar', '0', 'Hijak', '31.727636', '0.15', 'Khamelion', '544021352', '0x206D1B68', 4, 'no'),
('khanjali', '2859440138', 'military', '0', 'null', '18.122084', '0.1', 'TM-02 Khanjali', '-1435527158', '0xAA6F980A', 4, 'no'),
('komoda', '3460613305', 'sportscar', '0', 'Lampadati', '49.891846', '0.367', 'Komoda', '-834353991', '0xCE44C4B9', 4, 'no'),
('kosatka', '1336872304', 'military', '0', 'RUNE', '25.000002', '5.25', 'Kosatka', '1336872304', '0x4FAF0D70', 1, 'no'),
('krieger', '3630826055', 'supersportcar', '0', 'Benefactor', '52.574074', '0.374', 'Krieger', '-664141241', '0xD86A0247', 2, 'no'),
('kuruma', '2922118804', 'sportscar', '0', 'Karin', '46.903397', '0.31', 'Kuruma', '-1372848492', '0xAE2BFE94', 4, 'no'),
('kuruma2', '410882957', 'sportscar', '0', 'Karin', '45.928524', '0.31', 'Kuruma (armored)', '410882957', '0x187D938D', 4, 'no'),
('landstalker', '1269098716', 'suv', '0', 'Dundreary', '36.83084', '0.18', 'Landstalker', '1269098716', '0x4BA4E8DC', 4, 'no'),
('landstalker2', '3456868130', 'suv', '0', 'Dundreary', '37.655365', '0.19', 'Landstalker XL', '-838099166', '0xCE0B9F22', 4, 'no'),
('lazer', '3013282534', 'military', '0', 'null', '91.287094', '19.6', 'P-996 LAZER', '-1281684762', '0xB39B0AE6', 1, 'no'),
('le7b', '3062131285', 'supersportcar', '0', 'Annis', '50.35628', '0.371', 'RE-7B', '-1232836011', '0xB6846A55', 2, 'no'),
('lectro', '640818791', 'motorcycle', '0', 'Principe', '43.23533', '0.28', 'Lectro', '640818791', '0x26321E67', 2, 'no'),
('lguard', '469291905', 'emccar', '0', 'Declasse', '37.555943', '0.2', 'Lifeguard', '469291905', '0x1BF8D381', 4, 'no'),
('limo2', '4180339789', 'sedan', '0', 'Benefactor', '39.27036', '0.27', 'Turreted Limo', '-114627507', '0xF92AEC4D', 5, 'no'),
('lm87', '4284049613', 'supersportcar', '0', 'Benefactor', '50.33531', '0.3765', 'LM87', '-10917683', '0xFF5968CD', 1, 'no'),
('locust', '3353694737', 'sportscar', '0', 'Ocelot', '48.808945', '0.334', 'Locust', '-941272559', '0xC7E55211', 2, 'no'),
('longfin', '1861786828', 'boat', '0', 'Shitzu', '46.666668', '18', 'Longfin', '1861786828', '0x6EF89CCC', 4, 'no'),
('lurcher', '2068293287', 'musclecar', '0', 'Albany', '47.143475', '0.29', 'Lurcher', '2068293287', '0x7B47A6A7', 2, 'no'),
('luxor', '621481054', 'plans', '0', 'Buckingham', '90.614456', '7.938', 'Luxor', '621481054', '0x250B0C5E', 10, 'no'),
('luxor2', '3080673438', 'plans', '0', 'Buckingham', '91.22515', '8.036', 'Luxor Deluxe', '-1214293858', '0xB79F589E', 8, 'no'),
('lynx', '482197771', 'sportscar', '0', 'Ocelot', '49.077194', '0.315', 'Lynx', '482197771', '0x1CBDC10B', 2, 'no'),
('mamba', '2634021974', 'sportsclassiccar', '0', 'Declasse', '49.33334', '0.34', 'Mamba', '-1660945322', '0x9CFFFC56', 2, 'no'),
('mammatus', '2548391185', 'plans', '0', 'null', '69.36756', '4.9', 'Mammatus', '-1746576111', '0x97E55D11', 4, 'no'),
('manana', '2170765704', 'sportsclassiccar', '0', 'Albany', '36.947178', '0.16', 'Manana', '-2124201592', '0x81634188', 4, 'no'),
('manana2', '1717532765', 'sportsclassiccar', '0', 'Albany', '43.56295', '0.24', 'Manana Custom', '1717532765', '0x665F785D', 4, 'no'),
('manchez', '2771538552', 'moped', '0', 'Maibatsu', '44.106396', '0.295', 'Manchez', '-1523428744', '0xA5325278', 2, 'no'),
('manchez2', '1086534307', 'moped', '0', 'Maibatsu', '41.38007', '0.265', 'Manchez Scout', '1086534307', '0x40C332A3', 1, 'no'),
('manchez3', '1384502824', 'moped', '0', 'Maibatsu', '41.54008', '0.272', 'Manchez Scout C', '1384502824', '0x5285D628', 1, 'no'),
('marquis', '3251507587', 'boat', '0', 'Dinka', '10.000001', '2.5', 'Marquis', '-1043459709', '0xC1CE1183', 4, 'no'),
('marshall', '1233534620', 'monstertruck', '0', 'Cheval', '33.967667', '0.4', 'Marshall', '1233534620', '0x49863E9C', 2, 'no'),
('massacro', '4152024626', 'sportscar', '0', 'Dewbauchee', '50.47479', '0.364', 'Massacro', '-142942670', '0xF77ADE32', 2, 'no'),
('massacro2', '3663206819', 'sportscar', '0', 'Dewbauchee', '50.47479', '0.364', 'Massacro (Racecar)', '-631760477', '0xDA5819A3', 2, 'no'),
('maverick', '2634305738', 'fibheli', '0', 'null', '54.067535', '5.0959997', 'Maverick', '-1660661558', '0x9D0450CA', 4, 'no'),
('menacer', '2044532910', 'military', '0', 'HVY', '31.79404', '0.2', 'Menacer', '2044532910', '0x79DD18AE', 5, 'no'),
('mesa', '914654722', 'suv', '0', 'Canis', '34.683155', '0.17', 'Mesa', '914654722', '0x36848602', 4, 'no'),
('mesa2', '3546958660', 'suv', '0', 'Canis', '34.683155', '0.17', 'Mesa', '-748008636', '0xD36A4B44', 4, 'no'),
('mesa3', '2230595153', 'offroadcar', '0', 'Canis', '34.683155', '0.17', 'Mesa', '-2064372143', '0x84F42E51', 4, 'no'),
('metrotrain', '868868440', 'train', '0', 'null', '26.66667', '0.2', 'Freight Train', '868868440', '0x33C9E158', 4, 'no'),
('michelli', '1046206681', 'sportsclassiccar', '0', 'Lampadati', '44.568115', '0.2825', 'Michelli GT', '1046206681', '0x3E5BD8D9', 2, 'no'),
('microlight', '2531412055', 'plans', '0', 'Nagasaki', '30.151134', '13.72', 'Ultralight', '-1763555241', '0x96E24857', 1, 'no'),
('miljet', '165154707', 'plans', '0', 'Buckingham', '91.83217', '8.134', 'Miljet', '165154707', '0x9D80F93', 16, 'no'),
('minitank', '3040635986', 'military', '0', 'null', '9.729744', '0.06', 'Invade and Persuade Tank', '-1254331310', '0xB53C6C52', 1, 'no'),
('minivan', '3984502180', 'van', '0', 'Vapid', '35.401665', '0.15', 'Minivan', '-310465116', '0xED7EADA4', 4, 'no'),
('minivan2', '3168702960', 'van', '0', 'Vapid', '35.401665', '0.15', 'Minivan Custom', '-1126264336', '0xBCDE91F0', 4, 'no'),
('mixer', '3510150843', 'commercial', '0', 'HVY', '32.402092', '0.11', 'Mixer', '-784816453', '0xD138A6BB', 2, 'no');
INSERT INTO `vehicles` (`hashname`, `hash`, `category`, `price`, `producer`, `speed`, `acceleration`, `displayname`, `signedhash`, `hexhash`, `seats`, `blacklisted`) VALUES
('mixer2', '475220373', 'commercial', '0', 'HVY', '32.402092', '0.11', 'Mixer', '475220373', '0x1C534995', 2, 'no'),
('mogul', '3545667823', 'plans', '0', 'Mammoth', '76.79571', '5.88', 'Mogul', '-749299473', '0xD35698EF', 3, 'no'),
('molotok', '1565978651', 'military', '0', 'null', '91.287094', '14.700001', 'V-65 Molotok', '1565978651', '0x5D56F01B', 1, 'no'),
('monroe', '3861591579', 'sportsclassiccar', '0', 'Pegassi', '50.000004', '0.28', 'Monroe', '-433375717', '0xE62B361B', 2, 'no'),
('monster', '3449006043', 'monstertruck', '0', 'Vapid', '33.967667', '0.4', 'Monster', '-845961253', '0xCD93A7DB', 2, 'no'),
('monster3', '1721676810', 'monstertruck', '0', 'Bravado', '38.37866', '0.41', 'Apocalypse Sasquatch', '1721676810', '0x669EB40A', 2, 'no'),
('monster4', '840387324', 'monstertruck', '0', 'Bravado', '38.37866', '0.41', 'Future Shock Sasquatch', '840387324', '0x32174AFC', 2, 'no'),
('monster5', '3579220348', 'monstertruck', '0', 'Bravado', '38.37866', '0.41', 'Nightmare Sasquatch', '-715746948', '0xD556917C', 2, 'no'),
('moonbeam', '525509695', 'musclecar', '0', 'Declasse', '41.66667', '0.21', 'Moonbeam', '525509695', '0x1F52A43F', 4, 'no'),
('moonbeam2', '1896491931', 'musclecar', '0', 'Declasse', '41.66667', '0.21', 'Moonbeam Custom', '1896491931', '0x710A2B9B', 4, 'no'),
('mower', '1783355638', 'commercial', '0', 'null', '6.6666675', '0.05', 'Lawn Mower', '1783355638', '0x6A4BD8F6', 1, 'no'),
('mule', '904750859', 'commercial', '0', 'Maibatsu', '28.696072', '0.11', 'Mule', '904750859', '0x35ED670B', 6, 'no'),
('mule2', '3244501995', 'commercial', '0', 'Maibatsu', '28.696072', '0.11', 'Mule', '-1050465301', '0xC1632BEB', 6, 'no'),
('mule3', '2242229361', 'commercial', '0', 'Maibatsu', '31.904655', '0.17', 'Mule', '-2052737935', '0x85A5B471', 6, 'no'),
('mule4', '1945374990', 'commercial', '0', 'Maibatsu', '28.696072', '0.11', 'Mule Custom', '1945374990', '0x73F4110E', 4, 'no'),
('mule5', '1343932732', 'commercial', '0', 'Maibatsu', '31.904655', '0.17', 'Mule', '1343932732', '0x501AC93C', 6, 'no'),
('nebula', '3412338231', 'sportsclassiccar', '0', 'Vulcar', '37.938187', '0.24', 'Nebula Turbo', '-882629065', '0xCB642637', 4, 'no'),
('nemesis', '3660088182', 'motorcycle', '0', 'Principe', '45.045437', '0.3', 'Nemesis', '-634879114', '0xDA288376', 2, 'no'),
('neo', '2674840994', 'sportscar', '0', 'Vysser', '51.206615', '0.387', 'Neo', '-1620126302', '0x9F6ED5A2', 2, 'no'),
('neon', '2445973230', 'ecar', '0', 'Pfister', '38.922436', '0.2505', 'Neon', '-1848994066', '0x91CA96EE', 4, 'no'),
('nero', '1034187331', 'supersportcar', '0', 'Truffade', '52.64204', '0.3375', 'Nero', '1034187331', '0x3DA47243', 2, 'no'),
('nero2', '1093792632', 'supersportcar', '0', 'Truffade', '52.878975', '0.34005', 'Nero Custom', '1093792632', '0x4131F378', 2, 'no'),
('nightblade', '2688780135', 'chopper', '0', 'Western', '46.903397', '0.31', 'Nightblade', '-1606187161', '0xA0438767', 2, 'no'),
('nightshade', '2351681756', 'musclecar', '0', 'Imponte', '40.398415', '0.25', 'Nightshade', '-1943285540', '0x8C2BD0DC', 2, 'no'),
('nightshark', '433954513', 'military', '0', 'HVY', '36.833023', '0.27', 'Nightshark', '433954513', '0x19DD9ED1', 4, 'no'),
('nimbus', '2999939664', 'plans', '0', 'Buckingham', '94.556206', '8.134', 'Nimbus', '-1295027632', '0xB2CF7250', 8, 'no'),
('ninef', '1032823388', 'sportscar', '0', 'Obey', '48.6724', '0.33', '9F', '1032823388', '0x3D8FA25C', 2, 'no'),
('ninef2', '2833484545', 'sportscar', '0', 'Obey', '48.6724', '0.33', '9F Cabrio', '-1461482751', '0xA8E38B01', 2, 'no'),
('nokota', '1036591958', 'military', '0', 'null', '87.7058', '14.700001', 'P-45 Nokota', '1036591958', '0x3DC92356', 1, 'no'),
('novak', '2465530446', 'suv', '0', 'Lampadati', '47.01816', '0.3', 'Novak', '-1829436850', '0x92F5024E', 4, 'no'),
('omnis', '3517794615', 'sportscar', '0', 'Obey', '43.73737', '0.305', 'Omnis', '-777172681', '0xD1AD4937', 2, 'no'),
('omnisegt', '3789743831', 'ecar', '0', 'Obey', '47.69437', '0.58', 'Omnis e-GT', '-505223465', '0xE1E2E6D7', 4, 'no'),
('openwheel1', '1492612435', 'formula', '0', 'Benefactor', '52.52767', '0.76', 'BR8', '1492612435', '0x58F77553', 1, 'no'),
('openwheel2', '1181339704', 'formula', '0', 'Declasse', '53.053722', '0.655', 'DR1', '1181339704', '0x4669D038', 1, 'no'),
('oppressor', '884483972', 'motorcycle', '0', 'Pegassi', '48.49779', '0.4', 'Oppressor', '884483972', '0x34B82784', 1, 'no'),
('oppressor2', '2069146067', 'motorcycle', '0', 'Pegassi', '47.09265', '0.38', 'Oppressor Mk II', '2069146067', '0x7B54A9D3', 1, 'no'),
('oracle', '1348744438', 'coupe', '0', 'Ubermacht', '45.195316', '0.26', 'Oracle XS', '1348744438', '0x506434F6', 4, 'no'),
('oracle2', '3783366066', 'coupe', '0', 'Ubermacht', '46.247337', '0.27', 'Oracle', '-511601230', '0xE18195B2', 4, 'no'),
('osiris', '1987142870', 'supersportcar', '0', 'Pegassi', '49.655872', '0.36', 'Osiris', '1987142870', '0x767164D6', 2, 'no'),
('outlaw', '408825843', 'beachbuggy', '0', 'Nagasaki', '36.156467', '0.475', 'Outlaw', '408825843', '0x185E2FF3', 2, 'no'),
('packer', '569305213', 'commercial', '0', 'MTL', '36.346527', '0.21', 'Packer', '569305213', '0x21EEE87D', 2, 'no'),
('panthere', '2100457220', 'sportscar', '0', 'Toundra', '49.53232', '0.3462', 'Panthere', '2100457220', '0x7D326F04', 2, 'no'),
('panto', '3863274624', 'compact', '0', 'Benefactor', '40.69874', '0.27', 'Panto', '-431692672', '0xE644E480', 2, 'no'),
('paradise', '1488164764', 'van', '0', 'Bravado', '38.44937', '0.17', 'Paradise', '1488164764', '0x58B3979C', 4, 'no'),
('paragon', '3847255899', 'sportscar', '0', 'Enus', '44.996952', '0.329', 'Paragon R', '-447711397', '0xE550775B', 2, 'no'),
('paragon2', '1416466158', 'sportscar', '0', 'Enus', '44.827965', '0.3275', 'Paragon R (Armored)', '1416466158', '0x546D8EEE', 2, 'no'),
('pariah', '867799010', 'sportscar', '0', 'Ocelot', '48.732784', '0.321', 'Pariah', '867799010', '0x33B98FE2', 2, 'no'),
('patriot', '3486509883', 'suv', '0', 'Mammoth', '38.42887', '0.2', 'Patriot', '-808457413', '0xCFCFEB3B', 4, 'no'),
('patriot2', '3874056184', 'suv', '0', 'Mammoth', '35.963905', '0.18', 'Patriot Stretch', '-420911112', '0xE6E967F8', 6, 'no'),
('patriot3', '3624880708', 'suv', '0', 'Mammoth', '37.676254', '0.23', 'Patriot Mil-Spec', '-670086588', '0xD80F4A44', 4, 'no'),
('patrolboat', '4018222598', 'military', '0', 'null', '40.000004', '15.5', 'Kurtz 31 Patrol Boat', '-276744698', '0xEF813606', 4, 'no'),
('pbus', '2287941233', 'policevan', '0', 'null', '28.236109', '0.14', 'Police Prison Bus', '-2007026063', '0x885F3671', 11, 'no'),
('pbus2', '345756458', 'commercial', '0', 'null', '23.117743', '0.13', 'Festival Bus', '345756458', '0x149BD32A', 11, 'no'),
('pcj', '3385765638', 'motorcycle', '0', 'Shitzu', '39.795876', '0.26', 'PCJ 600', '-909201658', '0xC9CEAF06', 2, 'no'),
('penetrator', '2536829930', 'supersportcar', '0', 'Ocelot', '49.419422', '0.3', 'Penetrator', '-1758137366', '0x9734F3EA', 2, 'no'),
('penumbra', '3917501776', 'sportscar', '0', 'Maibatsu', '40.779922', '0.22', 'Penumbra', '-377465520', '0xE9805550', 2, 'no'),
('penumbra2', '3663644634', 'sportscar', '0', 'Maibatsu', '45.045437', '0.3', 'Penumbra FF', '-631322662', '0xDA5EC7DA', 2, 'no'),
('peyote', '1830407356', 'sportsclassiccar', '0', 'Vapid', '36.947178', '0.16', 'Peyote', '1830407356', '0x6D19CCBC', 2, 'no'),
('peyote2', '2490551588', 'musclecar', '0', 'Vapid', '46.70329', '0.3445', 'Peyote Gasser', '-1804415708', '0x9472CD24', 2, 'no'),
('peyote3', '1107404867', 'sportsclassiccar', '0', 'Vapid', '42.774143', '0.205', 'Peyote Custom', '1107404867', '0x4201A843', 2, 'no'),
('pfister811', '2465164804', 'supersportcar', '0', 'Pfister', '53.100006', '0.356', '811', '-1829802492', '0x92EF6E04', 2, 'no'),
('phantom', '2157618379', 'commercial', '0', 'JoBuilt', '33.810608', '0.21', 'Phantom', '-2137348917', '0x809AA4CB', 2, 'no'),
('phantom2', '2645431192', 'commercial', '0', 'JoBuilt', '43.314068', '0.3', 'Phantom Wedge', '-1649536104', '0x9DAE1398', 5, 'yes'),
('phantom3', '177270108', 'commercial', '0', 'JoBuilt', '41.777657', '0.3', 'Phantom Custom', '177270108', '0xA90ED5C', 5, 'no'),
('phoenix', '2199527893', 'musclecar', '0', 'Imponte', '47.280853', '0.28', 'Phoenix', '-2095439403', '0x831A21D5', 2, 'no'),
('picador', '1507916787', 'musclecar', '0', 'Cheval', '40.779922', '0.22', 'Picador', '1507916787', '0x59E0FBF3', 4, 'no'),
('pigalle', '1078682497', 'sportsclassiccar', '0', 'Lampadati', '49.666668', '0.265', 'Pigalle', '1078682497', '0x404B6381', 2, 'no'),
('police', '2046537925', 'policecar', '0', 'null', '42.72843', '0.2', 'Police Cruiser', '2046537925', '0x79FBB0C5', 4, 'no'),
('police2', '2667966721', 'policecar', '0', 'null', '46.156612', '0.28', 'Police Cruiser', '-1627000575', '0x9F05F101', 4, 'no'),
('police3', '1912215274', 'policecar', '0', 'null', '48.114067', '0.3', 'Police Cruiser', '1912215274', '0x71FA16EA', 4, 'no'),
('police4', '2321795001', 'policecar', '0', 'null', '42.72843', '0.2', 'Unmarked Cruiser', '-1973172295', '0x8A63C7B9', 4, 'no'),
('policeb', '4260343491', 'policebike', '0', 'null', '44.136932', '0.27', 'Police Bike', '-34623805', '0xFDEFAEC3', 1, 'no'),
('policeold1', '2758042359', 'policecar', '0', 'null', '35.160107', '0.18', 'Police Rancher', '-1536924937', '0xA46462F7', 4, 'no'),
('policeold2', '2515846680', 'policecar', '0', 'null', '42.72843', '0.2', 'Police Roadcruiser', '-1779120616', '0x95F4C618', 4, 'no'),
('policet', '456714581', 'policevan', '0', 'null', '36.947178', '0.16', 'Police Transporter', '456714581', '0x1B38E955', 4, 'no'),
('polmav', '353883353', 'policeheli', '0', 'null', '56.596222', '5.194', 'Police Maverick', '353883353', '0x1517D4D9', 4, 'no'),
('pony', '4175309224', 'commercial', '0', 'Brute', '36.947178', '0.16', 'Pony', '-119658072', '0xF8DE29A8', 4, 'no'),
('pony2', '943752001', 'commercial', '0', 'Brute', '36.947178', '0.16', 'Pony', '943752001', '0x38408341', 4, 'no'),
('postlude', '4000288633', 'coupe', '0', 'Dinka', '42.182316', '0.295', 'Postlude', '-294678663', '0xEE6F8F79', 2, 'no'),
('pounder', '2112052861', 'commercial', '0', 'MTL', '33.80885', '0.14', 'Pounder', '2112052861', '0x7DE35E7D', 2, 'no'),
('pounder2', '1653666139', 'commercial', '0', 'MTL', '36.947178', '0.16', 'Pounder Custom', '1653666139', '0x6290F15B', 8, 'no'),
('powersurge', '2908631255', 'motorcycle', '0', 'Western', '42.733334', '0.82', 'Powersurge', '-1386336041', '0xAD5E30D7', 2, 'no'),
('prairie', '2844316578', 'compact', '0', 'Bollokan', '40.779922', '0.22', 'Prairie', '-1450650718', '0xA988D3A2', 2, 'no'),
('pranger', '741586030', 'policecar', '0', 'null', '37.555943', '0.2', 'Park Ranger', '741586030', '0x2C33B46E', 8, 'no'),
('predator', '3806844075', 'policeboat', '0', 'null', '40.000004', '14', 'Police Predator', '-488123221', '0xE2E7D4AB', 4, 'no'),
('premier', '2411098011', 'sedan', '0', 'Declasse', '38.42887', '0.2', 'Premier', '-1883869285', '0x8FB66F9B', 4, 'no'),
('previon', '1416471345', 'coupe', '0', 'Karin', '47.008526', '0.3185', 'Previon', '1416471345', '0x546DA331', 2, 'no'),
('primo', '3144368207', 'sedan', '0', 'Albany', '38.42887', '0.2', 'Primo', '-1150599089', '0xBB6B404F', 4, 'no'),
('primo2', '2254540506', 'sedan', '0', 'Albany', '38.42887', '0.2', 'Primo Custom', '-2040426790', '0x86618EDA', 4, 'no'),
('proptrailer', '356391690', 'supersportcar', '0', 'null', '-0.5131671', '0', 'null', '356391690', '0x153E1B0A', 4, 'no'),
('prototipo', '2123327359', 'supersportcar', '0', 'Grotti', '53.05652', '0.375', 'X80 Proto', '2123327359', '0x7E8F677F', 2, 'no'),
('pyro', '2908775872', 'military', '0', 'Buckingham', '100', '11.27', 'Pyro', '-1386191424', '0xAD6065C0', 2, 'no'),
('r300', '1076201208', 'sportscar', '0', 'Annis', '47.84967', '0.3288', '300R', '1076201208', '0x402586F8', 2, 'no'),
('radi', '2643899483', 'suv', '0', 'Vapid', '39.371296', '0.2', 'Radius', '-1651067813', '0x9D96B45B', 4, 'no'),
('raiden', '2765724541', 'ecar', '0', 'Coil', '38.061573', '0.245', 'Raiden', '-1529242755', '0xA4D99B7D', 4, 'no'),
('raketrailer', '390902130', 'supersportcar', '0', 'null', '-0.5131671', '0', 'Trailer', '390902130', '0x174CB172', 2, 'no'),
('rallytruck', '2191146052', 'commercial', '0', 'MTL', '40.758568', '0.33', 'Dune', '-2103821244', '0x829A3C44', 2, 'no'),
('rancherxl', '1645267888', 'offroadcar', '0', 'Declasse', '35.160107', '0.18', 'Rancher XL', '1645267888', '0x6210CBB0', 4, 'no'),
('rancherxl2', '1933662059', 'offroadcar', '0', 'Declasse', '35.160107', '0.18', 'Rancher XL', '1933662059', '0x7341576B', 4, 'no'),
('rapidgt', '2360515092', 'sportscar', '0', 'Dewbauchee', '50.149815', '0.36', 'Rapid GT', '-1934452204', '0x8CB29A14', 2, 'no'),
('rapidgt2', '1737773231', 'sportscar', '0', 'Dewbauchee', '50.149815', '0.36', 'Rapid GT', '1737773231', '0x679450AF', 2, 'no'),
('rapidgt3', '2049897956', 'sportsclassiccar', '0', 'Dewbauchee', '47.124184', '0.3', 'Rapid GT Classic', '2049897956', '0x7A2EF5E4', 2, 'no'),
('raptor', '3620039993', 'sportscar', '0', 'BF', '42.887318', '0.295', 'Raptor', '-674927303', '0xD7C56D39', 2, 'no'),
('ratbike', '1873600305', 'chopper', '0', 'Western', '36.872166', '0.215', 'Rat Bike', '1873600305', '0x6FACDF31', 2, 'no'),
('ratloader', '3627815886', 'musclecar', '0', 'null', '37.391987', '0.22', 'Rat-Loader', '-667151410', '0xD83C13CE', 2, 'no'),
('ratloader2', '3705788919', 'musclecar', '0', 'Bravado', '39.4166', '0.24', 'Rat-Truck', '-589178377', '0xDCE1D9F7', 2, 'no'),
('rcbandito', '4008920556', 'monstertruck', '0', 'null', '26.371773', '0.14', 'RC Bandito', '-286046740', '0xEEF345EC', 2, 'no'),
('reaper', '234062309', 'supersportcar', '0', 'Pegassi', '49.659313', '0.365', 'Reaper', '234062309', '0xDF381E5', 2, 'no'),
('rebel', '3087195462', 'offroadcar', '0', 'Karin', '38.42887', '0.2', 'Rusty Rebel', '-1207771834', '0xB802DD46', 4, 'no'),
('rebel2', '2249373259', 'offroadcar', '0', 'Karin', '38.42887', '0.2', 'Rebel', '-2045594037', '0x8612B64B', 4, 'no'),
('rebla', '83136452', 'suv', '0', 'Ubermacht', '46.564484', '0.335', 'Rebla GTS', '83136452', '0x4F48FC4', 4, 'no'),
('reever', '1993851908', 'motorcycle', '0', 'Western', '50.04156', '0.4085', 'Reever', '1993851908', '0x76D7C404', 2, 'no'),
('regina', '4280472072', 'sedan', '0', 'Dundreary', '30.613222', '0.14', 'Regina', '-14495224', '0xFF22D208', 4, 'no'),
('remus', '1377217886', 'sportscar', '0', 'Annis', '47.01226', '0.327', 'Remus', '1377217886', '0x5216AD5E', 2, 'no'),
('rentalbus', '3196165219', 'commercial', '0', 'null', '25.580894', '0.12', 'Rental Shuttle Bus', '-1098802077', '0xBE819C63', 10, 'no'),
('retinue', '1841130506', 'sportsclassiccar', '0', 'Vapid', '42.67659', '0.2275', 'Retinue', '1841130506', '0x6DBD6C0A', 4, 'no'),
('retinue2', '2031587082', 'sportsclassiccar', '0', 'Vapid', '45.907265', '0.2775', 'Retinue Mk II', '2031587082', '0x79178F0A', 4, 'no'),
('revolter', '3884762073', 'sportscar', '0', 'Ubermacht', '44.915028', '0.35', 'Revolter', '-410205223', '0xE78CC3D9', 4, 'no'),
('rhapsody', '841808271', 'compact', '0', 'Declasse', '41.325714', '0.23', 'Rhapsody', '841808271', '0x322CF98F', 4, 'no'),
('rhinehart', '2439462158', 'sedan', '0', 'Ubermacht', '46.979553', '0.339', 'Rhinehart', '-1855505138', '0x91673D0E', 4, 'no'),
('rhino', '782665360', 'military', '0', 'null', '18.333336', '0.11', 'Rhino Tank', '782665360', '0x2EA68690', 2, 'no'),
('riata', '2762269779', 'offroadcar', '0', 'Vapid', '40.398415', '0.25', 'Riata', '-1532697517', '0xA4A4E453', 2, 'no'),
('riot', '3089277354', 'swat', '0', 'null', '34.497902', '0.12', 'Police Riot', '-1205689942', '0xB822A1AA', 8, 'no'),
('riot2', '2601952180', 'swat', '0', 'null', '35.93409', '0.16', 'RCV', '-1693015116', '0x9B16A3B4', 6, 'no'),
('ripley', '3448987385', 'commercial', '0', 'null', '23.333334', '0.16', 'Ripley', '-845979911', '0xCD935EF9', 2, 'no'),
('rocoto', '2136773105', 'suv', '0', 'Obey', '41.337166', '0.19', 'Rocoto', '2136773105', '0x7F5C91F1', 4, 'no'),
('rogue', '3319621991', 'military', '0', 'Western', '100', '9.8', 'Rogue', '-975345305', '0xC5DD6967', 2, 'no'),
('romero', '627094268', 'sedan', '0', 'Chariot', '32.011234', '0.15', 'Romero Hearse', '627094268', '0x2560B2FC', 4, 'no'),
('rrocket', '916547552', 'trike', '0', 'Western', '41.618275', '0.382', 'Rampant Rocket', '916547552', '0x36A167E0', 1, 'no'),
('rt3000', '3842363289', 'sportscar', '0', 'Dinka', '48.131428', '0.312', 'RT3000', '-452604007', '0xE505CF99', 2, 'no'),
('rubble', '2589662668', 'commercial', '0', 'JoBuilt', '33.333336', '0.14', 'Rubble', '-1705304628', '0x9A5B1DCC', 2, 'no'),
('ruffian', '3401388520', 'motorcycle', '0', 'Pegassi', '46.666668', '0.34', 'Ruffian', '-893578776', '0xCABD11E8', 2, 'no'),
('ruiner', '4067225593', 'musclecar', '0', 'Imponte', '48.333336', '0.28', 'Ruiner', '-227741703', '0xF26CEFF9', 2, 'no'),
('ruiner2', '941494461', 'musclecar', '0', 'Imponte', '49.76318', '0.33', 'Ruiner 2000', '941494461', '0x381E10BD', 2, 'no'),
('ruiner3', '777714999', 'musclecar', '0', 'Imponte', '48.333336', '0.28', 'Ruiner', '777714999', '0x2E5AFD37', 2, 'no'),
('ruiner4', '1706945532', 'musclecar', '0', 'Imponte', '48.46975', '0.3085', 'Ruiner ZZ-8', '1706945532', '0x65BDEBFC', 2, 'no'),
('rumpo', '1162065741', 'van', '0', 'Bravado', '38.44937', '0.17', 'Rumpo', '1162065741', '0x4543B74D', 4, 'no'),
('rumpo2', '2518351607', 'commercial', '0', 'Bravado', '38.44937', '0.17', 'Rumpo', '-1776615689', '0x961AFEF7', 4, 'no'),
('rumpo3', '1475773103', 'van', '0', 'Bravado', '35.963905', '0.18', 'Rumpo Custom', '1475773103', '0x57F682AF', 4, 'no'),
('ruston', '719660200', 'sportscar', '0', 'Hijak', '46.748257', '0.325', 'Ruston', '719660200', '0x2AE524A8', 2, 'no'),
('s80', '3970348707', 'supersportcar', '0', 'Annis', '49.63022', '0.3725', 'S80RR', '-324618589', '0xECA6B6A3', 1, 'no'),
('sabregt', '2609945748', 'musclecar', '0', 'Declasse', '46.666668', '0.28', 'Sabre Turbo', '-1685021548', '0x9B909C94', 2, 'no'),
('sabregt2', '223258115', 'musclecar', '0', 'Declasse', '46.666668', '0.282', 'Sabre Turbo Custom', '223258115', '0xD4EA603', 2, 'no'),
('sadler', '3695398481', 'suv', '0', 'Vapid', '37.555943', '0.2', 'Sadler', '-599568815', '0xDC434E51', 4, 'no'),
('sadler2', '734217681', 'suv', '0', 'Vapid', '37.555943', '0.2', 'Sadler', '734217681', '0x2BC345D1', 4, 'no'),
('sanchez', '788045382', 'moped', '0', 'Maibatsu', '39.333336', '0.28', 'Sanchez (livery)', '788045382', '0x2EF89E46', 2, 'no'),
('sanchez2', '2841686334', 'moped', '0', 'Maibatsu', '39.333336', '0.28', 'Sanchez', '-1453280962', '0xA960B13E', 2, 'no'),
('sanctus', '1491277511', 'chopper', '0', 'LCC', '46.512318', '0.405', 'Sanctus', '1491277511', '0x58E316C7', 2, 'no'),
('sandking', '3105951696', 'offroadcar', '0', 'Vapid', '38.42887', '0.2', 'Sandking XL', '-1189015600', '0xB9210FD0', 4, 'no'),
('sandking2', '989381445', 'offroadcar', '0', 'Vapid', '38.42887', '0.2', 'Sandking SWB', '989381445', '0x3AF8C345', 4, 'no'),
('savage', '4212341271', 'military', '0', 'null', '65.195274', '4.5864', 'Savage', '-82626025', '0xFB133A17', 4, 'no'),
('savestra', '903794909', 'sportsclassiccar', '0', 'Annis', '43.83115', '0.2375', 'Savestra', '903794909', '0x35DED0DD', 4, 'no'),
('sc1', '1352136073', 'supersportcar', '0', 'Ubermacht', '47.416218', '0.31', 'SC1', '1352136073', '0x5097F589', 2, 'no'),
('scarab', '3147997943', 'military', '0', 'HVY', '23.54772', '0.1', 'Apocalypse Scarab', '-1146969353', '0xBBA2A2F7', 4, 'no'),
('scarab2', '1542143200', 'military', '0', 'HVY', '23.54772', '0.1', 'Future Shock Scarab', '1542143200', '0x5BEB3CE0', 4, 'no'),
('scarab3', '3715219435', 'military', '0', 'HVY', '23.54772', '0.1', 'Nightmare Scarab', '-579747861', '0xDD71BFEB', 4, 'no'),
('schafter2', '3039514899', 'sportscar', '0', 'Benefactor', '39.371296', '0.2', 'Schafter', '-1255452397', '0xB52B5113', 4, 'no'),
('schafter3', '2809443750', 'sportscar', '0', 'Benefactor', '50.000004', '0.3', 'Schafter V12', '-1485523546', '0xA774B5A6', 4, 'no'),
('schafter4', '1489967196', 'sportscar', '0', 'Benefactor', '39.371296', '0.2', 'Schafter LWB', '1489967196', '0x58CF185C', 4, 'no'),
('schafter5', '3406724313', 'sportscar', '0', 'Benefactor', '50.000004', '0.29', 'Schafter V12 (Armored)', '-888242983', '0xCB0E7CD9', 4, 'no'),
('schafter6', '1922255844', 'sportscar', '0', 'Benefactor', '37.477863', '0.185', 'Schafter LWB (Armored)', '1922255844', '0x72934BE4', 4, 'no'),
('schlagen', '3787471536', 'sportscar', '0', 'Benefactor', '52.06058', '0.37', 'Schlagen GT', '-507495760', '0xE1C03AB0', 2, 'no'),
('schwarzer', '3548084598', 'sportscar', '0', 'Benefactor', '48.296795', '0.29', 'Schwartzer', '-746882698', '0xD37B7976', 2, 'no'),
('scorcher', '4108429845', 'cycle', '0', 'null', '15.029973', '0.17', 'Scorcher', '-186537451', '0xF4E1AA15', 1, 'no'),
('scramjet', '3656405053', 'supersportcar', '0', 'Declasse', '49.35356', '0.4', 'Scramjet', '-638562243', '0xD9F0503D', 2, 'no'),
('scrap', '2594165727', 'commercial', '0', 'null', '32.16411', '0.13', 'Scrap Truck', '-1700801569', '0x9A9FD3DF', 2, 'no'),
('seabreeze', '3902291871', 'plans', '0', 'Western', '81.64966', '20.09', 'Seabreeze', '-392675425', '0xE8983F9F', 2, 'no'),
('seashark', '3264692260', 'boat', '0', 'Speedophile', '43.33334', '12.5', 'Seashark', '-1030275036', '0xC2974024', 2, 'no'),
('seashark2', '3678636260', 'emcboat', '0', 'Speedophile', '43.33334', '12.5', 'Seashark', '-616331036', '0xDB4388E4', 2, 'no'),
('seashark3', '3983945033', 'policeboat', '0', 'Speedophile', '43.33334', '12.5', 'Seashark', '-311022263', '0xED762D49', 2, 'no'),
('seasparrow', '3568198617', 'research', '0', 'null', '56.596222', '5.194', 'Sea Sparrow', '-726768679', '0xD4AE63D9', 2, 'no'),
('seasparrow2', '1229411063', 'research', '0', 'null', '69.45439', '6.223', 'Sparrow', '1229411063', '0x494752F7', 2, 'no'),
('seasparrow3', '1593933419', 'research', '0', 'null', '69.45439', '6.223', 'Sparrow', '1593933419', '0x5F017E6B', 2, 'no'),
('seminole', '1221512915', 'suv', '0', 'Canis', '36.83084', '0.18', 'Seminole', '1221512915', '0x48CECED3', 4, 'no'),
('seminole2', '2484160806', 'suv', '0', 'Canis', '38.985382', '0.2', 'Seminole Frontier', '-1810806490', '0x94114926', 4, 'no'),
('sentinel', '1349725314', 'coupe', '0', 'Ubermacht', '45.4909', '0.21', 'Sentinel XS', '1349725314', '0x50732C82', 2, 'no'),
('sentinel2', '873639469', 'coupe', '0', 'Ubermacht', '45.4909', '0.21', 'Sentinel', '873639469', '0x3412AE2D', 4, 'no'),
('sentinel3', '1104234922', 'sportscar', '0', 'Ubermacht', '44.643963', '0.265', 'Sentinel', '1104234922', '0x41D149AA', 4, 'no'),
('sentinel4', '2938086457', 'sportscar', '0', 'Ubermacht', '47.51883', '0.295', 'Sentinel Classic Widebody', '-1356880839', '0xAF1FA439', 4, 'no'),
('serrano', '1337041428', 'suv', '0', 'Benefactor', '40.39331', '0.2', 'Serrano', '1337041428', '0x4FB1A214', 4, 'no'),
('seven70', '2537130571', 'sportscar', '0', 'Dewbauchee', '50.909172', '0.335', 'Seven-70', '-1757836725', '0x97398A4B', 2, 'no'),
('shamal', '3080461301', 'plans', '0', 'Buckingham', '90.614456', '7.938', 'Shamal', '-1214505995', '0xB79C1BF5', 10, 'no'),
('sheava', '819197656', 'supersportcar', '0', 'Emperor', '48.6724', '0.33', 'ETR1', '819197656', '0x30D3F6D8', 2, 'no'),
('sheriff', '2611638396', 'policecar', '0', 'null', '43.031517', '0.24', 'Sheriff Cruiser', '-1683328900', '0x9BAA707C', 4, 'no'),
('sheriff2', '1922257928', 'policecar', '0', 'null', '37.555943', '0.2', 'Sheriff SUV', '1922257928', '0x72935408', 8, 'no'),
('shinobi', '1353120668', 'motorcycle', '0', 'Nagasaki', '52.13334', '0.3625', 'Shinobi', '1353120668', '0x50A6FB9C', 2, 'no'),
('shotaro', '3889340782', 'motorcycle', '0', 'Nagasaki', '51.218212', '0.4', 'Shotaro', '-405626514', '0xE7D2A16E', 2, 'no'),
('skylift', '1044954915', 'research', '0', 'null', '47.931473', '4.704', 'Skylift', '1044954915', '0x3E48BF23', 2, 'no'),
('slamtruck', '3249056020', 'commercial', '0', 'Vapid', '37.90616', '0.225', 'Slamtruck', '-1045911276', '0xC1A8A914', 2, 'no'),
('slamvan', '729783779', 'musclecar', '0', 'Vapid', '39.909916', '0.245', 'Slamvan', '729783779', '0x2B7F9DE3', 2, 'no'),
('slamvan2', '833469436', 'musclecar', '0', 'Vapid', '40.398415', '0.25', 'Lost Slamvan', '833469436', '0x31ADBBFC', 4, 'no'),
('slamvan3', '1119641113', 'musclecar', '0', 'Vapid', '40.398415', '0.25', 'Slamvan Custom', '1119641113', '0x42BC5E19', 2, 'no'),
('slamvan4', '2233918197', 'musclecar', '0', 'Vapid', '41.47795', '0.27', 'Apocalypse Slamvan', '-2061049099', '0x8526E2F5', 2, 'no'),
('slamvan5', '373261600', 'musclecar', '0', 'Vapid', '41.47795', '0.27', 'Future Shock Slamvan', '373261600', '0x163F8520', 2, 'no'),
('slamvan6', '1742022738', 'musclecar', '0', 'Vapid', '41.47795', '0.27', 'Nightmare Slamvan', '1742022738', '0x67D52852', 2, 'no'),
('sm722', '775514032', 'supersportcar', '0', 'Benefactor', '48.216537', '0.358', 'SM722', '775514032', '0x2E3967B0', 4, 'no'),
('sovereign', '743478836', 'chopper', '0', 'Western', '44.136932', '0.27', 'Sovereign', '743478836', '0x2C509634', 1, 'no'),
('specter', '1886268224', 'sportscar', '0', 'Dewbauchee', '48.642548', '0.32', 'Specter', '1886268224', '0x706E2B40', 2, 'no'),
('specter2', '1074745671', 'sportscar', '0', 'Dewbauchee', '49.317604', '0.33', 'Specter Custom', '1074745671', '0x400F5147', 2, 'no'),
('speeder', '231083307', 'boat', '0', 'Pegassi', '44.333336', '16', 'Speeder', '231083307', '0xDC60D2B', 4, 'no'),
('speeder2', '437538602', 'boat', '0', 'Pegassi', '44.333336', '16', 'Speeder', '437538602', '0x1A144F2A', 4, 'no'),
('speedo', '3484649228', 'van', '0', 'Vapid', '39.911697', '0.18', 'Speedo', '-810318068', '0xCFB3870C', 4, 'no'),
('speedo2', '728614474', 'van', '0', 'Vapid', '39.911697', '0.18', 'Clown Van', '728614474', '0x2B6DC64A', 4, 'no'),
('speedo4', '219613597', 'van', '0', 'Vapid', '42.72843', '0.2', 'Speedo Custom', '219613597', '0xD17099D', 4, 'no'),
('squaddie', '4192631813', 'military', '0', 'Mammoth', '38.42887', '0.2', 'Squaddie', '-102335483', '0xF9E67C05', 4, 'no'),
('squalo', '400514754', 'boat', '0', 'Shitzu', '36.66667', '11.5', 'Squalo', '400514754', '0x17DF5EC2', 2, 'no'),
('stafford', '321186144', 'sedan', '0', 'Enus', '38.07186', '0.2', 'Stafford', '321186144', '0x1324E960', 4, 'no'),
('stalion', '1923400478', 'musclecar', '0', 'Declasse', '45.078148', '0.29', 'Stallion', '1923400478', '0x72A4C31E', 2, 'no'),
('stalion2', '3893323758', 'musclecar', '0', 'Declasse', '47.732628', '0.31', 'Burger Shot Stallion', '-401643538', '0xE80F67EE', 2, 'no'),
('stanier', '2817386317', 'sedan', '0', 'Vapid', '42.72843', '0.2', 'Stanier', '-1477580979', '0xA7EDE74D', 4, 'no'),
('starling', '2594093022', 'military', '0', 'null', '87.5', '12.25', 'LF-22 Starling', '-1700874274', '0x9A9EB7DE', 1, 'no'),
('stinger', '1545842587', 'sportsclassiccar', '0', 'Grotti', '45.195316', '0.26', 'Stinger', '1545842587', '0x5C23AF9B', 2, 'no'),
('stingergt', '2196019706', 'sportsclassiccar', '0', 'Grotti', '45.195316', '0.26', 'Stinger GT', '-2098947590', '0x82E499FA', 2, 'no'),
('stockade', '1747439474', 'security', '0', 'Brute', '34.497902', '0.12', 'Stockade', '1747439474', '0x6827CF72', 8, 'no'),
('stockade3', '4080511798', 'security', '0', 'Brute', '34.497902', '0.12', 'Stockade', '-214455498', '0xF337AB36', 8, 'no'),
('stratum', '1723137093', 'sedan', '0', 'Zirconium', '41.658867', '0.21', 'Stratum', '1723137093', '0x66B4FC45', 4, 'no'),
('streiter', '1741861769', 'sportscar', '0', 'Benefactor', '42.897774', '0.2125', 'Streiter', '1741861769', '0x67D2B389', 4, 'no'),
('stretch', '2333339779', 'sedan', '0', 'Dundreary', '38.44937', '0.17', 'Stretch', '-1961627517', '0x8B13F083', 6, 'no'),
('strikeforce', '1692272545', 'military', '0', 'null', '70.71068', '15.68', 'B-11 Strikeforce', '1692272545', '0x64DE07A1', 1, 'no'),
('stromberg', '886810209', 'sportsclassiccar', '0', 'Ocelot', '45.869114', '0.29', 'Stromberg', '886810209', '0x34DBA661', 2, 'no'),
('stryder', '301304410', 'trike', '0', 'Nagasaki', '42.218693', '0.36', 'Stryder', '301304410', '0x11F58A5A', 2, 'no'),
('stunt', '2172210288', 'plans', '0', 'null', '79.05694', '9.8', 'Mallard', '-2122757008', '0x81794C70', 1, 'no'),
('submersible', '771711535', 'researchboat', '0', 'null', '25.000002', '8', 'Submersible', '771711535', '0x2DFF622F', 1, 'no'),
('submersible2', '3228633070', 'researchboat', '0', 'null', '25.000002', '10', 'Kraken', '-1066334226', '0xC07107EE', 1, 'no'),
('sugoi', '987469656', 'sportscar', '0', 'Dinka', '45.19332', '0.31', 'Sugoi', '987469656', '0x3ADB9758', 4, 'no'),
('sultan', '970598228', 'sportscar', '0', 'Karin', '45.195316', '0.26', 'Sultan', '970598228', '0x39DA2754', 4, 'no'),
('sultan2', '872704284', 'sportscar', '0', 'Karin', '46.70056', '0.33', 'Sultan Classic', '872704284', '0x3404691C', 4, 'no'),
('sultan3', '4003946083', 'sportscar', '0', 'Karin', '47.214905', '0.3385', 'Sultan RS Classic', '-291021213', '0xEEA75E63', 2, 'no'),
('sultanrs', '3999278268', 'supersportcar', '0', 'Karin', '49.33334', '0.33', 'Sultan RS', '-295689028', '0xEE6024BC', 4, 'no'),
('suntrap', '4012021193', 'boat', '0', 'Shitzu', '36.66667', '11.5', 'Suntrap', '-282946103', '0xEF2295C9', 4, 'no'),
('superd', '1123216662', 'sedan', '0', 'Enus', '45.195316', '0.26', 'Super Diamond', '1123216662', '0x42F2ED16', 4, 'no'),
('supervolito', '710198397', 'helicopter', '0', 'Buckingham', '61.968613', '5.635', 'SuperVolito', '710198397', '0x2A54C47D', 4, 'no'),
('supervolito2', '2623428164', 'helicopter', '0', 'Buckingham', '61.968613', '5.635', 'SuperVolito Carbon', '-1671539132', '0x9C5E5644', 4, 'no'),
('surano', '384071873', 'sportscar', '0', 'Benefactor', '50.42197', '0.34', 'Surano', '384071873', '0x16E478C1', 2, 'no'),
('surfer', '699456151', 'van', '0', 'BF', '20.685947', '0.1', 'Surfer', '699456151', '0x29B0DA97', 4, 'no'),
('surfer2', '2983726598', 'van', '0', 'BF', '20.685947', '0.1', 'Surfer', '-1311240698', '0xB1D80E06', 4, 'no'),
('surfer3', '3259477733', 'van', '0', 'BF', '20.685947', '0.1', 'Surfer Custom', '-1035489563', '0xC247AEE5', 4, 'no'),
('surge', '2400073108', 'ecar', '0', 'Cheval', '24.198652', '0.1', 'Surge', '-1894894188', '0x8F0E3594', 4, 'no'),
('swift', '3955379698', 'helicopter', '0', 'Buckingham', '58.231438', '5.439', 'Swift', '-339587598', '0xEBC24DF2', 4, 'no'),
('swift2', '1075432268', 'emcheli', '0', 'Buckingham', '58.87572', '5.537', 'Swift Deluxe', '1075432268', '0x4019CB4C', 4, 'no'),
('swinger', '500482303', 'sportsclassiccar', '0', 'Ocelot', '48.641323', '0.39', 'Swinger', '500482303', '0x1DD4C0FF', 2, 'no'),
('t20', '1663218586', 'supersportcar', '0', 'Progen', '49.67927', '0.365', 'T20', '1663218586', '0x6322B39A', 2, 'no'),
('taco', '1951180813', 'commercial', '0', 'null', '28.696072', '0.11', 'Taco Van', '1951180813', '0x744CA80D', 1, 'no'),
('tahoma', '3833117047', 'musclecar', '0', 'Declasse', '43.554863', '0.298', 'Tahoma Coupe', '-461850249', '0xE478B977', 2, 'no'),
('tailgater', '3286105550', 'sedan', '0', 'Obey', '38.42887', '0.2', 'Tailgater', '-1008861746', '0xC3DDFDCE', 4, 'no'),
('tailgater2', '3050505892', 'sedan', '0', 'Obey', '46.56702', '0.2775', 'Tailgater S', '-1244461404', '0xB5D306A4', 4, 'no'),
('taipan', '3160260734', 'supersportcar', '0', 'Cheval', '53.86687', '0.357', 'Taipan', '-1134706562', '0xBC5DC07E', 2, 'no'),
('tampa', '972671128', 'musclecar', '0', 'Declasse', '42.30679', '0.27', 'Tampa', '972671128', '0x39F9C898', 2, 'no'),
('tampa2', '3223586949', 'sportscar', '0', 'Declasse', '45.80494', '0.33', 'Drift Tampa', '-1071380347', '0xC0240885', 2, 'no'),
('tampa3', '3084515313', 'musclecar', '0', 'Declasse', '45.80494', '0.33', 'Weaponized Tampa', '-1210451983', '0xB7D9F7F1', 2, 'no'),
('tanker', '3564062519', 'supersportcar', '0', 'null', '-0.5051028', '0', 'Trailer', '-730904777', '0xD46F4737', 2, 'no'),
('tanker2', '1956216962', 'supersportcar', '0', 'null', '-0.5051028', '0', 'null', '1956216962', '0x74998082', 2, 'no'),
('tankercar', '586013744', 'train', '0', 'null', '26.66667', '0.2', 'Freight Train', '586013744', '0x22EDDC30', 4, 'no'),
('taxi', '3338918751', 'commercial', '0', 'null', '42.72843', '0.2', 'Taxi', '-956048545', '0xC703DB5F', 4, 'no'),
('technical', '2198148358', 'offroadcar', '0', 'Karin', '38.42887', '0.2', 'Technical', '-2096818938', '0x83051506', 3, 'no'),
('technical2', '1180875963', 'offroadcar', '0', 'Karin', '39.61388', '0.25', 'Technical Aqua', '1180875963', '0x4662BCBB', 3, 'no'),
('technical3', '1356124575', 'offroadcar', '0', 'Karin', '38.42887', '0.2', 'Technical Custom', '1356124575', '0x50D4D19F', 3, 'no'),
('tempesta', '272929391', 'supersportcar', '0', 'Pegassi', '49.13776', '0.36', 'Tempesta', '272929391', '0x1044926F', 2, 'no'),
('tenf', '3400983137', 'coupe', '0', 'Obey', '49.141285', '0.3545', '10F', '-893984159', '0xCAB6E261', 2, 'no'),
('tenf2', '274946574', 'coupe', '0', 'Obey', '49.46413', '0.356', '10F Widebody', '274946574', '0x10635A0E', 2, 'no'),
('terbyte', '2306538597', 'fibvan', '0', 'Benefactor', '30.718546', '0.16', 'Terrorbyte', '-1988428699', '0x897AFC65', 2, 'no'),
('tezeract', '1031562256', 'ecar', '0', 'Pegassi', '45.85145', '0.1375', 'Tezeract', '1031562256', '0x3D7C6410', 2, 'no'),
('thrax', '1044193113', 'supersportcar', '0', 'Truffade', '50.19611', '0.34', 'Thrax', '1044193113', '0x3E3D1F59', 2, 'no'),
('thrust', '1836027715', 'motorcycle', '0', 'Dinka', '49.320465', '0.265', 'Thrust', '1836027715', '0x6D6F8F43', 2, 'no'),
('thruster', '1489874736', 'military', '0', 'Mammoth', '57.539886', '6.86', 'Thruster', '1489874736', '0x58CDAF30', 1, 'no'),
('tigon', '2936769864', 'supersportcar', '0', 'Lampadati', '51.71791', '0.3795', 'Tigon', '-1358197432', '0xAF0B8D48', 2, 'no'),
('tiptruck', '48339065', 'commercial', '0', 'Brute', '28.696072', '0.11', 'Tipper', '48339065', '0x2E19879', 2, 'no'),
('tiptruck2', '3347205726', 'commercial', '0', 'null', '28.696072', '0.11', 'Tipper', '-947761570', '0xC7824E5E', 2, 'no'),
('titan', '1981688531', 'military', '0', 'null', '78.205765', '6.076', 'Titan', '1981688531', '0x761E2AD3', 10, 'no'),
('toreador', '1455990255', 'sportsclassiccar', '0', 'Pegassi', '46.997047', '0.3', 'Toreador', '1455990255', '0x56C8A5EF', 4, 'no'),
('torero', '1504306544', 'sportsclassiccar', '0', 'Pegassi', '47.556034', '0.3', 'Torero', '1504306544', '0x59A9E570', 2, 'no'),
('torero2', '4129572538', 'sportsclassiccar', '0', 'Pegassi', '52.417717', '0.385', 'Torero XO', '-165394758', '0xF62446BA', 2, 'no'),
('tornado', '464687292', 'sportsclassiccar', '0', 'Declasse', '36.947178', '0.16', 'Tornado', '464687292', '0x1BB290BC', 4, 'no'),
('tornado2', '1531094468', 'sportsclassiccar', '0', 'Declasse', '36.947178', '0.16', 'Tornado', '1531094468', '0x5B42A5C4', 4, 'no'),
('tornado3', '1762279763', 'sportsclassiccar', '0', 'Declasse', '36.947178', '0.16', 'Tornado', '1762279763', '0x690A4153', 4, 'no'),
('tornado4', '2261744861', 'sportsclassiccar', '0', 'Declasse', '36.947178', '0.16', 'Tornado', '-2033222435', '0x86CF7CDD', 4, 'no'),
('tornado5', '2497353967', 'sportsclassiccar', '0', 'Declasse', '37.09929', '0.161', 'Tornado Custom', '-1797613329', '0x94DA98EF', 4, 'no'),
('tornado6', '2736567667', 'sportsclassiccar', '0', 'Declasse', '40.12054', '0.28', 'Tornado Rat Rod', '-1558399629', '0xA31CB573', 4, 'no'),
('toro', '1070967343', 'boat', '0', 'Lampadati', '44.333336', '18', 'Toro', '1070967343', '0x3FD5AA2F', 4, 'no'),
('toro2', '908897389', 'boat', '0', 'Lampadati', '44.333336', '18', 'Toro', '908897389', '0x362CAC6D', 4, 'no'),
('toros', '3126015148', 'suv', '0', 'Pegassi', '48.862133', '0.32', 'Toros', '-1168952148', '0xBA5334AC', 4, 'no'),
('tourbus', '1941029835', 'commercial', '0', 'null', '25.580894', '0.12', 'Tourbus', '1941029835', '0x73B1C3CB', 10, 'no'),
('towtruck', '2971866336', 'commercial', '0', 'null', '35.000004', '0.15', 'Towtruck', '-1323100960', '0xB12314E0', 2, 'no'),
('towtruck2', '3852654278', 'commercial', '0', 'null', '33.333336', '0.15', 'Towtruck', '-442313018', '0xE5A2D6C6', 2, 'no'),
('tr2', '2078290630', 'supersportcar', '0', 'null', '-0.5051028', '0', 'Trailer', '2078290630', '0x7BE032C6', 2, 'no'),
('tr3', '1784254509', 'supersportcar', '0', 'null', '-0.5051028', '0', 'Trailer', '1784254509', '0x6A59902D', 2, 'no'),
('tr4', '2091594960', 'supersportcar', '0', 'null', '-0.5051028', '0', 'Trailer', '2091594960', '0x7CAB34D0', 2, 'no'),
('tractor', '1641462412', 'commercial', '0', 'null', '13.333335', '0.08', 'Tractor', '1641462412', '0x61D6BA8C', 1, 'no'),
('tractor2', '2218488798', 'commercial', '0', 'Stanley', '14.45938', '0.15', 'Fieldmaster', '-2076478498', '0x843B73DE', 1, 'no'),
('tractor3', '1445631933', 'commercial', '0', 'Stanley', '14.45938', '0.15', 'Fieldmaster', '1445631933', '0x562A97BD', 1, 'no'),
('trailerlarge', '1502869817', 'supersportcar', '0', 'null', '-0.5131671', '0', 'Mobile Operations Center', '1502869817', '0x5993F939', 3, 'no'),
('trailerlogs', '2016027501', 'supersportcar', '0', 'null', '-0.5051028', '0', 'Trailer', '2016027501', '0x782A236D', 2, 'no'),
('trailers', '3417488910', 'supersportcar', '0', 'null', '-0.5131671', '0', 'Trailer', '-877478386', '0xCBB2BE0E', 2, 'no'),
('trailers2', '2715434129', 'supersportcar', '0', 'null', '-0.5131671', '0', 'Trailer', '-1579533167', '0xA1DA3C91', 2, 'no'),
('trailers3', '2236089197', 'supersportcar', '0', 'null', '-0.5131671', '0', 'Trailer', '-2058878099', '0x8548036D', 2, 'no'),
('trailers4', '3194418602', 'supersportcar', '0', 'null', '-0.5131671', '0', 'Trailer', '-1100548694', '0xBE66F5AA', 2, 'no'),
('trailersmall', '712162987', 'supersportcar', '0', 'null', '-0.5131671', '0', 'Trailer', '712162987', '0x2A72BEAB', 2, 'no'),
('trailersmall2', '2413121211', 'military', '0', 'Vom Feuer', '-0.5131671', '0', 'Anti-Aircraft Trailer', '-1881846085', '0x8FD54EBB', 1, 'no'),
('trash', '1917016601', 'commercial', '0', 'null', '36.52235', '0.13', 'Trashmaster', '1917016601', '0x72435A19', 4, 'no'),
('trash2', '3039269212', 'commercial', '0', 'null', '36.52235', '0.13', 'Trashmaster', '-1255698084', '0xB527915C', 4, 'no'),
('trflat', '2942498482', 'supersportcar', '0', 'null', '-0.5131671', '0', 'Trailer', '-1352468814', '0xAF62F6B2', 2, 'no'),
('tribike', '1127861609', 'cycle', '0', 'null', '21', '0.135', 'Whippet Race Bike', '1127861609', '0x4339CD69', 1, 'no'),
('tribike2', '3061159916', 'cycle', '0', 'null', '21', '0.135', 'Endurex Race Bike', '-1233807380', '0xB67597EC', 1, 'no'),
('tribike3', '3894672200', 'cycle', '0', 'null', '21', '0.135', 'Tri-Cycles Race Bike', '-400295096', '0xE823FB48', 1, 'no'),
('trophytruck', '101905590', 'offroadcar', '0', 'Vapid', '43.366653', '0.339', 'Trophy Truck', '101905590', '0x612F4B6', 2, 'no'),
('trophytruck2', '3631668194', 'offroadcar', '0', 'Vapid', '43.366653', '0.339', 'Desert Raid', '-663299102', '0xD876DBE2', 2, 'no'),
('tropic', '290013743', 'boat', '0', 'Shitzu', '38.333336', '13', 'Tropic', '290013743', '0x1149422F', 4, 'no'),
('tropic2', '1448677353', 'boat', '0', 'Shitzu', '38.333336', '13', 'Tropic', '1448677353', '0x56590FE9', 4, 'no'),
('tropos', '1887331236', 'sportscar', '0', 'Lampadati', '42.93287', '0.225', 'Tropos Rallye', '1887331236', '0x707E63A4', 2, 'no'),
('tug', '2194326579', 'boat', '0', 'null', '6', '2.2', 'Tug', '-2100640717', '0x82CAC433', 1, 'no'),
('tula', '1043222410', 'military', '0', 'Mammoth', '69.36756', '4.9', 'Tula', '1043222410', '0x3E2E4F8A', 5, 'no'),
('tulip', '1456744817', 'musclecar', '0', 'Declasse', '48.862133', '0.32', 'Tulip', '1456744817', '0x56D42971', 4, 'no'),
('tulip2', '268758436', 'musclecar', '0', 'Declasse', '45.026245', '0.3153', 'Tulip M-100', '268758436', '0x1004EDA4', 4, 'no'),
('turismo2', '3312836369', 'sportsclassiccar', '0', 'Grotti', '49.537365', '0.34', 'Turismo Classic', '-982130927', '0xC575DF11', 2, 'no'),
('turismor', '408192225', 'supersportcar', '0', 'Grotti', '51.091084', '0.353', 'Turismo R', '408192225', '0x185484E1', 2, 'no'),
('tvtrailer', '2524324030', 'supersportcar', '0', 'null', '-0.5131671', '0', 'Trailer', '-1770643266', '0x967620BE', 2, 'no'),
('tyrant', '3918533058', 'supersportcar', '0', 'Overflod', '53.14107', '0.34', 'Tyrant', '-376434238', '0xE99011C2', 2, 'no'),
('tyrus', '2067820283', 'supersportcar', '0', 'Progen', '50.397236', '0.371', 'Tyrus', '2067820283', '0x7B406EFB', 2, 'no'),
('utillitruck', '516990260', 'commercial', '0', 'null', '30.462002', '0.12', 'Utility Truck', '516990260', '0x1ED0A534', 6, 'no'),
('utillitruck2', '887537515', 'commercial', '0', 'null', '30.462002', '0.12', 'Utility Truck', '887537515', '0x34E6BF6B', 6, 'no'),
('utillitruck3', '2132890591', 'commercial', '0', 'null', '30.462002', '0.12', 'Utility Truck', '2132890591', '0x7F2153DF', 4, 'no'),
('vacca', '338562499', 'supersportcar', '0', 'Pegassi', '50.311733', '0.3', 'Vacca', '338562499', '0x142E0DC3', 2, 'no'),
('vader', '4154065143', 'motorcycle', '0', 'Shitzu', '42.30679', '0.27', 'Vader', '-140902153', '0xF79A00F7', 2, 'no'),
('vagner', '1939284556', 'supersportcar', '0', 'Dewbauchee', '52.640453', '0.37', 'Vagner', '1939284556', '0x7397224C', 2, 'no'),
('vagrant', '740289177', 'beachbuggy', '0', 'Maxwell', '46.815132', '0.3325', 'Vagrant', '740289177', '0x2C1FEA99', 2, 'no'),
('valkyrie', '2694714877', 'military', '0', 'null', '54.726162', '5.194', 'Valkyrie', '-1600252419', '0xA09E15FD', 4, 'no'),
('valkyrie2', '1543134283', 'military', '0', 'null', '54.726162', '5.194', 'Valkyrie MOD.0', '1543134283', '0x5BFA5C4B', 4, 'no'),
('vamos', '4245851645', 'musclecar', '0', 'Declasse', '45.80494', '0.33', 'Vamos', '-49115651', '0xFD128DFD', 2, 'no'),
('vectre', '2754593701', 'sportscar', '0', 'Emperor', '44.123577', '0.324', 'Vectre', '-1540373595', '0xA42FC3A5', 4, 'no'),
('velum', '2621610858', 'plans', '0', 'null', '74.636246', '5.586', 'Velum', '-1673356438', '0x9C429B6A', 4, 'no'),
('velum2', '1077420264', 'plans', '0', 'null', '74.636246', '5.586', 'Velum 5-Seater', '1077420264', '0x403820E8', 5, 'no'),
('verlierer2', '1102544804', 'sportscar', '0', 'Bravado', '50.000004', '0.335', 'Verlierer', '1102544804', '0x41B77FA4', 2, 'no'),
('verus', '298565713', 'atv', '0', 'Dinka', '26.634169', '0.135', 'Verus', '298565713', '0x11CBC051', 2, 'no'),
('vestra', '1341619767', 'plans', '0', 'Buckingham', '97.13975', '9.016001', 'Vestra', '1341619767', '0x4FF77E37', 2, 'no'),
('vetir', '2014313426', 'military', '0', 'null', '23.367584', '0.11', 'Vetir', '2014313426', '0x780FFBD2', 10, 'no'),
('veto', '3437611258', 'sportscar', '0', 'Dinka', '25.000002', '0.45', 'Veto Classic', '-857356038', '0xCCE5C8FA', 1, 'no'),
('veto2', '2802050217', 'sportscar', '0', 'Dinka', '26.66667', '0.4275', 'Veto Modern', '-1492917079', '0xA703E4A9', 1, 'no'),
('vigero', '3469130167', 'musclecar', '0', 'Declasse', '46.666668', '0.29', 'Vigero', '-825837129', '0xCEC6B9B7', 2, 'no'),
('vigero2', '2536587772', 'musclecar', '0', 'Declasse', '49.20095', '0.3645', 'Vigero ZX', '-1758379524', '0x973141FC', 4, 'no'),
('vigilante', '3052358707', 'supersportcar', '0', 'null', '52.242855', '0.375', 'Vigilante', '-1242608589', '0xB5EF4C33', 2, 'no'),
('vindicator', '2941886209', 'motorcycle', '0', 'Dinka', '49.33334', '0.263', 'Vindicator', '-1353081087', '0xAF599F01', 2, 'no'),
('virgo', '3796912450', 'musclecar', '0', 'Albany', '36.346527', '0.21', 'Virgo', '-498054846', '0xE2504942', 4, 'no'),
('virgo2', '3395457658', 'musclecar', '0', 'Dundreary', '36.452126', '0.211', 'Virgo Classic Custom', '-899509638', '0xCA62927A', 2, 'no'),
('virgo3', '16646064', 'musclecar', '0', 'Dundreary', '36.346527', '0.21', 'Virgo Classic', '16646064', '0xFDFFB0', 2, 'no'),
('virtue', '669204833', 'ecar', '0', 'Ocelot', '45.395844', '0.3418', 'Virtue', '669204833', '0x27E34161', 2, 'no'),
('viseris', '3903371924', 'sportsclassiccar', '0', 'Lampadati', '47.124184', '0.3', 'Viseris', '-391595372', '0xE8A8BA94', 2, 'no'),
('visione', '3296789504', 'supersportcar', '0', 'Grotti', '51.375553', '0.355', 'Visione', '-998177792', '0xC4810400', 2, 'no'),
('volatol', '447548909', 'military', '0', 'null', '80.27928', '6.37', 'Volatol', '447548909', '0x1AAD0DED', 4, 'no'),
('volatus', '2449479409', 'helicopter', '0', 'Buckingham', '59.240414', '5.3900003', 'Volatus', '-1845487887', '0x920016F1', 4, 'no'),
('voltic', '2672523198', 'ecar', '0', 'Coil', '35.963905', '0.18', 'Voltic', '-1622444098', '0x9F4B77BE', 2, 'no'),
('voltic2', '989294410', 'ecar', '0', 'Coil', '35.963905', '0.18', 'Rocket Voltic', '989294410', '0x3AF76F4A', 2, 'no'),
('voodoo', '2006667053', 'musclecar', '0', 'Declasse', '39.911697', '0.18', 'Voodoo Custom', '2006667053', '0x779B4F2D', 2, 'no'),
('voodoo2', '523724515', 'musclecar', '0', 'Declasse', '38.44937', '0.17', 'Voodoo', '523724515', '0x1F3766E3', 2, 'no'),
('vortex', '3685342204', 'motorcycle', '0', 'Pegassi', '48.839092', '0.4025', 'Vortex', '-609625092', '0xDBA9DBFC', 2, 'no'),
('vstr', '1456336509', 'sportscar', '0', 'Albany', '48.018177', '0.379', 'V-STR', '1456336509', '0x56CDEE7D', 4, 'no'),
('warrener', '579912970', 'sedan', '0', 'Vulcar', '40.249367', '0.265', 'Warrener HKR', '579912970', '0x2290C50A', 2, 'no'),
('washington', '1777363799', 'sedan', '0', 'Albany', '42.72843', '0.2', 'Washington', '1777363799', '0x69F06B57', 4, 'no'),
('wastelander', '2382949506', 'commercial', '0', 'MTL', '40.758568', '0.33', 'Wastelander', '-1912017790', '0x8E08EC82', 6, 'no'),
('weevil', '1644055914', 'compact', '0', 'BF', '32.723717', '0.188', 'Weevil', '1644055914', '0x61FE4D6A', 2, 'no'),
('weevil2', '3300595976', 'compact', '0', 'BF', '50.545513', '0.3375', 'Weevil Custom', '-994371320', '0xC4BB1908', 2, 'no'),
('windsor', '1581459400', 'coupe', '0', 'Enus', '47.999146', '0.28', 'Windsor', '1581459400', '0x5E4327C8', 4, 'no'),
('windsor2', '2364918497', 'coupe', '0', 'Enus', '47.89471', '0.279', 'Windsor Drop', '-1930048799', '0x8CF5CAE1', 4, 'no'),
('winky', '4084658662', 'military', '0', 'Vapid', '30.000004', '0.15', 'Winky', '-210308634', '0xF376F1E6', 3, 'no'),
('wolfsbane', '3676349299', 'chopper', '0', 'Western', '36.872166', '0.215', 'Wolfsbane', '-618617997', '0xDB20A373', 2, 'no'),
('xa21', '917809321', 'supersportcar', '0', 'Ocelot', '49.59993', '0.364', 'XA-21', '917809321', '0x36B4A8A9', 2, 'no'),
('xls', '1203490606', 'suv', '0', 'Benefactor', '44.000004', '0.26', 'XLS', '1203490606', '0x47BBCF2E', 4, 'no'),
('xls2', '3862958888', 'suv', '0', 'Benefactor', '44.000004', '0.265', 'XLS (Armored)', '-432008408', '0xE6401328', 4, 'no'),
('yosemite', '1871995513', 'musclecar', '0', 'Declasse', '41.636257', '0.285', 'Yosemite', '1871995513', '0x6F946279', 2, 'no'),
('yosemite2', '1693751655', 'musclecar', '0', 'Declasse', '44.337334', '0.395', 'Drift Yosemite', '1693751655', '0x64F49967', 2, 'no'),
('yosemite3', '67753863', 'musclecar', '0', 'Declasse', '40.400143', '0.275', 'Yosemite Rancher', '67753863', '0x409D787', 2, 'no'),
('youga', '65402552', 'van', '0', 'Bravado', '33.80885', '0.14', 'Youga', '65402552', '0x3E5F6B8', 4, 'no'),
('youga2', '1026149675', 'van', '0', 'Bravado', '33.80885', '0.14', 'Youga Classic', '1026149675', '0x3D29CD2B', 4, 'no'),
('youga3', '1802742206', 'van', '0', 'Bravado', '38.44937', '0.17', 'Youga Classic 4x4', '1802742206', '0x6B73A9BE', 4, 'no'),
('youga4', '1486521356', 'van', '0', 'Vapid', '36.641663', '0.158', 'Youga Custom', '1486521356', '0x589A840C', 4, 'no'),
('z190', '838982985', 'sportsclassiccar', '0', 'Karin', '43.94242', '0.27', '190z', '838982985', '0x3201DD49', 2, 'no'),
('zeno', '655665811', 'supersportcar', '0', 'Overflod', '53.644936', '0.388', 'Zeno', '655665811', '0x2714AA93', 2, 'no'),
('zentorno', '2891838741', 'supersportcar', '0', 'Pegassi', '49.65903', '0.354', 'Zentorno', '-1403128555', '0xAC5DF515', 2, 'no'),
('zhaba', '1284356689', 'offroadcar', '0', 'RUNE', '30.30405', '0.18', 'Zhaba', '1284356689', '0x4C8DBA51', 4, 'no'),
('zion', '3172678083', 'coupe', '0', 'Ubermacht', '46.875053', '0.22', 'Zion', '-1122289213', '0xBD1B39C3', 2, 'no'),
('zion2', '3101863448', 'coupe', '0', 'Ubermacht', '46.875053', '0.22', 'Zion Cabrio', '-1193103848', '0xB8E2AE18', 2, 'no'),
('zion3', '1862507111', 'sportsclassiccar', '0', 'Ubermacht', '44.585766', '0.305', 'Zion Classic', '1862507111', '0x6F039A67', 2, 'no'),
('zombiea', '3285698347', 'chopper', '0', 'Western', '44.605324', '0.29', 'Zombie Bobber', '-1009268949', '0xC3D7C72B', 2, 'no'),
('zombieb', '3724934023', 'chopper', '0', 'Western', '44.605324', '0.29', 'Zombie Chopper', '-570033273', '0xDE05FB87', 2, 'no'),
('zorrusso', '3612858749', 'supersportcar', '0', 'Pegassi', '50.895752', '0.3745', 'Zorrusso', '-682108547', '0xD757D97D', 2, 'no'),
('zr350', '2436313176', 'sportscar', '0', 'Annis', '48.093773', '0.33', 'ZR350', '-1858654120', '0x91373058', 2, 'no'),
('zr380', '540101442', 'sportscar', '0', 'Annis', '50.39005', '0.35', 'Apocalypse ZR380', '540101442', '0x20314B42', 2, 'no'),
('zr3802', '3188846534', 'sportscar', '0', 'Annis', '50.39005', '0.35', 'Future Shock ZR380', '-1106120762', '0xBE11EFC6', 2, 'no'),
('zr3803', '2816263004', 'sportscar', '0', 'Annis', '50.39005', '0.35', 'Nightmare ZR380', '-1478704292', '0xA7DCC35C', 2, 'no'),
('ztype', '758895617', 'sportsclassiccar', '0', 'Truffade', '51.333336', '0.3', 'Z-Type', '758895617', '0x2D3BD401', 2, 'no');