0% found this document useful (0 votes)
15 views

Message 2

This document contains SQL queries and data for setting up and populating tables in a database. Specifically, it creates two tables - one called "addon_account_data" for storing account data, and another called "advanced_vehicles" for storing vehicle customization data for users. It then populates these tables with sample data.

Uploaded by

peroperomat
Copyright
© © All Rights Reserved
Available Formats
Download as TXT, PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
15 views

Message 2

This document contains SQL queries and data for setting up and populating tables in a database. Specifically, it creates two tables - one called "addon_account_data" for storing account data, and another called "advanced_vehicles" for storing vehicle customization data for users. It then populates these tables with sample data.

Uploaded by

peroperomat
Copyright
© © All Rights Reserved
Available Formats
Download as TXT, PDF, TXT or read online on Scribd
You are on page 1/ 180

-- --------------------------------------------------------

-- Host: 127.0.0.1
-- Server version: 10.4.28-MariaDB - mariadb.org binary distribution
-- Server OS: Win64
-- HeidiSQL Version: 12.4.0.6659
-- --------------------------------------------------------

/*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */;


/*!40101 SET NAMES utf8 */;
/*!50503 SET NAMES utf8mb4 */;
/*!40103 SET @OLD_TIME_ZONE=@@TIME_ZONE */;
/*!40103 SET TIME_ZONE='+00:00' */;
/*!40014 SET @OLD_FOREIGN_KEY_CHECKS=@@FOREIGN_KEY_CHECKS, FOREIGN_KEY_CHECKS=0 */;
/*!40101 SET @OLD_SQL_MODE=@@SQL_MODE, SQL_MODE='NO_AUTO_VALUE_ON_ZERO' */;
/*!40111 SET @OLD_SQL_NOTES=@@SQL_NOTES, SQL_NOTES=0 */;

-- Dumping structure for table sokac.addon_account_data


CREATE TABLE IF NOT EXISTS `addon_account_data` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`account_name` varchar(100) DEFAULT NULL,
`money` int(11) NOT NULL,
`owner` varchar(60) DEFAULT NULL,
PRIMARY KEY (`id`),
UNIQUE KEY `index_addon_account_data_account_name_owner`
(`account_name`,`owner`),
KEY `index_addon_account_data_account_name` (`account_name`)
) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8mb4
COLLATE=utf8mb4_unicode_ci;

-- Dumping data for table sokac.addon_account_data: ~0 rows (approximately)


INSERT INTO `addon_account_data` (`id`, `account_name`, `money`, `owner`) VALUES
(1, 'gsf', 1000, 'gsf');

-- Dumping structure for table sokac.advanced_vehicles


CREATE TABLE IF NOT EXISTS `advanced_vehicles` (
`vehicle` varchar(50) NOT NULL,
`user_id` varchar(55) NOT NULL,
`plate` varchar(50) NOT NULL,
`nitroAmount` int(11) NOT NULL DEFAULT 0,
`nitroRecharges` int(11) NOT NULL DEFAULT 0,
`km` double DEFAULT 0,
`vehicle_handling` longtext DEFAULT NULL,
PRIMARY KEY (`vehicle`,`user_id`,`plate`) USING BTREE
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci;

-- Dumping data for table sokac.advanced_vehicles: ~692 rows (approximately)


INSERT INTO `advanced_vehicles` (`vehicle`, `user_id`, `plate`, `nitroAmount`,
`nitroRecharges`, `km`, `vehicle_handling`) VALUES
('19raptor', '393c03be23b4c8ef608725ca85ed3dd765bfd79f', 'MA82456 ', 0, 0,
1.2, '[]'),
('19raptor', '77013525ca29b50b787b9731ae6319a445b3c7de', 'QD06102 ', 0, 0,
49.44, '[]'),
('19raptor', 'bc8f2cd26ad41e23f49e40a7322031d24e0032d5', 'AJ03218 ', 0, 0,
10.82, '[]'),
('19raptor', 'e16b4b30a90d01ec881f6d3e43cb03a9502fc047', 'SU44171 ', 0, 0,
405.16, '{"fBrakeForce":1.75613909442122}'),
('a45 amg', '0f28a0a47448e0e1788dc8ee3b97145e437c8b28', 'UC66716 ', 0, 0,
3.26, '[]'),
('a45 amg', '219a18f10b3f40125ae9cffe81da85da9068d663', 'VD97997 ', 0, 0,
0.04, '[]'),
('a45 amg', '4c29c63603a7f8f6e193a159c34f3f75dc9d7d2a', 'BI71614 ', 0, 0,
13.4, '[]'),
('a45 amg', '76554dee8c336acc1034d1d160e542c392c7629b', 'XO95001 ', 0, 0,
86.8, '{"fBrakeForce":1.88492755922352}'),
('a45 amg', '97a20faf812ba61bedc30d1c3c7a6409ee1f2143', 'XS52076 ', 0, 0,
152.86, '[]'),
('a45 amg', '97e81d50767ceecefacf9cf564c4c9e5a8f64249', 'BI71614 ', 0, 0,
0.1, '[]'),
('a45 amg', '991d33fe466049bc3feaca2ce11e278eee9cc158', 'BT98041 ', 0, 0,
223.3, '{"fBrakeForce":1.88524562379183}'),
('a45 amg', 'bc8f2cd26ad41e23f49e40a7322031d24e0032d5', 'XN60884 ', 0, 0,
0.04, '[]'),
('a45 amg', 'bc8f2cd26ad41e23f49e40a7322031d24e0032d5', 'ZH12433 ', 0, 0,
400.16, '{"fBrakeForce":1.69814732212828}'),
('a45 amg', 'dab159f59e2ff82e160e6fb2cfcd5aee77d64269', 'WZ02533 ', 0, 0,
92.82, '{"fBrakeForce":1.88549077255755}'),
('a45 amg', 'e16b4b30a90d01ec881f6d3e43cb03a9502fc047', 'WJ73745 ', 0, 0,
138.18, '{"fBrakeForce":1.8732788972999}'),
('a45 amg', 'e5159a161aed704abec2642f02d31360cce59de9', 'CS11455 ', 0, 0,
79.46, '{"fBrakeForce":1.88576397554743}'),
('a45 amg', 'e9861acab3e2df23331e5f643c826095a453a208', 'OS12635 ', 0, 0,
107.96, '{"fBrakeForce":1.87922958390133}'),
('a45 amg', 'fcb50c8a5455b348a01957de9c7053dc177a37d4', 'AL08796 ', 0, 0,
81.32, '{"fBrakeForce":1.8853360351448}'),
('akuma', '13c708c568da89c64db3c45293ebe384ab1a29a9', 'OS67197 ', 0, 0, 201,
'{"fBrakeForce":1.18263482398097}'),
('akuma', '1f55d6bc52f5dd3823c9fceb2c8c203f34e4c3a8', 'UD82201 ', 0, 0, 0.5,
'[]'),
('akuma', '44a6729737d5e482538d28da3f6fe892f640418a', 'GP36471 ', 0, 0, 0,
NULL),
('akuma', '7835f6f2e51976bbc7df5dc4cb5404e5a8e6252c', 'UE14854 ', 0, 0, 0,
NULL),
('akuma', 'b17056aa1e536ceb3774862a0373282724fd1d26', 'UE14854 ', 0, 0,
61.48,
'{"fBrakeForce":3.19360319867066,"fDriveBiasFront":0.5,"fInitialDriveForce":0.80000
000596044,"fSuspensionRaise":-0.04999999999999}'),
('akuma', 'cd8a7de220a0e0e88e414ee792ccca099f2d5a18', 'NT65393 ', 0, 0,
14.82, '{"fInitialDriveForce":0.80000000596044,"fDriveBiasFront":0.5}'),
('akuma', 'cf44ea49b3a479a2f312d33d9be61e03aefc10c7', 'WM28917 ', 0, 0,
210.58, '{"fBrakeForce":1.16215053460869}'),
('akuma', 'd8c1bf71904b0ca2928696426c23c9f4f2f7bae8', 'MJ54346 ', 0, 0, 0,
NULL),
('akuma', 'e9861acab3e2df23331e5f643c826095a453a208', 'VT57039 ', 0, 0,
62.28,
'{"fInitialDriveForce":0.80000000596044,"fDriveBiasFront":0.5,"fBrakeForce":1.19347
389280459}'),
('amggt63s', 'e9861acab3e2df23331e5f643c826095a453a208', 'GT23191 ', 0, 0,
478.86, '{"fBrakeForce":1.00395761624187}'),
('amggt63s', 'e9861acab3e2df23331e5f643c826095a453a208', 'GT23991 ', 0, 0,
0.06, '[]'),
('amggtr', '47a5dc370f88ecd366f35c32ca9eaecf4c3556eb', 'CCSX1241', 0, 0, 0,
'[]'),
('asbo', '05cb272b9c2cb6604e710c77927b6603aa9902b6', 'EZ01888 ', 0, 0, 43.9,
'{"fSuspensionRaise":-
0.09999999999999,"fBrakeForce":0.54857019097018,"fDriveBiasFront":0.5}'),
('asbo', '1b90ac573a51fe40c589470f714ee46aa9bf38ac', 'HT38615 ', 0, 0, 2.94,
'[]'),
('asbo', '1b90ac573a51fe40c589470f714ee46aa9bf38ac', 'UM25123 ', 0, 0, 0,
NULL),
('asbo', '393c03be23b4c8ef608725ca85ed3dd765bfd79f', 'MV76526 ', 0, 0, 2.26,
'[]'),
('asbo', '48b1c563a62401192c3c7af66cec624419c86244', 'TE31435 ', 0, 0, 2.38,
'[]'),
('asbo', '4c38d1e32547e87c9bd613db4f012fef4fff4d41', 'DU29415 ', 0, 0, 7.34,
'[]'),
('asbo', '62ff010d885043319d6a972406e1ac0ed09d1d8a', 'WF01230 ', 0, 0, 0,
NULL),
('asbo', '76554dee8c336acc1034d1d160e542c392c7629b', 'SI81386 ', 0, 0, 7.64,
'[]'),
('asbo', '92a2114da14eaef98fbd0924659b32446f52f442', 'ST61063 ', 0, 0, 1.42,
'[]'),
('asbo', '9e03691dd9b1d15b38b89c8822b4001b99b823c6', 'OY29348 ', 0, 0, 4.3,
'[]'),
('asbo', 'f06a91b30c73b3b8a7437025bade15cf64c8eb1d', 'MV76526 ', 0, 0, 3.14,
'[]'),
('audi r8 hyc', '81dcab0d4764e7c3af12d6d73fed5ac75e342bbe', 'JLNN2391', 0, 0,
25.28, '{"fBrakeForce":1.94935527677447}'),
('baller4', '76554dee8c336acc1034d1d160e542c392c7629b', 'XP49446 ', 0, 0,
71.66,
'{"fBrakeForce":2.56733222093891,"fInitialDriveForce":0.67000001072881,"fDriveBiasF
ront":0.5}'),
('baller4', '97e81d50767ceecefacf9cf564c4c9e5a8f64249', 'MN54793 ', 0, 0,
2.56, '[]'),
('baller4', 'f1d996c4661c386cbb7e3427adb3455c0b99324c', 'MN54793 ', 0, 0,
5.24, '[]'),
('bf400', '00d5e713074cb745e627aa72687bad04f4873d71', 'SO76758 ', 0, 0,
683.48, '{"fBrakeForce":1.05812721056295}'),
('bf400', '0aa24eb580499b978904943cf2b16e3743d36609', 'SM96050 ', 0, 0, 2.28,
'[]'),
('bf400', '0f28a0a47448e0e1788dc8ee3b97145e437c8b28', 'QP30159 ', 0, 0,
555.58, '{"fInitialDriveForce":0.68999999165532,"fBrakeForce":0.71818450380484}'),
('bf400', '13c708c568da89c64db3c45293ebe384ab1a29a9', 'CI63356 ', 0, 0,
159.9, '{"fBrakeForce":1.09130393757151}'),
('bf400', '18643d6ca0953b729e87d1a5fa7ad4164f04db70', 'DV96488 ', 0, 0,
166.78, '{"fBrakeForce":1.07362259140916}'),
('bf400', '219a18f10b3f40125ae9cffe81da85da9068d663', 'LY05545 ', 0, 0,
531.28, '{"fBrakeForce":1.04146009349754}'),
('bf400', '29033b2c451e439adbe16c75705fd87765860805', 'PU40028 ', 0, 0, 0,
NULL),
('bf400', '3648f3b13d9a6155c296479deeb76b4f8797e5cc', 'WT69570 ', 300, 5,
100.02,
'{"fTractionCurveMax":2.5500000953674,"fBrakeForce":3.08902787636538,"fInitialDrive
Force":0.68999999165532,"fDriveBiasFront":0.5}'),
('bf400', '387eeb02da852043979b8f4b764e0258d9b7c65e', 'HA94507 ', 0, 0,
329.54, '{"fBrakeForce":1.0158773550766}'),
('bf400', '393c03be23b4c8ef608725ca85ed3dd765bfd79f', 'CQ03579 ', 0, 0,
12.24, '[]'),
('bf400', '393c03be23b4c8ef608725ca85ed3dd765bfd79f', 'IR97567 ', 0, 0,
29.26, '{"fBrakeForce":1.09837953767357}'),
('bf400', '39bd366006fb20e7cb760c7a9015919551844d0e', 'UM12039 ', 0, 0,
127.7, '[]'),
('bf400', '39bd366006fb20e7cb760c7a9015919551844d0e', 'ZX94775 ', 0, 0, 1.92,
'{"fInitialDriveForce":0.68999999165532,"fDriveBiasFront":0.5,"fBrakeForce":3.10000
002384185}'),
('bf400', '3eba878208dad45a62df988de2b51ca2e125548b', 'VG43050 ', 0, 0,
22.22, '{"fBrakeForce":1.09958523371433}'),
('bf400', '45c44055b0916aba597aabd0b2c23a23eaa4b891', 'DQ76223 ', 0, 0, 0,
NULL),
('bf400', '47a5dc370f88ecd366f35c32ca9eaecf4c3556eb', 'ZN04068 ', 0, 0,
568.42, '{"fBrakeForce":1.00371955191536}'),
('bf400', '5583bf5a9ea8334b9c42ebdd341730f8285b2f13', 'OP62552 ', 0, 0, 0,
NULL),
('bf400', '569a7327149920164b5cb624d6cc773879be719f', 'WM88748 ', 0, 0,
113.8, '{"fBrakeForce":1.09892592402516}'),
('bf400', '648e5d3fe0a5801071c0a5425cc55077b29be4d2', 'GP24687 ', 0, 0, 14.5,
'[]'),
('bf400', '66d7ade6ce761687b2adf9ec3eacbac96b427dda', 'PV54455 ', 0, 0,
239.38, '{"fBrakeForce":1.09229265835638}'),
('bf400', '6716db871dd7018c11c4ad3606be8e4edf2ec87d', 'FK55909 ', 300, 5,
248.44, '{"fInitialDriveForce":0.68999999165532,"fBrakeForce":3.06831158065627}'),
('bf400', '6a809612394ef5e0b726c5532afc2d906bc52653', 'WB14223 ', 0, 0,
46.34, '{"fBrakeForce":1.09611880460863}'),
('bf400', '6c5c779370d42c7e1427c0c9f8bc78b11a0b3218', 'WJ26658 ', 0, 0,
51.16, '{"fBrakeForce":1.09549152624403}'),
('bf400', '71626fca0e7a0725e80135818af5121792769f63', 'OY05021 ', 0, 0,
38.74, '{"fBrakeForce":1.09738012132113}'),
('bf400', '76554dee8c336acc1034d1d160e542c392c7629b', 'OT35465 ', 0, 0, 0,
NULL),
('bf400', '76554dee8c336acc1034d1d160e542c392c7629b', 'OU76257 ', 0, 0, 24.8,
'{"fInitialDriveForce":0.68999999165532}'),
('bf400', '7835f6f2e51976bbc7df5dc4cb5404e5a8e6252c', 'YM12642 ', 0, 0,
130.58,
'{"fSuspensionRaise":0.19999999999998,"fBrakeForce":3.081773039419,"fInitialDriveFo
rce":0.68999999165532,"fDriveBiasFront":0.5}'),
('bf400', '7ff8310705ae582612aebac198039d544cbaa9ec', 'UC23352 ', 0, 0,
72.98, '{"fBrakeForce":1.09260386675004}'),
('bf400', '84e64c73edfc774fe279305ddc3ba2312fc3a9c7', 'MI95194 ', 0, 0, 0,
NULL),
('bf400', '8ce77d3e4b3a811ccf7d48ec2c1caebe64c97f42', 'MR32199 ', 0, 0,
242.46, '{"fBrakeForce":1.07039626995348}'),
('bf400', '8e416878df455f4bb13032736760caec65b3a298', 'CI86666 ', 0, 0,
413.14, '{"fBrakeForce":1.02408958121269}'),
('bf400', '947a7ed13339dbaa527ec7d72a6762bca4ead943', 'OM24999 ', 0, 0, 1.08,
'[]'),
('bf400', '97e81d50767ceecefacf9cf564c4c9e5a8f64249', 'RQ34574 ', 0, 0,
219.78,
'{"fInitialDriveForce":0.68999999165532,"fDriveBiasFront":0.5,"fBrakeForce":1.07141
396508485}'),
('bf400', '991d33fe466049bc3feaca2ce11e278eee9cc158', 'YM96879 ', 0, 0,
317.92,
'{"fInitialDriveForce":0.68999999165532,"fDriveBiasFront":0.5,"fBrakeForce":1.06896
289257821}'),
('bf400', '9e03691dd9b1d15b38b89c8822b4001b99b823c6', 'VV89958 ', 0, 0, 75.2,
'{"fBrakeForce":1.09231126471692}'),
('bf400', 'bc8f2cd26ad41e23f49e40a7322031d24e0032d5', 'BO15518 ', 0, 0, 17.5,
'{"fBrakeForce":1.09993342116473}'),
('bf400', 'bd03f5eb3362f4dd061109ea4ad30a3a2948845e', 'CV94393 ', 300, 5, 0,
NULL),
('bf400', 'bfee4d51338a8c4a462305c79525a3fa1ebebbba', 'PV58747 ', 0, 0,
71.44, '{"fBrakeForce":1.09278523341141}'),
('bf400', 'bfee4d51338a8c4a462305c79525a3fa1ebebbba', 'YE62477 ', 0, 0, 0,
NULL),
('bf400', 'c7bd5dc4c9220066249e82144bfa3861d0a26172', 'DU89420 ', 0, 0,
71.82, '{"fBrakeForce":1.09936748287277}'),
('bf400', 'cd8a7de220a0e0e88e414ee792ccca099f2d5a18', 'PP65425 ', 0, 0, 0,
'[]'),
('bf400', 'd0e8bf5e2cb5667e17a5a44b4bdf50873b3bb490', 'WB14223 ', 0, 0,
967.2, '{"fBrakeForce":1.01956536449126}'),
('bf400', 'd6bdf9fd27ac5a5520b06aaab67ebe29b50ebc02', 'IK26107 ', 0, 0,
11.36, '[]'),
('bf400', 'd6bdf9fd27ac5a5520b06aaab67ebe29b50ebc02', 'KD78170 ', 0, 0,
33.62, '{"fInitialDriveForce":0.68999999165532}'),
('bf400', 'd8bf5d163f6267cd856eddd792a9eafcdf141afe', 'MI95194 ', 0, 0, 0,
NULL),
('bf400', 'dab159f59e2ff82e160e6fb2cfcd5aee77d64269', 'OT35465 ', 0, 0,
321.22, '{"fBrakeForce":1.01858767721673}'),
('bf400', 'decb8a9b3abc021d0bbe869d9e28180b2856517e', 'UM12039 ', 0, 0,
392.54, '[]'),
('bf400', 'decb8a9b3abc021d0bbe869d9e28180b2856517e', 'WM88748 ', 0, 0, 0,
NULL),
('bf400', 'decb8a9b3abc021d0bbe869d9e28180b2856517e', 'ZX94775 ', 0, 0,
265.16, '{"fBrakeForce":1.04111158362996}'),
('bf400', 'e16b4b30a90d01ec881f6d3e43cb03a9502fc047', 'XN35068 ', 0, 0,
38.78, '{"fInitialDriveForce":1.08999999761579}'),
('bf400', 'e4c30e18e7bf5db7d83aab97433d0da1e42e1f89', 'JX77700 ', 0, 0,
327.94, '{"fBrakeForce":1.01491970989423}'),
('bf400', 'e5159a161aed704abec2642f02d31360cce59de9', 'WJ26658 ', 0, 0,
305.44,
'{"fInitialDriveForce":0.68999999165532,"fDriveBiasFront":0.5,"fBrakeForce":1.02598
021285221}'),
('bf400', 'e7c62bd222b7fc392afa3534680340dee238bb8c', 'TH35702 ', 0, 0,
140.96,
'{"fInitialDriveForce":0.68999999165532,"fDriveBiasFront":0.5,"fBrakeForce":3.09886
415875999}'),
('bf400', 'f4e46330330e6323fdfbed936194b41d8a879422', 'CS74549 ', 0, 0,
638.44, '{"fInitialDriveForce":0.68999999165532,"fBrakeForce":1.00678607829454}'),
('bf400', 'f5ce80aabffa17b3dad593f6c29befc25e94f116', 'IK26107 ', 0, 0, 76,
'{"fBrakeForce":1.09255310903777}'),
('bf400', 'f6e266c049295520b274fbf393b51ccc73bffa25', 'GB85322 ', 300, 5,
664.34, '{"fBrakeForce":0.7789857846962}'),
('blazer', '0f28a0a47448e0e1788dc8ee3b97145e437c8b28', 'JA38317 ', 0, 0,
1.18, '{"fBrakeForce":3.0,"fDriveBiasFront":0.5}'),
('blazer', '9e03691dd9b1d15b38b89c8822b4001b99b823c6', 'CN48142 ', 0, 0,
52.22, '{"fBrakeForce":0.9957716445531}'),
('blazer', 'c7bd58d09ab614bc6958ccb894c6c02cc2a4fc9b', 'FO69961 ', 0, 0,
18.16, '{"fBrakeForce":0.99985557042051}'),
('blazer', 'decb8a9b3abc021d0bbe869d9e28180b2856517e', 'EW84867 ', 0, 0,
64.18,
'{"fInitialDriveForce":0.6000000029802,"fDriveBiasFront":0.5,"fBrakeForce":3.0}'),
('blista', 'bb61bb3fdca74daa8bb954b9115123a53592d84a', 'PR25897 ', 0, 0,
7.08, '[]'),
('bra800', '81dcab0d4764e7c3af12d6d73fed5ac75e342bbe', 'JJ44309 ', 0, 0,
63.62, '{"fBrakeForce":1.88937205588023}'),
('brioso', '13c708c568da89c64db3c45293ebe384ab1a29a9', 'IO29584 ', 0, 0,
55.62, '{"fBrakeForce":1.19443774309333}'),
('brioso', '14b5f4d340f944b6ed6ed84cad25c59787639a8e', 'MR91279 ', 172, 2, 0,
NULL),
('brioso', '1b90ac573a51fe40c589470f714ee46aa9bf38ac', 'NR50433 ', 0, 0, 0,
NULL),
('brioso', '1f55d6bc52f5dd3823c9fceb2c8c203f34e4c3a8', 'KK54193 ', 0, 0,
56.08, '{"fBrakeForce":1.19504404872198}'),
('brioso', '26c353d8b45d8d30a3f4b27b5160d2293e4021fa', 'MJ50155 ', 0, 0, 0,
NULL),
('brioso', '2faf3f94a0892e008b5dabad14027426049947c8', 'NR50433 ', 0, 0, 0,
NULL),
('brioso', '35b6b5cd96a69eb54a33e6bb13dc23e53ee4ff20', 'II51958 ', 300, 5, 0,
NULL),
('brioso', '39bd366006fb20e7cb760c7a9015919551844d0e', 'IO29584 ', 0, 0,
53.78, '{"fInitialDriveForce":0.65999999046323,"fSuspensionRaise":-
0.09999999999999,"fBrakeForce":3.19834208179107,"fTractionCurveMax":2.6999999523162
6,"fDriveBiasFront":0.5}'),
('brioso', '47a5dc370f88ecd366f35c32ca9eaecf4c3556eb', 'MR52549 ', 0, 0, 0,
'[]'),
('brioso', '49cde124e1d91c8a8c52a4b6266146a142eedcc8', 'MJ50155 ', 0, 0, 0,
NULL),
('brioso', '569a7327149920164b5cb624d6cc773879be719f', 'DY81062 ', 0, 0, 0,
NULL),
('brioso', '66d7ade6ce761687b2adf9ec3eacbac96b427dda', 'TT64771 ', 0, 0,
0.34, '[]'),
('brioso', '6716db871dd7018c11c4ad3606be8e4edf2ec87d', 'DY81062 ', 0, 0,
7.24, '[]'),
('brioso', '6716db871dd7018c11c4ad3606be8e4edf2ec87d', 'MR52549 ', 0, 0,
23.22, '{"fBrakeForce":1.19841574232769}'),
('brioso', '7ef1341188087c335e6baee2f41ec00d8919e6c5', 'OP30672 ', 0, 0, 0,
'[]'),
('brioso', '8ce77d3e4b3a811ccf7d48ec2c1caebe64c97f42', 'TB35281 ', 0, 0,
0.02, '[]'),
('brioso', '947a7ed13339dbaa527ec7d72a6762bca4ead943', 'DY81062 ', 0, 0,
8.36, '[]'),
('brioso', '97e81d50767ceecefacf9cf564c4c9e5a8f64249', 'KP82851 ', 0, 0,
1.72, '[]'),
('brioso', 'a6ca5475d196f1c95ea097e3e6d1c506d3ba7411', 'HE60696 ', 0, 0, 0,
NULL),
('brioso', 'b17056aa1e536ceb3774862a0373282724fd1d26', 'TO05977 ', 0, 0,
0.24, '[]'),
('brioso', 'bfee4d51338a8c4a462305c79525a3fa1ebebbba', 'MJ50155 ', 0, 0, 0,
NULL),
('brioso', 'd9ed6920dd9be2b38f86b8e5491f69c9fed0f646', 'GW61306 ', 0, 0, 0,
NULL),
('brioso', 'dab159f59e2ff82e160e6fb2cfcd5aee77d64269', 'QH90614 ', 0, 0, 0,
'[]'),
('brioso', 'e10f50cb8c453b115cfb00a16a2a1b85ff8d4d4f', 'BP38009 ', 0, 0,
17.66, '{"fBrakeForce":1.19987023695922}'),
('brioso', 'e16b4b30a90d01ec881f6d3e43cb03a9502fc047', 'MJ50155 ', 0, 0, 0,
NULL),
('brioso', 'e5159a161aed704abec2642f02d31360cce59de9', 'TO05977 ', 30, 4, 0,
NULL),
('brioso', 'f175c09e5a939ba394d774c645ddc115feb63668', 'ED33548 ', 135, 5,
8.82, '[]'),
('brioso', 'f1d996c4661c386cbb7e3427adb3455c0b99324c', 'KP82851 ', 0, 0,
81.5,
'{"fTractionCurveMax":3.09999995231623,"fInitialDriveForce":0.65999999046323,"fBrak
eForce":1.19053515314332,"fSuspensionRaise":-0.04999999999999}'),
('brioso', 'f6e266c049295520b274fbf393b51ccc73bffa25', 'NP18914 ', 207, 3, 0,
'[]'),
('c63s', '1b90ac573a51fe40c589470f714ee46aa9bf38ac', 'SG74312 ', 0, 0,
197.32, '{"fBrakeForce":1.84055797833987,"fInitialDriveForce":1.14005001783368}'),
('c63s', '1b90ac573a51fe40c589470f714ee46aa9bf38ac', 'TT35211 ', 0, 0, 0.02,
'[]'),
('calico', '76554dee8c336acc1034d1d160e542c392c7629b', 'FL24965 ', 0, 0, 0,
NULL),
('calico', 'f175c09e5a939ba394d774c645ddc115feb63668', 'FL24965 ', 0, 0,
38.4, '{"fBrakeForce":0.82288141199632}'),
('carbon', '81dcab0d4764e7c3af12d6d73fed5ac75e342bbe', 'XF44027 ', 0, 0,
60.74, '{"fBrakeForce":1.29886400014019}'),
('carbon', 'bc8f2cd26ad41e23f49e40a7322031d24e0032d5', 'LZ48768 ', 0, 0,
8.26, '[]'),
('carbon', 'd0e8bf5e2cb5667e17a5a44b4bdf50873b3bb490', 'SH71140 ', 0, 0,
565.38, '{"fBrakeForce":3.29999995231628,"fInitialDriveForce":0.73000001311299}'),
('carboniz', '387eeb02da852043979b8f4b764e0258d9b7c65e', 'JN20149 ', 0, 0, 0,
'[]'),
('carboniz', 'bc8f2cd26ad41e23f49e40a7322031d24e0032d5', 'ET76581 ', 0, 0, 0,
'[]'),
('chimera', 'e16b4b30a90d01ec881f6d3e43cb03a9502fc047', 'HZ91477 ', 0, 0,
37.7, '{"fBrakeForce":0.99868887336878}'),
('cliffhanger', '39bd366006fb20e7cb760c7a9015919551844d0e', 'OM57185 ', 0, 0,
632.7,
'{"fInitialDriveForce":0.7179999887943,"fDriveBiasFront":0.5,"fBrakeForce":3.028224
80984962}'),
('cliffhanger', '6c5c779370d42c7e1427c0c9f8bc78b11a0b3218', 'DV23410 ', 0, 0,
272.58,
'{"fInitialDriveForce":0.7179999887943,"fDriveBiasFront":0.5,"fBrakeForce":3.072265
62213645}'),
('cliffhanger', '76554dee8c336acc1034d1d160e542c392c7629b', 'PM35452 ', 0, 0,
56.14,
'{"fBrakeForce":0.5656276922092,"fInitialDriveForce":0.7179999887943,"fDriveBiasFro
nt":0.5}'),
('cliffhanger', 'b17056aa1e536ceb3774862a0373282724fd1d26', 'UU51196 ', 0, 0,
7.9, '[]'),
('clr g770', 'c7e23aee843b5309cf2efd92543eda214c157cb8', 'QEWQ4111', 0, 0, 0,
NULL),
('club', '0f28a0a47448e0e1788dc8ee3b97145e437c8b28', 'MO03777 ', 0, 0, 0,
'[]'),
('club', '13c708c568da89c64db3c45293ebe384ab1a29a9', 'FX70867 ', 282, 5,
43.36, '{"fBrakeForce":0.51996587811221}'),
('club', '15d7e7f81ac6353f33ae9dd5b1f0567730f80a68', 'VO41297 ', 0, 0, 0,
NULL),
('club', '1fd0bf859e1aa2249c5aa1847435edfe4dbb5a55', 'BA60588 ', 300, 5, 0,
NULL),
('club', '38c8c3adf79e5dd5cc4bb97c33244e9ef3b4373b', 'VO41297 ', 0, 0, 39.16,
'[]'),
('club', '393c03be23b4c8ef608725ca85ed3dd765bfd79f', 'NF93968 ', 0, 0, 9.28,
'[]'),
('club', '53b302ab1295c78f0e3db71e23c64cd96113bf69', 'XO92976 ', 0, 0, 0,
'[]'),
('club', '58fb34fa12ba1a8e4042cf1d487c99d4b2e6ea16', 'MV12667 ', 0, 0, 0,
NULL),
('club', '6716db871dd7018c11c4ad3606be8e4edf2ec87d', 'DI95995 ', 0, 0,
299.78, '{"fBrakeForce":0.48832897980408}'),
('club', '71626fca0e7a0725e80135818af5121792769f63', 'DG07056 ', 0, 0,
465.86,
'{"fInitialDriveForce":0.61750000119207,"fDriveBiasFront":0.5,"fBrakeForce":2.48627
877045129}'),
('club', '7835f6f2e51976bbc7df5dc4cb5404e5a8e6252c', 'TH32905 ', 0, 0, 0.02,
'[]'),
('club', '8ab36514056d5a13885585bba6506e75dc93d5c6', 'HN11748 ', 0, 0, 0.14,
'[]'),
('club', '9e6fa0deb37615ffaee33542dcd71055a34e7b09', 'KA48359 ', 0, 0, 0,
NULL),
('club', 'a89983a6cc980bf4b0a3dbbc2d7973', 'OZD1722 ', 0, 0, 0.45, '[]'),
('club', 'a89983a6cc980bf4b0a3dbbc2d7973', 'WRK6665 ', 0, 0, 0.83, '[]'),
('club', 'ae1452ba4e9986f5ec67dd18714d811b0f48eb22', 'ED10341 ', 300, 4,
30.52, '{"fBrakeForce":2.51999998092651,"fDriveBiasFront":0.5}'),
('club', 'bfee4d51338a8c4a462305c79525a3fa1ebebbba', 'UP97835 ', 0, 0, 0,
NULL),
('club', 'dab159f59e2ff82e160e6fb2cfcd5aee77d64269', 'RO60024 ', 0, 0, 0.84,
'[]'),
('club', 'dea904980debae7e5d9fcaab8010823dfe7e8bad', 'QG17928 ', 0, 0, 0,
NULL),
('club', 'decb8a9b3abc021d0bbe869d9e28180b2856517e', 'BM36365 ', 0, 0, 0,
NULL),
('club', 'decb8a9b3abc021d0bbe869d9e28180b2856517e', 'RU24323 ', 0, 0, 0.02,
'[]'),
('club', 'e10f50cb8c453b115cfb00a16a2a1b85ff8d4d4f', 'IJ00519 ', 0, 0, 4.82,
'[]'),
('club', 'e66820e595e7ddad3387f6643b69d7d0a0715855', 'UY87804 ', 278, 5, 0,
NULL),
('club', 'f06a91b30c73b3b8a7437025bade15cf64c8eb1d', 'UP97835 ', 0, 0, 0,
NULL),
('club', 'f283025322f011e174604d28e111cb79640f952b', 'EP33850 ', 0, 0, 0,
NULL),
('club', 'f97e1684099f5c38b41f20dcd5439fae270ab7ba', 'ZC90893 ', 277, 2, 0,
NULL),
('comet6', '97e81d50767ceecefacf9cf564c4c9e5a8f64249', 'PE93562 ', 0, 0,
1.74, '[]'),
('comet6', 'f1d996c4661c386cbb7e3427adb3455c0b99324c', 'PE93562 ', 0, 0,
15.62, '[]'),
('coquette4', '393c03be23b4c8ef608725ca85ed3dd765bfd79f', 'HG82580 ', 0, 0,
397.04,
'{"fDriveBiasFront":0.5,"fBrakeForce":3.22576588486014,"fInitialDriveForce":0.71999
999284741,"fSuspensionRaise":-0.04999999999999}'),
('coquette4', '4c29c63603a7f8f6e193a159c34f3f75dc9d7d2a', 'VQ12116 ', 0, 0,
22.06,
'{"fInitialDriveForce":0.71999999284741,"fBrakeForce":3.28151440433378,"fDriveBiasF
ront":0.5}'),
('coquette4', '76554dee8c336acc1034d1d160e542c392c7629b', 'VQ12116 ', 0, 0,
19.1,
'{"fInitialDriveForce":0.71999999284741,"fBrakeForce":3.28136923669185,"fDriveBiasF
ront":0.5}'),
('coquette4', '81dcab0d4764e7c3af12d6d73fed5ac75e342bbe', 'GA06809 ', 0, 0,
11.3, '[]'),
('coquette4', '97e81d50767ceecefacf9cf564c4c9e5a8f64249', 'FD86688 ', 0, 0,
0.9, '[]'),
('coquette4', '97e81d50767ceecefacf9cf564c4c9e5a8f64249', 'VQ12116 ', 0, 0,
0.02, '[]'),
('coquette4', 'bb61bb3fdca74daa8bb954b9115123a53592d84a', 'PR25897 ', 100, 3,
41.82, '{"fBrakeForce":1.29612469402207}'),
('coquette4', 'bc8f2cd26ad41e23f49e40a7322031d24e0032d5', 'XN60884 ', 0, 0,
1.64, '[]'),
('coquette4', 'e16b4b30a90d01ec881f6d3e43cb03a9502fc047', 'WI28001 ', 0, 0,
0, NULL),
('coquette4', 'f1d996c4661c386cbb7e3427adb3455c0b99324c', 'FD86688 ', 0, 0,
2.9, '[]'),
('coquette4', 'f5ce80aabffa17b3dad593f6c29befc25e94f116', 'VI87756 ', 0, 0,
90.26, '{"fInitialDriveForce":0.71999999284741,"fSuspensionRaise":-
0.09999999999999,"fBrakeForce":3.29557479519558,"fDriveBiasFront":0.5}'),
('drina', 'c7e23aee843b5309cf2efd92543eda214c157cb8', 'SDFV4111', 0, 0, 0,
NULL),
('dubsta', '39bd366006fb20e7cb760c7a9015919551844d0e', 'QZ15401 ', 300, 3,
12.34, '[]'),
('dubsta', '62b5d5e10cb07a5e3f398f69977f47881cbae657', 'GC14421 ', 120, 5, 0,
NULL),
('dubsta', '6c5c779370d42c7e1427c0c9f8bc78b11a0b3218', 'EQ11523 ', 0, 0,
32.82, '{"fBrakeForce":0.79847872399853}'),
('dubsta', 'f2a4614f062f04966f151610a0cfe692652b3bee', 'KW78255 ', 0, 0, 4.5,
'[]'),
('e63b', '97e81d50767ceecefacf9cf564c4c9e5a8f64249', 'BVGF5197', 0, 0,
249.54, '{"fBrakeForce":1.82599414159585}'),
('elegy', '05cb272b9c2cb6604e710c77927b6603aa9902b6', 'GR87547 ', 0, 0, 0,
'[]'),
('elegy', '15d7e7f81ac6353f33ae9dd5b1f0567730f80a68', 'NL78424 ', 10, 5, 0,
NULL),
('elegy', '1f55d6bc52f5dd3823c9fceb2c8c203f34e4c3a8', 'GR87547 ', 0, 0,
112.84, '{"fBrakeForce":3.39999997615814,"fInitialDriveForce":0.68999999165532}'),
('elegy', '219a18f10b3f40125ae9cffe81da85da9068d663', 'MV45432 ', 255, 5,
132.4,
'{"fInitialDriveForce":0.68999999165532,"fDriveBiasFront":0.5,"fBrakeForce":3.39999
997615814}'),
('elegy', '26c353d8b45d8d30a3f4b27b5160d2293e4021fa', 'NL78424 ', 0, 0, 0,
NULL),
('elegy', '569a7327149920164b5cb624d6cc773879be719f', 'KU30034 ', 0, 0,
293.22, '{"fInitialDriveForce":0.68999999165532,"fDriveBiasFront":0.5}'),
('elegy', 'dabb1d61f7916b2c9eb1e6f405020fb365879090', 'PA33439 ', 0, 0, 0.76,
'[]'),
('elegy', 'f8b3f1538b2bf33df0b177b538e985c8e2475f2f', 'TK46520 ', 0, 0, 0,
NULL),
('euros', 'fcb50c8a5455b348a01957de9c7053dc177a37d4', 'OU09885 ', 0, 0,
21.78, '{"fBrakeForce":0.89948410406815}'),
('everon', '219a18f10b3f40125ae9cffe81da85da9068d663', 'NX15917 ', 0, 0,
225.02, '{"fBrakeForce":2.88188465030432,"fInitialDriveForce":0.60499999821183}'),
('everon', '569a7327149920164b5cb624d6cc773879be719f', 'TL01808 ', 0, 0,
83.92, '{"fBrakeForce":0.8941804468575}'),
('everon', '8e416878df455f4bb13032736760caec65b3a298', 'FO43615 ', 0, 0,
59.56, '{"fBrakeForce":0.89628781984717}'),
('everon', '991d33fe466049bc3feaca2ce11e278eee9cc158', 'HU90876 ', 0, 0,
7.02, '[]'),
('everon', 'bc8f2cd26ad41e23f49e40a7322031d24e0032d5', 'AV56027 ', 0, 0, 0,
NULL),
('everon', 'e16b4b30a90d01ec881f6d3e43cb03a9502fc047', 'FO43615 ', 0, 0, 0,
NULL),
('everon', 'e5159a161aed704abec2642f02d31360cce59de9', 'TL01808 ', 53, 1, 0,
NULL),
('everon', 'e9861acab3e2df23331e5f643c826095a453a208', 'ZL09894 ', 0, 0,
1.68, '[]'),
('focus', '1b90ac573a51fe40c589470f714ee46aa9bf38ac', 'HG19315 ', 0, 0, 4.16,
'[]'),
('focus', '393c03be23b4c8ef608725ca85ed3dd765bfd79f', 'GI42942 ', 0, 0,
62.12, '{"fBrakeForce":1.8897176090908}'),
('focus', 'e16b4b30a90d01ec881f6d3e43cb03a9502fc047', 'DL43261 ', 0, 0, 8.12,
'[]'),
('focus', 'e5159a161aed704abec2642f02d31360cce59de9', 'BZ79036 ', 0, 0,
35.34, '{"fBrakeForce":1.89581197421664}'),
('focus', 'f06a91b30c73b3b8a7437025bade15cf64c8eb1d', 'LL70375 ', 0, 0, 0.98,
'[]'),
('freecrawler', '66d7ade6ce761687b2adf9ec3eacbac96b427dda', 'JH47827 ', 0, 0,
280.24,
'{"fInitialDriveForce":0.58000000715253,"fDriveBiasFront":0.5,"fBrakeForce":2.77188
382757719}'),
('futo2', '569a7327149920164b5cb624d6cc773879be719f', 'DU85760 ', 299, 5, 0,
NULL),
('futo2', '8598edb09b8ce2bd01296b92685c368056833a5c', 'DU85760 ', 0, 0, 0,
'[]'),
('futo2', 'bfee4d51338a8c4a462305c79525a3fa1ebebbba', 'MV82179 ', 0, 0,
37.44, '{"fBrakeForce":2.49353617416648}'),
('futo2', 'd8bf5d163f6267cd856eddd792a9eafcdf141afe', 'BS59392 ', 0, 0,
104.68, '{"fBrakeForce":2.47386328861311}'),
('futo2', 'decb8a9b3abc021d0bbe869d9e28180b2856517e', 'DU85760 ', 175, 0, 0,
NULL),
('futo2', 'e5159a161aed704abec2642f02d31360cce59de9', 'BS59392 ', 0, 0,
13.82, '[]'),
('futo2', 'f06a91b30c73b3b8a7437025bade15cf64c8eb1d', 'DU85760 ', 0, 0, 0,
NULL),
('g63amg6x6', '00d5e713074cb745e627aa72687bad04f4873d71', 'KDLC3341', 0, 0,
214.34, '{"fBrakeForce":0.59138993529502}'),
('g63amg6x6', '6c5c779370d42c7e1427c0c9f8bc78b11a0b3218', 'KBVB2141', 0, 0,
271.3, '{"fBrakeForce":0.57405408442742}'),
('g63amg6x6', 'd6bdf9fd27ac5a5520b06aaab67ebe29b50ebc02', 'OY98145 ', 0, 0,
0.88, '[]'),
('gle53', '0aa24eb580499b978904943cf2b16e3743d36609', 'WI35184 ', 0, 0, 3.86,
'[]'),
('gle53', '0f28a0a47448e0e1788dc8ee3b97145e437c8b28', 'GF67938 ', 0, 0,
11.64, '[]'),
('gle53', '393c03be23b4c8ef608725ca85ed3dd765bfd79f', 'WI35184 ', 0, 0,
44.68, '{"fBrakeForce":1.94351442394809}'),
('gle53', '76554dee8c336acc1034d1d160e542c392c7629b', 'XJ91302 ', 0, 0, 3.98,
'[]'),
('gle53', '87065b24c806d79a7a8b7d20e14185de8a0c19ec', 'VG18945 ', 0, 0, 2.34,
'[]'),
('gle53', '97e81d50767ceecefacf9cf564c4c9e5a8f64249', 'SH29787 ', 0, 0, 1.76,
'[]'),
('gle53', 'bc8f2cd26ad41e23f49e40a7322031d24e0032d5', 'TR64688 ', 0, 0,
129.02, '[]'),
('gle53', 'e7c62bd222b7fc392afa3534680340dee238bb8c', 'LF84785 ', 0, 0, 2.78,
'[]'),
('gle53', 'f1d996c4661c386cbb7e3427adb3455c0b99324c', 'NA85072 ', 0, 0, 1.62,
'[]'),
('gle53', 'f1d996c4661c386cbb7e3427adb3455c0b99324c', 'SH29787 ', 0, 0,
87.06, '{"fBrakeForce":1.93359660786996}'),
('jester4', '0078bff1d9a990d2a3bd7559a2bf7e0b942dc0f1', 'HE65835 ', 273, 2,
30.06,
'{"fInitialDriveForce":0.72910001277921,"fDriveBiasFront":0.5,"fBrakeForce":2.85000
002384185}'),
('jester4', '00d5e713074cb745e627aa72687bad04f4873d71', 'ZL65720 ', 182, 3,
0, NULL),
('jester4', '018de90794920a3e0aa7b8169801dafe8e2961a4', 'OZ82171 ', 226, 1,
0, NULL),
('jester4', '047f8e33bf7ef9ba4989ef1901a8befedcae3476', 'KY15199 ', 0, 0,
13.6, '[]'),
('jester4', '04836e60133cd549193ed90c38e3de03da99f3c1', 'FB66265 ', 0, 0, 0,
NULL),
('jester4', '04eac28d5df31fe7d50a1c08f7a684ccbe9c486d', 'OZ72342 ', 0, 0,
13.28, '[]'),
('jester4', '052423a05c42e8200b85466e765dfdc1b4b3ef1c', 'BM56639 ', 0, 0, 0,
NULL),
('jester4', '053cba8a30462648a0e286ff63d74c7e116ad820', 'HL51888 ', 0, 0,
29.3, '{"fBrakeForce":0.84875311566578}'),
('jester4', '05cb272b9c2cb6604e710c77927b6603aa9902b6', 'VM75659 ', 0, 0,
2.32, '[]'),
('jester4', '061d57776f1f860e65c338405c60c744cf0f5fab', 'KK77310 ', 102, 5,
0, NULL),
('jester4', '06d7201fb0e6cf01ece48863b7e560865dd9bc61', 'CZ90753 ', 300, 5,
7.36,
'{"fDriveBiasFront":0.5,"fInitialDriveForce":0.72910001277921,"fBrakeForce":2.85000
002384185}'),
('jester4', '0814ded30d03cb4cf9ac99a26ff48ea06148a618', 'KS74777 ', 0, 0,
4.44, '[]'),
('jester4', '09617bdb0337a709860acc13b58c584a6e509de4', 'MB91278 ', 300, 5,
0, NULL),
('jester4', '09691fc7b7adb58e2043d6f21c73de14484e98b7', 'SS63776 ', 0, 0, 0,
NULL),
('jester4', '0a01001f1e5085124853f381bc0d89ea62d7ffc4', 'ZN53125 ', 300, 1,
46.2,
'{"fInitialDriveForce":0.72910001277921,"fBrakeForce":2.84702289372861,"fDriveBiasF
ront":0.5}'),
('jester4', '0aa24eb580499b978904943cf2b16e3743d36609', 'RL39175 ', 0, 0,
9.54, '[]'),
('jester4', '0f0e1bd51497862441d9556025a9c12f73a1d1c0', 'EL82527 ', 0, 0, 0,
NULL),
('jester4', '0f28a0a47448e0e1788dc8ee3b97145e437c8b28', 'KW46825 ', 0, 0,
0.66, '[]'),
('jester4', '0f9a500c8fb07a6ec4ab6dbd40eb1c64cef65340', 'AP88099 ', 0, 0, 0,
NULL),
('jester4', '10902f7c3b1642efa3ea4d0ea74235b1feed93fc', 'CT83370 ', 0, 0, 0,
NULL),
('jester4', '11715e5299d3f43ae41980d7101413dcfb6bee0c', 'TC16377 ', 0, 0, 0,
NULL),
('jester4', '134141a235893a1546c38cf25058d5be68278f25', 'VT41499 ', 0, 0, 0,
'[]'),
('jester4', '13c708c568da89c64db3c45293ebe384ab1a29a9', 'BF42057 ', 300, 3,
0, NULL),
('jester4', '13c708c568da89c64db3c45293ebe384ab1a29a9', 'GA16007 ', 0, 0,
0.38, '[]'),
('jester4', '14b5f4d340f944b6ed6ed84cad25c59787639a8e', 'TN19676 ', 0, 0, 0,
NULL),
('jester4', '14e3b739f6787bcb1cfc5f84df7105743fff970c', 'RJ86823 ', 300, 5,
0, NULL),
('jester4', '15d7e7f81ac6353f33ae9dd5b1f0567730f80a68', 'FG17156 ', 0, 0, 0,
NULL),
('jester4', '15fae4a5fc6f14f44004f7b9bc61c510f1cc6a7f', 'LB83490 ', 214, 0,
0, NULL),
('jester4', '16373412a9d5336f21a2d3f1e07c1275b7a9ec80', 'RE66208 ', 190, 5,
22.18,
'{"fInitialDriveForce":0.72910001277921,"fDriveBiasFront":0.5,"fBrakeForce":2.84946
618554903}'),
('jester4', '171aac385a1caad4e6124ecbe70e4124695f6387', 'YI58092 ', 119, 5,
0, NULL),
('jester4', '171aac385a1caad4e6124ecbe70e4124695f6387', 'YZ30396 ', 108, 5,
0, NULL),
('jester4', '176a7fad7c0d1d32acdd26f9178f643d88bb4580', 'II01803 ', 233, 2,
0, NULL),
('jester4', '17813bd9afc6436b42325d0430f6c7483a4c6051', 'KJ14669 ', 0, 0, 4,
'[]'),
('jester4', '18643d6ca0953b729e87d1a5fa7ad4164f04db70', 'LC58208 ', 0, 0, 0,
NULL),
('jester4', '1907389f349f5952cc7d6098e33bb40fe8e31954', 'WQ31803 ', 0, 0, 0,
NULL),
('jester4', '1984286110e06f59380cb10215dd6f05048d8705', 'TQ80314 ', 0, 0, 0,
NULL),
('jester4', '1a268d1cd9e28fa3cc15c081eacb292f98714b7e', 'LQ98054 ', 0, 0, 0,
NULL),
('jester4', '1a3d550603dd447329f4307b3b1e6dae2231a462', 'AV03021 ', 0, 0,
0.54, '[]'),
('jester4', '1b90ac573a51fe40c589470f714ee46aa9bf38ac', 'EM29027 ', 0, 0, 0,
NULL),
('jester4', '1b90ac573a51fe40c589470f714ee46aa9bf38ac', 'HQ58549 ', 0, 0, 0,
NULL),
('jester4', '1b90ac573a51fe40c589470f714ee46aa9bf38ac', 'IA70708 ', 0, 0, 0,
NULL),
('jester4', '1b90ac573a51fe40c589470f714ee46aa9bf38ac', 'VS23198 ', 0, 0, 0,
NULL),
('jester4', '1ddd8c2e21cee62061c5dac70a195cdb50b1ef27', 'GF09805 ', 0, 0, 0,
NULL),
('jester4', '1ef4b4b66ed61aac879e1a26667eea4f54ada839', 'MA77850 ', 13, 5, 0,
NULL),
('jester4', '1f55d6bc52f5dd3823c9fceb2c8c203f34e4c3a8', 'KK54193 ', 0, 0, 0,
'[]'),
('jester4', '1f55d6bc52f5dd3823c9fceb2c8c203f34e4c3a8', 'UD82201 ', 0, 0,
6.16, '[]'),
('jester4', '1f55d6bc52f5dd3823c9fceb2c8c203f34e4c3a8', 'XV80391 ', 0, 0,
41.5,
'{"fInitialDriveForce":0.72910001277921,"fDriveBiasFront":0.5,"fBrakeForce":2.84944
7486817}'),
('jester4', '1f59278d8820ae806496ca7a1709a37f6551de40', 'UC56066 ', 87, 5, 0,
NULL),
('jester4', '1fd883d834e00aeac2a0275bff75e82cb8d30240', 'QS00331 ', 172, 5,
0, NULL),
('jester4', '208bf64df4c8242627d41bee26e1636ae67ebbeb', 'ET61285 ', 0, 0, 0,
NULL),
('jester4', '219a18f10b3f40125ae9cffe81da85da9068d663', 'DH22739 ', 0, 0,
3.74, '[]'),
('jester4', '219a18f10b3f40125ae9cffe81da85da9068d663', 'XS22070 ', 0, 0, 0,
'[]'),
('jester4', '239f8f654990978baa55254e3ba27dff9abea5ff', 'VY23806 ', 0, 0, 0,
NULL),
('jester4', '23dddedd348168015a5932630d65cf4aa4c97da9', 'FR22442 ', 211, 4,
0, NULL),
('jester4', '25346b00a77f7488176b2e1c949517b1ee5bd5bd', 'BT47734 ', 22, 5, 0,
NULL),
('jester4', '254d668667ddfee654b7d0c807847297695b07c0', 'CH72527 ', 0, 0, 0,
NULL),
('jester4', '28b54b45754f198c118903e4dd2ba98c0ee16228', 'NI27425 ', 0, 0, 0,
NULL),
('jester4', '29033b2c451e439adbe16c75705fd87765860805', 'UO02730 ', 0, 0, 0,
NULL),
('jester4', '29ee2cff2918facefc897feea0f592d0ab80b4fc', 'HG85569 ', 300, 5,
0, NULL),
('jester4', '2b924a0db6e35f0b64500bf2642c0bd6dc1b1c69', 'OG83366 ', 0, 0, 0,
NULL),
('jester4', '2ca7f81cd539af3529d6d6ecbfa50a8612fc1776', 'FY78732 ', 0, 0, 0,
NULL),
('jester4', '2eff9c82e6a541afffbed25c90f3e9445cc64e9d', 'RL38208 ', 0, 0, 0,
NULL),
('jester4', '2faf3f94a0892e008b5dabad14027426049947c8', 'AC88917 ', 0, 0, 13,
'[]'),
('jester4', '303a6fb2fc66d7d969e8dcc94a4c550741dd12b8', 'FV20599 ', 0, 0, 0,
NULL),
('jester4', '30ff86bd3263d650c2eadf72b8787b31703e0c30', 'KC89261 ', 0, 0, 0,
NULL),
('jester4', '310dbbd7185727312c8c8418781693aa258e6fc5', 'DW53860 ', 0, 0, 0,
'[]'),
('jester4', '317a92ba19be15c7f9b5e37cd00eb9a01fe2d5e0', 'OP64817 ', 0, 0, 0,
'[]'),
('jester4', '322afbdb306c6cb050581fb4f8a8b556bdecc521', 'MR98812 ', 193, 4,
0, NULL),
('jester4', '32c8fbda9a0ea9a2be8cb3880e5667bff52c4db4', 'KN84932 ', 300, 5,
3.98,
'{"fInitialDriveForce":0.72910001277921,"fDriveBiasFront":0.5,"fBrakeForce":2.85000
002384185}'),
('jester4', '3346d9f3b8f07e9fd7e5ac1a764bf748cbdc4ff5', 'NR96303 ', 0, 0, 0,
NULL),
('jester4', '336ecdc5a5dc9dbc5cd13493444e9c3cb030cafa', 'YL59617 ', 0, 0, 0,
NULL),
('jester4', '3379f368257817a2e2c4ce8d29b6b1b31c91e494', 'LX84324 ', 291, 5,
4.16,
'{"fInitialDriveForce":0.72910001277921,"fDriveBiasFront":0.5,"fBrakeForce":2.85000
002384185}'),
('jester4', '3544d2c0d82ebeadff674e8c7d918511b393174d', 'OP28371 ', 163, 0,
29.18, '{"fBrakeForce":0.84875719088769}'),
('jester4', '354c778346c1de6752014489def0dc393233239f', 'DD27787 ', 0, 0,
5.46, '[]'),
('jester4', '35626992f6e73ce676257c26829def4076a4dd44', 'ZE75107 ', 0, 0,
33.14, '{"fBrakeForce":0.84835170023825}'),
('jester4', '35b6b5cd96a69eb54a33e6bb13dc23e53ee4ff20', 'FG66801 ', 0, 0, 0,
NULL),
('jester4', '3648f3b13d9a6155c296479deeb76b4f8797e5cc', 'CU11610 ', 0, 0,
203.36,
'{"fDriveBiasFront":0.5,"fBrakeForce":2.82219480192665,"fTractionCurveMax":2.989999
91416928,"fInitialDriveForce":0.72910001277921,"fSuspensionRaise":-
0.02499999962746}'),
('jester4', '37a0bf189a70deb376b440c68d9ea4b16f3cf89b', 'AI93632 ', 0, 0, 0,
NULL),
('jester4', '37b7515a82e73f35ce6658f35a55eddf7c3aae9e', 'EO89172 ', 0, 0, 0,
NULL),
('jester4', '3843ad81aa7c91a23ec7bd91651dcd00bbf6bbfc', 'FJ34400 ', 0, 0,
0.58, '[]'),
('jester4', '387eeb02da852043979b8f4b764e0258d9b7c65e', 'IG44912 ', 0, 0,
0.44, '[]'),
('jester4', '387eeb02da852043979b8f4b764e0258d9b7c65e', 'QQCG1241', 0, 0,
1.12, '[]'),
('jester4', '38c8c3adf79e5dd5cc4bb97c33244e9ef3b4373b', 'DU10481 ', 0, 0, 0,
NULL),
('jester4', '393c03be23b4c8ef608725ca85ed3dd765bfd79f', 'YT78323 ', 0, 0, 0,
'[]'),
('jester4', '39bd366006fb20e7cb760c7a9015919551844d0e', 'RZ65036 ', 0, 0, 5,
'[]'),
('jester4', '39bd366006fb20e7cb760c7a9015919551844d0e', 'ZA75991 ', 0, 0,
0.02, '[]'),
('jester4', '3a5e60373397b9b8d4d14d5a16ca36ff9a03ba1f', 'DV03121 ', 0, 0,
0.72, '[]'),
('jester4', '3b63cf7de6f0baaf1837d6a57502b8668c21b88a', 'KT91197 ', 0, 0,
15.24, '[]'),
('jester4', '3bf45548d38b2dcf25e0550c4f013e867bf4ac3b', 'GG71793 ', 0, 0,
1.64, '[]'),
('jester4', '3e7cc048645861a5d3b14b5cd6df0ee4f89a4175', 'NU24837 ', 133, 5,
0, NULL),
('jester4', '3eba878208dad45a62df988de2b51ca2e125548b', 'AU39197 ', 126, 3,
0.34, '[]'),
('jester4', '41c5231c8b854ec6a28a41ed4174de6a3fd1063b', 'VJ83236 ', 0, 0, 0,
NULL),
('jester4', '423eaa7554e7fdf4abb9b8b10799168fc6e10c33', 'QT44626 ', 0, 0, 45,
'{"fBrakeForce":0.84753268395139}'),
('jester4', '4347f13f47842ae2ae8831116da5fe1f7003c201', 'PV47670 ', 0, 0, 0,
NULL),
('jester4', '44a6729737d5e482538d28da3f6fe892f640418a', 'HQ53404 ', 0, 0, 0,
NULL),
('jester4', '45b2f7b3564a9a0d5e15cfad4c18d47e16b340e6', 'EW57555 ', 0, 0, 0,
NULL),
('jester4', '45c44055b0916aba597aabd0b2c23a23eaa4b891', 'ED95038 ', 0, 0, 0,
NULL),
('jester4', '46304b713103d53d434fc82dac5d4f6a46c4d3df', 'AW53633 ', 0, 0, 0,
NULL),
('jester4', '47a5dc370f88ecd366f35c32ca9eaecf4c3556eb', 'JY67232 ', 0, 0,
51.44, '{"fBrakeForce":0.84645519696488}'),
('jester4', '48758e9a29786b03c34d03f36e51506551ac7df8', 'YN28052 ', 0, 0, 0,
NULL),
('jester4', '48b1c563a62401192c3c7af66cec624419c86244', 'JQ89087 ', 212, 5,
32.06, '{"fBrakeForce":2.85000002384185,"fInitialDriveForce":0.72910001277921}'),
('jester4', '49cde124e1d91c8a8c52a4b6266146a142eedcc8', 'CI44544 ', 0, 0, 0,
NULL),
('jester4', '4a3e359bbcc6e6844c4605bb14fcc38dc0ddb95c', 'YI58092 ', 0, 0, 0,
NULL),
('jester4', '4aad22b35ecc1eb61c702b3c8a0f46af02dd1be3', 'SF82908 ', 0, 0,
2.74, '[]'),
('jester4', '4b86b0affc08fc68ea38b92a7357cb6689b35e4d', 'BP36256 ', 40, 4, 0,
NULL),
('jester4', '4c29c63603a7f8f6e193a159c34f3f75dc9d7d2a', 'MC68017 ', 0, 0,
54.28, '{"fBrakeForce":0.84890774682472}'),
('jester4', '4c38d1e32547e87c9bd613db4f012fef4fff4d41', 'YR83816 ', 0, 0,
35.56, '{"fBrakeForce":0.84810458257813}'),
('jester4', '4f08a0bcf0dfd73d1e9b76dc8f59e7b83f346546', 'CV22014 ', 0, 0,
15.22, '[]'),
('jester4', '522a67df5d568d834abf1b078ef89998f8c01f6d', 'KX54399 ', 255, 4,
0, '[]'),
('jester4', '53b302ab1295c78f0e3db71e23c64cd96113bf69', 'WR76781 ', 0, 0, 0,
'[]'),
('jester4', '53d40988416a4a659bb322c30408520203d62c4f', 'RE51596 ', 115, 5,
0, NULL),
('jester4', '53dccb608ebd57771fad16301805234f6c0a6282', 'QD24274 ', 0, 0,
5.74, '[]'),
('jester4', '5583bf5a9ea8334b9c42ebdd341730f8285b2f13', 'WD03110 ', 0, 0, 0,
NULL),
('jester4', '562deacf484f858ab570f46689e06c0fafde5f40', 'KP56049 ', 0, 0,
4.9, '[]'),
('jester4', '5655fb191bae39539c8f5459853107d5a60fd226', 'FJ06932 ', 0, 0, 0,
NULL),
('jester4', '5655fb191bae39539c8f5459853107d5a60fd226', 'FJ92596 ', 0, 0, 0,
NULL),
('jester4', '569a7327149920164b5cb624d6cc773879be719f', 'FR84648 ', 28, 2,
1.96, '[]'),
('jester4', '58fb34fa12ba1a8e4042cf1d487c99d4b2e6ea16', 'ND80621 ', 263, 4,
0, '[]'),
('jester4', '594f193654612a03b22a5c3246949e33769c2667', 'HJ77245 ', 266, 4,
0.1, '[]'),
('jester4', '5ab43fae1701b5fc247b8bcf7133b24cc16f016e', 'KB85825 ', 300, 2,
0, '[]'),
('jester4', '5b088907e437dae7e06bd007fb453e5d61cb2269', 'XD68459 ', 132, 5,
0, NULL),
('jester4', '5b350ccff6e961f1a3c8c6e091d746a2c6756c90', 'OV38318 ', 0, 0,
1.86, '[]'),
('jester4', '5df5f6e85f3673fcfbefd2bcb5c811ac8c5297c7', 'QQ14177 ', 135, 5,
8.12, '{"fInitialDriveForce":0.72910001277921}'),
('jester4', '5eb6acf9008adc0f88c67e8bb9f30c37f1a8c0e4', 'UB94910 ', 0, 0, 0,
NULL),
('jester4', '60a468313b7e6414dadf34f0360a6e63c1f000b8', 'IS58870 ', 0, 0,
0.08, '[]'),
('jester4', '6121d6980e964e478449336c022a989ef0e02cfe', 'RI86215 ', 0, 0,
24.88, '{"fBrakeForce":0.84730809109096}'),
('jester4', '61246e20955f34f0a5d5e3870e6d10ca504d7b5b', 'EM61008 ', 2, 5, 0,
NULL),
('jester4', '618755f3fa437e6173bf2ee8b7a7908c9d3c51e8', 'NL44392 ', 0, 0,
0.04, '[]'),
('jester4', '61909f341d55c31fbac08f2d5fe2435520b519b9', 'GV25385 ', 0, 0, 0,
NULL),
('jester4', '62b5d5e10cb07a5e3f398f69977f47881cbae657', 'CZ10363 ', 0, 0, 0,
NULL),
('jester4', '62ed29db73a024adff1092e226bd9555bbcf0544', 'XG01002 ', 0, 0,
0.16, '[]'),
('jester4', '62ff010d885043319d6a972406e1ac0ed09d1d8a', 'EV13370 ', 0, 0, 0,
NULL),
('jester4', '63264dd3248d1c1304213c0149f2b15ea8dee745', 'SI42357 ', 52, 0, 0,
NULL),
('jester4', '648e5d3fe0a5801071c0a5425cc55077b29be4d2', 'DP13705 ', 0, 0, 0,
NULL),
('jester4', '663f3374ff9890818b05deb5e581776a22296954', 'XZ74436 ', 0, 0, 0,
NULL),
('jester4', '66685054f3f63d3e3741aca85e683382639862c9', 'JZ06110 ', 215, 3,
0, NULL),
('jester4', '66c20b3483373d89b21fbfa6cc49930b94acfda3', 'ZH33533 ', 231, 5,
47.22,
'{"fInitialDriveForce":0.72910001277921,"fDriveBiasFront":0.5,"fBrakeForce":2.84691
333259187}'),
('jester4', '66cb9327f0b92759918036e01e9e1a778c6190c0', 'YG26401 ', 0, 0,
222.84, '{"fBrakeForce":0.82351393597352}'),
('jester4', '66d7ade6ce761687b2adf9ec3eacbac96b427dda', 'TT64771 ', 290, 4,
27.12, '{"fBrakeForce":0.84888283920422}'),
('jester4', '6716db871dd7018c11c4ad3606be8e4edf2ec87d', 'TW02801 ', 204, 4,
0.9, '[]'),
('jester4', '67c8b6cab8ba6d95d20b22c4dd30ee5f213613f4', 'WM55084 ', 188, 4,
0, NULL),
('jester4', '6a809612394ef5e0b726c5532afc2d906bc52653', 'RI63589 ', 0, 0,
2.16, '[]'),
('jester4', '6b206d7d5965b4e34fed2611b5a476e9c27989b9', 'HA63174 ', 0, 0, 0,
'[]'),
('jester4', '6c5c779370d42c7e1427c0c9f8bc78b11a0b3218', 'EM19771 ', 269, 4,
17.4, '{"fBrakeForce":0.84999957897387}'),
('jester4', '6c8943c4f97a4ab57c962b4d1277b5a0c8c31305', 'KP84355 ', 0, 0,
7.82, '[]'),
('jester4', '6cec0dfd2161913a6a97be085bad4aebfd292326', 'EZ91220 ', 0, 0, 0,
NULL),
('jester4', '6f5173f7a97210ea50bb51eed249e780bf04dc13', 'FO76912 ', 0, 0, 0,
NULL),
('jester4', '6f6712ae2a378a58771816adf50a1faa566c42d8', 'GC75748 ', 0, 0, 0,
NULL),
('jester4', '6fa27eea805e35ee4fe24746867691f4c76b0423', 'SJ93521 ', 300, 4,
0, NULL),
('jester4', '70fd0cab209eb0f14352a16cfcc7f91350d67c59', 'WE07376 ', 0, 0, 0,
NULL),
('jester4', '71626fca0e7a0725e80135818af5121792769f63', 'LQ70235 ', 0, 0,
0.46, '{"fInitialDriveForce":0.72910001277921}'),
('jester4', '76012ad13ee83c77d78dd01d96612dcab770031f', 'VJ47753 ', 300, 5,
0, NULL),
('jester4', '76554dee8c336acc1034d1d160e542c392c7629b', 'AZ03361 ', 128, 0,
0, '[]'),
('jester4', '76554dee8c336acc1034d1d160e542c392c7629b', 'BP02616 ', 0, 0,
50.96, '{"fBrakeForce":0.84654187205988}'),
('jester4', '767441e7e9d696f632ea7c49dcfcc29df1dfa3f4', 'DZ05974 ', 300, 5,
17.14,
'{"fDriveBiasFront":0.5,"fInitialDriveForce":0.72910001277921,"fBrakeForce":2.84998
604507193}'),
('jester4', '77013525ca29b50b787b9731ae6319a445b3c7de', 'ES45571 ', 0, 0, 0,
NULL),
('jester4', '770a3547afb79d050c4bea52121ba50ae3e02fbd', 'RJ44682 ', 0, 0, 0,
NULL),
('jester4', '7794aedfef4d6b8dc29e9e838ae783e4c14a0787', 'RY42831 ', 0, 0, 0,
NULL),
('jester4', '7835f6f2e51976bbc7df5dc4cb5404e5a8e6252c', 'MG25445 ', 300, 2,
0.08, '[]'),
('jester4', '78e096b456e225392dd3626b5fafd45fc2dcd020', 'TB31598 ', 0, 0,
5.18, '[]'),
('jester4', '79a7fec9d48cfe63e1404152eb492b48cd8e176e', 'JL40907 ', 0, 0, 0,
NULL),
('jester4', '7a53950afb2bcd10cfce7db860e46a686e86e6eb', 'AQ36365 ', 15, 2, 0,
NULL),
('jester4', '7aae1c10926d193c1abbe3e2dd6efd34165dcd67', 'FS79852 ', 0, 0, 0,
NULL),
('jester4', '7b76d0ab221e37890b9f933f3b1a18a2e8328ada', 'GH36649 ', 0, 0, 0,
NULL),
('jester4', '7d82a7cbd162c1c29ad4977b62605a8ef548fb96', 'UR54499 ', 0, 0, 0,
NULL),
('jester4', '7ef1341188087c335e6baee2f41ec00d8919e6c5', 'FJ14538 ', 0, 0,
13.34, '[]'),
('jester4', '7ff8310705ae582612aebac198039d544cbaa9ec', 'IJ26826 ', 0, 0,
32.06, '{"fBrakeForce":0.84845977746451}'),
('jester4', '812f930685f939747b5527d26b3e97f675ea86d9', 'WJ50515 ', 0, 0, 0,
NULL),
('jester4', '81dcab0d4764e7c3af12d6d73fed5ac75e342bbe', 'GA06809 ', 0, 0,
0.02, '[]'),
('jester4', '81dcab0d4764e7c3af12d6d73fed5ac75e342bbe', 'NQ27317 ', 0, 0, 0,
NULL),
('jester4', '8286dbc25fb739b759a95802455c022af537dd69', 'IK30632 ', 0, 0, 0,
NULL),
('jester4', '83d7e646a7253877a44e27e37e9a751c31fb514e', 'KC93892 ', 0, 0,
60.6, '{"fBrakeForce":0.84555112952951}'),
('jester4', '849da86d78331639480e271077a3d3a94dfef5c1', 'PI19978 ', 0, 0,
4.76, '[]'),
('jester4', '84e64c73edfc774fe279305ddc3ba2312fc3a9c7', 'XY43736 ', 162, 4,
0, NULL),
('jester4', '855472f541dff46097b7279067893db6cc838aff', 'IE72284 ', 279, 4,
0, NULL),
('jester4', '85670086cbff2fa05afe65ac48c829ff31a4d920', 'QY78821 ', 0, 0,
0.54, '[]'),
('jester4', '85892a356123e2d9589ffac149700f7c67f81a36', 'XQ61855 ', 300, 4,
0, NULL),
('jester4', '8598edb09b8ce2bd01296b92685c368056833a5c', 'HL39630 ', 189, 4,
0, NULL),
('jester4', '88a56ff1c970aa870bfa04e43c652a5ec6944063', 'OR09114 ', 0, 0, 0,
NULL),
('jester4', '8ab36514056d5a13885585bba6506e75dc93d5c6', 'DU10481 ', 0, 0,
31.28, '[]'),
('jester4', '8ab36514056d5a13885585bba6506e75dc93d5c6', 'RK77679 ', 0, 0, 0,
NULL),
('jester4', '8ce77d3e4b3a811ccf7d48ec2c1caebe64c97f42', 'LI90068 ', 33, 0, 0,
'[]'),
('jester4', '8d002a075c97f2b74610fbba6326a4ad279c2c0b', 'YC31412 ', 0, 0, 0,
NULL),
('jester4', '8da2094e82bfe782f39218bd6ec816d0bbde859c', 'DM71470 ', 181, 5,
0, NULL),
('jester4', '8e2880b13a6223d2c951700f4a88d84e2dd41866', 'RB25392 ', 0, 0,
35.4, '{"fBrakeForce":0.84811967859841}'),
('jester4', '8e416878df455f4bb13032736760caec65b3a298', 'TD15729 ', 193, 3,
0, NULL),
('jester4', '9168482f5c81bec9564b78a42bbdb1c0a59901f0', 'IM39479 ', 259, 5,
0, NULL),
('jester4', '91c8d321b64e59b0324e158b076b198c0035765d', 'PO53915 ', 0, 0,
72.9, '{"fBrakeForce":0.84429489051759}'),
('jester4', '92a2114da14eaef98fbd0924659b32446f52f442', 'GG73667 ', 300, 5,
7.28, '{"fInitialDriveForce":0.72910001277921,"fDriveBiasFront":0.5}'),
('jester4', '94428170273a134c926b62e6fe89c547f649b008', 'UD82201 ', 0, 0, 0,
NULL),
('jester4', '9474e674291263b637e4f85325c369771937e710', 'BR38805 ', 0, 0, 0,
NULL),
('jester4', '947a7ed13339dbaa527ec7d72a6762bca4ead943', 'ZR31608 ', 294, 2,
2.1, '{"fDriveBiasFront":0.5}'),
('jester4', '957b68a92f61ae8a0b3559c81d74fa231d11dbdd', 'PG22277 ', 0, 0,
98.66,
'{"fBrakeForce":2.83667010767716,"fInitialDriveForce":0.72910001277921,"fDriveBiasF
ront":0.5}'),
('jester4', '97a20faf812ba61bedc30d1c3c7a6409ee1f2143', 'PB18532 ', 0, 0,
7.66, '[]'),
('jester4', '97e81d50767ceecefacf9cf564c4c9e5a8f64249', 'PN19306 ', 0, 0, 0,
NULL),
('jester4', '991d33fe466049bc3feaca2ce11e278eee9cc158', 'WE87502 ', 265, 1,
6.4, '[]'),
('jester4', '9a22bcc4bbd157747cdd6a897aa9c0d9cf6a19a8', 'HM97613 ', 0, 0, 0,
NULL),
('jester4', '9a95cded8846507f72574b86c81aa32ca16bc7dc', 'XS71025 ', 196, 1,
0, NULL),
('jester4', '9aa89505eaa278589a17bc3f1fe2e1afc69305fa', 'QZ53002 ', 0, 0, 0,
NULL),
('jester4', '9e03691dd9b1d15b38b89c8822b4001b99b823c6', 'UT15824 ', 246, 4,
12.1, '[]'),
('jester4', '9e6fa0deb37615ffaee33542dcd71055a34e7b09', 'UT00559 ', 300, 5,
0, NULL),
('jester4', '9f4c3077775d9f0fcc21086fe98a92a194686032', 'SJ21670 ', 0, 0,
29.92, '{"fBrakeForce":0.8486835107365}'),
('jester4', 'a2be4361aad91b0c7118ae9e70e1c5465db67bb9', 'NG71161 ', 0, 0, 0,
NULL),
('jester4', 'a2ca4098e423eba71e28cc9564c3f688377ec268', 'ZV18706 ', 0, 0,
10.68, '[]'),
('jester4', 'a3bd476d7a75e25925f7523461e6cb7fccef9715', 'VS55334 ', 300, 5,
0, NULL),
('jester4', 'a63511f5900fb48ae8b60af640f26d08eef13d1b', 'MW76430 ', 0, 0, 0,
NULL),
('jester4', 'a6ca5475d196f1c95ea097e3e6d1c506d3ba7411', 'IN27386 ', 0, 0, 0,
NULL),
('jester4', 'a6ef739a152ef4ce429f11bc3f67edfe6467a3ae', 'BS39006 ', 0, 0, 0,
NULL),
('jester4', 'a862ff8bf81d5e30723c9b13f98545dc5ac0e4d9', 'KJ24589 ', 0, 0, 0,
NULL),
('jester4', 'a90f824348076945ff86d6d5e5d03aed7f0513da', 'IP76108 ', 0, 0, 0,
NULL),
('jester4', 'a9282ecfad00e957a5636eac273d1de8368e918a', 'VP85361 ', 0, 0, 0,
NULL),
('jester4', 'a9d2ac31af83037b4a8ea9b2a17e0021d8d7128b', 'LB12699 ', 84, 3, 0,
'[]'),
('jester4', 'a9e8f2b5a05ccfdab0da3a0fc06d252e2974f6c8', 'GF30085 ', 12, 1, 0,
NULL),
('jester4', 'aaecd5b4d036639c221eb58fcb95fdd1a3e10d7f', 'GF46147 ', 0, 0,
596.52,
'{"fInitialDriveForce":0.72910001277921,"fDriveBiasFront":0.5,"fBrakeForce":0.64870
468322364}'),
('jester4', 'ad1ae954e88fdad0f65b24780481dfe660efa3fc', 'FJ52647 ', 240, 2,
0, NULL),
('jester4', 'ad594ae959ad6f6cbe65477d0473fd299365e91b', 'YS89414 ', 119, 5,
0, NULL),
('jester4', 'ae1452ba4e9986f5ec67dd18714d811b0f48eb22', 'WU22875 ', 0, 0,
6.26, '[]'),
('jester4', 'ae7e64f10f7905c8ee329f7cb1ebf92083448b88', 'UK52751 ', 300, 5,
0, NULL),
('jester4', 'ae894020ee4aa44e65b97f1967182779b38a266e', 'HG32101 ', 175, 4,
0, NULL),
('jester4', 'afc0b885567b002d9e1663774b73030641003290', 'YX00291 ', 0, 0,
1.94, '[]'),
('jester4', 'afdd26ddd11f3434faba2dc33432f144873c2e27', 'IA12305 ', 0, 0,
26.58,
'{"fBrakeForce":2.84901734459256,"fDriveBiasFront":0.5,"fInitialDriveForce":0.72910
001277921}'),
('jester4', 'b0f9fd909cbb657f73619c4483aa99c40c0d2e0e', 'ZC36214 ', 0, 0,
54.34, '{"fBrakeForce":0.84619008341098}'),
('jester4', 'b0fc506c36b1f5a3fd7027bd36ab24002f4edd46', 'NV54138 ', 248, 5,
0, NULL),
('jester4', 'b17056aa1e536ceb3774862a0373282724fd1d26', 'TP74212 ', 300, 4,
0, '[]'),
('jester4', 'b1b9bbf491d1a500eb57b3c85699764ef117a148', 'CP10196 ', 0, 0, 0,
NULL),
('jester4', 'b1ba3ec084b46d34cc8b17945cdac312ae7a1e5e', 'WH06666 ', 0, 0,
1.56, '[]'),
('jester4', 'b30bdabbc5089caa7a344472b53890068e2ed0f6', 'VC06455 ', 153, 1,
0, NULL),
('jester4', 'b39fefe02344a1d702696ede8ba8403d94172a60', 'EG94276 ', 0, 0,
0.08, '[]'),
('jester4', 'b588c480c5a104cb9aa8c0c23201eed952201152', 'TY32695 ', 72, 1,
37.56,
'{"fInitialDriveForce":0.72910001277921,"fDriveBiasFront":0.5,"fBrakeForce":2.85000
002384185}'),
('jester4', 'b77bd32acbea338c61839e9d454a5efa5e62bba7', 'NA46117 ', 0, 0, 0,
NULL),
('jester4', 'b84769ea241c0d053dca7649feb14d22459ed5c0', 'LP76718 ', 125, 5,
0, NULL),
('jester4', 'b9c60a1ae99653373a2c2e695db846cd4164ec3f', 'BX21362 ', 0, 0,
1.64, '[]'),
('jester4', 'ba1db791f3a236c488a50ede260b01fb936fafd3', 'DI43703 ', 0, 0, 0,
NULL),
('jester4', 'bb5801d30dd3bae72c23c0f69bf4108b7f3d80aa', 'TF41111 ', 300, 2,
5.48, '[]'),
('jester4', 'bb61bb3fdca74daa8bb954b9115123a53592d84a', 'YF68481 ', 300, 4,
11.44, '[]'),
('jester4', 'bc64e5f78d336909336d055c44f9da81be347261', 'KZ06267 ', 0, 0, 0,
NULL),
('jester4', 'bc8f2cd26ad41e23f49e40a7322031d24e0032d5', 'ET76581 ', 0, 0,
3.56, '[]'),
('jester4', 'bc8f2cd26ad41e23f49e40a7322031d24e0032d5', 'YY58423 ', 300, 4,
0, '[]'),
('jester4', 'bd03f5eb3362f4dd061109ea4ad30a3a2948845e', 'NT03235 ', 300, 4,
0, NULL),
('jester4', 'bd490dc81146047f83a6b760dd8de73c2a506697', 'IK53037 ', 0, 0,
26.12, '{"fBrakeForce":0.84897641528323}'),
('jester4', 'bd54e753bd001e51a167ac11fbca37d033d46ea3', 'KX80885 ', 255, 5,
0, NULL),
('jester4', 'bda37e6e0cd373c109b8fcf3cefcc1e3c0c4c45d', 'NH15758 ', 0, 0, 0,
'[]'),
('jester4', 'bfee4d51338a8c4a462305c79525a3fa1ebebbba', 'FW89118 ', 0, 0,
2.3, '[]'),
('jester4', 'bfee4d51338a8c4a462305c79525a3fa1ebebbba', 'UP97835 ', 0, 0, 0,
'[]'),
('jester4', 'bfee4d51338a8c4a462305c79525a3fa1ebebbba', 'YE62477 ', 0, 0, 0,
'[]'),
('jester4', 'c0d2c60970d9c64d9ae920825c16bec8cd35a8e3', 'II22909 ', 287, 4,
0, NULL),
('jester4', 'c2be1a8d2dca6c47a16fca78ad1577013b6d049f', 'EE96886 ', 0, 0,
3.3, '[]'),
('jester4', 'c3adfec0f6a89e76bfcd9d8ae4f824adcaa6f73f', 'TI92812 ', 300, 2,
0, '[]'),
('jester4', 'c4a699e3a4730d6c939c1bf1defa42a42c929e1f', 'BE32298 ', 91, 5, 0,
NULL),
('jester4', 'c7293ca36fe08fad6f603ea82ce0814e8eb1763b', 'BN72848 ', 300, 5,
0, NULL),
('jester4', 'c7868e8f13b0839e5b772482c09967f20cd11191', 'AB63541 ', 0, 0, 0,
NULL),
('jester4', 'c7bd58d09ab614bc6958ccb894c6c02cc2a4fc9b', 'NI27425 ', 0, 0, 0,
'[]'),
('jester4', 'c7bd58d09ab614bc6958ccb894c6c02cc2a4fc9b', 'QY83843 ', 0, 0,
2.7, '[]'),
('jester4', 'c7bd58d09ab614bc6958ccb894c6c02cc2a4fc9b', 'VV72773 ', 0, 0,
2.68, '[]'),
('jester4', 'c7bd5dc4c9220066249e82144bfa3861d0a26172', 'VC92735 ', 0, 0,
127.06, '{"fBrakeForce":0.83781287324454}'),
('jester4', 'c7e23aee843b5309cf2efd92543eda214c157cb8', 'BN02577 ', 300, 5,
0, NULL),
('jester4', 'ca3b67d34f7f6398d1a6e6dd0fabbb2da3d12475', 'BX33001 ', 300, 5,
0, NULL),
('jester4', 'ca7238097d39fc267701fa7a54429e09e95e82fe', 'EM25488 ', 300, 5,
29.26,
'{"fBrakeForce":2.84894226722518,"fDriveBiasFront":0.5,"fInitialDriveForce":0.72910
001277921}'),
('jester4', 'cd8a7de220a0e0e88e414ee792ccca099f2d5a18', 'PF24214 ', 0, 0,
4.82, '[]'),
('jester4', 'ce41c0c3ebcbe42180fe09366ca48e52530444ae', 'DZ69636 ', 0, 0,
2.78, '[]'),
('jester4', 'ce7c7548a33aa491f5e9ff4c4e2a29a100c24d5d', 'MV56798 ', 0, 0, 0,
'[]'),
('jester4', 'cebd58b2f73e1f681b1b80a97cb315d01c856346', 'KK88903 ', 0, 0, 0,
NULL),
('jester4', 'cf44ea49b3a479a2f312d33d9be61e03aefc10c7', 'GC45872 ', 0, 0,
5.6, '[]'),
('jester4', 'd0e8bf5e2cb5667e17a5a44b4bdf50873b3bb490', 'BC46380 ', 0, 0,
71.78, '{"fBrakeForce":0.84442385035614}'),
('jester4', 'd0e8bf5e2cb5667e17a5a44b4bdf50873b3bb490', 'KD61882 ', 0, 0,
9.64, '[]'),
('jester4', 'd0e8bf5e2cb5667e17a5a44b4bdf50873b3bb490', 'RI63589 ', 0, 0, 35,
'{"fBrakeForce":0.84820370124338}'),
('jester4', 'd1d05d98c014363b87901824629ba3aa46cdbdcd', 'QS06189 ', 0, 0,
44.46, '{"fBrakeForce":0.84719621009605}'),
('jester4', 'd30022f509d09a2f39d1a62cfecb9123120a5d17', 'JE59295 ', 126, 5,
11.08, '[]'),
('jester4', 'd3ec6118174921e746607cbb0662b210ad2ebfc6', 'JL56404 ', 300, 1,
25.28,
'{"fInitialDriveForce":0.72910001277921,"fBrakeForce":2.84915351728701,"fDriveBiasF
ront":0.5}'),
('jester4', 'd6bdf9fd27ac5a5520b06aaab67ebe29b50ebc02', 'LL16909 ', 0, 0,
9.64, '{"fTractionCurveMax":2.98999991416928,"fBrakeForce":2.85000002384185}'),
('jester4', 'd868619c63576c348c59796e4a456f5bc60f0821', 'CN43603 ', 0, 0, 0,
NULL),
('jester4', 'd8bf5d163f6267cd856eddd792a9eafcdf141afe', 'XK62881 ', 0, 0, 0,
NULL),
('jester4', 'd8c1bf71904b0ca2928696426c23c9f4f2f7bae8', 'VB61444 ', 0, 0, 0,
NULL),
('jester4', 'd9a72fea08532dcf10fb71dce211156e854b7b91', 'DV95141 ', 193, 4,
0, '[]'),
('jester4', 'd9ed6920dd9be2b38f86b8e5491f69c9fed0f646', 'JP13833 ', 0, 0, 0,
NULL),
('jester4', 'dab159f59e2ff82e160e6fb2cfcd5aee77d64269', 'GY72339 ', 0, 0,
11.1, '[]'),
('jester4', 'dabb1d61f7916b2c9eb1e6f405020fb365879090', 'GZ92596 ', 0, 0, 3,
'[]'),
('jester4', 'dc4797abbb8b984a285ad50ea1215a7e9618284b', 'VD78513 ', 0, 0, 0,
NULL),
('jester4', 'dd1c3be962efc8fc23616bed5bb41ba363b29126', 'VL57474 ', 0, 0, 0,
NULL),
('jester4', 'dddd9d494244f5d02ed191a0f9c1b1d369842526', 'QY99652 ', 0, 0,
0.02, '[]'),
('jester4', 'ddf4779cd953e869e703bcceaecd0a4461c3fefd', 'KQ00217 ', 0, 0,
23.72, '{"fBrakeForce":0.84931379184554}'),
('jester4', 'de2bed27711bed9a5910bd3eb8ced78b582b7c89', 'KK43009 ', 0, 0,
1.72, '[]'),
('jester4', 'de8a925f0f67be14a7f86e531fce234cd7079b70', 'CZ73298 ', 300, 5,
0, NULL),
('jester4', 'decb8a9b3abc021d0bbe869d9e28180b2856517e', 'BM36365 ', 0, 0, 0,
NULL),
('jester4', 'decb8a9b3abc021d0bbe869d9e28180b2856517e', 'JE83952 ', 0, 0,
5.58, '[]'),
('jester4', 'df17585454eb358472dc409b61bad5d29b98b2cd', 'VO90532 ', 0, 0, 0,
NULL),
('jester4', 'df58434d71d7cd50d9b403b3a3a287e26d3d0655', 'CH39625 ', 139, 5,
0, NULL),
('jester4', 'df7dba120eccda92043ed378f2fb7ca45ea33579', 'ZE11775 ', 0, 0, 0,
NULL),
('jester4', 'e10f50cb8c453b115cfb00a16a2a1b85ff8d4d4f', 'OI71445 ', 0, 0,
2.58, '[]'),
('jester4', 'e15cf0ccda0ade39b73bdc7aef3a9a6f773ee620', 'VV27087 ', 0, 0, 0,
NULL),
('jester4', 'e16b4b30a90d01ec881f6d3e43cb03a9502fc047', 'DL43261 ', 0, 0,
6.64, '[]'),
('jester4', 'e16b4b30a90d01ec881f6d3e43cb03a9502fc047', 'RC60306 ', 0, 0, 0,
NULL),
('jester4', 'e16b4b30a90d01ec881f6d3e43cb03a9502fc047', 'YL70096 ', 0, 0, 0,
NULL),
('jester4', 'e2dacf0e08f1ae724b352a648944dd8577bff68b', 'QN62064 ', 0, 0, 0,
'[]'),
('jester4', 'e4c30e18e7bf5db7d83aab97433d0da1e42e1f89', 'LL16909 ', 0, 0,
168.4, '{"fBrakeForce":0.82938156266255}'),
('jester4', 'e4c30e18e7bf5db7d83aab97433d0da1e42e1f89', 'PL44373 ', 0, 0, 0,
NULL),
('jester4', 'e5159a161aed704abec2642f02d31360cce59de9', 'CY17808 ', 300, 2,
1.36, '[]'),
('jester4', 'e60d8aff6aed89317467377fd69eacb2646c7bff', 'MK69648 ', 0, 0, 0,
NULL),
('jester4', 'e66820e595e7ddad3387f6643b69d7d0a0715855', 'UR58873 ', 0, 0, 0,
NULL),
('jester4', 'e686019ea0c74f6839f3b52872b391ed190bfae8', 'KJ69179 ', 0, 0, 0,
NULL),
('jester4', 'e6cf0eda8aa4ecc4e403e44fd9af165d67c32e1c', 'MX82280 ', 0, 0, 0,
NULL),
('jester4', 'e7c62bd222b7fc392afa3534680340dee238bb8c', 'DP72290 ', 163, 5,
16.66, '[]'),
('jester4', 'e893747e8dcb516cf46be0887b2d41ec7333a1a6', 'PB30918 ', 0, 0,
123.96, '{"fBrakeForce":0.83728889185122}'),
('jester4', 'e94976f07db39820d6254414d0ee573b46c4fe0f', 'HY49471 ', 18, 2, 0,
NULL),
('jester4', 'e9861acab3e2df23331e5f643c826095a453a208', 'BP02616 ', 0, 0,
1.3, '[]'),
('jester4', 'eb46d00be010ca8d80b7e8824ea895515087e47a', 'LV01708 ', 0, 0, 0,
NULL),
('jester4', 'ec4337e1f0ff6e26b1e388073564257e6ff89d2c', 'EZ20147 ', 0, 0, 0,
NULL),
('jester4', 'edd327a317e69badd354be95aed67533cf86d75d', 'LR58523 ', 300, 5,
0, NULL),
('jester4', 'ef309fd606f5805503a510c9969dc90bdccde2c3', 'KC30190 ', 0, 0, 0,
'[]'),
('jester4', 'f06a91b30c73b3b8a7437025bade15cf64c8eb1d', 'BC59595 ', 0, 0, 0,
NULL),
('jester4', 'f10632451841ed2512429f9423c74ce332b0a19a', 'RV77875 ', 0, 0, 0,
NULL),
('jester4', 'f175c09e5a939ba394d774c645ddc115feb63668', 'FA60462 ', 0, 0,
2.16, '[]'),
('jester4', 'f181a598a13e4b4004e6f8831b4fa0de01c355e5', 'DK49717 ', 249, 5,
0, NULL),
('jester4', 'f183a5b5facd0e9ebea147d980b4fb3e43264da6', 'XL69424 ', 40, 5, 0,
NULL),
('jester4', 'f1d996c4661c386cbb7e3427adb3455c0b99324c', 'IT75198 ', 0, 0, 0,
NULL),
('jester4', 'f283025322f011e174604d28e111cb79640f952b', 'BH39159 ', 0, 0, 0,
NULL),
('jester4', 'f2a4614f062f04966f151610a0cfe692652b3bee', 'JQ37030 ', 0, 0, 0,
NULL),
('jester4', 'f4e46330330e6323fdfbed936194b41d8a879422', 'KV79679 ', 0, 0,
3.8, '[]'),
('jester4', 'f5ce80aabffa17b3dad593f6c29befc25e94f116', 'KD61882 ', 300, 1,
2.42, '[]'),
('jester4', 'f5ce80aabffa17b3dad593f6c29befc25e94f116', 'LL16909 ', 207, 3,
172.46, '{"fBrakeForce":0.84892688387233}'),
('jester4', 'f5f63b8e54b85ba4ca5cffe0f73bb14c3d9f6c8d', 'SG58616 ', 6, 2, 0,
NULL),
('jester4', 'f5f63b8e54b85ba4ca5cffe0f73bb14c3d9f6c8d', 'XK62881 ', 0, 0, 0,
NULL),
('jester4', 'f6789e904041da96306f2f87e37dc308d9b16575', 'JO20042 ', 76, 5, 0,
NULL),
('jester4', 'f6e266c049295520b274fbf393b51ccc73bffa25', 'UZ45308 ', 0, 0,
4.36, '[]'),
('jester4', 'f7e8ab653cfce2f68a68ba48c1d2f2759b470186', 'TC30870 ', 0, 0, 0,
'[]'),
('jester4', 'f81b9822ffa726412aa4c2192e55faf463e24f84', 'KD61729 ', 243, 5,
25.86,
'{"fDriveBiasFront":0.5,"fInitialDriveForce":0.72910001277921,"fBrakeForce":0.84896
511401533}'),
('jester4', 'f88ac567e08efce01a0f3830e5c0249432aa0b6e', 'PL59157 ', 0, 0, 0,
NULL),
('jester4', 'f8cea7d94773192d1cfe6eef4e43185ca3d55044', 'GM29281 ', 154, 5,
82.24,
'{"fInitialDriveForce":0.72910001277921,"fDriveBiasFront":0.5,"fBrakeForce":2.84713
30678765}'),
('jester4', 'f97e1684099f5c38b41f20dcd5439fae270ab7ba', 'QG33007 ', 0, 0, 0,
NULL),
('jester4', 'fb7691ba94bde18b8ea03d50a8d18c4230c34a9c', 'MM66373 ', 235, 1,
0, NULL),
('jester4', 'fba152873bc886e8b1af570ed625d855c23d2511', 'YV99202 ', 0, 0,
10.72, '[]'),
('jester4', 'fcb50c8a5455b348a01957de9c7053dc177a37d4', 'PT94043 ', 266, 5,
0, '[]'),
('jester4', 'fd28655133b0343a487d61a4045e42d66f29d4a8', 'XJ33064 ', 300, 5,
0, '[]'),
('jester4', 'fe4ad8680dc5fb49cc1bdb0870a94d00bf84d051', 'GW22183 ', 0, 0, 0,
NULL),
('jester4', 'fec4ff3074b3f3c04ebadd326d3d097c76ff4a05', 'IB40682 ', 0, 0, 0,
NULL),
('kanjo', '13c708c568da89c64db3c45293ebe384ab1a29a9', 'ZM25254 ', 0, 0,
59.42, '{"fBrakeForce":0.99915711897412}'),
('kanjo', '219a18f10b3f40125ae9cffe81da85da9068d663', 'XS22070 ', 0, 0, 1.04,
'[]'),
('kanjo', '44a6729737d5e482538d28da3f6fe892f640418a', 'MP39272 ', 266, 5,
31.56, '{"fTractionCurveMax":2.60000004768369,"fBrakeForce":0.99824883139482}'),
('kanjo', 'd6bdf9fd27ac5a5520b06aaab67ebe29b50ebc02', 'XS22070 ', 0, 0, 0,
NULL),
('lp43', '947a7ed13339dbaa527ec7d72a6762bca4ead943', 'OM24999 ', 0, 0,
1588.24, '{"fBrakeForce":3.39626334741947,"fInitialDriveForce":0.79004999399182}'),
('m3e92', 'e16b4b30a90d01ec881f6d3e43cb03a9502fc047', 'PSVD3454', 0, 0, 0,
NULL),
('m3tp', '920ff63cdc24d024d91b4b2a339c90888fb31e0a', 'BKV4329 ', 0, 0, 0,
NULL),
('m6gc', 'bb61bb3fdca74daa8bb954b9115123a53592d84a', 'PR25897 ', 0, 0, 1.08,
'[]'),
('marshall', '1b90ac573a51fe40c589470f714ee46aa9bf38ac', 'CJ63260 ', 0, 0, 0,
'[]'),
('marshall', 'e16b4b30a90d01ec881f6d3e43cb03a9502fc047', 'RL85220 ', 0, 0, 0,
NULL),
('marshall', 'f175c09e5a939ba394d774c645ddc115feb63668', 'RL85220 ', 0, 0, 0,
'[]'),
('mlbrabus', '0aa24eb580499b978904943cf2b16e3743d36609', 'GA92560 ', 0, 0,
10.46, '[]'),
('outlaw', '0aa24eb580499b978904943cf2b16e3743d36609', 'II66741 ', 0, 0,
3.96, '[]'),
('outlaw', '0aa24eb580499b978904943cf2b16e3743d36609', 'QN40925 ', 0, 0,
12.1, '[]'),
('outlaw', '1b90ac573a51fe40c589470f714ee46aa9bf38ac', 'XZ67973 ', 0, 0, 0,
NULL),
('outlaw', '39bd366006fb20e7cb760c7a9015919551844d0e', 'ZA75991 ', 0, 0,
162.64,
'{"fInitialDriveForce":0.60999999344346,"fSuspensionRaise":0.19999999999998,"fBrake
Force":2.80000001192092,"fDriveBiasFront":0.5}'),
('outlaw', '4c29c63603a7f8f6e193a159c34f3f75dc9d7d2a', 'WQ88629 ', 0, 0,
55.76, '{"fBrakeForce":0.79627504932412}'),
('outlaw', '76554dee8c336acc1034d1d160e542c392c7629b', 'HE98765 ', 0, 0,
71.38,
'{"fBrakeForce":2.7998194666367,"fDriveBiasFront":0.5,"fInitialDriveForce":0.609999
99344346,"fSuspensionRaise":-0.09999999999999}'),
('outlaw', '76554dee8c336acc1034d1d160e542c392c7629b', 'HU05892 ', 0, 0,
3.46, '[]'),
('outlaw', '8ce77d3e4b3a811ccf7d48ec2c1caebe64c97f42', 'KF09254 ', 265, 4,
63.34, '{"fBrakeForce":2.80000001192092,"fDriveBiasFront":0.5}'),
('outlaw', '97e81d50767ceecefacf9cf564c4c9e5a8f64249', 'HU05892 ', 0, 0,
0.02, '[]'),
('outlaw', '97e81d50767ceecefacf9cf564c4c9e5a8f64249', 'WQ88629 ', 0, 0,
1.38, '[]'),
('outlaw', '991d33fe466049bc3feaca2ce11e278eee9cc158', 'RS97535 ', 0, 0,
30.14, '{"fInitialDriveForce":0.60999999344346,"fDriveBiasFront":0.5}'),
('outlaw', 'f1d996c4661c386cbb7e3427adb3455c0b99324c', 'HU05892 ', 0, 0,
1.26, '[]'),
('outlaw', 'fcb50c8a5455b348a01957de9c7053dc177a37d4', 'NZ93736 ', 267, 0,
158.16,
'{"fDriveBiasFront":0.5,"fBrakeForce":0.78249719070799,"fSuspensionRaise":0.1999999
9999998}'),
('panamera17t', '1b90ac573a51fe40c589470f714ee46aa9bf38ac', 'SA14325 ', 0, 0,
0, NULL),
('panamera17t', '1b90ac573a51fe40c589470f714ee46aa9bf38ac', 'SAFV4325', 0, 0,
0, NULL),
('panamera17t', '991d33fe466049bc3feaca2ce11e278eee9cc158', 'SA14325 ', 0, 0,
466.52, '{"fBrakeForce":1.87602105027555}'),
('panamera17t', '991d33fe466049bc3feaca2ce11e278eee9cc158', 'SAFV4325', 0, 0,
0, NULL),
('penumbra2', '1b90ac573a51fe40c589470f714ee46aa9bf38ac', 'QY22801 ', 0, 0,
0, NULL),
('penumbra2', 'f175c09e5a939ba394d774c645ddc115feb63668', 'CK94600 ', 0, 0,
40.18,
'{"fInitialDriveForce":0.6549999952316,"fDriveBiasFront":0.5,"fBrakeForce":3.100000
02384185}'),
('qu', '387eeb02da852043979b8f4b764e0258d9b7c65e', 'QQCG1241', 0, 0, 46.82,
'{"fBrakeForce":1.89320634976075}'),
('r32', '05cb272b9c2cb6604e710c77927b6603aa9902b6', 'BN39211 ', 0, 0, 757.24,
'{"fBrakeForce":1.63536048765975}'),
('r820', 'bc8f2cd26ad41e23f49e40a7322031d24e0032d5', 'ASCV4329', 0, 0, 55.16,
'{"fBrakeForce":1.94400820682144}'),
('raptor', '76554dee8c336acc1034d1d160e542c392c7629b', 'VY75528 ', 0, 0,
80.74,
'{"fInitialDriveForce":0.69499998688695,"fDriveBiasFront":0.5,"fBrakeForce":3.19168
853072124}'),
('rebla', '1b90ac573a51fe40c589470f714ee46aa9bf38ac', 'MD76224 ', 0, 0, 0,
NULL),
('rmodm3e36', 'a58707062edd85ef88383fc25f9207ee6e50f3e4', 'AOXC2455', 0, 0,
0, NULL),
('rmodm4gts', 'bc8f2cd26ad41e23f49e40a7322031d24e0032d5', 'PCLJ9134', 0, 0,
1823.16, '[]'),
('rmodx6', 'fec4ff3074b3f3c04ebadd326d3d097c76ff4a05', 'RMXX4241', 0, 0, 0,
NULL),
('rs3', '1b90ac573a51fe40c589470f714ee46aa9bf38ac', 'RS91191 ', 0, 0, 26,
'{"fBrakeForce":1.94788955403689}'),
('rs3', '3eba878208dad45a62df988de2b51ca2e125548b', 'RS91191 ', 0, 0, 663.48,
'{"fBrakeForce":1.55439339290468}'),
('rs666', '1b90ac573a51fe40c589470f714ee46aa9bf38ac', 'PQQC3291', 0, 0, 0,
NULL),
('rs666', 'a2ca4098e423eba71e28cc9564c3f688377ec268', 'ACVS2424', 0, 0, 0,
NULL),
('rs666', 'a2ca4098e423eba71e28cc9564c3f688377ec268', 'CECC2121', 0, 0, 0,
NULL),
('rs666', 'a2ca4098e423eba71e28cc9564c3f688377ec268', 'PQQC3291', 0, 0,
566.66, '{"fBrakeForce":1.62004202364282}'),
('rs6abtp', '920ff63cdc24d024d91b4b2a339c90888fb31e0a', 'WGG45329', 0, 0, 0,
NULL),
('rs6abtp', 'a2ca4098e423eba71e28cc9564c3f688377ec268', 'SNG4535 ', 0, 0, 0,
NULL),
('rs7c8', 'e16b4b30a90d01ec881f6d3e43cb03a9502fc047', 'HRBC3454', 0, 0,
234.1, '{"fBrakeForce":1.851316826044}'),
('rt3000', '76554dee8c336acc1034d1d160e542c392c7629b', 'HW70157 ', 0, 0, 99,
'{"fInitialDriveForce":0.71200000643727,"fDriveBiasFront":0.5,"fBrakeForce":2.99461
293083606}'),
('s500', 'edd327a317e69badd354be95aed67533cf86d75d', 'FFWV155 ', 0, 0, 0,
NULL),
('s500', 'edd327a317e69badd354be95aed67533cf86d75d', 'FFWV355 ', 0, 0, 0,
NULL),
('sabregt2', 'f06a91b30c73b3b8a7437025bade15cf64c8eb1d', 'VC51053 ', 0, 0, 0,
'[]'),
('sanctus', '423eaa7554e7fdf4abb9b8b10799168fc6e10c33', 'GN87849 ', 0, 0,
88.12, '{"fBrakeForce":0.99602263525179}'),
('schafter', '00d5e713074cb745e627aa72687bad04f4873d71', 'AE49347 ', 0, 0,
26.9, '[]'),
('schafter', '618755f3fa437e6173bf2ee8b7a7908c9d3c51e8', 'SX98056 ', 0, 0,
37.36, '{"fBrakeForce":0.89780018072443}'),
('schafter', '66d7ade6ce761687b2adf9ec3eacbac96b427dda', 'RN12808 ', 0, 0,
23.74, '[]'),
('schafter', '6716db871dd7018c11c4ad3606be8e4edf2ec87d', 'PM15116 ', 0, 0,
84.82, '{"fBrakeForce":0.89984339260268}'),
('schafter', '76554dee8c336acc1034d1d160e542c392c7629b', 'HE09997 ', 0, 0,
39.04, '[]'),
('schafter', '8ce77d3e4b3a811ccf7d48ec2c1caebe64c97f42', 'HF16845 ', 0, 0,
13.66, '[]'),
('schafter', '8e416878df455f4bb13032736760caec65b3a298', 'OH51871 ', 0, 0,
60.12, '[]'),
('schafter', '8e416878df455f4bb13032736760caec65b3a298', 'WD20870 ', 0, 0,
43.14, '[]'),
('schafter', 'afc0b885567b002d9e1663774b73030641003290', 'FO40489 ', 0, 0,
83.06, '{"fBrakeForce":0.89720220925198}'),
('schafter', 'b39fefe02344a1d702696ede8ba8403d94172a60', 'LZ43206 ', 0, 0,
18.92, '{"fBrakeForce":0.89979228386379}'),
('schafter', 'bc8f2cd26ad41e23f49e40a7322031d24e0032d5', 'XN60884 ', 0, 0,
1.4, '[]'),
('schafter', 'd30022f509d09a2f39d1a62cfecb9123120a5d17', 'NM68817 ', 0, 0,
32.78, '{"fBrakeForce":0.89829393230894}'),
('schafter', 'decb8a9b3abc021d0bbe869d9e28180b2856517e', 'SG96135 ', 0, 0,
8.26, '[]'),
('schafter', 'e5159a161aed704abec2642f02d31360cce59de9', 'YM85536 ', 0, 0,
7.22, '[]'),
('schafter', 'e7c62bd222b7fc392afa3534680340dee238bb8c', 'DD71477 ', 0, 0,
76.54, '{"fBrakeForce":0.89399203636301}'),
('schafter', 'e893747e8dcb516cf46be0887b2d41ec7333a1a6', 'FJ33234 ', 0, 0,
33.02, '{"fBrakeForce":0.89826228600092}'),
('schafter', 'f4e46330330e6323fdfbed936194b41d8a879422', 'FA94439 ', 0, 0,
45.54, '[]'),
('schlagen', 'c7bd58d09ab614bc6958ccb894c6c02cc2a4fc9b', 'WV45675 ', 0, 0,
8.2, '[]'),
('schlagen', 'e16b4b30a90d01ec881f6d3e43cb03a9502fc047', 'WV45675 ', 0, 0,
7.94, '[]'),
('sl65bs', '05cb272b9c2cb6604e710c77927b6603aa9902b6', 'SLC3041 ', 0, 0,
269.96, '{"fBrakeForce":1.82674670956642}'),
('sultan', '2446bc1b4c6538e47410534d9d70f3b8dc501bc6', 'PZT3841 ', 0, 0,
0.52, '[]'),
('sultan', '47a5dc370f88ecd366f35c32ca9eaecf4c3556eb', 'OG99239 ', 150, 4,
297.4,
'{"fInitialDriveForce":0.65999999046323,"fDriveBiasFront":0.5,"fBrakeForce":2.40000
000596046}'),
('sultan', 'a89983a6cc980bf4b0a3dbbc2d797344304782de', 'CGA7471 ', 0, 0,
0.18, '[]'),
('sultan', 'a89983a6cc980bf4b0a3dbbc2d797344304782de', 'VZZ2684 ', 0, 0,
0.56, '[]'),
('sultan', 'a89983a6cc980bf4b0a3dbbc2d797344304782de', 'WPR4686 ', 0, 0,
0.64, '[]'),
('sultan3', 'f175c09e5a939ba394d774c645ddc115feb63668', 'MA29250 ', 0, 0,
55.4,
'{"fInitialDriveForce":0.73849999308583,"fDriveBiasFront":0.5,"fBrakeForce":2.51999
998092651}'),
('t20', '1b90ac573a51fe40c589470f714ee46aa9bf38ac', 'WGELWWG ', 0, 0, 0,
NULL),
('tailgater2', 'cf44ea49b3a479a2f312d33d9be61e03aefc10c7', 'SX02552 ', 0, 0,
71.32, '{"fBrakeForce":2.87432127781349,"fSuspensionRaise":-0.09999999999999}'),
('toros', '81dcab0d4764e7c3af12d6d73fed5ac75e342bbe', 'IE59687 ', 300, 5,
0.28, '[]'),
('vectre', '1b90ac573a51fe40c589470f714ee46aa9bf38ac', 'GS00854 ', 0, 0, 0,
NULL),
('weevil', '134141a235893a1546c38cf25058d5be68278f25', 'JQ44812 ', 0, 0, 0,
NULL),
('weevil', '13c708c568da89c64db3c45293ebe384ab1a29a9', 'GO78259 ', 0, 0,
52.5, '{"fBrakeForce":0.25889157523064}'),
('weevil', '1b90ac573a51fe40c589470f714ee46aa9bf38ac', 'WE59692 ', 0, 0, 0,
NULL),
('weevil', '219a18f10b3f40125ae9cffe81da85da9068d663', 'VD97997 ', 0, 0,
20.2, '{"fBrakeForce":0.25986234546523}'),
('weevil', '30ff86bd3263d650c2eadf72b8787b31703e0c30', 'VU49687 ', 0, 0, 0,
NULL),
('weevil', '39bd366006fb20e7cb760c7a9015919551844d0e', 'ED59700 ', 0, 0, 0,
NULL),
('weevil', '5655fb191bae39539c8f5459853107d5a60fd226', 'BO32092 ', 0, 0, 0,
'[]'),
('weevil', '569a7327149920164b5cb624d6cc773879be719f', 'NJ33075 ', 18, 5,
33.46, '[]'),
('weevil', '663f3374ff9890818b05deb5e581776a22296954', 'UA80353 ', 0, 0, 0,
NULL),
('weevil', '6f5173f7a97210ea50bb51eed249e780bf04dc13', 'UU39043 ', 0, 0, 0,
NULL),
('weevil', '76554dee8c336acc1034d1d160e542c392c7629b', 'CP69791 ', 0, 0,
3.04, '[]'),
('weevil', '9f4c3077775d9f0fcc21086fe98a92a194686032', 'JA75652 ', 0, 0,
1.72, '[]'),
('weevil', 'aaecd5b4d036639c221eb58fcb95fdd1a3e10d7f', 'GE77351 ', 0, 0, 3.4,
'[]'),
('weevil', 'ae7e64f10f7905c8ee329f7cb1ebf92083448b88', 'ID61913 ', 0, 0,
9.78, '[]'),
('weevil', 'b17056aa1e536ceb3774862a0373282724fd1d26', 'EH50505 ', 0, 0, 0,
NULL),
('weevil', 'b30bdabbc5089caa7a344472b53890068e2ed0f6', 'QH17608 ', 0, 0, 0,
NULL),
('weevil', 'b588c480c5a104cb9aa8c0c23201eed952201152', 'OI55541 ', 0, 0, 4,
'[]'),
('weevil', 'c7bd58d09ab614bc6958ccb894c6c02cc2a4fc9b', 'QY83843 ', 0, 0,
3.58, '[]'),
('weevil', 'd6bdf9fd27ac5a5520b06aaab67ebe29b50ebc02', 'OY98145 ', 0, 0, 3.8,
'[]'),
('weevil', 'd6bdf9fd27ac5a5520b06aaab67ebe29b50ebc02', 'RY39378 ', 0, 0,
0.64, '[]'),
('weevil', 'd8c1bf71904b0ca2928696426c23c9f4f2f7bae8', 'ES77446 ', 0, 0, 0,
'[]'),
('weevil', 'dabb1d61f7916b2c9eb1e6f405020fb365879090', 'ED59700 ', 0, 0, 0,
NULL),
('weevil', 'df7dba120eccda92043ed378f2fb7ca45ea33579', 'LO87641 ', 0, 0, 0,
NULL),
('weevil', 'e16b4b30a90d01ec881f6d3e43cb03a9502fc047', 'CP69791 ', 0, 0, 0,
NULL),
('weevil', 'e1f5df153e91e799ddb226c0c2bf3603a5f787bf', 'WE59692 ', 0, 0, 0,
NULL),
('weevil', 'e5159a161aed704abec2642f02d31360cce59de9', 'EH50505 ', 0, 0,
5.24, '[]'),
('weevil', 'f175c09e5a939ba394d774c645ddc115feb63668', 'UT60285 ', 0, 0,
159.94, '[]'),
('weevil', 'f6e266c049295520b274fbf393b51ccc73bffa25', 'SY90474 ', 0, 0, 0,
'[]'),
('weevil', 'f8cea7d94773192d1cfe6eef4e43185ca3d55044', 'PR78770 ', 0, 0,
12.66, '[]'),
('wildtrak', '1b90ac573a51fe40c589470f714ee46aa9bf38ac', 'IG60693 ', 0, 0,
4.82, '[]'),
('wildtrak', '3eba878208dad45a62df988de2b51ca2e125548b', 'LB50791 ', 0, 0,
21.1, '{"fBrakeForce":1.89984528589924}'),
('wildtrak', 'f06a91b30c73b3b8a7437025bade15cf64c8eb1d', 'MT94420 ', 0, 0,
9.42, '[]'),
('windsor', '219a18f10b3f40125ae9cffe81da85da9068d663', 'MG92762 ', 282, 0,
137.56, '[]'),
('x5bmw', 'bc8f2cd26ad41e23f49e40a7322031d24e0032d5', 'NNCV4329', 0, 0,
154.6, '{"fBrakeForce":1.86014902125936}'),
('zr350', '1b90ac573a51fe40c589470f714ee46aa9bf38ac', 'DJ63830 ', 0, 0, 0,
'[]');

-- Dumping structure for table sokac.advanced_vehicles_inspection


CREATE TABLE IF NOT EXISTS `advanced_vehicles_inspection` (
`vehicle` varchar(50) NOT NULL,
`user_id` varchar(55) NOT NULL,
`plate` varchar(50) NOT NULL,
`item` varchar(50) NOT NULL,
`km` int(10) unsigned NOT NULL DEFAULT 0,
`value` double unsigned NOT NULL DEFAULT 0,
`timer` int(10) unsigned NOT NULL DEFAULT 0,
PRIMARY KEY (`vehicle`,`user_id`,`plate`,`item`) USING BTREE
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci;

-- Dumping data for table sokac.advanced_vehicles_inspection: ~0 rows


(approximately)
INSERT INTO `advanced_vehicles_inspection` (`vehicle`, `user_id`, `plate`, `item`,
`km`, `value`, `timer`) VALUES
('vstr', '1b90ac573a51fe40c589470f714ee46aa9bf38ac', 'AASF3333', 'oil', 14,
99.06, 1637163302);

-- Dumping structure for table sokac.advanced_vehicles_services


CREATE TABLE IF NOT EXISTS `advanced_vehicles_services` (
`id` int(10) unsigned NOT NULL AUTO_INCREMENT,
`vehicle` varchar(50) NOT NULL,
`user_id` varchar(55) NOT NULL,
`plate` varchar(50) NOT NULL,
`item` varchar(50) NOT NULL DEFAULT '',
`name` varchar(50) NOT NULL DEFAULT '',
`km` int(11) unsigned NOT NULL DEFAULT 0,
`img` varchar(255) NOT NULL DEFAULT '',
`timer` int(10) unsigned NOT NULL DEFAULT 0,
PRIMARY KEY (`id`) USING BTREE,
KEY `vehicle` (`vehicle`) USING BTREE,
KEY `user_id` (`user_id`) USING BTREE,
KEY `plate` (`plate`) USING BTREE
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci;

-- Dumping data for table sokac.advanced_vehicles_services: ~0 rows (approximately)

-- Dumping structure for table sokac.advanced_vehicles_upgrades


CREATE TABLE IF NOT EXISTS `advanced_vehicles_upgrades` (
`vehicle` varchar(50) NOT NULL,
`user_id` varchar(55) NOT NULL,
`plate` varchar(50) NOT NULL,
`class` varchar(50) NOT NULL,
`item` varchar(50) NOT NULL,
PRIMARY KEY (`vehicle`,`user_id`,`plate`,`class`) USING BTREE
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci;

-- Dumping data for table sokac.advanced_vehicles_upgrades: ~717 rows


(approximately)
INSERT INTO `advanced_vehicles_upgrades` (`vehicle`, `user_id`, `plate`, `class`,
`item`) VALUES
('akuma', 'b17056aa1e536ceb3774862a0373282724fd1d26', 'UE14854 ', 'brakes',
'race_brakes'),
('akuma', 'b17056aa1e536ceb3774862a0373282724fd1d26', 'UE14854 ',
'differential', 'AWD'),
('akuma', 'b17056aa1e536ceb3774862a0373282724fd1d26', 'UE14854 ',
'suspension', 'susp2'),
('akuma', 'b17056aa1e536ceb3774862a0373282724fd1d26', 'UE14854 ', 'turbo',
'garett'),
('akuma', 'cd8a7de220a0e0e88e414ee792ccca099f2d5a18', 'NT65393 ',
'differential', 'AWD'),
('akuma', 'cd8a7de220a0e0e88e414ee792ccca099f2d5a18', 'NT65393 ', 'turbo',
'garett'),
('akuma', 'd8c1bf71904b0ca2928696426c23c9f4f2f7bae8', 'MJ54346 ', 'brakes',
'race_brakes'),
('akuma', 'd8c1bf71904b0ca2928696426c23c9f4f2f7bae8', 'MJ54346 ', 'turbo',
'garett'),
('akuma', 'e9861acab3e2df23331e5f643c826095a453a208', 'VT57039 ', 'brakes',
'race_brakes'),
('akuma', 'e9861acab3e2df23331e5f643c826095a453a208', 'VT57039 ',
'differential', 'AWD'),
('akuma', 'e9861acab3e2df23331e5f643c826095a453a208', 'VT57039 ', 'turbo',
'garett'),
('asbo', '05cb272b9c2cb6604e710c77927b6603aa9902b6', 'EZ01888 ',
'differential', 'AWD'),
('asbo', '05cb272b9c2cb6604e710c77927b6603aa9902b6', 'EZ01888 ',
'suspension', 'susp1'),
('baller4', '76554dee8c336acc1034d1d160e542c392c7629b', 'XP49446 ', 'brakes',
'race_brakes'),
('baller4', '76554dee8c336acc1034d1d160e542c392c7629b', 'XP49446 ',
'differential', 'AWD'),
('baller4', '76554dee8c336acc1034d1d160e542c392c7629b', 'XP49446 ', 'turbo',
'garett'),
('bf400', '3648f3b13d9a6155c296479deeb76b4f8797e5cc', 'WT69570 ', 'brakes',
'race_brakes'),
('bf400', '3648f3b13d9a6155c296479deeb76b4f8797e5cc', 'WT69570 ',
'differential', 'AWD'),
('bf400', '3648f3b13d9a6155c296479deeb76b4f8797e5cc', 'WT69570 ', 'nitro',
'nitrous'),
('bf400', '3648f3b13d9a6155c296479deeb76b4f8797e5cc', 'WT69570 ', 'tires',
'semislick'),
('bf400', '3648f3b13d9a6155c296479deeb76b4f8797e5cc', 'WT69570 ', 'turbo',
'garett'),
('bf400', '39bd366006fb20e7cb760c7a9015919551844d0e', 'ZX94775 ', 'brakes',
'race_brakes'),
('bf400', '39bd366006fb20e7cb760c7a9015919551844d0e', 'ZX94775 ',
'differential', 'AWD'),
('bf400', '39bd366006fb20e7cb760c7a9015919551844d0e', 'ZX94775 ', 'turbo',
'garett'),
('bf400', '6716db871dd7018c11c4ad3606be8e4edf2ec87d', 'FK55909 ', 'brakes',
'race_brakes'),
('bf400', '6716db871dd7018c11c4ad3606be8e4edf2ec87d', 'FK55909 ', 'nitro',
'nitrous'),
('bf400', '6716db871dd7018c11c4ad3606be8e4edf2ec87d', 'FK55909 ', 'turbo',
'garett'),
('bf400', '6a809612394ef5e0b726c5532afc2d906bc52653', 'WB14223 ', 'brakes',
'race_brakes'),
('bf400', '6a809612394ef5e0b726c5532afc2d906bc52653', 'WB14223 ', 'turbo',
'garett'),
('bf400', '76554dee8c336acc1034d1d160e542c392c7629b', 'OU76257 ', 'turbo',
'garett'),
('bf400', '7835f6f2e51976bbc7df5dc4cb5404e5a8e6252c', 'YM12642 ', 'brakes',
'race_brakes'),
('bf400', '7835f6f2e51976bbc7df5dc4cb5404e5a8e6252c', 'YM12642 ',
'differential', 'AWD'),
('bf400', '7835f6f2e51976bbc7df5dc4cb5404e5a8e6252c', 'YM12642 ',
'suspension', 'susp4'),
('bf400', '7835f6f2e51976bbc7df5dc4cb5404e5a8e6252c', 'YM12642 ', 'turbo',
'garett'),
('bf400', '97e81d50767ceecefacf9cf564c4c9e5a8f64249', 'RQ34574 ',
'differential', 'AWD'),
('bf400', '97e81d50767ceecefacf9cf564c4c9e5a8f64249', 'RQ34574 ', 'turbo',
'garett'),
('bf400', '991d33fe466049bc3feaca2ce11e278eee9cc158', 'YM96879 ',
'differential', 'AWD'),
('bf400', '991d33fe466049bc3feaca2ce11e278eee9cc158', 'YM96879 ', 'turbo',
'garett'),
('bf400', 'bd03f5eb3362f4dd061109ea4ad30a3a2948845e', 'CV94393 ', 'nitro',
'nitrous'),
('bf400', 'd6bdf9fd27ac5a5520b06aaab67ebe29b50ebc02', 'KD78170 ', 'turbo',
'garett'),
('bf400', 'e16b4b30a90d01ec881f6d3e43cb03a9502fc047', 'XN35068 ', 'turbo',
'garett'),
('bf400', 'e5159a161aed704abec2642f02d31360cce59de9', 'WJ26658 ',
'differential', 'AWD'),
('bf400', 'e5159a161aed704abec2642f02d31360cce59de9', 'WJ26658 ', 'turbo',
'garett'),
('bf400', 'e7c62bd222b7fc392afa3534680340dee238bb8c', 'TH35702 ', 'brakes',
'race_brakes'),
('bf400', 'e7c62bd222b7fc392afa3534680340dee238bb8c', 'TH35702 ',
'differential', 'AWD'),
('bf400', 'e7c62bd222b7fc392afa3534680340dee238bb8c', 'TH35702 ', 'turbo',
'garett'),
('bf400', 'f4e46330330e6323fdfbed936194b41d8a879422', 'CS74549 ', 'turbo',
'garett'),
('bf400', 'f6e266c049295520b274fbf393b51ccc73bffa25', 'GB85322 ', 'nitro',
'nitrous'),
('blazer', '0f28a0a47448e0e1788dc8ee3b97145e437c8b28', 'JA38317 ', 'brakes',
'race_brakes'),
('blazer', '0f28a0a47448e0e1788dc8ee3b97145e437c8b28', 'JA38317 ',
'differential', 'AWD'),
('blazer', 'decb8a9b3abc021d0bbe869d9e28180b2856517e', 'EW84867 ', 'brakes',
'race_brakes'),
('blazer', 'decb8a9b3abc021d0bbe869d9e28180b2856517e', 'EW84867 ',
'differential', 'AWD'),
('blazer', 'decb8a9b3abc021d0bbe869d9e28180b2856517e', 'EW84867 ', 'turbo',
'garett'),
('brioso', '14b5f4d340f944b6ed6ed84cad25c59787639a8e', 'MR91279 ', 'brakes',
'race_brakes'),
('brioso', '14b5f4d340f944b6ed6ed84cad25c59787639a8e', 'MR91279 ',
'differential', 'AWD'),
('brioso', '14b5f4d340f944b6ed6ed84cad25c59787639a8e', 'MR91279 ', 'nitro',
'nitrous'),
('brioso', '14b5f4d340f944b6ed6ed84cad25c59787639a8e', 'MR91279 ', 'turbo',
'garett'),
('brioso', '35b6b5cd96a69eb54a33e6bb13dc23e53ee4ff20', 'II51958 ', 'brakes',
'race_brakes'),
('brioso', '35b6b5cd96a69eb54a33e6bb13dc23e53ee4ff20', 'II51958 ',
'differential', 'AWD'),
('brioso', '35b6b5cd96a69eb54a33e6bb13dc23e53ee4ff20', 'II51958 ', 'nitro',
'nitrous'),
('brioso', '35b6b5cd96a69eb54a33e6bb13dc23e53ee4ff20', 'II51958 ', 'turbo',
'garett'),
('brioso', '39bd366006fb20e7cb760c7a9015919551844d0e', 'IO29584 ', 'brakes',
'race_brakes'),
('brioso', '39bd366006fb20e7cb760c7a9015919551844d0e', 'IO29584 ',
'differential', 'AWD'),
('brioso', '39bd366006fb20e7cb760c7a9015919551844d0e', 'IO29584 ',
'suspension', 'susp1'),
('brioso', '39bd366006fb20e7cb760c7a9015919551844d0e', 'IO29584 ', 'tires',
'semislick'),
('brioso', '39bd366006fb20e7cb760c7a9015919551844d0e', 'IO29584 ', 'turbo',
'garett'),
('brioso', 'a6ca5475d196f1c95ea097e3e6d1c506d3ba7411', 'HE60696 ', 'brakes',
'race_brakes'),
('brioso', 'a6ca5475d196f1c95ea097e3e6d1c506d3ba7411', 'HE60696 ',
'differential', 'AWD'),
('brioso', 'a6ca5475d196f1c95ea097e3e6d1c506d3ba7411', 'HE60696 ', 'turbo',
'garett'),
('brioso', 'd9ed6920dd9be2b38f86b8e5491f69c9fed0f646', 'GW61306 ', 'brakes',
'race_brakes'),
('brioso', 'd9ed6920dd9be2b38f86b8e5491f69c9fed0f646', 'GW61306 ',
'differential', 'AWD'),
('brioso', 'd9ed6920dd9be2b38f86b8e5491f69c9fed0f646', 'GW61306 ', 'turbo',
'garett'),
('brioso', 'dab159f59e2ff82e160e6fb2cfcd5aee77d64269', 'QH90614 ', 'brakes',
'race_brakes'),
('brioso', 'dab159f59e2ff82e160e6fb2cfcd5aee77d64269', 'QH90614 ',
'differential', 'AWD'),
('brioso', 'e5159a161aed704abec2642f02d31360cce59de9', 'TO05977 ', 'brakes',
'race_brakes'),
('brioso', 'e5159a161aed704abec2642f02d31360cce59de9', 'TO05977 ',
'differential', 'AWD'),
('brioso', 'e5159a161aed704abec2642f02d31360cce59de9', 'TO05977 ', 'nitro',
'nitrous'),
('brioso', 'f175c09e5a939ba394d774c645ddc115feb63668', 'ED33548 ', 'nitro',
'nitrous'),
('brioso', 'f1d996c4661c386cbb7e3427adb3455c0b99324c', 'KP82851 ',
'suspension', 'susp2'),
('brioso', 'f1d996c4661c386cbb7e3427adb3455c0b99324c', 'KP82851 ', 'tires',
'slick'),
('brioso', 'f1d996c4661c386cbb7e3427adb3455c0b99324c', 'KP82851 ', 'turbo',
'garett'),
('brioso', 'f6e266c049295520b274fbf393b51ccc73bffa25', 'NP18914 ', 'brakes',
'race_brakes'),
('brioso', 'f6e266c049295520b274fbf393b51ccc73bffa25', 'NP18914 ',
'differential', 'AWD'),
('brioso', 'f6e266c049295520b274fbf393b51ccc73bffa25', 'NP18914 ', 'nitro',
'nitrous'),
('c63s', '1b90ac573a51fe40c589470f714ee46aa9bf38ac', 'SG74312 ', 'turbo',
'garett'),
('calico', '76554dee8c336acc1034d1d160e542c392c7629b', 'FL24965 ', 'brakes',
'race_brakes'),
('calico', '76554dee8c336acc1034d1d160e542c392c7629b', 'FL24965 ', 'turbo',
'garett'),
('carbon', 'd0e8bf5e2cb5667e17a5a44b4bdf50873b3bb490', 'SH71140 ', 'brakes',
'race_brakes'),
('carbon', 'd0e8bf5e2cb5667e17a5a44b4bdf50873b3bb490', 'SH71140 ', 'turbo',
'garett'),
('carboniz', '387eeb02da852043979b8f4b764e0258d9b7c65e', 'JN20149 ',
'brakes', 'race_brakes'),
('carboniz', '387eeb02da852043979b8f4b764e0258d9b7c65e', 'JN20149 ',
'differential', 'AWD'),
('carboniz', '387eeb02da852043979b8f4b764e0258d9b7c65e', 'JN20149 ', 'turbo',
'garett'),
('carboniz', 'bc8f2cd26ad41e23f49e40a7322031d24e0032d5', 'ET76581 ',
'brakes', 'race_brakes'),
('carboniz', 'bc8f2cd26ad41e23f49e40a7322031d24e0032d5', 'ET76581 ',
'differential', 'AWD'),
('carboniz', 'bc8f2cd26ad41e23f49e40a7322031d24e0032d5', 'ET76581 ',
'suspension', 'susp1'),
('carboniz', 'bc8f2cd26ad41e23f49e40a7322031d24e0032d5', 'ET76581 ', 'tires',
'slick'),
('carboniz', 'bc8f2cd26ad41e23f49e40a7322031d24e0032d5', 'ET76581 ', 'turbo',
'garett'),
('cliffhanger', '39bd366006fb20e7cb760c7a9015919551844d0e', 'OM57185 ',
'brakes', 'race_brakes'),
('cliffhanger', '39bd366006fb20e7cb760c7a9015919551844d0e', 'OM57185 ',
'differential', 'AWD'),
('cliffhanger', '39bd366006fb20e7cb760c7a9015919551844d0e', 'OM57185 ',
'turbo', 'garett'),
('cliffhanger', '6c5c779370d42c7e1427c0c9f8bc78b11a0b3218', 'DV23410 ',
'brakes', 'race_brakes'),
('cliffhanger', '6c5c779370d42c7e1427c0c9f8bc78b11a0b3218', 'DV23410 ',
'differential', 'AWD'),
('cliffhanger', '6c5c779370d42c7e1427c0c9f8bc78b11a0b3218', 'DV23410 ',
'turbo', 'garett'),
('cliffhanger', '76554dee8c336acc1034d1d160e542c392c7629b', 'PM35452 ',
'brakes', 'race_brakes'),
('cliffhanger', '76554dee8c336acc1034d1d160e542c392c7629b', 'PM35452 ',
'differential', 'AWD'),
('cliffhanger', '76554dee8c336acc1034d1d160e542c392c7629b', 'PM35452 ',
'turbo', 'garett'),
('club', '13c708c568da89c64db3c45293ebe384ab1a29a9', 'FX70867 ', 'nitro',
'nitrous'),
('club', '1fd0bf859e1aa2249c5aa1847435edfe4dbb5a55', 'BA60588 ', 'brakes',
'race_brakes'),
('club', '1fd0bf859e1aa2249c5aa1847435edfe4dbb5a55', 'BA60588 ',
'differential', 'AWD'),
('club', '1fd0bf859e1aa2249c5aa1847435edfe4dbb5a55', 'BA60588 ', 'nitro',
'nitrous'),
('club', '1fd0bf859e1aa2249c5aa1847435edfe4dbb5a55', 'BA60588 ', 'turbo',
'garett'),
('club', '53b302ab1295c78f0e3db71e23c64cd96113bf69', 'XO92976 ', 'brakes',
'race_brakes'),
('club', '53b302ab1295c78f0e3db71e23c64cd96113bf69', 'XO92976 ',
'differential', 'AWD'),
('club', '53b302ab1295c78f0e3db71e23c64cd96113bf69', 'XO92976 ', 'turbo',
'garett'),
('club', '71626fca0e7a0725e80135818af5121792769f63', 'DG07056 ', 'brakes',
'race_brakes'),
('club', '71626fca0e7a0725e80135818af5121792769f63', 'DG07056 ',
'differential', 'AWD'),
('club', '71626fca0e7a0725e80135818af5121792769f63', 'DG07056 ', 'turbo',
'garett'),
('club', 'ae1452ba4e9986f5ec67dd18714d811b0f48eb22', 'ED10341 ', 'brakes',
'race_brakes'),
('club', 'ae1452ba4e9986f5ec67dd18714d811b0f48eb22', 'ED10341 ',
'differential', 'AWD'),
('club', 'ae1452ba4e9986f5ec67dd18714d811b0f48eb22', 'ED10341 ', 'nitro',
'nitrous'),
('club', 'bfee4d51338a8c4a462305c79525a3fa1ebebbba', 'UP97835 ', 'turbo',
'garett'),
('club', 'decb8a9b3abc021d0bbe869d9e28180b2856517e', 'RU24323 ', 'brakes',
'race_brakes'),
('club', 'decb8a9b3abc021d0bbe869d9e28180b2856517e', 'RU24323 ',
'differential', 'AWD'),
('club', 'decb8a9b3abc021d0bbe869d9e28180b2856517e', 'RU24323 ', 'turbo',
'garett'),
('club', 'e66820e595e7ddad3387f6643b69d7d0a0715855', 'UY87804 ', 'brakes',
'race_brakes'),
('club', 'e66820e595e7ddad3387f6643b69d7d0a0715855', 'UY87804 ',
'differential', 'AWD'),
('club', 'e66820e595e7ddad3387f6643b69d7d0a0715855', 'UY87804 ', 'nitro',
'nitrous'),
('club', 'e66820e595e7ddad3387f6643b69d7d0a0715855', 'UY87804 ', 'turbo',
'garett'),
('club', 'f06a91b30c73b3b8a7437025bade15cf64c8eb1d', 'UP97835 ', 'brakes',
'race_brakes'),
('club', 'f06a91b30c73b3b8a7437025bade15cf64c8eb1d', 'UP97835 ',
'differential', 'AWD'),
('club', 'f97e1684099f5c38b41f20dcd5439fae270ab7ba', 'ZC90893 ', 'brakes',
'race_brakes'),
('club', 'f97e1684099f5c38b41f20dcd5439fae270ab7ba', 'ZC90893 ',
'differential', 'AWD'),
('club', 'f97e1684099f5c38b41f20dcd5439fae270ab7ba', 'ZC90893 ', 'nitro',
'nitrous'),
('club', 'f97e1684099f5c38b41f20dcd5439fae270ab7ba', 'ZC90893 ', 'turbo',
'garett'),
('coquette4', '1b90ac573a51fe40c589470f714ee46aa9bf38ac', 'IE25896 ', 'v10',
'v10'),
('coquette4', '1b90ac573a51fe40c589470f714ee46aa9bf38ac', 'NX74298 ', 'v10',
'v10'),
('coquette4', '1b90ac573a51fe40c589470f714ee46aa9bf38ac', 'UM81515 ', 'v10',
'v10'),
('coquette4', '393c03be23b4c8ef608725ca85ed3dd765bfd79f', 'HG82580 ',
'brakes', 'race_brakes'),
('coquette4', '393c03be23b4c8ef608725ca85ed3dd765bfd79f', 'HG82580 ',
'differential', 'AWD'),
('coquette4', '393c03be23b4c8ef608725ca85ed3dd765bfd79f', 'HG82580 ',
'suspension', 'susp2'),
('coquette4', '393c03be23b4c8ef608725ca85ed3dd765bfd79f', 'HG82580 ',
'turbo', 'garett'),
('coquette4', '4c29c63603a7f8f6e193a159c34f3f75dc9d7d2a', 'VQ12116 ',
'brakes', 'race_brakes'),
('coquette4', '4c29c63603a7f8f6e193a159c34f3f75dc9d7d2a', 'VQ12116 ',
'differential', 'AWD'),
('coquette4', '4c29c63603a7f8f6e193a159c34f3f75dc9d7d2a', 'VQ12116 ',
'turbo', 'garett'),
('coquette4', '76554dee8c336acc1034d1d160e542c392c7629b', 'VQ12116 ',
'brakes', 'race_brakes'),
('coquette4', '76554dee8c336acc1034d1d160e542c392c7629b', 'VQ12116 ',
'differential', 'AWD'),
('coquette4', '76554dee8c336acc1034d1d160e542c392c7629b', 'VQ12116 ',
'turbo', 'garett'),
('coquette4', 'bb61bb3fdca74daa8bb954b9115123a53592d84a', 'PR25897 ',
'differential', 'AWD'),
('coquette4', 'bb61bb3fdca74daa8bb954b9115123a53592d84a', 'PR25897 ',
'nitro', 'nitrous'),
('coquette4', 'bb61bb3fdca74daa8bb954b9115123a53592d84a', 'PR25897 ',
'turbo', 'garett'),
('coquette4', 'e16b4b30a90d01ec881f6d3e43cb03a9502fc047', 'WI28001 ',
'differential', 'AWD'),
('coquette4', 'f5ce80aabffa17b3dad593f6c29befc25e94f116', 'VI87756 ',
'brakes', 'race_brakes'),
('coquette4', 'f5ce80aabffa17b3dad593f6c29befc25e94f116', 'VI87756 ',
'differential', 'AWD'),
('coquette4', 'f5ce80aabffa17b3dad593f6c29befc25e94f116', 'VI87756 ',
'suspension', 'susp1'),
('coquette4', 'f5ce80aabffa17b3dad593f6c29befc25e94f116', 'VI87756 ',
'turbo', 'garett'),
('dubsta', '39bd366006fb20e7cb760c7a9015919551844d0e', 'QZ15401 ', 'nitro',
'nitrous'),
('dubsta', '39bd366006fb20e7cb760c7a9015919551844d0e', 'QZ15401 ', 'turbo',
'garett'),
('dubsta', '62b5d5e10cb07a5e3f398f69977f47881cbae657', 'GC14421 ', 'brakes',
'race_brakes'),
('dubsta', '62b5d5e10cb07a5e3f398f69977f47881cbae657', 'GC14421 ', 'nitro',
'nitrous'),
('dubsta', '62b5d5e10cb07a5e3f398f69977f47881cbae657', 'GC14421 ', 'turbo',
'garett'),
('elegy', '05cb272b9c2cb6604e710c77927b6603aa9902b6', 'GR87547 ', 'brakes',
'race_brakes'),
('elegy', '05cb272b9c2cb6604e710c77927b6603aa9902b6', 'GR87547 ',
'differential', 'AWD'),
('elegy', '05cb272b9c2cb6604e710c77927b6603aa9902b6', 'GR87547 ', 'turbo',
'garett'),
('elegy', '15d7e7f81ac6353f33ae9dd5b1f0567730f80a68', 'NL78424 ', 'brakes',
'race_brakes'),
('elegy', '15d7e7f81ac6353f33ae9dd5b1f0567730f80a68', 'NL78424 ', 'nitro',
'nitrous'),
('elegy', '15d7e7f81ac6353f33ae9dd5b1f0567730f80a68', 'NL78424 ', 'turbo',
'garett'),
('elegy', '1f55d6bc52f5dd3823c9fceb2c8c203f34e4c3a8', 'GR87547 ', 'brakes',
'race_brakes'),
('elegy', '1f55d6bc52f5dd3823c9fceb2c8c203f34e4c3a8', 'GR87547 ', 'turbo',
'garett'),
('elegy', '219a18f10b3f40125ae9cffe81da85da9068d663', 'MV45432 ', 'brakes',
'race_brakes'),
('elegy', '219a18f10b3f40125ae9cffe81da85da9068d663', 'MV45432 ',
'differential', 'AWD'),
('elegy', '219a18f10b3f40125ae9cffe81da85da9068d663', 'MV45432 ', 'nitro',
'nitrous'),
('elegy', '219a18f10b3f40125ae9cffe81da85da9068d663', 'MV45432 ', 'turbo',
'garett'),
('elegy', '569a7327149920164b5cb624d6cc773879be719f', 'KU30034 ',
'differential', 'AWD'),
('elegy', '569a7327149920164b5cb624d6cc773879be719f', 'KU30034 ', 'turbo',
'garett'),
('everon', '219a18f10b3f40125ae9cffe81da85da9068d663', 'NX15917 ', 'brakes',
'race_brakes'),
('everon', '219a18f10b3f40125ae9cffe81da85da9068d663', 'NX15917 ', 'turbo',
'garett'),
('everon', '991d33fe466049bc3feaca2ce11e278eee9cc158', 'HU90876 ', 'brakes',
'race_brakes'),
('everon', 'e5159a161aed704abec2642f02d31360cce59de9', 'TL01808 ', 'brakes',
'race_brakes'),
('everon', 'e5159a161aed704abec2642f02d31360cce59de9', 'TL01808 ',
'differential', 'AWD'),
('everon', 'e5159a161aed704abec2642f02d31360cce59de9', 'TL01808 ', 'nitro',
'nitrous'),
('everon', 'e5159a161aed704abec2642f02d31360cce59de9', 'TL01808 ', 'turbo',
'garett'),
('freecrawler', '66d7ade6ce761687b2adf9ec3eacbac96b427dda', 'JH47827 ',
'brakes', 'race_brakes'),
('freecrawler', '66d7ade6ce761687b2adf9ec3eacbac96b427dda', 'JH47827 ',
'differential', 'AWD'),
('freecrawler', '66d7ade6ce761687b2adf9ec3eacbac96b427dda', 'JH47827 ',
'turbo', 'garett'),
('futo2', '569a7327149920164b5cb624d6cc773879be719f', 'DU85760 ', 'nitro',
'nitrous'),
('futo2', '8598edb09b8ce2bd01296b92685c368056833a5c', 'DU85760 ', 'brakes',
'race_brakes'),
('futo2', '8598edb09b8ce2bd01296b92685c368056833a5c', 'DU85760 ',
'differential', 'AWD'),
('futo2', '8598edb09b8ce2bd01296b92685c368056833a5c', 'DU85760 ', 'turbo',
'garett'),
('futo2', 'bfee4d51338a8c4a462305c79525a3fa1ebebbba', 'MV82179 ', 'turbo',
'garett'),
('futo2', 'decb8a9b3abc021d0bbe869d9e28180b2856517e', 'DU85760 ', 'nitro',
'nitrous'),
('jester4', '0078bff1d9a990d2a3bd7559a2bf7e0b942dc0f1', 'HE65835 ', 'brakes',
'race_brakes'),
('jester4', '0078bff1d9a990d2a3bd7559a2bf7e0b942dc0f1', 'HE65835 ',
'differential', 'AWD'),
('jester4', '0078bff1d9a990d2a3bd7559a2bf7e0b942dc0f1', 'HE65835 ', 'nitro',
'nitrous'),
('jester4', '0078bff1d9a990d2a3bd7559a2bf7e0b942dc0f1', 'HE65835 ', 'turbo',
'garett'),
('jester4', '00d5e713074cb745e627aa72687bad04f4873d71', 'ZL65720 ', 'brakes',
'race_brakes'),
('jester4', '00d5e713074cb745e627aa72687bad04f4873d71', 'ZL65720 ',
'differential', 'AWD'),
('jester4', '00d5e713074cb745e627aa72687bad04f4873d71', 'ZL65720 ', 'nitro',
'nitrous'),
('jester4', '00d5e713074cb745e627aa72687bad04f4873d71', 'ZL65720 ', 'turbo',
'garett'),
('jester4', '018de90794920a3e0aa7b8169801dafe8e2961a4', 'OZ82171 ', 'brakes',
'race_brakes'),
('jester4', '018de90794920a3e0aa7b8169801dafe8e2961a4', 'OZ82171 ',
'differential', 'AWD'),
('jester4', '018de90794920a3e0aa7b8169801dafe8e2961a4', 'OZ82171 ', 'nitro',
'nitrous'),
('jester4', '018de90794920a3e0aa7b8169801dafe8e2961a4', 'OZ82171 ', 'turbo',
'garett'),
('jester4', '047f8e33bf7ef9ba4989ef1901a8befedcae3476', 'KY15199 ', 'brakes',
'race_brakes'),
('jester4', '052423a05c42e8200b85466e765dfdc1b4b3ef1c', 'BM56639 ',
'differential', 'AWD'),
('jester4', '061d57776f1f860e65c338405c60c744cf0f5fab', 'KK77310 ', 'brakes',
'race_brakes'),
('jester4', '061d57776f1f860e65c338405c60c744cf0f5fab', 'KK77310 ',
'differential', 'AWD'),
('jester4', '061d57776f1f860e65c338405c60c744cf0f5fab', 'KK77310 ', 'nitro',
'nitrous'),
('jester4', '061d57776f1f860e65c338405c60c744cf0f5fab', 'KK77310 ', 'turbo',
'garett'),
('jester4', '06d7201fb0e6cf01ece48863b7e560865dd9bc61', 'CZ90753 ', 'brakes',
'race_brakes'),
('jester4', '06d7201fb0e6cf01ece48863b7e560865dd9bc61', 'CZ90753 ',
'differential', 'AWD'),
('jester4', '06d7201fb0e6cf01ece48863b7e560865dd9bc61', 'CZ90753 ', 'nitro',
'nitrous'),
('jester4', '06d7201fb0e6cf01ece48863b7e560865dd9bc61', 'CZ90753 ', 'turbo',
'garett'),
('jester4', '0814ded30d03cb4cf9ac99a26ff48ea06148a618', 'KS74777 ', 'brakes',
'race_brakes'),
('jester4', '0814ded30d03cb4cf9ac99a26ff48ea06148a618', 'KS74777 ',
'differential', 'AWD'),
('jester4', '0814ded30d03cb4cf9ac99a26ff48ea06148a618', 'KS74777 ', 'turbo',
'garett'),
('jester4', '09617bdb0337a709860acc13b58c584a6e509de4', 'MB91278 ', 'brakes',
'race_brakes'),
('jester4', '09617bdb0337a709860acc13b58c584a6e509de4', 'MB91278 ',
'differential', 'AWD'),
('jester4', '09617bdb0337a709860acc13b58c584a6e509de4', 'MB91278 ', 'nitro',
'nitrous'),
('jester4', '09617bdb0337a709860acc13b58c584a6e509de4', 'MB91278 ', 'turbo',
'garett'),
('jester4', '0a01001f1e5085124853f381bc0d89ea62d7ffc4', 'ZN53125 ', 'brakes',
'race_brakes'),
('jester4', '0a01001f1e5085124853f381bc0d89ea62d7ffc4', 'ZN53125 ',
'differential', 'AWD'),
('jester4', '0a01001f1e5085124853f381bc0d89ea62d7ffc4', 'ZN53125 ', 'nitro',
'nitrous'),
('jester4', '0a01001f1e5085124853f381bc0d89ea62d7ffc4', 'ZN53125 ', 'turbo',
'garett'),
('jester4', '0f9a500c8fb07a6ec4ab6dbd40eb1c64cef65340', 'AP88099 ', 'brakes',
'race_brakes'),
('jester4', '0f9a500c8fb07a6ec4ab6dbd40eb1c64cef65340', 'AP88099 ',
'differential', 'AWD'),
('jester4', '0f9a500c8fb07a6ec4ab6dbd40eb1c64cef65340', 'AP88099 ', 'turbo',
'garett'),
('jester4', '13c708c568da89c64db3c45293ebe384ab1a29a9', 'BF42057 ', 'brakes',
'race_brakes'),
('jester4', '13c708c568da89c64db3c45293ebe384ab1a29a9', 'BF42057 ',
'differential', 'AWD'),
('jester4', '13c708c568da89c64db3c45293ebe384ab1a29a9', 'BF42057 ', 'nitro',
'nitrous'),
('jester4', '13c708c568da89c64db3c45293ebe384ab1a29a9', 'BF42057 ', 'turbo',
'garett'),
('jester4', '14e3b739f6787bcb1cfc5f84df7105743fff970c', 'RJ86823 ', 'brakes',
'race_brakes'),
('jester4', '14e3b739f6787bcb1cfc5f84df7105743fff970c', 'RJ86823 ',
'differential', 'AWD'),
('jester4', '14e3b739f6787bcb1cfc5f84df7105743fff970c', 'RJ86823 ', 'nitro',
'nitrous'),
('jester4', '14e3b739f6787bcb1cfc5f84df7105743fff970c', 'RJ86823 ', 'turbo',
'garett'),
('jester4', '15fae4a5fc6f14f44004f7b9bc61c510f1cc6a7f', 'LB83490 ', 'brakes',
'race_brakes'),
('jester4', '15fae4a5fc6f14f44004f7b9bc61c510f1cc6a7f', 'LB83490 ',
'differential', 'AWD'),
('jester4', '15fae4a5fc6f14f44004f7b9bc61c510f1cc6a7f', 'LB83490 ', 'nitro',
'nitrous'),
('jester4', '15fae4a5fc6f14f44004f7b9bc61c510f1cc6a7f', 'LB83490 ', 'turbo',
'garett'),
('jester4', '16373412a9d5336f21a2d3f1e07c1275b7a9ec80', 'RE66208 ', 'brakes',
'race_brakes'),
('jester4', '16373412a9d5336f21a2d3f1e07c1275b7a9ec80', 'RE66208 ',
'differential', 'AWD'),
('jester4', '16373412a9d5336f21a2d3f1e07c1275b7a9ec80', 'RE66208 ', 'nitro',
'nitrous'),
('jester4', '16373412a9d5336f21a2d3f1e07c1275b7a9ec80', 'RE66208 ', 'turbo',
'garett'),
('jester4', '171aac385a1caad4e6124ecbe70e4124695f6387', 'YI58092 ', 'brakes',
'race_brakes'),
('jester4', '171aac385a1caad4e6124ecbe70e4124695f6387', 'YI58092 ',
'differential', 'AWD'),
('jester4', '171aac385a1caad4e6124ecbe70e4124695f6387', 'YI58092 ', 'nitro',
'nitrous'),
('jester4', '171aac385a1caad4e6124ecbe70e4124695f6387', 'YI58092 ', 'turbo',
'garett'),
('jester4', '171aac385a1caad4e6124ecbe70e4124695f6387', 'YZ30396 ', 'brakes',
'race_brakes'),
('jester4', '171aac385a1caad4e6124ecbe70e4124695f6387', 'YZ30396 ',
'differential', 'AWD'),
('jester4', '171aac385a1caad4e6124ecbe70e4124695f6387', 'YZ30396 ', 'nitro',
'nitrous'),
('jester4', '171aac385a1caad4e6124ecbe70e4124695f6387', 'YZ30396 ', 'turbo',
'garett'),
('jester4', '176a7fad7c0d1d32acdd26f9178f643d88bb4580', 'II01803 ', 'brakes',
'race_brakes'),
('jester4', '176a7fad7c0d1d32acdd26f9178f643d88bb4580', 'II01803 ', 'nitro',
'nitrous'),
('jester4', '176a7fad7c0d1d32acdd26f9178f643d88bb4580', 'II01803 ', 'turbo',
'garett'),
('jester4', '18643d6ca0953b729e87d1a5fa7ad4164f04db70', 'LC58208 ', 'brakes',
'race_brakes'),
('jester4', '18643d6ca0953b729e87d1a5fa7ad4164f04db70', 'LC58208 ',
'differential', 'AWD'),
('jester4', '18643d6ca0953b729e87d1a5fa7ad4164f04db70', 'LC58208 ', 'turbo',
'garett'),
('jester4', '1907389f349f5952cc7d6098e33bb40fe8e31954', 'WQ31803 ', 'brakes',
'race_brakes'),
('jester4', '1907389f349f5952cc7d6098e33bb40fe8e31954', 'WQ31803 ',
'differential', 'AWD'),
('jester4', '1907389f349f5952cc7d6098e33bb40fe8e31954', 'WQ31803 ', 'turbo',
'garett'),
('jester4', '1ddd8c2e21cee62061c5dac70a195cdb50b1ef27', 'GF09805 ',
'differential', 'AWD'),
('jester4', '1ddd8c2e21cee62061c5dac70a195cdb50b1ef27', 'GF09805 ', 'turbo',
'garett'),
('jester4', '1ef4b4b66ed61aac879e1a26667eea4f54ada839', 'MA77850 ', 'brakes',
'race_brakes'),
('jester4', '1ef4b4b66ed61aac879e1a26667eea4f54ada839', 'MA77850 ',
'differential', 'AWD'),
('jester4', '1ef4b4b66ed61aac879e1a26667eea4f54ada839', 'MA77850 ', 'nitro',
'nitrous'),
('jester4', '1ef4b4b66ed61aac879e1a26667eea4f54ada839', 'MA77850 ', 'turbo',
'garett'),
('jester4', '1f55d6bc52f5dd3823c9fceb2c8c203f34e4c3a8', 'XV80391 ', 'brakes',
'race_brakes'),
('jester4', '1f55d6bc52f5dd3823c9fceb2c8c203f34e4c3a8', 'XV80391 ',
'differential', 'AWD'),
('jester4', '1f55d6bc52f5dd3823c9fceb2c8c203f34e4c3a8', 'XV80391 ', 'turbo',
'garett'),
('jester4', '1f59278d8820ae806496ca7a1709a37f6551de40', 'UC56066 ', 'brakes',
'race_brakes'),
('jester4', '1f59278d8820ae806496ca7a1709a37f6551de40', 'UC56066 ',
'differential', 'AWD'),
('jester4', '1f59278d8820ae806496ca7a1709a37f6551de40', 'UC56066 ', 'nitro',
'nitrous'),
('jester4', '1f59278d8820ae806496ca7a1709a37f6551de40', 'UC56066 ', 'turbo',
'garett'),
('jester4', '1fd883d834e00aeac2a0275bff75e82cb8d30240', 'QS00331 ', 'brakes',
'race_brakes'),
('jester4', '1fd883d834e00aeac2a0275bff75e82cb8d30240', 'QS00331 ',
'differential', 'AWD'),
('jester4', '1fd883d834e00aeac2a0275bff75e82cb8d30240', 'QS00331 ', 'nitro',
'nitrous'),
('jester4', '1fd883d834e00aeac2a0275bff75e82cb8d30240', 'QS00331 ', 'turbo',
'garett'),
('jester4', '23dddedd348168015a5932630d65cf4aa4c97da9', 'FR22442 ', 'brakes',
'race_brakes'),
('jester4', '23dddedd348168015a5932630d65cf4aa4c97da9', 'FR22442 ',
'differential', 'AWD'),
('jester4', '23dddedd348168015a5932630d65cf4aa4c97da9', 'FR22442 ', 'nitro',
'nitrous'),
('jester4', '23dddedd348168015a5932630d65cf4aa4c97da9', 'FR22442 ', 'turbo',
'garett'),
('jester4', '25346b00a77f7488176b2e1c949517b1ee5bd5bd', 'BT47734 ', 'brakes',
'race_brakes'),
('jester4', '25346b00a77f7488176b2e1c949517b1ee5bd5bd', 'BT47734 ',
'differential', 'AWD'),
('jester4', '25346b00a77f7488176b2e1c949517b1ee5bd5bd', 'BT47734 ', 'nitro',
'nitrous'),
('jester4', '25346b00a77f7488176b2e1c949517b1ee5bd5bd', 'BT47734 ', 'turbo',
'garett'),
('jester4', '254d668667ddfee654b7d0c807847297695b07c0', 'CH72527 ', 'brakes',
'race_brakes'),
('jester4', '254d668667ddfee654b7d0c807847297695b07c0', 'CH72527 ',
'differential', 'AWD'),
('jester4', '254d668667ddfee654b7d0c807847297695b07c0', 'CH72527 ', 'turbo',
'garett'),
('jester4', '29ee2cff2918facefc897feea0f592d0ab80b4fc', 'HG85569 ', 'nitro',
'nitrous'),
('jester4', '29ee2cff2918facefc897feea0f592d0ab80b4fc', 'HG85569 ', 'turbo',
'garett'),
('jester4', '322afbdb306c6cb050581fb4f8a8b556bdecc521', 'MR98812 ', 'brakes',
'race_brakes'),
('jester4', '322afbdb306c6cb050581fb4f8a8b556bdecc521', 'MR98812 ', 'nitro',
'nitrous'),
('jester4', '322afbdb306c6cb050581fb4f8a8b556bdecc521', 'MR98812 ', 'turbo',
'garett'),
('jester4', '32c8fbda9a0ea9a2be8cb3880e5667bff52c4db4', 'KN84932 ', 'brakes',
'race_brakes'),
('jester4', '32c8fbda9a0ea9a2be8cb3880e5667bff52c4db4', 'KN84932 ',
'differential', 'AWD'),
('jester4', '32c8fbda9a0ea9a2be8cb3880e5667bff52c4db4', 'KN84932 ', 'nitro',
'nitrous'),
('jester4', '32c8fbda9a0ea9a2be8cb3880e5667bff52c4db4', 'KN84932 ', 'turbo',
'garett'),
('jester4', '3346d9f3b8f07e9fd7e5ac1a764bf748cbdc4ff5', 'NR96303 ', 'brakes',
'race_brakes'),
('jester4', '3346d9f3b8f07e9fd7e5ac1a764bf748cbdc4ff5', 'NR96303 ',
'differential', 'AWD'),
('jester4', '3346d9f3b8f07e9fd7e5ac1a764bf748cbdc4ff5', 'NR96303 ', 'turbo',
'garett'),
('jester4', '3379f368257817a2e2c4ce8d29b6b1b31c91e494', 'LX84324 ', 'brakes',
'race_brakes'),
('jester4', '3379f368257817a2e2c4ce8d29b6b1b31c91e494', 'LX84324 ',
'differential', 'AWD'),
('jester4', '3379f368257817a2e2c4ce8d29b6b1b31c91e494', 'LX84324 ', 'nitro',
'nitrous'),
('jester4', '3379f368257817a2e2c4ce8d29b6b1b31c91e494', 'LX84324 ', 'turbo',
'garett'),
('jester4', '3544d2c0d82ebeadff674e8c7d918511b393174d', 'OP28371 ', 'brakes',
'race_brakes'),
('jester4', '3544d2c0d82ebeadff674e8c7d918511b393174d', 'OP28371 ',
'differential', 'AWD'),
('jester4', '3544d2c0d82ebeadff674e8c7d918511b393174d', 'OP28371 ', 'nitro',
'nitrous'),
('jester4', '3544d2c0d82ebeadff674e8c7d918511b393174d', 'OP28371 ', 'turbo',
'garett'),
('jester4', '3648f3b13d9a6155c296479deeb76b4f8797e5cc', 'CU11610 ', 'brakes',
'race_brakes'),
('jester4', '3648f3b13d9a6155c296479deeb76b4f8797e5cc', 'CU11610 ',
'differential', 'AWD'),
('jester4', '3648f3b13d9a6155c296479deeb76b4f8797e5cc', 'CU11610 ', 'nitro',
'nitrous'),
('jester4', '3648f3b13d9a6155c296479deeb76b4f8797e5cc', 'CU11610 ',
'suspension', 'susp2'),
('jester4', '3648f3b13d9a6155c296479deeb76b4f8797e5cc', 'CU11610 ', 'tires',
'semislick'),
('jester4', '3648f3b13d9a6155c296479deeb76b4f8797e5cc', 'CU11610 ', 'turbo',
'garett'),
('jester4', '3e7cc048645861a5d3b14b5cd6df0ee4f89a4175', 'NU24837 ', 'brakes',
'race_brakes'),
('jester4', '3e7cc048645861a5d3b14b5cd6df0ee4f89a4175', 'NU24837 ',
'differential', 'AWD'),
('jester4', '3e7cc048645861a5d3b14b5cd6df0ee4f89a4175', 'NU24837 ', 'nitro',
'nitrous'),
('jester4', '3e7cc048645861a5d3b14b5cd6df0ee4f89a4175', 'NU24837 ', 'turbo',
'garett'),
('jester4', '3eba878208dad45a62df988de2b51ca2e125548b', 'AU39197 ', 'brakes',
'race_brakes'),
('jester4', '3eba878208dad45a62df988de2b51ca2e125548b', 'AU39197 ',
'differential', 'AWD'),
('jester4', '3eba878208dad45a62df988de2b51ca2e125548b', 'AU39197 ', 'nitro',
'nitrous'),
('jester4', '3eba878208dad45a62df988de2b51ca2e125548b', 'AU39197 ', 'turbo',
'garett'),
('jester4', '44a6729737d5e482538d28da3f6fe892f640418a', 'HQ53404 ', 'turbo',
'garett'),
('jester4', '46304b713103d53d434fc82dac5d4f6a46c4d3df', 'AW53633 ', 'turbo',
'garett'),
('jester4', '47a5dc370f88ecd366f35c32ca9eaecf4c3556eb', 'JY67232 ', 'brakes',
'race_brakes'),
('jester4', '47a5dc370f88ecd366f35c32ca9eaecf4c3556eb', 'JY67232 ',
'differential', 'AWD'),
('jester4', '47a5dc370f88ecd366f35c32ca9eaecf4c3556eb', 'JY67232 ', 'turbo',
'garett'),
('jester4', '48b1c563a62401192c3c7af66cec624419c86244', 'JQ89087 ', 'brakes',
'race_brakes'),
('jester4', '48b1c563a62401192c3c7af66cec624419c86244', 'JQ89087 ', 'nitro',
'nitrous'),
('jester4', '48b1c563a62401192c3c7af66cec624419c86244', 'JQ89087 ', 'turbo',
'garett'),
('jester4', '4b86b0affc08fc68ea38b92a7357cb6689b35e4d', 'BP36256 ', 'brakes',
'race_brakes'),
('jester4', '4b86b0affc08fc68ea38b92a7357cb6689b35e4d', 'BP36256 ',
'differential', 'AWD'),
('jester4', '4b86b0affc08fc68ea38b92a7357cb6689b35e4d', 'BP36256 ', 'nitro',
'nitrous'),
('jester4', '522a67df5d568d834abf1b078ef89998f8c01f6d', 'KX54399 ', 'brakes',
'race_brakes'),
('jester4', '522a67df5d568d834abf1b078ef89998f8c01f6d', 'KX54399 ',
'differential', 'AWD'),
('jester4', '522a67df5d568d834abf1b078ef89998f8c01f6d', 'KX54399 ', 'nitro',
'nitrous'),
('jester4', '522a67df5d568d834abf1b078ef89998f8c01f6d', 'KX54399 ', 'turbo',
'garett'),
('jester4', '53b302ab1295c78f0e3db71e23c64cd96113bf69', 'WR76781 ', 'brakes',
'race_brakes'),
('jester4', '53b302ab1295c78f0e3db71e23c64cd96113bf69', 'WR76781 ',
'differential', 'AWD'),
('jester4', '53b302ab1295c78f0e3db71e23c64cd96113bf69', 'WR76781 ', 'turbo',
'garett'),
('jester4', '53d40988416a4a659bb322c30408520203d62c4f', 'RE51596 ', 'brakes',
'race_brakes'),
('jester4', '53d40988416a4a659bb322c30408520203d62c4f', 'RE51596 ',
'differential', 'AWD'),
('jester4', '53d40988416a4a659bb322c30408520203d62c4f', 'RE51596 ', 'nitro',
'nitrous'),
('jester4', '53d40988416a4a659bb322c30408520203d62c4f', 'RE51596 ', 'turbo',
'garett'),
('jester4', '5583bf5a9ea8334b9c42ebdd341730f8285b2f13', 'WD03110 ', 'brakes',
'race_brakes'),
('jester4', '5583bf5a9ea8334b9c42ebdd341730f8285b2f13', 'WD03110 ',
'differential', 'AWD'),
('jester4', '5583bf5a9ea8334b9c42ebdd341730f8285b2f13', 'WD03110 ', 'turbo',
'garett'),
('jester4', '569a7327149920164b5cb624d6cc773879be719f', 'FR84648 ', 'nitro',
'nitrous'),
('jester4', '58fb34fa12ba1a8e4042cf1d487c99d4b2e6ea16', 'ND80621 ', 'brakes',
'race_brakes'),
('jester4', '58fb34fa12ba1a8e4042cf1d487c99d4b2e6ea16', 'ND80621 ',
'differential', 'AWD'),
('jester4', '58fb34fa12ba1a8e4042cf1d487c99d4b2e6ea16', 'ND80621 ', 'nitro',
'nitrous'),
('jester4', '58fb34fa12ba1a8e4042cf1d487c99d4b2e6ea16', 'ND80621 ', 'tires',
'slick'),
('jester4', '58fb34fa12ba1a8e4042cf1d487c99d4b2e6ea16', 'ND80621 ', 'turbo',
'garett'),
('jester4', '594f193654612a03b22a5c3246949e33769c2667', 'HJ77245 ', 'brakes',
'race_brakes'),
('jester4', '594f193654612a03b22a5c3246949e33769c2667', 'HJ77245 ',
'differential', 'AWD'),
('jester4', '594f193654612a03b22a5c3246949e33769c2667', 'HJ77245 ', 'nitro',
'nitrous'),
('jester4', '594f193654612a03b22a5c3246949e33769c2667', 'HJ77245 ', 'turbo',
'garett'),
('jester4', '5ab43fae1701b5fc247b8bcf7133b24cc16f016e', 'KB85825 ', 'brakes',
'race_brakes'),
('jester4', '5ab43fae1701b5fc247b8bcf7133b24cc16f016e', 'KB85825 ',
'differential', 'AWD'),
('jester4', '5ab43fae1701b5fc247b8bcf7133b24cc16f016e', 'KB85825 ', 'nitro',
'nitrous'),
('jester4', '5ab43fae1701b5fc247b8bcf7133b24cc16f016e', 'KB85825 ', 'turbo',
'garett'),
('jester4', '5b088907e437dae7e06bd007fb453e5d61cb2269', 'XD68459 ', 'brakes',
'race_brakes'),
('jester4', '5b088907e437dae7e06bd007fb453e5d61cb2269', 'XD68459 ',
'differential', 'AWD'),
('jester4', '5b088907e437dae7e06bd007fb453e5d61cb2269', 'XD68459 ', 'nitro',
'nitrous'),
('jester4', '5b088907e437dae7e06bd007fb453e5d61cb2269', 'XD68459 ', 'turbo',
'garett'),
('jester4', '5df5f6e85f3673fcfbefd2bcb5c811ac8c5297c7', 'QQ14177 ', 'brakes',
'race_brakes'),
('jester4', '5df5f6e85f3673fcfbefd2bcb5c811ac8c5297c7', 'QQ14177 ',
'differential', 'AWD'),
('jester4', '5df5f6e85f3673fcfbefd2bcb5c811ac8c5297c7', 'QQ14177 ', 'nitro',
'nitrous'),
('jester4', '5df5f6e85f3673fcfbefd2bcb5c811ac8c5297c7', 'QQ14177 ', 'turbo',
'garett'),
('jester4', '61246e20955f34f0a5d5e3870e6d10ca504d7b5b', 'EM61008 ', 'brakes',
'race_brakes'),
('jester4', '61246e20955f34f0a5d5e3870e6d10ca504d7b5b', 'EM61008 ',
'differential', 'AWD'),
('jester4', '61246e20955f34f0a5d5e3870e6d10ca504d7b5b', 'EM61008 ', 'nitro',
'nitrous'),
('jester4', '61246e20955f34f0a5d5e3870e6d10ca504d7b5b', 'EM61008 ', 'turbo',
'garett'),
('jester4', '618755f3fa437e6173bf2ee8b7a7908c9d3c51e8', 'NL44392 ', 'brakes',
'race_brakes'),
('jester4', '618755f3fa437e6173bf2ee8b7a7908c9d3c51e8', 'NL44392 ',
'differential', 'AWD'),
('jester4', '618755f3fa437e6173bf2ee8b7a7908c9d3c51e8', 'NL44392 ', 'turbo',
'garett'),
('jester4', '63264dd3248d1c1304213c0149f2b15ea8dee745', 'SI42357 ',
'differential', 'AWD'),
('jester4', '63264dd3248d1c1304213c0149f2b15ea8dee745', 'SI42357 ', 'nitro',
'nitrous'),
('jester4', '66685054f3f63d3e3741aca85e683382639862c9', 'JZ06110 ', 'brakes',
'race_brakes'),
('jester4', '66685054f3f63d3e3741aca85e683382639862c9', 'JZ06110 ',
'differential', 'AWD'),
('jester4', '66685054f3f63d3e3741aca85e683382639862c9', 'JZ06110 ', 'nitro',
'nitrous'),
('jester4', '66685054f3f63d3e3741aca85e683382639862c9', 'JZ06110 ', 'turbo',
'garett'),
('jester4', '66c20b3483373d89b21fbfa6cc49930b94acfda3', 'ZH33533 ', 'brakes',
'race_brakes'),
('jester4', '66c20b3483373d89b21fbfa6cc49930b94acfda3', 'ZH33533 ',
'differential', 'AWD'),
('jester4', '66c20b3483373d89b21fbfa6cc49930b94acfda3', 'ZH33533 ', 'nitro',
'nitrous'),
('jester4', '66c20b3483373d89b21fbfa6cc49930b94acfda3', 'ZH33533 ', 'turbo',
'garett'),
('jester4', '66d7ade6ce761687b2adf9ec3eacbac96b427dda', 'TT64771 ', 'nitro',
'nitrous'),
('jester4', '6716db871dd7018c11c4ad3606be8e4edf2ec87d', 'TW02801 ',
'differential', 'AWD'),
('jester4', '6716db871dd7018c11c4ad3606be8e4edf2ec87d', 'TW02801 ', 'nitro',
'nitrous'),
('jester4', '6716db871dd7018c11c4ad3606be8e4edf2ec87d', 'TW02801 ', 'turbo',
'garett'),
('jester4', '67c8b6cab8ba6d95d20b22c4dd30ee5f213613f4', 'WM55084 ', 'brakes',
'race_brakes'),
('jester4', '67c8b6cab8ba6d95d20b22c4dd30ee5f213613f4', 'WM55084 ',
'differential', 'AWD'),
('jester4', '67c8b6cab8ba6d95d20b22c4dd30ee5f213613f4', 'WM55084 ', 'nitro',
'nitrous'),
('jester4', '67c8b6cab8ba6d95d20b22c4dd30ee5f213613f4', 'WM55084 ', 'turbo',
'garett'),
('jester4', '6c5c779370d42c7e1427c0c9f8bc78b11a0b3218', 'EM19771 ', 'nitro',
'nitrous'),
('jester4', '6fa27eea805e35ee4fe24746867691f4c76b0423', 'SJ93521 ',
'differential', 'AWD'),
('jester4', '6fa27eea805e35ee4fe24746867691f4c76b0423', 'SJ93521 ', 'nitro',
'nitrous'),
('jester4', '6fa27eea805e35ee4fe24746867691f4c76b0423', 'SJ93521 ', 'turbo',
'garett'),
('jester4', '71626fca0e7a0725e80135818af5121792769f63', 'LQ70235 ', 'brakes',
'race_brakes'),
('jester4', '71626fca0e7a0725e80135818af5121792769f63', 'LQ70235 ',
'differential', 'AWD'),
('jester4', '71626fca0e7a0725e80135818af5121792769f63', 'LQ70235 ', 'turbo',
'garett'),
('jester4', '76012ad13ee83c77d78dd01d96612dcab770031f', 'VJ47753 ', 'brakes',
'race_brakes'),
('jester4', '76012ad13ee83c77d78dd01d96612dcab770031f', 'VJ47753 ',
'differential', 'AWD'),
('jester4', '76012ad13ee83c77d78dd01d96612dcab770031f', 'VJ47753 ', 'nitro',
'nitrous'),
('jester4', '76012ad13ee83c77d78dd01d96612dcab770031f', 'VJ47753 ', 'turbo',
'garett'),
('jester4', '76554dee8c336acc1034d1d160e542c392c7629b', 'AZ03361 ', 'nitro',
'nitrous'),
('jester4', '767441e7e9d696f632ea7c49dcfcc29df1dfa3f4', 'DZ05974 ', 'brakes',
'race_brakes'),
('jester4', '767441e7e9d696f632ea7c49dcfcc29df1dfa3f4', 'DZ05974 ',
'differential', 'AWD'),
('jester4', '767441e7e9d696f632ea7c49dcfcc29df1dfa3f4', 'DZ05974 ', 'nitro',
'nitrous'),
('jester4', '767441e7e9d696f632ea7c49dcfcc29df1dfa3f4', 'DZ05974 ', 'turbo',
'garett'),
('jester4', '7835f6f2e51976bbc7df5dc4cb5404e5a8e6252c', 'MG25445 ', 'nitro',
'nitrous'),
('jester4', '79a7fec9d48cfe63e1404152eb492b48cd8e176e', 'JL40907 ', 'brakes',
'race_brakes'),
('jester4', '79a7fec9d48cfe63e1404152eb492b48cd8e176e', 'JL40907 ', 'turbo',
'garett'),
('jester4', '7a53950afb2bcd10cfce7db860e46a686e86e6eb', 'AQ36365 ', 'brakes',
'race_brakes'),
('jester4', '7a53950afb2bcd10cfce7db860e46a686e86e6eb', 'AQ36365 ',
'differential', 'AWD'),
('jester4', '7a53950afb2bcd10cfce7db860e46a686e86e6eb', 'AQ36365 ', 'nitro',
'nitrous'),
('jester4', '7a53950afb2bcd10cfce7db860e46a686e86e6eb', 'AQ36365 ', 'turbo',
'garett'),
('jester4', '84e64c73edfc774fe279305ddc3ba2312fc3a9c7', 'XY43736 ', 'brakes',
'race_brakes'),
('jester4', '84e64c73edfc774fe279305ddc3ba2312fc3a9c7', 'XY43736 ',
'differential', 'AWD'),
('jester4', '84e64c73edfc774fe279305ddc3ba2312fc3a9c7', 'XY43736 ', 'nitro',
'nitrous'),
('jester4', '84e64c73edfc774fe279305ddc3ba2312fc3a9c7', 'XY43736 ', 'turbo',
'garett'),
('jester4', '855472f541dff46097b7279067893db6cc838aff', 'IE72284 ', 'brakes',
'race_brakes'),
('jester4', '855472f541dff46097b7279067893db6cc838aff', 'IE72284 ',
'differential', 'AWD'),
('jester4', '855472f541dff46097b7279067893db6cc838aff', 'IE72284 ', 'nitro',
'nitrous'),
('jester4', '855472f541dff46097b7279067893db6cc838aff', 'IE72284 ', 'turbo',
'garett'),
('jester4', '85892a356123e2d9589ffac149700f7c67f81a36', 'XQ61855 ', 'nitro',
'nitrous'),
('jester4', '8598edb09b8ce2bd01296b92685c368056833a5c', 'HL39630 ', 'nitro',
'nitrous'),
('jester4', '88a56ff1c970aa870bfa04e43c652a5ec6944063', 'OR09114 ', 'brakes',
'race_brakes'),
('jester4', '88a56ff1c970aa870bfa04e43c652a5ec6944063', 'OR09114 ',
'differential', 'AWD'),
('jester4', '88a56ff1c970aa870bfa04e43c652a5ec6944063', 'OR09114 ', 'turbo',
'garett'),
('jester4', '8ce77d3e4b3a811ccf7d48ec2c1caebe64c97f42', 'LI90068 ', 'brakes',
'race_brakes'),
('jester4', '8ce77d3e4b3a811ccf7d48ec2c1caebe64c97f42', 'LI90068 ',
'differential', 'AWD'),
('jester4', '8ce77d3e4b3a811ccf7d48ec2c1caebe64c97f42', 'LI90068 ', 'nitro',
'nitrous'),
('jester4', '8ce77d3e4b3a811ccf7d48ec2c1caebe64c97f42', 'LI90068 ', 'turbo',
'garett'),
('jester4', '8da2094e82bfe782f39218bd6ec816d0bbde859c', 'DM71470 ', 'brakes',
'race_brakes'),
('jester4', '8da2094e82bfe782f39218bd6ec816d0bbde859c', 'DM71470 ',
'differential', 'AWD'),
('jester4', '8da2094e82bfe782f39218bd6ec816d0bbde859c', 'DM71470 ', 'nitro',
'nitrous'),
('jester4', '8da2094e82bfe782f39218bd6ec816d0bbde859c', 'DM71470 ', 'turbo',
'garett'),
('jester4', '8e416878df455f4bb13032736760caec65b3a298', 'TD15729 ', 'brakes',
'race_brakes'),
('jester4', '8e416878df455f4bb13032736760caec65b3a298', 'TD15729 ',
'differential', 'AWD'),
('jester4', '8e416878df455f4bb13032736760caec65b3a298', 'TD15729 ', 'nitro',
'nitrous'),
('jester4', '8e416878df455f4bb13032736760caec65b3a298', 'TD15729 ', 'turbo',
'garett'),
('jester4', '9168482f5c81bec9564b78a42bbdb1c0a59901f0', 'IM39479 ', 'brakes',
'race_brakes'),
('jester4', '9168482f5c81bec9564b78a42bbdb1c0a59901f0', 'IM39479 ',
'differential', 'AWD'),
('jester4', '9168482f5c81bec9564b78a42bbdb1c0a59901f0', 'IM39479 ', 'nitro',
'nitrous'),
('jester4', '9168482f5c81bec9564b78a42bbdb1c0a59901f0', 'IM39479 ', 'turbo',
'garett'),
('jester4', '92a2114da14eaef98fbd0924659b32446f52f442', 'GG73667 ',
'differential', 'AWD'),
('jester4', '92a2114da14eaef98fbd0924659b32446f52f442', 'GG73667 ', 'nitro',
'nitrous'),
('jester4', '92a2114da14eaef98fbd0924659b32446f52f442', 'GG73667 ', 'turbo',
'garett'),
('jester4', '9474e674291263b637e4f85325c369771937e710', 'BR38805 ', 'brakes',
'race_brakes'),
('jester4', '9474e674291263b637e4f85325c369771937e710', 'BR38805 ',
'differential', 'AWD'),
('jester4', '9474e674291263b637e4f85325c369771937e710', 'BR38805 ', 'turbo',
'garett'),
('jester4', '947a7ed13339dbaa527ec7d72a6762bca4ead943', 'ZR31608 ',
'differential', 'AWD'),
('jester4', '947a7ed13339dbaa527ec7d72a6762bca4ead943', 'ZR31608 ', 'nitro',
'nitrous'),
('jester4', '957b68a92f61ae8a0b3559c81d74fa231d11dbdd', 'PG22277 ', 'brakes',
'race_brakes'),
('jester4', '957b68a92f61ae8a0b3559c81d74fa231d11dbdd', 'PG22277 ',
'differential', 'AWD'),
('jester4', '957b68a92f61ae8a0b3559c81d74fa231d11dbdd', 'PG22277 ', 'turbo',
'garett'),
('jester4', '991d33fe466049bc3feaca2ce11e278eee9cc158', 'WE87502 ', 'nitro',
'nitrous'),
('jester4', '9a95cded8846507f72574b86c81aa32ca16bc7dc', 'XS71025 ', 'brakes',
'race_brakes'),
('jester4', '9a95cded8846507f72574b86c81aa32ca16bc7dc', 'XS71025 ',
'differential', 'AWD'),
('jester4', '9a95cded8846507f72574b86c81aa32ca16bc7dc', 'XS71025 ', 'nitro',
'nitrous'),
('jester4', '9a95cded8846507f72574b86c81aa32ca16bc7dc', 'XS71025 ', 'turbo',
'garett'),
('jester4', '9e03691dd9b1d15b38b89c8822b4001b99b823c6', 'UT15824 ', 'brakes',
'race_brakes'),
('jester4', '9e03691dd9b1d15b38b89c8822b4001b99b823c6', 'UT15824 ',
'differential', 'AWD'),
('jester4', '9e03691dd9b1d15b38b89c8822b4001b99b823c6', 'UT15824 ', 'nitro',
'nitrous'),
('jester4', '9e03691dd9b1d15b38b89c8822b4001b99b823c6', 'UT15824 ', 'turbo',
'garett'),
('jester4', '9e6fa0deb37615ffaee33542dcd71055a34e7b09', 'UT00559 ', 'brakes',
'race_brakes'),
('jester4', '9e6fa0deb37615ffaee33542dcd71055a34e7b09', 'UT00559 ',
'differential', 'AWD'),
('jester4', '9e6fa0deb37615ffaee33542dcd71055a34e7b09', 'UT00559 ', 'nitro',
'nitrous'),
('jester4', '9e6fa0deb37615ffaee33542dcd71055a34e7b09', 'UT00559 ', 'turbo',
'garett'),
('jester4', 'a3bd476d7a75e25925f7523461e6cb7fccef9715', 'VS55334 ', 'brakes',
'race_brakes'),
('jester4', 'a3bd476d7a75e25925f7523461e6cb7fccef9715', 'VS55334 ',
'differential', 'AWD'),
('jester4', 'a3bd476d7a75e25925f7523461e6cb7fccef9715', 'VS55334 ', 'nitro',
'nitrous'),
('jester4', 'a3bd476d7a75e25925f7523461e6cb7fccef9715', 'VS55334 ', 'turbo',
'garett'),
('jester4', 'a9d2ac31af83037b4a8ea9b2a17e0021d8d7128b', 'LB12699 ', 'brakes',
'race_brakes'),
('jester4', 'a9d2ac31af83037b4a8ea9b2a17e0021d8d7128b', 'LB12699 ',
'differential', 'AWD'),
('jester4', 'a9d2ac31af83037b4a8ea9b2a17e0021d8d7128b', 'LB12699 ', 'nitro',
'nitrous'),
('jester4', 'a9d2ac31af83037b4a8ea9b2a17e0021d8d7128b', 'LB12699 ', 'turbo',
'garett'),
('jester4', 'a9e8f2b5a05ccfdab0da3a0fc06d252e2974f6c8', 'GF30085 ', 'brakes',
'race_brakes'),
('jester4', 'a9e8f2b5a05ccfdab0da3a0fc06d252e2974f6c8', 'GF30085 ', 'nitro',
'nitrous'),
('jester4', 'aaecd5b4d036639c221eb58fcb95fdd1a3e10d7f', 'GF46147 ', 'brakes',
'race_brakes'),
('jester4', 'aaecd5b4d036639c221eb58fcb95fdd1a3e10d7f', 'GF46147 ',
'differential', 'AWD'),
('jester4', 'aaecd5b4d036639c221eb58fcb95fdd1a3e10d7f', 'GF46147 ', 'turbo',
'garett'),
('jester4', 'ad1ae954e88fdad0f65b24780481dfe660efa3fc', 'FJ52647 ', 'brakes',
'race_brakes'),
('jester4', 'ad1ae954e88fdad0f65b24780481dfe660efa3fc', 'FJ52647 ',
'differential', 'AWD'),
('jester4', 'ad1ae954e88fdad0f65b24780481dfe660efa3fc', 'FJ52647 ', 'nitro',
'nitrous'),
('jester4', 'ad594ae959ad6f6cbe65477d0473fd299365e91b', 'YS89414 ', 'brakes',
'race_brakes'),
('jester4', 'ad594ae959ad6f6cbe65477d0473fd299365e91b', 'YS89414 ', 'nitro',
'nitrous'),
('jester4', 'ad594ae959ad6f6cbe65477d0473fd299365e91b', 'YS89414 ', 'turbo',
'garett'),
('jester4', 'ae7e64f10f7905c8ee329f7cb1ebf92083448b88', 'UK52751 ', 'brakes',
'race_brakes'),
('jester4', 'ae7e64f10f7905c8ee329f7cb1ebf92083448b88', 'UK52751 ',
'differential', 'AWD'),
('jester4', 'ae7e64f10f7905c8ee329f7cb1ebf92083448b88', 'UK52751 ', 'nitro',
'nitrous'),
('jester4', 'ae7e64f10f7905c8ee329f7cb1ebf92083448b88', 'UK52751 ', 'turbo',
'garett'),
('jester4', 'ae894020ee4aa44e65b97f1967182779b38a266e', 'HG32101 ', 'brakes',
'race_brakes'),
('jester4', 'ae894020ee4aa44e65b97f1967182779b38a266e', 'HG32101 ',
'differential', 'AWD'),
('jester4', 'ae894020ee4aa44e65b97f1967182779b38a266e', 'HG32101 ', 'nitro',
'nitrous'),
('jester4', 'ae894020ee4aa44e65b97f1967182779b38a266e', 'HG32101 ', 'turbo',
'garett'),
('jester4', 'afdd26ddd11f3434faba2dc33432f144873c2e27', 'IA12305 ', 'brakes',
'race_brakes'),
('jester4', 'afdd26ddd11f3434faba2dc33432f144873c2e27', 'IA12305 ',
'differential', 'AWD'),
('jester4', 'afdd26ddd11f3434faba2dc33432f144873c2e27', 'IA12305 ', 'turbo',
'garett'),
('jester4', 'b0fc506c36b1f5a3fd7027bd36ab24002f4edd46', 'NV54138 ', 'brakes',
'race_brakes'),
('jester4', 'b0fc506c36b1f5a3fd7027bd36ab24002f4edd46', 'NV54138 ',
'differential', 'AWD'),
('jester4', 'b0fc506c36b1f5a3fd7027bd36ab24002f4edd46', 'NV54138 ', 'nitro',
'nitrous'),
('jester4', 'b0fc506c36b1f5a3fd7027bd36ab24002f4edd46', 'NV54138 ', 'turbo',
'garett'),
('jester4', 'b17056aa1e536ceb3774862a0373282724fd1d26', 'TP74212 ', 'nitro',
'nitrous'),
('jester4', 'b30bdabbc5089caa7a344472b53890068e2ed0f6', 'VC06455 ', 'brakes',
'race_brakes'),
('jester4', 'b30bdabbc5089caa7a344472b53890068e2ed0f6', 'VC06455 ',
'differential', 'AWD'),
('jester4', 'b30bdabbc5089caa7a344472b53890068e2ed0f6', 'VC06455 ', 'nitro',
'nitrous'),
('jester4', 'b30bdabbc5089caa7a344472b53890068e2ed0f6', 'VC06455 ', 'turbo',
'garett'),
('jester4', 'b588c480c5a104cb9aa8c0c23201eed952201152', 'TY32695 ', 'brakes',
'race_brakes'),
('jester4', 'b588c480c5a104cb9aa8c0c23201eed952201152', 'TY32695 ',
'differential', 'AWD'),
('jester4', 'b588c480c5a104cb9aa8c0c23201eed952201152', 'TY32695 ', 'nitro',
'nitrous'),
('jester4', 'b588c480c5a104cb9aa8c0c23201eed952201152', 'TY32695 ', 'turbo',
'garett'),
('jester4', 'b84769ea241c0d053dca7649feb14d22459ed5c0', 'LP76718 ', 'brakes',
'race_brakes'),
('jester4', 'b84769ea241c0d053dca7649feb14d22459ed5c0', 'LP76718 ',
'differential', 'AWD'),
('jester4', 'b84769ea241c0d053dca7649feb14d22459ed5c0', 'LP76718 ', 'nitro',
'nitrous'),
('jester4', 'b84769ea241c0d053dca7649feb14d22459ed5c0', 'LP76718 ', 'turbo',
'garett'),
('jester4', 'bb5801d30dd3bae72c23c0f69bf4108b7f3d80aa', 'TF41111 ', 'nitro',
'nitrous'),
('jester4', 'bb61bb3fdca74daa8bb954b9115123a53592d84a', 'YF68481 ', 'brakes',
'race_brakes'),
('jester4', 'bb61bb3fdca74daa8bb954b9115123a53592d84a', 'YF68481 ', 'nitro',
'nitrous'),
('jester4', 'bc8f2cd26ad41e23f49e40a7322031d24e0032d5', 'YY58423 ', 'nitro',
'nitrous'),
('jester4', 'bd03f5eb3362f4dd061109ea4ad30a3a2948845e', 'NT03235 ', 'brakes',
'race_brakes'),
('jester4', 'bd03f5eb3362f4dd061109ea4ad30a3a2948845e', 'NT03235 ',
'differential', 'AWD'),
('jester4', 'bd03f5eb3362f4dd061109ea4ad30a3a2948845e', 'NT03235 ', 'nitro',
'nitrous'),
('jester4', 'bd03f5eb3362f4dd061109ea4ad30a3a2948845e', 'NT03235 ', 'turbo',
'garett'),
('jester4', 'bd54e753bd001e51a167ac11fbca37d033d46ea3', 'KX80885 ', 'brakes',
'race_brakes'),
('jester4', 'bd54e753bd001e51a167ac11fbca37d033d46ea3', 'KX80885 ',
'differential', 'AWD'),
('jester4', 'bd54e753bd001e51a167ac11fbca37d033d46ea3', 'KX80885 ', 'nitro',
'nitrous'),
('jester4', 'bda37e6e0cd373c109b8fcf3cefcc1e3c0c4c45d', 'NH15758 ', 'turbo',
'garett'),
('jester4', 'bfee4d51338a8c4a462305c79525a3fa1ebebbba', 'FW89118 ', 'brakes',
'race_brakes'),
('jester4', 'bfee4d51338a8c4a462305c79525a3fa1ebebbba', 'FW89118 ',
'differential', 'AWD'),
('jester4', 'c0d2c60970d9c64d9ae920825c16bec8cd35a8e3', 'II22909 ', 'brakes',
'race_brakes'),
('jester4', 'c0d2c60970d9c64d9ae920825c16bec8cd35a8e3', 'II22909 ',
'differential', 'AWD'),
('jester4', 'c0d2c60970d9c64d9ae920825c16bec8cd35a8e3', 'II22909 ', 'nitro',
'nitrous'),
('jester4', 'c0d2c60970d9c64d9ae920825c16bec8cd35a8e3', 'II22909 ', 'turbo',
'garett'),
('jester4', 'c3adfec0f6a89e76bfcd9d8ae4f824adcaa6f73f', 'TI92812 ', 'brakes',
'race_brakes'),
('jester4', 'c3adfec0f6a89e76bfcd9d8ae4f824adcaa6f73f', 'TI92812 ',
'differential', 'AWD'),
('jester4', 'c3adfec0f6a89e76bfcd9d8ae4f824adcaa6f73f', 'TI92812 ', 'nitro',
'nitrous'),
('jester4', 'c3adfec0f6a89e76bfcd9d8ae4f824adcaa6f73f', 'TI92812 ', 'turbo',
'garett'),
('jester4', 'c4a699e3a4730d6c939c1bf1defa42a42c929e1f', 'BE32298 ', 'brakes',
'race_brakes'),
('jester4', 'c4a699e3a4730d6c939c1bf1defa42a42c929e1f', 'BE32298 ',
'differential', 'AWD'),
('jester4', 'c4a699e3a4730d6c939c1bf1defa42a42c929e1f', 'BE32298 ', 'nitro',
'nitrous'),
('jester4', 'c4a699e3a4730d6c939c1bf1defa42a42c929e1f', 'BE32298 ', 'turbo',
'garett'),
('jester4', 'c7293ca36fe08fad6f603ea82ce0814e8eb1763b', 'BN72848 ', 'brakes',
'race_brakes'),
('jester4', 'c7293ca36fe08fad6f603ea82ce0814e8eb1763b', 'BN72848 ',
'differential', 'AWD'),
('jester4', 'c7293ca36fe08fad6f603ea82ce0814e8eb1763b', 'BN72848 ', 'nitro',
'nitrous'),
('jester4', 'c7293ca36fe08fad6f603ea82ce0814e8eb1763b', 'BN72848 ', 'turbo',
'garett'),
('jester4', 'c7bd5dc4c9220066249e82144bfa3861d0a26172', 'VC92735 ', 'brakes',
'race_brakes'),
('jester4', 'c7e23aee843b5309cf2efd92543eda214c157cb8', 'BN02577 ', 'brakes',
'race_brakes'),
('jester4', 'c7e23aee843b5309cf2efd92543eda214c157cb8', 'BN02577 ',
'differential', 'AWD'),
('jester4', 'c7e23aee843b5309cf2efd92543eda214c157cb8', 'BN02577 ', 'nitro',
'nitrous'),
('jester4', 'c7e23aee843b5309cf2efd92543eda214c157cb8', 'BN02577 ', 'turbo',
'garett'),
('jester4', 'ca3b67d34f7f6398d1a6e6dd0fabbb2da3d12475', 'BX33001 ', 'brakes',
'race_brakes'),
('jester4', 'ca3b67d34f7f6398d1a6e6dd0fabbb2da3d12475', 'BX33001 ',
'differential', 'AWD'),
('jester4', 'ca3b67d34f7f6398d1a6e6dd0fabbb2da3d12475', 'BX33001 ', 'nitro',
'nitrous'),
('jester4', 'ca3b67d34f7f6398d1a6e6dd0fabbb2da3d12475', 'BX33001 ', 'turbo',
'garett'),
('jester4', 'ca7238097d39fc267701fa7a54429e09e95e82fe', 'EM25488 ', 'brakes',
'race_brakes'),
('jester4', 'ca7238097d39fc267701fa7a54429e09e95e82fe', 'EM25488 ',
'differential', 'AWD'),
('jester4', 'ca7238097d39fc267701fa7a54429e09e95e82fe', 'EM25488 ', 'nitro',
'nitrous'),
('jester4', 'ca7238097d39fc267701fa7a54429e09e95e82fe', 'EM25488 ', 'turbo',
'garett'),
('jester4', 'cd8a7de220a0e0e88e414ee792ccca099f2d5a18', 'PF24214 ', 'brakes',
'race_brakes'),
('jester4', 'ce7c7548a33aa491f5e9ff4c4e2a29a100c24d5d', 'MV56798 ', 'brakes',
'race_brakes'),
('jester4', 'ce7c7548a33aa491f5e9ff4c4e2a29a100c24d5d', 'MV56798 ',
'differential', 'AWD'),
('jester4', 'ce7c7548a33aa491f5e9ff4c4e2a29a100c24d5d', 'MV56798 ', 'turbo',
'garett'),
('jester4', 'cebd58b2f73e1f681b1b80a97cb315d01c856346', 'KK88903 ', 'turbo',
'garett'),
('jester4', 'd0e8bf5e2cb5667e17a5a44b4bdf50873b3bb490', 'BC46380 ', 'brakes',
'race_brakes'),
('jester4', 'd0e8bf5e2cb5667e17a5a44b4bdf50873b3bb490', 'BC46380 ',
'differential', 'AWD'),
('jester4', 'd0e8bf5e2cb5667e17a5a44b4bdf50873b3bb490', 'BC46380 ', 'turbo',
'garett'),
('jester4', 'd30022f509d09a2f39d1a62cfecb9123120a5d17', 'JE59295 ', 'nitro',
'nitrous'),
('jester4', 'd3ec6118174921e746607cbb0662b210ad2ebfc6', 'JL56404 ', 'brakes',
'race_brakes'),
('jester4', 'd3ec6118174921e746607cbb0662b210ad2ebfc6', 'JL56404 ',
'differential', 'AWD'),
('jester4', 'd3ec6118174921e746607cbb0662b210ad2ebfc6', 'JL56404 ', 'nitro',
'nitrous'),
('jester4', 'd3ec6118174921e746607cbb0662b210ad2ebfc6', 'JL56404 ', 'turbo',
'garett'),
('jester4', 'd6bdf9fd27ac5a5520b06aaab67ebe29b50ebc02', 'LL16909 ', 'brakes',
'race_brakes'),
('jester4', 'd6bdf9fd27ac5a5520b06aaab67ebe29b50ebc02', 'LL16909 ', 'tires',
'semislick'),
('jester4', 'd8c1bf71904b0ca2928696426c23c9f4f2f7bae8', 'VB61444 ', 'turbo',
'garett'),
('jester4', 'd9a72fea08532dcf10fb71dce211156e854b7b91', 'DV95141 ', 'nitro',
'nitrous'),
('jester4', 'd9a72fea08532dcf10fb71dce211156e854b7b91', 'DV95141 ', 'turbo',
'garett'),
('jester4', 'de8a925f0f67be14a7f86e531fce234cd7079b70', 'CZ73298 ', 'brakes',
'race_brakes'),
('jester4', 'de8a925f0f67be14a7f86e531fce234cd7079b70', 'CZ73298 ',
'differential', 'AWD'),
('jester4', 'de8a925f0f67be14a7f86e531fce234cd7079b70', 'CZ73298 ', 'nitro',
'nitrous'),
('jester4', 'de8a925f0f67be14a7f86e531fce234cd7079b70', 'CZ73298 ', 'turbo',
'garett'),
('jester4', 'df17585454eb358472dc409b61bad5d29b98b2cd', 'VO90532 ', 'brakes',
'race_brakes'),
('jester4', 'df17585454eb358472dc409b61bad5d29b98b2cd', 'VO90532 ',
'differential', 'AWD'),
('jester4', 'df17585454eb358472dc409b61bad5d29b98b2cd', 'VO90532 ', 'turbo',
'garett'),
('jester4', 'df58434d71d7cd50d9b403b3a3a287e26d3d0655', 'CH39625 ', 'brakes',
'race_brakes'),
('jester4', 'df58434d71d7cd50d9b403b3a3a287e26d3d0655', 'CH39625 ',
'differential', 'AWD'),
('jester4', 'df58434d71d7cd50d9b403b3a3a287e26d3d0655', 'CH39625 ', 'nitro',
'nitrous'),
('jester4', 'df58434d71d7cd50d9b403b3a3a287e26d3d0655', 'CH39625 ', 'turbo',
'garett'),
('jester4', 'e10f50cb8c453b115cfb00a16a2a1b85ff8d4d4f', 'OI71445 ', 'brakes',
'race_brakes'),
('jester4', 'e10f50cb8c453b115cfb00a16a2a1b85ff8d4d4f', 'OI71445 ',
'differential', 'AWD'),
('jester4', 'e16b4b30a90d01ec881f6d3e43cb03a9502fc047', 'YL70096 ', 'brakes',
'race_brakes'),
('jester4', 'e16b4b30a90d01ec881f6d3e43cb03a9502fc047', 'YL70096 ',
'differential', 'AWD'),
('jester4', 'e16b4b30a90d01ec881f6d3e43cb03a9502fc047', 'YL70096 ', 'turbo',
'garett'),
('jester4', 'e2dacf0e08f1ae724b352a648944dd8577bff68b', 'QN62064 ', 'turbo',
'garett'),
('jester4', 'e5159a161aed704abec2642f02d31360cce59de9', 'CY17808 ', 'brakes',
'race_brakes'),
('jester4', 'e5159a161aed704abec2642f02d31360cce59de9', 'CY17808 ', 'nitro',
'nitrous'),
('jester4', 'e5159a161aed704abec2642f02d31360cce59de9', 'CY17808 ', 'turbo',
'garett'),
('jester4', 'e7c62bd222b7fc392afa3534680340dee238bb8c', 'DP72290 ', 'brakes',
'race_brakes'),
('jester4', 'e7c62bd222b7fc392afa3534680340dee238bb8c', 'DP72290 ', 'nitro',
'nitrous'),
('jester4', 'e7c62bd222b7fc392afa3534680340dee238bb8c', 'DP72290 ', 'turbo',
'garett'),
('jester4', 'e94976f07db39820d6254414d0ee573b46c4fe0f', 'HY49471 ', 'brakes',
'race_brakes'),
('jester4', 'e94976f07db39820d6254414d0ee573b46c4fe0f', 'HY49471 ',
'differential', 'AWD'),
('jester4', 'e94976f07db39820d6254414d0ee573b46c4fe0f', 'HY49471 ', 'nitro',
'nitrous'),
('jester4', 'e94976f07db39820d6254414d0ee573b46c4fe0f', 'HY49471 ', 'turbo',
'garett'),
('jester4', 'ec4337e1f0ff6e26b1e388073564257e6ff89d2c', 'EZ20147 ', 'brakes',
'race_brakes'),
('jester4', 'ec4337e1f0ff6e26b1e388073564257e6ff89d2c', 'EZ20147 ',
'differential', 'AWD'),
('jester4', 'ec4337e1f0ff6e26b1e388073564257e6ff89d2c', 'EZ20147 ', 'turbo',
'garett'),
('jester4', 'edd327a317e69badd354be95aed67533cf86d75d', 'LR58523 ', 'brakes',
'race_brakes'),
('jester4', 'edd327a317e69badd354be95aed67533cf86d75d', 'LR58523 ',
'differential', 'AWD'),
('jester4', 'edd327a317e69badd354be95aed67533cf86d75d', 'LR58523 ', 'nitro',
'nitrous'),
('jester4', 'edd327a317e69badd354be95aed67533cf86d75d', 'LR58523 ', 'turbo',
'garett'),
('jester4', 'f10632451841ed2512429f9423c74ce332b0a19a', 'RV77875 ', 'brakes',
'race_brakes'),
('jester4', 'f10632451841ed2512429f9423c74ce332b0a19a', 'RV77875 ',
'differential', 'AWD'),
('jester4', 'f10632451841ed2512429f9423c74ce332b0a19a', 'RV77875 ', 'turbo',
'garett'),
('jester4', 'f181a598a13e4b4004e6f8831b4fa0de01c355e5', 'DK49717 ', 'brakes',
'race_brakes'),
('jester4', 'f181a598a13e4b4004e6f8831b4fa0de01c355e5', 'DK49717 ',
'differential', 'AWD'),
('jester4', 'f181a598a13e4b4004e6f8831b4fa0de01c355e5', 'DK49717 ', 'nitro',
'nitrous'),
('jester4', 'f181a598a13e4b4004e6f8831b4fa0de01c355e5', 'DK49717 ', 'turbo',
'garett'),
('jester4', 'f183a5b5facd0e9ebea147d980b4fb3e43264da6', 'XL69424 ', 'brakes',
'race_brakes'),
('jester4', 'f183a5b5facd0e9ebea147d980b4fb3e43264da6', 'XL69424 ',
'differential', 'AWD'),
('jester4', 'f183a5b5facd0e9ebea147d980b4fb3e43264da6', 'XL69424 ', 'nitro',
'nitrous'),
('jester4', 'f183a5b5facd0e9ebea147d980b4fb3e43264da6', 'XL69424 ', 'turbo',
'garett'),
('jester4', 'f5ce80aabffa17b3dad593f6c29befc25e94f116', 'KD61882 ', 'nitro',
'nitrous'),
('jester4', 'f5ce80aabffa17b3dad593f6c29befc25e94f116', 'LL16909 ', 'nitro',
'nitrous'),
('jester4', 'f5f63b8e54b85ba4ca5cffe0f73bb14c3d9f6c8d', 'SG58616 ', 'nitro',
'nitrous'),
('jester4', 'f6789e904041da96306f2f87e37dc308d9b16575', 'JO20042 ', 'brakes',
'race_brakes'),
('jester4', 'f6789e904041da96306f2f87e37dc308d9b16575', 'JO20042 ',
'differential', 'AWD'),
('jester4', 'f6789e904041da96306f2f87e37dc308d9b16575', 'JO20042 ', 'nitro',
'nitrous'),
('jester4', 'f6789e904041da96306f2f87e37dc308d9b16575', 'JO20042 ', 'turbo',
'garett'),
('jester4', 'f81b9822ffa726412aa4c2192e55faf463e24f84', 'KD61729 ',
'differential', 'AWD'),
('jester4', 'f81b9822ffa726412aa4c2192e55faf463e24f84', 'KD61729 ', 'nitro',
'nitrous'),
('jester4', 'f81b9822ffa726412aa4c2192e55faf463e24f84', 'KD61729 ', 'turbo',
'garett'),
('jester4', 'f8cea7d94773192d1cfe6eef4e43185ca3d55044', 'GM29281 ', 'brakes',
'race_brakes'),
('jester4', 'f8cea7d94773192d1cfe6eef4e43185ca3d55044', 'GM29281 ',
'differential', 'AWD'),
('jester4', 'f8cea7d94773192d1cfe6eef4e43185ca3d55044', 'GM29281 ', 'nitro',
'nitrous'),
('jester4', 'f8cea7d94773192d1cfe6eef4e43185ca3d55044', 'GM29281 ', 'turbo',
'garett'),
('jester4', 'fb7691ba94bde18b8ea03d50a8d18c4230c34a9c', 'MM66373 ', 'brakes',
'race_brakes'),
('jester4', 'fb7691ba94bde18b8ea03d50a8d18c4230c34a9c', 'MM66373 ',
'differential', 'AWD'),
('jester4', 'fb7691ba94bde18b8ea03d50a8d18c4230c34a9c', 'MM66373 ', 'nitro',
'nitrous'),
('jester4', 'fb7691ba94bde18b8ea03d50a8d18c4230c34a9c', 'MM66373 ', 'turbo',
'garett'),
('jester4', 'fcb50c8a5455b348a01957de9c7053dc177a37d4', 'PT94043 ', 'brakes',
'race_brakes'),
('jester4', 'fcb50c8a5455b348a01957de9c7053dc177a37d4', 'PT94043 ',
'differential', 'AWD'),
('jester4', 'fcb50c8a5455b348a01957de9c7053dc177a37d4', 'PT94043 ', 'nitro',
'nitrous'),
('jester4', 'fcb50c8a5455b348a01957de9c7053dc177a37d4', 'PT94043 ', 'turbo',
'garett'),
('jester4', 'fd28655133b0343a487d61a4045e42d66f29d4a8', 'XJ33064 ', 'brakes',
'race_brakes'),
('jester4', 'fd28655133b0343a487d61a4045e42d66f29d4a8', 'XJ33064 ',
'differential', 'AWD'),
('jester4', 'fd28655133b0343a487d61a4045e42d66f29d4a8', 'XJ33064 ', 'nitro',
'nitrous'),
('jester4', 'fd28655133b0343a487d61a4045e42d66f29d4a8', 'XJ33064 ', 'turbo',
'garett'),
('jester4', 'fe4ad8680dc5fb49cc1bdb0870a94d00bf84d051', 'GW22183 ', 'brakes',
'race_brakes'),
('kanjo', '219a18f10b3f40125ae9cffe81da85da9068d663', 'XS22070 ', 'brakes',
'race_brakes'),
('kanjo', '219a18f10b3f40125ae9cffe81da85da9068d663', 'XS22070 ',
'differential', 'AWD'),
('kanjo', '219a18f10b3f40125ae9cffe81da85da9068d663', 'XS22070 ', 'tires',
'semislick'),
('kanjo', '44a6729737d5e482538d28da3f6fe892f640418a', 'MP39272 ', 'nitro',
'nitrous'),
('kanjo', '44a6729737d5e482538d28da3f6fe892f640418a', 'MP39272 ', 'tires',
'semislick'),
('lp43', '947a7ed13339dbaa527ec7d72a6762bca4ead943', 'OM24999 ', 'brakes',
'race_brakes'),
('lp43', '947a7ed13339dbaa527ec7d72a6762bca4ead943', 'OM24999 ', 'turbo',
'garett'),
('outlaw', '39bd366006fb20e7cb760c7a9015919551844d0e', 'ZA75991 ', 'brakes',
'race_brakes'),
('outlaw', '39bd366006fb20e7cb760c7a9015919551844d0e', 'ZA75991 ',
'differential', 'AWD'),
('outlaw', '39bd366006fb20e7cb760c7a9015919551844d0e', 'ZA75991 ',
'suspension', 'susp4'),
('outlaw', '39bd366006fb20e7cb760c7a9015919551844d0e', 'ZA75991 ', 'turbo',
'garett'),
('outlaw', '76554dee8c336acc1034d1d160e542c392c7629b', 'HE98765 ', 'brakes',
'race_brakes'),
('outlaw', '76554dee8c336acc1034d1d160e542c392c7629b', 'HE98765 ',
'differential', 'AWD'),
('outlaw', '76554dee8c336acc1034d1d160e542c392c7629b', 'HE98765 ',
'suspension', 'susp1'),
('outlaw', '76554dee8c336acc1034d1d160e542c392c7629b', 'HE98765 ', 'turbo',
'garett'),
('outlaw', '8ce77d3e4b3a811ccf7d48ec2c1caebe64c97f42', 'KF09254 ', 'brakes',
'race_brakes'),
('outlaw', '8ce77d3e4b3a811ccf7d48ec2c1caebe64c97f42', 'KF09254 ',
'differential', 'AWD'),
('outlaw', '8ce77d3e4b3a811ccf7d48ec2c1caebe64c97f42', 'KF09254 ', 'nitro',
'nitrous'),
('outlaw', '991d33fe466049bc3feaca2ce11e278eee9cc158', 'RS97535 ', 'brakes',
'race_brakes'),
('outlaw', '991d33fe466049bc3feaca2ce11e278eee9cc158', 'RS97535 ',
'differential', 'AWD'),
('outlaw', '991d33fe466049bc3feaca2ce11e278eee9cc158', 'RS97535 ', 'tires',
'semislick'),
('outlaw', '991d33fe466049bc3feaca2ce11e278eee9cc158', 'RS97535 ', 'turbo',
'garett'),
('outlaw', 'fcb50c8a5455b348a01957de9c7053dc177a37d4', 'NZ93736 ',
'differential', 'AWD'),
('outlaw', 'fcb50c8a5455b348a01957de9c7053dc177a37d4', 'NZ93736 ', 'nitro',
'nitrous'),
('outlaw', 'fcb50c8a5455b348a01957de9c7053dc177a37d4', 'NZ93736 ',
'suspension', 'susp4'),
('penumbra2', '1b90ac573a51fe40c589470f714ee46aa9bf38ac', 'QY22801 ',
'tires', 'semislick'),
('penumbra2', '1b90ac573a51fe40c589470f714ee46aa9bf38ac', 'QY22801 ',
'turbo', 'garett'),
('penumbra2', 'f175c09e5a939ba394d774c645ddc115feb63668', 'CK94600 ',
'brakes', 'race_brakes'),
('penumbra2', 'f175c09e5a939ba394d774c645ddc115feb63668', 'CK94600 ',
'differential', 'AWD'),
('penumbra2', 'f175c09e5a939ba394d774c645ddc115feb63668', 'CK94600 ',
'turbo', 'garett'),
('raptor', '76554dee8c336acc1034d1d160e542c392c7629b', 'VY75528 ', 'brakes',
'race_brakes'),
('raptor', '76554dee8c336acc1034d1d160e542c392c7629b', 'VY75528 ',
'differential', 'AWD'),
('raptor', '76554dee8c336acc1034d1d160e542c392c7629b', 'VY75528 ', 'turbo',
'garett'),
('rebla', '1b90ac573a51fe40c589470f714ee46aa9bf38ac', 'MD76224 ', 'brakes',
'race_brakes'),
('rebla', '1b90ac573a51fe40c589470f714ee46aa9bf38ac', 'MD76224 ',
'suspension', 'susp2'),
('rebla', '1b90ac573a51fe40c589470f714ee46aa9bf38ac', 'MD76224 ', 'tires',
'semislick'),
('rebla', '1b90ac573a51fe40c589470f714ee46aa9bf38ac', 'MD76224 ', 'turbo',
'garett'),
('rt3000', '76554dee8c336acc1034d1d160e542c392c7629b', 'HW70157 ', 'brakes',
'race_brakes'),
('rt3000', '76554dee8c336acc1034d1d160e542c392c7629b', 'HW70157 ',
'differential', 'AWD'),
('rt3000', '76554dee8c336acc1034d1d160e542c392c7629b', 'HW70157 ', 'turbo',
'garett'),
('sabregt2', 'f06a91b30c73b3b8a7437025bade15cf64c8eb1d', 'VC51053 ',
'differential', 'AWD'),
('sabregt2', 'f06a91b30c73b3b8a7437025bade15cf64c8eb1d', 'VC51053 ', 'turbo',
'garett'),
('sultan', '47a5dc370f88ecd366f35c32ca9eaecf4c3556eb', 'OG99239 ', 'brakes',
'race_brakes'),
('sultan', '47a5dc370f88ecd366f35c32ca9eaecf4c3556eb', 'OG99239 ',
'differential', 'AWD'),
('sultan', '47a5dc370f88ecd366f35c32ca9eaecf4c3556eb', 'OG99239 ', 'nitro',
'nitrous'),
('sultan', '47a5dc370f88ecd366f35c32ca9eaecf4c3556eb', 'OG99239 ', 'turbo',
'garett'),
('sultan3', 'f175c09e5a939ba394d774c645ddc115feb63668', 'MA29250 ', 'brakes',
'race_brakes'),
('sultan3', 'f175c09e5a939ba394d774c645ddc115feb63668', 'MA29250 ',
'differential', 'AWD'),
('sultan3', 'f175c09e5a939ba394d774c645ddc115feb63668', 'MA29250 ', 'turbo',
'garett'),
('tailgater2', 'cf44ea49b3a479a2f312d33d9be61e03aefc10c7', 'SX02552 ',
'brakes', 'race_brakes'),
('tailgater2', 'cf44ea49b3a479a2f312d33d9be61e03aefc10c7', 'SX02552 ',
'suspension', 'susp1'),
('toros', '81dcab0d4764e7c3af12d6d73fed5ac75e342bbe', 'IE59687 ', 'brakes',
'race_brakes'),
('toros', '81dcab0d4764e7c3af12d6d73fed5ac75e342bbe', 'IE59687 ', 'nitro',
'nitrous'),
('toros', '81dcab0d4764e7c3af12d6d73fed5ac75e342bbe', 'IE59687 ',
'suspension', 'susp2'),
('toros', '81dcab0d4764e7c3af12d6d73fed5ac75e342bbe', 'IE59687 ', 'tires',
'semislick'),
('toros', '81dcab0d4764e7c3af12d6d73fed5ac75e342bbe', 'IE59687 ', 'turbo',
'garett'),
('vectre', '1b90ac573a51fe40c589470f714ee46aa9bf38ac', 'GS00854 ', 'turbo',
'garett'),
('vstr', '1b90ac573a51fe40c589470f714ee46aa9bf38ac', 'AASF3333', 'brakes',
'race_brakes'),
('vstr', '1b90ac573a51fe40c589470f714ee46aa9bf38ac', 'AASF3333',
'differential', 'AWD'),
('vstr', '1b90ac573a51fe40c589470f714ee46aa9bf38ac', 'AASF3333',
'suspension', 'susp2'),
('vstr', '1b90ac573a51fe40c589470f714ee46aa9bf38ac', 'AASF3333', 'tires',
'slick'),
('vstr', '1b90ac573a51fe40c589470f714ee46aa9bf38ac', 'AASF3333', 'turbo',
'garett'),
('weevil', '569a7327149920164b5cb624d6cc773879be719f', 'NJ33075 ', 'nitro',
'nitrous'),
('zr350', '1b90ac573a51fe40c589470f714ee46aa9bf38ac', 'DJ63830 ', 'brakes',
'race_brakes'),
('zr350', '1b90ac573a51fe40c589470f714ee46aa9bf38ac', 'DJ63830 ',
'differential', 'AWD'),
('zr350', '1b90ac573a51fe40c589470f714ee46aa9bf38ac', 'DJ63830 ',
'suspension', 'susp2'),
('zr350', '1b90ac573a51fe40c589470f714ee46aa9bf38ac', 'DJ63830 ', 'tires',
'slick'),
('zr350', '1b90ac573a51fe40c589470f714ee46aa9bf38ac', 'DJ63830 ', 'turbo',
'garett');

-- Dumping structure for table sokac.autosalonstockovi


CREATE TABLE IF NOT EXISTS `autosalonstockovi` (
`model` varchar(65) NOT NULL DEFAULT 'none',
`stock` int(3) NOT NULL DEFAULT 9,
PRIMARY KEY (`model`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci;

-- Dumping data for table sokac.autosalonstockovi: ~0 rows (approximately)

-- Dumping structure for table sokac.carstock


CREATE TABLE IF NOT EXISTS `carstock` (
`model` varchar(65) NOT NULL DEFAULT 'none',
`stock` int(3) NOT NULL DEFAULT 9,
PRIMARY KEY (`model`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci;

-- Dumping data for table sokac.carstock: ~75 rows (approximately)


INSERT INTO `carstock` (`model`, `stock`) VALUES
('17m760i', 22),
('2013rs7', 22),
('2015a3', 22),
('22', 22),
('22G63', 21),
('440i', 22),
('720S', 20),
('740i', 22),
('745le', 22),
('750li', 22),
('911turboS', 20),
('a45amg', 22),
('amggtbs', 21),
('APERTA', 22),
('audis4', 22),
('auds5', 22),
('audsq517', 22),
('b63s', 22),
('blazer4', 21),
('bmci', 22),
('bmistralw16', 18),
('bmwe65', 22),
('bmwg07', 22),
('bmwm8', 21),
('bmws', 22),
('bolide', 17),
('bpursport', 22),
('bug300ss', 20),
('BugattiVgt', 17),
('CLS53', 21),
('divo', 22),
('evo9', 21),
('gle63s', 21),
('knucklehead', 22),
('lamboMurcielago', 22),
('lp670sv', 21),
('lp720', 21),
('lp770', 19),
('ocnetrongt', 21),
('ocni422spe', 20),
('pcs18', 22),
('PwDAr8', 22),
('PwDGWagon', 17),
('PwDLGLP570', 20),
('PwDwycalt', 18),
('r1', 22),
('r3xMODBm4', 22),
('r3xMODBm5', 0),
('rmodamgc63', 22),
('rmodbacalar', 21),
('rmode63s', 22),
('rmodgt63', 21),
('rmodm4gts', 21),
('rmodmi8lb', 22),
('rmodmk7', 22),
('rmodmustang', 22),
('rmodrover', 22),
('rmodrs7', 22),
('rmodsian', 21),
('rmodskyline', 21),
('rs3lms', 20),
('rs4b7', 22),
('rs5r', 22),
('rs7c8', 22),
('RSQ8M', 22),
('SC18Hartge', 18),
('skyline', 22),
('sultan2', 22),
('supersport', 20),
('supramk4', 22),
('ttrs', 22),
('x5e53', 22),
('x6mf16', 20),
('yugo', 22),
('z1000', 21);

-- Dumping structure for table sokac.character_current


CREATE TABLE IF NOT EXISTS `character_current` (
`cid` varchar(255) NOT NULL,
`model` longtext NOT NULL DEFAULT '',
`drawables` longtext NOT NULL DEFAULT '',
`props` longtext NOT NULL DEFAULT '',
`drawtextures` longtext NOT NULL DEFAULT '',
`proptextures` longtext NOT NULL DEFAULT ''
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci;

-- Dumping data for table sokac.character_current: ~0 rows (approximately)

-- Dumping structure for table sokac.character_face


CREATE TABLE IF NOT EXISTS `character_face` (
`identifier` varchar(255) NOT NULL,
`hairColor` varchar(255) NOT NULL DEFAULT '',
`headBlend` varchar(255) NOT NULL DEFAULT '',
`headStructure` varchar(255) NOT NULL DEFAULT '',
`headOverlay` varchar(255) NOT NULL DEFAULT ''
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci;

-- Dumping data for table sokac.character_face: ~0 rows (approximately)

-- Dumping structure for table sokac.darkchat_messages


CREATE TABLE IF NOT EXISTS `darkchat_messages` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`password` text NOT NULL,
`owner` varchar(50) DEFAULT NULL,
`name` varchar(50) DEFAULT '',
`messages` text DEFAULT NULL,
PRIMARY KEY (`id`) USING BTREE,
KEY `id` (`id`) USING BTREE
) ENGINE=InnoDB AUTO_INCREMENT=10 DEFAULT CHARSET=utf8mb4
COLLATE=utf8mb4_general_ci;

-- Dumping data for table sokac.darkchat_messages: ~0 rows (approximately)

-- Dumping structure for table sokac.datastore


CREATE TABLE IF NOT EXISTS `datastore` (
`name` varchar(60) NOT NULL,
`label` varchar(100) NOT NULL,
`shared` int(11) NOT NULL,
PRIMARY KEY (`name`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;

-- Dumping data for table sokac.datastore: ~0 rows (approximately)


INSERT INTO `datastore` (`name`, `label`, `shared`) VALUES
('property', 'Property', 0);

-- Dumping structure for table sokac.datastore_data


CREATE TABLE IF NOT EXISTS `datastore_data` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`name` varchar(60) NOT NULL,
`owner` varchar(40) DEFAULT NULL,
`data` longtext DEFAULT NULL,
PRIMARY KEY (`id`),
UNIQUE KEY `index_datastore_data_name_owner` (`name`,`owner`),
KEY `index_datastore_data_name` (`name`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;

-- Dumping data for table sokac.datastore_data: ~0 rows (approximately)

-- Dumping structure for table sokac.dosije_notes


CREATE TABLE IF NOT EXISTS `dosije_notes` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`title` varchar(250) NOT NULL,
`content` varchar(250) NOT NULL,
`user_id` varchar(250) NOT NULL,
`created_at` varchar(50) NOT NULL DEFAULT '',
PRIMARY KEY (`id`),
UNIQUE KEY `id` (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=141 DEFAULT CHARSET=latin1
COLLATE=latin1_swedish_ci;
-- Dumping data for table sokac.dosije_notes: ~33 rows (approximately)
INSERT INTO `dosije_notes` (`id`, `title`, `content`, `user_id`, `created_at`)
VALUES
(102, 'Napomena', 'Pogrešno parkiranje (vozio ukradeno vozilo,rekao da je od
prijatelja kojem nezz ni ime)', '64db13f2d4eb1d124092e6c368c5760f7ba43beb', '2021-
11-27 20:37:40'),
(103, 'Napomena', 'Bjezanje od policije',
'c7b8b7bad8a744707d7bcf89537708dda234dfda', '2021-11-29 18:03:09'),
(105, 'Dosije', 'Pljacka zlatare(disciplinska)',
'594f193654612a03b22a5c3246949e33769c2667', '2021-11-30 23:11:15'),
(106, 'DOSIJE', 'Pljacka banke(disciplinska)',
'dabb1d61f7916b2c9eb1e6f405020fb365879090', '2021-12-01 19:13:41'),
(108, 'NAPOMENA', 'Pucanje na policiju bjezanje od policije.',
'79bb614f0ff203032a7fc8a872d7645dfed77d23', '2021-12-02 21:05:27'),
(109, 'Oduzeta dozvola za oruzje na 3 dana', 'Dozovla oduzeta radi
posjedovanaj dosijea za pljacku zlatare i pokusaj ubojstva sluzebnog lica',
'f4e46330330e6323fdfbed936194b41d8a879422', '2021-12-07 14:35:15'),
(110, 'Dozvola za Oruzje', 'Oduzeta do 10.12.2021',
'f4e46330330e6323fdfbed936194b41d8a879422', '2021-12-07 14:36:37'),
(111, 'Oduzeta dozvola do 10.12.2021.', 'Oduzeto 2 pistolja',
'f4e46330330e6323fdfbed936194b41d8a879422', '2021-12-07 14:42:44'),
(112, 'BIO TAOC NA PLJACKI ZLATARE', '162',
'1f55d6bc52f5dd3823c9fceb2c8c203f34e4c3a8', '2021-12-07 20:31:23'),
(113, 'saobracajni prekrsaj', 'nepropisno parkiranje vozila',
'1984286110e06f59380cb10215dd6f05048d8705', '2021-12-09 13:11:20'),
(114, 'Napomena ', 'Pljacka zlatare',
'6a809612394ef5e0b726c5532afc2d906bc52653', '2021-12-09 17:38:52'),
(116, 'saobracajni-prekrsaj', 'voznja u kontra smeru',
'1ddd8c2e21cee62061c5dac70a195cdb50b1ef27', '2021-12-10 14:47:24'),
(117, 'Napomena', 'Pljacka zlatare',
'6a809612394ef5e0b726c5532afc2d906bc52653', '2021-12-10 17:31:36'),
(118, 'dozvole', 'oduzeta dozvola za oruzje',
'3eba878208dad45a62df988de2b51ca2e125548b', '2021-12-11 13:37:34'),
(119, 'PLJACKA TRGOVINE', 'PONOVIO PLJACKU PO DRUGI PUT,I BJEZAO IZ
POLICIJSKE STANICE UMORIO SE DOK SAM GA UHVATIO.',
'4347f13f47842ae2ae8831116da5fe1f7003c201', '2021-12-11 19:28:25'),
(120, 'Napomena ', 'Pljacka zlatare',
'00d5e713074cb745e627aa72687bad04f4873d71', '2021-12-11 22:10:12'),
(121, 'Napomena', 'Pljacka zlatare',
'66d7ade6ce761687b2adf9ec3eacbac96b427dda', '2021-12-12 00:05:50'),
(122, 'napomena', 'pljacka zlatare',
'047f8e33bf7ef9ba4989ef1901a8befedcae3476', '2021-12-12 00:12:01'),
(124, 'udaranje lice vozilom ispred glavne', 'posjeduje vozacku',
'3544d2c0d82ebeadff674e8c7d918511b393174d', '2021-12-12 19:43:56'),
(125, 'Oduzeta mu je dozvola za oruzije', 'Pljackao je zlataru te poseduje
mnogo hladnog oruzija i nozeva', 'e9861acab3e2df23331e5f643c826095a453a208', '2021-
12-12 19:56:56'),
(126, '*DOZVOLA ZA ORUZJE ODUZETA*', 'Dozvola za oruzje mu je oduzeta radi
posjedovanja dosije-a', 'd6bdf9fd27ac5a5520b06aaab67ebe29b50ebc02', '2021-12-13
18:28:54'),
(127, 'poternica', 'bjezanjue od lspd i kradja oruzja ',
'83d7e646a7253877a44e27e37e9a751c31fb514e', '2021-12-14 15:05:59'),
(128, '*DOZVOLA ZA ORUZJE ODUZETA*', 'Dozvola oduzeta radi posjedovanja
dosije-a', '569a7327149920164b5cb624d6cc773879be719f', '2021-12-14 18:50:07'),
(129, 'saobracajni-prekrsaj', 'nepravilno parkiranje nije primio kaznu ako se
bude zasutavio treba primit kaznu', '66cb9327f0b92759918036e01e9e1a778c6190c0',
'2021-12-16 13:42:26'),
(130, 'Flash Krstic', 'Pljacka zlatare, bezanje od policije.',
'9e03691dd9b1d15b38b89c8822b4001b99b823c6', '2021-12-17 15:57:50'),
(131, 'napomena', 'Pljacka zlatare.',
'f175c09e5a939ba394d774c645ddc115feb63668', '2021-12-17 15:59:28'),
(133, 'Pljacka zlatare', 'Oduzeta dozvola za oruzije',
'f6e266c049295520b274fbf393b51ccc73bffa25', '2021-12-19 16:38:45'),
(134, 'Bio taoc u pljacki glavne banke', '167',
'd30022f509d09a2f39d1a62cfecb9123120a5d17', '2021-12-20 22:24:28'),
(135, 'PLJACKA ZLATARE ', 'ODUZETA DOZVOLA ORUJE',
'6716db871dd7018c11c4ad3606be8e4edf2ec87d', '2021-12-21 19:52:17'),
(137, 'Kokain', 'Pronalazak kokaina',
'decb8a9b3abc021d0bbe869d9e28180b2856517e', '2021-12-21 21:26:53'),
(138, 'auto', 'auto mu je bilo na pljacku',
'97e81d50767ceecefacf9cf564c4c9e5a8f64249', '2021-12-22 20:01:13'),
(139, 'Pronalazak Metha', '163', '1f55d6bc52f5dd3823c9fceb2c8c203f34e4c3a8',
'2021-12-23 10:43:36'),
(140, 'saobracajni-prekrsaj', 'prolazak preko duple pune 1 kazneni bod',
'afc0b885567b002d9e1663774b73030641003290', '2021-12-24 21:47:49');

-- Dumping structure for table sokac.element_racuni


CREATE TABLE IF NOT EXISTS `element_racuni` (
`id` int(111) NOT NULL AUTO_INCREMENT,
`kazna` longtext DEFAULT NULL,
`davalac` varchar(50) DEFAULT NULL,
`primalac` varchar(50) DEFAULT NULL,
`cijena` int(11) DEFAULT NULL,
KEY `id` (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=45147 DEFAULT CHARSET=latin1
COLLATE=latin1_swedish_ci;

-- Dumping data for table sokac.element_racuni: ~8 rows (approximately)


INSERT INTO `element_racuni` (`id`, `kazna`, `davalac`, `primalac`, `cijena`)
VALUES
(45057, 'Usluge mehanicara', 'mechanic', 'steam:110000147be6c90', 700),
(45058, 'Usluge mehanicara', 'mechanic', 'steam:110000147be6c90', 700),
(45093, 'Usluge mehanicara', 'mechanic', 'steam:110000141ca2502', 700),
(45104, 'Usluge mehanicara', 'mechanic', 'steam:1100001441d42fe', 1370),
(45107, 'pljacka banke', 'police', 'steam:110000113a6bff7', 13000),
(45112, 'ometanje policijske potjere i vrijedjanje sluzbenog lica', 'police',
'steam:11000014b5d91b0', 5000),
(45141, NULL, 'police', 'steam:11000014441607c', 7000),
(45142, 'Usluge mehanicara', 'mechanic', 'steam:11000010819391f', 32054);

-- Dumping structure for table sokac.eleregistracija


CREATE TABLE IF NOT EXISTS `eleregistracija` (
`tablice` varchar(12) CHARACTER SET utf8mb4 COLLATE utf8mb4_bin NOT NULL,
`vlasnik` varchar(255) DEFAULT NULL,
`vrijeme` varchar(50) DEFAULT NULL,
`tehnicki` int(11) DEFAULT 0,
PRIMARY KEY (`tablice`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci;

-- Dumping data for table sokac.eleregistracija: ~0 rows (approximately)

-- Dumping structure for table sokac.gas_station_balance


CREATE TABLE IF NOT EXISTS `gas_station_balance` (
`id` int(10) unsigned NOT NULL,
`gas_station_id` varchar(50) NOT NULL,
`income` bit(1) NOT NULL,
`title` varchar(255) NOT NULL,
`amount` int(10) unsigned NOT NULL,
`date` int(10) unsigned NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci;

-- Dumping data for table sokac.gas_station_balance: ~0 rows (approximately)

-- Dumping structure for table sokac.gas_station_business


CREATE TABLE IF NOT EXISTS `gas_station_business` (
`gas_station_id` varchar(50) NOT NULL DEFAULT '',
`user_id` varchar(50) NOT NULL,
`stock` int(10) unsigned NOT NULL DEFAULT 0,
`price` int(10) unsigned NOT NULL DEFAULT 0,
`stock_upgrade` tinyint(3) unsigned NOT NULL DEFAULT 0,
`truck_upgrade` tinyint(3) unsigned NOT NULL DEFAULT 0,
`relationship_upgrade` tinyint(3) unsigned NOT NULL DEFAULT 0,
`money` int(10) unsigned NOT NULL DEFAULT 0,
`total_money_earned` int(10) unsigned NOT NULL DEFAULT 0,
`total_money_spent` int(10) unsigned NOT NULL DEFAULT 0,
`gas_bought` int(10) unsigned NOT NULL DEFAULT 0,
`gas_sold` int(10) unsigned NOT NULL DEFAULT 0,
`distance_traveled` double unsigned NOT NULL DEFAULT 0,
`total_visits` int(10) unsigned NOT NULL DEFAULT 0,
`customers` int(10) unsigned NOT NULL DEFAULT 0,
`timer` int(10) unsigned NOT NULL DEFAULT 0
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci;

-- Dumping data for table sokac.gas_station_business: ~0 rows (approximately)

-- Dumping structure for table sokac.gas_station_jobs


CREATE TABLE IF NOT EXISTS `gas_station_jobs` (
`id` int(10) unsigned NOT NULL,
`gas_station_id` varchar(50) NOT NULL DEFAULT '',
`name` varchar(50) NOT NULL,
`reward` int(10) unsigned NOT NULL DEFAULT 0,
`amount` int(11) NOT NULL DEFAULT 0,
`progress` bit(1) NOT NULL DEFAULT b'0'
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci;

-- Dumping data for table sokac.gas_station_jobs: ~0 rows (approximately)

-- Dumping structure for table sokac.gksphone_app_chat


CREATE TABLE IF NOT EXISTS `gksphone_app_chat` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`channel` varchar(20) NOT NULL,
`message` varchar(255) NOT NULL,
`time` timestamp NOT NULL DEFAULT current_timestamp(),
PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;

-- Dumping data for table sokac.gksphone_app_chat: ~0 rows (approximately)

-- Dumping structure for table sokac.gksphone_bank_transfer


CREATE TABLE IF NOT EXISTS `gksphone_bank_transfer` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`type` int(11) NOT NULL,
`identifier` longtext DEFAULT NULL,
`price` longtext NOT NULL,
`name` longtext NOT NULL,
`time` timestamp NOT NULL DEFAULT current_timestamp() ON UPDATE
current_timestamp(),
PRIMARY KEY (`id`) USING BTREE
) ENGINE=InnoDB AUTO_INCREMENT=38 DEFAULT CHARSET=utf8mb4
COLLATE=utf8mb4_general_ci;

-- Dumping data for table sokac.gksphone_bank_transfer: ~37 rows (approximately)


INSERT INTO `gksphone_bank_transfer` (`id`, `type`, `identifier`, `price`, `name`,
`time`) VALUES
(1, 1, 'be0da256bda1a6930cc0fd38ec9494ab76e7848a', '100', 'Valet Fee', '2022-
12-31 16:12:55'),
(2, 1, 'be0da256bda1a6930cc0fd38ec9494ab76e7848a', '100', 'Valet Fee', '2022-
12-31 16:13:12'),
(3, 1, 'dfce5ef05982ff443981b07926cd2fc652ef2db7', '100', 'Valet Fee', '2023-
01-01 23:39:37'),
(4, 1, 'dfce5ef05982ff443981b07926cd2fc652ef2db7', '100', 'Valet Fee', '2023-
01-01 23:39:56'),
(5, 2, 'be0da256bda1a6930cc0fd38ec9494ab76e7848a', '1000', 'Castiljo
Hermano', '2023-01-02 13:59:20'),
(6, 1, 'd789f75917cbe1986075df7b2e7a6a4bc7cab83f', '1000', 'Hara Bara',
'2023-01-02 13:59:20'),
(7, 1, 'ec3e97a343fc9e8b025725d28d090a41b62a5d7b', '100', 'Valet Fee', '2023-
01-08 14:34:45'),
(8, 1, 'ec3e97a343fc9e8b025725d28d090a41b62a5d7b', '100', 'Valet Fee', '2023-
01-08 14:34:53'),
(9, 1, 'c7b0da5ebe8459431b6cbed1b6b98a0265f82774', '100', 'Valet Fee', '2023-
01-09 19:19:54'),
(10, 1, 'c7b0da5ebe8459431b6cbed1b6b98a0265f82774', '100', 'Valet Fee',
'2023-01-09 19:20:00'),
(11, 1, 'a280cd04eafb871976e08cdc4adadc6adaaec3e1', '100', 'Valet Fee',
'2023-01-09 20:06:06'),
(12, 1, 'a280cd04eafb871976e08cdc4adadc6adaaec3e1', '100', 'Valet Fee',
'2023-01-09 20:07:23'),
(13, 1, 'c7b0da5ebe8459431b6cbed1b6b98a0265f82774', '100', 'Valet Fee',
'2023-01-09 20:22:53'),
(14, 1, 'c7b0da5ebe8459431b6cbed1b6b98a0265f82774', '100', 'Valet Fee',
'2023-01-09 20:22:53'),
(15, 1, '82da1d7c28a6f5ff4285f2c0060bdb38d88c39dd', '100', 'Valet Fee',
'2023-01-12 17:51:38'),
(16, 1, '82da1d7c28a6f5ff4285f2c0060bdb38d88c39dd', '100', 'Valet Fee',
'2023-01-12 17:51:43'),
(17, 1, 'ec3e97a343fc9e8b025725d28d090a41b62a5d7b', '100', 'Valet Fee',
'2023-01-12 18:03:45'),
(18, 1, 'ec3e97a343fc9e8b025725d28d090a41b62a5d7b', '100', 'Valet Fee',
'2023-01-12 18:03:53'),
(19, 1, '82da1d7c28a6f5ff4285f2c0060bdb38d88c39dd', '100', 'Valet Fee',
'2023-01-12 19:38:24'),
(20, 1, '82da1d7c28a6f5ff4285f2c0060bdb38d88c39dd', '100', 'Valet Fee',
'2023-01-12 19:38:31'),
(21, 1, 'a4422544e585cd6132fb5fdfb13f8c9b1461bd19', '100', 'Valet Fee',
'2023-01-13 19:26:33'),
(22, 1, 'a4422544e585cd6132fb5fdfb13f8c9b1461bd19', '100', 'Valet Fee',
'2023-01-13 19:27:10'),
(23, 1, '6c40aa092cc8d2a370e58e57db69bd9300ebbd1e', '100', 'Valet Fee',
'2023-01-14 21:00:35'),
(24, 1, '6c40aa092cc8d2a370e58e57db69bd9300ebbd1e', '100', 'Valet Fee',
'2023-01-14 21:00:45'),
(25, 1, '6c40aa092cc8d2a370e58e57db69bd9300ebbd1e', '100', 'Valet Fee',
'2023-01-14 21:16:41'),
(26, 1, 'a4422544e585cd6132fb5fdfb13f8c9b1461bd19', '100', 'Valet Fee',
'2023-01-15 00:13:48'),
(27, 1, 'a4422544e585cd6132fb5fdfb13f8c9b1461bd19', '100', 'Valet Fee',
'2023-01-15 00:14:15'),
(28, 1, 'a4422544e585cd6132fb5fdfb13f8c9b1461bd19', '100', 'Valet Fee',
'2023-01-15 00:18:46'),
(29, 1, 'a4422544e585cd6132fb5fdfb13f8c9b1461bd19', '100', 'Valet Fee',
'2023-01-15 00:32:27'),
(30, 2, '8bfb6676e3d838eec3714b0136dccef848f4a335', '10000', 'Amil Sokac',
'2023-01-15 00:36:20'),
(31, 1, '7a029d7423c06765cca5bafab5015365e3f391ad', '10000', 'Predrag Sokac',
'2023-01-15 00:36:20'),
(32, 1, '8bfb6676e3d838eec3714b0136dccef848f4a335', '100', 'Valet Fee',
'2023-01-15 00:57:42'),
(33, 1, '8bfb6676e3d838eec3714b0136dccef848f4a335', '100', 'Valet Fee',
'2023-01-15 00:58:32'),
(34, 1, 'a4422544e585cd6132fb5fdfb13f8c9b1461bd19', '100', 'Valet Fee',
'2023-01-15 01:05:46'),
(35, 1, 'a4422544e585cd6132fb5fdfb13f8c9b1461bd19', '100', 'Valet Fee',
'2023-01-15 01:24:03'),
(36, 1, '8a3f4af7421238a4d24e7c6d1ca2e3273c1bb786', '100', 'Valet Fee',
'2023-04-06 21:38:33'),
(37, 1, '8a3f4af7421238a4d24e7c6d1ca2e3273c1bb786', '500', 'Valet naplata',
'2023-04-06 22:18:23');

-- Dumping structure for table sokac.gksphone_blockednumber


CREATE TABLE IF NOT EXISTS `gksphone_blockednumber` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`identifier` longtext NOT NULL,
`hex` longtext NOT NULL,
`number` longtext NOT NULL,
PRIMARY KEY (`id`) USING BTREE
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci;

-- Dumping data for table sokac.gksphone_blockednumber: ~0 rows (approximately)

-- Dumping structure for table sokac.gksphone_calls


CREATE TABLE IF NOT EXISTS `gksphone_calls` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`owner` longtext NOT NULL COMMENT 'Num tel proprio',
`num` longtext NOT NULL COMMENT 'Num reférence du contact',
`incoming` int(11) NOT NULL COMMENT 'Défini si on est à l''origine de l''appels',
`time` timestamp NOT NULL DEFAULT current_timestamp(),
`accepts` int(11) NOT NULL COMMENT 'Appels accepter ou pas',
PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=29 DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;

-- Dumping data for table sokac.gksphone_calls: ~28 rows (approximately)


INSERT INTO `gksphone_calls` (`id`, `owner`, `num`, `incoming`, `time`, `accepts`)
VALUES
(1, '2812135', '5041175', 1, '2023-01-01 23:37:32', 1),
(2, '5041175', '2812135', 0, '2023-01-01 23:37:32', 1),
(3, '4088460', '7765434', 1, '2023-01-14 19:10:37', 1),
(4, '7765434', '4088460', 0, '2023-01-14 19:10:37', 1),
(5, '7765434', '4088460', 1, '2023-01-14 20:00:00', 0),
(6, '4088460', '7765434', 0, '2023-01-14 20:00:00', 0),
(7, '7765434', '4088460', 1, '2023-01-14 20:00:09', 1),
(8, '4088460', '7765434', 0, '2023-01-14 20:00:09', 1),
(9, '7765434', '4088460', 1, '2023-01-14 20:00:48', 0),
(10, '4088460', '7765434', 0, '2023-01-14 20:00:48', 0),
(11, '7765434', '4088460', 1, '2023-01-14 20:02:04', 0),
(12, '4088460', '7765434', 0, '2023-01-14 20:02:04', 0),
(13, '6099048', '9612617', 1, '2023-01-14 22:26:03', 0),
(14, '9612617', '6099048', 0, '2023-01-14 22:26:03', 0),
(15, '9612617', '6099048', 1, '2023-01-14 22:49:25', 0),
(16, '6099048', '9612617', 0, '2023-01-14 22:49:25', 0),
(17, '4240559', '3641970', 1, '2023-01-14 22:50:46', 1),
(18, '3641970', '4240559', 0, '2023-01-14 22:50:46', 1),
(19, '9612617', '6099048', 1, '2023-01-14 22:51:01', 0),
(20, '6099048', '9612617', 0, '2023-01-14 22:51:01', 0),
(21, '9612617', '6099048', 1, '2023-01-14 22:51:41', 0),
(22, '6099048', '9612617', 0, '2023-01-14 22:51:41', 0),
(23, '9612617', '3300163', 1, '2023-01-15 02:06:36', 0),
(24, '3300163', '9612617', 0, '2023-01-15 02:06:36', 0),
(25, '3300163', '9612617', 1, '2023-01-15 02:06:50', 0),
(26, '9612617', '3300163', 0, '2023-01-15 02:06:50', 0),
(27, '9612617', '3300163', 1, '2023-01-15 02:07:33', 1),
(28, '3300163', '9612617', 0, '2023-01-15 02:07:33', 1);

-- Dumping structure for table sokac.gksphone_gallery


CREATE TABLE IF NOT EXISTS `gksphone_gallery` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`hex` longtext NOT NULL,
`image` longtext NOT NULL,
`time` timestamp NOT NULL DEFAULT current_timestamp(),
PRIMARY KEY (`id`) USING BTREE
) ENGINE=InnoDB AUTO_INCREMENT=6 DEFAULT CHARSET=utf8mb4
COLLATE=utf8mb4_general_ci;

-- Dumping data for table sokac.gksphone_gallery: ~5 rows (approximately)


INSERT INTO `gksphone_gallery` (`id`, `hex`, `image`, `time`) VALUES
(1, '29050148f9e4c80d3b982c875d4cc06ce5b042da',
'https://media.discordapp.net/attachments/1022225864026497146/1059442517692661760/
screenshot.jpeg', '2023-01-02 12:06:21'),
(2, '6a332ada7912241413ab53628f713b0442ea79f5',
'https://media.discordapp.net/attachments/1022225864026497146/1063898884113453146/
screenshot.jpeg', '2023-01-14 19:14:21'),
(3, '6a332ada7912241413ab53628f713b0442ea79f5',
'https://media.discordapp.net/attachments/1022225864026497146/1063899336884355092/
screenshot.jpeg', '2023-01-14 19:16:20'),
(4, '6a332ada7912241413ab53628f713b0442ea79f5',
'https://media.discordapp.net/attachments/1022225864026497146/1063899400084127784/
screenshot.jpeg', '2023-01-14 19:16:24'),
(5, '6a332ada7912241413ab53628f713b0442ea79f5',
'https://media.discordapp.net/attachments/1022225864026497146/1063899564010119308/
screenshot.jpeg', '2023-01-14 19:17:45');

-- Dumping structure for table sokac.gksphone_gotur


CREATE TABLE IF NOT EXISTS `gksphone_gotur` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`label` longtext NOT NULL,
`price` int(11) DEFAULT 0,
`count` int(11) NOT NULL,
`item` longtext NOT NULL,
`kapat` varchar(50) DEFAULT 'false',
`adet` int(11) DEFAULT 0,
PRIMARY KEY (`id`) USING BTREE
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci;

-- Dumping data for table sokac.gksphone_gotur: ~0 rows (approximately)


-- Dumping structure for table sokac.gksphone_gps
CREATE TABLE IF NOT EXISTS `gksphone_gps` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`hex` longtext NOT NULL,
`nott` longtext DEFAULT NULL,
`gps` longtext DEFAULT NULL,
PRIMARY KEY (`id`) USING BTREE
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci;

-- Dumping data for table sokac.gksphone_gps: ~0 rows (approximately)

-- Dumping structure for table sokac.gksphone_group_message


CREATE TABLE IF NOT EXISTS `gksphone_group_message` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`groupid` int(11) NOT NULL,
`owner` longtext NOT NULL,
`ownerphone` varchar(50) NOT NULL,
`groupname` varchar(255) NOT NULL,
`messages` longtext NOT NULL,
`contacts` longtext NOT NULL,
`time` timestamp NOT NULL DEFAULT current_timestamp() ON UPDATE
current_timestamp(),
PRIMARY KEY (`id`) USING BTREE,
KEY `groupid` (`groupid`) USING BTREE,
CONSTRAINT `FK_phonegroupmessage` FOREIGN KEY (`groupid`) REFERENCES
`gksphone_messages_group` (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

-- Dumping data for table sokac.gksphone_group_message: ~0 rows (approximately)

-- Dumping structure for table sokac.gksphone_insto_accounts


CREATE TABLE IF NOT EXISTS `gksphone_insto_accounts` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`forename` longtext NOT NULL,
`surname` longtext NOT NULL,
`username` varchar(250) CHARACTER SET utf8 COLLATE utf8_general_ci NOT NULL,
`password` longtext NOT NULL,
`avatar_url` longtext DEFAULT NULL,
`takip` longtext DEFAULT '[]',
PRIMARY KEY (`id`) USING BTREE,
UNIQUE KEY `username` (`username`) USING BTREE
) ENGINE=InnoDB AUTO_INCREMENT=6 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_bin;

-- Dumping data for table sokac.gksphone_insto_accounts: ~4 rows (approximately)


INSERT INTO `gksphone_insto_accounts` (`id`, `forename`, `surname`, `username`,
`password`, `avatar_url`, `takip`) VALUES
(1, 'Hare', 'Amsterdam', 'Hare', 'hare123z.',
'https://image.flaticon.com/icons/png/512/149/149071.png', '[]'),
(2, 'Viktor', 'Mladenovic', 'V1kt0r10', 'mladenovicv22',
'https://media.discordapp.net/attachments/1022225864026497146/1063900041888157736/
screenshot.jpeg', '[]'),
(3, 'Gw1mp1', 'Kralj', 'Gw1mp1', 'GW1MP1',
'https://media.discordapp.net/attachments/1022225864026497146/1063899270765359114/
screenshot.jpeg', '[]'),
(5, 'Gw1mp1', 'Kralj', 'Gw1mpara', 'Uros123',
'https://media.discordapp.net/attachments/1022225864026497146/1063901314687455272/
screenshot.jpeg', '[]');
-- Dumping structure for table sokac.gksphone_insto_instas
CREATE TABLE IF NOT EXISTS `gksphone_insto_instas` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`authorId` int(11) NOT NULL,
`realUser` longtext DEFAULT NULL,
`message` longtext NOT NULL,
`image` longtext NOT NULL,
`filters` longtext NOT NULL,
`time` timestamp NOT NULL DEFAULT current_timestamp(),
`likes` int(11) NOT NULL DEFAULT 0,
PRIMARY KEY (`id`),
KEY `FK_gksphone_insto_instas_gksphone_insto_accounts` (`authorId`),
CONSTRAINT `FK_gksphone_insto_instas_gksphone_insto_accounts` FOREIGN KEY
(`authorId`) REFERENCES `gksphone_insto_accounts` (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=4 DEFAULT CHARSET=utf8mb4
COLLATE=utf8mb4_unicode_ci;

-- Dumping data for table sokac.gksphone_insto_instas: ~3 rows (approximately)


INSERT INTO `gksphone_insto_instas` (`id`, `authorId`, `realUser`, `message`,
`image`, `filters`, `time`, `likes`) VALUES
(1, 1, 'a4422544e585cd6132fb5fdfb13f8c9b1461bd19', 'Toni Montana prica je
lagana mala nema mana nosi guci i gabana',
'https://media.discordapp.net/attachments/1022225864026497146/1063539404314005525/
screenshot.jpeg', 'clarendon', '2023-01-13 19:26:19', 1),
(2, 2, '09c1d548faaceb473051ccc0e3c11c17ae454af1', 'idemo samo jako breee',
'https://media.discordapp.net/attachments/1022225864026497146/1063899036375072778/
screenshot.jpeg', 'perpetua', '2023-01-14 19:15:29', 2),
(3, 1, 'a4422544e585cd6132fb5fdfb13f8c9b1461bd19', '!',
'https://media.discordapp.net/attachments/1022225864026497146/1063924152949547199/
screenshot.jpeg', 'clarendon', '2023-01-14 20:54:58', 0);

-- Dumping structure for table sokac.gksphone_insto_likes


CREATE TABLE IF NOT EXISTS `gksphone_insto_likes` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`authorId` int(11) DEFAULT NULL,
`inapId` int(11) DEFAULT NULL,
PRIMARY KEY (`id`),
KEY `FK_gksphone_insto_likes_gksphone_insto_accounts` (`authorId`),
KEY `FK_gksphone_insto_likes_gksphone_insto_instas` (`inapId`),
CONSTRAINT `FK_gksphone_insto_likes_gksphone_insto_accounts` FOREIGN KEY
(`authorId`) REFERENCES `gksphone_insto_accounts` (`id`),
CONSTRAINT `FK_gksphone_insto_likes_gksphone_insto_instas` FOREIGN KEY (`inapId`)
REFERENCES `gksphone_insto_instas` (`id`) ON DELETE CASCADE
) ENGINE=InnoDB AUTO_INCREMENT=4 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_bin;

-- Dumping data for table sokac.gksphone_insto_likes: ~3 rows (approximately)


INSERT INTO `gksphone_insto_likes` (`id`, `authorId`, `inapId`) VALUES
(1, 1, 1),
(2, 2, 2),
(3, 1, 2);

-- Dumping structure for table sokac.gksphone_insto_story


CREATE TABLE IF NOT EXISTS `gksphone_insto_story` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`authorId` int(11) NOT NULL,
`realUser` longtext DEFAULT NULL,
`stories` longtext NOT NULL,
`isRead` varchar(256) NOT NULL,
`time` timestamp NOT NULL DEFAULT current_timestamp(),
`likes` int(11) NOT NULL DEFAULT 0,
PRIMARY KEY (`id`) USING BTREE,
KEY `FK_gksphone_insto_story_gksphone_insto_accounts` (`authorId`) USING BTREE,
CONSTRAINT `FK_gksphone_insto_story_gksphone_insto_accounts` FOREIGN KEY
(`authorId`) REFERENCES `gksphone_insto_accounts` (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

-- Dumping data for table sokac.gksphone_insto_story: ~0 rows (approximately)

-- Dumping structure for table sokac.gksphone_job_message


CREATE TABLE IF NOT EXISTS `gksphone_job_message` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`name` longtext NOT NULL,
`number` varchar(50) NOT NULL,
`message` longtext NOT NULL,
`photo` longtext DEFAULT NULL,
`gps` varchar(255) NOT NULL,
`owner` int(11) NOT NULL DEFAULT 0,
`jobm` varchar(255) NOT NULL,
`time` timestamp NOT NULL DEFAULT current_timestamp(),
PRIMARY KEY (`id`) USING BTREE
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci;

-- Dumping data for table sokac.gksphone_job_message: ~0 rows (approximately)

-- Dumping structure for table sokac.gksphone_mails


CREATE TABLE IF NOT EXISTS `gksphone_mails` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`citizenid` varchar(255) NOT NULL DEFAULT '0',
`sender` varchar(255) NOT NULL DEFAULT '0',
`subject` varchar(255) NOT NULL DEFAULT '0',
`image` text NOT NULL,
`message` text NOT NULL,
`time` timestamp NOT NULL DEFAULT current_timestamp() ON UPDATE
current_timestamp(),
PRIMARY KEY (`id`) USING BTREE
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;

-- Dumping data for table sokac.gksphone_mails: ~0 rows (approximately)

-- Dumping structure for table sokac.gksphone_messages


CREATE TABLE IF NOT EXISTS `gksphone_messages` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`transmitter` varchar(50) NOT NULL,
`receiver` varchar(50) NOT NULL,
`message` longtext NOT NULL,
`time` timestamp NOT NULL DEFAULT current_timestamp(),
`isRead` int(11) NOT NULL DEFAULT 0,
`owner` int(11) NOT NULL DEFAULT 0,
PRIMARY KEY (`id`)
) ENGINE=MyISAM AUTO_INCREMENT=45 DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;

-- Dumping data for table sokac.gksphone_messages: 44 rows


/*!40000 ALTER TABLE `gksphone_messages` DISABLE KEYS */;
INSERT INTO `gksphone_messages` (`id`, `transmitter`, `receiver`, `message`,
`time`, `isRead`, `owner`) VALUES
(1, '2812135', '5041175', 'a', '2023-01-01 23:38:31', 1, 0),
(2, '5041175', '2812135', 'a', '2023-01-01 23:38:31', 1, 1),
(3, '5041175', '2812135', 'sisaj ga', '2023-01-01 23:38:39', 1, 0),
(4, '2812135', '5041175', 'sisaj ga', '2023-01-01 23:38:39', 1, 1),
(5, '2812135', '5041175',
'https://media.discordapp.net/attachments/1022225864026497146/1059254450545500241/
screenshot.jpeg', '2023-01-01 23:39:01', 1, 0),
(6, '5041175', '2812135',
'https://media.discordapp.net/attachments/1022225864026497146/1059254450545500241/
screenshot.jpeg', '2023-01-01 23:39:01', 1, 1),
(7, '2812135', '5041175',
':star_struck::star_struck::star_struck::star_struck:', '2023-01-01 23:39:20', 1,
0),
(8, '5041175', '2812135',
':star_struck::star_struck::star_struck::star_struck:', '2023-01-01 23:39:20', 1,
1),
(9, '5041175', '2812135',
'https://media.discordapp.net/attachments/1022225864026497146/1059254603721478154/
screenshot.jpeg', '2023-01-01 23:39:38', 1, 0),
(10, '2812135', '5041175',
'https://media.discordapp.net/attachments/1022225864026497146/1059254603721478154/
screenshot.jpeg', '2023-01-01 23:39:38', 1, 1),
(11, '6099048', '9612617', 'STA', '2023-01-14 22:27:37', 1, 0),
(12, '9612617', '6099048', 'STA', '2023-01-14 22:27:37', 1, 1),
(13, '9612617', '6099048', 'posalji', '2023-01-14 22:33:19', 1, 0),
(14, '6099048', '9612617', 'posalji', '2023-01-14 22:33:19', 1, 1),
(15, '9612617', '6099048', 'mi lokaciju vase baze', '2023-01-14 22:33:24', 1,
0),
(16, '6099048', '9612617', 'mi lokaciju vase baze', '2023-01-14 22:33:24', 1,
1),
(17, '6099048', '9612617', 'GPS: 274.72470092773, -960.14904785156', '2023-
01-14 22:40:50', 1, 0),
(18, '9612617', '6099048', 'GPS: 274.72470092773, -960.14904785156', '2023-
01-14 22:40:50', 1, 1),
(19, '6099048', '9612617', 'LOKACIJA BAZE JE 1953', '2023-01-14 22:42:46', 1,
0),
(20, '9612617', '6099048', 'LOKACIJA BAZE JE 1953', '2023-01-14 22:42:46', 1,
1),
(21, '6099048', '9612617', 'ok', '2023-01-14 22:42:56', 1, 1),
(22, '9612617', '6099048', 'ok', '2023-01-14 22:42:56', 1, 0),
(23, '4240559', '3641970', 'Dzafer lokacije', '2023-01-14 22:50:58', 1, 0),
(24, '3641970', '4240559', 'Dzafer lokacije', '2023-01-14 22:50:58', 1, 1),
(25, '3641970', '4240559', '423', '2023-01-14 22:51:23', 1, 0),
(26, '4240559', '3641970', '423', '2023-01-14 22:51:23', 1, 1),
(27, '9612617', '6099048', 'gde si', '2023-01-14 22:51:46', 1, 0),
(28, '6099048', '9612617', 'gde si', '2023-01-14 22:51:46', 1, 1),
(29, '9612617', '6099048', 'KOD AUTO SKOLE', '2023-01-14 22:52:20', 1, 1),
(30, '6099048', '9612617', 'KOD AUTO SKOLE', '2023-01-14 22:52:20', 1, 0),
(31, '6099048', '9612617', 'cekaj me tu', '2023-01-14 22:53:09', 1, 1),
(32, '9612617', '6099048', 'cekaj me tu', '2023-01-14 22:53:09', 1, 0),
(33, '6099048', '9612617', 'OK', '2023-01-14 22:53:14', 1, 0),
(34, '9612617', '6099048', 'OK', '2023-01-14 22:53:14', 1, 1),
(35, '4240559', '3641970', 'da znas naso sam jos jednu lokaciju za preradu
brasna ', '2023-01-14 22:59:58', 1, 0),
(36, '3641970', '4240559', 'da znas naso sam jos jednu lokaciju za preradu
brasna ', '2023-01-14 22:59:58', 1, 1),
(37, '3641970', '4240559', 'hahahahaha', '2023-01-14 23:00:17', 1, 0),
(38, '4240559', '3641970', 'hahahahaha', '2023-01-14 23:00:17', 1, 1),
(39, '9612617', '5511888', 'ee', '2023-01-14 23:46:47', 1, 0),
(40, '5511888', '9612617', 'ee', '2023-01-14 23:46:47', 1, 1),
(41, '5511888', '9612617', 'e', '2023-01-14 23:47:14', 1, 0),
(42, '9612617', '5511888', 'e', '2023-01-14 23:47:14', 1, 1),
(43, '4240559', '3641970', 'jesil naso sta', '2023-01-14 23:48:46', 0, 0),
(44, '3641970', '4240559', 'jesil naso sta', '2023-01-14 23:48:46', 1, 1);
/*!40000 ALTER TABLE `gksphone_messages` ENABLE KEYS */;

-- Dumping structure for table sokac.gksphone_messages_group


CREATE TABLE IF NOT EXISTS `gksphone_messages_group` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`owner` longtext NOT NULL,
`ownerphone` varchar(50) NOT NULL,
`groupname` varchar(255) NOT NULL,
`gimage` longtext NOT NULL,
`contacts` longtext NOT NULL,
PRIMARY KEY (`id`) USING BTREE
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;

-- Dumping data for table sokac.gksphone_messages_group: ~0 rows (approximately)

-- Dumping structure for table sokac.gksphone_news


CREATE TABLE IF NOT EXISTS `gksphone_news` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`hex` longtext DEFAULT NULL,
`haber` longtext DEFAULT NULL,
`baslik` longtext DEFAULT NULL,
`resim` longtext DEFAULT NULL,
`video` longtext DEFAULT NULL,
`zaman` timestamp NULL DEFAULT current_timestamp(),
PRIMARY KEY (`id`) USING BTREE
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;

-- Dumping data for table sokac.gksphone_news: ~0 rows (approximately)

-- Dumping structure for table sokac.gksphone_settings


CREATE TABLE IF NOT EXISTS `gksphone_settings` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`identifier` longtext NOT NULL,
`crypto` longtext NOT NULL DEFAULT '{}',
`phone_number` varchar(50) DEFAULT NULL,
`avatar_url` longtext DEFAULT NULL,
PRIMARY KEY (`id`) USING BTREE
) ENGINE=InnoDB AUTO_INCREMENT=244 DEFAULT CHARSET=utf8mb4
COLLATE=utf8mb4_general_ci;

-- Dumping data for table sokac.gksphone_settings: ~243 rows (approximately)


INSERT INTO `gksphone_settings` (`id`, `identifier`, `crypto`, `phone_number`,
`avatar_url`) VALUES
(1, 'd789f75917cbe1986075df7b2e7a6a4bc7cab83f', '{}', '7366872', NULL),
(2, 'be0da256bda1a6930cc0fd38ec9494ab76e7848a', '{}', '8608184', NULL),
(3, '582da3894c46d562fd308b2b2a547d932fc28d80', '{}', '5517628', NULL),
(4, '5c0df8371401dcedd7dffcc7cdb9472c8b6b7779', '{}', '4411618', NULL),
(5, '048e44757a2e76b7b1d50a00d5e967e6a34f5df6', '{}', '1840625', NULL),
(6, '971033950d00418794be42f30a1c4538628b3b92', '{}', '5148602', NULL),
(7, 'dfce5ef05982ff443981b07926cd2fc652ef2db7', '{}', '2812135', NULL),
(8, 'eaeff9c4ffb655369846d7ac662261a1b8f08f9c', '{}', '3653456', NULL),
(9, '6ce84d2f3267d64a959c2361246dd566569cae25', '{}', '2857117', NULL),
(10, 'b664b815f5fdaa79d10db9d967fc9d52a8cc7654', '{}', '1393781', NULL),
(11, 'ec3e97a343fc9e8b025725d28d090a41b62a5d7b', '{}', '4834535', NULL),
(12, '0a4747bd4e4a3285d7c4f3ffcdcd5754cbeceffd', '{}', '4789874', NULL),
(13, '7c2750789dede8f180678d661ba43274410ed95c', '{}', '2913155', NULL),
(14, '92964bce529a2033293cb632f76f88a55b5e7223', '{}', '5041175', NULL),
(15, '29050148f9e4c80d3b982c875d4cc06ce5b042da', '{}', '1370147', NULL),
(16, '52b4a1c36228a2fe6799081472eb0a8db46efa08', '{}', '4892094', NULL),
(17, '4e515ef29600d6d5c9cfcd547a56c815be5b6696', '{}', '8955617', NULL),
(18, '32fb3239d652fb24da06c98a27f000e0e06b5ff4', '{}', '1541543', NULL),
(19, '8eb9c4c6a466e9b45f44027d529ceb228e28a713', '{}', '6060433', NULL),
(20, 'bf345a1387d0ca291d9e196c8af5e1273357bb22', '{}', '5203140', NULL),
(21, '281601eebf52336d2f94c2609a57c6613d49ec82', '{}', '8132096', NULL),
(22, 'a4422544e585cd6132fb5fdfb13f8c9b1461bd19', '{}', '6436110', NULL),
(23, 'b636b4851b8cbb3ee25c17e1bb487b861aab2598', '{}', '6349349', NULL),
(24, 'a35ba4d0ece06fb56dac6927b68ab450ffe84291', '{}', '8461750', NULL),
(25, 'a3870e4f3b5d7385752471bbad71000dd100a316', '{}', '4572863', NULL),
(26, '028ae69f95fe84397376c135cee4b219cba7ed38', '{}', '2037906', NULL),
(27, 'd17bf85aebc9c7b986ca99f90d7259d1b2368854', '{}', '5468420', NULL),
(28, 'ab218825a096d95ab700582279e91f38ed65a998', '{}', '3985907', NULL),
(29, '55b3ee690820375e14e47d25c6982e9fca0ed15f', '{}', '3661658', NULL),
(30, '5787436b82a91330ce57c31baae8462c75985d82', '{}', '3572441', NULL),
(31, 'd57efd814960859b4f2e8b00cb527ec880f52f19', '{}', '6201846', NULL),
(32, '86a759f24f13d8b6de9e5fe16ad54cf1c06e9525', '{}', '7832263', NULL),
(33, '82da1d7c28a6f5ff4285f2c0060bdb38d88c39dd', '{}', '1387992', NULL),
(34, 'd861336d76b20f9a1ab2e891e07b21674c641f0c', '{}', '7935533', NULL),
(35, 'c7b0da5ebe8459431b6cbed1b6b98a0265f82774', '{}', '3863655', NULL),
(36, 'a280cd04eafb871976e08cdc4adadc6adaaec3e1', '{}', '7898603', NULL),
(37, '64314935d9a975f6b61460cd3526aeb7065743d9', '{}', '9415332', NULL),
(38, 'a5ba63be5d92213fff76bd8e0cf6694b9aee9b57', '{}', '9910492', NULL),
(39, 'bc2863a14ed2b5c47d184a2d07c9c9c6ffe0523a', '{}', '6063810', NULL),
(40, '1d5842d1e84b9811bc28cc5c570d0ef2c1eae5b1', '{}', '1308906', NULL),
(41, 'a5c58fea238cf7be033b3c5a2081c360b5184a89', '{}', '3860219', NULL),
(42, '75f1ff21ced0ccca98835e579cdc281c54e9aaf9', '{}', '8010232', NULL),
(43, '3fe5fc479662f9f90dc4554c274a40db9498d587', '{}', '8226982', NULL),
(44, 'ab9cc1a12112aeb6bb5583d23f3f4a3fd9654baa', '{}', '9575758', NULL),
(45, 'aba646f83c2ebd361df1ae24564fda85b866fd9e', '{}', '4870422', NULL),
(46, 'cd11e6ea499b847be2634e361bf5fe9c71bf89aa', '{}', '5373772', NULL),
(47, 'c0693b27b436490b6472d322a37cef8aa1caca97', '{}', '4236319', NULL),
(48, '98ac7cc69b8a3ddabfcee5c130ab506a344cccd7', '{}', '6280959', NULL),
(49, 'b74490669ce119895dc5a08a7526e255a7a307b4', '{}', '4860947', NULL),
(50, '8a3f3652c1d8793cec3d0a3ed6997138b465f349', '{}', '8789517', NULL),
(51, 'd1721bbfb737142903cb6e608a8a720e75f8f871', '{}', '2941407', NULL),
(52, 'b4acc4bf896997aa791168dfa2df47bdf229977d', '{}', '3661469', NULL),
(53, 'a3d4e1dc8eef6d9d04dc415bec476f03e6f392d9', '{}', '1279354', NULL),
(54, '54d364829795ee5bc88770dc9971856afe59c37c', '{}', '2449688', NULL),
(55, '6a6cce244bafc5e8b33e7973abce8ccfda33670a', '{}', '3641970', NULL),
(56, '6918acd89e1d7e66f52f5a62486979b5156e9541', '{}', '6145521', NULL),
(57, '35290623e487cf1bc198b832c913758da53bf42d', '{}', '4981966', NULL),
(58, '84e9f37e6297213a2eb648cbf1a017dd7bb72127', '{}', '5340495', NULL),
(59, '1226e927a65193c375d54734841e63ed8330fa5d', '{}', '3552707', NULL),
(60, 'c0eba96a82692fd1961a9dbdbab104c755656452', '{}', '6161865', NULL),
(61, 'b3f9b7c65be8dc88756071bff637a0b167360340', '{}', '1490100', NULL),
(62, '965bec541b297430b85da0dbc9a357800c04c158', '{}', '3441368', NULL),
(63, '0ca7c53a26897624a6e9618c99546b6727bf5c65', '{}', '8179537', NULL),
(64, 'c0e59b595d8fb8faafa8dedc614a2ea7e8a947d1', '{}', '6712930', NULL),
(65, '5ca75615bcd55dc73eec1a27bf67ec8a645135b1', '{}', '1661867', NULL),
(66, '7858b7cbfbd74a5916b1fca88690c71cee8e455b', '{}', '1080047', NULL),
(67, '45ebb3d59bee5dc7d1e4fe53151dc7497e0320db', '{}', '2306685', NULL),
(68, 'e0b8cd85d101f7f69142e6c5601398768c525fef', '{}', '3597471', NULL),
(69, 'b8dc845cf0270cb9f0288b0e6ff95d315623db60', '{}', '8293264', NULL),
(70, '1ae4abcd045ce0d1c09d50b0f96fa429fa931b31', '{}', '9078966', NULL),
(71, '494a25801f660ee37e092f34faee2af1cfabf56b', '{}', '6099048',
'https://media.discordapp.net/attachments/1022225864026497146/1063956351224660008/
screenshot.jpeg'),
(72, '09c1d548faaceb473051ccc0e3c11c17ae454af1', '{}', '7765434', NULL),
(73, 'c71606ae247cf68ea101fea237fd1ca78bf487b8', '{}', '2909715', NULL),
(74, '666bca3a571576c0b0343861aea6757726b998c1', '{}', '3638897', NULL),
(75, '909cd284b8ee7e3d381afc1f0fb7474e7301a858', '{}', '7056333', NULL),
(76, '8bfb6676e3d838eec3714b0136dccef848f4a335', '{}', '7404447',
'https://media.discordapp.net/attachments/1022225864026497146/1063980306459271178/
screenshot.jpeg'),
(77, '5476f9b1061777cc281ae19c3eebb17d1b71f831', '{}', '4584909', NULL),
(78, '6a332ada7912241413ab53628f713b0442ea79f5', '{}', '4088460', NULL),
(79, '12d7c2019f4cc6efaecf055dfde0a9ed15b43201', '{}', '2909411', NULL),
(80, '8a14131eef4c715a84dd269fa7ef78355b04c860', '{}', '3026209', NULL),
(81, '68399a5b8cd906efc5c766e44db567fae9ead974', '{}', '6925443', NULL),
(82, 'd413b1ed85e41ffeab87b1be5169d4827461fa9e', '{}', '1128963', NULL),
(83, '79c74b9305929869c6e44021e6b015fd73208696', '{}', '9924084', NULL),
(84, 'bada500c4554ef8c223112c8dcfe8bc326946b28', '{}', '5060114', NULL),
(85, 'a6d00a1855c6edcd46e7038d4d78327d6cf85fb5', '{}', '5333502', NULL),
(86, '2a2870b72461113c5886c9b9c7f14fc45b766662', '{}', '9901572', NULL),
(87, '6478d2abb6f7643d05bd3dad07f3d4ac3bcf0ad6', '{}', '4240559', NULL),
(88, 'ae103a8350e2d2c8fcc4899903baa20d7e093704', '{}', '9409799', NULL),
(89, '7397ed4089a779c7572ba44a5be641a461a5e9d9', '{}', '7838626', NULL),
(90, 'f5fd935995e14ce4369a514e0e6c5a6bd9afd454', '{}', '6886391', NULL),
(91, '2f49c5a7609b356a747e1fec2210921994469adb', '{}', '5511888', NULL),
(92, '6c40aa092cc8d2a370e58e57db69bd9300ebbd1e', '{}', '5346578', NULL),
(93, '5a15447f8eef79966d1927549a1166c1474c940a', '{}', '7678883', NULL),
(94, 'a0954cf3a7e6443a7af6f1c5fbd9292a10926540', '{}', '1200358', NULL),
(95, '7220a15fbce7481ef9859eb92f07f0a5016eb763', '{}', '2704518', NULL),
(96, 'bdd45db8bcf1a9cfdb4e90f7ea4a0f46d6c8c56f', '{}', '9585419', NULL),
(97, '13d2b2179a30f7e1bcac6b5184f3ad9f11bb296d', '{}', '6274695', NULL),
(98, 'dcf1704656d2573c8b0a3e0572656dc195aadbd7', '{}', '4063313', NULL),
(99, '28dcef4528832a448b493567678c7a1e2d0584cd', '{}', '8027695', NULL),
(100, '39129ac5a1f06dd684f12b5755b7ba42a729b42a', '{}', '9945744', NULL),
(101, '7a029d7423c06765cca5bafab5015365e3f391ad', '{}', '9612617', NULL),
(102, 'e9af9789d186d263b68bfeb034278a65b8de913c', '{}', '9746669', NULL),
(103, '97fe78a44959af23c17abde9fe1037d7d59fccc5', '{}', '1310315', NULL),
(104, '799fbc2810574457217273e3bc177c31daf5b059', '{}', '3740604', NULL),
(105, '0f654b2d77b4eb2ba6b08540470611bac72b2579', '{}', '6143778', NULL),
(106, '4c1342bb7b13d48b097d6e701373e6c91a2b8205', '{}', '3168212', NULL),
(107, '252627647eaa344cd6c328ffdc16943abd6cc647', '{}', '2742870', NULL),
(108, '17fdae4348936aba0aa55061db6687c4e4bf6b18', '{}', '9099341', NULL),
(109, '6cc558962cedcf669be989c545b303bbcabc675b', '{}', '7947814', NULL),
(110, 'fd4f48ab1640ecccb1e3c932e44dd67b74885d43', '{}', '4708830', NULL),
(111, 'f8b7e948483a2a3930b08f91aac9f20862dd0bd0', '{}', '3598036', NULL),
(112, 'bafd58a8eb94e629c331a2ea477b0cf492bd73cb', '{}', '2947568', NULL),
(113, '4969cd8fa21d138c538b90188d15f7aeddc7f9ef', '{}', '3295421', NULL),
(114, '5ed9de78ce27819531313f7dfd74e348b79a13fd', '{}', '9469541', NULL),
(115, '533fc657b92dfe0856837836284cbe8ea747f6ce', '{}', '3329283', NULL),
(116, 'd32c5e6e4871a13b5fb0a645afe74a5b2fd68697', '{}', '7832806', NULL),
(117, 'ec695c17d9436ea57ef008c6128f19c0453cecaf', '{}', '7217858', NULL),
(118, '7c900cc91d3d6f9d535afb81b7a010f026131635', '{}', '7205509', NULL),
(119, 'a0ae46b0c910c63e9838939e916d1d5470ceb016', '{}', '1892393', NULL),
(120, 'b4b1b6dab8c6607a6b7cef820d4ef82482371d03', '{}', '7652581', NULL),
(121, '1646bfafd31faa15717acb17de82822f57e544fe', '{}', '4271450', NULL),
(122, '456827218985c2c476a6550c0b65085f9f2d7608', '{}', '4072891', NULL),
(123, '6e53525f5407717eeb1bc4c07b3a038a6740d56c', '{}', '3405355', NULL),
(124, '12c5cde3d8d5f191ffa2b1027bc27be9476f6d72', '{}', '2905054', NULL),
(125, 'df13406598e4b81cc7e7f5847667529344319f92', '{}', '5308583', NULL),
(126, '96e784cc8e36df8189a5009352fb19435f0ffde0', '{}', '2041794', NULL),
(127, '0a07d011bc7ac3b56d8f5ac5e89505cc015db1b3', '{}', '1670944', NULL),
(128, '01e8ec33e8d94b46d9f2d8216ee6112f679ed863', '{}', '4701515', NULL),
(129, '7c27ba8d81c3f690b20acdff22596ce6e4e27f6d', '{}', '9685407', NULL),
(130, 'd15a45930d5e57366046ac6d2b5151f5b4f34c90', '{}', '6536023', NULL),
(131, '03287eca6fed02995b8337373ea427ff6c2c3137', '{}', '8202142', NULL),
(132, '7fc61aa2350899a60c1c271df0a1a4702620c66b', '{}', '5619103', NULL),
(133, 'b90fa6bdc41eac1cb33de1eb41ccf67139bc8dfe', '{}', '7229186', NULL),
(134, 'c2dee5ef8ba164d227a1c741299e6c0b436122a1', '{}', '6974898', NULL),
(135, 'd7e5e3fd40e69a86ac72fb55cac11639732e87eb', '{}', '2862136', NULL),
(136, '24ded6ee8061b83201e253582af0fe5656c2a64a', '{}', '2750329', NULL),
(137, 'bcc0db3bb0c48e43e4a8e377bdfe25d40cd47bb9', '{}', '9736485', NULL),
(138, '910779249da0b56c9edaebf73dac147dda1ca575', '{}', '1821583', NULL),
(139, 'ad5b07a1b8209d094c12b7dbadf315067fccea62', '{}', '9124462', NULL),
(140, '016bc75492915cac4c678dcceaa711c3a2d0127e', '{}', '6840535', NULL),
(141, '6d23139d39cfe2ec04155d81c45a181d6d2e43f7', '{}', '8956331', NULL),
(142, '2f8a359cee4a48638c7e4e4f9431f78cc373d86b', '{}', '4705862', NULL),
(143, '092215a7790bd88be76a55cbdf80ecbb21d168d1', '{}', '4068438', NULL),
(144, '0858c4cb4b424bede148b26cf2cf455b25b33cc2', '{}', '1672377', NULL),
(145, 'c98fb528ac17d4f4db5ce403d93061832fcda50a', '{}', '3300163',
'https://media.discordapp.net/attachments/1022225864026497146/1064006247218675784/
screenshot.jpeg'),
(146, '109.163.169.98', '{}', '3451991', NULL),
(147, '109.245.200.124', '{}', '6246987', NULL),
(148, '92.36.214.231', '{}', '4706256', NULL),
(149, '178.149.241.76', '{}', '9480338', NULL),
(150, '109.175.39.11', '{}', '8974589', NULL),
(151, '109.175.62.151', '{}', '1153769', NULL),
(152, '31.176.249.192', '{}', '1782657', NULL),
(153, '92.36.221.37', '{}', '1428662', NULL),
(154, '92.36.223.78', '{}', '6116629', NULL),
(155, '92.36.209.13', '{}', '3210424', NULL),
(156, '109.175.49.163', '{}', '6261251', NULL),
(157, '178.237.223.120', '{}', '6916317', NULL),
(158, '31.176.246.107', '{}', '1340342', NULL),
(159, '92.36.211.223', '{}', '3935178', NULL),
(160, '109.175.39.68', '{}', '3114895', NULL),
(161, '109.245.204.255', '{}', '9113141', NULL),
(162, '109.175.38.164', '{}', '5062089', NULL),
(163, '178.148.170.46', '{}', '9167056', NULL),
(164, '109.163.168.9', '{}', '4612997', NULL),
(165, '109.175.48.129', '{}', '6367244', NULL),
(166, '109.175.38.44', '{}', '1032654', NULL),
(167, '31.176.246.199', '{}', '3990322', NULL),
(168, '109.175.75.144', '{}', '9054763', NULL),
(169, '46.235.97.140', '{}', '8961796', NULL),
(170, '178.237.218.90', '{}', '1186115', NULL),
(171, '37.220.64.248', '{}', '8765114', NULL),
(172, '31.176.240.61', '{}', '4712287', NULL),
(173, '109.175.79.251', '{}', '9580183', NULL),
(174, '109.175.58.75', '{}', '8999832', NULL),
(175, '92.36.208.237', '{}', '7549808', NULL),
(176, '109.175.75.153', '{}', '6009166', NULL),
(177, '109.175.63.237', '{}', '6732704', NULL),
(178, '92.36.222.128', '{}', '1200101', NULL),
(179, '109.175.43.53', '{}', '9210564', NULL),
(180, '31.176.244.247', '{}', '8187975', NULL),
(181, '109.245.198.62', '{}', '4381875', NULL),
(182, '79.140.150.51', '{}', '5760886', NULL),
(183, '92.36.217.184', '{}', '3407661', NULL),
(184, '92.36.217.199', '{}', '2117406', NULL),
(185, '79.140.150.181', '{}', '2397561', NULL),
(186, '93.86.15.179', '{}', '8106009', NULL),
(187, '79.140.150.61', '{}', '1736658', NULL),
(188, '31.176.240.51', '{}', '7678485', NULL),
(189, '178.237.223.210', '{}', '8148474', NULL),
(190, '79.140.150.44', '{}', '4731493', NULL),
(191, '77.29.232.213', '{}', '1978808', NULL),
(192, '79.140.150.70', '{}', '3953019', NULL),
(193, '109.106.235.3', '{}', '4247739', NULL),
(194, '178.220.188.66', '{}', '4125301', NULL),
(195, '46.217.195.206', '{}', '3232685', NULL),
(196, '79.140.150.137', '{}', '9503351', NULL),
(197, '77.29.196.143', '{}', '1646857', NULL),
(198, '79.140.150.114', '{}', '1873965', NULL),
(199, '0843213315308276db81ca43a7c08e57552c59dd', '{}', '7937127', NULL),
(200, 'a00e7d5e6f71bc015606a003d8918f415ffbb651', '{}', '4715439', NULL),
(201, '8a3f4af7421238a4d24e7c6d1ca2e3273c1bb786', '{}', '4127718', NULL),
(202, '89ad3a4f1f19fa3b8adf17b11b789de530a1d2d3', '{}', '5843347', NULL),
(203, '89ad3a4f1f19fa3b8adf17b11b789de530a1d2d3', '{}', '1135209', NULL),
(204, '89ad3a4f1f19fa3b8adf17b11b789de530a1d2d3', '{}', '5843347', NULL),
(205, '89ad3a4f1f19fa3b8adf17b11b789de530a1d2d3', '{}', '1135209', NULL),
(206, '92.36.214.252', '{}', '9205453', NULL),
(207, '92.36.214.252', '{}', '9205453', NULL),
(208, '92.36.214.252', '{}', '1215683', NULL),
(209, '92.36.214.252', '{}', '1215683', NULL),
(210, '92.36.210.87', '{}', '6907644', NULL),
(211, '92.36.210.87', '{}', '4046629', NULL),
(212, '92.36.210.87', '{}', '4046629', NULL),
(213, '92.36.210.87', '{}', '6907644', NULL),
(214, '92.36.220.28', '{}', '5830748', NULL),
(215, '92.36.220.28', '{}', '3205738', NULL),
(216, '92.36.220.28', '{}', '7186256', NULL),
(217, '92.36.220.28', '{}', '3205738', NULL),
(218, '93.143.247.188', '{}', '6981582', NULL),
(219, '93.143.247.188', '{}', '6631273', NULL),
(220, '93.143.247.188', '{}', '6981582', NULL),
(221, '93.143.247.188', '{}', '6631273', NULL),
(222, '178.237.217.193', '{}', '3073778', NULL),
(223, '178.237.217.193', '{}', '7520181', NULL),
(224, '178.237.217.193', '{}', '3073778', NULL),
(225, '178.237.217.193', '{}', '7520181', NULL),
(226, '31.176.240.83', '{}', '2134601', NULL),
(227, '31.176.240.83', '{}', '7019539', NULL),
(228, '31.176.240.83', '{}', '9340823', NULL),
(229, '31.176.240.83', '{}', '4675563', NULL),
(230, '31.176.255.111', '{}', '7756062', NULL),
(231, '109.175.60.97', '{}', '7339866', NULL),
(232, '87.116.179.135', '{}', '9669938', NULL),
(233, '39cf8f1ae0e1d43d7dceb87f1f0fb67c5d0a2815', '{}', '7819642', NULL),
(234, '9df7ecd455c8ec9885a7b110a90e161744dabdbd', '{}', '3251761', NULL),
(235, 'aa24fbd318a2f3c4ee45cbff944911c4361221e0', '{}', '4350177', NULL),
(236, '896386080e8cdf219abf4ee615a73517aa8470cc', '{}', '7568765', NULL),
(237, 'c360910971f39e6134abcd438c67b7a2e8a99eff', '{}', '6656026', NULL),
(238, '495eb4c59c2cd92969e12b02726caa66e89b213e', '{}', '3821705', NULL),
(239, '630d0925b2b4eba1194f6cbe366dc576c7e242dd', '{}', '6795531', NULL),
(240, '61222431d3a2a409147e355c4849bd88d564102e', '{}', '3039145', NULL),
(241, 'd3f0ff9fe2cd72f97fceb151241d92ae45cf645d', '{}', '7453772', NULL),
(242, 'fa851e9fe6399643acd2696f16ca2c6569379120', '{}', '6672849', NULL),
(243, '6fbd108930cda9bde2777749e9bf595ad9115a11', '{}', '1062072', NULL);
-- Dumping structure for table sokac.gksphone_tinderacc
CREATE TABLE IF NOT EXISTS `gksphone_tinderacc` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`name` varchar(255) DEFAULT NULL,
`username` varchar(255) DEFAULT NULL,
`passaword` varchar(255) DEFAULT NULL,
`date` varchar(255) DEFAULT NULL,
`image` varchar(255) DEFAULT NULL,
`gender` int(11) DEFAULT NULL,
`identifier` varchar(255) DEFAULT NULL,
PRIMARY KEY (`id`) USING BTREE
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;

-- Dumping data for table sokac.gksphone_tinderacc: ~0 rows (approximately)

-- Dumping structure for table sokac.gksphone_tindermatch


CREATE TABLE IF NOT EXISTS `gksphone_tindermatch` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`user_id` int(11) NOT NULL DEFAULT 0,
`friend_id` int(11) NOT NULL DEFAULT 0,
`is_match` int(11) NOT NULL DEFAULT 0,
PRIMARY KEY (`id`) USING BTREE
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;

-- Dumping data for table sokac.gksphone_tindermatch: ~0 rows (approximately)

-- Dumping structure for table sokac.gksphone_tindermessage


CREATE TABLE IF NOT EXISTS `gksphone_tindermessage` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`message` text NOT NULL,
`tinderes` text NOT NULL,
`owner` int(11) NOT NULL DEFAULT 0,
`time` timestamp NOT NULL DEFAULT current_timestamp() ON UPDATE
current_timestamp(),
PRIMARY KEY (`id`) USING BTREE
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;

-- Dumping data for table sokac.gksphone_tindermessage: ~0 rows (approximately)

-- Dumping structure for table sokac.gksphone_twitter_accounts


CREATE TABLE IF NOT EXISTS `gksphone_twitter_accounts` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`username` varchar(50) CHARACTER SET utf8 COLLATE utf8_general_ci NOT NULL
DEFAULT '0',
`password` varchar(64) NOT NULL DEFAULT '0',
`avatar_url` longtext DEFAULT NULL,
`profilavatar` longtext DEFAULT NULL,
PRIMARY KEY (`id`) USING BTREE,
UNIQUE KEY `username` (`username`) USING BTREE
) ENGINE=InnoDB AUTO_INCREMENT=3 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_bin;

-- Dumping data for table sokac.gksphone_twitter_accounts: ~2 rows (approximately)


INSERT INTO `gksphone_twitter_accounts` (`id`, `username`, `password`,
`avatar_url`, `profilavatar`) VALUES
(1, 'Teix', 'Kidara544', '/html/static/img/twitter/default_profile.png',
'/html/static/img/twitter/banner.jpg'),
(2, '1312', '12345j', '/html/static/img/twitter/default_profile.png',
'/html/static/img/twitter/banner.jpg');
-- Dumping structure for table sokac.gksphone_twitter_likes
CREATE TABLE IF NOT EXISTS `gksphone_twitter_likes` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`authorId` int(11) DEFAULT NULL,
`tweetId` int(11) DEFAULT NULL,
PRIMARY KEY (`id`),
KEY `FK_gksphone_twitter_likes_gksphone_twitter_accounts` (`authorId`),
KEY `FK_gksphone_twitter_likes_gksphone_twitter_tweets` (`tweetId`),
CONSTRAINT `FK_gksphone_twitter_likes_gksphone_twitter_accounts` FOREIGN KEY
(`authorId`) REFERENCES `gksphone_twitter_accounts` (`id`),
CONSTRAINT `FK_gksphone_twitter_likes_gksphone_twitter_tweets` FOREIGN KEY
(`tweetId`) REFERENCES `gksphone_twitter_tweets` (`id`) ON DELETE CASCADE
) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_bin;

-- Dumping data for table sokac.gksphone_twitter_likes: ~0 rows (approximately)


INSERT INTO `gksphone_twitter_likes` (`id`, `authorId`, `tweetId`) VALUES
(1, 2, 4);

-- Dumping structure for table sokac.gksphone_twitter_tweets


CREATE TABLE IF NOT EXISTS `gksphone_twitter_tweets` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`authorId` int(11) NOT NULL,
`realUser` varchar(50) DEFAULT NULL,
`message` varchar(256) NOT NULL,
`image` longtext DEFAULT NULL,
`time` timestamp NOT NULL DEFAULT current_timestamp(),
`likes` int(11) NOT NULL DEFAULT 0,
PRIMARY KEY (`id`),
KEY `FK_gksphone_twitter_tweets_gksphone_twitter_accounts` (`authorId`),
CONSTRAINT `FK_gksphone_twitter_tweets_gksphone_twitter_accounts` FOREIGN KEY
(`authorId`) REFERENCES `gksphone_twitter_accounts` (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=6 DEFAULT CHARSET=utf8mb4
COLLATE=utf8mb4_unicode_ci;

-- Dumping data for table sokac.gksphone_twitter_tweets: ~5 rows (approximately)


INSERT INTO `gksphone_twitter_tweets` (`id`, `authorId`, `realUser`, `message`,
`image`, `time`, `likes`) VALUES
(1, 1, '98ac7cc69b8a3ddabfcee5c130ab506a344cccd7', '', '', '2023-01-14
17:29:17', 0),
(2, 1, '98ac7cc69b8a3ddabfcee5c130ab506a344cccd7', 'Yakuza prima nove radnike
6280959', '', '2023-01-14 17:29:48', 0),
(3, 1, '98ac7cc69b8a3ddabfcee5c130ab506a344cccd7', 'Yakuza prima radnike
6280959', '', '2023-01-14 19:10:38', 0),
(4, 1, '98ac7cc69b8a3ddabfcee5c130ab506a344cccd7', 'Yakuza prima nove radnike
sa iskustvom 6280959', '', '2023-01-14 20:50:29', 1),
(5, 2, 'c98fb528ac17d4f4db5ce403d93061832fcda50a', 'trazim posao iskusan sam
u poslu nalazim se kod glavne garaze', '', '2023-01-15 01:44:49', 0);

-- Dumping structure for table sokac.gksphone_users_contacts


CREATE TABLE IF NOT EXISTS `gksphone_users_contacts` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`identifier` longtext CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci DEFAULT
NULL,
`number` varchar(30) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci DEFAULT
NULL,
`display` longtext CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci DEFAULT '-1',
`avatar` longtext NOT NULL DEFAULT
'https://cdn.iconscout.com/icon/free/png-256/avatar-370-456322.png',
PRIMARY KEY (`id`)
) ENGINE=MyISAM AUTO_INCREMENT=13 DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;

-- Dumping data for table sokac.gksphone_users_contacts: 12 rows


/*!40000 ALTER TABLE `gksphone_users_contacts` DISABLE KEYS */;
INSERT INTO `gksphone_users_contacts` (`id`, `identifier`, `number`, `display`,
`avatar`) VALUES
(1, 'be0da256bda1a6930cc0fd38ec9494ab76e7848a', '7366872',
'retard:face_blowing_a_kiss:',
'https://image.flaticon.com/icons/png/512/194/194938.png'),
(2, 'd789f75917cbe1986075df7b2e7a6a4bc7cab83f', '8608184',
'HARUN:grinning_face_with_sweat:',
'https://media.discordapp.net/attachments/1026116357206593616/1058703204621242548/
screenshot.jpeg'),
(3, 'dfce5ef05982ff443981b07926cd2fc652ef2db7', '5041175', 'Might',
'https://media.discordapp.net/attachments/1022225864026497146/1059254039587598416/
screenshot.jpeg'),
(4, '09c1d548faaceb473051ccc0e3c11c17ae454af1', '4088460', 'Gw1mpara',
'https://image.flaticon.com/icons/png/512/194/194938.png'),
(5, '6a332ada7912241413ab53628f713b0442ea79f5', '7765434', 'viktor peder',
'https://image.flaticon.com/icons/png/512/194/194938.png'),
(6, '7a029d7423c06765cca5bafab5015365e3f391ad', '6099048', 'vogas glupi',
'https://image.flaticon.com/icons/png/512/194/194938.png'),
(7, '6478d2abb6f7643d05bd3dad07f3d4ac3bcf0ad6', '3641970', 'Toni-
lokacije...', 'https://image.flaticon.com/icons/png/512/194/194938.png'),
(8, '6a6cce244bafc5e8b33e7973abce8ccfda33670a', '4240559', 'dafer',
'https://image.flaticon.com/icons/png/512/194/194938.png'),
(9, '7a029d7423c06765cca5bafab5015365e3f391ad', '5511888', 'stariji vagos ',
'https://image.flaticon.com/icons/png/512/194/194938.png'),
(10, '6a6cce244bafc5e8b33e7973abce8ccfda33670a', '4240559', 'dadada',
'https://image.flaticon.com/icons/png/512/194/194938.png'),
(11, '7a029d7423c06765cca5bafab5015365e3f391ad', '7404447', 'Marko Narkoman',
'https://image.flaticon.com/icons/png/512/194/194938.png'),
(12, '7a029d7423c06765cca5bafab5015365e3f391ad', '3300163', 'Cele Polija
kadet:face_with_tears_of_joy:',
'https://image.flaticon.com/icons/png/512/194/194938.png');
/*!40000 ALTER TABLE `gksphone_users_contacts` ENABLE KEYS */;

-- Dumping structure for table sokac.gksphone_vehicle_sales


CREATE TABLE IF NOT EXISTS `gksphone_vehicle_sales` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`owner` longtext NOT NULL,
`ownerphone` varchar(255) NOT NULL,
`plate` varchar(255) NOT NULL,
`model` varchar(255) NOT NULL,
`price` int(11) NOT NULL,
`image` longtext NOT NULL,
`time` timestamp NOT NULL DEFAULT current_timestamp(),
PRIMARY KEY (`id`) USING BTREE
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;

-- Dumping data for table sokac.gksphone_vehicle_sales: ~0 rows (approximately)

-- Dumping structure for table sokac.gksphone_yellow


CREATE TABLE IF NOT EXISTS `gksphone_yellow` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`phone_number` varchar(50) DEFAULT NULL,
`firstname` varchar(256) DEFAULT NULL,
`lastname` varchar(256) DEFAULT NULL,
`message` longtext NOT NULL,
`image` longtext DEFAULT NULL,
`time` timestamp NOT NULL DEFAULT current_timestamp(),
PRIMARY KEY (`id`) USING BTREE
) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8mb4
COLLATE=utf8mb4_unicode_ci;

-- Dumping data for table sokac.gksphone_yellow: ~0 rows (approximately)


INSERT INTO `gksphone_yellow` (`id`, `phone_number`, `firstname`, `lastname`,
`message`, `image`, `time`) VALUES
(1, '###-####', '#####', '#####', 'trazim posao vredan radnik', '', '2023-01-
14 21:52:56');

-- Dumping structure for table sokac.instagram_account


CREATE TABLE IF NOT EXISTS `instagram_account` (
`id` varchar(90) NOT NULL,
`name` varchar(50) NOT NULL,
`phone` varchar(50) NOT NULL,
`username` varchar(50) NOT NULL,
`password` varchar(50) NOT NULL,
`avatar` text DEFAULT NULL,
`description` text DEFAULT NULL,
`verify` int(11) NOT NULL DEFAULT 0
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci;

-- Dumping data for table sokac.instagram_account: ~0 rows (approximately)

-- Dumping structure for table sokac.instagram_followers


CREATE TABLE IF NOT EXISTS `instagram_followers` (
`username` varchar(50) NOT NULL,
`followed` varchar(50) NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci;

-- Dumping data for table sokac.instagram_followers: ~0 rows (approximately)

-- Dumping structure for table sokac.instagram_posts


CREATE TABLE IF NOT EXISTS `instagram_posts` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`username` varchar(50) NOT NULL,
`image` text NOT NULL,
`description` varchar(255) NOT NULL,
`location` varchar(50) NOT NULL DEFAULT 'Los Santos',
`filter` varchar(50) NOT NULL,
`created` timestamp NOT NULL DEFAULT current_timestamp() ON UPDATE
current_timestamp(),
`likes` text DEFAULT NULL,
PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=14 DEFAULT CHARSET=utf8mb4
COLLATE=utf8mb4_general_ci;

-- Dumping data for table sokac.instagram_posts: ~0 rows (approximately)

-- Dumping structure for table sokac.instagram_stories


CREATE TABLE IF NOT EXISTS `instagram_stories` (
`owner` varchar(50) NOT NULL,
`data` text DEFAULT NULL,
PRIMARY KEY (`owner`) USING BTREE
) ENGINE=InnoDB DEFAULT CHARSET=armscii8 COLLATE=armscii8_general_ci;

-- Dumping data for table sokac.instagram_stories: ~0 rows (approximately)


-- Dumping structure for table sokac.insta_stories
CREATE TABLE IF NOT EXISTS `insta_stories` (
`username` varchar(50) DEFAULT NULL,
`location` varchar(50) DEFAULT NULL,
`filter` varchar(50) DEFAULT NULL,
`description` varchar(50) DEFAULT NULL,
`image` text DEFAULT NULL,
`created` time DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci;

-- Dumping data for table sokac.insta_stories: ~0 rows (approximately)

-- Dumping structure for table sokac.items


CREATE TABLE IF NOT EXISTS `items` (
`name` varchar(50) NOT NULL,
`label` varchar(50) NOT NULL,
`weight` int(11) NOT NULL DEFAULT 1,
`rare` tinyint(4) NOT NULL DEFAULT 0,
`can_remove` tinyint(4) NOT NULL DEFAULT 1,
`stackable` tinyint(1) DEFAULT 1,
`closeonuse` tinyint(1) DEFAULT 1,
`description` varchar(50) DEFAULT NULL,
PRIMARY KEY (`name`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

-- Dumping data for table sokac.items: ~0 rows (approximately)

-- Dumping structure for table sokac.jobs


CREATE TABLE IF NOT EXISTS `jobs` (
`name` varchar(50) NOT NULL,
`label` varchar(50) DEFAULT NULL,
`whitelisted` int(11) DEFAULT NULL,
`cisti` bigint(20) DEFAULT 0,
`prljavi` bigint(20) DEFAULT 0,
`maxclanova` int(11) DEFAULT 8,
`black` bigint(20) DEFAULT 0,
`money` bigint(20) DEFAULT 0,
`nedpoeni` int(11) DEFAULT 0,
`mespoeni` int(11) DEFAULT 0,
`poeni` int(11) DEFAULT 0,
PRIMARY KEY (`name`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci;

-- Dumping data for table sokac.jobs: ~22 rows (approximately)


INSERT INTO `jobs` (`name`, `label`, `whitelisted`, `cisti`, `prljavi`,
`maxclanova`, `black`, `money`, `nedpoeni`, `mespoeni`, `poeni`) VALUES
('bajkeri', 'Bajkeri', 1, 0, 0, 8, 0, 0, 0, 0, 0),
('ballas', 'Ballas', 1, 0, 0, 8, 0, 0, 0, 0, 0),
('barani', 'Barani', 1, 0, 0, 8, 0, 0, 0, 0, 0),
('bloods', 'Bloods', 1, 0, 0, 8, 0, 0, 0, 0, 0),
('bolnica', 'Hitna', 1, 0, 0, 8, 0, 0, 0, 0, 0),
('brazilci', 'Brazilci', 1, 0, 0, 8, 0, 0, 0, 0, 0),
('camorra', 'Camorra', 1, 0, 0, 8, 0, 0, 0, 0, 0),
('cartel', 'Cartel', 1, 0, 0, 8, 0, 0, 0, 0, 0),
('crnogorci', 'CrnoGorci', 1, 0, 0, 8, 0, 0, 0, 0, 0),
('escobar', 'Escobar', 1, 0, 0, 8, 0, 0, 0, 0, 0),
('fib', 'FIB', 1, 0, 0, 8, 0, 0, 0, 0, 0),
('gsf', 'GSF', 1, 555, 0, 8, 0, 0, 0, 0, 0),
('h0dza', 'Hodza', 1, 0, 0, 8, 0, 0, 0, 0, 0),
('lcn', 'LCN', 1, 0, 0, 8, 0, 0, 0, 0, 0),
('mechanic', 'Mehanicar', 1, 0, 0, 20, 0, 0, 0, 0, 0),
('medellin', 'Medellin', 1, 0, 0, 8, 0, 0, 0, 0, 0),
('pinkpanteri', 'Auto Mafija', 1, 0, 0, 8, 0, 0, 0, 0, 0),
('police', 'Policija', 1, 0, 0, 50, 0, 0, 0, 0, 0),
('scarface', 'ScarFace', 1, 0, 0, 8, 0, 0, 0, 0, 0),
('unemployed', 'Nezaposlen', 1, 0, 0, 12, 0, 0, 0, 0, 0),
('vagos', 'Vagos', 1, 0, 0, 8, 0, 0, 0, 0, 0),
('yakuza', 'YAKUZA', 1, 0, 0, 8, 0, 0, 0, 0, 0);

-- Dumping structure for table sokac.job_grades


CREATE TABLE IF NOT EXISTS `job_grades` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`job_name` varchar(50) DEFAULT NULL,
`grade` int(11) NOT NULL,
`name` varchar(50) NOT NULL,
`label` varchar(50) NOT NULL,
`salary` int(11) NOT NULL,
`skin_male` longtext NOT NULL,
`skin_female` longtext NOT NULL,
`uplacivanje` tinyint(1) DEFAULT 0,
`podizanje` tinyint(1) DEFAULT 0,
`rankovi` tinyint(1) DEFAULT 0,
`clanovi` tinyint(1) DEFAULT 0,
`zaposljavanje` tinyint(1) DEFAULT 0,
`permisije` tinyint(1) DEFAULT 0,
`plate` tinyint(1) DEFAULT 0,
PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=1062 DEFAULT CHARSET=utf8mb4
COLLATE=utf8mb4_general_ci;

-- Dumping data for table sokac.job_grades: ~89 rows (approximately)


INSERT INTO `job_grades` (`id`, `job_name`, `grade`, `name`, `label`, `salary`,
`skin_male`, `skin_female`, `uplacivanje`, `podizanje`, `rankovi`, `clanovi`,
`zaposljavanje`, `permisije`, `plate`) VALUES
(1, 'unemployed', 0, 'unemployed', 'Biro', 150, '{}', '{}', 0, 0, 0, 0, 0, 0,
0),
(2, 'police', 0, 'recruit', 'Regrut', 3333, '{}', '{}', 1, 0, 0, 0, 0, 0, 0),
(3, 'police', 1, 'police', 'Policajac', 2000, '{}', '{}', 1, 0, 0, 0, 0, 0,
0),
(4, 'police', 3, 'agent', 'Narednik', 3250, '{}', '{}', 1, 0, 0, 0, 0, 0, 0),
(5, 'police', 4, 'lieutenant', 'Porucnik', 3500, '{}', '{}', 1, 1, 1, 0, 1,
0, 1),
(6, 'police', 5, 'boss', 'Komandir', 4000, '{}', '{}', 1, 1, 1, 1, 1, 1, 1),
(7, 'police', 2, 'officer', 'Oficir', 2500, '{}', '{}', 1, 0, 0, 0, 0, 0, 0),
(8, 'bolnica', 0, 'brat', 'Medicinski brat', 0, '{}', '{}', 0, 0, 0, 0, 0, 0,
0),
(9, 'bolnica', 1, 'doktor', 'Doktor', 0, '{}', '{}', 0, 0, 0, 0, 0, 0, 0),
(10, 'bolnica', 2, 'chief', 'Sekretar', 0, '{}', '{}', 0, 0, 0, 0, 0, 0, 0),
(11, 'bolnica', 3, 'boss', 'Sef', 0, '{}', '{}', 0, 0, 0, 0, 0, 0, 0),
(12, 'mechanic', 0, 'recrue', 'Pocetnil', 500, '{}', '{}', 1, 0, 0, 0, 0, 0,
0),
(13, 'mechanic', 1, 'novice', 'Mehanicar', 2000, '{}', '{}', 1, 0, 0, 0, 0,
0, 0),
(14, 'mechanic', 2, 'experimente', 'Mehanicar', 0, '{}', '{}', 1, 0, 0, 0, 0,
0, 0),
(15, 'mechanic', 3, 'chief', 'Mehanicar', 0, '{}', '{}', 1, 0, 0, 0, 0, 0,
0),
(16, 'mechanic', 4, 'boss', 'Šef', 0, '{}', '{}', 1, 0, 1, 1, 1, 1, 1),
(17, 'fib', 0, 'recruit', 'Agent', 1500, '{}', '{}', 0, 0, 0, 0, 0, 0, 0),
(18, 'fib', 1, 'officer', 'Specijalac', 2000, '{}', '{}', 0, 0, 0, 0, 0, 0,
0),
(19, 'fib', 2, 'izvidac', 'Izvidac', 2500, '{}', '{}', 0, 0, 0, 0, 0, 0, 0),
(20, 'fib', 3, 'lieutenant', 'Zamjenik Direktora', 3000, '{}', '{}', 0, 0, 0,
0, 0, 0, 0),
(21, 'fib', 4, 'boss', 'Direktor', 3500, '{}', '{}', 0, 0, 0, 0, 0, 0, 0),
(22, 'ballas', 0, 'radnik', 'Radnik', 0, '{}', '{}', 0, 0, 0, 0, 0, 0, 0),
(23, 'ballas', 1, 'diler', 'Diler', 0, '{}', '{}', 0, 0, 0, 0, 0, 0, 0),
(24, 'ballas', 2, 'zamjenik', 'Zamjenik Sefa', 0, '{}', '{}', 0, 0, 0, 0, 0,
0, 0),
(25, 'ballas', 3, 'sef', 'Sef', 0, '{}', '{}', 0, 0, 0, 0, 0, 0, 0),
(26, 'vagos', 0, 'radnik', 'Radnik', 0, '{}', '{}', 0, 0, 0, 0, 0, 0, 0),
(27, 'vagos', 1, 'diler', 'Diler', 0, '{}', '{}', 0, 0, 0, 0, 0, 0, 0),
(28, 'vagos', 2, 'zamjenik', 'Zamjenik Sefa', 0, '{}', '{}', 0, 0, 0, 0, 0,
0, 0),
(29, 'vagos', 3, 'sef', 'Sef', 0, '{}', '{}', 0, 0, 0, 0, 0, 0, 0),
(30, 'bloods', 0, 'radnik', 'Radnik', 0, '{}', '{}', 0, 0, 0, 0, 0, 0, 0),
(31, 'bloods', 1, 'diler', 'Diler', 0, '{}', '{}', 0, 0, 0, 0, 0, 0, 0),
(32, 'bloods', 2, 'zamjenik', 'Zamjenik Sefa', 0, '{}', '{}', 0, 0, 0, 0, 0,
0, 0),
(33, 'bloods', 3, 'sef', 'Sef', 0, '{}', '{}', 0, 0, 0, 0, 0, 0, 0),
(34, 'gsf', 0, 'radnik', 'Radnik', 0, '{}', '{}', 0, 0, 0, 0, 0, 0, 0),
(35, 'gsf', 1, 'diler', 'Diler', 0, '{}', '{}', 0, 0, 0, 0, 0, 0, 0),
(36, 'gsf', 2, 'zamjenik', 'Zamjenik Sefa', 0, '{}', '{}', 0, 0, 0, 0, 0, 0,
0),
(37, 'gsf', 3, 'boss', 'Sef', 0, '{}', '{}', 0, 0, 0, 0, 0, 0, 0),
(38, 'crnogorci', 0, 'radnik', 'Radnik', 0, '{}', '{}', 0, 0, 0, 0, 0, 0, 0),
(39, 'crnogorci', 1, 'crnogorac', 'Crnogorac', 0, '{}', '{}', 0, 0, 0, 0, 0,
0, 0),
(40, 'crnogorci', 2, 'zamjenik', 'Zamjenik Sefa', 0, '{}', '{}', 0, 0, 0, 0,
0, 0, 0),
(41, 'crnogorci', 3, 'sef', 'Sef', 0, '{}', '{}', 0, 0, 0, 0, 0, 0, 0),
(42, 'cartel', 0, 'radnik', 'Radnik', 0, '{}', '{}', 0, 0, 0, 0, 0, 0, 0),
(43, 'cartel', 1, 'cartel', 'Cartel', 0, '{}', '{}', 0, 0, 0, 0, 0, 0, 0),
(44, 'cartel', 2, 'zamjenik', 'Zamjenik Sefa', 0, '{}', '{}', 0, 0, 0, 0, 0,
0, 0),
(45, 'cartel', 3, 'sef', 'Sef', 0, '{}', '{}', 0, 0, 0, 0, 0, 0, 0),
(46, 'scarface', 0, 'radnik', 'Radojka', 0, '{}', '{}', 0, 0, 0, 0, 0, 0, 0),
(47, 'scarface', 1, 'scarface', 'Andjelko', 0, '{}', '{}', 0, 0, 0, 0, 0, 0,
0),
(48, 'scarface', 2, 'zamjenik', 'Mali Makedonac', 0, '{}', '{}', 0, 0, 0, 0,
0, 0, 0),
(49, 'scarface', 3, 'sef', 'Toni Montana', 0, '{}', '{}', 0, 0, 0, 0, 0, 0,
0),
(50, 'medellin', 0, 'radnik', 'Radnik', 0, '{}', '{}', 0, 0, 0, 0, 0, 0, 0),
(51, 'medellin', 1, 'medellin', 'Medellin', 0, '{}', '{}', 0, 0, 0, 0, 0, 0,
0),
(52, 'medellin', 2, 'zamjenik', 'Zamjenik Sefa', 0, '{}', '{}', 0, 0, 0, 0,
0, 0, 0),
(53, 'medellin', 3, 'sef', 'Sef', 0, '{}', '{}', 0, 0, 0, 0, 0, 0, 0),
(54, 'lcn', 0, 'radnik', 'Radnik', 0, '{}', '{}', 0, 0, 0, 0, 0, 0, 0),
(55, 'lcn', 1, 'lcn', 'LCN', 0, '{}', '{}', 0, 0, 0, 0, 0, 0, 0),
(56, 'lcn', 2, 'zamjenik', 'Zamjenik Sefa', 0, '{}', '{}', 0, 0, 0, 0, 0, 0,
0),
(57, 'lcn', 3, 'sef', 'Sef', 0, '{}', '{}', 0, 0, 0, 0, 0, 0, 0),
(58, 'camorra', 0, 'radnik', 'Radnik', 0, '{}', '{}', 0, 0, 0, 0, 0, 0, 0),
(59, 'camorra', 1, 'camorra', 'Camorra', 0, '{}', '{}', 0, 0, 0, 0, 0, 0, 0),
(60, 'camorra', 2, 'zamjenik', 'Zamjenik Sefa', 0, '{}', '{}', 0, 0, 0, 0, 0,
0, 0),
(61, 'camorra', 3, 'sef', 'Sef', 0, '{}', '{}', 0, 0, 0, 0, 0, 0, 0),
(62, 'barani', 0, 'radnik', 'Radnik', 0, '{}', '{}', 0, 0, 0, 0, 0, 0, 0),
(63, 'barani', 1, 'baran', 'Baran', 0, '{}', '{}', 0, 0, 0, 0, 0, 0, 0),
(64, 'barani', 2, 'zamjenik', 'Zamjenik Sefa', 0, '{}', '{}', 0, 0, 0, 0, 0,
0, 0),
(65, 'barani', 3, 'sef', 'Sef', 0, '{}', '{}', 0, 0, 0, 0, 0, 0, 0),
(66, 'h0dza', 0, 'dzematlija', 'Dzematlija', 0, '{}', '{}', 0, 0, 0, 0, 0, 0,
0),
(67, 'h0dza', 1, 'imam ', 'Imam', 0, '{}', '{}', 0, 0, 0, 0, 0, 0, 0),
(68, 'h0dza', 2, 'zamjenik', 'Zamjenik Hodze', 0, '{}', '{}', 0, 0, 0, 0, 0,
0, 0),
(69, 'h0dza', 3, 'sef', 'H0DZA', 0, '{}', '{}', 0, 0, 0, 0, 0, 0, 0),
(70, 'brazilci', 0, 'radnik', 'Radnik', 0, '{}', '{}', 0, 0, 0, 0, 0, 0, 0),
(71, 'brazilci', 1, 'brazilac', 'Brazilac', 0, '{}', '{}', 0, 0, 0, 0, 0, 0,
0),
(72, 'brazilci', 2, 'zamjenik', 'Zamjenik Sefa', 0, '{}', '{}', 0, 0, 0, 0,
0, 0, 0),
(73, 'brazilci', 3, 'sef', 'Sef', 0, '{}', '{}', 0, 0, 0, 0, 0, 0, 0),
(74, 'escobar', 0, 'radnik', 'Radnik', 0, '{}', '{}', 0, 0, 0, 0, 0, 0, 0),
(75, 'escobar', 1, 'escobar', 'Escobar', 0, '{}', '{}', 0, 0, 0, 0, 0, 0, 0),
(76, 'escobar', 2, 'zamjenik', 'Zamjenik Pabla', 0, '{}', '{}', 0, 0, 0, 0,
0, 0, 0),
(77, 'escobar', 3, 'sef', 'Pablo Escobar', 0, '{}', '{}', 0, 0, 0, 0, 0, 0,
0),
(78, 'pinkpanteri', 0, 'radnik', 'Radnik', 0, '{}', '{}', 0, 0, 0, 0, 0, 0,
0),
(79, 'pinkpanteri', 1, 'pink', 'Pink Panter', 0, '{}', '{}', 0, 0, 0, 0, 0,
0, 0),
(80, 'pinkpanteri', 2, 'zamjenik', 'Zamjenik Sefa', 0, '{}', '{}', 0, 0, 0,
0, 0, 0, 0),
(81, 'pinkpanteri', 3, 'sef', 'Sef', 0, '{}', '{}', 0, 0, 0, 0, 0, 0, 0),
(82, 'yakuza', 0, 'radnik', 'Radnik', 0, '{}', '{}', 0, 0, 0, 0, 0, 0, 0),
(83, 'yakuza', 1, 'yakuza', 'Yakuza', 0, '{}', '{}', 0, 0, 0, 0, 0, 0, 0),
(84, 'yakuza', 2, 'zamjenik', 'Zamjenik Sefa', 0, '{}', '{}', 0, 0, 0, 0, 0,
0, 0),
(85, 'yakuza', 3, 'sef', 'Sef', 0, '{}', '{}', 0, 0, 0, 0, 0, 0, 0),
(86, 'bajkeri', 0, 'radnik', 'Radnik', 0, '{}', '{}', 0, 0, 0, 0, 0, 0, 0),
(87, 'bajkeri', 1, 'bajker', 'Bajker', 0, '{}', '{}', 0, 0, 0, 0, 0, 0, 0),
(88, 'bajkeri', 2, 'zamjenik', 'Zamjenik Sefa', 0, '{}', '{}', 0, 0, 0, 0, 0,
0, 0),
(89, 'bajkeri', 3, 'sef', 'Sef', 0, '{}', '{}', 0, 0, 0, 0, 0, 0, 0);

-- Dumping structure for table sokac.licenses


CREATE TABLE IF NOT EXISTS `licenses` (
`type` varchar(60) NOT NULL,
`label` varchar(60) NOT NULL,
PRIMARY KEY (`type`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

-- Dumping data for table sokac.licenses: ~6 rows (approximately)


INSERT INTO `licenses` (`type`, `label`) VALUES
('dmv', 'Code de la route'),
('drive', 'Permis de conduire'),
('drive_bike', 'Permis moto'),
('drive_truck', 'Permis camion'),
('hunt', 'Hunting License'),
('weapon', 'Weapon License');
-- Dumping structure for table sokac.loaf_bought_houses
CREATE TABLE IF NOT EXISTS `loaf_bought_houses` (
`houseid` int(9) NOT NULL,
`owner` varchar(255) DEFAULT NULL,
PRIMARY KEY (`houseid`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci;

-- Dumping data for table sokac.loaf_bought_houses: ~0 rows (approximately)

-- Dumping structure for table sokac.loaf_housing


CREATE TABLE IF NOT EXISTS `loaf_housing` (
`identifier` varchar(255) NOT NULL,
`housedata` longtext DEFAULT NULL,
PRIMARY KEY (`identifier`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci;

-- Dumping data for table sokac.loaf_housing: ~0 rows (approximately)

-- Dumping structure for table sokac.loaf_keys


CREATE TABLE IF NOT EXISTS `loaf_keys` (
`unique_id` varchar(15) NOT NULL,
`key_id` varchar(255) NOT NULL,
`identifier` varchar(255) NOT NULL,
`key_data` longtext DEFAULT NULL,
PRIMARY KEY (`unique_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci;

-- Dumping data for table sokac.loaf_keys: ~0 rows (approximately)

-- Dumping structure for table sokac.loaf_last_login


CREATE TABLE IF NOT EXISTS `loaf_last_login` (
`identifier` varchar(255) NOT NULL,
`login_time` int(255) DEFAULT NULL,
PRIMARY KEY (`identifier`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci;

-- Dumping data for table sokac.loaf_last_login: ~2 rows (approximately)


INSERT INTO `loaf_last_login` (`identifier`, `login_time`) VALUES
('dc3ef5404f659ff6abd54fa4a6d8fa249f21b68d', 1663508412),
('de85f3b77474de20e795238d00c775b909dd3d96', 1663498682);

-- Dumping structure for table sokac.modovana


CREATE TABLE IF NOT EXISTS `modovana` (
`displayName` varchar(60) NOT NULL,
`model` varchar(60) NOT NULL,
`price` int(11) NOT NULL,
`stock` int(11) DEFAULT 100,
`img` varchar(2555) DEFAULT NULL,
`classDisplay` varchar(50) DEFAULT NULL,
`category` varchar(50) DEFAULT 'classic',
`class` varchar(50) DEFAULT 'classic',
`id` int(11) NOT NULL AUTO_INCREMENT,
PRIMARY KEY (`model`),
KEY `id` (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=87 DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci;

-- Dumping data for table sokac.modovana: ~0 rows (approximately)


-- Dumping structure for table sokac.okokbanking_societies
CREATE TABLE IF NOT EXISTS `okokbanking_societies` (
`society` varchar(255) DEFAULT NULL,
`society_name` varchar(255) DEFAULT NULL,
`value` int(50) DEFAULT NULL,
`iban` varchar(255) NOT NULL,
`is_withdrawing` int(1) DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci;

-- Dumping data for table sokac.okokbanking_societies: ~0 rows (approximately)

-- Dumping structure for table sokac.okokbanking_transactions


CREATE TABLE IF NOT EXISTS `okokbanking_transactions` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`receiver_identifier` varchar(255) NOT NULL,
`receiver_name` varchar(255) NOT NULL,
`sender_identifier` varchar(255) NOT NULL,
`sender_name` varchar(255) NOT NULL,
`date` varchar(255) NOT NULL,
`value` int(50) NOT NULL,
`type` varchar(255) NOT NULL,
PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=33 DEFAULT CHARSET=utf8mb4
COLLATE=utf8mb4_general_ci;

-- Dumping data for table sokac.okokbanking_transactions: ~32 rows (approximately)


INSERT INTO `okokbanking_transactions` (`id`, `receiver_identifier`,
`receiver_name`, `sender_identifier`, `sender_name`, `date`, `value`, `type`)
VALUES
(1, 'bank', 'Bank (PIN)', '109.175.38.44', 'Hara Bara', '2023-02-24
17:15:50', 0, 'transfer'),
(2, '109.175.38.44', 'Hara Bara', 'bank', 'Bank Account', '2023-02-24
17:15:53', 122, 'withdraw'),
(3, 'bank', 'Bank Account', '109.175.38.44', 'Hara Bara', '2023-02-24
17:15:58', 155, 'deposit'),
(4, 'bank', 'Bank (IBAN)', '37.220.64.248', 'Darex Colucci', '2023-02-28
15:53:21', 5000, 'transfer'),
(5, 'bank', 'Bank (IBAN)', '109.175.72.128', 'Hara Bara', '2023-05-01
00:21:27', 5000, 'transfer'),
(6, 'bank', 'Bank (IBAN)', '109.175.72.128', 'Hara Bara', '2023-05-01
00:22:02', 5000, 'transfer'),
(7, 'bank', 'Bank Account', '109.175.72.128', 'Hara Bara', '2023-05-01
00:22:06', 55555555, 'deposit'),
(8, 'bank', 'Bank Account', '109.175.72.128', 'Hara Bara', '2023-05-01
00:22:16', 555555555, 'deposit'),
(9, 'bank', 'Bank (IBAN)', '83.131.247.165', 'Harun Tata', '2023-05-01
20:23:43', 5000, 'transfer'),
(10, 'bank', 'Bank (PIN)', '83.131.247.165', 'Harun Tata', '2023-05-01
20:23:44', 0, 'transfer'),
(11, 'bank', 'Bank (IBAN)', '109.175.54.77', 'Hara Bara', '2023-05-02
14:27:13', 5000, 'transfer'),
(12, 'bank', 'Bank Account', '109.175.54.77', 'Hara Bara', '2023-05-02
14:27:15', 5555555, 'deposit'),
(13, 'bank', 'Bank (PIN)', '93.143.160.82', 'Matej Modric', '2023-05-02
14:50:35', 0, 'transfer'),
(14, 'bank', 'Bank (IBAN)', '93.143.160.82', 'Matej Modric', '2023-05-02
14:50:37', 5000, 'transfer'),
(15, '93.143.160.82', 'Matej Modric', 'bank', 'Bank Account', '2023-05-02
14:50:46', 5000, 'withdraw'),
(16, 'bank', 'Bank (PIN)', '46.239.6.149', 'Inas Grahovic', '2023-05-02
20:44:54', 0, 'transfer'),
(17, 'bank', 'Bank (IBAN)', '46.239.6.149', 'Inas Grahovic', '2023-05-02
20:44:56', 5000, 'transfer'),
(18, '46.239.6.149', 'Inas Grahovic', 'bank', 'Bank Account', '2023-05-02
20:45:04', 33, 'withdraw'),
(19, '46.239.6.149', 'Inas Grahovic', 'bank', 'Bank Account', '2023-05-02
20:45:13', 4000, 'withdraw'),
(20, '46.239.6.149', 'Inas Grahovic', 'bank', 'Bank Account', '2023-05-02
20:45:23', 967, 'withdraw'),
(21, 'bank', 'Bank (PIN)', '9df7ecd455c8ec9885a7b110a90e161744dabdbd', 'Petar
Djordjevic', '2023-05-06 01:21:18', 0, 'transfer'),
(22, '9df7ecd455c8ec9885a7b110a90e161744dabdbd', 'Petar Djordjevic', 'bank',
'Bank Account', '2023-05-06 01:21:35', 2000, 'withdraw'),
(23, 'bank', 'Bank (PIN)', 'aa24fbd318a2f3c4ee45cbff944911c4361221e0', 'Relja
Torino', '2023-05-06 01:37:07', 0, 'transfer'),
(24, '9df7ecd455c8ec9885a7b110a90e161744dabdbd', 'Petar Djordjevic', 'bank',
'Bank Account', '2023-05-06 01:37:09', 8000, 'withdraw'),
(25, 'bank', 'Bank (PIN)', 'aa24fbd318a2f3c4ee45cbff944911c4361221e0', 'Relja
Torino', '2023-05-06 01:37:11', 1000, 'transfer'),
(26, 'aa24fbd318a2f3c4ee45cbff944911c4361221e0', 'Relja Torino', 'bank',
'Bank Account', '2023-05-06 01:37:38', 1000, 'withdraw'),
(27, 'aa24fbd318a2f3c4ee45cbff944911c4361221e0', 'Relja Torino', 'bank',
'Bank Account', '2023-05-06 01:39:04', 4000, 'withdraw'),
(28, 'bank', 'Bank Account', '9df7ecd455c8ec9885a7b110a90e161744dabdbd',
'Petar Djordjevic', '2023-05-06 02:46:11', 3000, 'deposit'),
(29, 'aa24fbd318a2f3c4ee45cbff944911c4361221e0', 'Relja Torino', 'bank',
'Bank Account', '2023-05-06 02:48:55', 1000, 'withdraw'),
(30, 'bank', 'Bank (PIN)', 'fa851e9fe6399643acd2696f16ca2c6569379120', 'MIKI
MILOSEVIC', '2023-05-08 14:42:37', 0, 'transfer'),
(31, 'bank', 'Bank (IBAN)', 'fa851e9fe6399643acd2696f16ca2c6569379120', 'MIKI
MILOSEVIC', '2023-05-08 14:43:02', 5000, 'transfer'),
(32, 'fa851e9fe6399643acd2696f16ca2c6569379120', 'MIKI MILOSEVIC', 'bank',
'Bank Account', '2023-05-08 14:43:42', 5000, 'withdraw');

-- Dumping structure for table sokac.okokvehicleshop_orders


CREATE TABLE IF NOT EXISTS `okokvehicleshop_orders` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`shop_id` varchar(255) NOT NULL,
`shop_type` varchar(255) NOT NULL,
`vehicle_name` varchar(255) NOT NULL,
`vehicle_id` varchar(255) NOT NULL,
`reward` varchar(255) NOT NULL,
`in_progress` varchar(255) NOT NULL,
`employee_name` varchar(255) NOT NULL,
`employee_id` varchar(255) NOT NULL,
PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=10 DEFAULT CHARSET=utf8mb4
COLLATE=utf8mb4_general_ci;

-- Dumping data for table sokac.okokvehicleshop_orders: ~9 rows (approximately)


INSERT INTO `okokvehicleshop_orders` (`id`, `shop_id`, `shop_type`, `vehicle_name`,
`vehicle_id`, `reward`, `in_progress`, `employee_name`, `employee_id`) VALUES
(1, 'vehicles1', 'vehicles', 'zentorno', 'zentorno', '60', '0', '', ''),
(2, 'vehicles1', 'vehicles', 't20', 't20', '100', '0', '', ''),
(3, 'vehicles1', 'vehicles', 't20', 't20', '100', '0', '', ''),
(4, 'vehicles1', 'vehicles', 't20', 't20', '100', '0', '', ''),
(5, 'vehicles1', 'vehicles', 't20', 't20', '100', '0', '', ''),
(6, 'vehicles1', 'vehicles', 't20', 't20', '100', '0', '', ''),
(7, 'vehicles1', 'vehicles', 't20', 't20', '100', '0', '', ''),
(8, 'vehicles1', 'vehicles', 't20', 't20', '100', '0', '', ''),
(9, 'vehicles1', 'vehicles', 't20', 't20', '100', '0', '', '');

-- Dumping structure for table sokac.okokvehicleshop_saleshistory


CREATE TABLE IF NOT EXISTS `okokvehicleshop_saleshistory` (
`shop_id` varchar(255) NOT NULL,
`vehicle_name` varchar(255) NOT NULL,
`vehicle_id` varchar(255) NOT NULL,
`buyer_name` varchar(255) NOT NULL,
`buyer_id` varchar(255) NOT NULL,
`price` varchar(255) NOT NULL,
`date` varchar(255) NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci;

-- Dumping data for table sokac.okokvehicleshop_saleshistory: ~0 rows


(approximately)

-- Dumping structure for table sokac.okokvehicleshop_shops


CREATE TABLE IF NOT EXISTS `okokvehicleshop_shops` (
`shop_name` varchar(255) NOT NULL,
`shop_id` varchar(255) NOT NULL,
`owner` varchar(255) DEFAULT NULL,
`owner_name` varchar(255) DEFAULT NULL,
`money` varchar(255) NOT NULL,
`employees` longtext DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci;

-- Dumping data for table sokac.okokvehicleshop_shops: ~3 rows (approximately)


INSERT INTO `okokvehicleshop_shops` (`shop_name`, `shop_id`, `owner`, `owner_name`,
`money`, `employees`) VALUES
('Vehicle Shop', 'vehicles1', 'dc3ef5404f659ff6abd54fa4a6d8fa249f21b68d',
'Hara Bara', '5547519', NULL),
('Air Shop', 'air1', NULL, NULL, '0', NULL),
('Water Shop', 'water1', NULL, NULL, '0', NULL);

-- Dumping structure for table sokac.okokvehicleshop_vehicles


CREATE TABLE IF NOT EXISTS `okokvehicleshop_vehicles` (
`vehicle_name` varchar(255) NOT NULL,
`vehicle_id` varchar(255) NOT NULL,
`category` varchar(255) NOT NULL,
`type` varchar(255) NOT NULL,
`stock` longtext DEFAULT NULL,
`unlisted` longtext DEFAULT NULL,
`min_price` varchar(255) NOT NULL,
`max_price` varchar(255) NOT NULL,
`owner_buy_price` varchar(255) NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci;

-- Dumping data for table sokac.okokvehicleshop_vehicles: ~0 rows (approximately)


INSERT INTO `okokvehicleshop_vehicles` (`vehicle_name`, `vehicle_id`, `category`,
`type`, `stock`, `unlisted`, `min_price`, `max_price`, `owner_buy_price`) VALUES
('t20', 't20', 'supercars', 'vehicles', '', NULL, '1111', '6666', '999');

-- Dumping structure for table sokac.outfits


CREATE TABLE IF NOT EXISTS `outfits` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`identifier` varchar(60) NOT NULL,
`name` longtext DEFAULT NULL,
`ped` longtext DEFAULT NULL,
`components` longtext DEFAULT NULL,
`props` longtext DEFAULT NULL,
PRIMARY KEY (`id`),
UNIQUE KEY `id_UNIQUE` (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=58 DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;

-- Dumping data for table sokac.outfits: ~44 rows (approximately)


INSERT INTO `outfits` (`id`, `identifier`, `name`, `ped`, `components`, `props`)
VALUES
(9, '32fb3239d652fb24da06c98a27f000e0e06b5ff4', 'bbaba',
'"mp_m_freemode_01"', '[{"component_id":0,"drawable":0,"texture":0},
{"component_id":1,"drawable":0,"texture":0},
{"component_id":2,"drawable":0,"texture":0},
{"component_id":3,"drawable":0,"texture":0},
{"component_id":4,"drawable":130,"texture":0},
{"component_id":5,"drawable":0,"texture":0},
{"component_id":6,"drawable":25,"texture":0},
{"component_id":7,"drawable":0,"texture":0},
{"component_id":8,"drawable":15,"texture":0},
{"component_id":9,"drawable":1,"texture":0},
{"component_id":10,"drawable":0,"texture":0},
{"component_id":11,"drawable":92,"texture":0}]',
'[{"prop_id":0,"drawable":39,"texture":0},{"prop_id":1,"drawable":0,"texture":0},
{"prop_id":2,"drawable":-1,"texture":-1},{"prop_id":6,"drawable":-1,"texture":-1},
{"prop_id":7,"drawable":-1,"texture":-1}]'),
(11, '32fb3239d652fb24da06c98a27f000e0e06b5ff4', 'jajajaa',
'"mp_m_freemode_01"', '[{"component_id":0,"texture":0,"drawable":0},
{"component_id":1,"texture":0,"drawable":0},
{"component_id":2,"texture":0,"drawable":0},
{"component_id":3,"texture":0,"drawable":0},
{"component_id":4,"texture":0,"drawable":130},
{"component_id":5,"texture":0,"drawable":0},
{"component_id":6,"texture":0,"drawable":25},
{"component_id":7,"texture":0,"drawable":0},
{"component_id":8,"texture":0,"drawable":15},
{"component_id":9,"texture":0,"drawable":1},
{"component_id":10,"texture":0,"drawable":0},
{"component_id":11,"texture":0,"drawable":92}]',
'[{"prop_id":0,"texture":0,"drawable":39},{"prop_id":1,"texture":0,"drawable":0},
{"prop_id":2,"texture":-1,"drawable":-1},{"prop_id":6,"texture":-1,"drawable":-1},
{"prop_id":7,"texture":-1,"drawable":-1}]'),
(12, 'ec3e97a343fc9e8b025725d28d090a41b62a5d7b', 'Alo', '"mp_m_freemode_01"',
'[{"component_id":0,"drawable":0,"texture":0},
{"component_id":1,"drawable":0,"texture":0},
{"component_id":2,"drawable":0,"texture":0},
{"component_id":3,"drawable":0,"texture":0},
{"component_id":4,"drawable":0,"texture":0},
{"component_id":5,"drawable":0,"texture":0},
{"component_id":6,"drawable":0,"texture":0},
{"component_id":7,"drawable":0,"texture":0},
{"component_id":8,"drawable":15,"texture":0},
{"component_id":9,"drawable":0,"texture":0},
{"component_id":10,"drawable":0,"texture":0},
{"component_id":11,"drawable":39,"texture":0}]', '[{"prop_id":0,"drawable":-
1,"texture":-1},{"prop_id":1,"drawable":0,"texture":0},{"prop_id":2,"drawable":-
1,"texture":-1},{"prop_id":6,"drawable":-1,"texture":-1},{"prop_id":7,"drawable":-
1,"texture":-1}]'),
(14, 'a5ba63be5d92213fff76bd8e0cf6694b9aee9b57', '12323',
'"mp_m_freemode_01"', '[{"component_id":0,"drawable":0,"texture":0},
{"component_id":1,"drawable":0,"texture":0},
{"component_id":2,"drawable":45,"texture":0},
{"component_id":3,"drawable":4,"texture":0},
{"component_id":4,"drawable":10,"texture":0},
{"component_id":5,"drawable":0,"texture":0},
{"component_id":6,"drawable":10,"texture":0},
{"component_id":7,"drawable":0,"texture":0},
{"component_id":8,"drawable":15,"texture":0},
{"component_id":9,"drawable":1,"texture":0},
{"component_id":10,"drawable":0,"texture":0},
{"component_id":11,"drawable":349,"texture":2}]', '[{"prop_id":0,"drawable":-
1,"texture":-1},{"prop_id":1,"drawable":0,"texture":0},{"prop_id":2,"drawable":-
1,"texture":-1},{"prop_id":6,"drawable":-1,"texture":-1},
{"prop_id":7,"drawable":0,"texture":0}]'),
(15, 'cd11e6ea499b847be2634e361bf5fe9c71bf89aa', NULL, '"mp_m_freemode_01"',
'[{"texture":0,"component_id":0,"drawable":0},
{"texture":0,"component_id":1,"drawable":0},
{"texture":0,"component_id":2,"drawable":0},
{"texture":0,"component_id":3,"drawable":0},
{"texture":0,"component_id":4,"drawable":0},
{"texture":0,"component_id":5,"drawable":0},
{"texture":0,"component_id":6,"drawable":0},
{"texture":0,"component_id":7,"drawable":0},
{"texture":0,"component_id":8,"drawable":0},
{"texture":0,"component_id":9,"drawable":0},
{"texture":0,"component_id":10,"drawable":0},
{"texture":0,"component_id":11,"drawable":0}]', '[{"prop_id":0,"texture":-
1,"drawable":-1},{"prop_id":1,"texture":-1,"drawable":-1},{"prop_id":2,"texture":-
1,"drawable":-1},{"prop_id":6,"texture":-1,"drawable":-1},{"prop_id":7,"texture":-
1,"drawable":-1}]'),
(17, 'd1721bbfb737142903cb6e608a8a720e75f8f871', '3344',
'"mp_m_freemode_01"', '[{"component_id":0,"texture":0,"drawable":0},
{"component_id":1,"texture":0,"drawable":175},
{"component_id":2,"texture":0,"drawable":0},
{"component_id":3,"texture":0,"drawable":0},
{"component_id":4,"texture":4,"drawable":5},
{"component_id":5,"texture":0,"drawable":0},
{"component_id":6,"texture":0,"drawable":31},
{"component_id":7,"texture":0,"drawable":0},
{"component_id":8,"texture":0,"drawable":103},
{"component_id":9,"texture":0,"drawable":0},
{"component_id":10,"texture":0,"drawable":0},
{"component_id":11,"texture":2,"drawable":167}]', '[{"prop_id":0,"texture":-
1,"drawable":-1},{"prop_id":1,"texture":-1,"drawable":-1},{"prop_id":2,"texture":-
1,"drawable":-1},{"prop_id":6,"texture":-1,"drawable":-1},{"prop_id":7,"texture":-
1,"drawable":-1}]'),
(18, '84e9f37e6297213a2eb648cbf1a017dd7bb72127', 'blue',
'"mp_m_freemode_01"', '[{"component_id":0,"texture":0,"drawable":0},
{"component_id":1,"texture":0,"drawable":175},
{"component_id":2,"texture":0,"drawable":21},
{"component_id":3,"texture":0,"drawable":22},
{"component_id":4,"texture":0,"drawable":0},
{"component_id":5,"texture":0,"drawable":0},
{"component_id":6,"texture":5,"drawable":8},
{"component_id":7,"texture":0,"drawable":0},
{"component_id":8,"texture":1,"drawable":23},
{"component_id":9,"texture":0,"drawable":0},
{"component_id":10,"texture":0,"drawable":0},
{"component_id":11,"texture":2,"drawable":167}]', '[{"prop_id":0,"texture":-
1,"drawable":-1},{"prop_id":1,"texture":-1,"drawable":-1},{"prop_id":2,"texture":-
1,"drawable":-1},{"prop_id":6,"texture":-1,"drawable":-1},{"prop_id":7,"texture":-
1,"drawable":-1}]'),
(19, 'cd11e6ea499b847be2634e361bf5fe9c71bf89aa', 'Plavo',
'"mp_m_freemode_01"', '[{"texture":0,"component_id":0,"drawable":0},
{"texture":0,"component_id":1,"drawable":175},
{"texture":0,"component_id":2,"drawable":0},
{"texture":0,"component_id":3,"drawable":0},
{"texture":1,"component_id":4,"drawable":4},
{"texture":0,"component_id":5,"drawable":0},
{"texture":0,"component_id":6,"drawable":83},
{"texture":0,"component_id":7,"drawable":0},
{"texture":1,"component_id":8,"drawable":23},
{"texture":0,"component_id":9,"drawable":0},
{"texture":0,"component_id":10,"drawable":0},
{"texture":2,"component_id":11,"drawable":167}]', '[{"prop_id":0,"texture":-
1,"drawable":-1},{"prop_id":1,"texture":-1,"drawable":-1},{"prop_id":2,"texture":-
1,"drawable":-1},{"prop_id":6,"texture":-1,"drawable":-1},{"prop_id":7,"texture":-
1,"drawable":-1}]'),
(20, '84e9f37e6297213a2eb648cbf1a017dd7bb72127', 'new', '"mp_m_freemode_01"',
'[{"component_id":0,"texture":0,"drawable":0},
{"component_id":1,"texture":0,"drawable":0},
{"component_id":2,"texture":0,"drawable":21},
{"component_id":3,"texture":0,"drawable":22},
{"component_id":4,"texture":3,"drawable":4},
{"component_id":5,"texture":0,"drawable":0},
{"component_id":6,"texture":5,"drawable":8},
{"component_id":7,"texture":0,"drawable":0},
{"component_id":8,"texture":1,"drawable":23},
{"component_id":9,"texture":0,"drawable":0},
{"component_id":10,"texture":0,"drawable":0},
{"component_id":11,"texture":2,"drawable":167}]', '[{"prop_id":0,"texture":-
1,"drawable":-1},{"prop_id":1,"texture":-1,"drawable":-1},{"prop_id":2,"texture":-
1,"drawable":-1},{"prop_id":6,"texture":-1,"drawable":-1},{"prop_id":7,"texture":-
1,"drawable":-1}]'),
(21, 'aba646f83c2ebd361df1ae24564fda85b866fd9e', '12', '"mp_m_freemode_01"',
'[{"component_id":0,"texture":0,"drawable":0},
{"component_id":1,"texture":0,"drawable":175},
{"component_id":2,"texture":0,"drawable":0},
{"component_id":3,"texture":0,"drawable":0},
{"component_id":4,"texture":0,"drawable":4},
{"component_id":5,"texture":0,"drawable":0},
{"component_id":6,"texture":3,"drawable":31},
{"component_id":7,"texture":0,"drawable":0},
{"component_id":8,"texture":0,"drawable":5},
{"component_id":9,"texture":0,"drawable":0},
{"component_id":10,"texture":0,"drawable":0},
{"component_id":11,"texture":2,"drawable":167}]', '[{"prop_id":0,"texture":-
1,"drawable":-1},{"prop_id":1,"texture":-1,"drawable":-1},{"prop_id":2,"texture":-
1,"drawable":-1},{"prop_id":6,"texture":-1,"drawable":-1},{"prop_id":7,"texture":-
1,"drawable":-1}]'),
(22, 'c0e59b595d8fb8faafa8dedc614a2ea7e8a947d1', 'prvi',
'"mp_m_freemode_01"', '[{"texture":0,"component_id":0,"drawable":0},
{"texture":0,"component_id":1,"drawable":0},
{"texture":0,"component_id":2,"drawable":5},
{"texture":0,"component_id":3,"drawable":0},
{"texture":0,"component_id":4,"drawable":46},
{"texture":0,"component_id":5,"drawable":0},
{"texture":14,"component_id":6,"drawable":7},
{"texture":0,"component_id":7,"drawable":0},
{"texture":0,"component_id":8,"drawable":15},
{"texture":0,"component_id":9,"drawable":0},
{"texture":0,"component_id":10,"drawable":0},
{"texture":1,"component_id":11,"drawable":164}]', '[{"prop_id":0,"texture":-
1,"drawable":-1},{"prop_id":1,"texture":0,"drawable":3},{"prop_id":2,"texture":-
1,"drawable":-1},{"prop_id":6,"texture":0,"drawable":3},{"prop_id":7,"texture":-
1,"drawable":-1}]'),
(23, 'a5ba63be5d92213fff76bd8e0cf6694b9aee9b57', 'Policija',
'"mp_m_freemode_01"', '[{"texture":0,"component_id":0,"drawable":0},
{"texture":0,"component_id":1,"drawable":0},
{"texture":0,"component_id":2,"drawable":31},
{"texture":0,"component_id":3,"drawable":17},
{"texture":0,"component_id":4,"drawable":31},
{"texture":0,"component_id":5,"drawable":0},
{"texture":0,"component_id":6,"drawable":25},
{"texture":0,"component_id":7,"drawable":0},
{"texture":0,"component_id":8,"drawable":154},
{"texture":0,"component_id":9,"drawable":1},
{"texture":0,"component_id":10,"drawable":0},
{"texture":4,"component_id":11,"drawable":92}]', '[{"prop_id":0,"texture":-
1,"drawable":-1},{"prop_id":1,"texture":-1,"drawable":-1},{"prop_id":2,"texture":-
1,"drawable":-1},{"prop_id":6,"texture":-1,"drawable":-1},{"prop_id":7,"texture":-
1,"drawable":-1}]'),
(24, 'c0693b27b436490b6472d322a37cef8aa1caca97', 'Prvi',
'"mp_m_freemode_01"', '[{"texture":0,"component_id":0,"drawable":0},
{"texture":0,"component_id":1,"drawable":0},
{"texture":0,"component_id":2,"drawable":5},
{"texture":0,"component_id":3,"drawable":17},
{"texture":0,"component_id":4,"drawable":31},
{"texture":0,"component_id":5,"drawable":0},
{"texture":0,"component_id":6,"drawable":25},
{"texture":0,"component_id":7,"drawable":0},
{"texture":0,"component_id":8,"drawable":15},
{"texture":0,"component_id":9,"drawable":1},
{"texture":0,"component_id":10,"drawable":0},
{"texture":0,"component_id":11,"drawable":102}]', '[{"prop_id":0,"texture":-
1,"drawable":-1},{"prop_id":1,"texture":-1,"drawable":-1},{"prop_id":2,"texture":-
1,"drawable":-1},{"prop_id":6,"texture":-1,"drawable":-1},{"prop_id":7,"texture":-
1,"drawable":-1}]'),
(25, 'c0e59b595d8fb8faafa8dedc614a2ea7e8a947d1', 'police 1',
'"mp_m_freemode_01"', '[{"texture":0,"component_id":0,"drawable":0},
{"texture":0,"component_id":1,"drawable":0},
{"texture":0,"component_id":2,"drawable":5},
{"texture":0,"component_id":3,"drawable":0},
{"texture":0,"component_id":4,"drawable":31},
{"texture":0,"component_id":5,"drawable":0},
{"texture":0,"component_id":6,"drawable":24},
{"texture":0,"component_id":7,"drawable":0},
{"texture":0,"component_id":8,"drawable":153},
{"texture":0,"component_id":9,"drawable":1},
{"texture":0,"component_id":10,"drawable":0},
{"texture":0,"component_id":11,"drawable":101}]', '[{"prop_id":0,"texture":-
1,"drawable":-1},{"prop_id":1,"texture":5,"drawable":3},{"prop_id":2,"texture":-
1,"drawable":-1},{"prop_id":6,"texture":0,"drawable":3},{"prop_id":7,"texture":-
1,"drawable":-1}]'),
(26, '35290623e487cf1bc198b832c913758da53bf42d', 'policija',
'"mp_m_freemode_01"', '[{"texture":0,"component_id":0,"drawable":0},
{"texture":0,"component_id":1,"drawable":0},
{"texture":0,"component_id":2,"drawable":3},
{"texture":0,"component_id":3,"drawable":0},
{"texture":0,"component_id":4,"drawable":31},
{"texture":0,"component_id":5,"drawable":0},
{"texture":0,"component_id":6,"drawable":24},
{"texture":0,"component_id":7,"drawable":0},
{"texture":0,"component_id":8,"drawable":153},
{"texture":0,"component_id":9,"drawable":1},
{"texture":0,"component_id":10,"drawable":0},
{"texture":0,"component_id":11,"drawable":101}]', '[{"prop_id":0,"texture":-
1,"drawable":-1},{"prop_id":1,"texture":-1,"drawable":-1},{"prop_id":2,"texture":-
1,"drawable":-1},{"prop_id":6,"texture":-1,"drawable":-1},{"prop_id":7,"texture":-
1,"drawable":-1}]'),
(27, 'b8dc845cf0270cb9f0288b0e6ff95d315623db60', 'Mafija',
'"mp_f_freemode_01"', '[{"texture":0,"component_id":0,"drawable":0},
{"texture":0,"component_id":1,"drawable":17},
{"texture":0,"component_id":2,"drawable":36},
{"texture":0,"component_id":3,"drawable":87},
{"texture":1,"component_id":4,"drawable":45},
{"texture":0,"component_id":5,"drawable":0},
{"texture":0,"component_id":6,"drawable":55},
{"texture":0,"component_id":7,"drawable":0},
{"texture":0,"component_id":8,"drawable":2},
{"texture":0,"component_id":9,"drawable":0},
{"texture":0,"component_id":10,"drawable":0},
{"texture":2,"component_id":11,"drawable":81}]', '[{"prop_id":0,"texture":-
1,"drawable":-1},{"prop_id":1,"texture":-1,"drawable":-1},{"prop_id":2,"texture":-
1,"drawable":-1},{"prop_id":6,"texture":-1,"drawable":-1},{"prop_id":7,"texture":-
1,"drawable":-1}]'),
(28, 'b8dc845cf0270cb9f0288b0e6ff95d315623db60', 'Admin',
'"mp_f_freemode_01"', '[{"texture":0,"component_id":0,"drawable":0},
{"texture":0,"component_id":1,"drawable":0},
{"texture":0,"component_id":2,"drawable":36},
{"texture":0,"component_id":3,"drawable":87},
{"texture":0,"component_id":4,"drawable":41},
{"texture":0,"component_id":5,"drawable":0},
{"texture":3,"component_id":6,"drawable":81},
{"texture":0,"component_id":7,"drawable":0},
{"texture":0,"component_id":8,"drawable":2},
{"texture":0,"component_id":9,"drawable":0},
{"texture":0,"component_id":10,"drawable":0},
{"texture":0,"component_id":11,"drawable":80}]', '[{"prop_id":0,"texture":-
1,"drawable":-1},{"prop_id":1,"texture":-1,"drawable":-1},{"prop_id":2,"texture":-
1,"drawable":-1},{"prop_id":6,"texture":-1,"drawable":-1},{"prop_id":7,"texture":-
1,"drawable":-1}]'),
(29, 'bada500c4554ef8c223112c8dcfe8bc326946b28', '', '"mp_m_freemode_01"',
'[{"texture":0,"component_id":0,"drawable":0},
{"texture":0,"component_id":1,"drawable":0},
{"texture":0,"component_id":2,"drawable":65},
{"texture":0,"component_id":3,"drawable":14},
{"texture":1,"component_id":4,"drawable":4},
{"texture":0,"component_id":5,"drawable":0},
{"texture":1,"component_id":6,"drawable":31},
{"texture":0,"component_id":7,"drawable":0},
{"texture":0,"component_id":8,"drawable":158},
{"texture":0,"component_id":9,"drawable":0},
{"texture":0,"component_id":10,"drawable":0},
{"texture":11,"component_id":11,"drawable":120}]', '[{"prop_id":0,"texture":-
1,"drawable":-1},{"prop_id":1,"texture":-1,"drawable":-1},{"prop_id":2,"texture":-
1,"drawable":-1},{"prop_id":6,"texture":-1,"drawable":-1},{"prop_id":7,"texture":-
1,"drawable":-1}]'),
(30, '6478d2abb6f7643d05bd3dad07f3d4ac3bcf0ad6', 'Barani na aparatima',
'"mp_m_freemode_01"', '[{"component_id":0,"texture":0,"drawable":0},
{"component_id":1,"texture":0,"drawable":0},
{"component_id":2,"texture":0,"drawable":73},
{"component_id":3,"texture":0,"drawable":1},
{"component_id":4,"texture":2,"drawable":79},
{"component_id":5,"texture":0,"drawable":0},
{"component_id":6,"texture":3,"drawable":31},
{"component_id":7,"texture":0,"drawable":0},
{"component_id":8,"texture":0,"drawable":158},
{"component_id":9,"texture":0,"drawable":0},
{"component_id":10,"texture":0,"drawable":0},
{"component_id":11,"texture":11,"drawable":120}]', '[{"prop_id":0,"texture":-
1,"drawable":-1},{"prop_id":1,"texture":-1,"drawable":-1},{"prop_id":2,"texture":-
1,"drawable":-1},{"prop_id":6,"texture":-1,"drawable":-1},{"prop_id":7,"texture":-
1,"drawable":-1}]'),
(31, 'bada500c4554ef8c223112c8dcfe8bc326946b28', 'barancuge crnogorske',
'"mp_m_freemode_01"', '[{"texture":0,"component_id":0,"drawable":0},
{"texture":0,"component_id":1,"drawable":0},
{"texture":0,"component_id":2,"drawable":65},
{"texture":0,"component_id":3,"drawable":14},
{"texture":0,"component_id":4,"drawable":49},
{"texture":0,"component_id":5,"drawable":0},
{"texture":0,"component_id":6,"drawable":77},
{"texture":0,"component_id":7,"drawable":0},
{"texture":0,"component_id":8,"drawable":158},
{"texture":0,"component_id":9,"drawable":0},
{"texture":0,"component_id":10,"drawable":0},
{"texture":11,"component_id":11,"drawable":120}]', '[{"prop_id":0,"texture":-
1,"drawable":-1},{"prop_id":1,"texture":-1,"drawable":-1},{"prop_id":2,"texture":-
1,"drawable":-1},{"prop_id":6,"texture":-1,"drawable":-1},{"prop_id":7,"texture":-
1,"drawable":-1}]'),
(32, 'f5fd935995e14ce4369a514e0e6c5a6bd9afd454', 'gg', '"mp_m_freemode_01"',
'[{"component_id":0,"texture":0,"drawable":0},
{"component_id":1,"texture":0,"drawable":0},
{"component_id":2,"texture":0,"drawable":0},
{"component_id":3,"texture":0,"drawable":0},
{"component_id":4,"texture":0,"drawable":0},
{"component_id":5,"texture":0,"drawable":0},
{"component_id":6,"texture":0,"drawable":0},
{"component_id":7,"texture":0,"drawable":0},
{"component_id":8,"texture":0,"drawable":0},
{"component_id":9,"texture":0,"drawable":0},
{"component_id":10,"texture":0,"drawable":0},
{"component_id":11,"texture":0,"drawable":0}]', '[{"prop_id":0,"texture":-
1,"drawable":-1},{"prop_id":1,"texture":-1,"drawable":-1},{"prop_id":2,"texture":-
1,"drawable":-1},{"prop_id":6,"texture":-1,"drawable":-1},{"prop_id":7,"texture":-
1,"drawable":-1}]'),
(33, '39129ac5a1f06dd684f12b5755b7ba42a729b42a', 'Odelce',
'"mp_m_freemode_01"', '[{"drawable":0,"component_id":0,"texture":0},
{"drawable":74,"component_id":1,"texture":0},
{"drawable":21,"component_id":2,"texture":0},
{"drawable":1,"component_id":3,"texture":0},
{"drawable":0,"component_id":4,"texture":0},
{"drawable":0,"component_id":5,"texture":0},
{"drawable":7,"component_id":6,"texture":0},
{"drawable":0,"component_id":7,"texture":0},
{"drawable":4,"component_id":8,"texture":0},
{"drawable":0,"component_id":9,"texture":0},
{"drawable":0,"component_id":10,"texture":0},
{"drawable":10,"component_id":11,"texture":0}]', '[{"drawable":-1,"texture":-
1,"prop_id":0},{"drawable":-1,"texture":-1,"prop_id":1},{"drawable":-1,"texture":-
1,"prop_id":2},{"drawable":-1,"texture":-1,"prop_id":6},{"drawable":-1,"texture":-
1,"prop_id":7}]'),
(35, '39129ac5a1f06dd684f12b5755b7ba42a729b42a', 'VAGOS',
'"mp_m_freemode_01"', '[{"drawable":0,"component_id":0,"texture":0},
{"drawable":17,"component_id":1,"texture":0},
{"drawable":21,"component_id":2,"texture":0},
{"drawable":2,"component_id":3,"texture":0},
{"drawable":117,"component_id":4,"texture":10},
{"drawable":0,"component_id":5,"texture":0},
{"drawable":6,"component_id":6,"texture":0},
{"drawable":1,"component_id":7,"texture":0},
{"drawable":15,"component_id":8,"texture":0},
{"drawable":0,"component_id":9,"texture":0},
{"drawable":1,"component_id":10,"texture":0},
{"drawable":260,"component_id":11,"texture":2}]', '[{"drawable":-1,"texture":-
1,"prop_id":0},{"drawable":-1,"texture":-1,"prop_id":1},{"drawable":-1,"texture":-
1,"prop_id":2},{"drawable":-1,"texture":-1,"prop_id":6},{"drawable":-1,"texture":-
1,"prop_id":7}]'),
(36, '7a029d7423c06765cca5bafab5015365e3f391ad', 'SWAT',
'"mp_m_freemode_01"', '[{"component_id":0,"drawable":0,"texture":0},
{"component_id":1,"drawable":17,"texture":0},
{"component_id":2,"drawable":13,"texture":0},
{"component_id":3,"drawable":17,"texture":0},
{"component_id":4,"drawable":82,"texture":0},
{"component_id":5,"drawable":0,"texture":0},
{"component_id":6,"drawable":31,"texture":2},
{"component_id":7,"drawable":125,"texture":0},
{"component_id":8,"drawable":15,"texture":0},
{"component_id":9,"drawable":1,"texture":0},
{"component_id":10,"drawable":0,"texture":0},
{"component_id":11,"drawable":92,"texture":3}]',
'[{"drawable":7,"texture":7,"prop_id":0},{"drawable":12,"texture":0,"prop_id":1},
{"drawable":-1,"texture":-1,"prop_id":2},{"drawable":-1,"texture":-1,"prop_id":6},
{"drawable":-1,"texture":-1,"prop_id":7}]'),
(37, '5c0df8371401dcedd7dffcc7cdb9472c8b6b7779', 'fib', '"mp_m_freemode_01"',
'[{"component_id":0,"drawable":0,"texture":0},
{"component_id":1,"drawable":72,"texture":0},
{"component_id":2,"drawable":9,"texture":0},
{"component_id":3,"drawable":17,"texture":0},
{"component_id":4,"drawable":33,"texture":0},
{"component_id":5,"drawable":0,"texture":0},
{"component_id":6,"drawable":25,"texture":0},
{"component_id":7,"drawable":0,"texture":0},
{"component_id":8,"drawable":122,"texture":0},
{"component_id":9,"drawable":2,"texture":0},
{"component_id":10,"drawable":0,"texture":0},
{"component_id":11,"drawable":110,"texture":0}]',
'[{"drawable":116,"texture":0,"prop_id":0},{"drawable":-1,"texture":-
1,"prop_id":1},{"drawable":-1,"texture":-1,"prop_id":2},{"drawable":-1,"texture":-
1,"prop_id":6},{"drawable":-1,"texture":-1,"prop_id":7}]'),
(38, '5c0df8371401dcedd7dffcc7cdb9472c8b6b7779', 'Gospodski',
'"mp_m_freemode_01"', '[{"component_id":0,"drawable":0,"texture":0},
{"component_id":1,"drawable":0,"texture":0},
{"component_id":2,"drawable":9,"texture":0},
{"component_id":3,"drawable":17,"texture":0},
{"component_id":4,"drawable":3,"texture":0},
{"component_id":5,"drawable":0,"texture":0},
{"component_id":6,"drawable":7,"texture":1},
{"component_id":7,"drawable":0,"texture":0},
{"component_id":8,"drawable":0,"texture":0},
{"component_id":9,"drawable":0,"texture":0},
{"component_id":10,"drawable":0,"texture":0},
{"component_id":11,"drawable":12,"texture":0}]', '[{"drawable":-1,"texture":-
1,"prop_id":0},{"drawable":-1,"texture":-1,"prop_id":1},{"drawable":-1,"texture":-
1,"prop_id":2},{"drawable":-1,"texture":-1,"prop_id":6},{"drawable":-1,"texture":-
1,"prop_id":7}]'),
(39, '1226e927a65193c375d54734841e63ed8330fa5d', 'toni montana',
'"mp_m_freemode_01"', '[{"drawable":0,"texture":0,"component_id":0},
{"drawable":0,"texture":0,"component_id":1},
{"drawable":12,"texture":0,"component_id":2},
{"drawable":0,"texture":0,"component_id":3},
{"drawable":28,"texture":0,"component_id":4},
{"drawable":0,"texture":0,"component_id":5},
{"drawable":29,"texture":0,"component_id":6},
{"drawable":3,"texture":1,"component_id":7},
{"drawable":21,"texture":0,"component_id":8},
{"drawable":0,"texture":0,"component_id":9},
{"drawable":0,"texture":0,"component_id":10},
{"drawable":72,"texture":0,"component_id":11}]', '[{"drawable":-1,"texture":-
1,"prop_id":0},{"drawable":-1,"texture":-1,"prop_id":1},{"drawable":-1,"texture":-
1,"prop_id":2},{"drawable":0,"texture":0,"prop_id":6},{"drawable":-1,"texture":-
1,"prop_id":7}]'),
(40, '1226e927a65193c375d54734841e63ed8330fa5d', 'toni montana ispravna
prica', '"mp_m_freemode_01"', '[{"drawable":0,"texture":0,"component_id":0},
{"drawable":0,"texture":0,"component_id":1},
{"drawable":12,"texture":0,"component_id":2},
{"drawable":0,"texture":0,"component_id":3},
{"drawable":28,"texture":0,"component_id":4},
{"drawable":0,"texture":0,"component_id":5},
{"drawable":29,"texture":0,"component_id":6},
{"drawable":3,"texture":1,"component_id":7},
{"drawable":21,"texture":0,"component_id":8},
{"drawable":0,"texture":0,"component_id":9},
{"drawable":0,"texture":0,"component_id":10},
{"drawable":72,"texture":0,"component_id":11}]', '[{"drawable":-1,"texture":-
1,"prop_id":0},{"drawable":10,"texture":0,"prop_id":1},{"drawable":-1,"texture":-
1,"prop_id":2},{"drawable":0,"texture":0,"prop_id":6},{"drawable":-1,"texture":-
1,"prop_id":7}]'),
(41, '6918acd89e1d7e66f52f5a62486979b5156e9541', 'daweda',
'"mp_m_freemode_01"', '[{"drawable":0,"texture":0,"component_id":0},
{"drawable":0,"texture":0,"component_id":1},
{"drawable":0,"texture":0,"component_id":2},
{"drawable":0,"texture":0,"component_id":3},
{"drawable":78,"texture":1,"component_id":4},
{"drawable":0,"texture":0,"component_id":5},
{"drawable":31,"texture":1,"component_id":6},
{"drawable":0,"texture":0,"component_id":7},
{"drawable":0,"texture":0,"component_id":8},
{"drawable":0,"texture":0,"component_id":9},
{"drawable":0,"texture":0,"component_id":10},
{"drawable":75,"texture":0,"component_id":11}]',
'[{"drawable":120,"texture":0,"prop_id":0},{"drawable":-1,"texture":-
1,"prop_id":1},{"drawable":-1,"texture":-1,"prop_id":2},{"drawable":-1,"texture":-
1,"prop_id":6},{"drawable":-1,"texture":-1,"prop_id":7}]'),
(42, 'c2dee5ef8ba164d227a1c741299e6c0b436122a1', 'Toni montana',
'"mp_m_freemode_01"', '[{"component_id":0,"texture":0,"drawable":0},
{"component_id":1,"texture":0,"drawable":0},
{"component_id":2,"texture":0,"drawable":57},
{"component_id":3,"texture":0,"drawable":1},
{"component_id":4,"texture":0,"drawable":49},
{"component_id":5,"texture":0,"drawable":0},
{"component_id":6,"texture":4,"drawable":40},
{"component_id":7,"texture":0,"drawable":0},
{"component_id":8,"texture":0,"drawable":10},
{"component_id":9,"texture":0,"drawable":0},
{"component_id":10,"texture":0,"drawable":0},
{"component_id":11,"texture":1,"drawable":240}]', '[{"drawable":-1,"texture":-
1,"prop_id":0},{"drawable":-1,"texture":-1,"prop_id":1},{"drawable":-1,"texture":-
1,"prop_id":2},{"drawable":-1,"texture":-1,"prop_id":6},{"drawable":-1,"texture":-
1,"prop_id":7}]'),
(43, 'd7e5e3fd40e69a86ac72fb55cac11639732e87eb', 'mts operacija',
'"mp_m_freemode_01"', '[{"component_id":0,"texture":0,"drawable":0},
{"component_id":1,"texture":0,"drawable":0},
{"component_id":2,"texture":0,"drawable":18},
{"component_id":3,"texture":0,"drawable":0},
{"component_id":4,"texture":0,"drawable":26},
{"component_id":5,"texture":0,"drawable":0},
{"component_id":6,"texture":0,"drawable":81},
{"component_id":7,"texture":0,"drawable":0},
{"component_id":8,"texture":0,"drawable":15},
{"component_id":9,"texture":0,"drawable":0},
{"component_id":10,"texture":0,"drawable":0},
{"component_id":11,"texture":0,"drawable":50}]', '[{"drawable":-1,"texture":-
1,"prop_id":0},{"drawable":-1,"texture":-1,"prop_id":1},{"drawable":-1,"texture":-
1,"prop_id":2},{"drawable":-1,"texture":-1,"prop_id":6},{"drawable":-1,"texture":-
1,"prop_id":7}]'),
(44, 'c2dee5ef8ba164d227a1c741299e6c0b436122a1', 'akcija',
'"mp_m_freemode_01"', '[{"component_id":0,"texture":0,"drawable":0},
{"component_id":1,"texture":0,"drawable":72},
{"component_id":2,"texture":0,"drawable":57},
{"component_id":3,"texture":0,"drawable":21},
{"component_id":4,"texture":0,"drawable":31},
{"component_id":5,"texture":0,"drawable":0},
{"component_id":6,"texture":0,"drawable":25},
{"component_id":7,"texture":0,"drawable":0},
{"component_id":8,"texture":0,"drawable":15},
{"component_id":9,"texture":0,"drawable":0},
{"component_id":10,"texture":0,"drawable":0},
{"component_id":11,"texture":0,"drawable":50}]', '[{"drawable":-1,"texture":-
1,"prop_id":0},{"drawable":-1,"texture":-1,"prop_id":1},{"drawable":-1,"texture":-
1,"prop_id":2},{"drawable":-1,"texture":-1,"prop_id":6},{"drawable":-1,"texture":-
1,"prop_id":7}]'),
(45, 'd7e5e3fd40e69a86ac72fb55cac11639732e87eb', 'belji',
'"mp_m_freemode_01"', '[{"component_id":0,"texture":0,"drawable":0},
{"component_id":1,"texture":0,"drawable":72},
{"component_id":2,"texture":0,"drawable":18},
{"component_id":3,"texture":0,"drawable":22},
{"component_id":4,"texture":0,"drawable":31},
{"component_id":5,"texture":0,"drawable":0},
{"component_id":6,"texture":0,"drawable":25},
{"component_id":7,"texture":0,"drawable":0},
{"component_id":8,"texture":0,"drawable":15},
{"component_id":9,"texture":0,"drawable":0},
{"component_id":10,"texture":0,"drawable":0},
{"component_id":11,"texture":0,"drawable":50}]', '[{"drawable":-1,"texture":-
1,"prop_id":0},{"drawable":-1,"texture":-1,"prop_id":1},{"drawable":-1,"texture":-
1,"prop_id":2},{"drawable":-1,"texture":-1,"prop_id":6},{"drawable":-1,"texture":-
1,"prop_id":7}]'),
(46, 'c2dee5ef8ba164d227a1c741299e6c0b436122a1', 'akcija',
'"mp_m_freemode_01"', '[{"component_id":0,"texture":0,"drawable":0},
{"component_id":1,"texture":0,"drawable":72},
{"component_id":2,"texture":0,"drawable":57},
{"component_id":3,"texture":0,"drawable":96},
{"component_id":4,"texture":0,"drawable":31},
{"component_id":5,"texture":0,"drawable":0},
{"component_id":6,"texture":0,"drawable":25},
{"component_id":7,"texture":0,"drawable":0},
{"component_id":8,"texture":0,"drawable":15},
{"component_id":9,"texture":0,"drawable":0},
{"component_id":10,"texture":0,"drawable":0},
{"component_id":11,"texture":0,"drawable":50}]', '[{"drawable":-1,"texture":-
1,"prop_id":0},{"drawable":-1,"texture":-1,"prop_id":1},{"drawable":-1,"texture":-
1,"prop_id":2},{"drawable":-1,"texture":-1,"prop_id":6},{"drawable":-1,"texture":-
1,"prop_id":7}]'),
(47, '1226e927a65193c375d54734841e63ed8330fa5d', 'akcija 1',
'"mp_m_freemode_01"', '[{"drawable":0,"texture":0,"component_id":0},
{"drawable":72,"texture":0,"component_id":1},
{"drawable":12,"texture":0,"component_id":2},
{"drawable":96,"texture":0,"component_id":3},
{"drawable":31,"texture":0,"component_id":4},
{"drawable":0,"texture":0,"component_id":5},
{"drawable":25,"texture":0,"component_id":6},
{"drawable":0,"texture":0,"component_id":7},
{"drawable":15,"texture":0,"component_id":8},
{"drawable":0,"texture":0,"component_id":9},
{"drawable":0,"texture":0,"component_id":10},
{"drawable":50,"texture":0,"component_id":11}]', '[{"drawable":-1,"texture":-
1,"prop_id":0},{"drawable":-1,"texture":-1,"prop_id":1},{"drawable":-1,"texture":-
1,"prop_id":2},{"drawable":0,"texture":0,"prop_id":6},{"drawable":-1,"texture":-
1,"prop_id":7}]'),
(48, '68399a5b8cd906efc5c766e44db567fae9ead974', 'crno full',
'"mp_m_freemode_01"', '[{"component_id":0,"texture":0,"drawable":0},
{"component_id":1,"texture":0,"drawable":72},
{"component_id":2,"texture":0,"drawable":0},
{"component_id":3,"texture":0,"drawable":96},
{"component_id":4,"texture":0,"drawable":31},
{"component_id":5,"texture":0,"drawable":0},
{"component_id":6,"texture":0,"drawable":25},
{"component_id":7,"texture":0,"drawable":0},
{"component_id":8,"texture":0,"drawable":15},
{"component_id":9,"texture":0,"drawable":0},
{"component_id":10,"texture":0,"drawable":0},
{"component_id":11,"texture":0,"drawable":50}]', '[{"drawable":-1,"texture":-
1,"prop_id":0},{"drawable":-1,"texture":-1,"prop_id":1},{"drawable":-1,"texture":-
1,"prop_id":2},{"drawable":-1,"texture":-1,"prop_id":6},{"drawable":-1,"texture":-
1,"prop_id":7}]'),
(49, '68399a5b8cd906efc5c766e44db567fae9ead974', 'normal',
'"mp_m_freemode_01"', '[{"component_id":0,"texture":0,"drawable":0},
{"component_id":1,"texture":0,"drawable":0},
{"component_id":2,"texture":0,"drawable":0},
{"component_id":3,"texture":0,"drawable":2},
{"component_id":4,"texture":0,"drawable":28},
{"component_id":5,"texture":0,"drawable":0},
{"component_id":6,"texture":0,"drawable":8},
{"component_id":7,"texture":0,"drawable":0},
{"component_id":8,"texture":0,"drawable":15},
{"component_id":9,"texture":0,"drawable":0},
{"component_id":10,"texture":0,"drawable":0},
{"component_id":11,"texture":0,"drawable":105}]',
'[{"drawable":12,"texture":0,"prop_id":0},{"drawable":-1,"texture":-1,"prop_id":1},
{"drawable":-1,"texture":-1,"prop_id":2},{"drawable":-1,"texture":-1,"prop_id":6},
{"drawable":-1,"texture":-1,"prop_id":7}]'),
(50, '1226e927a65193c375d54734841e63ed8330fa5d', NULL, '"mp_m_freemode_01"',
'[{"drawable":0,"texture":0,"component_id":0},
{"drawable":72,"texture":0,"component_id":1},
{"drawable":12,"texture":0,"component_id":2},
{"drawable":96,"texture":0,"component_id":3},
{"drawable":31,"texture":0,"component_id":4},
{"drawable":0,"texture":0,"component_id":5},
{"drawable":25,"texture":0,"component_id":6},
{"drawable":0,"texture":0,"component_id":7},
{"drawable":15,"texture":0,"component_id":8},
{"drawable":0,"texture":0,"component_id":9},
{"drawable":0,"texture":0,"component_id":10},
{"drawable":50,"texture":0,"component_id":11}]', '[{"drawable":-1,"texture":-
1,"prop_id":0},{"drawable":-1,"texture":-1,"prop_id":1},{"drawable":-1,"texture":-
1,"prop_id":2},{"drawable":0,"texture":0,"prop_id":6},{"drawable":-1,"texture":-
1,"prop_id":7}]'),
(51, '8a3f4af7421238a4d24e7c6d1ca2e3273c1bb786', 'kid', '"mp_m_freemode_01"',
'[{"component_id":0,"drawable":0,"texture":0},
{"component_id":1,"drawable":0,"texture":0},
{"component_id":2,"drawable":0,"texture":0},
{"component_id":3,"drawable":0,"texture":0},
{"component_id":4,"drawable":0,"texture":0},
{"component_id":5,"drawable":0,"texture":0},
{"component_id":6,"drawable":0,"texture":0},
{"component_id":7,"drawable":0,"texture":0},
{"component_id":8,"drawable":0,"texture":1},
{"component_id":9,"drawable":0,"texture":0},
{"component_id":10,"drawable":0,"texture":0},
{"component_id":11,"drawable":0,"texture":11}]', '[{"prop_id":0,"drawable":-
1,"texture":-1},{"prop_id":1,"drawable":-1,"texture":-1},{"prop_id":2,"drawable":-
1,"texture":-1},{"prop_id":6,"drawable":-1,"texture":-1},{"prop_id":7,"drawable":-
1,"texture":-1}]'),
(52, '8a3f4af7421238a4d24e7c6d1ca2e3273c1bb786', '4444',
'"mp_m_freemode_01"', '[{"component_id":0,"drawable":0,"texture":0},
{"component_id":1,"drawable":4,"texture":0},
{"component_id":2,"drawable":0,"texture":0},
{"component_id":3,"drawable":0,"texture":0},
{"component_id":4,"drawable":9,"texture":0},
{"component_id":5,"drawable":0,"texture":0},
{"component_id":6,"drawable":6,"texture":0},
{"component_id":7,"drawable":0,"texture":0},
{"component_id":8,"drawable":6,"texture":0},
{"component_id":9,"drawable":0,"texture":0},
{"component_id":10,"drawable":0,"texture":0},
{"component_id":11,"drawable":62,"texture":0}]', '[{"prop_id":0,"drawable":-
1,"texture":-1},{"prop_id":1,"drawable":-1,"texture":-1},{"prop_id":2,"drawable":-
1,"texture":-1},{"prop_id":6,"drawable":-1,"texture":-1},{"prop_id":7,"drawable":-
1,"texture":-1}]'),
(53, '8a3f4af7421238a4d24e7c6d1ca2e3273c1bb786', 'ds', '"mp_m_freemode_01"',
'[{"component_id":0,"drawable":0,"texture":0},
{"component_id":1,"drawable":4,"texture":0},
{"component_id":2,"drawable":0,"texture":0},
{"component_id":3,"drawable":0,"texture":0},
{"component_id":4,"drawable":9,"texture":0},
{"component_id":5,"drawable":0,"texture":0},
{"component_id":6,"drawable":6,"texture":0},
{"component_id":7,"drawable":0,"texture":0},
{"component_id":8,"drawable":6,"texture":0},
{"component_id":9,"drawable":0,"texture":0},
{"component_id":10,"drawable":0,"texture":0},
{"component_id":11,"drawable":62,"texture":0}]', '[{"prop_id":0,"drawable":-
1,"texture":-1},{"prop_id":1,"drawable":-1,"texture":-1},{"prop_id":2,"drawable":-
1,"texture":-1},{"prop_id":6,"drawable":-1,"texture":-1},{"prop_id":7,"drawable":-
1,"texture":-1}]'),
(54, '46.235.97.168', 'dsadas', '"mp_m_freemode_01"',
'[{"texture":0,"component_id":0,"drawable":0},
{"texture":0,"component_id":1,"drawable":8},
{"texture":0,"component_id":2,"drawable":0},
{"texture":0,"component_id":3,"drawable":18},
{"texture":0,"component_id":4,"drawable":19},
{"texture":0,"component_id":5,"drawable":0},
{"texture":0,"component_id":6,"drawable":6},
{"texture":0,"component_id":7,"drawable":0},
{"texture":0,"component_id":8,"drawable":15},
{"texture":0,"component_id":9,"drawable":0},
{"texture":0,"component_id":10,"drawable":0},
{"texture":1,"component_id":11,"drawable":111}]', '[{"texture":-
1,"prop_id":0,"drawable":-1},{"texture":-1,"prop_id":1,"drawable":-1},{"texture":-
1,"prop_id":2,"drawable":-1},{"texture":-1,"prop_id":6,"drawable":-1},{"texture":-
1,"prop_id":7,"drawable":-1}]'),
(55, '896386080e8cdf219abf4ee615a73517aa8470cc', 'Hara',
'"mp_m_freemode_01"', '[{"drawable":0,"texture":0,"component_id":0},
{"drawable":0,"texture":0,"component_id":1},
{"drawable":13,"texture":0,"component_id":2},
{"drawable":17,"texture":0,"component_id":3},
{"drawable":33,"texture":0,"component_id":4},
{"drawable":0,"texture":0,"component_id":5},
{"drawable":31,"texture":1,"component_id":6},
{"drawable":0,"texture":0,"component_id":7},
{"drawable":15,"texture":0,"component_id":8},
{"drawable":0,"texture":0,"component_id":9},
{"drawable":0,"texture":0,"component_id":10},
{"drawable":84,"texture":0,"component_id":11}]', '[{"drawable":-
1,"prop_id":0,"texture":-1},{"drawable":-1,"prop_id":1,"texture":-1},{"drawable":-
1,"prop_id":2,"texture":-1},{"drawable":-1,"prop_id":6,"texture":-1},{"drawable":-
1,"prop_id":7,"texture":-1}]'),
(57, '630d0925b2b4eba1194f6cbe366dc576c7e242dd', '1', '"mp_m_freemode_01"',
'[{"drawable":0,"component_id":0,"texture":0},
{"drawable":0,"component_id":1,"texture":0},
{"drawable":13,"component_id":2,"texture":0},
{"drawable":83,"component_id":3,"texture":0},
{"drawable":128,"component_id":4,"texture":7},
{"drawable":0,"component_id":5,"texture":0},
{"drawable":0,"component_id":6,"texture":0},
{"drawable":0,"component_id":7,"texture":0},
{"drawable":0,"component_id":8,"texture":0},
{"drawable":0,"component_id":9,"texture":0},
{"drawable":0,"component_id":10,"texture":0},
{"drawable":332,"component_id":11,"texture":7}]', '[{"prop_id":0,"texture":-
1,"drawable":-1},{"prop_id":1,"texture":-1,"drawable":-1},{"prop_id":2,"texture":-
1,"drawable":-1},{"prop_id":6,"texture":0,"drawable":2},{"prop_id":7,"texture":-
1,"drawable":-1}]');

-- Dumping structure for table sokac.owned_vehicles


CREATE TABLE IF NOT EXISTS `owned_vehicles` (
`owner` varchar(40) NOT NULL,
`plate` varchar(12) NOT NULL,
`vehicle` longtext DEFAULT NULL,
`type` varchar(20) NOT NULL DEFAULT 'car',
`job` varchar(20) NOT NULL DEFAULT 'civ',
`category` varchar(50) DEFAULT NULL,
`name` varchar(60) NOT NULL DEFAULT 'Unknown',
`fuel` int(11) NOT NULL DEFAULT 100,
`stored` tinyint(1) NOT NULL DEFAULT 0,
`nickname` varchar(40) NOT NULL DEFAULT 'Fahrzeug',
`vehiclename` varchar(255) DEFAULT NULL,
`carseller` int(11) DEFAULT 0,
`glovebox` longtext DEFAULT NULL,
`trunk` longtext DEFAULT NULL,
PRIMARY KEY (`plate`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci;

-- Dumping data for table sokac.owned_vehicles: ~75 rows (approximately)


INSERT INTO `owned_vehicles` (`owner`, `plate`, `vehicle`, `type`, `job`,
`category`, `name`, `fuel`, `stored`, `nickname`, `vehiclename`, `carseller`,
`glovebox`, `trunk`) VALUES
('8bfb6676e3d838eec3714b0136dccef848f4a335', '05FPO166', '{"modArchCover":-
1,"xenonColor":255,"modSpoilers":-1,"modGrille":-
1,"modSmokeEnabled":false,"modRightFender":-1,"pearlescentColor":2,"modHorns":-
1,"modHydrolic":-1,"modBrakes":2,"modXenon":false,"engineHealth":1000.0,"extras":
{"10":false,"12":true},"windowTint":1,"modVanityPlate":-1,"modEngineBlock":-
1,"plate":"05FPO166","modDoorSpeaker":-1,"modHood":-
1,"dirtLevel":11.1,"modSuspension":3,"modTurbo":1,"modAPlate":-
1,"plateIndex":0,"modUnk47":-1,"tyreSmokeColor":
[255,255,255],"tankHealth":999.4,"modTrunk":-1,"modOrnaments":-
1,"color2":112,"modWindows":-1,"neonColor":[0,245,255],"modStruts":-1,"modLivery":-
1,"model":1938131410,"modShifterLeavers":-1,"modBackWheels":-1,"modDashboard":-
1,"modFrame":-1,"modAerials":-1,"modRearBumper":-1,"modDial":-1,"modTank":-
1,"modFender":-1,"modPlateHolder":-
1,"modTransmission":2,"bodyHealth":996.0,"modTrimA":-1,"wheelColor":0,"modSeats":-
1,"modExhaust":-1,"color1":147,"modSteeringWheel":-1,"modTrimB":-1,"modSpeakers":-
1,"modAirFilter":-1,"modEngine":3,"modRoof":-1,"modFrontWheels":-
1,"fuelLevel":64.4,"neonEnabled":[1,1,1,1],"wheels":2,"modFrontBumper":-
1,"modSideSkirt":-1,"modArmor":4}', 'car', 'civ', NULL, 'Unknown', 100, 1,
'Fahrzeug', 'Renault Twingo', 0, '[]', NULL),
('a4422544e585cd6132fb5fdfb13f8c9b1461bd19', '21CCA443', '{"modArchCover":-
1,"xenonColor":255,"modSpoilers":-1,"modGrille":-
1,"modSmokeEnabled":false,"modRightFender":-1,"pearlescentColor":0,"modHorns":-
1,"modFrontBumper":-1,"modBrakes":-
1,"bodyHealth":996.0,"engineHealth":995.0,"extras":
[],"windowTint":0,"modVanityPlate":-1,"modEngineBlock":-
1,"plate":"21CCA443","modDoorSpeaker":-1,"modHood":-
1,"dirtLevel":0.0,"modSuspension":-1,"modTurbo":false,"modAPlate":-
1,"plateIndex":0,"modUnk47":-1,"tyreSmokeColor":
[255,255,255],"tankHealth":1000.0,"modTrunk":-1,"modOrnaments":-
1,"color2":21,"modWindows":-1,"neonColor":[0,0,0],"modTransmission":-1,"modFrame":-
1,"model":-2006731729,"modShifterLeavers":-1,"wheelColor":112,"modTrimB":-
1,"modFrontWheels":-1,"modAerials":-1,"fuelLevel":77.1,"modLivery":-
1,"modXenon":false,"modTrimA":-1,"modPlateHolder":-1,"modBackWheels":-
1,"modFender":-1,"modStruts":-1,"modHydrolic":-1,"modSeats":-1,"modExhaust":-
1,"color1":121,"modSteeringWheel":-1,"modTank":-1,"modSpeakers":-1,"modAirFilter":-
1,"modEngine":-1,"modRoof":-1,"modDashboard":-1,"wheels":3,"neonEnabled":
[false,false,false,false],"modDial":-1,"modRearBumper":-1,"modSideSkirt":-
1,"modArmor":-1}', 'car', 'civ', NULL, 'Unknown', 100, 1, 'Fahrzeug', 'Audi Q8', 0,
'[{"name":"bandage","count":1,"slot":6}]', NULL),
('5c0df8371401dcedd7dffcc7cdb9472c8b6b7779', '21RYN191',
'{"fuelLevel":63.6,"modDoorSpeaker":-1,"modFrame":-1,"modSpeakers":-1,"neonColor":
[255,0,255],"modSteeringWheel":-1,"modVanityPlate":-1,"modHorns":-1,"modRoof":-
1,"modHydrolic":-1,"modAirFilter":-1,"modRightFender":-
1,"engineHealth":995.5,"modTransmission":-1,"modLivery":-1,"modTrimB":-
1,"modSpoilers":-1,"color1":64,"modSideSkirt":-1,"modArchCover":-1,"modEngine":-
1,"plateIndex":1,"modEngineBlock":-1,"modExhaust":-1,"modTank":-1,"modUnk47":-
1,"pearlescentColor":67,"modAPlate":-1,"modFrontWheels":-1,"modDashboard":-
1,"modTrunk":-1,"modSmokeEnabled":false,"neonEnabled":
[false,false,false,false],"color2":0,"modFrontBumper":-
1,"wheelColor":156,"modSuspension":-1,"modSeats":-1,"modPlateHolder":-
1,"modFender":-1,"modTurbo":false,"tyreSmokeColor":[255,255,255],"windowTint":-
1,"dirtLevel":8.0,"plate":"21RYN191","model":-
1606986894,"bodyHealth":997.0,"modWindows":-
1,"xenonColor":255,"modShifterLeavers":-1,"extras":{"1":false},"modStruts":-
1,"modXenon":1,"modAerials":-1,"modDial":-1,"modArmor":-1,"modBackWheels":-
1,"modRearBumper":-1,"modGrille":-1,"wheels":0,"modBrakes":-
1,"tankHealth":999.7,"modOrnaments":-1,"modTrimA":-1,"modHood":-1}', 'car', 'civ',
NULL, 'Unknown', 100, 1, 'Fahrzeug', 'Audi RS7', 0, NULL, NULL),
('a4422544e585cd6132fb5fdfb13f8c9b1461bd19', '27FZO659',
'{"fuelLevel":61.7,"modDoorSpeaker":-1,"model":-127896429,"modSpeakers":-
1,"neonColor":[0,0,0],"modSteeringWheel":-1,"modVanityPlate":-1,"modHorns":-
1,"modRoof":-1,"modHydrolic":-1,"modAirFilter":-1,"modRightFender":-
1,"engineHealth":1000.0,"modTransmission":-1,"modLivery":-1,"modTrimB":-
1,"modSpoilers":-1,"color1":131,"modPlateHolder":-1,"modOrnaments":-
1,"modEngine":3,"plateIndex":0,"modEngineBlock":-1,"modExhaust":0,"modTank":-
1,"modUnk47":-1,"pearlescentColor":22,"dirtLevel":3.6,"modFrontWheels":-
1,"modDashboard":-1,"modTrunk":-
1,"modSmokeEnabled":false,"modTurbo":false,"color2":131,"modFrontBumper":-
1,"modShifterLeavers":-1,"modSuspension":-1,"modSeats":-1,"modSideSkirt":-
1,"modTrimA":-1,"modAPlate":-1,"modFrame":-1,"windowTint":-
1,"wheelColor":0,"plate":"27FZO659","neonEnabled":
[false,false,false,false],"modWindows":-1,"extras":
[],"xenonColor":255,"modArchCover":-1,"tankHealth":999.6,"modStruts":-
1,"modXenon":false,"modAerials":-1,"modDial":-1,"modArmor":-1,"modBackWheels":-
1,"modRearBumper":-1,"modGrille":-1,"bodyHealth":996.8,"tyreSmokeColor":
[255,255,255],"wheels":0,"modBrakes":-1,"modFender":-1,"modHood":-1}', 'car',
'civ', NULL, 'Unknown', 100, 1, 'Fahrzeug', 'Ferrari 488', 0, NULL, NULL),
('5c0df8371401dcedd7dffcc7cdb9472c8b6b7779', '61NFC337', '{"modHood":-
1,"modHorns":-1,"tyreSmokeColor":[255,255,255],"modUnk47":-1,"modAPlate":-
1,"modSuspension":-1,"modRearBumper":-1,"modStruts":-
1,"xenonColor":255,"modTrimB":-1,"modEngine":-
1,"bodyHealth":1000.0,"modEngineBlock":-1,"color1":43,"modPlateHolder":-
1,"modRoof":-1,"neonColor":[255,0,255],"wheels":0,"modVanityPlate":-
1,"modFrontWheels":-1,"modTrunk":-1,"modXenon":1,"modTrimA":-1,"modSeats":-
1,"modArmor":-1,"modArchCover":-1,"modTransmission":-
1,"model":1075154240,"modSpoilers":-1,"tankHealth":1000.0,"modFrame":-1,"extras":
{"1":true,"2":false,"10":false},"plate":"61NFC337","modTank":-
1,"modSmokeEnabled":1,"modRightFender":-1,"wheelColor":75,"modShifterLeavers":-
1,"modExhaust":-1,"modSideSkirt":-1,"modSteeringWheel":-1,"modHydrolic":-
1,"modOrnaments":-1,"modTurbo":false,"modDoorSpeaker":-1,"modAerials":-
1,"plateIndex":1,"modAirFilter":-1,"modLivery":-1,"modFrontBumper":-
1,"fuelLevel":64.9,"modDial":-1,"modSpeakers":-1,"modGrille":-1,"modWindows":-
1,"modBrakes":-1,"modBackWheels":-1,"pearlescentColor":74,"modFender":-
1,"windowTint":0,"modDashboard":-
1,"color2":140,"dirtLevel":10.2,"engineHealth":1000.0,"neonEnabled":
[false,false,false,false]}', 'car', 'civ', NULL, 'Unknown', 100, 1, 'Fahrzeug',
'Mercedes E400', 0, NULL, NULL),
('6c40aa092cc8d2a370e58e57db69bd9300ebbd1e', '67LNL631',
'{"color2":0,"modTransmission":-1,"modAirFilter":-1,"modFender":-1,"modDashboard":-
1,"xenonColor":255,"dirtLevel":4.1,"modRearBumper":-1,"modArchCover":-
1,"modSpeakers":-1,"modBackWheels":-1,"modTurbo":false,"modBrakes":-
1,"engineHealth":1000.0,"wheels":2,"plateIndex":0,"modSpoilers":-1,"modOrnaments":-
1,"modSuspension":-1,"modRoof":-1,"modFrame":-1,"modPlateHolder":-1,"modDial":-
1,"tyreSmokeColor":[255,255,255],"modStruts":-1,"modHorns":-1,"modUnk47":-
1,"modTrunk":-1,"modFrontBumper":-1,"tankHealth":1000.0,"modRightFender":-
1,"modEngineBlock":-1,"modTrimB":-1,"modSideSkirt":-1,"modAPlate":-1,"modWindows":-
1,"modHood":-1,"modArmor":-1,"modFrontWheels":-1,"modXenon":false,"modExhaust":-
1,"modEngine":-1,"modSeats":-1,"neonColor":[0,0,0],"neonEnabled":
[false,false,false,false],"modShifterLeavers":-1,"modSteeringWheel":-
1,"plate":"67LNL631","pearlescentColor":0,"modHydrolic":-
1,"wheelColor":0,"modGrille":-1,"modAerials":-
1,"model":1938131410,"modVanityPlate":-
1,"color1":154,"fuelLevel":65.0,"bodyHealth":1000.0,"modTrimA":-
1,"modSmokeEnabled":false,"modTank":-1,"extras":
{"10":true,"12":false},"modLivery":-1,"modDoorSpeaker":-1,"windowTint":-1}', 'car',
'civ', NULL, 'Unknown', 100, 1, 'Fahrzeug', 'Renault Twingo', 0, NULL, NULL),
('8a3f4af7421238a4d24e7c6d1ca2e3273c1bb786', '86BKJ286',
'{"modEngine":3,"modRearBumper":-1,"extras":
{"10":false,"12":true},"xenonColor":255,"fuelLevel":65.0,"neonColor":
[255,0,255],"modHydrolic":-1,"modOrnaments":-1,"modTrimA":-1,"modGrille":-
1,"modShifterLeavers":-1,"modRoof":-
1,"pearlescentColor":7,"modSuspension":3,"color1":2,"modSideSkirt":-
1,"modExhaust":-1,"modBackWheels":-1,"modAerials":-
1,"bodyHealth":1000.0,"modSeats":-1,"modFender":-
1,"modBrakes":2,"modXenon":false,"modSpeakers":-1,"modHood":-1,"modAPlate":-
1,"modHorns":-1,"dirtLevel":4.6,"modFrame":-
1,"modSmokeEnabled":false,"modArchCover":-1,"plate":"86BKJ286","modDashboard":-
1,"modDoorSpeaker":-1,"wheelColor":156,"modStruts":-
1,"windowTint":1,"tankHealth":1000.0,"modTrunk":-1,"modPlateHolder":-1,"modTrimB":-
1,"modRightFender":-1,"modFrontBumper":-1,"modSpoilers":-1,"modDial":-
1,"plateIndex":0,"modUnk47":-1,"modTank":-1,"modAirFilter":-1,"modWindows":-
1,"modTransmission":2,"modArmor":-
1,"model":970598228,"engineHealth":1000.0,"modSteeringWheel":-1,"neonEnabled":
[false,false,false,false],"modLivery":-1,"modVanityPlate":-
1,"wheels":0,"modEngineBlock":-1,"color2":2,"modTurbo":1,"tyreSmokeColor":
[255,255,255],"modFrontWheels":-1}', 'car', 'civ', NULL, 'Unknown', 100, 1,
'Fahrzeug', NULL, 0, NULL, NULL),
('0ca7c53a26897624a6e9618c99546b6727bf5c65', '88LII974',
'{"fuelLevel":64.4,"modDoorSpeaker":-1,"modFrame":-1,"modSpeakers":-1,"neonColor":
[255,0,255],"modSteeringWheel":-1,"modVanityPlate":-1,"modHorns":-1,"modRoof":-
1,"modHydrolic":-1,"modAirFilter":-1,"modRightFender":-
1,"engineHealth":1000.0,"modTransmission":-1,"modLivery":-1,"modTrimB":-
1,"modSpoilers":-1,"color1":154,"modPlateHolder":-1,"modOrnaments":-1,"modEngine":-
1,"tyreSmokeColor":[255,255,255],"modEngineBlock":-1,"modExhaust":-1,"modTank":-
1,"modUnk47":-1,"pearlescentColor":0,"modAPlate":-1,"modFrontWheels":-
1,"modDashboard":-1,"modTrunk":-1,"modSmokeEnabled":false,"neonEnabled":
[false,false,false,false],"color2":0,"modFrontBumper":-
1,"modXenon":false,"modSuspension":-1,"modSeats":-1,"modBrakes":-1,"modTrimA":-
1,"extras":{"12":true,"10":false},"dirtLevel":7.2,"windowTint":-
1,"model":1938131410,"plate":"88LII974","plateIndex":0,"modTurbo":false,"modWindows
":-1,"xenonColor":255,"modArchCover":-1,"modDial":-1,"modStruts":-
1,"modShifterLeavers":-1,"modAerials":-1,"bodyHealth":1000.0,"modArmor":-
1,"modBackWheels":-1,"modRearBumper":-1,"modGrille":-1,"modFender":-
1,"wheelColor":0,"wheels":2,"modSideSkirt":-1,"tankHealth":1000.0,"modHood":-1}',
'car', 'civ', NULL, 'Unknown', 100, 1, 'Fahrzeug', 'Renault Twingo', 0, NULL,
'[{"name":"garbage","count":4,"metadata":{"description":"An empty chips
bag.","image":"trash_chips","weight":5},"slot":1},
{"name":"garbage","count":16,"metadata":{"description":"An empty ciggarette
carton.","image":"trash_fags","weight":10},"slot":4},
{"name":"garbage","count":11,"metadata":{"description":"A crumpled up piece of
paper.","image":"trash_paper","weight":5},"slot":5},
{"name":"garbage","count":4,"metadata":{"description":"An empty soda
can.","image":"trash_can","weight":20},"slot":6},
{"name":"garbage","count":5,"metadata":{"description":"A slightly used pair of
panties.","image":"panties","weight":20},"slot":7},
{"name":"garbage","count":1,"metadata":
{"weight":20,"image":"trash_coffee","description":"An empty coffee
cup."},"slot":8},{"name":"garbage","count":6,"metadata":{"description":"A discarded
burger shot carton.","image":"trash_burgershot","weight":50},"slot":9},
{"name":"garbage","count":3,"metadata":
{"weight":200,"image":"trash_newspaper","description":"An old rolled up
newspaper."},"slot":10}]'),
('93.143.160.82', 'BCG3419', '{"modTrimB":-1,"modRoof":-1,"modTank":-
1,"modBackWheels":-1,"modSteeringWheel":-1,"modAPlate":-
1,"engineHealth":1000.0,"modSideSkirt":-1,"modPlateHolder":-
1,"tankHealth":1000.0,"modFrame":-1,"modBrakes":-1,"color2":32,"modDoorSpeaker":-
1,"pearlescentColor":122,"modWindows":-1,"modOrnaments":-1,"windowTint":-
1,"modArmor":-1,"neonEnabled":[false,false,false,false],"modShifterLeavers":-
1,"modVanityPlate":-1,"modDial":-1,"modArchCover":-1,"modTurbo":false,"extras":
{"1":false,"3":true},"modFrontBumper":-1,"modRightFender":-1,"modTransmission":-
1,"modHydrolic":-1,"modLivery":-1,"modUnk47":-
1,"model":1943500623,"dirtLevel":6.1,"modSpeakers":-1,"modEngineBlock":-
1,"modDashboard":-1,"plateIndex":3,"modAirFilter":-1,"modSpoilers":-
1,"modAerials":-1,"modFender":-1,"modExhaust":-1,"modGrille":-1,"modRearBumper":-
1,"xenonColor":255,"neonColor":[0,0,0],"modHorns":-
1,"bodyHealth":1000.0,"modStruts":-1,"modSuspension":-
1,"modXenon":false,"wheels":7,"tyreSmokeColor":[255,255,255],"modTrunk":-
1,"modSeats":-1,"modTrimA":-1,"modEngine":-
1,"fuelLevel":64.9,"modSmokeEnabled":false,"modFrontWheels":-
1,"wheelColor":0,"modHood":-1,"plate":"BCG3419","color1":147}', 'car', 'civ', NULL,
'Unknown', 100, 1, 'Fahrzeug', 'PwDwycalt', 0, NULL, NULL),
('89ad3a4f1f19fa3b8adf17b11b789de530a1d2d3', 'DGW5392', '{"modWindows":-
1,"modSeats":-1,"modTrimB":-1,"modSmokeEnabled":false,"modSpoilers":-
1,"modTurbo":false,"modXenon":false,"modRightFender":-1,"modFrontBumper":-
1,"dirtLevel":8.0,"modTransmission":-1,"plateIndex":4,"modArchCover":-
1,"color2":0,"plate":"DGW5392","fuelLevel":60.0,"model":-
1297012053,"modSuspension":-1,"modAerials":-1,"modVanityPlate":-1,"neonColor":
[255,0,255],"modHood":-1,"modExhaust":-1,"modStruts":-1,"modLivery":-
1,"modSteeringWheel":-1,"tankHealth":1000.0,"modArmor":-1,"modAPlate":-
1,"neonEnabled":[false,false,false,false],"bodyHealth":1000.0,"modUnk47":-
1,"modHorns":-1,"modRoof":-1,"modFrontWheels":-1,"modTank":-1,"modAirFilter":-
1,"modSideSkirt":-1,"modEngine":-1,"modFender":-1,"wheelColor":0,"modBackWheels":-
1,"modDial":-1,"color1":0,"modOrnaments":-1,"modEngineBlock":-1,"modFrame":-
1,"modDashboard":-1,"modBrakes":-1,"tyreSmokeColor":[255,255,255],"modGrille":-
1,"modShifterLeavers":-1,"modTrunk":-1,"wheels":7,"modDoorSpeaker":-1,"modTrimA":-
1,"engineHealth":1000.0,"pearlescentColor":0,"modHydrolic":-1,"modSpeakers":-
1,"extras":[],"xenonColor":255,"modPlateHolder":-1,"windowTint":-
1,"modRearBumper":-1}', 'car', 'civ', NULL, 'Unknown', 100, 1, 'Fahrzeug',
'rs3lms', 0, NULL, NULL),
('896386080e8cdf219abf4ee615a73517aa8470cc', 'DID6285', '{"modWindows":-
1,"modSeats":-1,"modTrimB":-1,"modSmokeEnabled":false,"modSpoilers":-
1,"modHydrolic":-1,"modOrnaments":-1,"modRightFender":-1,"modFrontBumper":-
1,"dirtLevel":5.0,"modTransmission":-1,"plateIndex":4,"modArchCover":-
1,"color2":0,"plate":"DID6285","fuelLevel":60.0,"model":-
1297012053,"modSuspension":-1,"modAerials":-1,"wheelColor":0,"neonColor":
[255,0,255],"modHood":-1,"modExhaust":-1,"modStruts":-1,"modRearBumper":-
1,"modSteeringWheel":-1,"modSpeakers":-1,"modArmor":-1,"modAPlate":-
1,"neonEnabled":[false,false,false,false],"bodyHealth":1000.0,"modUnk47":-
1,"modHorns":-1,"modRoof":-1,"pearlescentColor":0,"modDial":-
1,"xenonColor":255,"modSideSkirt":-1,"engineHealth":1000.0,"modFender":-
1,"modGrille":-1,"modBackWheels":-1,"modTrunk":-1,"modXenon":false,"modEngine":-
1,"modFrame":-1,"modBrakes":-1,"modDashboard":-1,"tyreSmokeColor":
[255,255,255],"modPlateHolder":-1,"modTank":-1,"modShifterLeavers":-
1,"color1":0,"wheels":7,"modVanityPlate":-1,"modTrimA":-1,"modDoorSpeaker":-
1,"modEngineBlock":-1,"modFrontWheels":-1,"modAirFilter":-1,"extras":
[],"modTurbo":false,"modLivery":-1,"windowTint":-1,"tankHealth":1000.0}', 'car',
'civ', NULL, 'Unknown', 100, 1, 'Fahrzeug', 'rs3lms', 0, NULL, NULL),
('9df7ecd455c8ec9885a7b110a90e161744dabdbd', 'DKH4012', '{"modDashboard":-
1,"modBrakes":-1,"model":-1840349445,"dirtLevel":7.5,"modFrame":-1,"modSeats":-
1,"modHood":-1,"wheelColor":156,"modDoorSpeaker":-1,"modSteeringWheel":-
1,"tankHealth":972.2,"tyreSmokeColor":[255,255,255],"modSpoilers":-1,"modRoof":-
1,"modEngine":-1,"wheels":7,"modSmokeEnabled":false,"modTrimB":-
1,"plate":"DKH4012","modAPlate":-1,"modWindows":-
1,"plateIndex":0,"bodyHealth":722.0,"modLivery":-1,"extras":[],"modFrontWheels":-
1,"modPlateHolder":-1,"modXenon":false,"modHorns":-1,"modShifterLeavers":-
1,"neonColor":[0,0,0],"modTrimA":-1,"modGrille":-1,"modFrontBumper":-
1,"modRightFender":-1,"neonEnabled":
[false,false,false,false],"xenonColor":255,"fuelLevel":62.5,"color2":11,"modAirFilt
er":-1,"modBackWheels":-1,"modTurbo":false,"modStruts":-1,"modSpeakers":-
1,"modSideSkirt":-1,"modHydrolic":-1,"modEngineBlock":-1,"modSuspension":-
1,"modTransmission":-1,"windowTint":-1,"modVanityPlate":-1,"modUnk47":-
1,"modArchCover":-1,"modArmor":-1,"modRearBumper":-1,"modFender":-
1,"color1":38,"modAerials":-1,"modOrnaments":-1,"modExhaust":-1,"modTank":-
1,"engineHealth":1000.0,"modTrunk":-1,"modDial":-1,"pearlescentColor":38}', 'car',
'civ', NULL, 'Unknown', 100, 1, 'Buggati Vission', 'BugattiVgt', 0, NULL, NULL),
('109.245.207.153', 'EGZ9219', '{"extras":{"1":false,"3":true},"model":-
1453762943,"wheelColor":0,"modFender":-1,"modXenon":false,"modBrakes":-
1,"dirtLevel":3.0,"modArmor":-1,"modTrunk":-1,"plate":"EGZ9219","modTransmission":-
1,"modTank":-1,"modDashboard":-1,"modHood":-
1,"modSmokeEnabled":false,"color2":32,"modShifterLeavers":-1,"modTrimA":-
1,"modBackWheels":-1,"modRoof":-1,"modPlateHolder":-1,"modAerials":-
1,"modTurbo":false,"modHydrolic":-1,"modEngineBlock":-1,"modGrille":-
1,"pearlescentColor":122,"modAPlate":-1,"modTrimB":-1,"modFrontBumper":-
1,"xenonColor":255,"modFrame":-1,"modExhaust":-1,"color1":147,"modLivery":-
1,"modRightFender":-1,"modDoorSpeaker":-1,"modEngine":-
1,"fuelLevel":80.0,"modSideSkirt":-1,"modFrontWheels":-1,"neonColor":
[255,0,255],"modStruts":-1,"modSuspension":-1,"modVanityPlate":-1,"neonEnabled":
[false,false,false,false],"modArchCover":-1,"wheels":3,"windowTint":-
1,"modRearBumper":-1,"modWindows":-1,"plateIndex":3,"modSpeakers":-
1,"tankHealth":1000.0,"modHorns":-1,"tyreSmokeColor":[255,255,255],"modDial":-
1,"modSpoilers":-1,"modAirFilter":-1,"modSeats":-1,"modOrnaments":-
1,"bodyHealth":1000.0,"modSteeringWheel":-1,"engineHealth":1000.0,"modUnk47":-1}',
'car', 'civ', NULL, 'Unknown', 100, 1, 'Fahrzeug', 'PwDGWagon', 0, NULL, NULL),
('109.245.207.153', 'EHF9727', '{"neonEnabled":
[false,false,false,false],"windowTint":-1,"modTransmission":-1,"modStruts":-
1,"fuelLevel":80.0,"modFrontBumper":-1,"neonColor":[255,0,255],"modDashboard":-
1,"modSideSkirt":-1,"modVanityPlate":-1,"modFrontWheels":-1,"modGrille":-
1,"modDoorSpeaker":-1,"modRoof":-1,"tankHealth":1000.0,"modUnk47":-
1,"modEngineBlock":-1,"modTrimA":-1,"modWindows":-1,"color2":7,"modTrimB":-
1,"xenonColor":255,"modTrunk":-1,"modSpeakers":-1,"modArchCover":-
1,"modPlateHolder":-1,"extras":{"1":true,"3":false},"modBackWheels":-
1,"wheelColor":0,"tyreSmokeColor":[255,255,255],"modSteeringWheel":-1,"modAPlate":-
1,"modExhaust":-1,"dirtLevel":7.0,"modSmokeEnabled":false,"modSpoilers":-
1,"modHydrolic":-1,"modTurbo":false,"modOrnaments":-1,"modRightFender":-
1,"plateIndex":0,"plate":"EHF9727","modFrame":-1,"modHood":-1,"model":-
1453762943,"pearlescentColor":0,"modAerials":-1,"color1":31,"modRearBumper":-
1,"engineHealth":1000.0,"modBrakes":-1,"modShifterLeavers":-1,"modLivery":-
1,"modEngine":-1,"modDial":-1,"modAirFilter":-1,"bodyHealth":1000.0,"modSeats":-
1,"modArmor":-1,"modXenon":false,"modHorns":-1,"modFender":-1,"modSuspension":-
1,"wheels":3,"modTank":-1}', 'car', 'civ', NULL, 'Unknown', 100, 1, 'Fahrzeug',
'PwDGWagon', 0, NULL, NULL),
('109.245.207.153', 'EUN4817', '{"modHood":-1,"modAirFilter":-1,"modUnk47":-
1,"modWindows":-1,"modBackWheels":-1,"modExhaust":-
1,"plate":"EUN4817","modArchCover":-1,"modFrontBumper":-1,"modTrimA":-
1,"modLivery":-1,"modXenon":false,"modHorns":-1,"color2":70,"modDoorSpeaker":-
1,"neonColor":[255,0,255],"modSmokeEnabled":false,"modDashboard":-1,"modSpoilers":-
1,"model":-1490892200,"modSpeakers":-1,"modAPlate":-
1,"pearlescentColor":73,"modBrakes":-1,"tyreSmokeColor":[255,255,255],"modTrimB":-
1,"modRightFender":-1,"modFrontWheels":-1,"modHydrolic":-1,"modSeats":-
1,"modTransmission":-1,"wheelColor":156,"modGrille":-
1,"dirtLevel":4.0,"modVanityPlate":-1,"modFrame":-1,"windowTint":-1,"modFender":-
1,"modSideSkirt":-1,"modOrnaments":-1,"modTank":-1,"modEngineBlock":-1,"extras":
{"1":true},"tankHealth":1000.0,"engineHealth":1000.0,"modTrunk":-
1,"fuelLevel":60.0,"modPlateHolder":-1,"neonEnabled":
[false,false,false,false],"modEngine":-1,"modDial":-1,"modArmor":-
1,"modSteeringWheel":-1,"modAerials":-1,"modSuspension":-
1,"bodyHealth":1000.0,"modRoof":-1,"modRearBumper":-
1,"plateIndex":0,"modTurbo":false,"color1":73,"wheels":7,"modShifterLeavers":-
1,"xenonColor":255,"modStruts":-1}', 'car', 'civ', NULL, 'Unknown', 100, 1,
'Fahrzeug', 'rmodskyline', 0, NULL, NULL),
('109.245.207.153', 'FAZ4553', '{"modHood":-1,"modAirFilter":-1,"modUnk47":-
1,"modWindows":-1,"modBackWheels":-1,"modExhaust":-
1,"plate":"FAZ4553","modArchCover":-1,"modFrontBumper":-1,"modTrimA":-
1,"modLivery":-1,"modXenon":false,"modHorns":-1,"color2":2,"modDoorSpeaker":-
1,"neonColor":[255,0,255],"modSmokeEnabled":false,"modDashboard":-1,"modSpoilers":-
1,"model":92101899,"modSpeakers":-1,"modAPlate":-
1,"pearlescentColor":4,"modBrakes":-1,"tyreSmokeColor":[255,255,255],"modTrimB":-
1,"modRightFender":-1,"modFrontWheels":-1,"modHydrolic":-1,"modSeats":-
1,"modTransmission":-1,"wheelColor":156,"modGrille":-
1,"dirtLevel":7.0,"modVanityPlate":-1,"modFrame":-1,"windowTint":-1,"modFender":-
1,"modSideSkirt":-1,"modOrnaments":-1,"modTank":-1,"modEngineBlock":-1,"extras":
{"2":true,"1":false},"tankHealth":1000.0,"engineHealth":1000.0,"modTrunk":-
1,"fuelLevel":80.0,"modPlateHolder":-1,"neonEnabled":
[false,false,false,false],"modEngine":-1,"modDial":-1,"modArmor":-
1,"modSteeringWheel":-1,"modAerials":-1,"modSuspension":-
1,"bodyHealth":1000.0,"modRoof":-1,"modRearBumper":-
1,"plateIndex":3,"modTurbo":false,"color1":147,"wheels":3,"modShifterLeavers":-
1,"xenonColor":255,"modStruts":-1}', 'car', 'civ', NULL, 'Unknown', 100, 1,
'Fahrzeug', 'x6mf16', 0, NULL, NULL),
('9df7ecd455c8ec9885a7b110a90e161744dabdbd', 'FFY1809', '{"modDashboard":-
1,"modBrakes":-1,"model":1943500623,"dirtLevel":8.8,"modFrame":-1,"modSeats":-
1,"modHood":-1,"wheelColor":0,"modDoorSpeaker":-1,"modSteeringWheel":-
1,"tankHealth":920.9,"tyreSmokeColor":[255,255,255],"modSpoilers":-1,"modRoof":-
1,"modEngine":-1,"wheels":7,"modSmokeEnabled":false,"modTrimB":-
1,"plate":"FFY1809","modAPlate":-1,"modWindows":-
1,"plateIndex":5,"bodyHealth":603.8,"modLivery":-1,"extras":
{"1":false,"3":true},"modFrontWheels":-1,"modPlateHolder":-
1,"modXenon":false,"modHorns":-1,"modShifterLeavers":-1,"neonColor":
[0,0,0],"modTrimA":-1,"modGrille":-1,"modFrontBumper":-1,"modRightFender":-
1,"neonEnabled":
[false,false,false,false],"xenonColor":255,"fuelLevel":60.9,"color2":32,"modAirFilt
er":-1,"modBackWheels":-1,"modTurbo":false,"modStruts":-1,"modSpeakers":-
1,"modSideSkirt":-1,"modHydrolic":-1,"modEngineBlock":-1,"modSuspension":-
1,"modTransmission":-1,"windowTint":-1,"modVanityPlate":-1,"modUnk47":-
1,"modArchCover":-1,"modArmor":-1,"modRearBumper":-1,"modFender":-
1,"color1":147,"modAerials":-1,"modOrnaments":-1,"modExhaust":-1,"modTank":-
1,"engineHealth":866.3,"modTrunk":-1,"modDial":-1,"pearlescentColor":122}', 'car',
'civ', NULL, 'Unknown', 100, 1, 'BUGGATI RUZAN', 'PwDwycalt', 0, NULL, NULL),
('109.245.207.153', 'FUK0856', '{"extras":
[],"model":2084431360,"wheelColor":27,"modFender":-1,"modXenon":false,"modBrakes":-
1,"dirtLevel":3.0,"modOrnaments":-1,"modTrunk":-
1,"plate":"FUK0856","modTransmission":-1,"modArchCover":-1,"modDashboard":-
1,"modRightFender":-1,"modSmokeEnabled":false,"modDoorSpeaker":-
1,"modShifterLeavers":-1,"modTrimA":-1,"modBackWheels":-1,"modRoof":-
1,"modPlateHolder":-1,"modAerials":-1,"modTurbo":false,"modHydrolic":-
1,"modEngineBlock":-1,"modGrille":-1,"pearlescentColor":1,"modAPlate":-
1,"modTrimB":-1,"modFrontBumper":-1,"xenonColor":255,"modFrame":-1,"modExhaust":-
1,"modUnk47":-1,"modVanityPlate":-1,"modHorns":-1,"color1":0,"modEngine":-
1,"fuelLevel":65.0,"modLivery":-1,"neonEnabled":
[false,false,false,false],"neonColor":[255,0,255],"modStruts":-
1,"engineHealth":1000.0,"modHood":-1,"modSuspension":-1,"modTank":-
1,"color2":0,"windowTint":-1,"tankHealth":1000.0,"modWindows":-1,"modFrontWheels":-
1,"modSpeakers":-1,"modSteeringWheel":-1,"modRearBumper":-1,"tyreSmokeColor":
[255,255,255],"modDial":-1,"modSpoilers":-1,"modSideSkirt":-1,"modSeats":-
1,"modAirFilter":-1,"bodyHealth":1000.0,"plateIndex":2,"modArmor":-1,"wheels":7}',
'car', 'civ', NULL, 'Unknown', 100, 1, 'Fahrzeug', 'supersport', 0, NULL, NULL),
('109.245.207.153', 'FVN4724', '{"modHood":-1,"modAirFilter":-1,"modUnk47":-
1,"modWindows":-1,"modBackWheels":-1,"modExhaust":-
1,"plate":"FVN4724","modArchCover":-1,"modFrontBumper":-1,"modTrimA":-
1,"modLivery":-1,"modXenon":false,"modHorns":-1,"color2":11,"modDoorSpeaker":-
1,"neonColor":[255,0,255],"modSmokeEnabled":false,"modDashboard":-1,"modSpoilers":-
1,"model":-2068151042,"modSpeakers":-1,"modAPlate":-
1,"pearlescentColor":38,"modBrakes":-1,"tyreSmokeColor":[255,255,255],"modTrimB":-
1,"modRightFender":-1,"modFrontWheels":-1,"modHydrolic":-1,"modSeats":-
1,"modTransmission":-1,"wheelColor":156,"modGrille":-
1,"dirtLevel":5.0,"modVanityPlate":-1,"modFrame":-1,"windowTint":-1,"modFender":-
1,"modSideSkirt":-1,"modOrnaments":-1,"modTank":-1,"modEngineBlock":-1,"extras":
[],"tankHealth":1000.0,"engineHealth":1000.0,"modTrunk":-
1,"fuelLevel":65.0,"modPlateHolder":-1,"neonEnabled":
[false,false,false,false],"modEngine":-1,"modDial":-1,"modArmor":-
1,"modSteeringWheel":-1,"modAerials":-1,"modSuspension":-
1,"bodyHealth":1000.0,"modRoof":-1,"modRearBumper":-
1,"plateIndex":0,"modTurbo":false,"color1":38,"wheels":7,"modShifterLeavers":-
1,"xenonColor":255,"modStruts":-1}', 'car', 'civ', NULL, 'Unknown', 100, 1,
'Fahrzeug', 'bug300ss', 0, NULL, NULL),
('188.246.56.196', 'HAL5928', '{"modHorns":-1,"modSuspension":-1,"modHood":-
1,"modSmokeEnabled":false,"xenonColor":255,"modTrimB":-1,"modSteeringWheel":-
1,"color2":1,"extras":{"1":true},"modAerials":-1,"modDoorSpeaker":-1,"modAPlate":-
1,"modTrunk":-1,"modExhaust":-1,"modBackWheels":-1,"model":-
1370111350,"modSpeakers":-1,"modHydrolic":-
1,"wheelColor":6,"plateIndex":0,"windowTint":-1,"color1":27,"modArmor":-
1,"modEngineBlock":-1,"modShifterLeavers":-1,"modBrakes":-
1,"bodyHealth":1000.0,"modXenon":false,"dirtLevel":5.0,"neonColor":
[255,0,255],"modTrimA":-1,"modDashboard":-1,"modRearBumper":-1,"modSeats":-
1,"modTransmission":-1,"fuelLevel":65.0,"modFrontWheels":-1,"modEngine":-
1,"modUnk47":-1,"plate":"HAL5928","modOrnaments":-1,"tyreSmokeColor":
[255,255,255],"neonEnabled":[false,false,false,false],"modWindows":-
1,"modTurbo":false,"modLivery":-1,"pearlescentColor":36,"modGrille":-
1,"modStruts":-1,"modRightFender":-1,"modTank":-1,"modFender":-1,"modRoof":-
1,"modSideSkirt":-1,"modArchCover":-1,"modPlateHolder":-
1,"wheels":0,"modVanityPlate":-1,"tankHealth":1000.0,"modFrame":-1,"modAirFilter":-
1,"engineHealth":1000.0,"modSpoilers":-1,"modDial":-1,"modFrontBumper":-1}', 'car',
'civ', NULL, 'Unknown', 100, 1, 'Fahrzeug', '720S', 0, NULL, NULL),
('109.245.207.153', 'HTY6068', '{"modHood":-1,"modAirFilter":-1,"modUnk47":-
1,"modWindows":-1,"modBackWheels":-1,"modExhaust":-
1,"plate":"HTY6068","modArchCover":-1,"modFrontBumper":-1,"modTrimA":-
1,"modLivery":-1,"modXenon":false,"modHorns":-1,"color2":118,"modDoorSpeaker":-
1,"neonColor":[255,0,255],"modSmokeEnabled":false,"modDashboard":-1,"modSpoilers":-
1,"model":-440768424,"modSpeakers":-1,"modAPlate":-
1,"pearlescentColor":38,"modBrakes":-1,"tyreSmokeColor":[255,255,255],"modTrimB":-
1,"modRightFender":-1,"modFrontWheels":-1,"modHydrolic":-1,"modSeats":-
1,"modTransmission":-1,"wheelColor":156,"modGrille":-
1,"dirtLevel":7.0,"modVanityPlate":-1,"modFrame":-1,"windowTint":-1,"modFender":-
1,"modSideSkirt":-1,"modOrnaments":-1,"modTank":-1,"modEngineBlock":-1,"extras":
[],"tankHealth":1000.0,"engineHealth":1000.0,"modTrunk":-
1,"fuelLevel":10.0,"modPlateHolder":-1,"neonEnabled":
[false,false,false,false],"modEngine":-1,"modDial":-1,"modArmor":-
1,"modSteeringWheel":-1,"modAerials":-1,"modSuspension":-
1,"bodyHealth":1000.0,"modRoof":-1,"modRearBumper":-
1,"plateIndex":0,"modTurbo":false,"color1":33,"wheels":4,"modShifterLeavers":-
1,"xenonColor":255,"modStruts":-1}', 'car', 'civ', NULL, 'Unknown', 100, 1,
'Fahrzeug', 'blazer4', 0, NULL, NULL),
('109.245.207.153', 'HVR9945', '{"extras":[],"model":-
1796423400,"wheelColor":156,"modFender":-1,"modXenon":false,"modBrakes":-
1,"dirtLevel":3.0,"modOrnaments":-1,"modTrunk":-
1,"plate":"HVR9945","modTransmission":-1,"modArchCover":-1,"modDashboard":-
1,"modRightFender":-1,"modSmokeEnabled":false,"modDoorSpeaker":-
1,"modShifterLeavers":-1,"modTrimA":-1,"modBackWheels":-1,"modRoof":-
1,"modPlateHolder":-1,"modAerials":-1,"modTurbo":false,"modHydrolic":-
1,"modEngineBlock":-1,"modGrille":-1,"pearlescentColor":0,"modAPlate":-
1,"modTrimB":-1,"modFrontBumper":-1,"xenonColor":255,"modFrame":-1,"modExhaust":-
1,"modUnk47":-1,"modVanityPlate":-1,"modHorns":-1,"color1":89,"modEngine":-
1,"fuelLevel":65.0,"modLivery":-1,"neonEnabled":
[false,false,false,false],"neonColor":[255,0,255],"modStruts":-
1,"engineHealth":1000.0,"modHood":-1,"modSuspension":-1,"modTank":-
1,"color2":89,"windowTint":-1,"tankHealth":1000.0,"modWindows":-
1,"modFrontWheels":-1,"modSpeakers":-1,"modSteeringWheel":-1,"modRearBumper":-
1,"tyreSmokeColor":[255,255,255],"modDial":-1,"modSpoilers":-1,"modSideSkirt":-
1,"modSeats":-1,"modAirFilter":-1,"bodyHealth":1000.0,"plateIndex":0,"modArmor":-
1,"wheels":7}', 'car', 'civ', NULL, 'Unknown', 100, 1, 'Fahrzeug', 'lp720', 0,
NULL, NULL),
('188.246.56.196', 'IAF5188', '{"modSuspension":-1,"modAirFilter":-
1,"modBrakes":-1,"pearlescentColor":3,"modHood":-1,"dirtLevel":5.0,"modFrame":-
1,"modRightFender":-1,"modSideSkirt":-1,"wheels":3,"modTank":-1,"modGrille":-
1,"modPlateHolder":-1,"plate":"IAF5188","modRearBumper":-1,"modVanityPlate":-
1,"wheelColor":0,"modTransmission":-1,"modFrontWheels":-1,"modLivery":-
1,"modTurbo":false,"modTrunk":-1,"tankHealth":1000.0,"model":-
736224571,"modSpoilers":-1,"neonEnabled":[false,false,false,false],"modAerials":-
1,"modStruts":-1,"fuelLevel":80.0,"modXenon":false,"modRoof":-1,"modDashboard":-
1,"modArchCover":-1,"windowTint":-1,"modHydrolic":-1,"modExhaust":-
1,"modShifterLeavers":-1,"engineHealth":1000.0,"extras":
{"2":true,"1":false},"modTrimB":-1,"color2":1,"modSteeringWheel":-
1,"modOrnaments":-1,"modTrimA":-1,"modUnk47":-1,"color1":99,"modEngineBlock":-
1,"modBackWheels":-1,"modArmor":-1,"modFrontBumper":-1,"tyreSmokeColor":
[255,255,255],"modSpeakers":-1,"modAPlate":-1,"xenonColor":255,"modEngine":-
1,"modFender":-1,"modSeats":-1,"modDial":-1,"modDoorSpeaker":-
1,"bodyHealth":1000.0,"modSmokeEnabled":false,"neonColor":
[255,0,255],"modWindows":-1,"plateIndex":0,"modHorns":-1}', 'car', 'civ', NULL,
'Unknown', 100, 1, 'Fahrzeug', 'gle63s', 0, NULL, NULL),
('109.175.54.77', 'ITB3437', '{"modHydrolic":-1,"modHorns":-1,"modBrakes":-
1,"pearlescentColor":132,"modHood":-1,"dirtLevel":8.0,"modFrame":-
1,"modFrontBumper":-1,"modSideSkirt":-1,"wheels":7,"modTank":-1,"modGrille":-
1,"engineHealth":1000.0,"color1":11,"modRearBumper":-1,"modVanityPlate":-
1,"wheelColor":120,"modTransmission":-1,"modFrontWheels":-1,"modLivery":-
1,"modTurbo":false,"modTrunk":-1,"tankHealth":1000.0,"model":-
1259375426,"modSpoilers":-1,"neonEnabled":[false,false,false,false],"modAerials":-
1,"modStruts":-1,"fuelLevel":80.0,"modXenon":false,"modRoof":-1,"modDashboard":-
1,"modArchCover":-1,"windowTint":-1,"modSeats":-1,"modWindows":-
1,"modShifterLeavers":-1,"modSteeringWheel":-1,"modOrnaments":-1,"modTrimB":-
1,"color2":42,"modFender":-1,"modAirFilter":-1,"modTrimA":-1,"modUnk47":-
1,"modSuspension":-1,"modEngineBlock":-1,"modBackWheels":-1,"modArmor":-
1,"neonColor":[255,0,255],"tyreSmokeColor":[255,255,255],"modEngine":-
1,"modSpeakers":-1,"modDoorSpeaker":-1,"modRightFender":-1,"modAPlate":-
1,"xenonColor":255,"modDial":-1,"extras":
{"1":true},"bodyHealth":1000.0,"modSmokeEnabled":false,"plate":"ITB3437","modPlateH
older":-1,"plateIndex":0,"modExhaust":-1}', 'car', 'civ', NULL, 'Unknown', 100, 1,
'Sultan', 'rmodbacalar', 0, NULL, NULL),
('109.245.207.153', 'JJD2349', '{"modHood":-1,"modAirFilter":-1,"modUnk47":-
1,"modWindows":-1,"modBackWheels":-1,"modExhaust":-
1,"plate":"JJD2349","modArchCover":-1,"modFrontBumper":-1,"modTrimA":-
1,"modLivery":-1,"modXenon":false,"modHorns":-1,"color2":120,"modDoorSpeaker":-
1,"neonColor":[255,0,255],"modSmokeEnabled":false,"modDashboard":-1,"modSpoilers":-
1,"model":1975081724,"modSpeakers":-1,"modAPlate":-
1,"pearlescentColor":61,"modBrakes":-1,"tyreSmokeColor":[255,255,255],"modTrimB":-
1,"modRightFender":-1,"modFrontWheels":-1,"modHydrolic":-1,"modSeats":-
1,"modTransmission":-1,"wheelColor":156,"modGrille":-
1,"dirtLevel":5.0,"modVanityPlate":-1,"modFrame":-1,"windowTint":-1,"modFender":-
1,"modSideSkirt":-1,"modOrnaments":-1,"modTank":-1,"modEngineBlock":-1,"extras":
{"1":true},"tankHealth":1000.0,"engineHealth":1000.0,"modTrunk":-
1,"fuelLevel":65.0,"modPlateHolder":-1,"neonEnabled":
[false,false,false,false],"modEngine":-1,"modDial":-1,"modArmor":-
1,"modSteeringWheel":-1,"modAerials":-1,"modSuspension":-
1,"bodyHealth":1000.0,"modRoof":-1,"modRearBumper":-
1,"plateIndex":0,"modTurbo":false,"color1":61,"wheels":7,"modShifterLeavers":-
1,"xenonColor":255,"modStruts":-1}', 'car', 'civ', NULL, 'Unknown', 100, 1,
'Fahrzeug', 'bolide', 0, NULL, NULL),
('109.245.207.153', 'JPK6739', '{"extras":
{"2":false,"1":false,"4":false,"3":false},"model":-
204311418,"wheelColor":0,"modFender":-1,"modXenon":false,"modBrakes":-
1,"dirtLevel":4.0,"modOrnaments":-1,"modTrunk":-
1,"plate":"JPK6739","modTransmission":-1,"modArchCover":-1,"modDashboard":-
1,"modRightFender":-1,"modSmokeEnabled":false,"modDoorSpeaker":-
1,"modShifterLeavers":-1,"modTrimA":-1,"modBackWheels":-1,"modRoof":-
1,"modPlateHolder":-1,"modAerials":-1,"modTurbo":false,"modHydrolic":-
1,"modEngineBlock":-1,"modGrille":-1,"pearlescentColor":73,"modAPlate":-
1,"modTrimB":-1,"modFrontBumper":-1,"xenonColor":255,"modFrame":-1,"modExhaust":-
1,"modUnk47":-1,"modVanityPlate":-1,"modHorns":-1,"color1":73,"modEngine":-
1,"fuelLevel":65.0,"modLivery":-1,"neonEnabled":
[false,false,false,false],"neonColor":[255,0,255],"modStruts":-
1,"engineHealth":1000.0,"modHood":-1,"modSuspension":-1,"modTank":-
1,"color2":73,"windowTint":-1,"tankHealth":1000.0,"modWindows":-
1,"modFrontWheels":-1,"modSpeakers":-1,"modSteeringWheel":-1,"modRearBumper":-
1,"tyreSmokeColor":[255,255,255],"modDial":-1,"modSpoilers":-1,"modSideSkirt":-
1,"modSeats":-1,"modAirFilter":-1,"bodyHealth":1000.0,"plateIndex":5,"modArmor":-
1,"wheels":7}', 'car', 'civ', NULL, 'Unknown', 100, 1, 'Fahrzeug', 'lp770', 0,
NULL, NULL),
('109.245.207.153', 'JUR1230', '{"neonEnabled":
[false,false,false,false],"windowTint":-1,"modTransmission":-1,"modStruts":-
1,"fuelLevel":75.0,"modFrontBumper":-1,"neonColor":[255,0,255],"modDashboard":-
1,"modSideSkirt":-1,"modVanityPlate":-1,"modFrontWheels":-1,"modGrille":-
1,"modDoorSpeaker":-1,"modRoof":-1,"tankHealth":1000.0,"modUnk47":-
1,"modEngineBlock":-1,"modTrimA":-1,"modWindows":-1,"color2":38,"modTrimB":-
1,"xenonColor":255,"modTrunk":-1,"modSpeakers":-1,"modArchCover":-
1,"modPlateHolder":-1,"extras":{"1":false},"modBackWheels":-
1,"wheelColor":0,"tyreSmokeColor":[255,255,255],"modSteeringWheel":-1,"modAPlate":-
1,"modExhaust":-1,"dirtLevel":4.0,"modSmokeEnabled":false,"modSpoilers":-
1,"modHydrolic":-1,"modTurbo":false,"modOrnaments":-1,"modRightFender":-
1,"plateIndex":0,"plate":"JUR1230","modFrame":-1,"modHood":-
1,"model":958633118,"pearlescentColor":134,"modAerials":-
1,"color1":4,"modRearBumper":-1,"engineHealth":1000.0,"modBrakes":-
1,"modShifterLeavers":-1,"modLivery":-1,"modEngine":-1,"modDial":-
1,"modAirFilter":-1,"bodyHealth":1000.0,"modSeats":-1,"modArmor":-
1,"modXenon":false,"modHorns":-1,"modFender":-1,"modSuspension":-
1,"wheels":0,"modTank":-1}', 'car', 'civ', NULL, 'Unknown', 100, 1, 'Fahrzeug',
'ocni422spe', 0, NULL, NULL),
('109.245.207.153', 'KAR3920', '{"modHood":-1,"modAirFilter":-1,"modUnk47":-
1,"modWindows":-1,"modBackWheels":-1,"modExhaust":-
1,"plate":"KAR3920","modArchCover":-1,"modFrontBumper":-1,"modTrimA":-
1,"modLivery":-1,"modXenon":false,"modHorns":-1,"color2":0,"modDoorSpeaker":-
1,"neonColor":[255,0,255],"modSmokeEnabled":false,"modDashboard":-1,"modSpoilers":-
1,"model":980885719,"modSpeakers":-1,"modAPlate":-
1,"pearlescentColor":29,"modBrakes":-1,"tyreSmokeColor":[255,255,255],"modTrimB":-
1,"modRightFender":-1,"modFrontWheels":-1,"modHydrolic":-1,"modSeats":-
1,"modTransmission":-1,"wheelColor":0,"modGrille":-
1,"dirtLevel":3.0,"modVanityPlate":-1,"modFrame":-1,"windowTint":-1,"modFender":-
1,"modSideSkirt":-1,"modOrnaments":-1,"modTank":-1,"modEngineBlock":-1,"extras":
[],"tankHealth":1000.0,"engineHealth":1000.0,"modTrunk":-
1,"fuelLevel":80.0,"modPlateHolder":-1,"neonEnabled":
[false,false,false,false],"modEngine":-1,"modDial":-1,"modArmor":-
1,"modSteeringWheel":-1,"modAerials":-1,"modSuspension":-
1,"bodyHealth":1000.0,"modRoof":-1,"modRearBumper":-
1,"plateIndex":4,"modTurbo":false,"color1":29,"wheels":0,"modShifterLeavers":-
1,"xenonColor":255,"modStruts":-1}', 'car', 'civ', NULL, 'Unknown', 100, 1,
'Fahrzeug', 'rmodgt63', 0, NULL, NULL),
('109.245.207.153', 'KFI6486', '{"extras":
{"3":false,"1":true},"model":1943500623,"wheelColor":0,"modFender":-
1,"modXenon":false,"modBrakes":-1,"dirtLevel":7.0,"modOrnaments":-1,"modTrunk":-
1,"plate":"KFI6486","modTransmission":-1,"modArchCover":-1,"modDashboard":-
1,"modRightFender":-1,"modSmokeEnabled":false,"modDoorSpeaker":-
1,"modShifterLeavers":-1,"modTrimA":-1,"modBackWheels":-1,"modRoof":-
1,"modPlateHolder":-1,"modAerials":-1,"modTurbo":false,"modHydrolic":-
1,"modEngineBlock":-1,"modGrille":-1,"pearlescentColor":122,"modAPlate":-
1,"modTrimB":-1,"modFrontBumper":-1,"xenonColor":255,"modFrame":-1,"modExhaust":-
1,"modUnk47":-1,"modVanityPlate":-1,"modHorns":-1,"color1":147,"modEngine":-
1,"fuelLevel":65.0,"modLivery":-1,"neonEnabled":
[false,false,false,false],"neonColor":[255,0,255],"modStruts":-
1,"engineHealth":1000.0,"modHood":-1,"modSuspension":-1,"modTank":-
1,"color2":32,"windowTint":-1,"tankHealth":1000.0,"modWindows":-
1,"modFrontWheels":-1,"modSpeakers":-1,"modSteeringWheel":-1,"modRearBumper":-
1,"tyreSmokeColor":[255,255,255],"modDial":-1,"modSpoilers":-1,"modSideSkirt":-
1,"modSeats":-1,"modAirFilter":-1,"bodyHealth":1000.0,"plateIndex":2,"modArmor":-
1,"wheels":7}', 'car', 'civ', NULL, 'Unknown', 100, 1, 'Fahrzeug', 'PwDwycalt', 0,
NULL, NULL),
('109.245.207.153', 'KTN5189', '{"modHorns":-1,"modSuspension":-1,"modHood":-
1,"modSmokeEnabled":false,"xenonColor":255,"modTrimB":-1,"modSteeringWheel":-
1,"color2":8,"extras":[],"modAerials":-1,"modDoorSpeaker":-1,"modRoof":-
1,"modTrunk":-1,"modExhaust":-1,"modBackWheels":-
1,"model":2046572318,"modSpeakers":-1,"modHydrolic":-
1,"wheelColor":156,"plateIndex":0,"windowTint":-1,"color1":8,"modArmor":-
1,"modEngineBlock":-1,"modShifterLeavers":-1,"modBrakes":-
1,"bodyHealth":1000.0,"modXenon":false,"dirtLevel":4.0,"neonColor":
[255,0,255],"modTrimA":-1,"modDashboard":-1,"modRearBumper":-1,"modSeats":-
1,"modTransmission":-1,"fuelLevel":80.0,"modFrontWheels":-1,"modEngine":-
1,"modUnk47":-1,"plate":"KTN5189","modOrnaments":-
1,"engineHealth":1000.0,"neonEnabled":[false,false,false,false],"modWindows":-
1,"modTurbo":false,"modLivery":-1,"pearlescentColor":134,"modGrille":-
1,"modStruts":-1,"wheels":0,"modTank":-1,"modVanityPlate":-1,"modRightFender":-
1,"modSideSkirt":-1,"tyreSmokeColor":[255,255,255],"modFender":-1,"modFrame":-
1,"modAirFilter":-1,"tankHealth":1000.0,"modAPlate":-1,"modPlateHolder":-
1,"modArchCover":-1,"modSpoilers":-1,"modDial":-1,"modFrontBumper":-1}', 'car',
'civ', NULL, 'Unknown', 100, 1, 'Fahrzeug', '911turboS', 0, NULL, NULL),
('aa24fbd318a2f3c4ee45cbff944911c4361221e0', 'KTS5972', '{"modDashboard":-
1,"modBrakes":-1,"model":834565937,"dirtLevel":3.1,"modFrame":-1,"modSeats":-
1,"modHood":-1,"wheelColor":0,"modDoorSpeaker":-1,"modSteeringWheel":-
1,"tankHealth":970.1,"windowTint":-1,"modSpoilers":-1,"modRoof":-1,"modEngine":-
1,"modTrunk":-1,"modSmokeEnabled":false,"modTrimB":-
1,"plate":"KTS5972","modAPlate":-1,"modWindows":-
1,"plateIndex":0,"bodyHealth":876.8,"modLivery":-1,"extras":[],"modTransmission":-
1,"modPlateHolder":-1,"modXenon":false,"modHorns":-1,"modShifterLeavers":-
1,"neonColor":[0,0,0],"modTrimA":-1,"modGrille":-1,"modFrontBumper":-
1,"modRightFender":-1,"neonEnabled":
[false,false,false,false],"xenonColor":255,"fuelLevel":59.4,"color2":0,"modAirFilte
r":-1,"modBackWheels":-1,"modTurbo":false,"modStruts":-1,"modSpeakers":-
1,"modSideSkirt":-1,"modHydrolic":-1,"modEngineBlock":-1,"modUnk47":-
1,"modFrontWheels":-1,"modArchCover":-1,"modVanityPlate":-1,"modFender":-
1,"wheels":0,"modArmor":-1,"modSuspension":-1,"modExhaust":-
1,"color1":0,"modRearBumper":-1,"modOrnaments":-1,"tyreSmokeColor":
[255,255,255],"modTank":-1,"engineHealth":976.6,"modAerials":-1,"modDial":-
1,"pearlescentColor":0}', 'car', 'civ', NULL, 'Unknown', 100, 1, 'Fahrzeug',
'SC18Hartge', 0, NULL, NULL),
('9df7ecd455c8ec9885a7b110a90e161744dabdbd', 'LGN6804', '{"modDashboard":-
1,"modBrakes":-1,"model":834565937,"dirtLevel":3.3,"modFrame":-1,"modSeats":-
1,"modHood":-1,"wheelColor":111,"modDoorSpeaker":-1,"modSteeringWheel":-
1,"tankHealth":968.9,"tyreSmokeColor":[255,255,255],"modSpoilers":-1,"modRoof":-
1,"modEngine":-1,"wheels":0,"modSmokeEnabled":false,"modTrimB":-
1,"plate":"LGN6804","modAPlate":-1,"modWindows":-
1,"plateIndex":0,"bodyHealth":837.1,"modLivery":-1,"extras":[],"modFrontWheels":-
1,"modPlateHolder":-1,"modXenon":false,"modHorns":-1,"modShifterLeavers":-
1,"neonColor":[0,0,0],"modTrimA":-1,"modGrille":-1,"modFrontBumper":-
1,"modRightFender":-1,"neonEnabled":
[false,false,false,false],"xenonColor":255,"fuelLevel":61.9,"color2":111,"modAirFil
ter":-1,"modBackWheels":-1,"modTurbo":false,"modStruts":-1,"modSpeakers":-
1,"modSideSkirt":-1,"modHydrolic":-1,"modEngineBlock":-1,"modSuspension":-
1,"modTransmission":-1,"windowTint":-1,"modVanityPlate":-1,"modUnk47":-
1,"modArchCover":-1,"modArmor":-1,"modRearBumper":-1,"modFender":-
1,"color1":111,"modAerials":-1,"modOrnaments":-1,"modExhaust":-1,"modTank":-
1,"engineHealth":997.8,"modTrunk":-1,"modDial":-1,"pearlescentColor":111}', 'car',
'civ', NULL, 'Unknown', 100, 1, 'Fahrzeug', 'SC18Hartge', 0, NULL, NULL),
('109.245.207.153', 'LMN9553', '{"modHorns":-1,"modSuspension":-1,"modHood":-
1,"modSmokeEnabled":false,"xenonColor":255,"modTrimB":-1,"modSteeringWheel":-
1,"color2":11,"extras":[],"modAerials":-1,"modDoorSpeaker":-1,"modRoof":-
1,"modTrunk":-1,"modExhaust":-1,"modBackWheels":-1,"model":-
1840349445,"modSpeakers":-1,"modHydrolic":-
1,"wheelColor":156,"plateIndex":0,"windowTint":-1,"color1":38,"modArmor":-
1,"modEngineBlock":-1,"modShifterLeavers":-1,"modBrakes":-
1,"bodyHealth":1000.0,"modXenon":false,"dirtLevel":3.0,"neonColor":
[255,0,255],"modTrimA":-1,"modDashboard":-1,"modRearBumper":-1,"modSeats":-
1,"modTransmission":-1,"fuelLevel":65.0,"modFrontWheels":-1,"modEngine":-
1,"modUnk47":-1,"plate":"LMN9553","modOrnaments":-
1,"engineHealth":1000.0,"neonEnabled":[false,false,false,false],"modWindows":-
1,"modTurbo":false,"modLivery":-1,"pearlescentColor":38,"modGrille":-
1,"modStruts":-1,"wheels":7,"modTank":-1,"modVanityPlate":-1,"modRightFender":-
1,"modSideSkirt":-1,"tyreSmokeColor":[255,255,255],"modFender":-1,"modFrame":-
1,"modAirFilter":-1,"tankHealth":1000.0,"modAPlate":-1,"modPlateHolder":-
1,"modArchCover":-1,"modSpoilers":-1,"modDial":-1,"modFrontBumper":-1}', 'car',
'civ', NULL, 'Unknown', 100, 1, 'Fahrzeug', 'BugattiVgt', 0, NULL, NULL),
('aa24fbd318a2f3c4ee45cbff944911c4361221e0', 'LPC4472', '{"modDashboard":-
1,"modBrakes":-1,"model":1943500623,"dirtLevel":5.2,"modFrame":-1,"modSeats":-
1,"modHood":-1,"wheelColor":0,"modDoorSpeaker":-1,"modSteeringWheel":-
1,"tankHealth":996.5,"windowTint":-1,"modSpoilers":-1,"modRoof":-1,"modEngine":-
1,"modTrunk":-1,"modSmokeEnabled":false,"modTrimB":-
1,"plate":"LPC4472","modAPlate":-1,"modWindows":-
1,"plateIndex":3,"bodyHealth":975.6,"modLivery":-1,"extras":
{"3":false,"1":true},"modTransmission":-1,"modPlateHolder":-
1,"modXenon":false,"modHorns":-1,"modShifterLeavers":-1,"neonColor":
[0,0,0],"modTrimA":-1,"modGrille":-1,"modFrontBumper":-1,"modRightFender":-
1,"neonEnabled":
[false,false,false,false],"xenonColor":255,"fuelLevel":63.7,"color2":7,"modAirFilte
r":-1,"modBackWheels":-1,"modTurbo":false,"modStruts":-1,"modSpeakers":-
1,"modSideSkirt":-1,"modHydrolic":-1,"modEngineBlock":-1,"modUnk47":-
1,"modFrontWheels":-1,"modArchCover":-1,"modVanityPlate":-1,"modFender":-
1,"wheels":7,"modArmor":-1,"modSuspension":-1,"modExhaust":-
1,"color1":31,"modRearBumper":-1,"modOrnaments":-1,"tyreSmokeColor":
[255,255,255],"modTank":-1,"engineHealth":997.8,"modAerials":-1,"modDial":-
1,"pearlescentColor":0}', 'car', 'civ', NULL, 'Unknown', 100, 1, 'Fahrzeug',
'PwDwycalt', 0, NULL, NULL),
('9df7ecd455c8ec9885a7b110a90e161744dabdbd', 'MVK8984', '{"modDashboard":-
1,"modBrakes":2,"model":1975081724,"dirtLevel":6.3,"modFrame":-1,"modSeats":-
1,"modHood":-1,"wheelColor":156,"modDoorSpeaker":-1,"modSteeringWheel":-
1,"tankHealth":999.7,"tyreSmokeColor":[255,255,255],"modSpoilers":-1,"modRoof":-
1,"modEngine":-1,"wheels":7,"modSmokeEnabled":false,"modTrimB":-
1,"plate":"MVK8984","modAPlate":-1,"modWindows":-
1,"plateIndex":0,"bodyHealth":997.3,"modLivery":-1,"extras":
{"1":true},"modFrontWheels":-1,"modPlateHolder":-1,"modXenon":false,"modHorns":-
1,"modShifterLeavers":-1,"neonColor":[0,0,0],"modTrimA":-1,"modGrille":-
1,"modFrontBumper":-1,"modRightFender":-1,"neonEnabled":
[false,false,false,false],"xenonColor":255,"fuelLevel":65.0,"color2":120,"modAirFil
ter":-1,"modBackWheels":-1,"modTurbo":false,"modStruts":-1,"modSpeakers":-
1,"modSideSkirt":-1,"modHydrolic":-1,"modEngineBlock":-1,"modSuspension":-
1,"modTransmission":-1,"windowTint":0,"modVanityPlate":-1,"modUnk47":-
1,"modArchCover":-1,"modArmor":0,"modRearBumper":-1,"modFender":-
1,"color1":61,"modAerials":-1,"modOrnaments":-1,"modExhaust":-1,"modTank":-
1,"engineHealth":1000.0,"modTrunk":-1,"modDial":-1,"pearlescentColor":61}', 'car',
'civ', NULL, 'Unknown', 100, 1, 'dOBAR', 'bolide', 0, NULL, NULL),
('aa24fbd318a2f3c4ee45cbff944911c4361221e0', 'MZS6992', '{"modDashboard":-
1,"modBrakes":-1,"model":-61757267,"dirtLevel":7.2,"modFrame":-1,"modSeats":-
1,"modHood":-1,"wheelColor":156,"modDoorSpeaker":-1,"modSteeringWheel":-
1,"tankHealth":995.9,"windowTint":-1,"modSpoilers":-1,"modRoof":-1,"modEngine":-
1,"modTrunk":-1,"modSmokeEnabled":false,"modTrimB":-
1,"plate":"MZS6992","modAPlate":-1,"modWindows":-
1,"plateIndex":0,"bodyHealth":917.7,"modLivery":-1,"extras":[],"modTransmission":-
1,"modPlateHolder":-1,"modXenon":false,"modHorns":-1,"modShifterLeavers":-
1,"neonColor":[0,0,0],"modTrimA":-1,"modGrille":-1,"modFrontBumper":-
1,"modRightFender":-1,"neonEnabled":
[false,false,false,false],"xenonColor":255,"fuelLevel":63.5,"color2":120,"modAirFil
ter":-1,"modBackWheels":-1,"modTurbo":false,"modStruts":-1,"modSpeakers":-
1,"modSideSkirt":-1,"modHydrolic":-1,"modEngineBlock":-1,"modUnk47":-
1,"modFrontWheels":-1,"modArchCover":-1,"modVanityPlate":-1,"modFender":-
1,"wheels":7,"modArmor":-1,"modSuspension":-1,"modExhaust":-
1,"color1":61,"modRearBumper":-1,"modOrnaments":-1,"tyreSmokeColor":
[255,255,255],"modTank":-1,"engineHealth":999.6,"modAerials":-1,"modDial":-
1,"pearlescentColor":61}', 'car', 'civ', NULL, 'Unknown', 100, 1, 'Fahrzeug',
'bmistralw16', 0, NULL, NULL),
('109.245.207.153', 'NLR7793', '{"extras":[],"model":-
1840349445,"wheelColor":156,"modFender":-1,"modXenon":false,"modBrakes":-
1,"dirtLevel":4.0,"modOrnaments":-1,"modTrunk":-
1,"plate":"NLR7793","modTransmission":-1,"modArchCover":-1,"modDashboard":-
1,"modRightFender":-1,"modSmokeEnabled":false,"modDoorSpeaker":-
1,"modShifterLeavers":-1,"modTrimA":-1,"modBackWheels":-1,"modRoof":-
1,"modPlateHolder":-1,"modAerials":-1,"modTurbo":false,"modHydrolic":-
1,"modEngineBlock":-1,"modGrille":-1,"pearlescentColor":38,"modAPlate":-
1,"modTrimB":-1,"modFrontBumper":-1,"xenonColor":255,"modFrame":-1,"modExhaust":-
1,"modUnk47":-1,"modVanityPlate":-1,"modHorns":-1,"color1":38,"modEngine":-
1,"fuelLevel":65.0,"modLivery":-1,"neonEnabled":
[false,false,false,false],"neonColor":[255,0,255],"modStruts":-
1,"engineHealth":1000.0,"modHood":-1,"modSuspension":-1,"modTank":-
1,"color2":11,"windowTint":-1,"tankHealth":1000.0,"modWindows":-
1,"modFrontWheels":-1,"modSpeakers":-1,"modSteeringWheel":-1,"modRearBumper":-
1,"tyreSmokeColor":[255,255,255],"modDial":-1,"modSpoilers":-1,"modSideSkirt":-
1,"modSeats":-1,"modAirFilter":-1,"bodyHealth":1000.0,"plateIndex":0,"modArmor":-
1,"wheels":7}', 'car', 'civ', NULL, 'Unknown', 100, 1, 'Fahrzeug', 'BugattiVgt', 0,
NULL, NULL),
('109.245.207.153', 'OBL5896', '{"neonEnabled":
[false,false,false,false],"windowTint":-1,"modTransmission":-1,"modStruts":-
1,"fuelLevel":65.0,"modFrontBumper":-1,"neonColor":[255,0,255],"modDashboard":-
1,"modSideSkirt":-1,"modVanityPlate":-1,"modFrontWheels":-1,"modGrille":-
1,"modDoorSpeaker":-1,"modRoof":-1,"tankHealth":1000.0,"modUnk47":-
1,"modEngineBlock":-1,"modTrimA":-1,"modWindows":-1,"color2":73,"modTrimB":-
1,"xenonColor":255,"modTrunk":-1,"modSpeakers":-1,"modArchCover":-
1,"modPlateHolder":-1,"extras":
{"1":false,"4":false,"3":false,"2":false},"modBackWheels":-
1,"wheelColor":0,"tyreSmokeColor":[255,255,255],"modSteeringWheel":-1,"modAPlate":-
1,"modExhaust":-1,"dirtLevel":9.0,"modSmokeEnabled":false,"modSpoilers":-
1,"modHydrolic":-1,"modTurbo":false,"modOrnaments":-1,"modRightFender":-
1,"plateIndex":2,"plate":"OBL5896","modFrame":-1,"modHood":-1,"model":-
204311418,"pearlescentColor":73,"modAerials":-1,"color1":73,"modRearBumper":-
1,"engineHealth":1000.0,"modBrakes":-1,"modShifterLeavers":-1,"modLivery":-
1,"modEngine":-1,"modDial":-1,"modAirFilter":-1,"bodyHealth":1000.0,"modSeats":-
1,"modArmor":-1,"modXenon":false,"modHorns":-1,"modFender":-1,"modSuspension":-
1,"wheels":7,"modTank":-1}', 'car', 'civ', NULL, 'Unknown', 100, 1, 'Fahrzeug',
'lp770', 0, NULL, NULL),
('109.245.207.153', 'OOC2149', '{"extras":[],"model":-
2068151042,"wheelColor":156,"modFender":-1,"modXenon":false,"modBrakes":-
1,"dirtLevel":5.0,"modOrnaments":-1,"modTrunk":-
1,"plate":"OOC2149","modTransmission":-1,"modArchCover":-1,"modDashboard":-
1,"modRightFender":-1,"modSmokeEnabled":false,"modDoorSpeaker":-
1,"modShifterLeavers":-1,"modTrimA":-1,"modBackWheels":-1,"modRoof":-
1,"modPlateHolder":-1,"modAerials":-1,"modTurbo":false,"modHydrolic":-
1,"modEngineBlock":-1,"modGrille":-1,"pearlescentColor":38,"modAPlate":-
1,"modTrimB":-1,"modFrontBumper":-1,"xenonColor":255,"modFrame":-1,"modExhaust":-
1,"modUnk47":-1,"modVanityPlate":-1,"modHorns":-1,"color1":38,"modEngine":-
1,"fuelLevel":65.0,"modLivery":-1,"neonEnabled":
[false,false,false,false],"neonColor":[255,0,255],"modStruts":-
1,"engineHealth":1000.0,"modHood":-1,"modSuspension":-1,"modTank":-
1,"color2":11,"windowTint":-1,"tankHealth":1000.0,"modWindows":-
1,"modFrontWheels":-1,"modSpeakers":-1,"modSteeringWheel":-1,"modRearBumper":-
1,"tyreSmokeColor":[255,255,255],"modDial":-1,"modSpoilers":-1,"modSideSkirt":-
1,"modSeats":-1,"modAirFilter":-1,"bodyHealth":1000.0,"plateIndex":0,"modArmor":-
1,"wheels":7}', 'car', 'civ', NULL, 'Unknown', 100, 1, 'Fahrzeug', 'bug300ss', 0,
NULL, NULL),
('896386080e8cdf219abf4ee615a73517aa8470cc', 'OPJ2157', '{"modWindows":-
1,"modSeats":-1,"modTrimB":-1,"modSmokeEnabled":false,"modSpoilers":-
1,"modHydrolic":-1,"modOrnaments":-1,"modRightFender":-1,"modFrontBumper":-
1,"dirtLevel":6.0,"modTransmission":-1,"plateIndex":1,"modArchCover":-
1,"color2":2,"plate":"OPJ2157","fuelLevel":80.0,"model":92101899,"modSuspension":-
1,"modAerials":-1,"wheelColor":156,"neonColor":[255,0,255],"modHood":-
1,"modExhaust":-1,"modStruts":-1,"modRearBumper":-1,"modSteeringWheel":-
1,"modSpeakers":-1,"modArmor":-1,"modAPlate":-1,"neonEnabled":
[false,false,false,false],"bodyHealth":1000.0,"modUnk47":-1,"modHorns":-
1,"modRoof":-1,"pearlescentColor":4,"modDial":-1,"xenonColor":255,"modSideSkirt":-
1,"engineHealth":1000.0,"modFender":-1,"modGrille":-1,"modBackWheels":-
1,"modTrunk":-1,"modXenon":false,"modEngine":-1,"modFrame":-1,"modBrakes":-
1,"modDashboard":-1,"tyreSmokeColor":[255,255,255],"modPlateHolder":-1,"modTank":-
1,"modShifterLeavers":-1,"color1":147,"wheels":3,"modVanityPlate":-1,"modTrimA":-
1,"modDoorSpeaker":-1,"modEngineBlock":-1,"modFrontWheels":-1,"modAirFilter":-
1,"extras":{"1":false,"2":true},"modTurbo":false,"modLivery":-1,"windowTint":-
1,"tankHealth":1000.0}', 'car', 'civ', NULL, 'Unknown', 100, 1, 'Fahrzeug',
'x6mf16', 0, NULL, NULL),
('109.245.207.153', 'OWP2979', '{"modHood":-1,"modAirFilter":-1,"modUnk47":-
1,"modWindows":-1,"modBackWheels":-1,"modExhaust":-
1,"plate":"OWP2979","modArchCover":-1,"modFrontBumper":-1,"modTrimA":-
1,"modLivery":-1,"modXenon":false,"modHorns":-1,"color2":134,"modDoorSpeaker":-
1,"neonColor":[255,0,255],"modSmokeEnabled":false,"modDashboard":-1,"modSpoilers":-
1,"model":-2136080393,"modSpeakers":-1,"modAPlate":-
1,"pearlescentColor":0,"modBrakes":-1,"tyreSmokeColor":[255,255,255],"modTrimB":-
1,"modRightFender":-1,"modFrontWheels":-1,"modHydrolic":-1,"modSeats":-
1,"modTransmission":-1,"wheelColor":0,"modGrille":-
1,"dirtLevel":11.0,"modVanityPlate":-1,"modFrame":-1,"windowTint":-1,"modFender":-
1,"modSideSkirt":-1,"modOrnaments":-1,"modTank":-1,"modEngineBlock":-1,"extras":
{"2":true,"1":true},"tankHealth":1000.0,"engineHealth":1000.0,"modTrunk":-
1,"fuelLevel":70.0,"modPlateHolder":-1,"neonEnabled":
[false,false,false,false],"modEngine":-1,"modDial":-1,"modArmor":-
1,"modSteeringWheel":-1,"modAerials":-1,"modSuspension":-
1,"bodyHealth":1000.0,"modRoof":-1,"modRearBumper":-
1,"plateIndex":4,"modTurbo":false,"color1":134,"wheels":3,"modShifterLeavers":-
1,"xenonColor":255,"modStruts":-1}', 'car', 'civ', NULL, 'Unknown', 100, 1,
'Fahrzeug', '22G63', 0, NULL, NULL),
('188.246.56.196', 'PKI1442', '{"modHorns":-1,"modSuspension":-1,"modHood":-
1,"wheels":7,"xenonColor":255,"modTrimB":-1,"modSteeringWheel":-
1,"color2":11,"extras":[],"modAerials":-1,"modArchCover":-1,"modRoof":-
1,"modTrunk":-1,"modExhaust":-1,"modBackWheels":-1,"model":-
1840349445,"modSpeakers":-1,"modHydrolic":-
1,"wheelColor":156,"plateIndex":0,"windowTint":-1,"color1":38,"modArmor":-
1,"modEngineBlock":-1,"modShifterLeavers":-1,"modBrakes":-
1,"bodyHealth":1000.0,"modXenon":false,"dirtLevel":3.0,"neonColor":
[255,0,255],"modTrimA":-1,"modDashboard":-1,"modRearBumper":-1,"modSeats":-
1,"modTransmission":-1,"fuelLevel":65.0,"modFrontWheels":-1,"modEngine":-
1,"modUnk47":-1,"plate":"PKI1442","modOrnaments":-1,"tyreSmokeColor":
[255,255,255],"neonEnabled":[false,false,false,false],"modWindows":-
1,"modPlateHolder":-1,"modLivery":-1,"pearlescentColor":38,"modGrille":-
1,"modStruts":-1,"modAPlate":-1,"modTank":-1,"modVanityPlate":-1,"modDoorSpeaker":-
1,"modSideSkirt":-1,"modFrame":-1,"engineHealth":1000.0,"modAirFilter":-
1,"modFender":-
1,"tankHealth":1000.0,"modTurbo":false,"modSmokeEnabled":false,"modRightFender":-
1,"modSpoilers":-1,"modDial":-1,"modFrontBumper":-1}', 'car', 'civ', NULL,
'Unknown', 100, 1, 'Fahrzeug', 'BugattiVgt', 0, NULL, NULL),
('aa24fbd318a2f3c4ee45cbff944911c4361221e0', 'PLB1239', '{"modDashboard":-
1,"modBrakes":-1,"model":1975081724,"dirtLevel":7.1,"modFrame":-1,"modSeats":-
1,"modHood":-1,"wheelColor":156,"modDoorSpeaker":-1,"modSteeringWheel":-
1,"tankHealth":999.3,"windowTint":-1,"modSpoilers":-1,"modRoof":-1,"modEngine":-
1,"modTrunk":-1,"modSmokeEnabled":false,"modTrimB":-
1,"plate":"PLB1239","modAPlate":-1,"modWindows":-
1,"plateIndex":0,"bodyHealth":925.7,"modLivery":-1,"extras":
{"1":true},"modTransmission":-1,"modPlateHolder":-1,"modXenon":false,"modHorns":-
1,"modShifterLeavers":-1,"neonColor":[0,0,0],"modTrimA":-1,"modGrille":-
1,"modFrontBumper":-1,"modRightFender":-1,"neonEnabled":
[false,false,false,false],"xenonColor":255,"fuelLevel":64.2,"color2":120,"modAirFil
ter":-1,"modBackWheels":-1,"modTurbo":false,"modStruts":-1,"modSpeakers":-
1,"modSideSkirt":-1,"modHydrolic":-1,"modEngineBlock":-1,"modUnk47":-
1,"modFrontWheels":-1,"modArchCover":-1,"modVanityPlate":-1,"modFender":-
1,"wheels":7,"modArmor":-1,"modSuspension":-1,"modExhaust":-
1,"color1":61,"modRearBumper":-1,"modOrnaments":-1,"tyreSmokeColor":
[255,255,255],"modTank":-1,"engineHealth":1000.0,"modAerials":-1,"modDial":-
1,"pearlescentColor":61}', 'car', 'civ', NULL, 'Unknown', 100, 1, 'Fahrzeug',
'bolide', 0, NULL, NULL),
('109.245.207.153', 'PWS0567', '{"neonEnabled":
[false,false,false,false],"windowTint":-1,"modTransmission":-1,"modStruts":-
1,"fuelLevel":65.0,"modFrontBumper":-1,"neonColor":[255,0,255],"modDashboard":-
1,"modSideSkirt":-1,"modVanityPlate":-1,"modFrontWheels":-1,"modGrille":-
1,"modDoorSpeaker":-1,"modRoof":-1,"tankHealth":1000.0,"modUnk47":-
1,"modEngineBlock":-1,"modTrimA":-1,"modWindows":-1,"color2":107,"modTrimB":-
1,"xenonColor":255,"modTrunk":-1,"modSpeakers":-1,"modArchCover":-
1,"modPlateHolder":-1,"extras":{"1":false,"3":false,"2":true},"modBackWheels":-
1,"wheelColor":120,"tyreSmokeColor":[255,255,255],"modSteeringWheel":-
1,"modAPlate":-1,"modExhaust":-
1,"dirtLevel":3.0,"modSmokeEnabled":false,"modSpoilers":-1,"modHydrolic":-
1,"modTurbo":false,"modOrnaments":-1,"modRightFender":-
1,"plateIndex":0,"plate":"PWS0567","modFrame":-1,"modHood":-
1,"model":934775262,"pearlescentColor":15,"modAerials":-
1,"color1":15,"modRearBumper":-1,"engineHealth":1000.0,"modBrakes":-
1,"modShifterLeavers":-1,"modLivery":-1,"modEngine":-1,"modDial":-
1,"modAirFilter":-1,"bodyHealth":1000.0,"modSeats":-1,"modArmor":-
1,"modXenon":false,"modHorns":-1,"modFender":-1,"modSuspension":-
1,"wheels":7,"modTank":-1}', 'car', 'civ', NULL, 'Unknown', 100, 1, 'Fahrzeug',
'rmodm4gts', 0, NULL, NULL),
('109.245.207.153', 'RKJ6709', '{"modHorns":-1,"modSuspension":-1,"modHood":-
1,"modSmokeEnabled":false,"xenonColor":255,"modTrimB":-1,"modSteeringWheel":-
1,"color2":112,"extras":[],"modAerials":-1,"modDoorSpeaker":-1,"modRoof":-
1,"modTrunk":-1,"modExhaust":-1,"modBackWheels":-
1,"model":2063786643,"modSpeakers":-1,"modHydrolic":-
1,"wheelColor":1,"plateIndex":4,"windowTint":-1,"color1":1,"modArmor":-
1,"modEngineBlock":-1,"modShifterLeavers":-1,"modBrakes":-
1,"bodyHealth":1000.0,"modXenon":false,"dirtLevel":5.0,"neonColor":
[255,0,255],"modTrimA":-1,"modDashboard":-1,"modRearBumper":-1,"modSeats":-
1,"modTransmission":-1,"fuelLevel":80.0,"modFrontWheels":-1,"modEngine":-
1,"modUnk47":-1,"plate":"RKJ6709","modOrnaments":-
1,"engineHealth":1000.0,"neonEnabled":[false,false,false,false],"modWindows":-
1,"modTurbo":false,"modLivery":-1,"pearlescentColor":112,"modGrille":-
1,"modStruts":-1,"wheels":7,"modTank":-1,"modVanityPlate":-1,"modRightFender":-
1,"modSideSkirt":-1,"tyreSmokeColor":[255,255,255],"modFender":-1,"modFrame":-
1,"modAirFilter":-1,"tankHealth":1000.0,"modAPlate":-1,"modPlateHolder":-
1,"modArchCover":-1,"modSpoilers":-1,"modDial":-1,"modFrontBumper":-1}', 'car',
'civ', NULL, 'Unknown', 100, 1, 'Fahrzeug', 'amggtbs', 0, NULL, NULL),
('109.245.207.153', 'SBA7481', '{"modHorns":-1,"modSuspension":-1,"modHood":-
1,"modSmokeEnabled":false,"xenonColor":255,"modTrimB":-1,"modSteeringWheel":-
1,"color2":127,"extras":{"1":false,"2":false},"modAerials":-1,"modDoorSpeaker":-
1,"modRoof":-1,"modTrunk":-1,"modExhaust":-1,"modBackWheels":-
1,"model":1503141430,"modSpeakers":-1,"modHydrolic":-
1,"wheelColor":0,"plateIndex":1,"windowTint":-1,"color1":21,"modArmor":-
1,"modEngineBlock":-1,"modShifterLeavers":-1,"modBrakes":-
1,"bodyHealth":1000.0,"modXenon":false,"dirtLevel":7.0,"neonColor":
[255,0,255],"modTrimA":-1,"modDashboard":-1,"modRearBumper":-1,"modSeats":-
1,"modTransmission":-1,"fuelLevel":65.0,"modFrontWheels":-1,"modEngine":-
1,"modUnk47":-1,"plate":"SBA7481","modOrnaments":-
1,"engineHealth":1000.0,"neonEnabled":[false,false,false,false],"modWindows":-
1,"modTurbo":false,"modLivery":-1,"pearlescentColor":1,"modGrille":-1,"modStruts":-
1,"wheels":7,"modTank":-1,"modVanityPlate":-1,"modRightFender":-1,"modSideSkirt":-
1,"tyreSmokeColor":[255,255,255],"modFender":-1,"modFrame":-1,"modAirFilter":-
1,"tankHealth":1000.0,"modAPlate":-1,"modPlateHolder":-1,"modArchCover":-
1,"modSpoilers":-1,"modDial":-1,"modFrontBumper":-1}', 'car', 'civ', NULL,
'Unknown', 100, 1, 'Fahrzeug', 'divo', 0, NULL, NULL),
('109.245.207.153', 'SDU3497', '{"extras":[],"model":-
61757267,"wheelColor":156,"modFender":-1,"modXenon":false,"modBrakes":-
1,"dirtLevel":5.0,"modOrnaments":-1,"modTrunk":-
1,"plate":"SDU3497","modTransmission":-1,"modArchCover":-1,"modDashboard":-
1,"modRightFender":-1,"modSmokeEnabled":false,"modDoorSpeaker":-
1,"modShifterLeavers":-1,"modTrimA":-1,"modBackWheels":-1,"modRoof":-
1,"modPlateHolder":-1,"modAerials":-1,"modTurbo":false,"modHydrolic":-
1,"modEngineBlock":-1,"modGrille":-1,"pearlescentColor":61,"modAPlate":-
1,"modTrimB":-1,"modFrontBumper":-1,"xenonColor":255,"modFrame":-1,"modExhaust":-
1,"modUnk47":-1,"modVanityPlate":-1,"modHorns":-1,"color1":61,"modEngine":-
1,"fuelLevel":65.0,"modLivery":-1,"neonEnabled":
[false,false,false,false],"neonColor":[255,0,255],"modStruts":-
1,"engineHealth":1000.0,"modHood":-1,"modSuspension":-1,"modTank":-
1,"color2":120,"windowTint":-1,"tankHealth":1000.0,"modWindows":-
1,"modFrontWheels":-1,"modSpeakers":-1,"modSteeringWheel":-1,"modRearBumper":-
1,"tyreSmokeColor":[255,255,255],"modDial":-1,"modSpoilers":-1,"modSideSkirt":-
1,"modSeats":-1,"modAirFilter":-1,"bodyHealth":1000.0,"plateIndex":0,"modArmor":-
1,"wheels":7}', 'car', 'civ', NULL, 'Unknown', 100, 1, 'Fahrzeug', 'bmistralw16',
0, NULL, NULL),
('109.175.54.77', 'SEK0366', '{"modHydrolic":-1,"modHorns":-1,"modBrakes":-
1,"pearlescentColor":134,"modHood":-1,"dirtLevel":9.0,"modFrame":-
1,"modFrontBumper":-1,"modSideSkirt":-1,"wheels":0,"modTank":-1,"modGrille":-
1,"engineHealth":1000.0,"color1":4,"modRearBumper":-1,"modVanityPlate":-
1,"wheelColor":0,"modTransmission":-1,"modFrontWheels":-1,"modLivery":-
1,"modTurbo":false,"modTrunk":-
1,"tankHealth":1000.0,"model":958633118,"modSpoilers":-1,"neonEnabled":
[false,false,false,false],"modAerials":-1,"modStruts":-
1,"fuelLevel":75.0,"modXenon":false,"modRoof":-1,"modDashboard":-1,"modArchCover":-
1,"windowTint":-1,"modSeats":-1,"modWindows":-1,"modShifterLeavers":-
1,"modSteeringWheel":-1,"modOrnaments":-1,"modTrimB":-1,"color2":38,"modFender":-
1,"modAirFilter":-1,"modTrimA":-1,"modUnk47":-1,"modSuspension":-
1,"modEngineBlock":-1,"modBackWheels":-1,"modArmor":-1,"neonColor":
[255,0,255],"tyreSmokeColor":[255,255,255],"modEngine":-1,"modSpeakers":-
1,"modDoorSpeaker":-1,"modRightFender":-1,"modAPlate":-
1,"xenonColor":255,"modDial":-1,"extras":
{"1":false},"bodyHealth":1000.0,"modSmokeEnabled":false,"plate":"SEK0366","modPlate
Holder":-1,"plateIndex":0,"modExhaust":-1}', 'car', 'civ', NULL, 'Unknown', 100, 1,
'Brabus', 'ocni422spe', 0, NULL, NULL),
('630d0925b2b4eba1194f6cbe366dc576c7e242dd', 'SIK4390', '{"modLivery":-
1,"tankHealth":1000.0,"modTrimA":-1,"modVanityPlate":-1,"modRearBumper":-
1,"modArmor":0,"bodyHealth":1000.0,"modSteeringWheel":-1,"neonEnabled":
[false,false,false,false],"modSideSkirt":-1,"modDial":-1,"modAerials":-
1,"modSmokeEnabled":false,"neonColor":
[255,0,255],"color1":12,"modEngine":3,"modHydrolic":-1,"modOrnaments":-
1,"modBackWheels":-1,"modTransmission":2,"modPlateHolder":-
1,"color2":12,"modExhaust":-1,"modArchCover":-1,"wheelColor":0,"modFrame":-
1,"windowTint":-1,"pearlescentColor":12,"modShifterLeavers":-1,"modDashboard":-
1,"modFender":-1,"modSpeakers":-1,"modFrontWheels":-1,"modAirFilter":-
1,"modXenon":false,"modEngineBlock":-1,"modTank":-
1,"modTurbo":1,"dirtLevel":6.1,"modRoof":-1,"modDoorSpeaker":-1,"modUnk47":-
1,"plateIndex":3,"xenonColor":255,"fuelLevel":79.4,"modGrille":-
1,"modFrontBumper":-1,"engineHealth":1000.0,"modAPlate":-1,"modHood":-1,"model":-
1453762943,"modSpoilers":-1,"modSeats":-1,"modWindows":-1,"tyreSmokeColor":
[255,255,255],"modHorns":-1,"modRightFender":-
1,"wheels":3,"plate":"SIK4390","modStruts":-1,"modSuspension":3,"modTrunk":-
1,"extras":{"1":false,"3":false},"modBrakes":-1,"modTrimB":-1}', 'car', 'civ',
NULL, 'Unknown', 100, 1, 'Fahrzeug', 'PwDGWagon', 0, NULL, NULL),
('9df7ecd455c8ec9885a7b110a90e161744dabdbd', 'SLY9480', '{"modHorns":-
1,"neonEnabled":[false,false,false,false],"modSpeakers":-
1,"modSmokeEnabled":false,"wheels":7,"modWindows":-1,"modEngine":-
1,"modFrontWheels":-1,"modTrimA":-1,"engineHealth":1000.0,"modDoorSpeaker":-
1,"modExhaust":-1,"modUnk47":-1,"modBrakes":-1,"modEngineBlock":-
1,"modFrontBumper":-1,"modTransmission":-1,"modStruts":-1,"color1":154,"modHood":-
1,"modRearBumper":-1,"modSpoilers":-1,"modSeats":-
1,"dirtLevel":7.0,"wheelColor":156,"modLivery":-1,"modTrimB":-1,"modFrame":-
1,"modSideSkirt":-1,"modAirFilter":-1,"modPlateHolder":-
1,"pearlescentColor":154,"modArmor":-1,"fuelLevel":65.0,"modVanityPlate":-
1,"modHydrolic":-1,"modOrnaments":-1,"modBackWheels":-
1,"xenonColor":255,"modDial":-1,"model":-61757267,"modTrunk":-1,"modGrille":-
1,"modSuspension":-1,"modAPlate":-1,"modSteeringWheel":-
1,"tankHealth":1000.0,"modRoof":-
1,"plate":"SLY9480","plateIndex":0,"color2":120,"modArchCover":-
1,"modRightFender":-1,"modFender":-1,"modAerials":-1,"neonColor":
[0,0,0],"tyreSmokeColor":
[255,255,255],"modTurbo":false,"modXenon":false,"modDashboard":-1,"windowTint":-
1,"modTank":-1,"extras":[],"bodyHealth":1000.0,"modShifterLeavers":-1}', 'car',
'civ', NULL, 'Unknown', 100, 1, 'Fahrzeug', 'bmistralw16', 0, NULL, NULL),
('109.245.207.153', 'TFJ9979', '{"modHood":-1,"modAirFilter":-1,"modUnk47":-
1,"modWindows":-1,"modBackWheels":-1,"modExhaust":-
1,"plate":"TFJ9979","modArchCover":-1,"modFrontBumper":-1,"modTrimA":-
1,"modLivery":-1,"modXenon":false,"modHorns":-1,"color2":147,"modDoorSpeaker":-
1,"neonColor":[255,0,255],"modSmokeEnabled":false,"modDashboard":-1,"modSpoilers":-
1,"model":-2052918278,"modSpeakers":-1,"modAPlate":-
1,"pearlescentColor":28,"modBrakes":-1,"tyreSmokeColor":[255,255,255],"modTrimB":-
1,"modRightFender":-1,"modFrontWheels":-1,"modHydrolic":-1,"modSeats":-
1,"modTransmission":-1,"wheelColor":156,"modGrille":-
1,"dirtLevel":4.0,"modVanityPlate":-1,"modFrame":-1,"windowTint":-1,"modFender":-
1,"modSideSkirt":-1,"modOrnaments":-1,"modTank":-1,"modEngineBlock":-1,"extras":
{"1":true},"tankHealth":1000.0,"engineHealth":1000.0,"modTrunk":-
1,"fuelLevel":65.0,"modPlateHolder":-1,"neonEnabled":
[false,false,false,false],"modEngine":-1,"modDial":-1,"modArmor":-
1,"modSteeringWheel":-1,"modAerials":-1,"modSuspension":-
1,"bodyHealth":1000.0,"modRoof":-1,"modRearBumper":-
1,"plateIndex":0,"modTurbo":false,"color1":31,"wheels":0,"modShifterLeavers":-
1,"xenonColor":255,"modStruts":-1}', 'car', 'civ', NULL, 'Unknown', 100, 1,
'Fahrzeug', 'CLS53', 0, NULL, NULL),
('109.175.54.77', 'TLK8468', '{"modTrimB":-1,"modRoof":-1,"modTank":-
1,"color1":0,"modSteeringWheel":-1,"wheels":7,"modTrunk":-1,"modSideSkirt":-
1,"modPlateHolder":-1,"tankHealth":1000.0,"modFrame":-1,"modBrakes":-
1,"color2":0,"modDoorSpeaker":-1,"pearlescentColor":1,"modWindows":-
1,"modOrnaments":-1,"windowTint":-1,"modArmor":-1,"neonEnabled":
[false,false,false,false],"modShifterLeavers":-1,"modGrille":-1,"modDial":-
1,"modArchCover":-1,"modTurbo":false,"extras":[],"modFrontBumper":-
1,"modRightFender":-1,"modTransmission":-1,"modHydrolic":-1,"modLivery":-
1,"plateIndex":3,"model":2084431360,"xenonColor":255,"tyreSmokeColor":
[255,255,255],"modSpeakers":-1,"engineHealth":1000.0,"modSuspension":-
1,"dirtLevel":7.0,"modAPlate":-1,"modAerials":-1,"modFender":-1,"modExhaust":-
1,"modDashboard":-1,"modRearBumper":-1,"modVanityPlate":-1,"neonColor":
[255,0,255],"modHorns":-1,"bodyHealth":1000.0,"modXenon":false,"modAirFilter":-
1,"plate":"TLK8468","modSeats":-1,"modBackWheels":-
1,"modSmokeEnabled":false,"modSpoilers":-1,"modTrimA":-1,"modEngine":-
1,"modEngineBlock":-1,"modUnk47":-1,"modFrontWheels":-1,"wheelColor":27,"modHood":-
1,"fuelLevel":65.0,"modStruts":-1}', 'car', 'civ', NULL, 'Unknown', 100, 1,
'G65amg', 'supersport', 0, NULL, NULL),
('188.246.56.196', 'TNE2528', '{"extras":{"2":true,"1":false},"modTrimB":-
1,"modRoof":-1,"modFender":-1,"modRightFender":-1,"modExhaust":-
1,"modDoorSpeaker":-1,"plate":"TNE2528","modSteeringWheel":-1,"modFrame":-
1,"modAirFilter":-1,"modVanityPlate":-1,"modEngineBlock":-1,"modSideSkirt":-
1,"color2":127,"modEngine":3,"modSuspension":3,"modBackWheels":-1,"modHydrolic":-
1,"modArchCover":-1,"modSpoilers":-1,"neonColor":[0,150,255],"modAerials":-
1,"modPlateHolder":-1,"fuelLevel":64.8,"modHorns":-
1,"wheelColor":0,"modRearBumper":-1,"modArmor":0,"modShifterLeavers":-1,"modHood":-
1,"modWindows":-
1,"bodyHealth":1000.0,"engineHealth":1000.0,"wheels":7,"plateIndex":0,"modAPlate":-
1,"modFrontBumper":-1,"modDial":-1,"modXenon":false,"color1":21,"tyreSmokeColor":
[255,255,255],"neonEnabled":[1,1,1,1],"modStruts":-1,"modTrimA":-1,"windowTint":-
1,"modSpeakers":-
1,"modBrakes":2,"dirtLevel":7.2,"modTransmission":2,"tankHealth":1000.0,"modTank":-
1,"xenonColor":255,"model":1503141430,"modDashboard":-1,"modTurbo":1,"modLivery":-
1,"pearlescentColor":1,"modOrnaments":-1,"modUnk47":-1,"modSeats":-
1,"modFrontWheels":-1,"modSmokeEnabled":false,"modGrille":-1,"modTrunk":-1}',
'car', 'civ', NULL, 'Unknown', 100, 1, 'Fahrzeug', 'divo', 0, NULL, NULL),
('aa24fbd318a2f3c4ee45cbff944911c4361221e0', 'TVB6797', '{"modDashboard":-
1,"modBrakes":0,"model":-1840349445,"dirtLevel":6.3,"modFrame":-1,"modSeats":-
1,"modHood":-1,"wheelColor":156,"modDoorSpeaker":-1,"modSteeringWheel":-
1,"tankHealth":857.2,"windowTint":0,"modSpoilers":-1,"modRoof":-1,"modEngine":-
1,"modTrunk":-1,"modSmokeEnabled":false,"modTrimB":-
1,"plate":"TVB6797","modAPlate":-1,"modWindows":-
1,"plateIndex":0,"bodyHealth":363.4,"modLivery":-1,"extras":[],"modTransmission":-
1,"modPlateHolder":-1,"modXenon":false,"modHorns":-1,"modShifterLeavers":-
1,"neonColor":[0,0,0],"modTrimA":-1,"modGrille":-1,"modFrontBumper":-
1,"modRightFender":-1,"neonEnabled":
[false,false,false,false],"xenonColor":255,"fuelLevel":52.7,"color2":11,"modAirFilt
er":-1,"modBackWheels":-1,"modTurbo":false,"modStruts":-1,"modSpeakers":-
1,"modSideSkirt":-1,"modHydrolic":-1,"modEngineBlock":-1,"modUnk47":-
1,"modFrontWheels":-1,"modArchCover":-1,"modVanityPlate":-1,"modFender":-
1,"wheels":7,"modArmor":-1,"modSuspension":-1,"modExhaust":-
1,"color1":38,"modRearBumper":-1,"modOrnaments":-1,"tyreSmokeColor":
[255,255,255],"modTank":-1,"engineHealth":933.8,"modAerials":-1,"modDial":-
1,"pearlescentColor":38}', 'car', 'civ', NULL, 'Unknown', 100, 1, 'Fahrzeug',
'BugattiVgt', 0, NULL, NULL),
('89ad3a4f1f19fa3b8adf17b11b789de530a1d2d3', 'TYE4165', '{"modWindows":-
1,"modSeats":-1,"modTrimB":-1,"modSmokeEnabled":false,"modSpoilers":-
1,"modTurbo":false,"modXenon":false,"modRightFender":-1,"modFrontBumper":-
1,"dirtLevel":9.0,"modTransmission":-1,"plateIndex":0,"modArchCover":-
1,"color2":55,"plate":"TYE4165","fuelLevel":65.0,"model":1744543800,"modSuspension"
:-1,"modAerials":-1,"modVanityPlate":-1,"neonColor":[255,0,255],"modHood":-
1,"modExhaust":-1,"modStruts":-1,"modLivery":-1,"modSteeringWheel":-
1,"tankHealth":1000.0,"modArmor":-1,"modAPlate":-1,"neonEnabled":
[false,false,false,false],"bodyHealth":1000.0,"modUnk47":-1,"modHorns":-
1,"modRoof":-1,"modFrontWheels":-1,"modTank":-1,"modAirFilter":-1,"modSideSkirt":-
1,"modEngine":-1,"modFender":-1,"wheelColor":156,"modBackWheels":-1,"modDial":-
1,"color1":12,"modOrnaments":-1,"modEngineBlock":-1,"modFrame":-1,"modDashboard":-
1,"modBrakes":-1,"tyreSmokeColor":[255,255,255],"modGrille":-
1,"modShifterLeavers":-1,"modTrunk":-1,"wheels":6,"modDoorSpeaker":-1,"modTrimA":-
1,"engineHealth":1000.0,"pearlescentColor":156,"modHydrolic":-1,"modSpeakers":-
1,"extras":[],"xenonColor":255,"modPlateHolder":-1,"windowTint":-
1,"modRearBumper":-1}', 'car', 'civ', NULL, 'Unknown', 100, 1, 'Fahrzeug', 'z1000',
0, NULL, NULL),
('93.143.160.82', 'TYS0902', '{"modTrimB":-1,"modRoof":-1,"modTank":-
1,"modBackWheels":-1,"modSteeringWheel":-1,"modAPlate":-
1,"engineHealth":1000.0,"modSideSkirt":-1,"modPlateHolder":-
1,"tankHealth":1000.0,"modFrame":-1,"modBrakes":-1,"color2":11,"modDoorSpeaker":-
1,"pearlescentColor":38,"modWindows":-1,"modOrnaments":-1,"windowTint":-
1,"modArmor":-1,"neonEnabled":[false,false,false,false],"modShifterLeavers":-
1,"modVanityPlate":-1,"modDial":-1,"modArchCover":-1,"modTurbo":false,"extras":
[],"modFrontBumper":-1,"modRightFender":-1,"modTransmission":-1,"modHydrolic":-
1,"modLivery":-1,"modUnk47":-1,"model":-1840349445,"dirtLevel":3.0,"modSpeakers":-
1,"modEngineBlock":-1,"modDashboard":-1,"plateIndex":0,"modAirFilter":-
1,"modSpoilers":-1,"modAerials":-1,"modFender":-1,"modExhaust":-1,"modGrille":-
1,"modRearBumper":-1,"xenonColor":255,"neonColor":[0,0,0],"modHorns":-
1,"bodyHealth":999.0,"modStruts":-1,"modSuspension":-
1,"modXenon":false,"wheels":7,"tyreSmokeColor":[255,255,255],"modTrunk":-
1,"modSeats":-1,"modTrimA":-1,"modEngine":-
1,"fuelLevel":64.1,"modSmokeEnabled":false,"modFrontWheels":-
1,"wheelColor":156,"modHood":-1,"plate":"TYS0902","color1":38}', 'car', 'civ',
NULL, 'Unknown', 100, 1, 'Fahrzeug', 'BugattiVgt', 0, NULL, NULL),
('896386080e8cdf219abf4ee615a73517aa8470cc', 'URX0329', '{"modWindows":-
1,"modSeats":-1,"modTrimB":-1,"modSmokeEnabled":false,"modSpoilers":-
1,"modHydrolic":-1,"modOrnaments":-1,"modRightFender":-1,"modFrontBumper":-
1,"dirtLevel":7.0,"modTransmission":-1,"plateIndex":0,"modArchCover":-
1,"color2":38,"plate":"URX0329","fuelLevel":75.0,"model":1125354406,"modSuspension"
:-1,"modAerials":-1,"wheelColor":0,"neonColor":[255,0,255],"modHood":-
1,"modExhaust":-1,"modStruts":-1,"modRearBumper":-1,"modSteeringWheel":-
1,"modSpeakers":-1,"modArmor":-1,"modAPlate":-1,"neonEnabled":
[false,false,false,false],"bodyHealth":1000.0,"modUnk47":-1,"modHorns":-
1,"modRoof":-1,"pearlescentColor":134,"modDial":-
1,"xenonColor":255,"modSideSkirt":-1,"engineHealth":1000.0,"modFender":-
1,"modGrille":-1,"modBackWheels":-1,"modTrunk":-1,"modXenon":false,"modEngine":-
1,"modFrame":-1,"modBrakes":-1,"modDashboard":-1,"tyreSmokeColor":
[255,255,255],"modPlateHolder":-1,"modTank":-1,"modShifterLeavers":-
1,"color1":4,"wheels":0,"modVanityPlate":-1,"modTrimA":-1,"modDoorSpeaker":-
1,"modEngineBlock":-1,"modFrontWheels":-1,"modAirFilter":-1,"extras":
{"1":true,"4":false,"3":false,"2":false},"modTurbo":false,"modLivery":-
1,"windowTint":-1,"tankHealth":1000.0}', 'car', 'civ', NULL, 'Unknown', 100, 1,
'Fahrzeug', 'ocnetrongt', 0, NULL, NULL),
('109.245.207.153', 'VCI3177', '{"extras":
{"2":false,"1":false,"4":false,"3":false},"model":-
204311418,"wheelColor":0,"modFender":-1,"modXenon":false,"modBrakes":-
1,"dirtLevel":9.0,"modArmor":-1,"modTrunk":-1,"plate":"VCI3177","modTransmission":-
1,"modTank":-1,"modDashboard":-1,"modHood":-
1,"modSmokeEnabled":false,"color2":73,"modShifterLeavers":-1,"modTrimA":-
1,"modBackWheels":-1,"modRoof":-1,"modPlateHolder":-1,"modAerials":-
1,"modTurbo":false,"modHydrolic":-1,"modEngineBlock":-1,"modGrille":-
1,"pearlescentColor":73,"modAPlate":-1,"modTrimB":-1,"modFrontBumper":-
1,"xenonColor":255,"modFrame":-1,"modExhaust":-1,"color1":73,"modLivery":-
1,"modRightFender":-1,"modDoorSpeaker":-1,"modEngine":-
1,"fuelLevel":65.0,"modSideSkirt":-1,"modFrontWheels":-1,"neonColor":
[255,0,255],"modStruts":-1,"modSuspension":-1,"modVanityPlate":-1,"neonEnabled":
[false,false,false,false],"modArchCover":-1,"wheels":7,"windowTint":-
1,"modRearBumper":-1,"modWindows":-1,"plateIndex":3,"modSpeakers":-
1,"tankHealth":1000.0,"modHorns":-1,"tyreSmokeColor":[255,255,255],"modDial":-
1,"modSpoilers":-1,"modAirFilter":-1,"modSeats":-1,"modOrnaments":-
1,"bodyHealth":1000.0,"modSteeringWheel":-1,"engineHealth":1000.0,"modUnk47":-1}',
'car', 'civ', NULL, 'Unknown', 100, 1, 'Fahrzeug', 'lp770', 0, NULL, NULL),
('109.245.207.153', 'VKW2063', '{"modHorns":-1,"modSuspension":-1,"modHood":-
1,"modSmokeEnabled":false,"xenonColor":255,"modTrimB":-1,"modSteeringWheel":-
1,"color2":1,"extras":{"1":true},"modAerials":-1,"modDoorSpeaker":-1,"modRoof":-
1,"modTrunk":-1,"modExhaust":-1,"modBackWheels":-1,"model":-
1370111350,"modSpeakers":-1,"modHydrolic":-
1,"wheelColor":6,"plateIndex":0,"windowTint":-1,"color1":27,"modArmor":-
1,"modEngineBlock":-1,"modShifterLeavers":-1,"modBrakes":-
1,"bodyHealth":1000.0,"modXenon":false,"dirtLevel":8.0,"neonColor":
[255,0,255],"modTrimA":-1,"modDashboard":-1,"modRearBumper":-1,"modSeats":-
1,"modTransmission":-1,"fuelLevel":65.0,"modFrontWheels":-1,"modEngine":-
1,"modUnk47":-1,"plate":"VKW2063","modOrnaments":-
1,"engineHealth":1000.0,"neonEnabled":[false,false,false,false],"modWindows":-
1,"modTurbo":false,"modLivery":-1,"pearlescentColor":36,"modGrille":-
1,"modStruts":-1,"wheels":0,"modTank":-1,"modVanityPlate":-1,"modRightFender":-
1,"modSideSkirt":-1,"tyreSmokeColor":[255,255,255],"modFender":-1,"modFrame":-
1,"modAirFilter":-1,"tankHealth":1000.0,"modAPlate":-1,"modPlateHolder":-
1,"modArchCover":-1,"modSpoilers":-1,"modDial":-1,"modFrontBumper":-1}', 'car',
'civ', NULL, 'Unknown', 100, 1, 'Fahrzeug', '720S', 0, NULL, NULL),
('109.245.207.153', 'VLU6613', '{"neonEnabled":
[false,false,false,false],"windowTint":-1,"modTransmission":-1,"modStruts":-
1,"fuelLevel":65.0,"modFrontBumper":-1,"neonColor":[255,0,255],"modDashboard":-
1,"modSideSkirt":-1,"modVanityPlate":-1,"modFrontWheels":-1,"modGrille":-
1,"modDoorSpeaker":-1,"modRoof":-1,"tankHealth":1000.0,"modUnk47":-
1,"modEngineBlock":-1,"modTrimA":-1,"modWindows":-1,"color2":12,"modTrimB":-
1,"xenonColor":255,"modTrunk":-1,"modSpeakers":-1,"modArchCover":-
1,"modPlateHolder":-1,"extras":{"1":true,"2":false},"modBackWheels":-
1,"wheelColor":0,"tyreSmokeColor":[255,255,255],"modSteeringWheel":-1,"modAPlate":-
1,"modExhaust":-1,"dirtLevel":4.0,"modSmokeEnabled":false,"modSpoilers":-
1,"modHydrolic":-1,"modTurbo":false,"modOrnaments":-1,"modRightFender":-
1,"plateIndex":0,"plate":"VLU6613","modFrame":-1,"modHood":-
1,"model":344199304,"pearlescentColor":2,"modAerials":-
1,"color1":38,"modRearBumper":-1,"engineHealth":1000.0,"modBrakes":-
1,"modShifterLeavers":-1,"modLivery":-1,"modEngine":-1,"modDial":-
1,"modAirFilter":-1,"bodyHealth":1000.0,"modSeats":-1,"modArmor":-
1,"modXenon":false,"modHorns":-1,"modFender":-1,"modSuspension":-
1,"wheels":7,"modTank":-1}', 'car', 'civ', NULL, 'Unknown', 100, 1, 'Fahrzeug',
'lp670sv', 0, NULL, NULL),
('109.245.207.153', 'VMN1149', '{"extras":
[],"model":834565937,"wheelColor":111,"modFender":-1,"modXenon":false,"modBrakes":-
1,"dirtLevel":7.0,"modOrnaments":-1,"modTrunk":-
1,"plate":"VMN1149","modTransmission":-1,"modArchCover":-1,"modDashboard":-
1,"modRightFender":-1,"modSmokeEnabled":false,"modDoorSpeaker":-
1,"modShifterLeavers":-1,"modTrimA":-1,"modBackWheels":-1,"modRoof":-
1,"modPlateHolder":-1,"modAerials":-1,"modTurbo":false,"modHydrolic":-
1,"modEngineBlock":-1,"modGrille":-1,"pearlescentColor":111,"modAPlate":-
1,"modTrimB":-1,"modFrontBumper":-1,"xenonColor":255,"modFrame":-1,"modExhaust":-
1,"modUnk47":-1,"modVanityPlate":-1,"modHorns":-1,"color1":111,"modEngine":-
1,"fuelLevel":65.0,"modLivery":-1,"neonEnabled":
[false,false,false,false],"neonColor":[255,0,255],"modStruts":-
1,"engineHealth":1000.0,"modHood":-1,"modSuspension":-1,"modTank":-
1,"color2":111,"windowTint":-1,"tankHealth":1000.0,"modWindows":-
1,"modFrontWheels":-1,"modSpeakers":-1,"modSteeringWheel":-1,"modRearBumper":-
1,"tyreSmokeColor":[255,255,255],"modDial":-1,"modSpoilers":-1,"modSideSkirt":-
1,"modSeats":-1,"modAirFilter":-1,"bodyHealth":1000.0,"plateIndex":3,"modArmor":-
1,"wheels":0}', 'car', 'civ', NULL, 'Unknown', 100, 1, 'Fahrzeug', 'SC18Hartge', 0,
NULL, NULL),
('109.245.207.153', 'WGJ7857', '{"extras":
{"2":true},"model":132777537,"wheelColor":156,"modFender":-
1,"modXenon":false,"modBrakes":-1,"dirtLevel":5.0,"modArmor":-1,"modTrunk":-
1,"plate":"WGJ7857","modTransmission":-1,"modTank":-1,"modDashboard":-1,"modHood":-
1,"modSmokeEnabled":false,"color2":8,"modShifterLeavers":-1,"modTrimA":-
1,"modBackWheels":-1,"modRoof":-1,"modPlateHolder":-1,"modAerials":-
1,"modTurbo":false,"modHydrolic":-1,"modEngineBlock":-1,"modGrille":-
1,"pearlescentColor":134,"modAPlate":-1,"modTrimB":-1,"modFrontBumper":-
1,"xenonColor":255,"modFrame":-1,"modExhaust":-1,"color1":8,"modLivery":-
1,"modRightFender":-1,"modDoorSpeaker":-1,"modEngine":-
1,"fuelLevel":65.0,"modSideSkirt":-1,"modFrontWheels":-1,"neonColor":
[255,0,255],"modStruts":-1,"modSuspension":-1,"modVanityPlate":-1,"neonEnabled":
[false,false,false,false],"modArchCover":-1,"wheels":7,"windowTint":-
1,"modRearBumper":-1,"modWindows":-1,"plateIndex":0,"modSpeakers":-
1,"tankHealth":1000.0,"modHorns":-1,"tyreSmokeColor":[255,255,255],"modDial":-
1,"modSpoilers":-1,"modAirFilter":-1,"modSeats":-1,"modOrnaments":-
1,"bodyHealth":1000.0,"modSteeringWheel":-1,"engineHealth":1000.0,"modUnk47":-1}',
'car', 'civ', NULL, 'Unknown', 100, 1, 'Fahrzeug', 'PwDLGLP570', 0, NULL, NULL),
('109.175.72.128', 'WNK5883',
'{"color1":147,"engineHealth":1000.0,"modExhaust":-1,"modSeats":-
1,"model":1503141430,"bodyHealth":1000.0,"modTrimA":-1,"modLivery":-
1,"modAerials":-1,"modUnk47":-1,"modTrimB":-1,"plateIndex":0,"modSteeringWheel":-
1,"modSmokeEnabled":false,"modSpoilers":-1,"modSpeakers":-
1,"modTransmission":2,"modArchCover":-1,"modRightFender":-1,"modFrontWheels":-
1,"modXenon":false,"modBackWheels":-1,"modFrontBumper":-1,"modOrnaments":-
1,"modRoof":-1,"wheelColor":0,"modTank":-1,"modBrakes":2,"modVanityPlate":-
1,"modShifterLeavers":-1,"wheels":7,"modDial":-1,"modRearBumper":-
1,"modAirFilter":-1,"color2":44,"modStruts":-1,"modWindows":-1,"neonColor":
[255,0,255],"modEngine":3,"modSideSkirt":-1,"tyreSmokeColor":
[255,255,255],"extras":{"2":false,"1":true},"fuelLevel":64.5,"modEngineBlock":-
1,"modArmor":4,"modHydrolic":-1,"modFrame":-1,"modFender":-
1,"pearlescentColor":1,"modSuspension":3,"plate":"WNK5883","windowTint":1,"xenonCol
or":255,"modAPlate":-1,"neonEnabled":[false,false,false,false],"modGrille":-
1,"modPlateHolder":-1,"modHood":-1,"modTrunk":-1,"modHorns":-
1,"dirtLevel":0.0,"modTurbo":1,"modDashboard":-
1,"tankHealth":1000.0,"modDoorSpeaker":-1}', 'car', 'civ', NULL, 'Unknown', 100, 1,
'Fahrzeug', 'divo', 0, NULL, NULL),
('109.245.207.153', 'XBE0394', '{"modHood":-1,"modAirFilter":-1,"modUnk47":-
1,"modWindows":-1,"modBackWheels":3,"modExhaust":-
1,"plate":"XBE0394","modArchCover":-1,"modFrontBumper":-1,"modTrimA":-
1,"modLivery":-1,"modXenon":false,"modHorns":-1,"color2":37,"modDoorSpeaker":-
1,"neonColor":[255,0,255],"modSmokeEnabled":false,"modDashboard":-1,"modSpoilers":-
1,"model":-1404319008,"modSpeakers":-1,"modAPlate":-
1,"pearlescentColor":0,"modBrakes":-1,"tyreSmokeColor":[255,255,255],"modTrimB":-
1,"modRightFender":-1,"modFrontWheels":-1,"modHydrolic":-1,"modSeats":-
1,"modTransmission":-1,"wheelColor":88,"modGrille":-
1,"dirtLevel":10.0,"modVanityPlate":-1,"modFrame":-1,"windowTint":-1,"modFender":-
1,"modSideSkirt":-1,"modOrnaments":-1,"modTank":-1,"modEngineBlock":-1,"extras":
{"10":false},"tankHealth":1000.0,"engineHealth":1000.0,"modTrunk":-
1,"fuelLevel":65.0,"modPlateHolder":-1,"neonEnabled":
[false,false,false,false],"modEngine":-1,"modDial":-1,"modArmor":-
1,"modSteeringWheel":-1,"modAerials":-1,"modSuspension":-
1,"bodyHealth":1000.0,"modRoof":-1,"modRearBumper":-
1,"plateIndex":0,"modTurbo":false,"color1":70,"wheels":0,"modShifterLeavers":-
1,"xenonColor":255,"modStruts":-1}', 'car', 'civ', NULL, 'Unknown', 100, 1,
'Fahrzeug', 'bmwm8', 0, NULL, NULL),
('fa851e9fe6399643acd2696f16ca2c6569379120', 'XFV6559', '{"modSpoilers":-
1,"neonColor":[255,0,255],"pearlescentColor":61,"modTank":-
1,"color1":61,"modAirFilter":-1,"modHydrolic":-1,"modHorns":-
1,"dirtLevel":7.0,"tyreSmokeColor":[255,255,255],"wheelColor":156,"modEngine":-
1,"modTrunk":-1,"neonEnabled":
[false,false,false,false],"plateIndex":0,"modSideSkirt":-1,"modGrille":-
1,"modFrontWheels":-1,"windowTint":-1,"modRightFender":-1,"modOrnaments":-
1,"tankHealth":1000.0,"modSeats":-1,"plate":"XFV6559","modFrame":-1,"modExhaust":-
1,"modArmor":-1,"modHood":-1,"modBackWheels":-1,"modTransmission":-
1,"modSmokeEnabled":false,"modLivery":-1,"modStruts":-
1,"model":1975081724,"modRoof":-1,"modWindows":-1,"modVanityPlate":-
1,"modDashboard":-1,"modSteeringWheel":-1,"modRearBumper":-1,"modTrimA":-
1,"xenonColor":255,"modTrimB":-1,"modDial":-1,"wheels":7,"modArchCover":-
1,"modAerials":-1,"modUnk47":-1,"modXenon":false,"modShifterLeavers":-
1,"engineHealth":1000.0,"modFrontBumper":-1,"modEngineBlock":-
1,"color2":120,"modTurbo":false,"extras":{"1":true},"modDoorSpeaker":-
1,"modSuspension":-1,"modSpeakers":-
1,"fuelLevel":65.0,"bodyHealth":1000.0,"modAPlate":-1,"modBrakes":-1,"modFender":-
1,"modPlateHolder":-1}', 'car', 'civ', NULL, 'Unknown', 100, 1, 'Fahrzeug',
'bolide', 0, NULL, NULL),
('896386080e8cdf219abf4ee615a73517aa8470cc', 'XGP9961', '{"modWindows":-
1,"modSeats":-1,"modTrimB":-1,"modSmokeEnabled":false,"modSpoilers":-
1,"modHydrolic":-1,"modOrnaments":-1,"modRightFender":-1,"modFrontBumper":-
1,"dirtLevel":5.0,"modTransmission":-1,"plateIndex":0,"modArchCover":-
1,"color2":8,"plate":"XGP9961","fuelLevel":65.0,"model":132777537,"modSuspension":-
1,"modAerials":-1,"wheelColor":156,"neonColor":[255,0,255],"modHood":-
1,"modExhaust":-1,"modStruts":-1,"modRearBumper":-1,"modSteeringWheel":-
1,"modSpeakers":-1,"modArmor":-1,"modAPlate":-1,"neonEnabled":
[false,false,false,false],"bodyHealth":1000.0,"modUnk47":-1,"modHorns":-
1,"modRoof":-1,"pearlescentColor":134,"modDial":-
1,"xenonColor":255,"modSideSkirt":-1,"engineHealth":1000.0,"modFender":-
1,"modGrille":-1,"modBackWheels":-1,"modTrunk":-1,"modXenon":false,"modEngine":-
1,"modFrame":-1,"modBrakes":-1,"modDashboard":-1,"tyreSmokeColor":
[255,255,255],"modPlateHolder":-1,"modTank":-1,"modShifterLeavers":-
1,"color1":8,"wheels":7,"modVanityPlate":-1,"modTrimA":-1,"modDoorSpeaker":-
1,"modEngineBlock":-1,"modFrontWheels":-1,"modAirFilter":-1,"extras":
{"2":false},"modTurbo":false,"modLivery":-1,"windowTint":-1,"tankHealth":1000.0}',
'car', 'civ', NULL, 'Unknown', 100, 1, 'Fahrzeug', 'PwDLGLP570', 0, NULL, NULL),
('93.143.160.82', 'XWA0017', '{"modTrimB":-1,"modRoof":-1,"modTank":-
1,"modBackWheels":-1,"modSteeringWheel":-1,"modAPlate":-
1,"engineHealth":1000.0,"modSideSkirt":-1,"modPlateHolder":-
1,"tankHealth":1000.0,"modFrame":-1,"modBrakes":-1,"color2":120,"modDoorSpeaker":-
1,"pearlescentColor":61,"modWindows":-1,"modOrnaments":-1,"windowTint":-
1,"modArmor":-1,"neonEnabled":[false,false,false,false],"modShifterLeavers":-
1,"modVanityPlate":-1,"modDial":-1,"modArchCover":-1,"modTurbo":false,"extras":
{"1":true},"modFrontBumper":-1,"modRightFender":-1,"modTransmission":-
1,"modHydrolic":-1,"modLivery":-1,"modUnk47":-
1,"model":1975081724,"dirtLevel":9.1,"modSpeakers":-1,"modEngineBlock":-
1,"modDashboard":-1,"plateIndex":0,"modAirFilter":-1,"modSpoilers":-
1,"modAerials":-1,"modFender":-1,"modExhaust":-1,"modGrille":-1,"modRearBumper":-
1,"xenonColor":255,"neonColor":[0,0,0],"modHorns":-
1,"bodyHealth":1000.0,"modStruts":-1,"modSuspension":-
1,"modXenon":false,"wheels":7,"tyreSmokeColor":[255,255,255],"modTrunk":-
1,"modSeats":-1,"modTrimA":-1,"modEngine":-
1,"fuelLevel":64.9,"modSmokeEnabled":false,"modFrontWheels":-
1,"wheelColor":156,"modHood":-1,"plate":"XWA0017","color1":61}', 'car', 'civ',
NULL, 'Unknown', 100, 1, 'Fahrzeug', 'bolide', 0, NULL, NULL),
('109.245.207.153', 'YAV1997', '{"modHood":-1,"modAirFilter":-1,"modUnk47":-
1,"modWindows":-1,"modBackWheels":-1,"modExhaust":-
1,"plate":"YAV1997","modArchCover":-1,"modFrontBumper":-1,"modTrimA":-
1,"modLivery":-1,"modXenon":false,"modHorns":-1,"color2":31,"modDoorSpeaker":-
1,"neonColor":[255,0,255],"modSmokeEnabled":false,"modDashboard":-1,"modSpoilers":-
1,"model":-228528329,"modSpeakers":-1,"modAPlate":-
1,"pearlescentColor":31,"modBrakes":-1,"tyreSmokeColor":[255,255,255],"modTrimB":-
1,"modRightFender":-1,"modFrontWheels":-1,"modHydrolic":-1,"modSeats":-
1,"modTransmission":-1,"wheelColor":156,"modGrille":-
1,"dirtLevel":7.0,"modVanityPlate":-1,"modFrame":-1,"windowTint":-1,"modFender":-
1,"modSideSkirt":-1,"modOrnaments":-1,"modTank":-1,"modEngineBlock":-1,"extras":
[],"tankHealth":1000.0,"engineHealth":1000.0,"modTrunk":-
1,"fuelLevel":65.0,"modPlateHolder":-1,"neonEnabled":
[false,false,false,false],"modEngine":-1,"modDial":-1,"modArmor":-
1,"modSteeringWheel":-1,"modAerials":-1,"modSuspension":-
1,"bodyHealth":1000.0,"modRoof":-1,"modRearBumper":-
1,"plateIndex":0,"modTurbo":false,"color1":27,"wheels":0,"modShifterLeavers":-
1,"xenonColor":255,"modStruts":-1}', 'car', 'civ', NULL, 'Unknown', 100, 1,
'Fahrzeug', 'evo9', 0, NULL, NULL),
('109.245.207.153', 'YLD1757', '{"modHood":-1,"modAirFilter":-1,"modUnk47":-
1,"modWindows":-1,"modBackWheels":-1,"modExhaust":-
1,"plate":"YLD1757","modArchCover":-1,"modFrontBumper":-1,"modTrimA":-
1,"modLivery":-1,"modXenon":false,"modHorns":-1,"color2":32,"modDoorSpeaker":-
1,"neonColor":[255,0,255],"modSmokeEnabled":false,"modDashboard":-1,"modSpoilers":-
1,"model":-1453762943,"modSpeakers":-1,"modAPlate":-
1,"pearlescentColor":122,"modBrakes":-1,"tyreSmokeColor":[255,255,255],"modTrimB":-
1,"modRightFender":-1,"modFrontWheels":-1,"modHydrolic":-1,"modSeats":-
1,"modTransmission":-1,"wheelColor":0,"modGrille":-
1,"dirtLevel":8.0,"modVanityPlate":-1,"modFrame":-1,"windowTint":-1,"modFender":-
1,"modSideSkirt":-1,"modOrnaments":-1,"modTank":-1,"modEngineBlock":-1,"extras":
{"3":false,"1":true},"tankHealth":1000.0,"engineHealth":1000.0,"modTrunk":-
1,"fuelLevel":80.0,"modPlateHolder":-1,"neonEnabled":
[false,false,false,false],"modEngine":-1,"modDial":-1,"modArmor":-
1,"modSteeringWheel":-1,"modAerials":-1,"modSuspension":-
1,"bodyHealth":1000.0,"modRoof":-1,"modRearBumper":-
1,"plateIndex":5,"modTurbo":false,"color1":147,"wheels":3,"modShifterLeavers":-
1,"xenonColor":255,"modStruts":-1}', 'car', 'civ', NULL, 'Unknown', 100, 1,
'Fahrzeug', 'PwDGWagon', 0, NULL, NULL),
('109.245.207.153', 'YSG3090', '{"neonEnabled":
[false,false,false,false],"windowTint":-1,"modTransmission":-1,"modStruts":-
1,"fuelLevel":80.0,"modFrontBumper":-1,"neonColor":[255,0,255],"modDashboard":-
1,"modSideSkirt":-1,"modVanityPlate":-1,"modFrontWheels":-1,"modGrille":-
1,"modDoorSpeaker":-1,"modRoof":-1,"tankHealth":1000.0,"modUnk47":-
1,"modEngineBlock":-1,"modTrimA":-1,"modWindows":-1,"color2":32,"modTrimB":-
1,"xenonColor":255,"modTrunk":-1,"modSpeakers":-1,"modArchCover":-
1,"modPlateHolder":-1,"extras":{"1":true,"3":false},"modBackWheels":-
1,"wheelColor":0,"tyreSmokeColor":[255,255,255],"modSteeringWheel":-1,"modAPlate":-
1,"modExhaust":-1,"dirtLevel":7.0,"modSmokeEnabled":false,"modSpoilers":-
1,"modHydrolic":-1,"modTurbo":false,"modOrnaments":-1,"modRightFender":-
1,"plateIndex":5,"plate":"YSG3090","modFrame":-1,"modHood":-1,"model":-
1453762943,"pearlescentColor":122,"modAerials":-1,"color1":147,"modRearBumper":-
1,"engineHealth":1000.0,"modBrakes":-1,"modShifterLeavers":-1,"modLivery":-
1,"modEngine":-1,"modDial":-1,"modAirFilter":-1,"bodyHealth":1000.0,"modSeats":-
1,"modArmor":-1,"modXenon":false,"modHorns":-1,"modFender":-1,"modSuspension":-
1,"wheels":3,"modTank":-1}', 'car', 'civ', NULL, 'Unknown', 100, 1, 'Fahrzeug',
'PwDGWagon', 0, NULL, NULL),
('630d0925b2b4eba1194f6cbe366dc576c7e242dd', 'YXJ4505', '{"modSpoilers":-
1,"neonColor":[255,0,255],"pearlescentColor":134,"modTank":-
1,"color1":8,"modAirFilter":-1,"modSpeakers":-1,"modHorns":-
1,"dirtLevel":4.0,"tyreSmokeColor":[255,255,255],"wheelColor":156,"modEngine":-
1,"modShifterLeavers":-1,"neonEnabled":
[false,false,false,false],"plateIndex":0,"modSideSkirt":-1,"modGrille":-
1,"modAerials":-1,"windowTint":-1,"modRightFender":-1,"modOrnaments":-
1,"tankHealth":1000.0,"modSeats":-1,"plate":"YXJ4505","modFrame":-1,"modExhaust":-
1,"modArmor":-1,"modHood":-1,"modBackWheels":-1,"modTransmission":-
1,"modSmokeEnabled":false,"modLivery":-1,"modStruts":-
1,"model":2046572318,"modArchCover":-1,"modWindows":-1,"modVanityPlate":-
1,"modDashboard":-1,"modXenon":false,"modRearBumper":-1,"modTrimA":-
1,"xenonColor":255,"modTrimB":-1,"modDial":-1,"wheels":0,"modSteeringWheel":-
1,"modTrunk":-1,"modUnk47":-1,"modEngineBlock":-1,"modPlateHolder":-
1,"engineHealth":1000.0,"modFrontBumper":-1,"modFender":-1,"modFrontWheels":-
1,"color2":8,"modTurbo":false,"modDoorSpeaker":-1,"modSuspension":-1,"modRoof":-
1,"extras":[],"bodyHealth":1000.0,"modAPlate":-1,"modBrakes":-
1,"fuelLevel":80.0,"modHydrolic":-1}', 'car', 'civ', NULL, 'Unknown', 100, 1,
'Fahrzeug', '911turboS', 0, NULL, NULL),
('9df7ecd455c8ec9885a7b110a90e161744dabdbd', 'ZGR1796', '{"modDashboard":-
1,"modBrakes":-1,"model":-1840349445,"dirtLevel":3.9,"modFrame":-1,"modSeats":-
1,"modHood":-1,"wheelColor":156,"modDoorSpeaker":-1,"modSteeringWheel":-
1,"tankHealth":851.2,"tyreSmokeColor":[255,255,255],"modSpoilers":-1,"modRoof":-
1,"modEngine":-1,"wheels":7,"modSmokeEnabled":false,"modTrimB":-
1,"plate":"ZGR1796","modAPlate":-1,"modWindows":-
1,"plateIndex":0,"bodyHealth":491.2,"modLivery":-1,"extras":[],"modFrontWheels":-
1,"modPlateHolder":-1,"modXenon":false,"modHorns":-1,"modShifterLeavers":-
1,"neonColor":[0,0,0],"modTrimA":-1,"modGrille":-1,"modFrontBumper":-
1,"modRightFender":-1,"neonEnabled":
[false,false,false,false],"xenonColor":255,"fuelLevel":61.4,"color2":11,"modAirFilt
er":-1,"modBackWheels":-1,"modTurbo":false,"modStruts":-1,"modSpeakers":-
1,"modSideSkirt":-1,"modHydrolic":-1,"modEngineBlock":-1,"modSuspension":-
1,"modTransmission":-1,"windowTint":-1,"modVanityPlate":-1,"modUnk47":-
1,"modArchCover":-1,"modArmor":-1,"modRearBumper":-1,"modFender":-
1,"color1":38,"modAerials":-1,"modOrnaments":-1,"modExhaust":-1,"modTank":-
1,"engineHealth":999.6,"modTrunk":-1,"modDial":-1,"pearlescentColor":38}', 'car',
'civ', NULL, 'Unknown', 100, 1, 'A', 'BugattiVgt', 0, NULL, NULL),
('93.143.160.82', 'ZIS6881', '{"modTrimB":-1,"modRoof":-1,"modTank":-
1,"modBackWheels":-1,"modSteeringWheel":-1,"modAPlate":-
1,"engineHealth":1000.0,"modSideSkirt":-1,"modPlateHolder":-
1,"tankHealth":999.7,"modFrame":-1,"modBrakes":-1,"color2":111,"modDoorSpeaker":-
1,"pearlescentColor":111,"modWindows":-1,"modOrnaments":-1,"windowTint":-
1,"modArmor":-1,"neonEnabled":[false,false,false,false],"modShifterLeavers":-
1,"modVanityPlate":-1,"modDial":-1,"modArchCover":-1,"modTurbo":false,"extras":
[],"modFrontBumper":-1,"modRightFender":-1,"modTransmission":-1,"modHydrolic":-
1,"modLivery":-1,"modUnk47":-1,"model":834565937,"dirtLevel":4.1,"modSpeakers":-
1,"modEngineBlock":-1,"modDashboard":-1,"plateIndex":0,"modAirFilter":-
1,"modSpoilers":-1,"modAerials":-1,"modFender":-1,"modExhaust":-1,"modGrille":-
1,"modRearBumper":-1,"xenonColor":255,"neonColor":[0,0,0],"modHorns":-
1,"bodyHealth":997.5,"modStruts":-1,"modSuspension":-
1,"modXenon":false,"wheels":0,"tyreSmokeColor":[255,255,255],"modTrunk":-
1,"modSeats":-1,"modTrimA":-1,"modEngine":-
1,"fuelLevel":64.2,"modSmokeEnabled":false,"modFrontWheels":-
1,"wheelColor":111,"modHood":-1,"plate":"ZIS6881","color1":111}', 'car', 'civ',
NULL, 'Unknown', 100, 1, 'MOJE VOZILO', 'SC18Hartge', 0, NULL, NULL),
('109.245.207.153', 'ZJH5311', '{"neonEnabled":
[false,false,false,false],"windowTint":-1,"modTransmission":-1,"modStruts":-
1,"fuelLevel":80.0,"modFrontBumper":-1,"neonColor":[255,0,255],"modDashboard":-
1,"modSideSkirt":-1,"modVanityPlate":-1,"modFrontWheels":-1,"modGrille":-
1,"modDoorSpeaker":-1,"modRoof":-1,"tankHealth":1000.0,"modUnk47":-
1,"modEngineBlock":-1,"modTrimA":-1,"modWindows":-1,"color2":70,"modTrimB":-
1,"xenonColor":255,"modTrunk":-1,"modSpeakers":-1,"modArchCover":-
1,"modPlateHolder":-1,"extras":[],"modBackWheels":-
1,"wheelColor":156,"tyreSmokeColor":[255,255,255],"modSteeringWheel":-
1,"modAPlate":-1,"modExhaust":-
1,"dirtLevel":9.0,"modSmokeEnabled":false,"modSpoilers":-1,"modHydrolic":-
1,"modTurbo":false,"modOrnaments":-1,"modRightFender":-
1,"plateIndex":0,"plate":"ZJH5311","modFrame":-1,"modHood":-
1,"model":1454998807,"pearlescentColor":63,"modAerials":-
1,"color1":63,"modRearBumper":-1,"engineHealth":1000.0,"modBrakes":-
1,"modShifterLeavers":-1,"modLivery":-1,"modEngine":-1,"modDial":-
1,"modAirFilter":-1,"bodyHealth":1000.0,"modSeats":-1,"modArmor":-
1,"modXenon":false,"modHorns":-1,"modFender":-1,"modSuspension":-
1,"wheels":7,"modTank":-1}', 'car', 'civ', NULL, 'Unknown', 100, 1, 'Fahrzeug',
'rmodsian', 0, NULL, NULL),
('109.245.207.153', 'ZZW6403', '{"modHood":-1,"modAirFilter":-1,"modUnk47":-
1,"modWindows":-1,"modBackWheels":-1,"modExhaust":-
1,"plate":"ZZW6403","modArchCover":-1,"modFrontBumper":-1,"modTrimA":-
1,"modLivery":-1,"modXenon":false,"modHorns":-1,"color2":120,"modDoorSpeaker":-
1,"neonColor":[255,0,255],"modSmokeEnabled":false,"modDashboard":-1,"modSpoilers":-
1,"model":-61757267,"modSpeakers":-1,"modAPlate":-
1,"pearlescentColor":61,"modBrakes":-1,"tyreSmokeColor":[255,255,255],"modTrimB":-
1,"modRightFender":-1,"modFrontWheels":-1,"modHydrolic":-1,"modSeats":-
1,"modTransmission":-1,"wheelColor":156,"modGrille":-
1,"dirtLevel":5.0,"modVanityPlate":-1,"modFrame":-1,"windowTint":-1,"modFender":-
1,"modSideSkirt":-1,"modOrnaments":-1,"modTank":-1,"modEngineBlock":-1,"extras":
[],"tankHealth":1000.0,"engineHealth":1000.0,"modTrunk":-
1,"fuelLevel":65.0,"modPlateHolder":-1,"neonEnabled":
[false,false,false,false],"modEngine":-1,"modDial":-1,"modArmor":-
1,"modSteeringWheel":-1,"modAerials":-1,"modSuspension":-
1,"bodyHealth":1000.0,"modRoof":-1,"modRearBumper":-
1,"plateIndex":0,"modTurbo":false,"color1":61,"wheels":7,"modShifterLeavers":-
1,"xenonColor":255,"modStruts":-1}', 'car', 'civ', NULL, 'Unknown', 100, 1,
'Fahrzeug', 'bmistralw16', 0, NULL, NULL);

-- Dumping structure for table sokac.ox_inventory


CREATE TABLE IF NOT EXISTS `ox_inventory` (
`owner` varchar(60) DEFAULT NULL,
`name` varchar(100) NOT NULL,
`data` longtext DEFAULT NULL,
`lastupdated` timestamp NULL DEFAULT current_timestamp() ON UPDATE
current_timestamp(),
UNIQUE KEY `owner` (`owner`,`name`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

-- Dumping data for table sokac.ox_inventory: ~11 rows (approximately)


INSERT INTO `ox_inventory` (`owner`, `name`, `data`, `lastupdated`) VALUES
('', 'society_gsf', '[{"name":"WEAPON_PISTOL","count":1,"metadata":
{"ammo":0,"components":
[],"serial":"715069BZJ121476","durability":100,"registered":"Armin"},"slot":2},
{"name":"WEAPON_PISTOL","count":1,"metadata":{"ammo":0,"components":
[],"serial":"477895AZX982033","durability":100,"registered":"Armin"},"slot":3},
{"name":"WEAPON_PISTOL","count":1,"metadata":{"ammo":0,"components":
[],"serial":"267275EDT452442","durability":100,"registered":"Armin"},"slot":4},
{"name":"WEAPON_PISTOL","count":1,"metadata":{"ammo":0,"components":
[],"serial":"798087PQA253936","durability":100,"registered":"Armin"},"slot":5},
{"name":"ammo-9","count":400,"slot":6}]', '2023-01-14 17:47:43'),
('', 'society_yakuza', '[{"name":"bandage","count":3,"slot":1},
{"name":"lockpick","count":1,"slot":2},{"name":"money","count":80,"slot":3},
{"name":"WEAPON_PISTOL","count":1,"metadata":{"ammo":0,"components":
[],"serial":"Oruzarnica","registered":"Xindalu09
***********","durability":100},"slot":4},
{"name":"WEAPON_CROWBAR","count":1,"metadata":{"components":
[],"durability":93.20000000000039},"slot":5}]', '2023-01-14 22:47:45'),
('', 'society_crnogorci', '[{"name":"WEAPON_PISTOL","count":1,"metadata":
{"ammo":11,"components":
[],"serial":"483478QTF909898","durability":99.9,"registered":"viiktorx69"},"slot":1
},{"name":"WEAPON_CROWBAR","count":1,"metadata":{"components":
[],"durability":99.70000000000002},"slot":2},
{"name":"money","count":72968,"slot":3},{"name":"ammo-9","count":284,"slot":4},
{"name":"water","count":4,"slot":5},{"name":"cola","count":4,"slot":6},
{"name":"hotdog","count":2,"slot":7},{"name":"WEAPON_PISTOL","count":1,"metadata":
{"ammo":12,"components":
[],"serial":"Oruzarnica","durability":100,"registered":"Armin"},"slot":11},
{"name":"WEAPON_PISTOL","count":1,"metadata":{"ammo":12,"components":
[],"serial":"972217XJB786047","durability":96.80000000000018,"registered":"PAVEL"},
"slot":12}]', '2023-01-14 22:17:45'),
('', 'society_brazilci', '[{"slot":1,"name":"ammo-9","count":200},
{"slot":2,"name":"list_trave","count":71}]', '2023-01-15 00:49:21'),
('', 'society_bloods', '[{"name":"money","count":270070,"slot":1},
{"name":"list_trave","count":8,"slot":2}]', '2023-01-14 21:07:44'),
('', 'society_pinkpanteri',
'[{"slot":1,"name":"WEAPON_PISTOL","count":1,"metadata":{"registered":"uauaua
klanac","ammo":2,"serial":"752181HXI964810","components":
[],"durability":97.20000000000016}},
{"slot":2,"name":"WEAPON_PISTOL","count":1,"metadata":
{"registered":"nikolaking55","ammo":0,"components":
[],"serial":"617950LVS978419","durability":100}},
{"slot":3,"name":"WEAPON_PISTOL","count":1,"metadata":
{"registered":"Lea","ammo":0,"components":
[],"serial":"751416CEB801102","durability":100}},
{"slot":4,"name":"WEAPON_PISTOL","count":1,"metadata":
{"registered":"kIMA","ammo":0,"components":
[],"serial":"938051GKY531376","durability":100}},
{"slot":5,"name":"WEAPON_PISTOL","count":1,"metadata":
{"registered":"M0nesy","ammo":0,"components":
[],"serial":"648335VBX480138","durability":100}},
{"slot":6,"name":"WEAPON_PISTOL","count":1,"metadata":
{"registered":"Mixi","ammo":0,"components":
[],"serial":"394986IJF977537","durability":100}},
{"slot":7,"name":"WEAPON_PISTOL","count":1,"metadata":
{"registered":"Vule.","ammo":0,"components":
[],"serial":"670417RLL181369","durability":100}},
{"slot":8,"name":"WEAPON_PISTOL","count":1,"metadata":{"registered":"UKA
MORZ","ammo":0,"components":[],"serial":"153463JIP187574","durability":100}},
{"slot":9,"name":"WEAPON_PISTOL","count":1,"metadata":
{"registered":"Vule.","ammo":12,"components":
[],"serial":"Oruzarnica","durability":98.80000000000008}},
{"slot":10,"name":"WEAPON_PISTOL","count":1,"metadata":
{"registered":"xdZaFaX","ammo":8,"components":
[],"serial":"152903FSC480011","durability":99.40000000000004}},
{"slot":11,"name":"WEAPON_PISTOL","count":1,"metadata":
{"registered":"nikolaking55","ammo":11,"components":
[],"serial":"802634NXT443396","durability":98.80000000000008}},
{"slot":12,"name":"WEAPON_SNSPISTOL","count":1,"metadata":
{"registered":"nikolaking55","ammo":0,"components":
[],"serial":"272408GZD583505","durability":100}},
{"slot":13,"name":"WEAPON_KNIFE","count":1,"metadata":{"components":
[],"durability":100}},{"slot":14,"name":"WEAPON_BAT","count":1,"metadata":
{"components":[],"durability":100}},{"slot":15,"name":"list_trave2","count":21}]',
'2023-01-15 00:59:21'),
('', 'society_vagos', '[{"name":"ammo-9","count":450,"slot":26}]', '2023-01-
14 22:57:45'),
('', 'society_escobar',
'[{"slot":1,"name":"WEAPON_PISTOL","count":1,"metadata":
{"registered":"Lea","ammo":12,"serial":"Oruzarnica","components":
[],"durability":97.60000000000014}},
{"slot":2,"name":"WEAPON_PISTOL","count":1,"metadata":
{"registered":"petko","ammo":12,"serial":"644960LNG217058","components":
[],"durability":100}},{"slot":3,"name":"ammo-9","count":1938},
{"slot":5,"name":"money","count":20868},
{"slot":6,"name":"WEAPON_PISTOL","count":1,"metadata":{"registered":"Agent
Pena","ammo":11,"serial":"674133QLO803811","components":
[],"durability":97.10000000000017}},
{"slot":7,"name":"WEAPON_PISTOL","count":1,"metadata":
{"registered":"easy","ammo":0,"serial":"466167POL736194","components":
[],"durability":98.80000000000008}},
{"slot":8,"name":"WEAPON_STUNGUN","count":1,"metadata":
{"registered":"easy","components":[],"durability":99.9}},
{"slot":9,"name":"WEAPON_PISTOL","count":1,"metadata":
{"registered":"Hare","ammo":6,"serial":"241915PQG264547","components":
[],"durability":96.90000000000018}},
{"slot":10,"name":"WEAPON_PISTOL","count":1,"metadata":
{"registered":"petko","ammo":12,"serial":"345189FBC616845","components":
[],"durability":97.30000000000016}},
{"slot":11,"name":"WEAPON_PISTOL","count":1,"metadata":
{"registered":"@soloforte","ammo":10,"serial":"563701POL357392","components":
[],"durability":100}},{"slot":12,"name":"WEAPON_PISTOL","count":1,"metadata":
{"registered":"@soloforte","ammo":10,"components":
[],"serial":"848713POL820248","durability":100}},
{"slot":13,"name":"WEAPON_PISTOL","count":1,"metadata":
{"registered":"easy","ammo":0,"serial":"502810POL193185","components":
[],"durability":100}},{"slot":14,"name":"WEAPON_PISTOL","count":1,"metadata":
{"registered":"LEROJE","ammo":11,"serial":"Oruzarnica","components":
[],"durability":99.40000000000002}},
{"slot":15,"name":"WEAPON_PISTOL","count":1,"metadata":{"registered":"Xindalu09
***********","ammo":6,"serial":"Oruzarnica","components":
[],"durability":97.60000000000014}},
{"slot":16,"name":"WEAPON_PISTOL","count":1,"metadata":
{"registered":"roccko9","ammo":0,"serial":"583161OJW654264","components":
[],"durability":100}},{"slot":17,"name":"WEAPON_PISTOL","count":1,"metadata":
{"registered":"easy","ammo":12,"serial":"941522POL843949","components":
[],"durability":100}},{"slot":18,"name":"WEAPON_PISTOL","count":1,"metadata":
{"registered":"Jerema","ammo":12,"serial":"Oruzarnica","components":
[],"durability":100}},{"slot":19,"name":"WEAPON_PISTOL","count":1,"metadata":
{"registered":"daligarata","ammo":11,"serial":"Oruzarnica","components":
[],"durability":88.80000000000064}},
{"slot":20,"name":"WEAPON_PISTOL","count":1,"metadata":
{"registered":"Vule.","ammo":10,"serial":"Oruzarnica","components":
[],"durability":99.30000000000004}},{"slot":21,"name":"burger","count":5},
{"slot":22,"name":"jewels","count":118},
{"slot":23,"name":"WEAPON_CARBINERIFLE","count":1,"metadata":
{"registered":"@soloforte","ammo":0,"serial":"467078EPW332612","components":
[],"durability":99.39999999999998}},
{"slot":24,"name":"WEAPON_KNIFE","count":1,"metadata":{"components":
[],"durability":100}}]', '2023-01-15 00:29:21'),
('', 'Pink Panteri', '[{"name":"armour","count":400,"slot":1}]', '2023-03-19
19:00:31'),
('79.140.150.181', '', '[{"metadata":
{"serial":"783310ZLK281969","components":
[],"durability":100,"ammo":0,"registered":"Andzi
God"},"slot":1,"name":"WEAPON_SPECIALCARBINE","count":1},{"metadata":
{"serial":"601282TWN232337","components":
[],"durability":100,"ammo":0,"registered":"Andzi
God"},"slot":2,"name":"WEAPON_CARBINERIFLE","count":1},
{"slot":3,"name":"ifak","count":400},{"metadata":
{"serial":"496821HYY429424","components":
[],"durability":100,"ammo":0,"registered":"Andzi
God"},"slot":4,"name":"WEAPON_PISTOL","count":1},{"metadata":
{"serial":"356614DGP616857","components":
[],"durability":100,"ammo":0,"registered":"Andzi
God"},"slot":5,"name":"WEAPON_PISTOL","count":1},{"metadata":
{"serial":"141625FEC308446","components":
[],"durability":100,"ammo":0,"registered":"Andzi
God"},"slot":6,"name":"WEAPON_PISTOL","count":1},{"metadata":
{"serial":"786534ADS256945","components":
[],"durability":100,"ammo":0,"registered":"Andzi
God"},"slot":7,"name":"WEAPON_PISTOL","count":1},{"metadata":
{"serial":"755596CNG978181","components":
[],"durability":100,"ammo":0,"registered":"Andzi
God"},"slot":8,"name":"WEAPON_PISTOL","count":1},{"metadata":
{"serial":"431117BAW177182","components":
[],"durability":100,"ammo":0,"registered":"Andzi
God"},"slot":9,"name":"WEAPON_PISTOL","count":1},{"metadata":
{"serial":"332402LSE413371","components":
[],"durability":100,"ammo":0,"registered":"Andzi
God"},"slot":10,"name":"WEAPON_PISTOL","count":1},{"metadata":
{"serial":"165935XKX460791","components":
[],"durability":100,"ammo":0,"registered":"Andzi
God"},"slot":11,"name":"WEAPON_PISTOL","count":1},{"metadata":
{"serial":"879202VXW561342","components":
[],"durability":100,"ammo":0,"registered":"Andzi
God"},"slot":12,"name":"WEAPON_PISTOL","count":1},{"metadata":
{"serial":"299242EGH711941","components":
[],"durability":100,"ammo":0,"registered":"Andzi
God"},"slot":13,"name":"WEAPON_PISTOL","count":1},{"metadata":
{"serial":"149724SSE699633","components":
[],"durability":100,"ammo":0,"registered":"Andzi
God"},"slot":14,"name":"WEAPON_PISTOL","count":1},{"metadata":
{"serial":"192036YNH699388","components":
[],"durability":100,"ammo":0,"registered":"Andzi
God"},"slot":15,"name":"WEAPON_PISTOL","count":1},{"metadata":
{"serial":"831961XEC154766","components":
[],"durability":100,"ammo":0,"registered":"Andzi
God"},"slot":16,"name":"WEAPON_PISTOL","count":1},{"metadata":
{"serial":"502370ZYG148618","components":
[],"durability":100,"ammo":0,"registered":"Andzi
God"},"slot":17,"name":"WEAPON_PISTOL","count":1},{"metadata":
{"serial":"659300WTG844028","components":
[],"durability":100,"ammo":0,"registered":"Andzi
God"},"slot":18,"name":"WEAPON_PISTOL","count":1},{"metadata":
{"serial":"496097QVN670195","components":
[],"durability":100,"ammo":0,"registered":"Andzi
God"},"slot":19,"name":"WEAPON_PISTOL","count":1},{"metadata":
{"serial":"980298SIB689862","components":
[],"durability":100,"ammo":0,"registered":"Andzi
God"},"slot":20,"name":"WEAPON_PISTOL","count":1},{"metadata":
{"serial":"249330DPA970589","components":
[],"durability":100,"ammo":0,"registered":"Andzi
God"},"slot":21,"name":"WEAPON_PISTOL","count":1},{"metadata":
{"serial":"669933TQN298383","components":
[],"durability":100,"ammo":0,"registered":"Andzi
God"},"slot":22,"name":"WEAPON_PISTOL","count":1},{"metadata":
{"serial":"402972BVX617579","components":
[],"durability":100,"ammo":0,"registered":"Andzi
God"},"slot":23,"name":"WEAPON_PISTOL","count":1},{"metadata":
{"serial":"881776VZI110587","components":
[],"durability":100,"ammo":0,"registered":"Andzi
God"},"slot":24,"name":"WEAPON_PISTOL","count":1},{"metadata":
{"serial":"302397JNF634142","components":
[],"durability":100,"ammo":0,"registered":"Andzi
God"},"slot":25,"name":"WEAPON_PISTOL","count":1},{"metadata":
{"serial":"649546YAK867402","components":
[],"durability":100,"ammo":0,"registered":"Andzi
God"},"slot":26,"name":"WEAPON_PISTOL","count":1},{"metadata":
{"serial":"908918BAH686019","components":
[],"durability":100,"ammo":0,"registered":"Andzi
God"},"slot":27,"name":"WEAPON_PISTOL","count":1},{"metadata":
{"serial":"895001XKM673666","components":
[],"durability":100,"ammo":0,"registered":"Andzi
God"},"slot":28,"name":"WEAPON_PISTOL","count":1},{"metadata":
{"serial":"774988JWN716950","components":
[],"durability":100,"ammo":0,"registered":"Andzi
God"},"slot":29,"name":"WEAPON_PISTOL","count":1},{"metadata":
{"serial":"783233RRX896664","components":
[],"durability":100,"ammo":0,"registered":"Andzi
God"},"slot":30,"name":"WEAPON_PISTOL","count":1},{"metadata":
{"serial":"310232RVQ668300","components":
[],"durability":100,"ammo":0,"registered":"Andzi
God"},"slot":31,"name":"WEAPON_PISTOL","count":1},{"metadata":
{"serial":"231609ZUT756100","components":
[],"durability":100,"ammo":0,"registered":"Andzi
God"},"slot":32,"name":"WEAPON_PISTOL","count":1},{"metadata":
{"serial":"779162DYL693951","components":
[],"durability":100,"ammo":0,"registered":"Andzi
God"},"slot":33,"name":"WEAPON_PISTOL","count":1},{"metadata":
{"serial":"558820OUV403256","components":
[],"durability":100,"ammo":0,"registered":"Andzi
God"},"slot":34,"name":"WEAPON_PISTOL","count":1},{"metadata":
{"serial":"102782ZRP908490","components":
[],"durability":100,"ammo":0,"registered":"Andzi
God"},"slot":35,"name":"WEAPON_PISTOL","count":1},{"metadata":
{"serial":"409878AHN858833","components":
[],"durability":100,"ammo":0,"registered":"Andzi
God"},"slot":36,"name":"WEAPON_PISTOL","count":1},{"metadata":
{"serial":"419303NFZ100008","components":
[],"durability":100,"ammo":0,"registered":"Andzi
God"},"slot":37,"name":"WEAPON_PISTOL","count":1},{"metadata":
{"serial":"504815SBB615829","components":
[],"durability":100,"ammo":0,"registered":"Andzi
God"},"slot":38,"name":"WEAPON_PISTOL","count":1},{"metadata":
{"serial":"914140VCL517080","components":
[],"durability":100,"ammo":0,"registered":"Andzi
God"},"slot":39,"name":"WEAPON_PISTOL","count":1},{"metadata":
{"serial":"334381RHL780365","components":
[],"durability":100,"ammo":0,"registered":"Andzi
God"},"slot":40,"name":"WEAPON_PISTOL","count":1},{"metadata":
{"serial":"188571ZUN925165","components":
[],"durability":100,"ammo":0,"registered":"Andzi
God"},"slot":41,"name":"WEAPON_PISTOL","count":1},{"metadata":
{"serial":"114066PJE261497","components":
[],"durability":100,"ammo":0,"registered":"Andzi
God"},"slot":42,"name":"WEAPON_PISTOL","count":1},{"metadata":
{"serial":"490983SXG909764","components":
[],"durability":100,"ammo":0,"registered":"Andzi
God"},"slot":43,"name":"WEAPON_PISTOL","count":1},{"metadata":
{"serial":"374794IZE372683","components":
[],"durability":100,"ammo":0,"registered":"Andzi
God"},"slot":44,"name":"WEAPON_PISTOL","count":1},{"metadata":
{"serial":"129524MRS374521","components":
[],"durability":100,"ammo":0,"registered":"Andzi
God"},"slot":45,"name":"WEAPON_PISTOL","count":1},{"metadata":
{"serial":"579345OQJ303021","components":
[],"durability":100,"ammo":0,"registered":"Andzi
God"},"slot":46,"name":"WEAPON_PISTOL","count":1},{"metadata":
{"serial":"404453NAC522363","components":
[],"durability":100,"ammo":0,"registered":"Andzi
God"},"slot":47,"name":"WEAPON_PISTOL","count":1},{"metadata":
{"serial":"979446NCK133846","components":
[],"durability":100,"ammo":0,"registered":"Andzi
God"},"slot":48,"name":"WEAPON_PISTOL","count":1},{"metadata":
{"serial":"984514XFP751811","components":
[],"durability":100,"ammo":0,"registered":"Andzi
God"},"slot":49,"name":"WEAPON_PISTOL","count":1},{"metadata":
{"serial":"641179HKW106940","components":
[],"durability":100,"ammo":0,"registered":"Andzi
God"},"slot":50,"name":"WEAPON_PISTOL","count":1}]', '2023-04-05 16:46:36'),
('1', 'steam:11000014206422d', '[{"slot":1,"name":"pancir","count":48}]',
'2023-05-02 14:09:21');

-- Dumping structure for table sokac.pawnshop_vehicles


CREATE TABLE IF NOT EXISTS `pawnshop_vehicles` (
`owner` varchar(255) DEFAULT NULL,
`security` int(1) NOT NULL DEFAULT 0 COMMENT 'Alarm system state',
`plate` varchar(12) NOT NULL,
`vehicle` longtext DEFAULT NULL,
`price` int(15) NOT NULL,
`expiration` int(15) NOT NULL,
PRIMARY KEY (`plate`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;

-- Dumping data for table sokac.pawnshop_vehicles: ~11 rows (approximately)


INSERT INTO `pawnshop_vehicles` (`owner`, `security`, `plate`, `vehicle`, `price`,
`expiration`) VALUES
('decb8a9b3abc021d0bbe869d9e28180b2856517e', 0, 'BM36365',
'{"modSteeringWheel":-1,"neonColor":[255,0,255],"modRearBumper":-1,"modTank":-
1,"tankHealth":1500.0,"modRoof":-1,"modAPlate":-1,"neonEnabled":
[false,false,false,false],"windowTint":-1,"modDial":-1,"color2":36,"extras":
[],"tyreSmokeColor":[255,255,255],"modSideSkirt":-1,"model":-
1582061455,"modRightFender":-1,"modShifterLeavers":-1,"modSuspension":-
1,"modEngineBlock":-1,"bodyHealth":996.9,"modPlateHolder":-1,"modWindows":-
1,"plate":"BM36365","modBrakes":-1,"modHorns":-1,"modSpeakers":-1,"modTrimA":-
1,"modSmokeEnabled":false,"modBackWheels":-1,"modHydrolic":-1,"modSpoilers":-
1,"engineHealth":988.9,"modHood":-1,"modLivery":-1,"modDoorSpeaker":-1,"modUnk47":-
1,"color1":20,"modVanityPlate":-1,"modAirFilter":-1,"wheelColor":134,"modExhaust":-
1,"modXenon":false,"modGrille":-1,"modArmor":-1,"modFrontBumper":-
1,"plateIndex":0,"modTurbo":false,"modSeats":-1,"modDashboard":-1,"modEngine":-
1,"dirtLevel":14.0,"modAerials":-1,"pearlescentColor":5,"modArchCover":-
1,"modTrunk":-1,"wheels":1,"modFrame":-1,"fuelLevel":64.9,"modOrnaments":-
1,"modTrimB":-1,"modTransmission":-1,"modStruts":-1,"modFrontWheels":-
1,"modFender":-1,"xenonColor":255}', 52000, 1639431920),
('a6ef739a152ef4ce429f11bc3f67edfe6467a3ae', 0, 'BS39006', '{"modExhaust":-
1,"tankHealth":1000.0,"modVanityPlate":-1,"modUnk47":-1,"extras":
[],"modRightFender":-1,"modShifterLeavers":-1,"modDial":-
1,"wheels":1,"modFrontBumper":-1,"modFender":-1,"modRearBumper":-1,"modArmor":-
1,"bodyHealth":1000.0,"tyreSmokeColor":[255,255,255],"modStruts":-
1,"color2":0,"modAirFilter":-1,"pearlescentColor":111,"modSpoilers":-1,"modRoof":-
1,"modSeats":-1,"dirtLevel":9.0,"modBrakes":-1,"modTransmission":-1,"modTrimB":-
1,"modPlateHolder":-1,"modXenon":false,"modLivery":-1,"modGrille":-
1,"modDoorSpeaker":-1,"model":-1582061455,"modHydrolic":-1,"modAPlate":-
1,"modEngineBlock":-1,"xenonColor":255,"modTrunk":-1,"modEngine":-
1,"modBackWheels":-1,"fuelLevel":65.0,"modSuspension":-
1,"modSmokeEnabled":false,"windowTint":-1,"plateIndex":0,"modTrimA":-
1,"modSpeakers":-1,"modSideSkirt":-1,"modFrame":-1,"modOrnaments":-
1,"color1":112,"modFrontWheels":-1,"modTank":-1,"modHood":-1,"neonColor":
[255,0,255],"modSteeringWheel":-1,"modTurbo":false,"modHorns":-1,"modWindows":-
1,"modAerials":-1,"engineHealth":1000.0,"modDashboard":-1,"neonEnabled":
[false,false,false,false],"wheelColor":88,"plate":"BS39006","modArchCover":-1}',
52000, 1639412361),
('45b2f7b3564a9a0d5e15cfad4c18d47e16b340e6', 0, 'EW57555', '{"modArchCover":-
1,"neonColor":[255,255,255],"modBrakes":-
1,"engineHealth":997.2,"wheelColor":0,"windowTint":-1,"modSpoilers":-
1,"modShifterLeavers":-1,"modTransmission":-1,"modHorns":-1,"modAirFilter":-
1,"modVanityPlate":-1,"modSpeakers":-1,"modSuspension":-1,"modEngineBlock":-
1,"modStruts":-1,"modTank":-1,"tankHealth":1499.9,"modAerials":-1,"modRoof":-
1,"modPlateHolder":-1,"model":-1582061455,"dirtLevel":7.1,"modOrnaments":-
1,"modBackWheels":-1,"pearlescentColor":88,"modTrimA":-
1,"wheels":1,"tyreSmokeColor":[255,255,255],"modTurbo":false,"modRightFender":-
1,"modTrimB":-1,"modSideSkirt":-1,"modXenon":false,"modWindows":-1,"modArmor":-
1,"modGrille":-1,"neonEnabled":
[false,false,false,false],"plate":"EW57555","modLivery":-1,"modFender":-
1,"modExhaust":-1,"xenonColor":255,"color1":35,"modFrontWheels":-
1,"modSteeringWheel":-1,"modDashboard":-1,"modHood":-1,"modDoorSpeaker":-
1,"modAPlate":-1,"modUnk47":-1,"modSeats":-1,"modHydrolic":-1,"extras":
[],"fuelLevel":64.4,"modFrame":-1,"plateIndex":0,"color2":3,"modTrunk":-
1,"modDial":-1,"modEngine":-1,"bodyHealth":989.9,"modFrontBumper":-
1,"modRearBumper":-1,"modSmokeEnabled":false}', 52000, 1639316309),
('a9e8f2b5a05ccfdab0da3a0fc06d252e2974f6c8', 0, 'GF30085',
'{"tyreSmokeColor":[255,255,255],"modHorns":-1,"modExhaust":-1,"modUnk47":-
1,"modTrimA":-1,"extras":[],"modHydrolic":-1,"modShifterLeavers":-1,"modStruts":-
1,"modFrame":-1,"color2":36,"tankHealth":1000.0,"wheelColor":134,"modFrontBumper":-
1,"neonEnabled":[false,false,false,false],"plateIndex":0,"fuelLevel":65.0,"model":-
1582061455,"modAirFilter":-1,"modTurbo":false,"modDoorSpeaker":-
1,"pearlescentColor":5,"color1":20,"xenonColor":255,"bodyHealth":1000.0,"windowTint
":-1,"modDial":-1,"engineHealth":1000.0,"modGrille":-1,"modRoof":-1,"modAPlate":-
1,"neonColor":[255,0,255],"modEngineBlock":-1,"modTank":-
1,"modXenon":false,"wheels":1,"modSpeakers":-1,"modPlateHolder":-1,"modOrnaments":-
1,"modSuspension":-1,"modTrunk":-1,"modRearBumper":-1,"modBrakes":-1,"modTrimB":-
1,"modSideSkirt":-1,"modEngine":-1,"modFender":-1,"modRightFender":-
1,"modBackWheels":-1,"modHood":-1,"modTransmission":-1,"modArchCover":-
1,"modSteeringWheel":-1,"modWindows":-1,"modArmor":-1,"modAerials":-1,"modSeats":-
1,"plate":"GF30085","modVanityPlate":-1,"modLivery":-1,"modFrontWheels":-
1,"modDashboard":-1,"dirtLevel":8.0,"modSpoilers":-1,"modSmokeEnabled":false}',
52000, 1639329711),
('f1d996c4661c386cbb7e3427adb3455c0b99324c', 0, 'IT75198',
'{"modSteeringWheel":-1,"neonColor":[255,0,255],"modRearBumper":-1,"modTank":-
1,"tankHealth":1499.7,"modRoof":-1,"modAPlate":-1,"neonEnabled":
[false,false,false,false],"windowTint":-1,"modDial":-1,"modTransmission":-
1,"extras":[],"tyreSmokeColor":[255,255,255],"modSideSkirt":-1,"model":-
1582061455,"modRightFender":-1,"modShifterLeavers":-1,"modSuspension":-
1,"modFrontBumper":-1,"modFrame":-1,"modPlateHolder":-1,"modWindows":-
1,"modSeats":-1,"modBrakes":-1,"modHorns":-1,"modSpeakers":-1,"modTrimA":-
1,"modSmokeEnabled":false,"modBackWheels":-1,"modHydrolic":-1,"modSpoilers":-
1,"engineHealth":986.1,"modHood":-1,"modLivery":-1,"modDoorSpeaker":-1,"modUnk47":-
1,"color1":35,"modVanityPlate":-1,"modAirFilter":-1,"wheelColor":0,"modArchCover":-
1,"modXenon":false,"modGrille":-1,"modArmor":-
1,"plate":"IT75198","fuelLevel":83.4,"modTurbo":1,"plateIndex":0,"dirtLevel":15.0,"
modEngine":1,"pearlescentColor":88,"modAerials":-1,"modEngineBlock":-1,"modTrunk":-
1,"modTrimB":-1,"color2":3,"modStruts":-1,"modExhaust":-1,"modOrnaments":-
1,"modDashboard":-1,"modFender":-1,"wheels":1,"modFrontWheels":-
1,"bodyHealth":997.5,"xenonColor":255}', 52000, 1639510186),
('e4c30e18e7bf5db7d83aab97433d0da1e42e1f89', 0, 'PL44373', '{"modArchCover":-
1,"neonColor":[255,255,255],"modBrakes":-
1,"engineHealth":967.8,"wheelColor":134,"modSeats":-
1,"modSpoilers":1,"modShifterLeavers":-1,"modTransmission":-1,"modHorns":-
1,"modDial":-1,"plateIndex":1,"modSpeakers":-1,"modHydrolic":-1,"modEngineBlock":-
1,"modStruts":-1,"modUnk47":-1,"tankHealth":1499.9,"modAerials":-
1,"fuelLevel":62.7,"modPlateHolder":-1,"model":-
1582061455,"dirtLevel":15.0,"modOrnaments":-1,"modBackWheels":-
1,"pearlescentColor":134,"modTrimA":-1,"wheels":1,"tyreSmokeColor":
[255,255,255],"modTurbo":1,"modRightFender":-1,"modTrimB":-
1,"modSideSkirt":6,"modXenon":1,"modAPlate":-1,"modArmor":-1,"modGrille":-
1,"neonEnabled":[1,1,1,1],"plate":"PL44373","modLivery":-1,"modFender":-
1,"modExhaust":-1,"xenonColor":255,"color1":121,"modFrontWheels":-
1,"modSteeringWheel":-1,"modDashboard":-1,"windowTint":1,"modDoorSpeaker":-
1,"modSuspension":-1,"modRoof":-1,"modWindows":-1,"modTank":-1,"extras":
[],"modAirFilter":-1,"modFrame":-1,"modVanityPlate":-1,"color2":0,"modTrunk":-
1,"modSmokeEnabled":false,"modEngine":1,"bodyHealth":994.0,"modFrontBumper":-
1,"modRearBumper":8,"modHood":-1}', 52000, 1639352755),
('9aa89505eaa278589a17bc3f1fe2e1afc69305fa', 0, 'QZ53002', '{"modStruts":-
1,"tankHealth":1499.9,"modDoorSpeaker":-1,"modUnk47":-1,"modFender":-1,"modRoof":-
1,"wheels":1,"modArmor":-1,"engineHealth":997.2,"color1":111,"modAerials":-
1,"neonColor":[255,0,255],"modGrille":-1,"modWindows":-1,"modAPlate":-
1,"modEngineBlock":-1,"wheelColor":0,"modTrimA":-1,"modTrimB":-
1,"pearlescentColor":111,"plate":"QZ53002","modShifterLeavers":-1,"modLivery":-
1,"modBackWheels":-1,"neonEnabled":[false,false,false,false],"tyreSmokeColor":
[255,255,255],"modHorns":-1,"modHydrolic":-1,"modSeats":-1,"modExhaust":-
1,"modSteeringWheel":-1,"fuelLevel":85.9,"modFrontBumper":-
1,"modEngine":1,"modAirFilter":-1,"modDashboard":-1,"modHood":-1,"extras":
[],"modFrontWheels":-1,"modSpeakers":-1,"modTrunk":-1,"color2":111,"modTank":-
1,"modRearBumper":-1,"modTransmission":-1,"modSmokeEnabled":false,"modDial":-
1,"modSideSkirt":-1,"modFrame":-
1,"bodyHealth":999.5,"modXenon":1,"plateIndex":1,"modSpoilers":3,"windowTint":1,"mo
dTurbo":1,"xenonColor":255,"modOrnaments":-1,"modVanityPlate":-1,"modPlateHolder":-
1,"model":-1582061455,"modArchCover":-1,"modSuspension":-
1,"dirtLevel":15.0,"modBrakes":-1,"modRightFender":-1}', 52000, 1639484641),
('8ab36514056d5a13885585bba6506e75dc93d5c6', 0, 'RK77679',
'{"modRearBumper":-1,"plateIndex":0,"engineHealth":732.9,"modEngineBlock":-
1,"modSteeringWheel":-1,"modSeats":-1,"modSpeakers":-
1,"modSmokeEnabled":false,"modTrunk":-1,"modOrnaments":-1,"modDoorSpeaker":-
1,"modArmor":-1,"modAirFilter":-1,"modFender":-
1,"tankHealth":1492.3,"fuelLevel":59.3,"modTank":-1,"modLivery":-
1,"modBackWheels":-1,"modSuspension":-1,"model":-1582061455,"modShifterLeavers":-
1,"neonColor":[255,0,255],"tyreSmokeColor":[255,255,255],"modRoof":-
1,"wheelColor":88,"color1":112,"modAPlate":-1,"modTransmission":-
1,"dirtLevel":11.6,"modTrimB":-1,"modRightFender":-1,"modDashboard":-1,"modTrimA":-
1,"modXenon":false,"wheels":1,"color2":0,"modTurbo":false,"modAerials":-
1,"modHydrolic":-1,"modSideSkirt":-1,"neonEnabled":
[false,false,false,false],"modGrille":-1,"modWindows":-1,"modSpoilers":-
1,"modPlateHolder":-1,"modFrontBumper":-1,"modEngine":-1,"extras":[],"modBrakes":-
1,"modFrame":-1,"modVanityPlate":-1,"modStruts":-
1,"pearlescentColor":111,"modDial":-1,"xenonColor":255,"modHood":-1,"modExhaust":-
1,"modFrontWheels":-1,"modHorns":-1,"windowTint":-
1,"bodyHealth":943.8,"plate":"RK77679","modArchCover":-1,"modUnk47":-1}', 52000,
1639341862),
('8e416878df455f4bb13032736760caec65b3a298', 0, 'TD15729',
'{"modRearBumper":-1,"plateIndex":0,"engineHealth":697.0,"modEngineBlock":-
1,"modSteeringWheel":-1,"modSeats":-
1,"modEngine":1,"modSmokeEnabled":false,"modTrunk":-1,"modOrnaments":-
1,"modDoorSpeaker":-1,"modFrame":-1,"modAirFilter":-1,"modFender":-
1,"tankHealth":1500.0,"fuelLevel":29.0,"modTank":-1,"modLivery":-
1,"windowTint":2,"modSuspension":-1,"model":-1582061455,"modShifterLeavers":-
1,"modUnk47":-1,"tyreSmokeColor":[255,255,255],"modRoof":-
1,"wheelColor":134,"color1":105,"modAPlate":-1,"modFrontBumper":-
1,"dirtLevel":0.5,"modTrimB":-1,"modRightFender":-1,"modDashboard":2,"modTrimA":-
1,"modXenon":false,"wheels":7,"modHood":-1,"modTurbo":1,"modExhaust":-
1,"neonColor":[255,0,255],"color2":1,"modSideSkirt":-1,"modGrille":-
1,"modWindows":-1,"modTransmission":-1,"modSpeakers":-1,"modArmor":-1,"modHorns":-
1,"xenonColor":255,"modBrakes":-1,"modStruts":-1,"modVanityPlate":-1,"extras":
[],"pearlescentColor":5,"modDial":-1,"modAerials":-1,"modHydrolic":-
1,"modSpoilers":8,"modFrontWheels":34,"modBackWheels":-
1,"plate":"TD15729","bodyHealth":981.0,"modPlateHolder":-1,"modArchCover":-
1,"neonEnabled":[false,false,false,false]}', 78000, 1639082280),
('171aac385a1caad4e6124ecbe70e4124695f6387', 0, 'YZ30396', '{"modHood":-
1,"xenonColor":255,"neonColor":[255,0,255],"modOrnaments":-
1,"tankHealth":1500.0,"modSpoilers":-1,"modBrakes":-1,"model":-
1582061455,"modTank":-1,"neonEnabled":[false,false,false,false],"modUnk47":-
1,"modDashboard":-1,"modFrame":-1,"modSuspension":-1,"modExhaust":-
1,"color2":0,"modStruts":-1,"modFender":-1,"modTrunk":-1,"modEngineBlock":-
1,"modDial":-1,"modRightFender":-1,"modHorns":-1,"modSideSkirt":-
1,"modTransmission":-1,"plateIndex":0,"dirtLevel":15.0,"modPlateHolder":-
1,"modWindows":-1,"windowTint":-
1,"bodyHealth":978.0,"pearlescentColor":111,"engineHealth":725.5,"modAPlate":-
1,"modLivery":-1,"wheelColor":88,"tyreSmokeColor":[255,255,255],"modRoof":-
1,"modEngine":-
1,"fuelLevel":58.1,"modSmokeEnabled":false,"wheels":1,"modFrontWheels":-
1,"color1":112,"modArchCover":-1,"plate":"YZ30396","modBackWheels":-1,"extras":
[],"modSteeringWheel":-1,"modDoorSpeaker":-1,"modGrille":-
1,"modXenon":false,"modTrimB":-1,"modVanityPlate":-1,"modTrimA":-1,"modAirFilter":-
1,"modTurbo":false,"modRearBumper":-1,"modAerials":-1,"modShifterLeavers":-
1,"modSpeakers":-1,"modHydrolic":-1,"modFrontBumper":-1,"modArmor":-1,"modSeats":-
1}', 78000, 1639141203),
('00d5e713074cb745e627aa72687bad04f4873d71', 0, 'ZL65720',
'{"modFrontWheels":-1,"model":-1582061455,"modSeats":-
1,"tankHealth":1496.9,"engineHealth":817.3,"modAerials":-1,"modSideSkirt":-
1,"modSpoilers":-1,"neonColor":[255,0,255],"extras":[],"modTank":-
1,"modEngineBlock":-1,"modHood":-1,"modDashboard":-1,"color1":35,"neonEnabled":
[false,false,false,false],"modSuspension":-1,"tyreSmokeColor":
[255,255,255],"modPlateHolder":-1,"modHorns":-1,"modRightFender":-
1,"pearlescentColor":88,"dirtLevel":11.7,"modSpeakers":-
1,"modEngine":1,"wheelColor":0,"modFrame":-1,"modSteeringWheel":-1,"modExhaust":-
1,"modArchCover":-1,"modTrimB":-1,"modDoorSpeaker":-1,"modUnk47":-1,"modHydrolic":-
1,"modXenon":false,"modFrontBumper":-1,"modFender":-1,"windowTint":-
1,"modBackWheels":-1,"modLivery":-1,"modTransmission":-1,"modDial":-
1,"xenonColor":255,"modOrnaments":-1,"modVanityPlate":-1,"modShifterLeavers":-
1,"modStruts":-1,"modArmor":-1,"modGrille":-1,"modTurbo":1,"modAirFilter":-
1,"bodyHealth":909.2,"modSmokeEnabled":false,"plateIndex":0,"modWindows":-
1,"plate":"ZL65720","modRearBumper":-1,"modTrimA":-1,"modTrunk":-
1,"color2":3,"modRoof":-1,"fuelLevel":56.0,"modBrakes":-1,"modAPlate":-
1,"wheels":1}', 52000, 1639261307);

-- Dumping structure for table sokac.phone_accounts


CREATE TABLE IF NOT EXISTS `phone_accounts` (
`app` varchar(50) NOT NULL,
`id` varchar(80) NOT NULL,
`name` varchar(50) NOT NULL,
`password` varchar(50) NOT NULL,
`birthdate` varchar(50) NOT NULL,
`gender` varchar(50) NOT NULL,
`interested` text NOT NULL,
`avatar` text NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci;

-- Dumping data for table sokac.phone_accounts: ~0 rows (approximately)

-- Dumping structure for table sokac.phone_alertjobs


CREATE TABLE IF NOT EXISTS `phone_alertjobs` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`job` varchar(255) NOT NULL,
`alerts` longtext DEFAULT NULL,
`date` timestamp NULL DEFAULT current_timestamp(),
PRIMARY KEY (`id`),
UNIQUE KEY `job` (`job`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci;

-- Dumping data for table sokac.phone_alertjobs: ~0 rows (approximately)

-- Dumping structure for table sokac.phone_chatrooms


CREATE TABLE IF NOT EXISTS `phone_chatrooms` (
`id` int(10) unsigned NOT NULL AUTO_INCREMENT,
`room_code` varchar(10) NOT NULL,
`room_name` varchar(15) NOT NULL,
`room_owner_id` varchar(50) DEFAULT NULL,
`room_owner_name` varchar(60) DEFAULT NULL,
`room_members` text DEFAULT NULL,
`room_pin` varchar(50) DEFAULT NULL,
`unpaid_balance` decimal(10,2) DEFAULT 0.00,
`is_masked` tinyint(1) DEFAULT 0,
`is_pinned` tinyint(1) DEFAULT 0,
`created` datetime DEFAULT current_timestamp(),
PRIMARY KEY (`id`),
UNIQUE KEY `room_code` (`room_code`)
) ENGINE=InnoDB AUTO_INCREMENT=4 DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci;

-- Dumping data for table sokac.phone_chatrooms: ~3 rows (approximately)


INSERT INTO `phone_chatrooms` (`id`, `room_code`, `room_name`, `room_owner_id`,
`room_owner_name`, `room_members`, `room_pin`, `unpaid_balance`, `is_masked`,
`is_pinned`, `created`) VALUES
(1, 'social', 'Social', 'official', 'Government', NULL, NULL, 0.00, 0, 1,
'2023-04-29 00:37:59'),
(2, 'lounge', 'The Lounge', 'official', 'Government', NULL, NULL, 0.00, 0, 1,
'2023-04-29 00:37:59'),
(3, 'events', 'Events', 'official', 'Government', NULL, NULL, 0.00, 0, 1,
'2023-04-29 00:37:59');

-- Dumping structure for table sokac.phone_chatroom_messages


CREATE TABLE IF NOT EXISTS `phone_chatroom_messages` (
`id` int(10) unsigned NOT NULL AUTO_INCREMENT,
`room_id` int(10) unsigned DEFAULT NULL,
`member_id` varchar(50) DEFAULT NULL,
`member_name` varchar(50) DEFAULT NULL,
`message` text DEFAULT NULL,
`is_pinned` tinyint(1) DEFAULT 0,
`created` datetime DEFAULT current_timestamp(),
PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci;

-- Dumping data for table sokac.phone_chatroom_messages: ~0 rows (approximately)

-- Dumping structure for table sokac.phone_chats


CREATE TABLE IF NOT EXISTS `phone_chats` (
`app` varchar(50) NOT NULL,
`author` varchar(50) NOT NULL,
`number` varchar(50) NOT NULL,
`created` varchar(50) NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci;

-- Dumping data for table sokac.phone_chats: ~0 rows (approximately)

-- Dumping structure for table sokac.phone_invoices


CREATE TABLE IF NOT EXISTS `phone_invoices` (
`id` int(10) NOT NULL AUTO_INCREMENT,
`citizenid` varchar(50) DEFAULT NULL,
`amount` int(11) NOT NULL DEFAULT 0,
`society` tinytext DEFAULT NULL,
`sender` varchar(50) DEFAULT NULL,
`sendercitizenid` varchar(50) DEFAULT NULL,
PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;

-- Dumping data for table sokac.phone_invoices: ~0 rows (approximately)

-- Dumping structure for table sokac.phone_messages


CREATE TABLE IF NOT EXISTS `phone_messages` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`phone` varchar(50) DEFAULT NULL,
`number` varchar(50) NOT NULL,
`owner` varchar(50) DEFAULT NULL,
`messages` text NOT NULL,
`type` varchar(50) DEFAULT NULL,
`read` int(11) DEFAULT NULL,
`created` varchar(50) DEFAULT NULL,
PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=20 DEFAULT CHARSET=utf8mb4
COLLATE=utf8mb4_general_ci;

-- Dumping data for table sokac.phone_messages: ~0 rows (approximately)

-- Dumping structure for table sokac.phone_news


CREATE TABLE IF NOT EXISTS `phone_news` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`owner` varchar(50) DEFAULT NULL,
`title` varchar(50) DEFAULT NULL,
`content` text DEFAULT NULL,
`image` text DEFAULT NULL,
`created` varchar(50) DEFAULT '',
PRIMARY KEY (`id`) USING BTREE
) ENGINE=InnoDB AUTO_INCREMENT=5 DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci;

-- Dumping data for table sokac.phone_news: ~0 rows (approximately)

-- Dumping structure for table sokac.phone_notifies


CREATE TABLE IF NOT EXISTS `phone_notifies` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`phone` varchar(50) NOT NULL,
`msg_content` text NOT NULL,
`msg_head` varchar(50) NOT NULL DEFAULT '',
`app_name` text NOT NULL,
`msg_time` varchar(50) NOT NULL,
PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=64 DEFAULT CHARSET=utf8mb4
COLLATE=utf8mb4_general_ci;

-- Dumping data for table sokac.phone_notifies: ~0 rows (approximately)

-- Dumping structure for table sokac.playerstattoos


CREATE TABLE IF NOT EXISTS `playerstattoos` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`identifier` varchar(255) NOT NULL,
`tattoos` varchar(255) NOT NULL,
PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci;

-- Dumping data for table sokac.playerstattoos: ~0 rows (approximately)

-- Dumping structure for table sokac.player_contacts


CREATE TABLE IF NOT EXISTS `player_contacts` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`identifier` varchar(50) DEFAULT NULL,
`name` varchar(50) DEFAULT NULL,
`number` varchar(50) DEFAULT NULL,
`iban` varchar(50) NOT NULL DEFAULT '0',
`display` varchar(50) DEFAULT NULL,
`note` text NOT NULL,
`pp` text NOT NULL,
`isBlocked` int(11) DEFAULT NULL,
PRIMARY KEY (`id`) USING BTREE,
KEY `identifier` (`identifier`) USING BTREE
) ENGINE=InnoDB AUTO_INCREMENT=42 DEFAULT CHARSET=utf8mb4
COLLATE=utf8mb4_general_ci;

-- Dumping data for table sokac.player_contacts: ~4 rows (approximately)


INSERT INTO `player_contacts` (`id`, `identifier`, `name`, `number`, `iban`,
`display`, `note`, `pp`, `isBlocked`) VALUES
(38, '553503183', 'harun', '553302335', '0', NULL, '',
'./img/app_details/default.png', NULL),
(39, '553302335', 'Hodza', '553837260', '0', NULL, 'hara', 'false', NULL),
(40, '553837260', '1111', '553302335', '0', NULL, '',
'./img/app_details/default.png', NULL),
(41, '553503183', 'Alaalalal Alalalal', '553837260', '0', NULL, '', '',
NULL);

-- Dumping structure for table sokac.player_gallery


CREATE TABLE IF NOT EXISTS `player_gallery` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`identifier` text NOT NULL,
`resim` text NOT NULL,
`data` text NOT NULL,
`created_at` timestamp NOT NULL DEFAULT current_timestamp() ON UPDATE
current_timestamp(),
PRIMARY KEY (`id`) USING BTREE
) ENGINE=InnoDB AUTO_INCREMENT=11 DEFAULT CHARSET=utf8mb4
COLLATE=utf8mb4_general_ci;

-- Dumping data for table sokac.player_gallery: ~0 rows (approximately)

-- Dumping structure for table sokac.player_mails


CREATE TABLE IF NOT EXISTS `player_mails` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`identifier` varchar(50) DEFAULT NULL,
`sender` varchar(50) DEFAULT NULL,
`subject` varchar(50) DEFAULT NULL,
`message` text DEFAULT NULL,
`read` tinyint(4) DEFAULT NULL,
`mailid` int(11) DEFAULT NULL,
`date` timestamp NULL DEFAULT current_timestamp(),
`button` text DEFAULT NULL,
PRIMARY KEY (`id`) USING BTREE,
KEY `identifier` (`identifier`) USING BTREE
) ENGINE=InnoDB AUTO_INCREMENT=14 DEFAULT CHARSET=utf8mb4
COLLATE=utf8mb4_general_ci;

-- Dumping data for table sokac.player_mails: ~12 rows (approximately)


INSERT INTO `player_mails` (`id`, `identifier`, `sender`, `subject`, `message`,
`read`, `mailid`, `date`, `button`) VALUES
(2, '62.113.8.67', 'Admin', '4', 'aloo', 0, 705370, '2022-12-26 21:35:15',
NULL),
(3, '46.114.89.134', 'Admin', '4', 'aloo', 0, 197612, '2022-12-26 21:35:15',
NULL),
(4, '31.176.253.165', 'Admin', '4', 'aloo', 0, 967980, '2022-12-26 21:35:15',
NULL),
(5, '31.176.253.165', 'Admin', '4', 'harun picka', 0, 448250, '2022-12-26
21:35:35', NULL),
(6, '62.113.8.67', 'Admin', '4', 'harun picka', 0, 140693, '2022-12-26
21:35:35', NULL),
(7, '46.114.89.134', 'Admin', '4', 'harun picka', 0, 169006, '2022-12-26
21:35:35', NULL),
(8, '46.114.89.134', 'Admin', '1', 'mrs', 0, 364181, '2022-12-26 21:35:48',
NULL),
(9, '31.176.253.165', 'Admin', '1', 'mrs', 0, 937510, '2022-12-26 21:35:48',
NULL),
(10, '46.114.89.134', 'Admin', '2', 'mrs', 0, 253675, '2022-12-26 21:35:51',
NULL),
(11, '31.176.253.165', 'Admin', '2', 'mrs', 0, 924053, '2022-12-26 21:35:51',
NULL),
(12, '46.114.89.134', 'Admin', '3', 'mrs', 0, 917210, '2022-12-26 21:35:53',
NULL),
(13, '31.176.253.165', 'Admin', '3', 'mrs', 0, 879955, '2022-12-26 21:35:53',
NULL);

-- Dumping structure for table sokac.player_notes


CREATE TABLE IF NOT EXISTS `player_notes` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`identifier` text NOT NULL,
`baslik` text NOT NULL,
`aciklama` text NOT NULL,
PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci;

-- Dumping data for table sokac.player_notes: ~0 rows (approximately)

-- Dumping structure for table sokac.playtime


CREATE TABLE IF NOT EXISTS `playtime` (
`identifier` varchar(100) NOT NULL,
`time` int(11) NOT NULL DEFAULT 0,
`login` int(11) NOT NULL DEFAULT 0
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci;

-- Dumping data for table sokac.playtime: ~57 rows (approximately)


INSERT INTO `playtime` (`identifier`, `time`, `login`) VALUES
('ip:109.175.79.251', 111, 0),
('steam:110000142acb12e', 376837, 80),
('steam:11000013a29ba1f', 4022, 3),
('steam:110000157275ee4', 264811, 72),
('ip:109.175.75.153', 37354, 0),
('ip:31.176.244.247', 3479, 0),
('steam:11000014c5746e2', 88948, 48),
('ip:92.36.217.184', 2237, 0),
('ip:92.36.217.199', 553, 0),
('steam:110000113c95544', 2721, 1),
('ip:79.140.150.181', 13838, 0),
('steam:11000015aff7518', 8386, 15),
('steam:110000115732457', 1288, 1),
('steam:11000014504a827', 20232, 19),
('steam:110000144824e31', 4272, 0),
('steam:11000014acd3890', 1779, 0),
('license:0843213315308276db81ca43a7c08e57552c59dd', 9280, 9),
('steam:11000014126195e', 1744, 0),
('steam:11000014bfe1d97', 8205, 22),
('ip:92.36.220.28', 16427, 5),
('ip:178.237.217.193', 1701, 2),
('ip:93.143.207.150', 3033, 3),
('steam:110000142f56e2c', 3148, 4),
('ip:31.176.240.83', 2885, 1),
('steam:1100001487a755b', 16266, 23),
('steam:1100001472c2930', 12592, 8),
('steam:110000143840982', 2762, 1),
('ip:83.131.247.165', 2575, 0),
('steam:11000013bcfbc1f', 0, 0),
('steam:11000015404f27b', 4293, 2),
('ip:93.143.160.82', 4015, 2),
('steam:11000014206422d', 1366, 0),
('steam:110000149e14e20', 3983, 4),
('steam:11000015ac955cb', 1303, 0),
('steam:11000014034d9e2', 2695, 0),
('steam:110000150309afe', 2247, 0),
('steam:11000015b9729c2', 1522, 0),
('steam:11000014742c88e', 1140, 0),
('steam:11000015b08ea78', 5203, 5),
('steam:11000011605fea2', 2236, 4),
('steam:11000014b9eac56', 455, 0),
('steam:11000015a44fd11', 2654, 0),
('ip:77.78.225.80', 7040, 1),
('steam:11000015a5661a8', 5230, 1),
('steam:110000156810ce4', 7445, 2),
('steam:11000015429cfbc', 5641, 1),
('steam:11000014650e223', 2971, 0),
('steam:110000152563c99', 1697, 0),
('steam:11000014dc80a2d', 273, 0),
('steam:11000013d1a3bd0', 6907, 16),
('steam:110000153d978b2', 10477, 3),
('steam:110000157fe42ed', 8484, 0),
('license:896386080e8cdf219abf4ee615a73517aa8470cc', 73050, 6),
('license:495eb4c59c2cd92969e12b02726caa66e89b213e', 365, 0),
('steam:11000015b56ae0b', 918, 0),
('steam:1100001088b94f4', 179, 0),
('steam:11000010d0a5067', 2314, 0);

-- Dumping structure for table sokac.poslovi


CREATE TABLE IF NOT EXISTS `poslovi` (
`poso` varchar(50) NOT NULL DEFAULT '',
`zarada` int(11) DEFAULT NULL,
PRIMARY KEY (`poso`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci;

-- Dumping data for table sokac.poslovi: ~7 rows (approximately)


INSERT INTO `poslovi` (`poso`, `zarada`) VALUES
('dostavljac', 402),
('drvosjeca', 74),
('elektricar', 752),
('farmer', 6345),
('kosac', 519),
('snijeg', 730),
('vodoinstalater', 572);

-- Dumping structure for table sokac.tiktok_users


CREATE TABLE IF NOT EXISTS `tiktok_users` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`username` varchar(50) NOT NULL DEFAULT '0',
`phone` varchar(50) NOT NULL DEFAULT '0',
`pp` text DEFAULT NULL,
`name` varchar(50) NOT NULL DEFAULT '0',
`bio` text NOT NULL DEFAULT '',
`birthday` varchar(50) NOT NULL DEFAULT '0',
`videos` text NOT NULL DEFAULT '{}',
`followers` text NOT NULL,
`following` text NOT NULL,
`liked` text NOT NULL,
PRIMARY KEY (`id`) USING BTREE,
KEY `id` (`id`) USING BTREE
) ENGINE=InnoDB AUTO_INCREMENT=14 DEFAULT CHARSET=utf8mb4
COLLATE=utf8mb4_general_ci;

-- Dumping data for table sokac.tiktok_users: ~0 rows (approximately)


INSERT INTO `tiktok_users` (`id`, `username`, `phone`, `pp`, `name`, `bio`,
`birthday`, `videos`, `followers`, `following`, `liked`) VALUES
(13, 'hara55', '553302335', './img/app_details/default.png', 'hara', '',
'1888-11-11', '[]', '[]', '[]', '[]');

-- Dumping structure for table sokac.tiktok_videos


CREATE TABLE IF NOT EXISTS `tiktok_videos` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`userID` int(11) DEFAULT NULL,
`created` varchar(50) NOT NULL DEFAULT '00:00:00',
`data` text DEFAULT NULL,
`phone` varchar(50) DEFAULT NULL,
PRIMARY KEY (`id`) USING BTREE
) ENGINE=InnoDB AUTO_INCREMENT=440 DEFAULT CHARSET=utf8mb4
COLLATE=utf8mb4_unicode_ci;

-- Dumping data for table sokac.tiktok_videos: ~0 rows (approximately)

-- Dumping structure for table sokac.tinder_accounts


CREATE TABLE IF NOT EXISTS `tinder_accounts` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`phone` varchar(50) NOT NULL DEFAULT '0',
`pp` text NOT NULL,
`name` varchar(50) NOT NULL DEFAULT '0',
`gender` varchar(50) NOT NULL,
`targetGender` varchar(50) NOT NULL DEFAULT '0',
`hobbies` varchar(50) NOT NULL DEFAULT '0',
`age` varchar(50) NOT NULL DEFAULT '0',
`description` varchar(50) NOT NULL DEFAULT '0',
`password` varchar(50) NOT NULL,
PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=17 DEFAULT CHARSET=utf8mb4
COLLATE=utf8mb4_general_ci;

-- Dumping data for table sokac.tinder_accounts: ~0 rows (approximately)

-- Dumping structure for table sokac.tinder_likes


CREATE TABLE IF NOT EXISTS `tinder_likes` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`phone` varchar(1024) NOT NULL,
`likeds` mediumtext NOT NULL,
PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=4 DEFAULT CHARSET=utf8mb4
COLLATE=utf8mb4_general_ci;

-- Dumping data for table sokac.tinder_likes: ~0 rows (approximately)

-- Dumping structure for table sokac.tinder_messages


CREATE TABLE IF NOT EXISTS `tinder_messages` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`phone` varchar(50) NOT NULL,
`number` longtext NOT NULL,
`messages` varchar(1024) DEFAULT '{}',
PRIMARY KEY (`id`) USING BTREE
) ENGINE=InnoDB AUTO_INCREMENT=11 DEFAULT CHARSET=utf8mb4
COLLATE=utf8mb4_general_ci;

-- Dumping data for table sokac.tinder_messages: ~0 rows (approximately)

-- Dumping structure for table sokac.tomic_territories


CREATE TABLE IF NOT EXISTS `tomic_territories` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`name` text DEFAULT 'NewTerritory',
`owner` text DEFAULT 'noone',
`label` text DEFAULT 'NoOne',
`radius` int(11) DEFAULT 50,
`coords` longtext NOT NULL,
`type` text DEFAULT 'default',
PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=58 DEFAULT CHARSET=utf8mb4
COLLATE=utf8mb4_general_ci;

-- Dumping data for table sokac.tomic_territories: ~5 rows (approximately)


INSERT INTO `tomic_territories` (`id`, `name`, `owner`, `label`, `radius`,
`coords`, `type`) VALUES
(1, 'Motel', 'yakuza', 'YAKUZA', 60,
'{"z":33.239501953125,"y":3574.15380859375,"x":1567.4241943359376}', 'dealer'),
(2, 'Docks', 'scarface', 'ScarFace', 65,
'{"x":1011.2307739257813,"z":39.15380859375,"y":-2867.156005859375}', 'market'),
(3, 'Plaza', 'yakuza', 'YAKUZA', 50, '{"x":-
1838.6373291015626,"z":13.0029296875,"y":-1223.5911865234376}', 'dealer'),
(4, 'Galileo', 'yakuza', 'YAKUZA', 55,
'{"z":327.6732177734375,"y":1110.7120361328126,"x":-429.21759033203127}',
'dealer'),
(5, 'Dump', 'barani', 'Barani', 80, '{"z":19.13623046875,"x":-
533.7362670898438,"y":-1682.756103515625}', 'market');

-- Dumping structure for table sokac.twitter_account


CREATE TABLE IF NOT EXISTS `twitter_account` (
`id` varchar(90) NOT NULL,
`name` varchar(50) NOT NULL,
`phone` varchar(50) NOT NULL,
`username` varchar(50) NOT NULL,
`password` varchar(50) NOT NULL,
`avatar` text NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci;

-- Dumping data for table sokac.twitter_account: ~0 rows (approximately)

-- Dumping structure for table sokac.twitter_hashtags


CREATE TABLE IF NOT EXISTS `twitter_hashtags` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`name` varchar(80) NOT NULL,
`created` varchar(50) NOT NULL,
`count` int(11) DEFAULT NULL,
PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=8 DEFAULT CHARSET=utf8mb4
COLLATE=utf8mb4_general_ci;

-- Dumping data for table sokac.twitter_hashtags: ~0 rows (approximately)

-- Dumping structure for table sokac.twitter_mentions


CREATE TABLE IF NOT EXISTS `twitter_mentions` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`id_tweet` int(11) NOT NULL,
`username` varchar(50) NOT NULL,
`mentioned` text NOT NULL,
`created` varchar(50) NOT NULL,
PRIMARY KEY (`id`) USING BTREE
) ENGINE=InnoDB AUTO_INCREMENT=4 DEFAULT CHARSET=utf8mb4
COLLATE=utf8mb4_general_ci;

-- Dumping data for table sokac.twitter_mentions: ~0 rows (approximately)

-- Dumping structure for table sokac.twitter_tweets


CREATE TABLE IF NOT EXISTS `twitter_tweets` (
`id` int(5) NOT NULL AUTO_INCREMENT,
`username` varchar(80) NOT NULL,
`message` longtext NOT NULL,
`hashtags` varchar(50) NOT NULL,
`mentions` varchar(50) NOT NULL,
`created` varchar(50) NOT NULL,
`image` text NOT NULL,
`likes` text DEFAULT NULL,
PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=24 DEFAULT CHARSET=utf8mb4
COLLATE=utf8mb4_general_ci;

-- Dumping data for table sokac.twitter_tweets: ~0 rows (approximately)

-- Dumping structure for table sokac.users


CREATE TABLE IF NOT EXISTS `users` (
`sID` int(11) NOT NULL AUTO_INCREMENT,
`identifier` varchar(250) NOT NULL DEFAULT 'steam:',
`status` longtext DEFAULT '{"stress":0,"sleep":0,"water":10000,"hunger":10000}',
`ime` varchar(190) DEFAULT NULL,
`discord` varchar(50) DEFAULT NULL,
`accounts` longtext DEFAULT NULL,
`group` varchar(50) DEFAULT 'user',
`inventory` longtext DEFAULT NULL,
`job` varchar(20) NOT NULL DEFAULT 'unemployed',
`job_grade` int(11) DEFAULT 0,
`loadout` longtext DEFAULT NULL,
`position` varchar(255) DEFAULT '{"x":-539.70,"y":-
215.07,"z":37.90,"heading":207.8}',
`firstname` varchar(190) DEFAULT '',
`lastname` varchar(50) DEFAULT '',
`dateofbirth` varchar(25) DEFAULT '',
`sex` varchar(10) DEFAULT '',
`height` varchar(5) DEFAULT '',
`staff` varchar(50) DEFAULT 'false',
`zadnjiput` varchar(250) DEFAULT NULL,
`phone_number` varchar(10) DEFAULT NULL,
`image` text NOT NULL DEFAULT
'https://pngimage.net/wp-content/uploads/2018/06/gta-online-character-png-9.png',
`loaf_furniture` longtext DEFAULT NULL,
`servicecode` varchar(255) DEFAULT NULL,
`skin` longtext DEFAULT NULL,
`credits` int(11) DEFAULT 0,
`tattoos` longtext DEFAULT NULL,
`zadnjput` bigint(20) DEFAULT NULL,
`poklon` tinyint(4) DEFAULT 0,
`advent` longtext DEFAULT NULL,
`apartman` varchar(255) DEFAULT NULL,
`iban` varchar(255) DEFAULT NULL,
`pincode` int(50) DEFAULT NULL,
`model` longtext DEFAULT NULL,
`drawables` longtext DEFAULT NULL,
`props` longtext DEFAULT NULL,
`drawtextures` longtext DEFAULT NULL,
`proptextures` longtext DEFAULT NULL,
`hairColor` longtext DEFAULT '[]',
`headBlend` longtext DEFAULT '[]',
`headOverlay` longtext DEFAULT '[]',
`headStructure` longtext DEFAULT '[]',
`apps` text DEFAULT NULL,
`widget` text DEFAULT NULL,
`bt` text DEFAULT NULL,
`charinfo` text DEFAULT NULL,
`metadata` mediumtext DEFAULT NULL,
`cryptocurrency` longtext DEFAULT NULL,
`cryptocurrencytransfers` text DEFAULT NULL,
`phonePos` text DEFAULT NULL,
`spotify` text DEFAULT NULL,
`ringtone` text DEFAULT NULL,
`first_screen_showed` int(11) DEFAULT NULL,
`is_dead` tinyint(1) DEFAULT 0,
`jail` int(11) NOT NULL DEFAULT 0,
`vrijeme` int(11) DEFAULT 0,
PRIMARY KEY (`sID`) USING BTREE
) ENGINE=InnoDB AUTO_INCREMENT=319 DEFAULT CHARSET=utf8mb4
COLLATE=utf8mb4_unicode_ci;

-- Dumping data for table sokac.users: ~45 rows (approximately)


INSERT INTO `users` (`sID`, `identifier`, `status`, `ime`, `discord`, `accounts`,
`group`, `inventory`, `job`, `job_grade`, `loadout`, `position`, `firstname`,
`lastname`, `dateofbirth`, `sex`, `height`, `staff`, `zadnjiput`, `phone_number`,
`image`, `loaf_furniture`, `servicecode`, `skin`, `credits`, `tattoos`, `zadnjput`,
`poklon`, `advent`, `apartman`, `iban`, `pincode`, `model`, `drawables`, `props`,
`drawtextures`, `proptextures`, `hairColor`, `headBlend`, `headOverlay`,
`headStructure`, `apps`, `widget`, `bt`, `charinfo`, `metadata`, `cryptocurrency`,
`cryptocurrencytransfers`, `phonePos`, `spotify`, `ringtone`,
`first_screen_showed`, `is_dead`, `jail`, `vrijeme`) VALUES
(274, '89ad3a4f1f19fa3b8adf17b11b789de530a1d2d3',
'[{"val":725300,"name":"hunger","percent":72.53},
{"val":793975,"name":"thirst","percent":79.3975}]', NULL, NULL,
'{"bank":15700,"black_money":0,"money":4330000}', 'owner',
'[{"count":4330000,"slot":1,"name":"money"}]', 'unemployed', 0, NULL, '{"x":-
826.2,"y":-1075.8,"z":11.3,"heading":102.0}', 'Harun', 'Gej', '12.1.1990', 'm',
'150', 'false', NULL, NULL, 'https://pngimage.net/wp-content/uploads/2018/06/gta-
online-character-png-9.png', NULL, NULL, '{"headBlend":
{"shapeFirst":0,"skinFirst":0,"skinSecond":0,"skinMix":0,"shapeSecond":0,"shapeMix"
:0},"props":[{"drawable":-1,"texture":-1,"prop_id":0},{"drawable":-1,"texture":-
1,"prop_id":1},{"drawable":-1,"texture":-1,"prop_id":2},{"drawable":-1,"texture":-
1,"prop_id":6},{"drawable":-1,"texture":-
1,"prop_id":7}],"model":"mp_m_freemode_01","eyeColor":-1,"faceFeatures":
{"eyesOpening":0,"noseBoneHigh":0,"nosePeakHigh":0,"jawBoneWidth":0,"eyeBrownHigh":
0,"eyeBrownForward":0,"lipsThickness":0,"nosePeakLowering":0,"cheeksWidth":0,"chinB
oneLowering":0,"neckThickness":0,"chinHole":0,"noseBoneTwist":0,"chinBoneSize":0,"j
awBoneBackSize":0,"noseWidth":0,"chinBoneLenght":0,"cheeksBoneWidth":0,"cheeksBoneH
igh":0,"nosePeakSize":0},"components":[{"texture":0,"component_id":0,"drawable":0},
{"texture":0,"component_id":1,"drawable":169},
{"texture":0,"component_id":2,"drawable":12},
{"texture":0,"component_id":3,"drawable":0},
{"texture":0,"component_id":5,"drawable":0},
{"texture":0,"component_id":6,"drawable":7},
{"texture":0,"component_id":7,"drawable":4},
{"texture":0,"component_id":8,"drawable":21},
{"texture":0,"component_id":9,"drawable":0},
{"texture":0,"component_id":10,"drawable":0},
{"texture":3,"component_id":11,"drawable":167},
{"texture":0,"component_id":4,"drawable":24}],"hair":
{"highlight":0,"color":0,"style":12},"headOverlays":{"blemishes":
{"opacity":0,"color":0,"style":0},"bodyBlemishes":
{"opacity":0,"color":0,"style":0},"moleAndFreckles":
{"opacity":0,"color":0,"style":0},"sunDamage":
{"opacity":0,"color":0,"style":0},"beard":
{"opacity":0,"color":0,"style":0},"blush":
{"opacity":0,"color":0,"style":0},"lipstick":
{"opacity":0,"color":0,"style":0},"chestHair":
{"opacity":0,"color":0,"style":0},"ageing":
{"opacity":0,"color":0,"style":0},"makeUp":
{"opacity":0,"color":0,"style":0},"complexion":
{"opacity":0,"color":0,"style":0},"eyebrows":{"opacity":0,"color":0,"style":0}}}',
0, NULL, NULL, 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '[]', '[]',
'[]', '[]', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, 0,
46),
(275, '89.172.245.102', '[{"name":"hunger","val":490700,"percent":49.07},
{"name":"thirst","val":493025,"percent":49.3025}]', NULL, NULL,
'{"bank":15700,"black_money":0,"money":0}', 'owner', '[]', 'unemployed', 0, NULL,
'{"heading":300.4,"x":-803.0,"y":-1237.3,"z":7.3}', 'Luka', 'Gura', '12.1.1190',
'm', '150', 'false', NULL, NULL,
'https://pngimage.net/wp-content/uploads/2018/06/gta-online-character-png-9.png',
NULL, NULL, NULL, 0, NULL, NULL, 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL,
NULL, '[]', '[]', '[]', '[]', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL,
NULL, NULL, 0, 0, 19),
(276, '31.176.246.6', '[{"name":"hunger","val":267100,"percent":26.71},
{"name":"thirst","val":325325,"percent":32.5325}]', NULL, NULL,
'{"bank":15700,"black_money":0,"money":0}', 'owner', '[]', 'unemployed', 0, NULL,
'{"heading":48.5,"x":-799.4,"y":-1240.4,"z":7.3}', 'Hara', 'Bara', '1111', 'm',
'166', 'false', NULL, NULL, 'https://pngimage.net/wp-content/uploads/2018/06/gta-
online-character-png-9.png', NULL, NULL, '{"faceFeatures":
{"nosePeakHigh":0,"neckThickness":0,"cheeksWidth":0,"nosePeakSize":0,"chinBoneLower
ing":0,"nosePeakLowering":0,"chinHole":0,"jawBoneWidth":0,"eyeBrownHigh":0,"noseWid
th":0,"cheeksBoneHigh":0,"jawBoneBackSize":0,"chinBoneSize":0,"lipsThickness":0,"ch
inBoneLenght":0,"eyesOpening":0,"noseBoneHigh":0,"cheeksBoneWidth":0,"eyeBrownForwa
rd":0,"noseBoneTwist":0},"hair":{"color":1,"highlight":1,"style":0},"headBlend":
{"skinFirst":15,"shapeSecond":0,"skinMix":1,"skinSecond":0,"shapeFirst":0,"shapeMix
":0},"eyeColor":-1,"props":[{"texture":-1,"drawable":-1,"prop_id":0},{"texture":-
1,"drawable":-1,"prop_id":1},{"texture":-1,"drawable":-1,"prop_id":2},{"texture":-
1,"drawable":-1,"prop_id":6},{"texture":-1,"drawable":-
1,"prop_id":7}],"model":"mp_m_freemode_01","components":
[{"texture":0,"drawable":0,"component_id":0},
{"texture":0,"drawable":0,"component_id":1},
{"texture":0,"drawable":0,"component_id":2},
{"texture":0,"drawable":0,"component_id":3},
{"texture":0,"drawable":0,"component_id":4},
{"texture":0,"drawable":0,"component_id":5},
{"texture":0,"drawable":0,"component_id":6},
{"texture":0,"drawable":0,"component_id":7},
{"texture":1,"drawable":0,"component_id":8},
{"texture":0,"drawable":0,"component_id":9},
{"texture":0,"drawable":0,"component_id":10},
{"texture":11,"drawable":0,"component_id":11}],"headOverlays":{"chestHair":
{"color":0,"opacity":0,"style":0},"lipstick":
{"color":0,"opacity":0,"style":0},"complexion":
{"color":0,"opacity":0,"style":0},"bodyBlemishes":
{"color":0,"opacity":0,"style":0},"sunDamage":
{"color":0,"opacity":0,"style":0},"blemishes":
{"color":0,"opacity":0,"style":0},"makeUp":
{"color":0,"opacity":0,"style":0},"blush":
{"color":0,"opacity":0,"style":0},"beard":
{"color":0,"opacity":0,"style":0},"eyebrows":
{"color":0,"opacity":0,"style":0},"moleAndFreckles":
{"color":0,"opacity":0,"style":0},"ageing":{"color":0,"opacity":0,"style":0}}}', 0,
NULL, NULL, 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '[]', '[]',
'[]', '[]', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, 0,
488),
(277, '188.246.56.196', '[{"percent":74.11,"name":"hunger","val":741100},
{"percent":80.5825,"name":"thirst","val":805825}]', NULL, NULL,
'{"bank":358050,"black_money":0,"money":27449960}', 'owner',
'[{"name":"WEAPON_CARBINERIFLE","slot":1,"metadata":
{"serial":"629917UBZ560955","durability":95.70999999999984,"ammo":30,"registered":"
suljmi","components":[]},"count":1},{"name":"WEAPON_APPISTOL","slot":2,"metadata":
{"serial":"741451CNP463739","durability":49.60000000000286,"ammo":18,"registered":"
M4X","components":[]},"count":1},{"name":"ammo-rifle","slot":14,"count":827},
{"name":"phone","slot":11,"count":1},{"name":"money","slot":12,"metadata":
{"type":"account"},"count":27449960},{"name":"ammo-9","slot":13,"count":879},
{"name":"pancir","slot":5,"count":100}]', 'police', 3, NULL,
'{"x":448.3,"heading":260.8,"z":46.3,"y":-560.4}', 'James', 'Stow', '19.08.1994',
'm', '189', 'false', NULL, NULL,
'https://pngimage.net/wp-content/uploads/2018/06/gta-online-character-png-9.png',
NULL, NULL, '{"model":"mp_m_freemode_01","components":
[{"component_id":0,"texture":0,"drawable":0},
{"component_id":1,"texture":0,"drawable":0},
{"component_id":2,"texture":0,"drawable":0},
{"component_id":3,"texture":0,"drawable":0},
{"component_id":4,"texture":0,"drawable":0},
{"component_id":5,"texture":0,"drawable":0},
{"component_id":6,"texture":0,"drawable":0},
{"component_id":7,"texture":0,"drawable":0},
{"component_id":8,"texture":0,"drawable":0},
{"component_id":9,"texture":0,"drawable":0},
{"component_id":10,"texture":0,"drawable":0},
{"component_id":11,"texture":0,"drawable":0}],"props":[{"prop_id":0,"texture":-
1,"drawable":-1},{"prop_id":1,"texture":-1,"drawable":-1},{"prop_id":2,"texture":-
1,"drawable":-1},{"prop_id":6,"texture":-1,"drawable":-1},{"prop_id":7,"texture":-
1,"drawable":-1}],"hair":{"style":0,"highlight":0,"color":0},"faceFeatures":
{"nosePeakHigh":0,"chinBoneSize":0,"lipsThickness":0,"noseBoneTwist":0,"noseWidth":
0,"chinBoneLenght":0,"nosePeakLowering":0,"noseBoneHigh":0,"neckThickness":0,"eyeBr
ownForward":0,"eyeBrownHigh":0,"chinBoneLowering":0,"cheeksBoneHigh":0,"jawBoneWidt
h":0,"nosePeakSize":0,"chinHole":0,"cheeksBoneWidth":0,"eyesOpening":0,"jawBoneBack
Size":0,"cheeksWidth":0},"headBlend":
{"skinFirst":0,"shapeFirst":0,"skinMix":0,"shapeMix":0,"skinSecond":0,"shapeSecond"
:0},"eyeColor":-1,"headOverlays":{"sunDamage":
{"style":0,"opacity":0,"color":0},"chestHair":
{"style":0,"opacity":0,"color":0},"ageing":
{"style":0,"opacity":0,"color":0},"beard":
{"style":0,"opacity":0,"color":0},"makeUp":
{"style":0,"opacity":0,"color":0},"eyebrows":
{"style":0,"opacity":0,"color":0},"blush":
{"style":0,"opacity":0,"color":0},"blemishes":
{"style":0,"opacity":0,"color":0},"moleAndFreckles":
{"style":0,"opacity":0,"color":0},"bodyBlemishes":
{"style":0,"opacity":0,"color":0},"complexion":
{"style":0,"opacity":0,"color":0},"lipstick":{"style":0,"opacity":0,"color":0}}}',
0, NULL, NULL, 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '[]', '[]',
'[]', '[]', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, 0,
190),
(278, '109.175.54.77', '[{"name":"hunger","val":86900,"percent":8.69},
{"name":"thirst","val":190175,"percent":19.0175}]', NULL, NULL,
'{"bank":5565705,"black_money":0,"money":0}', 'owner', '[]', 'unemployed', 0, NULL,
'{"y":-1240.4,"x":-799.4,"heading":175.7,"z":8.2}', 'Hara', 'Bara', '1111', 'm',
'156', 'false', NULL, NULL, 'https://pngimage.net/wp-content/uploads/2018/06/gta-
online-character-png-9.png', NULL, NULL, '{"headBlend":
{"skinFirst":15,"skinMix":1,"shapeFirst":0,"shapeSecond":0,"shapeMix":0,"skinSecond
":0},"hair":
{"color":1,"highlight":1,"style":0},"model":"mp_m_freemode_01","eyeColor":-
1,"props":[{"texture":-1,"drawable":-1,"prop_id":0},{"texture":-1,"drawable":-
1,"prop_id":1},{"texture":-1,"drawable":-1,"prop_id":2},{"texture":-1,"drawable":-
1,"prop_id":6},{"texture":-1,"drawable":-1,"prop_id":7}],"faceFeatures":
{"nosePeakHigh":0,"eyeBrownForward":0,"cheeksWidth":0,"nosePeakSize":0,"chinBoneLow
ering":0,"nosePeakLowering":0,"lipsThickness":0,"jawBoneWidth":0,"eyeBrownHigh":0,"
chinHole":0,"cheeksBoneHigh":0,"neckThickness":0,"noseWidth":0,"chinBoneLenght":0,"
jawBoneBackSize":0,"eyesOpening":0,"noseBoneHigh":0,"cheeksBoneWidth":0,"chinBoneSi
ze":0,"noseBoneTwist":0},"components":[{"texture":0,"drawable":0,"component_id":0},
{"texture":0,"drawable":0,"component_id":1},
{"texture":0,"drawable":0,"component_id":2},
{"texture":0,"drawable":0,"component_id":3},
{"texture":0,"drawable":0,"component_id":4},
{"texture":0,"drawable":0,"component_id":5},
{"texture":0,"drawable":0,"component_id":6},
{"texture":0,"drawable":0,"component_id":7},
{"texture":1,"drawable":0,"component_id":8},
{"texture":0,"drawable":0,"component_id":9},
{"texture":0,"drawable":0,"component_id":10},
{"texture":11,"drawable":0,"component_id":11}],"headOverlays":{"chestHair":
{"color":0,"opacity":0,"style":0},"lipstick":
{"color":0,"opacity":0,"style":0},"complexion":
{"color":0,"opacity":0,"style":0},"makeUp":
{"color":0,"opacity":0,"style":0},"sunDamage":
{"color":0,"opacity":0,"style":0},"ageing":
{"color":0,"opacity":0,"style":0},"moleAndFreckles":
{"color":0,"opacity":0,"style":0},"blush":
{"color":0,"opacity":0,"style":0},"beard":
{"color":0,"opacity":0,"style":0},"eyebrows":
{"color":0,"opacity":0,"style":0},"blemishes":
{"color":0,"opacity":0,"style":0},"bodyBlemishes":
{"color":0,"opacity":0,"style":0}}}', 0, NULL, NULL, 0, NULL, NULL, 'BA1234', NULL,
NULL, NULL, NULL, NULL, NULL, '[]', '[]', '[]', '[]', NULL, NULL, NULL, NULL, NULL,
NULL, NULL, NULL, NULL, NULL, NULL, 0, 0, 887),
(279, '109.245.207.153', '[{"name":"hunger","percent":11.92,"val":119200},
{"name":"thirst","percent":21.44,"val":214400}]', NULL, NULL,
'{"bank":216300,"black_money":0,"money":83193760}', 'owner',
'[{"name":"money","slot":1,"metadata":{"type":"account"},"count":83193760}]',
'police', 1, NULL, '{"x":-53.3,"heading":252.2,"z":26.0,"y":-1095.5}', 'Nikola',
'Pavlovic', '1.1.1999', 'm', '180', 'false', NULL, NULL, 'https://pngimage.net/wp-
content/uploads/2018/06/gta-online-character-png-9.png', NULL, NULL, NULL, 0, NULL,
NULL, 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '[]', '[]', '[]',
'[]', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, 0, 100),
(280, '109.175.106.125', '[{"name":"hunger","percent":48.99,"val":489900},
{"name":"thirst","percent":49.2425,"val":492425}]', NULL, NULL,
'{"bank":15550,"black_money":0,"money":2}', 'owner', '[{"metadata":{"components":
[],"ammo":22,"registered":"amel99","serial":"610381SLK809518","durability":66.54999
999999873},"count":1,"slot":1,"name":"WEAPON_CARBINERIFLE"},
{"count":1000,"slot":2,"name":"pancir"},{"count":997,"slot":3,"name":"bandage"},
{"count":2,"slot":6,"name":"money"},{"count":9454,"slot":7,"name":"ammo-rifle"}]',
'unemployed', 0, NULL, '{"heading":352.1,"z":46.7,"y":2563.9,"x":2340.6}', 'Amel',
'Kidara', '01.01.1996', 'm', '176', 'false', NULL, NULL, 'https://pngimage.net/wp-
content/uploads/2018/06/gta-online-character-png-9.png', NULL, NULL,
'{"faceFeatures":
{"nosePeakHigh":0,"eyeBrownForward":0,"cheeksWidth":0,"nosePeakSize":0,"chinBoneLow
ering":0,"nosePeakLowering":0,"chinHole":0,"jawBoneWidth":0,"eyeBrownHigh":0,"chinB
oneSize":0,"cheeksBoneHigh":0,"noseWidth":0,"chinBoneLenght":0,"neckThickness":0,"j
awBoneBackSize":0,"eyesOpening":0,"noseBoneHigh":0,"cheeksBoneWidth":0,"lipsThickne
ss":0,"noseBoneTwist":0},"hair":{"color":1,"highlight":1,"style":0},"headBlend":
{"skinFirst":15,"shapeSecond":0,"skinMix":1,"skinSecond":0,"shapeMix":0,"shapeFirst
":0},"eyeColor":-1,"props":[{"texture":-1,"drawable":-1,"prop_id":0},{"texture":-
1,"drawable":-1,"prop_id":1},{"texture":-1,"drawable":-1,"prop_id":2},{"texture":-
1,"drawable":-1,"prop_id":6},{"texture":-1,"drawable":-
1,"prop_id":7}],"model":"mp_m_freemode_01","components":
[{"texture":0,"component_id":0,"drawable":0},
{"texture":0,"component_id":1,"drawable":0},
{"texture":0,"component_id":2,"drawable":0},
{"texture":0,"component_id":3,"drawable":0},
{"texture":0,"component_id":4,"drawable":0},
{"texture":0,"component_id":5,"drawable":0},
{"texture":0,"component_id":6,"drawable":0},
{"texture":0,"component_id":7,"drawable":0},
{"texture":1,"component_id":8,"drawable":0},
{"texture":0,"component_id":9,"drawable":0},
{"texture":0,"component_id":10,"drawable":0},
{"texture":11,"component_id":11,"drawable":0}],"headOverlays":{"chestHair":
{"color":0,"opacity":0,"style":0},"lipstick":
{"color":0,"opacity":0,"style":0},"complexion":
{"color":0,"opacity":0,"style":0},"moleAndFreckles":
{"color":0,"opacity":0,"style":0},"sunDamage":
{"color":0,"opacity":0,"style":0},"blemishes":
{"color":0,"opacity":0,"style":0},"bodyBlemishes":
{"color":0,"opacity":0,"style":0},"blush":
{"color":0,"opacity":0,"style":0},"beard":
{"color":0,"opacity":0,"style":0},"eyebrows":
{"color":0,"opacity":0,"style":0},"ageing":
{"color":0,"opacity":0,"style":0},"makeUp":{"color":0,"opacity":0,"style":0}}}', 0,
NULL, NULL, 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '[]', '[]',
'[]', '[]', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, 0,
70),
(281, '93.143.135.63',
'[{"percent":79.10000000000001,"val":791000,"name":"hunger"},
{"percent":84.325,"val":843250,"name":"thirst"}]', NULL, NULL,
'{"bank":15650,"black_money":0,"money":0}', 'admin', '[]', 'unemployed', 0, NULL,
'{"z":30.9,"y":-1324.9,"x":-209.2,"heading":336.9}', 'Luka', 'Luzci', '12.1.1190',
'm', '150', 'false', NULL, NULL,
'https://pngimage.net/wp-content/uploads/2018/06/gta-online-character-png-9.png',
NULL, NULL, NULL, 0, NULL, NULL, 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL,
NULL, '[]', '[]', '[]', '[]', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL,
NULL, NULL, 0, 0, 26),
(282, '93.143.160.82', '[{"percent":46.48,"val":464800,"name":"hunger"},
{"percent":47.36,"val":473600,"name":"thirst"}]', NULL, NULL,
'{"bank":250,"black_money":0,"money":10345}', 'owner', '[{"metadata":
{"durability":68.1999999999988,"serial":"804554WLH916887","registered":"MATEJ","com
ponents":
["at_grip","at_clip_extended_rifle","at_suppressor_heavy"],"ammo":40},"count":1,"sl
ot":1,"name":"WEAPON_SPECIALCARBINE"},{"count":13,"slot":2,"name":"pancir"},
{"metadata":{"components":
[],"durability":99.8},"count":1,"slot":3,"name":"WEAPON_CROWBAR"},
{"count":885,"slot":6,"name":"ammo-9"},{"count":10345,"slot":7,"name":"money"},
{"count":2,"slot":9,"name":"at_clip_extended_rifle"},
{"count":2,"slot":10,"name":"at_grip"},{"metadata":
{"durability":99.7,"serial":"766491EDI506657","registered":"MATEJ","components":
[],"ammo":12},"count":1,"slot":11,"name":"WEAPON_PISTOL"},
{"count":1,"slot":12,"name":"radio"},{"metadata":{"components":
[],"durability":100},"count":1,"slot":13,"name":"WEAPON_CROWBAR"}]', 'barani', 3,
NULL, '{"heading":221.4,"z":30.5,"x":26.2,"y":-1347.6}', 'Matej', 'Modric',
'1.1.2000', 'm', '172', 'false', NULL, NULL,
'https://pngimage.net/wp-content/uploads/2018/06/gta-online-character-png-9.png',
NULL, NULL, '{"faceFeatures":
{"eyesOpening":0,"chinBoneLenght":0,"cheeksBoneWidth":0,"cheeksBoneHigh":0,"noseWid
th":0,"nosePeakSize":0,"eyeBrownHigh":0,"jawBoneWidth":0,"jawBoneBackSize":0,"eyeBr
ownForward":0,"chinBoneLowering":0,"neckThickness":0,"noseBoneTwist":0,"lipsThickne
ss":0,"nosePeakHigh":0,"nosePeakLowering":0,"chinBoneSize":0,"noseBoneHigh":0,"chin
Hole":0,"cheeksWidth":0},"hair":{"highlight":1,"color":1,"style":0},"props":
[{"drawable":-1,"texture":-1,"prop_id":0},{"drawable":-1,"texture":-1,"prop_id":1},
{"drawable":-1,"texture":-1,"prop_id":2},{"drawable":-1,"texture":-1,"prop_id":6},
{"drawable":-1,"texture":-1,"prop_id":7}],"headBlend":
{"shapeMix":0,"shapeFirst":0,"skinSecond":0,"skinFirst":15,"shapeSecond":0,"skinMix
":1},"components":[{"drawable":0,"texture":0,"component_id":0},
{"drawable":190,"texture":0,"component_id":1},
{"drawable":0,"texture":0,"component_id":2},
{"drawable":19,"texture":0,"component_id":3},
{"drawable":3,"texture":0,"component_id":4},
{"drawable":0,"texture":0,"component_id":5},
{"drawable":1,"texture":0,"component_id":6},
{"drawable":0,"texture":0,"component_id":7},
{"drawable":7,"texture":0,"component_id":8},
{"drawable":0,"texture":0,"component_id":9},
{"drawable":0,"texture":0,"component_id":10},
{"drawable":22,"texture":0,"component_id":11}],"headOverlays":{"chestHair":
{"opacity":0,"color":0,"style":0},"eyebrows":
{"opacity":0,"color":0,"style":0},"blush":
{"opacity":0,"color":0,"style":0},"moleAndFreckles":
{"opacity":0,"color":0,"style":0},"beard":
{"opacity":0,"color":0,"style":0},"sunDamage":
{"opacity":0,"color":0,"style":0},"ageing":
{"opacity":0,"color":0,"style":0},"bodyBlemishes":
{"opacity":0,"color":0,"style":0},"complexion":
{"opacity":0,"color":0,"style":0},"lipstick":
{"opacity":0,"color":0,"style":0},"blemishes":
{"opacity":0,"color":0,"style":0},"makeUp":
{"opacity":0,"color":0,"style":0}},"model":"mp_m_freemode_01","eyeColor":-1}', 0,
NULL, NULL, 0, NULL, NULL, 'BA1111', 1111, NULL, NULL, NULL, NULL, NULL, '[]',
'[]', '[]', '[]', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL,
0, 0, 66),
(283, '178.222.205.60', '[{"percent":86.92,"val":869200,"name":"hunger"},
{"percent":90.19,"val":901900,"name":"thirst"}]', NULL, NULL,
'{"bank":15550,"black_money":0,"money":0}', 'admin',
'[{"name":"WEAPON_CARBINERIFLE","slot":1,"metadata":{"registered":"~r~
Rados","components":
[],"durability":100,"serial":"441911APM132042","ammo":0},"count":1},
{"name":"pancir","slot":2,"count":9952}]', 'unemployed', 0, NULL, '{"z":9.6,"y":-
1745.0,"x":-270.2,"heading":71.5}', 'Nemaja', 'Andrejic', '1.12.2005', 'm', '182',
'false', NULL, NULL, 'https://pngimage.net/wp-content/uploads/2018/06/gta-online-
character-png-9.png', NULL, NULL, '{"faceFeatures":
{"chinBoneSize":0,"noseBoneTwist":0,"chinBoneLowering":0,"nosePeakSize":0,"noseBone
High":0,"noseWidth":0,"eyesOpening":0,"nosePeakLowering":0,"chinHole":0,"jawBoneWid
th":0,"lipsThickness":0,"cheeksWidth":0,"cheeksBoneHigh":0,"jawBoneBackSize":0,"chi
nBoneLenght":0,"nosePeakHigh":0,"neckThickness":0,"eyeBrownForward":0,"eyeBrownHigh
":0,"cheeksBoneWidth":0},"headOverlays":{"moleAndFreckles":
{"color":0,"style":0,"opacity":0},"lipstick":
{"color":0,"style":0,"opacity":0},"eyebrows":
{"color":0,"style":0,"opacity":0},"sunDamage":
{"color":0,"style":0,"opacity":0},"blemishes":
{"color":0,"style":0,"opacity":0},"bodyBlemishes":
{"color":0,"style":0,"opacity":0},"makeUp":
{"color":0,"style":0,"opacity":0},"blush":
{"color":0,"style":0,"opacity":0},"ageing":
{"color":0,"style":0,"opacity":0},"chestHair":
{"color":0,"style":0,"opacity":0},"beard":
{"color":0,"style":0,"opacity":0},"complexion":
{"color":0,"style":0,"opacity":0}},"hair":
{"color":1,"style":14,"highlight":1},"props":[{"texture":-
1,"prop_id":0,"drawable":-1},{"texture":-1,"prop_id":1,"drawable":-1},{"texture":-
1,"prop_id":2,"drawable":-1},{"texture":-1,"prop_id":6,"drawable":-1},{"texture":-
1,"prop_id":7,"drawable":-1}],"components":
[{"component_id":0,"texture":0,"drawable":0},
{"component_id":1,"texture":3,"drawable":136},
{"component_id":2,"texture":0,"drawable":14},
{"component_id":4,"texture":0,"drawable":4},
{"component_id":5,"texture":0,"drawable":0},
{"component_id":6,"texture":0,"drawable":34},
{"component_id":7,"texture":0,"drawable":0},
{"component_id":8,"texture":0,"drawable":15},
{"component_id":9,"texture":6,"drawable":28},
{"component_id":10,"texture":0,"drawable":0},
{"component_id":11,"texture":2,"drawable":13},
{"component_id":3,"texture":0,"drawable":37}],"eyeColor":-1,"headBlend":
{"shapeFirst":0,"skinMix":1,"skinSecond":0,"shapeSecond":0,"skinFirst":15,"shapeMix
":0},"model":"mp_m_freemode_01"}', 0, NULL, NULL, 0, NULL, NULL, NULL, NULL, NULL,
NULL, NULL, NULL, NULL, '[]', '[]', '[]', '[]', NULL, NULL, NULL, NULL, NULL, NULL,
NULL, NULL, NULL, NULL, NULL, 0, 0, 22),
(284, '46.235.97.168', '[{"name":"hunger","val":499800,"percent":49.98},
{"name":"thirst","val":499850,"percent":49.985}]', NULL, NULL,
'{"bank":360980,"black_money":0,"money":0}', 'owner', '[]', 'police', 3, NULL,
'{"heading":108.2,"z":31.5,"y":-843.9,"x":-414.5}', 'Zabahudin', 'Daca',
'1.1.1993', 'm', '200', 'false', NULL, NULL,
'https://pngimage.net/wp-content/uploads/2018/06/gta-online-character-png-9.png',
NULL, NULL, '{"headOverlays":{"moleAndFreckles":
{"color":0,"opacity":0,"style":0},"lipstick":
{"color":0,"opacity":0,"style":0},"ageing":
{"color":0,"opacity":0,"style":0},"sunDamage":
{"color":0,"opacity":0,"style":0},"blemishes":
{"color":0,"opacity":0,"style":0},"beard":
{"color":0,"opacity":0,"style":0},"makeUp":
{"color":0,"opacity":0,"style":0},"blush":
{"color":0,"opacity":0,"style":0},"eyebrows":
{"color":0,"opacity":0,"style":0},"chestHair":
{"color":0,"opacity":0,"style":0},"bodyBlemishes":
{"color":0,"opacity":0,"style":0},"complexion":
{"color":0,"opacity":0,"style":0}},"props":[{"texture":-1,"prop_id":0,"drawable":-
1},{"texture":-1,"prop_id":1,"drawable":-1},{"texture":-1,"prop_id":2,"drawable":-
1},{"texture":-1,"prop_id":6,"drawable":-1},{"texture":-1,"prop_id":7,"drawable":-
1}],"hair":{"color":1,"style":0,"highlight":1},"eyeColor":-
1,"model":"mp_m_freemode_01","components":
[{"texture":0,"component_id":0,"drawable":0},
{"texture":0,"component_id":2,"drawable":0},
{"texture":0,"component_id":5,"drawable":0},
{"texture":0,"component_id":7,"drawable":0},
{"texture":0,"component_id":9,"drawable":0},
{"texture":0,"component_id":10,"drawable":0},
{"texture":0,"component_id":1,"drawable":8},
{"texture":0,"component_id":4,"drawable":19},
{"texture":0,"component_id":6,"drawable":6},
{"texture":0,"component_id":8,"drawable":15},
{"texture":1,"component_id":11,"drawable":111},
{"texture":0,"component_id":3,"drawable":18}],"headBlend":
{"shapeFirst":0,"skinMix":1,"skinSecond":0,"shapeSecond":0,"skinFirst":15,"shapeMix
":0},"faceFeatures":
{"chinBoneSize":0,"jawBoneWidth":0,"chinBoneLowering":0,"nosePeakSize":0,"noseBoneH
igh":0,"noseWidth":0,"eyesOpening":0,"nosePeakLowering":0,"chinHole":0,"noseBoneTwi
st":0,"lipsThickness":0,"cheeksWidth":0,"cheeksBoneHigh":0,"jawBoneBackSize":0,"chi
nBoneLenght":0,"nosePeakHigh":0,"neckThickness":0,"eyeBrownForward":0,"eyeBrownHigh
":0,"cheeksBoneWidth":0}}', 0, NULL, NULL, 0, NULL, NULL, NULL, NULL, NULL, NULL,
NULL, NULL, NULL, '[]', '[]', '[]', '[]', NULL, NULL, NULL, NULL, NULL, NULL, NULL,
NULL, NULL, NULL, NULL, 0, 0, 53),
(285, '62.240.25.157', '[{"name":"hunger","val":881200,"percent":88.12},
{"name":"thirst","val":910900,"percent":91.09}]', NULL, NULL,
'{"bank":15600,"black_money":0,"money":0}', 'admin', '[]', 'unemployed', 0, NULL,
'{"z":26.4,"y":-1111.4,"x":-39.3,"heading":157.9}', 'Hamza', 'Tesla', '25.9.2023',
'm', '200', 'false', NULL, NULL,
'https://pngimage.net/wp-content/uploads/2018/06/gta-online-character-png-9.png',
NULL, NULL, '{"hair":{"color":61,"style":14,"highlight":1},"faceFeatures":
{"chinBoneSize":0,"noseBoneTwist":0,"chinBoneLowering":0,"nosePeakSize":0,"noseBone
High":0,"noseWidth":0,"eyesOpening":0,"nosePeakLowering":0,"chinHole":0,"eyeBrownFo
rward":0,"jawBoneWidth":0,"cheeksWidth":0,"cheeksBoneHigh":0,"jawBoneBackSize":0,"c
hinBoneLenght":0,"eyeBrownHigh":0,"neckThickness":0,"nosePeakHigh":0,"lipsThickness
":0,"cheeksBoneWidth":0},"headOverlays":{"moleAndFreckles":
{"color":0,"opacity":0,"style":0},"lipstick":
{"color":0,"opacity":0,"style":0},"eyebrows":
{"color":0,"opacity":0,"style":0},"sunDamage":
{"color":0,"opacity":0,"style":0},"blemishes":
{"color":0,"opacity":0,"style":0},"beard":
{"color":0,"opacity":0,"style":0},"makeUp":
{"color":0,"opacity":0,"style":0},"blush":
{"color":0,"opacity":0,"style":0},"ageing":
{"color":0,"opacity":0,"style":0},"chestHair":
{"color":0,"opacity":0,"style":0},"bodyBlemishes":
{"color":0,"opacity":0,"style":0},"complexion":
{"color":0,"opacity":0,"style":0}},"props":[{"texture":-1,"prop_id":0,"drawable":-
1},{"texture":-1,"prop_id":1,"drawable":-1},{"texture":-1,"prop_id":2,"drawable":-
1},{"texture":-1,"prop_id":6,"drawable":-1},{"texture":-1,"prop_id":7,"drawable":-
1}],"model":"mp_m_freemode_01","eyeColor":-1,"headBlend":
{"shapeFirst":0,"skinMix":1,"skinSecond":0,"shapeSecond":0,"skinFirst":15,"shapeMix
":0},"components":[{"component_id":0,"texture":0,"drawable":0},
{"component_id":2,"texture":0,"drawable":0},
{"component_id":5,"texture":0,"drawable":0},
{"component_id":7,"texture":0,"drawable":0},
{"component_id":10,"texture":0,"drawable":0},
{"component_id":1,"texture":0,"drawable":169},
{"component_id":11,"texture":1,"drawable":11},
{"component_id":8,"texture":0,"drawable":22},
{"component_id":6,"texture":2,"drawable":7},
{"component_id":9,"texture":0,"drawable":0},
{"component_id":3,"texture":0,"drawable":18},
{"component_id":4,"texture":0,"drawable":10}]}', 0, NULL, NULL, 0, NULL, NULL,
NULL, NULL, NULL, NULL, NULL, NULL, NULL, '[]', '[]', '[]', '[]', NULL, NULL, NULL,
NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, 0, 21),
(286, '77.238.193.179',
'[{"name":"hunger","val":739300,"percent":73.92999999999999},
{"name":"thirst","val":804475,"percent":80.4475}]', NULL, NULL,
'{"bank":446100,"black_money":0,"money":0}', 'owner', '[]', 'police', 5, NULL,
'{"z":29.4,"y":-1003.7,"x":159.1,"heading":43.6}', 'Tony', 'Montana', '01.01.1999',
'm', '185', 'false', NULL, NULL,
'https://pngimage.net/wp-content/uploads/2018/06/gta-online-character-png-9.png',
NULL, NULL, '{"faceFeatures":
{"chinBoneSize":0,"jawBoneWidth":0,"chinBoneLowering":0,"nosePeakSize":0,"noseBoneH
igh":0,"noseWidth":0,"eyesOpening":0,"nosePeakLowering":0,"chinHole":0,"noseBoneTwi
st":0,"lipsThickness":0,"cheeksWidth":0,"cheeksBoneHigh":0,"nosePeakHigh":0,"chinBo
neLenght":0,"eyeBrownHigh":0,"neckThickness":0,"jawBoneBackSize":0,"eyeBrownForward
":0,"cheeksBoneWidth":0},"eyeColor":-1,"headOverlays":{"moleAndFreckles":
{"color":0,"style":0,"opacity":0},"lipstick":
{"color":0,"style":0,"opacity":0},"eyebrows":
{"color":0,"style":0,"opacity":0},"sunDamage":
{"color":0,"style":0,"opacity":0},"blemishes":
{"color":0,"style":0,"opacity":0},"bodyBlemishes":
{"color":0,"style":0,"opacity":0},"makeUp":
{"color":0,"style":0,"opacity":0},"blush":
{"color":0,"style":0,"opacity":0},"ageing":
{"color":0,"style":0,"opacity":0},"chestHair":
{"color":0,"style":0,"opacity":0},"beard":
{"color":0,"style":0,"opacity":0},"complexion":
{"color":0,"style":0,"opacity":0}},"props":[{"texture":-1,"prop_id":0,"drawable":-
1},{"texture":-1,"prop_id":1,"drawable":-1},{"texture":-1,"prop_id":2,"drawable":-
1},{"texture":-1,"prop_id":6,"drawable":-1},{"texture":-1,"prop_id":7,"drawable":-
1}],"components":[{"component_id":0,"texture":0,"drawable":0},
{"component_id":2,"texture":0,"drawable":0},
{"component_id":5,"texture":0,"drawable":0},
{"component_id":6,"texture":0,"drawable":0},
{"component_id":7,"texture":0,"drawable":0},
{"component_id":9,"texture":0,"drawable":0},
{"component_id":4,"texture":0,"drawable":21},
{"component_id":3,"texture":0,"drawable":0},
{"component_id":10,"texture":0,"drawable":3},
{"component_id":8,"texture":0,"drawable":15},
{"component_id":11,"texture":0,"drawable":16},
{"component_id":1,"texture":0,"drawable":9}],"hair":
{"color":0,"style":0,"highlight":0},"headBlend":
{"shapeFirst":0,"skinMix":0,"skinSecond":0,"shapeSecond":0,"skinFirst":0,"shapeMix"
:0},"model":"mp_m_freemode_01"}', 0, NULL, NULL, 0, NULL, NULL, 'BA609527', NULL,
NULL, NULL, NULL, NULL, NULL, '[]', '[]', '[]', '[]', NULL, NULL, NULL, NULL, NULL,
NULL, NULL, NULL, NULL, NULL, NULL, 0, 0, 44),
(287, '178.237.217.211', '[{"percent":78.02,"val":780200,"name":"hunger"},
{"percent":83.515,"val":835150,"name":"thirst"}]', NULL, NULL,
'{"bank":15550,"black_money":0,"money":999986001}', 'admin',
'[{"name":"WEAPON_SPECIALCARBINE","slot":1,"metadata":{"registered":"Milan on
top","components":
[],"durability":98.40999999999994,"serial":"181065ZHO387164","ammo":30},"count":1},
{"name":"ammo-rifle","slot":2,"count":167},
{"name":"money","slot":3,"count":999986001}]', 'unemployed', 0, NULL,
'{"z":691.7,"y":434.2,"x":3631.7,"heading":214.9}', 'Milan', 'Tata', '10.10.2000',
'm', '200', 'false', NULL, NULL,
'https://pngimage.net/wp-content/uploads/2018/06/gta-online-character-png-9.png',
NULL, NULL, '{"components":[{"component_id":0,"texture":0,"drawable":0},
{"component_id":1,"texture":0,"drawable":0},
{"component_id":2,"texture":0,"drawable":0},
{"component_id":3,"texture":0,"drawable":0},
{"component_id":4,"texture":0,"drawable":0},
{"component_id":5,"texture":0,"drawable":0},
{"component_id":6,"texture":0,"drawable":0},
{"component_id":7,"texture":0,"drawable":0},
{"component_id":8,"texture":1,"drawable":0},
{"component_id":9,"texture":0,"drawable":0},
{"component_id":10,"texture":0,"drawable":0},
{"component_id":11,"texture":11,"drawable":0}],"faceFeatures":
{"chinBoneSize":0,"jawBoneWidth":0,"chinBoneLowering":0,"nosePeakSize":0,"noseBoneH
igh":0,"noseWidth":0,"eyesOpening":0,"nosePeakLowering":0,"chinHole":0,"eyeBrownHig
h":0,"jawBoneBackSize":0,"cheeksWidth":0,"cheeksBoneHigh":0,"noseBoneTwist":0,"chin
BoneLenght":0,"nosePeakHigh":0,"neckThickness":0,"lipsThickness":0,"eyeBrownForward
":0,"cheeksBoneWidth":0},"headOverlays":{"moleAndFreckles":
{"color":0,"style":0,"opacity":0},"lipstick":
{"color":0,"style":0,"opacity":0},"ageing":
{"color":0,"style":0,"opacity":0},"sunDamage":
{"color":0,"style":0,"opacity":0},"blemishes":
{"color":0,"style":0,"opacity":0},"beard":
{"color":0,"style":0,"opacity":0},"makeUp":
{"color":0,"style":0,"opacity":0},"blush":
{"color":0,"style":0,"opacity":0},"eyebrows":
{"color":0,"style":0,"opacity":0},"chestHair":
{"color":0,"style":0,"opacity":0},"bodyBlemishes":
{"color":0,"style":0,"opacity":0},"complexion":
{"color":0,"style":0,"opacity":0}},"props":[{"texture":-1,"prop_id":0,"drawable":-
1},{"texture":-1,"prop_id":1,"drawable":-1},{"texture":-1,"prop_id":2,"drawable":-
1},{"texture":-1,"prop_id":6,"drawable":-1},{"texture":-1,"prop_id":7,"drawable":-
1}],"hair":{"color":1,"style":0,"highlight":1},"eyeColor":-1,"headBlend":
{"shapeFirst":0,"skinMix":1,"skinSecond":0,"shapeSecond":0,"skinFirst":15,"shapeMix
":0},"model":"mp_m_freemode_01"}', 0, NULL, NULL, 0, NULL, NULL, NULL, NULL, NULL,
NULL, NULL, NULL, NULL, '[]', '[]', '[]', '[]', NULL, NULL, NULL, NULL, NULL, NULL,
NULL, NULL, NULL, NULL, NULL, 0, 0, 37),
(288, '77.77.223.151', '[{"name":"hunger","percent":49.76,"val":497600},
{"name":"thirst","percent":49.82,"val":498200}]', NULL, NULL,
'{"bank":10250,"black_money":0,"money":0}', 'owner', '[{"metadata":
{"durability":12.87999999999669,"registered":"Warze","serial":"276391REO506854","am
mo":30,"components":[]},"slot":1,"count":1,"name":"WEAPON_SPECIALCARBINE"},
{"slot":3,"count":1000,"name":"pancir"},{"slot":7,"count":87066,"name":"ammo-
rifle"}]', 'barani', 3, NULL, '{"heading":15.4,"x":-343.5,"y":-1400.0,"z":30.6}',
'Warze', 'Ilidza', '04.02.2000', 'm', '150', 'false', NULL, NULL,
'https://pngimage.net/wp-content/uploads/2018/06/gta-online-character-png-9.png',
NULL, NULL, '{"hair":
{"color":29,"style":14,"highlight":1},"model":"mp_m_freemode_01","headOverlays":
{"moleAndFreckles":{"color":0,"style":0,"opacity":0},"lipstick":
{"color":0,"style":0,"opacity":0},"eyebrows":
{"color":0,"style":0,"opacity":0},"sunDamage":
{"color":0,"style":0,"opacity":0},"blemishes":
{"color":0,"style":0,"opacity":0},"beard":
{"color":0,"style":0,"opacity":1},"makeUp":
{"color":0,"style":0,"opacity":0},"blush":
{"color":0,"style":0,"opacity":0},"bodyBlemishes":
{"color":0,"style":0,"opacity":0},"chestHair":
{"color":0,"style":0,"opacity":0},"ageing":
{"color":0,"style":0,"opacity":0},"complexion":
{"color":0,"style":0,"opacity":0}},"props":[{"texture":-1,"prop_id":0,"drawable":-
1},{"texture":-1,"prop_id":1,"drawable":-1},{"texture":-1,"prop_id":2,"drawable":-
1},{"texture":-1,"prop_id":6,"drawable":-1},{"texture":-1,"prop_id":7,"drawable":-
1}],"eyeColor":-1,"components":[{"component_id":0,"texture":0,"drawable":0},
{"component_id":1,"texture":0,"drawable":0},
{"component_id":2,"texture":0,"drawable":0},
{"component_id":3,"texture":0,"drawable":0},
{"component_id":4,"texture":0,"drawable":0},
{"component_id":5,"texture":0,"drawable":0},
{"component_id":7,"texture":0,"drawable":0},
{"component_id":8,"texture":1,"drawable":0},
{"component_id":9,"texture":0,"drawable":0},
{"component_id":10,"texture":0,"drawable":0},
{"component_id":6,"texture":0,"drawable":7},
{"component_id":11,"texture":0,"drawable":0}],"headBlend":
{"shapeFirst":0,"skinMix":0,"skinSecond":0,"shapeSecond":0,"skinFirst":3,"shapeMix"
:0},"faceFeatures":
{"chinBoneSize":0,"jawBoneWidth":0,"chinBoneLowering":0,"nosePeakSize":0,"noseBoneH
igh":0,"noseWidth":0,"eyesOpening":0,"nosePeakLowering":0,"chinHole":0,"noseBoneTwi
st":0,"eyeBrownForward":0,"cheeksWidth":0,"cheeksBoneHigh":0,"eyeBrownHigh":-
0.4,"chinBoneLenght":0,"nosePeakHigh":0,"neckThickness":0,"lipsThickness":0,"jawBon
eBackSize":0,"cheeksBoneWidth":0}}', 0, NULL, NULL, 0, NULL, NULL, NULL, NULL,
NULL, NULL, NULL, NULL, NULL, '[]', '[]', '[]', '[]', NULL, NULL, NULL, NULL, NULL,
NULL, NULL, NULL, NULL, NULL, NULL, 0, 0, 120),
(289, '217.71.48.221',
'[{"percent":89.25999999999999,"val":892600,"name":"hunger"},
{"percent":91.945,"val":919450,"name":"thirst"}]', NULL, NULL,
'{"bank":15500,"black_money":0,"money":100001}', 'admin',
'[{"name":"money","slot":1,"metadata":{"type":1},"count":1},
{"name":"money","slot":2,"metadata":{"type":100000},"count":100000}]',
'unemployed', 0, NULL, '{"z":38.9,"y":3603.8,"x":1393.4,"heading":223.1}',
'Fikret', 'Gefufna', '1.1.2000', 'm', '180', 'false', NULL, NULL,
'https://pngimage.net/wp-content/uploads/2018/06/gta-online-character-png-9.png',
NULL, NULL, '{"hair":{"color":1,"style":12,"highlight":1},"props":[{"texture":-
1,"prop_id":0,"drawable":-1},{"texture":-1,"prop_id":1,"drawable":-1},{"texture":-
1,"prop_id":2,"drawable":-1},{"texture":-1,"prop_id":6,"drawable":-1},{"texture":-
1,"prop_id":7,"drawable":-1}],"headOverlays":{"moleAndFreckles":
{"color":0,"opacity":0,"style":0},"lipstick":
{"color":0,"opacity":0,"style":0},"eyebrows":
{"color":0,"opacity":0,"style":0},"sunDamage":
{"color":0,"opacity":0,"style":0},"blemishes":
{"color":0,"opacity":0,"style":0},"bodyBlemishes":
{"color":0,"opacity":0,"style":0},"makeUp":
{"color":0,"opacity":0,"style":0},"blush":
{"color":0,"opacity":0,"style":0},"beard":
{"color":0,"opacity":0,"style":0},"chestHair":
{"color":0,"opacity":0,"style":0},"ageing":
{"color":0,"opacity":0,"style":0},"complexion":
{"color":0,"opacity":0,"style":0}},"eyeColor":-
1,"model":"mp_m_freemode_01","faceFeatures":
{"chinBoneSize":0,"jawBoneWidth":0,"chinBoneLowering":0,"nosePeakSize":0,"noseBoneH
igh":0,"noseWidth":0,"eyesOpening":0,"nosePeakLowering":0,"chinHole":0,"noseBoneTwi
st":0,"neckThickness":0,"cheeksWidth":0,"cheeksBoneHigh":0,"eyeBrownForward":0,"chi
nBoneLenght":0,"eyeBrownHigh":0,"lipsThickness":0,"nosePeakHigh":0,"jawBoneBackSize
":0,"cheeksBoneWidth":0},"headBlend":
{"shapeFirst":0,"skinMix":1,"skinSecond":0,"shapeSecond":0,"skinFirst":15,"shapeMix
":0},"components":[{"texture":0,"component_id":0,"drawable":0},
{"texture":0,"component_id":2,"drawable":0},
{"texture":0,"component_id":3,"drawable":0},
{"texture":0,"component_id":5,"drawable":0},
{"texture":0,"component_id":7,"drawable":0},
{"texture":0,"component_id":10,"drawable":0},
{"texture":0,"component_id":1,"drawable":35},
{"texture":0,"component_id":11,"drawable":128},
{"texture":0,"component_id":9,"drawable":0},
{"texture":0,"component_id":4,"drawable":42},
{"texture":0,"component_id":8,"drawable":57},
{"texture":0,"component_id":6,"drawable":7}]}', 0, NULL, NULL, 0, NULL, NULL, NULL,
NULL, NULL, NULL, NULL, NULL, NULL, '[]', '[]', '[]', '[]', NULL, NULL, NULL, NULL,
NULL, NULL, NULL, NULL, NULL, NULL, NULL, 1, 0, 18),
(290, '46.219.230.236', '[{"val":389900,"name":"hunger","percent":38.99},
{"val":417425,"name":"thirst","percent":41.7425}]', NULL, NULL,
'{"bank":15500,"black_money":0,"money":0}', 'user', '[{"metadata":{"components":
[],"ammo":30,"registered":"Fexy","serial":"935421AVU444954","durability":93.5799999
9999976},"count":1,"slot":1,"name":"WEAPON_SPECIALCARBINE"},{"metadata":
{"components":
[],"ammo":0,"registered":"Fexy","serial":"156470VSC774362","durability":46.30000000
000305},"count":1,"slot":2,"name":"WEAPON_APPISTOL"},
{"count":391,"slot":3,"name":"ammo-9"},{"count":10,"slot":4,"name":"pancir"},
{"count":756,"slot":6,"name":"ammo-rifle"},{"metadata":{"components":
[],"ammo":0,"registered":"Fexy","serial":"628519GQA520077","durability":100},"count
":1,"slot":50,"name":"WEAPON_SPECIALCARBINE"}]', 'unemployed', 0, NULL,
'{"heading":334.3,"z":15.8,"y":-1059.7,"x":-679.5}', 'Miki ', 'Frula', '1999', 'm',
'155', 'false', NULL, NULL, 'https://pngimage.net/wp-content/uploads/2018/06/gta-
online-character-png-9.png', NULL, NULL, '{"model":"mp_m_freemode_01","eyeColor":-
1,"props":[{"prop_id":0,"drawable":-1,"texture":-1},{"prop_id":1,"drawable":-
1,"texture":-1},{"prop_id":2,"drawable":-1,"texture":-1},{"prop_id":6,"drawable":-
1,"texture":-1},{"prop_id":7,"drawable":-1,"texture":-1}],"hair":
{"style":0,"highlight":0,"color":0},"faceFeatures":
{"cheeksBoneWidth":0,"chinBoneSize":0,"lipsThickness":0,"noseBoneTwist":0,"noseWidt
h":0,"chinBoneLenght":0,"nosePeakLowering":0,"noseBoneHigh":0,"neckThickness":0,"ey
eBrownForward":0,"chinHole":0,"cheeksWidth":0,"chinBoneLowering":0,"jawBoneWidth":0
,"nosePeakSize":0,"eyeBrownHigh":0,"eyesOpening":0,"cheeksBoneHigh":0,"jawBoneBackS
ize":0,"nosePeakHigh":0},"headBlend":
{"skinFirst":0,"shapeFirst":0,"skinMix":0,"shapeMix":0,"shapeSecond":0,"skinSecond"
:0},"components":[{"component_id":0,"drawable":0,"texture":0},
{"component_id":1,"drawable":0,"texture":0},
{"component_id":2,"drawable":0,"texture":0},
{"component_id":3,"drawable":0,"texture":0},
{"component_id":4,"drawable":0,"texture":0},
{"component_id":5,"drawable":0,"texture":0},
{"component_id":6,"drawable":0,"texture":0},
{"component_id":7,"drawable":0,"texture":0},
{"component_id":8,"drawable":0,"texture":0},
{"component_id":9,"drawable":0,"texture":0},
{"component_id":10,"drawable":0,"texture":0},
{"component_id":11,"drawable":0,"texture":0}],"headOverlays":{"sunDamage":
{"style":0,"opacity":0,"color":0},"chestHair":
{"style":0,"opacity":0,"color":0},"ageing":
{"style":0,"opacity":0,"color":0},"beard":
{"style":0,"opacity":0,"color":0},"makeUp":
{"style":0,"opacity":0,"color":0},"eyebrows":
{"style":0,"opacity":0,"color":0},"lipstick":
{"style":0,"opacity":0,"color":0},"blemishes":
{"style":0,"opacity":0,"color":0},"moleAndFreckles":
{"style":0,"opacity":0,"color":0},"bodyBlemishes":
{"style":0,"opacity":0,"color":0},"complexion":
{"style":0,"opacity":0,"color":0},"blush":{"style":0,"opacity":0,"color":0}}}', 0,
NULL, NULL, 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '[]', '[]',
'[]', '[]', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 1, 0,
79),
(291, '62.240.25.124', '[{"val":498300,"percent":49.83,"name":"hunger"},
{"val":498725,"percent":49.87249999999999,"name":"thirst"}]', NULL, NULL,
'{"bank":15450,"black_money":0,"money":0}', 'owner', '[]', 'unemployed', 0, NULL,
'{"heading":25.5,"z":30.9,"y":-821.5,"x":-440.7}', 'Viktor', 'Bircevic',
'20.06.2000', 'm', '185', 'false', NULL, NULL,
'https://pngimage.net/wp-content/uploads/2018/06/gta-online-character-png-9.png',
NULL, NULL, '{"model":"mp_m_freemode_01","hair":
{"color":10,"style":11,"highlight":5},"headOverlays":{"moleAndFreckles":
{"color":0,"style":0,"opacity":0},"lipstick":
{"color":0,"style":0,"opacity":0},"ageing":
{"color":0,"style":0,"opacity":1},"sunDamage":
{"color":0,"style":0,"opacity":0},"blemishes":
{"color":0,"style":0,"opacity":1},"beard":
{"color":6,"style":7,"opacity":1},"makeUp":
{"color":0,"style":0,"opacity":0},"blush":
{"color":0,"style":0,"opacity":0},"eyebrows":
{"color":6,"style":0,"opacity":1},"chestHair":
{"color":0,"style":0,"opacity":0},"bodyBlemishes":
{"color":0,"style":0,"opacity":0},"complexion":
{"color":0,"style":0,"opacity":0}},"props":[{"texture":-1,"prop_id":0,"drawable":-
1},{"texture":-1,"prop_id":1,"drawable":-1},{"texture":-1,"prop_id":2,"drawable":-
1},{"texture":-1,"prop_id":6,"drawable":-1},{"texture":-1,"prop_id":7,"drawable":-
1}],"eyeColor":-1,"components":[{"texture":0,"component_id":0,"drawable":0},
{"texture":0,"component_id":2,"drawable":0},
{"texture":0,"component_id":3,"drawable":0},
{"texture":0,"component_id":4,"drawable":0},
{"texture":0,"component_id":5,"drawable":0},
{"texture":0,"component_id":6,"drawable":0},
{"texture":0,"component_id":7,"drawable":0},
{"texture":1,"component_id":8,"drawable":0},
{"texture":0,"component_id":9,"drawable":0},
{"texture":0,"component_id":10,"drawable":0},
{"texture":11,"component_id":11,"drawable":0},
{"texture":0,"component_id":1,"drawable":15}],"headBlend":
{"shapeFirst":0,"skinMix":1,"skinFirst":15,"shapeSecond":0,"skinSecond":0,"shapeMix
":0},"faceFeatures":
{"chinBoneSize":0,"noseBoneTwist":0,"chinBoneLowering":0,"nosePeakSize":0,"noseBone
High":0,"noseWidth":0,"eyesOpening":0,"nosePeakLowering":0,"chinHole":0,"jawBoneWid
th":0,"jawBoneBackSize":0,"cheeksWidth":0,"cheeksBoneHigh":0,"eyeBrownForward":0,"c
hinBoneLenght":0,"eyeBrownHigh":0,"lipsThickness":0,"neckThickness":0,"nosePeakHigh
":0,"cheeksBoneWidth":0}}', 0, NULL, NULL, 0, NULL, NULL, NULL, NULL, NULL, NULL,
NULL, NULL, NULL, '[]', '[]', '[]', '[]', NULL, NULL, NULL, NULL, NULL, NULL, NULL,
NULL, NULL, NULL, NULL, 0, 0, 23),
(292, '91.96.3.223', '{"stress":0,"sleep":0,"water":10000,"hunger":10000}',
NULL, NULL, '{"bank":15350,"black_money":0,"money":0}', 'admin', '[]',
'unemployed', 0, NULL, '{"x":-539.7,"y":-215.07,"z":37.9,"heading":207.8}', 'Jack',
'Smith', '01.01.2001', 'm', '200', 'false', NULL, NULL, 'https://pngimage.net/wp-
content/uploads/2018/06/gta-online-character-png-9.png', NULL, NULL, '{"props":
[{"prop_id":0,"drawable":-1,"texture":-1},{"prop_id":1,"drawable":-1,"texture":-1},
{"prop_id":2,"drawable":-1,"texture":-1},{"prop_id":6,"drawable":-1,"texture":-1},
{"prop_id":7,"drawable":-1,"texture":-1}],"hair":
{"color":1,"highlight":1,"style":0},"model":"mp_m_freemode_01","components":
[{"drawable":0,"component_id":0,"texture":0},
{"drawable":0,"component_id":2,"texture":0},
{"drawable":0,"component_id":3,"texture":0},
{"drawable":0,"component_id":4,"texture":0},
{"drawable":0,"component_id":5,"texture":0},
{"drawable":0,"component_id":6,"texture":0},
{"drawable":0,"component_id":7,"texture":0},
{"drawable":0,"component_id":8,"texture":1},
{"drawable":0,"component_id":9,"texture":0},
{"drawable":0,"component_id":10,"texture":0},
{"drawable":0,"component_id":11,"texture":11},
{"drawable":65,"component_id":1,"texture":0}],"headOverlays":{"complexion":
{"color":0,"opacity":0,"style":0},"chestHair":
{"color":0,"opacity":0,"style":0},"lipstick":
{"color":0,"opacity":0,"style":0},"eyebrows":
{"color":0,"opacity":0,"style":0},"bodyBlemishes":
{"color":0,"opacity":0,"style":0},"moleAndFreckles":
{"color":0,"opacity":0,"style":0},"makeUp":
{"color":0,"opacity":0,"style":0},"blemishes":
{"color":0,"opacity":0,"style":0},"ageing":
{"color":0,"opacity":0,"style":0},"blush":
{"color":0,"opacity":0,"style":0},"sunDamage":
{"color":0,"opacity":0,"style":0},"beard":
{"color":0,"opacity":0,"style":0}},"headBlend":
{"shapeMix":0,"shapeFirst":0,"shapeSecond":0,"skinFirst":15,"skinMix":1,"skinSecond
":0},"faceFeatures":
{"cheeksWidth":0,"eyeBrownForward":0,"neckThickness":0,"nosePeakLowering":0,"jawBon
eWidth":0,"noseBoneTwist":0,"nosePeakHigh":0,"chinHole":0,"jawBoneBackSize":0,"chin
BoneSize":0,"chinBoneLowering":0,"cheeksBoneWidth":0,"noseBoneHigh":0,"chinBoneLeng
ht":0,"eyesOpening":0,"eyeBrownHigh":0,"nosePeakSize":0,"cheeksBoneHigh":0,"noseWid
th":0,"lipsThickness":0},"eyeColor":-1}', 0, NULL, NULL, 0, NULL, NULL, NULL, NULL,
NULL, NULL, NULL, NULL, NULL, '[]', '[]', '[]', '[]', NULL, NULL, NULL, NULL, NULL,
NULL, NULL, NULL, NULL, NULL, NULL, 1, 0, 0),
(293, '109.245.205.36', '[{"name":"hunger","percent":34.9,"val":349000},
{"name":"thirst","percent":38.675,"val":386750}]', NULL, NULL,
'{"bank":15250,"black_money":0,"money":0}', 'owner', '[{"metadata":
{"durability":84.72999999999942,"registered":"Fexy","serial":"886946EEV691310","amm
o":30,"components":[]},"slot":1,"count":1,"name":"WEAPON_SPECIALCARBINE"},
{"slot":2,"count":10,"name":"pancir"},{"metadata":
{"durability":100,"registered":"Fexy","serial":"289933ZCS789863","ammo":0,"componen
ts":[]},"slot":3,"count":1,"name":"WEAPON_APPISTOL"},
{"slot":8,"count":461,"name":"ammo-rifle"}]', 'unemployed', 0, NULL,
'{"heading":291.9,"x":60.7,"y":-1302.5,"z":29.3}', 'Bane', 'Zupanj', '10.6.2000',
'm', '190', 'false', NULL, NULL,
'https://pngimage.net/wp-content/uploads/2018/06/gta-online-character-png-9.png',
NULL, NULL, '{"model":"mp_m_freemode_01","headBlend":
{"skinFirst":15,"shapeFirst":0,"skinMix":1,"shapeMix":0,"skinSecond":0,"shapeSecond
":0},"props":[{"prop_id":0,"texture":-1,"drawable":-1},{"prop_id":1,"texture":-
1,"drawable":-1},{"prop_id":2,"texture":-1,"drawable":-1},{"prop_id":6,"texture":-
1,"drawable":-1},{"prop_id":7,"texture":-1,"drawable":-1}],"headOverlays":
{"sunDamage":{"color":0,"opacity":0,"style":0},"chestHair":
{"color":0,"opacity":0,"style":0},"ageing":
{"color":0,"opacity":0,"style":0},"beard":
{"color":0,"opacity":0,"style":0},"makeUp":
{"color":0,"opacity":0,"style":0},"eyebrows":
{"color":0,"opacity":0,"style":0},"moleAndFreckles":
{"color":0,"opacity":0,"style":0},"blemishes":
{"color":0,"opacity":0,"style":0},"lipstick":
{"color":0,"opacity":0,"style":0},"blush":
{"color":0,"opacity":0,"style":0},"complexion":
{"color":0,"opacity":0,"style":0},"bodyBlemishes":
{"color":0,"opacity":0,"style":0}},"faceFeatures":
{"cheeksBoneWidth":0,"jawBoneWidth":0,"lipsThickness":0,"noseBoneTwist":0,"noseWidt
h":0,"chinBoneLenght":0,"nosePeakLowering":0,"noseBoneHigh":0,"neckThickness":0,"ey
eBrownForward":0,"cheeksWidth":0,"chinBoneLowering":0,"nosePeakSize":0,"chinHole":0
,"eyeBrownHigh":0,"chinBoneSize":0,"cheeksBoneHigh":0,"eyesOpening":0,"jawBoneBackS
ize":0,"nosePeakHigh":0},"hair":{"color":1,"highlight":1,"style":0},"eyeColor":-
1,"components":[{"texture":0,"component_id":0,"drawable":0},
{"texture":0,"component_id":2,"drawable":0},
{"texture":0,"component_id":1,"drawable":95},
{"texture":0,"component_id":3,"drawable":0},
{"texture":0,"component_id":7,"drawable":0},
{"texture":0,"component_id":8,"drawable":0},
{"texture":0,"component_id":11,"drawable":75},
{"texture":0,"component_id":10,"drawable":0},
{"texture":0,"component_id":9,"drawable":53},
{"texture":0,"component_id":6,"drawable":7},
{"texture":0,"component_id":5,"drawable":0},
{"texture":0,"component_id":4,"drawable":3}]}', 0, NULL, NULL, 0, NULL, NULL, NULL,
NULL, NULL, NULL, NULL, NULL, NULL, '[]', '[]', '[]', '[]', NULL, NULL, NULL, NULL,
NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, 0, 47),
(294, '77.78.225.80', '[{"percent":48.68,"val":486800,"name":"hunger"},
{"percent":49.01,"val":490100,"name":"thirst"}]', NULL, NULL,
'{"bank":359965,"black_money":0,"money":22}', 'admin', '[{"metadata":
{"durability":68.3199999999988,"components":
["at_suppressor_heavy"],"registered":"Farex","serial":"716129GPP325955","ammo":22},
"count":1,"slot":1,"name":"WEAPON_SPECIALCARBINE_MK2"},
{"count":22,"slot":2,"name":"money"},{"metadata":{"durability":100,"components":
[],"registered":"Farex","serial":"473795BIN564261","ammo":0},"count":1,"slot":3,"na
me":"WEAPON_SPECIALCARBINE_MK2"},{"count":4,"slot":4,"name":"pancir"},{"metadata":
{"components":[],"durability":100},"count":1,"slot":5,"name":"WEAPON_CROWBAR"},
{"count":650,"slot":6,"name":"ammo-rifle"},{"count":1,"slot":7,"name":"radio"},
{"count":3,"slot":8,"name":"at_suppressor_light"},
{"count":2,"slot":9,"name":"at_suppressor_heavy"},{"metadata":{"components":
[],"durability":100},"count":1,"slot":10,"name":"WEAPON_CROWBAR"},{"metadata":
{"components":[],"durability":100},"count":1,"slot":11,"name":"WEAPON_CROWBAR"}]',
'police', 0, NULL, '{"z":8.1,"heading":175.7,"x":-799.5,"y":-1240.4}', 'Ramiz',
'Zmaj', '11.11.1988', 'm', '178', 'false', NULL, NULL, 'https://pngimage.net/wp-
content/uploads/2018/06/gta-online-character-png-9.png', NULL, NULL,
'{"model":"mp_m_freemode_01","headBlend":
{"skinFirst":15,"shapeFirst":0,"skinMix":1,"shapeMix":0,"shapeSecond":0,"skinSecond
":0},"props":[{"prop_id":0,"drawable":-1,"texture":-1},{"prop_id":1,"drawable":-
1,"texture":-1},{"prop_id":2,"drawable":-1,"texture":-1},{"prop_id":6,"drawable":-
1,"texture":-1},{"prop_id":7,"drawable":-1,"texture":-1}],"headOverlays":
{"sunDamage":{"color":0,"opacity":0,"style":0},"chestHair":
{"color":0,"opacity":0,"style":0},"ageing":
{"color":0,"opacity":0,"style":0},"beard":
{"color":0,"opacity":0,"style":0},"makeUp":
{"color":0,"opacity":0,"style":0},"eyebrows":
{"color":0,"opacity":0,"style":0},"bodyBlemishes":
{"color":0,"opacity":0,"style":0},"blemishes":
{"color":0,"opacity":0,"style":0},"moleAndFreckles":
{"color":0,"opacity":0,"style":0},"blush":
{"color":0,"opacity":0,"style":0},"complexion":
{"color":0,"opacity":0,"style":0},"lipstick":
{"color":0,"opacity":0,"style":0}},"faceFeatures":
{"cheeksBoneWidth":0,"chinBoneSize":0,"lipsThickness":0,"noseBoneTwist":0,"noseWidt
h":0,"chinBoneLenght":0,"cheeksBoneHigh":0,"noseBoneHigh":0,"neckThickness":0,"eyeB
rownForward":0,"eyeBrownHigh":0,"chinHole":0,"jawBoneWidth":0,"nosePeakHigh":0,"nos
ePeakSize":0,"eyesOpening":0,"nosePeakLowering":0,"chinBoneLowering":0,"jawBoneBack
Size":0,"cheeksWidth":0},"hair":{"style":0,"highlight":1,"color":1},"eyeColor":-
1,"components":[{"texture":0,"component_id":0,"drawable":0},
{"texture":0,"component_id":1,"drawable":0},
{"texture":0,"component_id":2,"drawable":0},
{"texture":0,"component_id":3,"drawable":0},
{"texture":0,"component_id":4,"drawable":0},
{"texture":0,"component_id":5,"drawable":0},
{"texture":0,"component_id":6,"drawable":0},
{"texture":0,"component_id":7,"drawable":0},
{"texture":0,"component_id":9,"drawable":0},
{"texture":0,"component_id":10,"drawable":0},
{"texture":0,"component_id":11,"drawable":0},
{"texture":0,"component_id":8,"drawable":12}]}', 0, NULL, NULL, 0, NULL, NULL,
NULL, NULL, NULL, NULL, NULL, NULL, NULL, '[]', '[]', '[]', '[]', NULL, NULL, NULL,
NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 1, 0, 100),
(295, '77.77.223.168', '[{"percent":49.29,"name":"hunger","val":492900},
{"percent":49.4675,"name":"thirst","val":494675}]', NULL, NULL,
'{"bank":356632,"black_money":0,"money":0}', 'admin', '[{"metadata":
{"durability":54.99999999999829,"registered":"rimski
zmaj","serial":"903835NNP869748","ammo":0,"components":
[]},"slot":1,"count":1,"name":"WEAPON_CARBINERIFLE"},
{"slot":2,"count":1,"name":"radio"},{"slot":5,"count":15,"name":"pancir"},
{"metadata":
{"durability":100,"registered":"Fexy","serial":"748778XFZ657508","ammo":0,"componen
ts":[]},"slot":11,"count":1,"name":"WEAPON_APPISTOL"}]', 'police', 0, NULL,
'{"heading":0.0,"x":-368.6,"y":-1354.0,"z":37.4}', 'Fikret', 'Abdic', '02.10.1999',
'm', '180', 'false', NULL, NULL,
'https://pngimage.net/wp-content/uploads/2018/06/gta-online-character-png-9.png',
NULL, NULL, '{"props":[{"drawable":-1,"texture":-1,"prop_id":0},{"drawable":-
1,"texture":-1,"prop_id":1},{"drawable":-1,"texture":-1,"prop_id":2},{"drawable":-
1,"texture":-1,"prop_id":6},{"drawable":-1,"texture":-1,"prop_id":7}],"hair":
{"highlight":0,"color":0,"style":28},"components":
[{"drawable":0,"texture":0,"component_id":0},
{"drawable":0,"texture":0,"component_id":2},
{"drawable":0,"texture":0,"component_id":8},
{"drawable":0,"texture":0,"component_id":9},
{"drawable":171,"texture":0,"component_id":3},
{"drawable":92,"texture":1,"component_id":5},
{"drawable":188,"texture":8,"component_id":1},
{"drawable":7,"texture":0,"component_id":6},
{"drawable":135,"texture":0,"component_id":7},
{"drawable":126,"texture":0,"component_id":10},
{"drawable":0,"texture":0,"component_id":11},
{"drawable":140,"texture":2,"component_id":4}],"headBlend":
{"shapeMix":0,"shapeFirst":0,"skinSecond":0,"skinFirst":2,"shapeSecond":0,"skinMix"
:0},"faceFeatures":
{"eyeBrownHigh":0,"chinBoneLenght":0,"cheeksBoneWidth":0,"cheeksBoneHigh":0,"jawBon
eBackSize":0,"nosePeakSize":0,"noseBoneHigh":0,"jawBoneWidth":0,"cheeksWidth":0,"ey
eBrownForward":0,"chinBoneLowering":0,"noseWidth":0,"lipsThickness":0,"noseBoneTwis
t":0,"nosePeakHigh":0,"nosePeakLowering":0,"chinBoneSize":0,"chinHole":0,"eyesOpeni
ng":0,"neckThickness":0},"headOverlays":{"beard":
{"opacity":0,"color":0,"style":0},"eyebrows":
{"opacity":0,"color":0,"style":0},"blush":
{"opacity":0,"color":0,"style":0},"moleAndFreckles":
{"opacity":0,"color":0,"style":0},"bodyBlemishes":
{"opacity":0,"color":0,"style":0},"chestHair":
{"opacity":0,"color":0,"style":0},"ageing":
{"opacity":0,"color":0,"style":0},"sunDamage":
{"opacity":0,"color":0,"style":0},"complexion":
{"opacity":0,"color":0,"style":0},"lipstick":
{"opacity":0,"color":0,"style":0},"blemishes":
{"opacity":0,"color":0,"style":0},"makeUp":
{"opacity":0,"color":0,"style":0}},"model":"mp_m_freemode_01","eyeColor":-1}', 0,
NULL, NULL, 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '[]', '[]',
'[]', '[]', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 1, 0,
109),
(296, '46.239.6.149', '[{"name":"hunger","percent":49.49,"val":494900},
{"name":"thirst","percent":49.6175,"val":496175}]', NULL, NULL,
'{"bank":346682,"black_money":0,"money":5105}', 'superadmin', '[{"metadata":
{"durability":51.81999999999817,"registered":"EMRAH","serial":"941454LYI550789","am
mo":30,"components":[]},"slot":1,"count":1,"name":"WEAPON_SPECIALCARBINE"},
{"slot":2,"count":2,"name":"pancir"},{"slot":4,"count":1,"name":"cola"},
{"slot":5,"count":5105,"name":"money"},{"metadata":
{"durability":100,"registered":"Fexy","serial":"605163IGG237495","ammo":0,"componen
ts":[]},"slot":7,"count":1,"name":"WEAPON_APPISTOL"},{"metadata":
{"durability":100,"registered":"Fexy","serial":"663231SHU597407","ammo":0,"componen
ts":[]},"slot":9,"count":1,"name":"WEAPON_APPISTOL"},
{"slot":10,"count":595,"name":"ammo-rifle"},
{"slot":14,"count":2,"name":"bandage"}]', 'police', 0, NULL,
'{"heading":175.8,"x":-815.0,"y":-1231.5,"z":8.3}', 'Inas', 'Grahovic',
'12.2.2000', 'm', '188', 'false', NULL, NULL,
'https://pngimage.net/wp-content/uploads/2018/06/gta-online-character-png-9.png',
NULL, NULL, '{"model":"mp_m_freemode_01","eyeColor":-1,"props":
[{"prop_id":0,"texture":-1,"drawable":-1},{"prop_id":1,"texture":-1,"drawable":-1},
{"prop_id":2,"texture":-1,"drawable":-1},{"prop_id":6,"texture":-1,"drawable":-1},
{"prop_id":7,"texture":-1,"drawable":-1}],"hair":
{"color":1,"highlight":1,"style":0},"faceFeatures":
{"nosePeakHigh":0,"chinBoneSize":0,"lipsThickness":0,"noseBoneTwist":0,"noseWidth":
0,"chinBoneLenght":0,"cheeksBoneHigh":0,"noseBoneHigh":0,"neckThickness":0,"eyeBrow
nForward":0,"jawBoneWidth":0,"cheeksWidth":0,"cheeksBoneWidth":0,"eyesOpening":0,"n
osePeakSize":0,"nosePeakLowering":0,"chinBoneLowering":0,"eyeBrownHigh":0,"jawBoneB
ackSize":0,"chinHole":0},"headOverlays":{"sunDamage":
{"color":0,"opacity":0,"style":0},"chestHair":
{"color":0,"opacity":0,"style":0},"ageing":
{"color":0,"opacity":0,"style":0},"beard":
{"color":0,"opacity":0,"style":0},"makeUp":
{"color":0,"opacity":0,"style":0},"eyebrows":
{"color":0,"opacity":0,"style":0},"blush":
{"color":0,"opacity":0,"style":0},"blemishes":
{"color":0,"opacity":0,"style":0},"lipstick":
{"color":0,"opacity":0,"style":0},"bodyBlemishes":
{"color":0,"opacity":0,"style":0},"complexion":
{"color":0,"opacity":0,"style":0},"moleAndFreckles":
{"color":0,"opacity":0,"style":0}},"components":
[{"drawable":0,"texture":0,"component_id":0},
{"drawable":0,"texture":0,"component_id":1},
{"drawable":0,"texture":0,"component_id":2},
{"drawable":0,"texture":0,"component_id":3},
{"drawable":0,"texture":0,"component_id":4},
{"drawable":0,"texture":0,"component_id":5},
{"drawable":0,"texture":0,"component_id":6},
{"drawable":0,"texture":0,"component_id":7},
{"drawable":0,"texture":1,"component_id":8},
{"drawable":0,"texture":0,"component_id":9},
{"drawable":0,"texture":0,"component_id":10},
{"drawable":0,"texture":11,"component_id":11}],"headBlend":
{"skinFirst":15,"shapeFirst":1,"skinMix":1,"shapeMix":0,"shapeSecond":0,"skinSecond
":0}}', 0, NULL, NULL, 0, NULL, NULL, 'BA0000', 0, NULL, NULL, NULL, NULL, NULL,
'[]', '[]', '[]', '[]', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL,
NULL, 1, 0, 108),
(297, '5.59.164.35', '[{"val":488200,"name":"hunger","percent":48.82},
{"val":491150,"name":"thirst","percent":49.11499999999999}]', NULL, NULL,
'{"bank":15250,"black_money":0,"money":0}', 'admin', '[{"metadata":{"components":
[],"ammo":29,"registered":"Edin","serial":"382554ZTW242937","durability":66.5499999
9999873},"count":1,"slot":1,"name":"WEAPON_CARBINERIFLE"},
{"count":356,"slot":2,"name":"ammo-rifle"},{"count":150,"slot":3,"name":"pancir"},
{"metadata":{"components":
[],"ammo":0,"registered":"Fexy","serial":"421036VIE490918","durability":100},"count
":1,"slot":13,"name":"WEAPON_APPISTOL"}]', 'unemployed', 0, NULL,
'{"heading":251.6,"z":46.7,"y":2608.3,"x":2345.0}', 'Sefket', 'Papuca',
'01.01.2001', 'm', '167', 'false', NULL, NULL,
'https://pngimage.net/wp-content/uploads/2018/06/gta-online-character-png-9.png',
NULL, NULL, '{"model":"mp_m_freemode_01","headOverlays":{"sunDamage":
{"style":0,"opacity":0,"color":0},"chestHair":
{"style":0,"opacity":0,"color":0},"ageing":
{"style":0,"opacity":0,"color":0},"beard":
{"style":0,"opacity":0,"color":0},"makeUp":
{"style":0,"opacity":0,"color":0},"eyebrows":
{"style":0,"opacity":0,"color":0},"blush":
{"style":0,"opacity":0,"color":0},"blemishes":
{"style":0,"opacity":0,"color":0},"moleAndFreckles":
{"style":0,"opacity":0,"color":0},"bodyBlemishes":
{"style":0,"opacity":0,"color":0},"complexion":
{"style":0,"opacity":0,"color":0},"lipstick":
{"style":0,"opacity":0,"color":0}},"props":[{"prop_id":0,"drawable":-1,"texture":-
1},{"prop_id":1,"drawable":-1,"texture":-1},{"prop_id":2,"drawable":-1,"texture":-
1},{"prop_id":6,"drawable":-1,"texture":-1},{"prop_id":7,"drawable":-1,"texture":-
1}],"headBlend":
{"skinFirst":15,"shapeFirst":0,"skinMix":1,"shapeMix":0,"shapeSecond":0,"skinSecond
":0},"faceFeatures":
{"nosePeakHigh":0,"jawBoneWidth":0,"lipsThickness":0,"noseBoneTwist":0,"noseWidth":
0,"chinBoneLenght":0,"nosePeakLowering":0,"noseBoneHigh":0,"neckThickness":0,"eyeBr
ownForward":0,"chinBoneLowering":0,"cheeksWidth":0,"chinHole":0,"eyeBrownHigh":0,"n
osePeakSize":0,"chinBoneSize":0,"eyesOpening":0,"cheeksBoneHigh":0,"jawBoneBackSize
":0,"cheeksBoneWidth":0},"eyeColor":-1,"components":
[{"component_id":0,"drawable":0,"texture":0},
{"component_id":2,"drawable":0,"texture":0},
{"component_id":3,"drawable":0,"texture":0},
{"component_id":4,"drawable":0,"texture":0},
{"component_id":5,"drawable":0,"texture":0},
{"component_id":6,"drawable":0,"texture":0},
{"component_id":7,"drawable":0,"texture":0},
{"component_id":8,"drawable":0,"texture":1},
{"component_id":9,"drawable":0,"texture":0},
{"component_id":10,"drawable":0,"texture":0},
{"component_id":11,"drawable":0,"texture":11},
{"component_id":1,"drawable":29,"texture":0}],"hair":
{"color":1,"highlight":1,"style":12}}', 0, NULL, NULL, 0, NULL, NULL, NULL, NULL,
NULL, NULL, NULL, NULL, NULL, '[]', '[]', '[]', '[]', NULL, NULL, NULL, NULL, NULL,
NULL, NULL, NULL, NULL, NULL, NULL, 0, 0, 49),
(298, '77.77.223.229', '[{"name":"hunger","percent":49.17,"val":491700},
{"name":"thirst","percent":49.3775,"val":493775}]', NULL, NULL,
'{"bank":15300,"black_money":0,"money":0}', 'user', '[{"metadata":{"components":
[],"ammo":25,"registered":"Inas
","serial":"408030BTI607996","durability":76.1199999999991},"count":1,"slot":1,"nam
e":"WEAPON_SPECIALCARBINE"},{"metadata":{"components":
[],"ammo":0,"registered":"Fexy","serial":"249244ONG739187","durability":100},"count
":1,"slot":2,"name":"WEAPON_APPISTOL"},{"count":679,"slot":3,"name":"ammo-rifle"},
{"count":1000,"slot":5,"name":"pancir"}]', 'unemployed', 0, NULL,
'{"heading":209.1,"z":37.9,"y":-234.3,"x":-629.2}', 'Dodik', 'Milorad',
'13.7.2000', 'm', '172', 'false', NULL, NULL,
'https://pngimage.net/wp-content/uploads/2018/06/gta-online-character-png-9.png',
NULL, NULL, '{"model":"mp_m_freemode_01","hair":
{"style":0,"highlight":1,"color":1},"props":[{"prop_id":0,"drawable":-1,"texture":-
1},{"prop_id":1,"drawable":-1,"texture":-1},{"prop_id":2,"drawable":-1,"texture":-
1},{"prop_id":6,"drawable":-1,"texture":-1},{"prop_id":7,"drawable":-1,"texture":-
1}],"headOverlays":{"sunDamage":{"color":0,"opacity":0,"style":0},"chestHair":
{"color":0,"opacity":0,"style":0},"ageing":
{"color":0,"opacity":0,"style":0},"beard":
{"color":0,"opacity":0,"style":0},"makeUp":
{"color":0,"opacity":0,"style":0},"eyebrows":
{"color":0,"opacity":0,"style":0},"lipstick":
{"color":0,"opacity":0,"style":0},"blemishes":
{"color":0,"opacity":0,"style":0},"moleAndFreckles":
{"color":0,"opacity":0,"style":0},"bodyBlemishes":
{"color":0,"opacity":0,"style":0},"complexion":
{"color":0,"opacity":0,"style":0},"blush":
{"color":0,"opacity":0,"style":0}},"faceFeatures":
{"nosePeakHigh":0,"chinBoneSize":0,"lipsThickness":0,"noseBoneTwist":0,"noseWidth":
0,"chinBoneLenght":0,"cheeksBoneHigh":0,"noseBoneHigh":0,"neckThickness":0,"eyeBrow
nForward":0,"eyeBrownHigh":0,"chinHole":0,"chinBoneLowering":0,"nosePeakLowering":0
,"nosePeakSize":0,"cheeksBoneWidth":0,"eyesOpening":0,"cheeksWidth":0,"jawBoneBackS
ize":0,"jawBoneWidth":0},"headBlend":
{"skinFirst":15,"shapeFirst":0,"skinMix":1,"shapeMix":0,"shapeSecond":0,"skinSecond
":0},"components":[{"texture":0,"drawable":0,"component_id":0},
{"texture":0,"drawable":0,"component_id":1},
{"texture":0,"drawable":0,"component_id":2},
{"texture":0,"drawable":0,"component_id":3},
{"texture":0,"drawable":0,"component_id":4},
{"texture":0,"drawable":0,"component_id":5},
{"texture":0,"drawable":0,"component_id":6},
{"texture":0,"drawable":0,"component_id":7},
{"texture":1,"drawable":0,"component_id":8},
{"texture":0,"drawable":0,"component_id":9},
{"texture":0,"drawable":0,"component_id":10},
{"texture":11,"drawable":0,"component_id":11}],"eyeColor":-1}', 0, NULL, NULL, 0,
NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '[]', '[]', '[]', '[]', NULL,
NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 1, 0, 28),
(299, '84.115.230.230', '[{"name":"hunger","percent":97.61,"val":976100},
{"name":"thirst","percent":98.20750000000001,"val":982075}]', NULL, NULL,
'{"bank":15300,"black_money":0,"money":-1000}', 'admin', '[]', 'unemployed', 0,
NULL, '{"heading":208.6,"z":37.9,"y":-255.5,"x":-632.5}', 'Ammar', 'Cale',
'2.8.2000', 'm', '190', 'false', NULL, NULL,
'https://pngimage.net/wp-content/uploads/2018/06/gta-online-character-png-9.png',
NULL, NULL, '{"model":"mp_m_freemode_01","components":
[{"texture":0,"component_id":0,"drawable":0},
{"texture":0,"component_id":2,"drawable":0},
{"texture":0,"component_id":5,"drawable":0},
{"texture":0,"component_id":7,"drawable":0},
{"texture":0,"component_id":9,"drawable":0},
{"texture":0,"component_id":10,"drawable":0},
{"texture":2,"component_id":1,"drawable":66},
{"texture":5,"component_id":4,"drawable":24},
{"texture":0,"component_id":8,"drawable":15},
{"texture":5,"component_id":11,"drawable":242},
{"texture":0,"component_id":6,"drawable":34},
{"texture":0,"component_id":3,"drawable":171}],"props":[{"prop_id":0,"drawable":-
1,"texture":-1},{"prop_id":1,"drawable":-1,"texture":-1},{"prop_id":2,"drawable":-
1,"texture":-1},{"prop_id":6,"drawable":-1,"texture":-1},{"prop_id":7,"drawable":-
1,"texture":-1}],"hair":{"color":1,"highlight":1,"style":0},"faceFeatures":
{"cheeksBoneWidth":0,"chinBoneSize":0,"lipsThickness":0,"noseBoneTwist":0,"noseWidt
h":0,"chinBoneLenght":0,"nosePeakLowering":0,"noseBoneHigh":0,"neckThickness":0,"ey
eBrownForward":0,"cheeksBoneHigh":0,"chinBoneLowering":0,"eyesOpening":0,"jawBoneWi
dth":0,"eyeBrownHigh":0,"cheeksWidth":0,"chinHole":0,"nosePeakSize":0,"jawBoneBackS
ize":0,"nosePeakHigh":0},"headOverlays":{"sunDamage":
{"color":0,"opacity":0,"style":0},"chestHair":
{"color":0,"opacity":0,"style":0},"ageing":
{"color":0,"opacity":0,"style":0},"beard":
{"color":0,"opacity":0,"style":0},"makeUp":
{"color":0,"opacity":0,"style":0},"eyebrows":
{"color":0,"opacity":0,"style":0},"blush":
{"color":0,"opacity":0,"style":0},"blemishes":
{"color":0,"opacity":0,"style":0},"moleAndFreckles":
{"color":0,"opacity":0,"style":0},"bodyBlemishes":
{"color":0,"opacity":0,"style":0},"complexion":
{"color":0,"opacity":0,"style":0},"lipstick":
{"color":0,"opacity":0,"style":0}},"eyeColor":-1,"headBlend":
{"skinFirst":15,"shapeFirst":0,"skinMix":1,"shapeMix":0,"shapeSecond":0,"skinSecond
":0}}', 0, NULL, NULL, 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL,
'[]', '[]', '[]', '[]', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL,
NULL, 1, 0, 4),
(300, '109.175.109.51', '[{"name":"hunger","percent":48.68,"val":486800},
{"name":"thirst","percent":49.01,"val":490100}]', NULL, NULL,
'{"bank":15150,"black_money":0,"money":0}', 'admin', '[{"metadata":
{"durability":51.51999999999816,"registered":"rimski
zmaj","serial":"650579EBW534418","ammo":14,"components":
[]},"slot":1,"count":1,"name":"WEAPON_CARBINERIFLE"},
{"slot":2,"count":290,"name":"ammo-rifle"}]', 'unemployed', 0, NULL,
'{"heading":66.8,"x":-833.0,"y":-1157.5,"z":7.1}', 'HUREM', 'ESCOBAR', '2.2.2000.',
'm', '188', 'false', NULL, NULL,
'https://pngimage.net/wp-content/uploads/2018/06/gta-online-character-png-9.png',
NULL, NULL, '{"headOverlays":{"chestHair":
{"opacity":0,"style":0,"color":0},"sunDamage":
{"opacity":0,"style":0,"color":0},"complexion":
{"opacity":0,"style":0,"color":0},"bodyBlemishes":
{"opacity":0,"style":0,"color":0},"blush":
{"opacity":0,"style":0,"color":0},"blemishes":
{"opacity":0,"style":0,"color":0},"lipstick":
{"opacity":0,"style":0,"color":0},"eyebrows":
{"opacity":0,"style":0,"color":0},"makeUp":
{"opacity":0,"style":0,"color":0},"moleAndFreckles":
{"opacity":0,"style":0,"color":0},"ageing":
{"opacity":0,"style":0,"color":0},"beard":
{"opacity":0,"style":0,"color":0}},"model":"mp_m_freemode_01","hair":
{"highlight":1,"style":0,"color":1},"headBlend":
{"skinSecond":0,"skinMix":1,"shapeSecond":2,"shapeMix":0,"shapeFirst":2,"skinFirst"
:15},"components":[{"component_id":0,"texture":0,"drawable":0},
{"component_id":1,"texture":0,"drawable":0},
{"component_id":2,"texture":0,"drawable":0},
{"component_id":3,"texture":0,"drawable":0},
{"component_id":4,"texture":0,"drawable":0},
{"component_id":5,"texture":0,"drawable":0},
{"component_id":7,"texture":0,"drawable":0},
{"component_id":9,"texture":0,"drawable":0},
{"component_id":10,"texture":0,"drawable":0},
{"component_id":6,"texture":0,"drawable":3},
{"component_id":8,"texture":0,"drawable":0},
{"component_id":11,"texture":0,"drawable":3}],"faceFeatures":
{"nosePeakHigh":0,"lipsThickness":0,"nosePeakLowering":0,"nosePeakSize":0,"chinBone
Lowering":0,"noseWidth":0,"chinHole":0,"cheeksBoneWidth":0,"eyesOpening":0,"eyeBrow
nForward":0,"chinBoneSize":0,"chinBoneLenght":0,"noseBoneTwist":0,"jawBoneWidth":0,
"neckThickness":0,"eyeBrownHigh":0,"cheeksWidth":0,"noseBoneHigh":0,"jawBoneBackSiz
e":0,"cheeksBoneHigh":0},"props":[{"prop_id":0,"texture":-1,"drawable":-1},
{"prop_id":1,"texture":-1,"drawable":-1},{"prop_id":2,"texture":-1,"drawable":-1},
{"prop_id":6,"texture":-1,"drawable":-1},{"prop_id":7,"texture":-1,"drawable":-
1}],"eyeColor":-1}', 0, NULL, NULL, 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL,
NULL, NULL, '[]', '[]', '[]', '[]', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL,
NULL, NULL, NULL, 0, 0, 0),
(301, '77.77.223.214',
'[{"percent":47.69999999999999,"name":"hunger","val":477000},
{"percent":48.275,"name":"thirst","val":482750}]', NULL, NULL,
'{"bank":15150,"black_money":0,"money":-1000}', 'admin', '[]', 'unemployed', 0,
NULL, '{"heading":298.8,"x":-861.4,"y":-1186.3,"z":5.3}', 'Milan', 'Gassic',
'01.01,2000', 'm', '150', 'false', NULL, NULL,
'https://pngimage.net/wp-content/uploads/2018/06/gta-online-character-png-9.png',
NULL, NULL, '{"headOverlays":{"chestHair":
{"opacity":0,"color":0,"style":0},"sunDamage":
{"opacity":0,"color":0,"style":0},"complexion":
{"opacity":0,"color":0,"style":0},"blemishes":
{"opacity":0,"color":0,"style":0},"blush":
{"opacity":0,"color":0,"style":0},"moleAndFreckles":
{"opacity":0,"color":0,"style":0},"lipstick":
{"opacity":0,"color":0,"style":0},"eyebrows":
{"opacity":0,"color":0,"style":0},"makeUp":
{"opacity":0,"color":0,"style":0},"ageing":
{"opacity":0,"color":0,"style":0},"bodyBlemishes":
{"opacity":0,"color":0,"style":0},"beard":
{"opacity":0,"color":0,"style":0}},"model":"mp_m_freemode_01","hair":
{"highlight":1,"color":29,"style":48},"headBlend":
{"skinSecond":0,"skinMix":1,"shapeSecond":0,"shapeMix":0,"shapeFirst":0,"skinFirst"
:15},"components":[{"texture":0,"component_id":0,"drawable":0},
{"texture":0,"component_id":1,"drawable":0},
{"texture":0,"component_id":2,"drawable":0},
{"texture":0,"component_id":5,"drawable":0},
{"texture":0,"component_id":10,"drawable":0},
{"texture":1,"component_id":9,"drawable":4},
{"texture":0,"component_id":8,"drawable":0},
{"texture":0,"component_id":3,"drawable":30},
{"texture":0,"component_id":7,"drawable":0},
{"texture":3,"component_id":4,"drawable":15},
{"texture":0,"component_id":6,"drawable":7},
{"texture":0,"component_id":11,"drawable":345}],"faceFeatures":
{"nosePeakHigh":0,"lipsThickness":0,"neckThickness":0,"nosePeakSize":0,"chinBoneLow
ering":0,"noseWidth":0,"chinHole":0,"cheeksBoneHigh":0,"cheeksBoneWidth":0,"eyeBrow
nHigh":0,"chinBoneSize":0,"jawBoneWidth":0,"noseBoneTwist":0,"chinBoneLenght":0,"ey
eBrownForward":0,"eyesOpening":0,"cheeksWidth":0,"noseBoneHigh":0,"jawBoneBackSize"
:0,"nosePeakLowering":0},"props":[{"prop_id":0,"texture":-1,"drawable":-1},
{"prop_id":1,"texture":-1,"drawable":-1},{"prop_id":2,"texture":-1,"drawable":-1},
{"prop_id":6,"texture":-1,"drawable":-1},{"prop_id":7,"texture":-1,"drawable":-
1}],"eyeColor":-1}', 0, NULL, NULL, 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL,
NULL, NULL, '[]', '[]', '[]', '[]', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL,
NULL, NULL, NULL, 0, 0, 17),
(302, '92.36.209.11', '[{"percent":49.73,"name":"hunger","val":497300},
{"percent":49.7975,"name":"thirst","val":497975}]', NULL, NULL,
'{"bank":15200,"black_money":0,"money":0}', 'owner', '[]', 'unemployed', 0, NULL,
'{"x":-799.4,"heading":175.7,"z":8.2,"y":-1240.4}', 'Hara', 'Bara', '11111', 'm',
'166', 'false', NULL, NULL, 'https://pngimage.net/wp-content/uploads/2018/06/gta-
online-character-png-9.png', NULL, NULL, '{"props":[{"drawable":-1,"texture":-
1,"prop_id":0},{"drawable":-1,"texture":-1,"prop_id":1},{"drawable":-1,"texture":-
1,"prop_id":2},{"drawable":-1,"texture":-1,"prop_id":6},{"drawable":-1,"texture":-
1,"prop_id":7}],"hair":{"highlight":1,"style":0,"color":1},"headBlend":
{"skinFirst":15,"shapeSecond":0,"skinSecond":0,"shapeFirst":0,"shapeMix":0,"skinMix
":1},"faceFeatures":
{"nosePeakHigh":0,"eyeBrownForward":0,"jawBoneWidth":0,"chinBoneLowering":0,"neckTh
ickness":0,"eyeBrownHigh":0,"noseBoneTwist":0,"noseWidth":0,"jawBoneBackSize":0,"ch
inHole":0,"noseBoneHigh":0,"cheeksBoneHigh":0,"chinBoneSize":0,"lipsThickness":0,"c
heeksBoneWidth":0,"chinBoneLenght":0,"nosePeakSize":0,"eyesOpening":0,"nosePeakLowe
ring":0,"cheeksWidth":0},"eyeColor":-1,"headOverlays":{"beard":
{"opacity":0,"style":0,"color":0},"ageing":
{"opacity":0,"style":0,"color":0},"blemishes":
{"opacity":0,"style":0,"color":0},"bodyBlemishes":
{"opacity":0,"style":0,"color":0},"makeUp":
{"opacity":0,"style":0,"color":0},"eyebrows":
{"opacity":0,"style":0,"color":0},"complexion":
{"opacity":0,"style":0,"color":0},"sunDamage":
{"opacity":0,"style":0,"color":0},"lipstick":
{"opacity":0,"style":0,"color":0},"moleAndFreckles":
{"opacity":0,"style":0,"color":0},"chestHair":
{"opacity":0,"style":0,"color":0},"blush":
{"opacity":0,"style":0,"color":0}},"components":
[{"drawable":0,"component_id":0,"texture":0},
{"drawable":0,"component_id":1,"texture":0},
{"drawable":0,"component_id":2,"texture":0},
{"drawable":0,"component_id":3,"texture":0},
{"drawable":0,"component_id":4,"texture":0},
{"drawable":0,"component_id":5,"texture":0},
{"drawable":0,"component_id":6,"texture":0},
{"drawable":0,"component_id":7,"texture":0},
{"drawable":0,"component_id":8,"texture":1},
{"drawable":0,"component_id":9,"texture":0},
{"drawable":0,"component_id":10,"texture":0},
{"drawable":0,"component_id":11,"texture":11}],"model":"mp_m_freemode_01"}', 0,
NULL, NULL, 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '[]', '[]',
'[]', '[]', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, 0,
962),
(303, '87.116.179.135', '[{"percent":18.04,"val":180400,"name":"hunger"},
{"percent":26.02999999999999,"val":260300,"name":"thirst"}]', NULL, NULL,
'{"bank":341550,"black_money":0,"money":838108}', 'owner',
'[{"name":"WEAPON_ASSAULTRIFLE","metadata":
{"ammo":8,"durability":98.43999999999994,"registered":false,"components":
[]},"count":1,"slot":1},{"name":"money","metadata":
{"type":1},"count":838108,"slot":3},{"name":"wood","metadata":
{"type":1},"count":10,"slot":4},{"name":"gold","metadata":
{"type":1},"count":10,"slot":7},{"name":"at_suppressor_heavy","count":1,"slot":8},
{"name":"jewels","count":10,"slot":15},{"name":"ammo-50","count":100,"slot":17},
{"name":"WEAPON_PISTOL50","metadata":
{"ammo":0,"durability":100,"registered":false,"components":
[]},"count":1,"slot":18},{"name":"ammo-9","count":100,"slot":19},{"name":"ammo-
rifle2","count":40,"slot":13},{"name":"ammo-50","count":1,"slot":20}]', 'police',
3, NULL, '{"heading":56.2,"z":38.0,"y":-237.9,"x":-635.9}', 'Vilijam', 'Mengele',
'02.08.1957', 'm', '183', 'false', NULL, NULL,
'https://pngimage.net/wp-content/uploads/2018/06/gta-online-character-png-9.png',
NULL, NULL, NULL, 0, NULL, NULL, 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL,
NULL, '[]', '[]', '[]', '[]', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL,
NULL, NULL, 0, 0, 160),
(304, '31.176.255.111', '[{"name":"hunger","val":356900,"percent":35.69},
{"name":"thirst","val":392675,"percent":39.2675}]', NULL, NULL,
'{"bank":289700,"black_money":0,"money":0}', 'owner', '[]', 'police', 3, NULL,
'{"z":7.3,"y":-1240.4,"x":-799.4,"heading":175.7}', 'Hara', 'Bara', '1111', 'm',
'166', 'false', NULL, NULL, 'https://pngimage.net/wp-content/uploads/2018/06/gta-
online-character-png-9.png', NULL, NULL, '{"model":"mp_m_freemode_01","props":
[{"texture":-1,"prop_id":0,"drawable":-1},{"texture":-1,"prop_id":1,"drawable":-1},
{"texture":-1,"prop_id":2,"drawable":-1},{"texture":-1,"prop_id":6,"drawable":-1},
{"texture":-1,"prop_id":7,"drawable":-1}],"headOverlays":{"blush":
{"opacity":0,"color":0,"style":0},"sunDamage":
{"opacity":0,"color":0,"style":0},"complexion":
{"opacity":0,"color":0,"style":0},"blemishes":
{"opacity":0,"color":0,"style":0},"ageing":
{"opacity":0,"color":0,"style":0},"makeUp":
{"opacity":0,"color":0,"style":0},"moleAndFreckles":
{"opacity":0,"color":0,"style":0},"lipstick":
{"opacity":0,"color":0,"style":0},"beard":
{"opacity":0,"color":0,"style":0},"eyebrows":
{"opacity":0,"color":0,"style":0},"chestHair":
{"opacity":0,"color":0,"style":0},"bodyBlemishes":
{"opacity":0,"color":0,"style":0}},"faceFeatures":
{"chinBoneLenght":0,"nosePeakSize":0,"noseBoneTwist":0,"eyeBrownForward":0,"jawBone
Width":0,"chinBoneLowering":0,"cheeksBoneHigh":0,"chinHole":0,"lipsThickness":0,"no
sePeakLowering":0,"noseBoneHigh":0,"jawBoneBackSize":0,"chinBoneSize":0,"nosePeakHi
gh":0,"neckThickness":0,"eyeBrownHigh":0,"cheeksWidth":0,"cheeksBoneWidth":0,"noseW
idth":0,"eyesOpening":0},"headBlend":
{"skinFirst":15,"shapeFirst":0,"skinSecond":0,"shapeSecond":0,"shapeMix":0,"skinMix
":1},"components":[{"texture":0,"component_id":0,"drawable":0},
{"texture":0,"component_id":1,"drawable":0},
{"texture":0,"component_id":2,"drawable":0},
{"texture":0,"component_id":3,"drawable":0},
{"texture":0,"component_id":4,"drawable":0},
{"texture":0,"component_id":5,"drawable":0},
{"texture":0,"component_id":6,"drawable":0},
{"texture":0,"component_id":7,"drawable":0},
{"texture":1,"component_id":8,"drawable":0},
{"texture":0,"component_id":9,"drawable":0},
{"texture":0,"component_id":10,"drawable":0},
{"texture":11,"component_id":11,"drawable":0}],"eyeColor":-1,"hair":
{"color":1,"style":0,"highlight":1}}', 0, NULL, NULL, 0, NULL, NULL, NULL, NULL,
NULL, NULL, NULL, NULL, NULL, '[]', '[]', '[]', '[]', NULL, NULL, NULL, NULL, NULL,
NULL, NULL, NULL, NULL, NULL, NULL, 0, 0, 741),
(305, '188.246.56.27', '[{"name":"hunger","val":761300,"percent":76.13},
{"name":"thirst","val":820975,"percent":82.0975}]', NULL, NULL,
'{"bank":15100,"black_money":0,"money":0}', 'owner', '[]', 'unemployed', 0, NULL,
'{"z":85.7,"y":1438.3,"x":1687.5,"heading":168.0}', 'James', 'Stow', '19.08.1994',
'm', '189', 'false', NULL, NULL,
'https://pngimage.net/wp-content/uploads/2018/06/gta-online-character-png-9.png',
NULL, NULL, '{"headBlend":
{"skinFirst":15,"skinMix":1,"skinSecond":0,"shapeFirst":0,"shapeSecond":0,"shapeMix
":0},"faceFeatures":
{"eyeBrownHigh":0,"cheeksBoneHigh":0,"noseWidth":0,"nosePeakHigh":0,"chinBoneLenght
":0,"cheeksBoneWidth":0,"chinBoneLowering":0,"neckThickness":0,"chinBoneSize":0,"ch
eeksWidth":0,"noseBoneHigh":0,"jawBoneBackSize":0,"nosePeakLowering":0,"eyesOpening
":0,"jawBoneWidth":0,"nosePeakSize":0,"chinHole":0,"eyeBrownForward":0,"lipsThickne
ss":0,"noseBoneTwist":0},"hair":
{"color":1,"style":0,"highlight":1},"model":"mp_m_freemode_01","props":
[{"drawable":-1,"texture":-1,"prop_id":0},{"drawable":-1,"texture":-1,"prop_id":1},
{"drawable":-1,"texture":-1,"prop_id":2},{"drawable":-1,"texture":-1,"prop_id":6},
{"drawable":-1,"texture":-1,"prop_id":7}],"components":
[{"drawable":0,"texture":0,"component_id":0},
{"drawable":0,"texture":0,"component_id":1},
{"drawable":0,"texture":0,"component_id":2},
{"drawable":0,"texture":0,"component_id":3},
{"drawable":0,"texture":0,"component_id":4},
{"drawable":0,"texture":0,"component_id":5},
{"drawable":0,"texture":0,"component_id":6},
{"drawable":0,"texture":0,"component_id":7},
{"drawable":0,"texture":1,"component_id":8},
{"drawable":0,"texture":0,"component_id":9},
{"drawable":0,"texture":0,"component_id":10},
{"drawable":0,"texture":11,"component_id":11}],"headOverlays":{"blush":
{"color":0,"style":0,"opacity":0},"blemishes":
{"color":0,"style":0,"opacity":0},"complexion":
{"color":0,"style":0,"opacity":0},"bodyBlemishes":
{"color":0,"style":0,"opacity":0},"sunDamage":
{"color":0,"style":0,"opacity":0},"eyebrows":
{"color":0,"style":0,"opacity":0},"lipstick":
{"color":0,"style":0,"opacity":0},"moleAndFreckles":
{"color":0,"style":0,"opacity":0},"makeUp":
{"color":0,"style":0,"opacity":0},"chestHair":
{"color":0,"style":0,"opacity":0},"beard":
{"color":0,"style":0,"opacity":0},"ageing":
{"color":0,"style":0,"opacity":0}},"eyeColor":-1}', 0, NULL, NULL, 0, NULL, NULL,
NULL, NULL, NULL, NULL, NULL, NULL, NULL, '[]', '[]', '[]', '[]', NULL, NULL, NULL,
NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, 0, 40),
(306, '109.175.60.97', '[{"percent":24.08,"val":240800,"name":"hunger"},
{"percent":30.56,"val":305600,"name":"thirst"}]', NULL, NULL,
'{"bank":13500,"black_money":0,"money":0}', 'admin', '[]', 'unemployed', 0, NULL,
'{"heading":52.5,"z":6.4,"y":-1209.0,"x":-845.5}', 'Hara', 'Bara', '1111', 'm',
'166', 'false', NULL, NULL, 'https://pngimage.net/wp-content/uploads/2018/06/gta-
online-character-png-9.png', NULL, NULL, '{"model":"mp_m_freemode_01","eyeColor":-
1,"headOverlays":{"sunDamage":{"opacity":0,"style":0,"color":0},"lipstick":
{"opacity":0,"style":0,"color":0},"blush":
{"opacity":0,"style":0,"color":0},"chestHair":
{"opacity":0,"style":0,"color":0},"bodyBlemishes":
{"opacity":0,"style":0,"color":0},"moleAndFreckles":
{"opacity":0,"style":0,"color":0},"complexion":
{"opacity":0,"style":0,"color":0},"ageing":
{"opacity":0,"style":0,"color":0},"makeUp":
{"opacity":0,"style":0,"color":0},"eyebrows":
{"opacity":0,"style":0,"color":0},"beard":
{"opacity":0,"style":0,"color":0},"blemishes":
{"opacity":0,"style":0,"color":0}},"headBlend":
{"skinSecond":0,"shapeFirst":0,"shapeSecond":0,"shapeMix":0,"skinMix":1,"skinFirst"
:15},"faceFeatures":
{"eyeBrownHigh":0,"nosePeakSize":0,"eyeBrownForward":0,"neckThickness":0,"cheeksBon
eHigh":0,"cheeksBoneWidth":0,"noseBoneHigh":0,"nosePeakLowering":0,"chinBoneLenght"
:0,"noseWidth":0,"lipsThickness":0,"eyesOpening":0,"nosePeakHigh":0,"chinBoneLoweri
ng":0,"noseBoneTwist":0,"jawBoneWidth":0,"chinBoneSize":0,"cheeksWidth":0,"chinHole
":0,"jawBoneBackSize":0},"hair":{"highlight":1,"style":0,"color":1},"components":
[{"component_id":0,"texture":0,"drawable":0},
{"component_id":1,"texture":0,"drawable":0},
{"component_id":2,"texture":0,"drawable":0},
{"component_id":3,"texture":0,"drawable":0},
{"component_id":4,"texture":0,"drawable":0},
{"component_id":5,"texture":0,"drawable":0},
{"component_id":6,"texture":0,"drawable":0},
{"component_id":7,"texture":0,"drawable":0},
{"component_id":8,"texture":1,"drawable":0},
{"component_id":9,"texture":0,"drawable":0},
{"component_id":10,"texture":0,"drawable":0},
{"component_id":11,"texture":11,"drawable":0}],"props":[{"prop_id":0,"texture":-
1,"drawable":-1},{"prop_id":1,"texture":-1,"drawable":-1},{"prop_id":2,"texture":-
1,"drawable":-1},{"prop_id":6,"texture":-1,"drawable":-1},{"prop_id":7,"texture":-
1,"drawable":-1}]}', 0, NULL, NULL, 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL,
NULL, NULL, '[]', '[]', '[]', '[]', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL,
NULL, NULL, NULL, 0, 0, 0),
(307, '39cf8f1ae0e1d43d7dceb87f1f0fb67c5d0a2815',
'[{"name":"hunger","percent":94.03,"val":940300},
{"name":"thirst","percent":95.5225,"val":955225}]', NULL, NULL,
'{"bank":13450,"black_money":0,"money":0}', 'owner', '[{"metadata":
{"serial":"233361KGO982830","ammo":0,"components":
[],"registered":"Modra","durability":100},"slot":1,"name":"WEAPON_PISTOL","count":1
},{"metadata":{"serial":"986969HVJ997879","ammo":0,"components":
[],"registered":"Modra","durability":100},"slot":2,"name":"WEAPON_PISTOL","count":1
}]', 'unemployed', 0, NULL, '{"x":-41.2,"heading":235.5,"z":26.2,"y":-1123.1}',
'Marko', 'Ilic', '01.20.2001', 'm', '200', 'false', NULL, NULL,
'https://pngimage.net/wp-content/uploads/2018/06/gta-online-character-png-9.png',
NULL, NULL, '{"headBlend":
{"skinSecond":0,"shapeMix":0,"skinMix":1,"skinFirst":15,"shapeFirst":0,"shapeSecond
":0},"faceFeatures":
{"nosePeakLowering":0,"cheeksWidth":0,"chinBoneLenght":0,"eyeBrownHigh":0,"chinHole
":0,"chinBoneSize":0,"eyeBrownForward":0,"nosePeakSize":0,"lipsThickness":0,"noseWi
dth":0,"jawBoneBackSize":0,"jawBoneWidth":0,"eyesOpening":0,"cheeksBoneWidth":0,"ne
ckThickness":0,"nosePeakHigh":0,"noseBoneHigh":0,"cheeksBoneHigh":0,"chinBoneLoweri
ng":0,"noseBoneTwist":0},"components":[{"texture":0,"component_id":0,"drawable":0},
{"texture":0,"component_id":1,"drawable":0},
{"texture":0,"component_id":2,"drawable":0},
{"texture":0,"component_id":3,"drawable":0},
{"texture":0,"component_id":4,"drawable":0},
{"texture":0,"component_id":5,"drawable":0},
{"texture":0,"component_id":6,"drawable":0},
{"texture":0,"component_id":7,"drawable":0},
{"texture":1,"component_id":8,"drawable":0},
{"texture":0,"component_id":9,"drawable":0},
{"texture":0,"component_id":10,"drawable":0},
{"texture":11,"component_id":11,"drawable":0}],"model":"mp_m_freemode_01","eyeColor
":-1,"props":[{"texture":-1,"drawable":-1,"prop_id":0},{"texture":-1,"drawable":-
1,"prop_id":1},{"texture":-1,"drawable":-1,"prop_id":2},{"texture":-1,"drawable":-
1,"prop_id":6},{"texture":-1,"drawable":-1,"prop_id":7}],"headOverlays":
{"sunDamage":{"color":0,"style":0,"opacity":0},"moleAndFreckles":
{"color":0,"style":0,"opacity":0},"eyebrows":
{"color":0,"style":0,"opacity":0},"blemishes":
{"color":0,"style":0,"opacity":0},"beard":
{"color":0,"style":0,"opacity":0},"chestHair":
{"color":0,"style":0,"opacity":0},"ageing":
{"color":0,"style":0,"opacity":0},"lipstick":
{"color":0,"style":0,"opacity":0},"makeUp":
{"color":0,"style":0,"opacity":0},"complexion":
{"color":0,"style":0,"opacity":0},"bodyBlemishes":
{"color":0,"style":0,"opacity":0},"blush":
{"color":0,"style":0,"opacity":0}},"hair":{"color":1,"style":0,"highlight":1}}', 0,
NULL, NULL, 0, NULL, NULL, 'BA975830', NULL, NULL, NULL, NULL, NULL, NULL, '[]',
'[]', '[]', '[]', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL,
0, 0, 10),
(308, '9df7ecd455c8ec9885a7b110a90e161744dabdbd',
'[{"percent":18.2,"name":"hunger","val":182000},
{"percent":51.15,"name":"thirst","val":511500}]', NULL, NULL,
'{"bank":6300,"black_money":0,"money":8}', 'user', '[{"count":111,"name":"ammo-
9","slot":3},{"count":8,"name":"money","slot":10},{"metadata":{"components":
[],"durability":89.00000000000063},"count":1,"name":"WEAPON_BAT","slot":2},
{"count":3,"name":"burger","slot":5}]', 'unemployed', 0, NULL,
'{"heading":334.8,"x":243.8,"y":-940.1,"z":29.1}', 'Petar', 'Djordjevic',
'18.03.2000', 'm', '190', 'false', NULL, NULL,
'https://pngimage.net/wp-content/uploads/2018/06/gta-online-character-png-9.png',
NULL, NULL, '{"headBlend":
{"skinSecond":0,"shapeMix":0,"skinFirst":15,"shapeFirst":0,"shapeSecond":0,"skinMix
":1},"faceFeatures":
{"nosePeakLowering":0,"cheeksWidth":0,"chinBoneLenght":0,"eyeBrownHigh":0,"chinHole
":0,"chinBoneSize":0,"eyeBrownForward":0,"nosePeakSize":0,"lipsThickness":0,"noseWi
dth":0,"jawBoneBackSize":0,"jawBoneWidth":0,"eyesOpening":0,"neckThickness":0,"chin
BoneLowering":0,"cheeksBoneWidth":0,"noseBoneHigh":0,"cheeksBoneHigh":0,"nosePeakHi
gh":0,"noseBoneTwist":0},"components":[{"texture":0,"component_id":0,"drawable":0},
{"texture":0,"component_id":2,"drawable":48},
{"texture":0,"component_id":5,"drawable":0},
{"texture":0,"component_id":7,"drawable":4},
{"texture":0,"component_id":9,"drawable":0},
{"texture":0,"component_id":10,"drawable":0},
{"texture":0,"component_id":8,"drawable":15},
{"texture":0,"component_id":3,"drawable":0},
{"texture":1,"component_id":11,"drawable":78},
{"texture":11,"component_id":4,"drawable":142},
{"texture":0,"component_id":6,"drawable":6},
{"texture":0,"component_id":1,"drawable":51}],"hair":
{"highlight":1,"style":48,"color":1},"eyeColor":-1,"props":[{"texture":-
1,"drawable":-1,"prop_id":0},{"texture":-1,"drawable":-1,"prop_id":1},{"texture":-
1,"drawable":-1,"prop_id":2},{"texture":-1,"drawable":-1,"prop_id":6},{"texture":-
1,"drawable":-1,"prop_id":7}],"model":"mp_m_freemode_01","headOverlays":
{"sunDamage":{"color":0,"style":0,"opacity":0},"moleAndFreckles":
{"color":0,"style":0,"opacity":0},"eyebrows":
{"color":0,"style":0,"opacity":0},"blush":
{"color":0,"style":0,"opacity":0},"beard":
{"color":0,"style":0,"opacity":0},"blemishes":
{"color":0,"style":0,"opacity":0},"ageing":
{"color":0,"style":0,"opacity":0},"complexion":
{"color":0,"style":0,"opacity":0},"makeUp":
{"color":0,"style":0,"opacity":0},"chestHair":
{"color":0,"style":0,"opacity":0},"bodyBlemishes":
{"color":0,"style":0,"opacity":0},"lipstick":{"color":0,"style":0,"opacity":0}}}',
0, NULL, NULL, 0, NULL, NULL, 'BA293182', 1111, NULL, NULL, NULL, NULL, NULL, '[]',
'[]', '[]', '[]', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL,
0, 0, 161),
(309, 'aa24fbd318a2f3c4ee45cbff944911c4361221e0',
'[{"name":"hunger","percent":67.25999999999999,"val":672600},
{"name":"thirst","percent":73.57000000000001,"val":735700}]', NULL, NULL,
'{"bank":6300,"black_money":0,"money":600}', 'user',
'[{"slot":1,"name":"money","count":600},{"slot":5,"name":"water","count":8},
{"slot":4,"name":"burger","count":8}]', 'unemployed', 0, NULL,
'{"x":215.8,"heading":23.9,"z":30.7,"y":-810.6}', 'Relja', 'Torino', '03.08/2000',
'm', '190', 'false', NULL, NULL,
'https://pngimage.net/wp-content/uploads/2018/06/gta-online-character-png-9.png',
NULL, NULL, '{"headBlend":
{"skinSecond":0,"shapeMix":0,"skinMix":1,"skinFirst":15,"shapeSecond":0,"shapeFirst
":0},"model":"mp_m_freemode_01","components":
[{"texture":0,"component_id":0,"drawable":0},
{"texture":0,"component_id":2,"drawable":57},
{"texture":0,"component_id":9,"drawable":0},
{"texture":0,"component_id":10,"drawable":0},
{"texture":0,"component_id":4,"drawable":53},
{"texture":0,"component_id":11,"drawable":135},
{"texture":0,"component_id":3,"drawable":123},
{"texture":0,"component_id":6,"drawable":21},
{"texture":0,"component_id":5,"drawable":0},
{"texture":0,"component_id":7,"drawable":4},
{"texture":0,"component_id":8,"drawable":15},
{"texture":0,"component_id":1,"drawable":0}],"faceFeatures":
{"nosePeakLowering":0,"cheeksWidth":0,"chinBoneLenght":0,"eyeBrownHigh":0,"chinHole
":0,"chinBoneSize":0,"neckThickness":0,"nosePeakSize":0,"lipsThickness":0,"noseWidt
h":0,"jawBoneBackSize":0,"jawBoneWidth":0,"noseBoneHigh":0,"eyesOpening":0,"cheeksB
oneWidth":0,"nosePeakHigh":0,"chinBoneLowering":0,"cheeksBoneHigh":0,"eyeBrownForwa
rd":0,"noseBoneTwist":0},"eyeColor":-1,"headOverlays":{"sunDamage":
{"color":0,"opacity":0,"style":0},"moleAndFreckles":
{"color":0,"opacity":0,"style":0},"eyebrows":
{"color":0,"opacity":0,"style":0},"complexion":
{"color":0,"opacity":0,"style":0},"beard":
{"color":0,"opacity":0,"style":0},"blemishes":
{"color":0,"opacity":0,"style":0},"ageing":
{"color":0,"opacity":0,"style":0},"blush":
{"color":0,"opacity":0,"style":0},"makeUp":
{"color":0,"opacity":0,"style":0},"lipstick":
{"color":0,"opacity":0,"style":0},"bodyBlemishes":
{"color":0,"opacity":0,"style":0},"chestHair":
{"color":0,"opacity":0,"style":0}},"props":[{"texture":-1,"drawable":-
1,"prop_id":0},{"texture":-1,"drawable":-1,"prop_id":1},{"texture":-1,"drawable":-
1,"prop_id":2},{"texture":-1,"drawable":-1,"prop_id":6},{"texture":-1,"drawable":-
1,"prop_id":7}],"hair":{"highlight":1,"style":9,"color":1}}', 0, NULL, NULL, 0,
NULL, NULL, 'BA830841', 6969, NULL, NULL, NULL, NULL, NULL, '[]', '[]', '[]', '[]',
NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, 0, 141),
(310, '896386080e8cdf219abf4ee615a73517aa8470cc',
'[{"val":939000,"percent":93.89999999999999,"name":"hunger"},
{"val":954250,"percent":95.42500000000001,"name":"thirst"}]', NULL, NULL,
'{"money":1512515,"bank":15580,"black_money":0}', 'owner',
'[{"slot":1,"name":"money","count":1512515},
{"slot":2,"name":"WEAPON_CARBINERIFLE","count":1,"metadata":
{"durability":99.97,"registered":"Hara Vara","components":
[],"serial":"763316POL759252","ammo":0}},
{"slot":13,"name":"WEAPON_PISTOL","count":1,"metadata":
{"durability":100,"registered":"Hara Vara","components":
[],"serial":"399150POL429648","ammo":0}},
{"slot":8,"name":"WEAPON_STUNGUN","count":1,"metadata":
{"durability":100,"components":[],"registered":"Hara Vara"}}]', 'gsf', 3, NULL,
'{"z":20.1,"y":-1941.9,"x":105.6,"heading":62.1}', 'Hara', 'Vara', '1111', 'm',
'166', 'false', NULL, NULL, 'https://pngimage.net/wp-content/uploads/2018/06/gta-
online-character-png-9.png', NULL, NULL, '{"model":"mp_m_freemode_01","hair":
{"color":0,"style":13,"highlight":0},"faceFeatures":
{"noseWidth":0,"chinHole":0,"cheeksBoneWidth":0,"noseBoneTwist":0,"nosePeakHigh":0,
"nosePeakLowering":0,"neckThickness":0,"eyeBrownHigh":0,"noseBoneHigh":0,"cheeksBon
eHigh":0,"lipsThickness":0,"eyeBrownForward":0,"chinBoneLowering":0,"jawBoneWidth":
0,"chinBoneSize":0,"eyesOpening":0,"chinBoneLenght":0,"nosePeakSize":0,"jawBoneBack
Size":0,"cheeksWidth":0},"components":[{"texture":0,"component_id":0,"drawable":0},
{"texture":0,"component_id":1,"drawable":0},
{"texture":0,"component_id":2,"drawable":13},
{"texture":0,"component_id":5,"drawable":0},
{"texture":0,"component_id":7,"drawable":0},
{"texture":0,"component_id":8,"drawable":15},
{"texture":0,"component_id":9,"drawable":0},
{"texture":0,"component_id":10,"drawable":0},
{"texture":4,"component_id":11,"drawable":205},
{"texture":0,"component_id":3,"drawable":34},
{"texture":6,"component_id":4,"drawable":16},
{"texture":0,"component_id":6,"drawable":7}],"headBlend":
{"shapeFirst":0,"skinMix":0,"skinFirst":0,"shapeSecond":0,"skinSecond":0,"shapeMix"
:0},"props":[{"texture":-1,"prop_id":0,"drawable":-1},{"texture":-
1,"prop_id":1,"drawable":-1},{"texture":-1,"prop_id":2,"drawable":-1},{"texture":-
1,"prop_id":6,"drawable":-1},{"texture":-1,"prop_id":7,"drawable":-
1}],"headOverlays":{"bodyBlemishes":{"color":0,"style":0,"opacity":0},"complexion":
{"color":0,"style":0,"opacity":0},"chestHair":
{"color":0,"style":0,"opacity":0},"ageing":
{"color":0,"style":0,"opacity":0},"blush":
{"color":0,"style":0,"opacity":0},"blemishes":
{"color":0,"style":0,"opacity":0},"makeUp":
{"color":0,"style":0,"opacity":0},"beard":
{"color":0,"style":0,"opacity":0},"moleAndFreckles":
{"color":0,"style":0,"opacity":0},"lipstick":
{"color":0,"style":0,"opacity":0},"eyebrows":
{"color":0,"style":0,"opacity":0},"sunDamage":
{"color":0,"style":0,"opacity":0}},"eyeColor":-1}', 0, NULL, NULL, 0, NULL, NULL,
NULL, NULL, NULL, NULL, NULL, NULL, NULL, '[]', '[]', '[]', '[]', NULL, NULL, NULL,
NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, 0, 1683),
(311, 'c360910971f39e6134abcd438c67b7a2e8a99eff',
'[{"val":850800,"percent":85.08,"name":"hunger"},
{"val":888100,"percent":88.81,"name":"thirst"}]', NULL, NULL,
'{"bank":12400,"black_money":0,"money":0}', 'owner', '[{"count":1,"metadata":
{"registered":"! Tin.","components":
[],"serial":"142131GGL482929","durability":100,"ammo":0},"slot":1,"name":"WEAPON_PI
STOL"}]', 'unemployed', 0, NULL, '{"x":-827.8,"y":-
1214.0,"z":6.9,"heading":357.8}', 'Milan', 'Jozic', '21.01.1200', 'm', '199',
'false', NULL, NULL, 'https://pngimage.net/wp-content/uploads/2018/06/gta-online-
character-png-9.png', NULL, NULL, '{"headBlend":
{"shapeFirst":0,"skinFirst":15,"skinSecond":0,"skinMix":1,"shapeSecond":0,"shapeMix
":0},"props":[{"drawable":-1,"texture":-1,"prop_id":0},{"drawable":-1,"texture":-
1,"prop_id":1},{"drawable":-1,"texture":-1,"prop_id":2},{"drawable":-1,"texture":-
1,"prop_id":6},{"drawable":-1,"texture":-1,"prop_id":7}],"faceFeatures":
{"chinHole":0,"noseBoneHigh":0,"nosePeakHigh":0,"jawBoneWidth":0,"eyeBrownHigh":0,"
eyeBrownForward":0,"lipsThickness":0,"nosePeakLowering":0,"jawBoneBackSize":0,"chin
BoneLenght":0,"eyesOpening":0,"neckThickness":0,"chinBoneLowering":0,"noseBoneTwist
":0,"cheeksWidth":0,"noseWidth":0,"cheeksBoneWidth":0,"chinBoneSize":0,"cheeksBoneH
igh":0,"nosePeakSize":0},"model":"mp_m_freemode_01","components":
[{"texture":0,"component_id":0,"drawable":0},
{"texture":0,"component_id":1,"drawable":0},
{"texture":0,"component_id":2,"drawable":0},
{"texture":0,"component_id":3,"drawable":0},
{"texture":0,"component_id":4,"drawable":0},
{"texture":0,"component_id":5,"drawable":0},
{"texture":0,"component_id":6,"drawable":0},
{"texture":0,"component_id":7,"drawable":0},
{"texture":1,"component_id":8,"drawable":0},
{"texture":0,"component_id":9,"drawable":0},
{"texture":0,"component_id":10,"drawable":0},
{"texture":11,"component_id":11,"drawable":0}],"eyeColor":-1,"hair":
{"highlight":1,"color":1,"style":0},"headOverlays":{"blemishes":
{"opacity":0,"color":0,"style":0},"bodyBlemishes":
{"opacity":0,"color":0,"style":0},"moleAndFreckles":
{"opacity":0,"color":0,"style":0},"sunDamage":
{"opacity":0,"color":0,"style":0},"ageing":
{"opacity":0,"color":0,"style":0},"blush":
{"opacity":0,"color":0,"style":0},"lipstick":
{"opacity":0,"color":0,"style":0},"makeUp":
{"opacity":0,"color":0,"style":0},"eyebrows":
{"opacity":0,"color":0,"style":0},"chestHair":
{"opacity":0,"color":0,"style":0},"complexion":
{"opacity":0,"color":0,"style":0},"beard":{"opacity":0,"color":0,"style":0}}}', 0,
NULL, NULL, 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '[]', '[]',
'[]', '[]', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, 0,
25),
(312, '495eb4c59c2cd92969e12b02726caa66e89b213e',
'[{"val":964300,"name":"hunger","percent":96.43},
{"val":973225,"name":"thirst","percent":97.3225}]', NULL, NULL,
'{"bank":12450,"black_money":0,"money":0}', 'user', '[]', 'unemployed', 0, NULL,
'{"x":-539.7,"y":-215.07,"z":37.9,"heading":207.8}', 'Pero', 'Tadic', '05.02.2000',
'm', '170', 'false', NULL, NULL,
'https://pngimage.net/wp-content/uploads/2018/06/gta-online-character-png-9.png',
NULL, NULL, NULL, 0, NULL, NULL, 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL,
NULL, '[]', '[]', '[]', '[]', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL,
NULL, NULL, 0, 0, 6),
(313, 'd789f75917cbe1986075df7b2e7a6a4bc7cab83f',
'[{"percent":98.22,"name":"hunger","val":982200},
{"percent":98.665,"name":"thirst","val":986650}]', NULL, NULL,
'{"bank":11500,"black_money":0,"money":0}', 'user', '[]', 'unemployed', 0, NULL,
'{"heading":261.7,"x":-490.8,"y":-256.9,"z":35.7}', 'Viljma ', 'Mengele',
'02.04.1980', 'm', '184', 'false', NULL, NULL,
'https://pngimage.net/wp-content/uploads/2018/06/gta-online-character-png-9.png',
NULL, NULL, '{"model":"mp_m_freemode_01","props":[{"drawable":-1,"texture":-
1,"prop_id":0},{"drawable":-1,"texture":-1,"prop_id":1},{"drawable":-1,"texture":-
1,"prop_id":2},{"drawable":-1,"texture":-1,"prop_id":6},{"drawable":-1,"texture":-
1,"prop_id":7}],"components":[{"drawable":0,"component_id":0,"texture":0},
{"drawable":0,"component_id":1,"texture":0},
{"drawable":0,"component_id":2,"texture":0},
{"drawable":0,"component_id":3,"texture":0},
{"drawable":0,"component_id":4,"texture":0},
{"drawable":0,"component_id":5,"texture":0},
{"drawable":0,"component_id":6,"texture":0},
{"drawable":0,"component_id":7,"texture":0},
{"drawable":0,"component_id":8,"texture":1},
{"drawable":0,"component_id":9,"texture":0},
{"drawable":0,"component_id":10,"texture":0},
{"drawable":0,"component_id":11,"texture":11}],"faceFeatures":
{"noseBoneTwist":0,"eyeBrownForward":0,"jawBoneBackSize":0,"cheeksBoneWidth":0,"nec
kThickness":0,"nosePeakLowering":0,"chinBoneSize":0,"chinBoneLenght":0,"eyesOpening
":0,"cheeksBoneHigh":0,"lipsThickness":0,"cheeksWidth":0,"chinHole":0,"chinBoneLowe
ring":0,"nosePeakSize":0,"eyeBrownHigh":0,"noseWidth":0,"jawBoneWidth":0,"noseBoneH
igh":0,"nosePeakHigh":0},"hair":{"color":1,"highlight":1,"style":0},"eyeColor":-
1,"headOverlays":{"beard":{"opacity":0,"color":0,"style":0},"blemishes":
{"opacity":0,"color":0,"style":0},"sunDamage":
{"opacity":0,"color":0,"style":0},"complexion":
{"opacity":0,"color":0,"style":0},"bodyBlemishes":
{"opacity":0,"color":0,"style":0},"lipstick":
{"opacity":0,"color":0,"style":0},"makeUp":
{"opacity":0,"color":0,"style":0},"chestHair":
{"opacity":0,"color":0,"style":0},"moleAndFreckles":
{"opacity":0,"color":0,"style":0},"ageing":
{"opacity":0,"color":0,"style":0},"eyebrows":
{"opacity":0,"color":0,"style":0},"blush":
{"opacity":0,"color":0,"style":0}},"headBlend":
{"shapeSecond":0,"skinMix":1,"skinFirst":15,"shapeFirst":0,"skinSecond":0,"shapeMix
":0}}', 0, NULL, NULL, 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL,
'[]', '[]', '[]', '[]', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL,
NULL, 0, 0, 3),
(314, '630d0925b2b4eba1194f6cbe366dc576c7e242dd',
'[{"val":445600,"percent":44.56,"name":"hunger"},
{"val":584200,"percent":58.42,"name":"thirst"}]', NULL, NULL,
'{"bank":35250,"black_money":0,"money":998265145}', 'owner',
'[{"slot":1,"name":"WEAPON_PISTOL","metadata":
{"ammo":12,"registered":"M4X","durability":90.60000000000054,"components":
[],"serial":"308545AFR706930"},"count":1},{"slot":2,"name":"money","metadata":
{"type":"account"},"count":998265145},{"slot":5,"name":"ammo-9","count":1449}]',
'police', 4, NULL, '{"x":392.2,"heading":165.0,"z":102.0,"y":-650.7}', 'Harun',
'Slanac', '1.1.1999', 'm', '180', 'false', NULL, NULL, 'https://pngimage.net/wp-
content/uploads/2018/06/gta-online-character-png-9.png', NULL, NULL, '{"hair":
{"color":38,"style":13,"highlight":38},"components":
[{"drawable":0,"component_id":0,"texture":0},
{"drawable":0,"component_id":1,"texture":0},
{"drawable":0,"component_id":2,"texture":0},
{"drawable":0,"component_id":5,"texture":0},
{"drawable":0,"component_id":6,"texture":0},
{"drawable":0,"component_id":7,"texture":0},
{"drawable":0,"component_id":8,"texture":0},
{"drawable":0,"component_id":9,"texture":0},
{"drawable":0,"component_id":10,"texture":0},
{"drawable":83,"component_id":3,"texture":0},
{"drawable":128,"component_id":4,"texture":7},
{"drawable":332,"component_id":11,"texture":7}],"headOverlays":{"sunDamage":
{"color":0,"opacity":0,"style":0},"makeUp":
{"color":35,"opacity":0,"style":0},"beard":
{"color":38,"opacity":0,"style":0},"blush":
{"color":0,"opacity":0,"style":0},"blemishes":
{"color":0,"opacity":0,"style":0},"complexion":
{"color":0,"opacity":0,"style":0},"moleAndFreckles":
{"color":0,"opacity":0,"style":0},"bodyBlemishes":
{"color":0,"opacity":0,"style":0},"eyebrows":
{"color":37,"opacity":0,"style":0},"ageing":
{"color":0,"opacity":0,"style":0},"chestHair":
{"color":26,"opacity":0,"style":0},"lipstick":
{"color":0,"opacity":0,"style":0}},"headBlend":
{"skinMix":0,"skinSecond":0,"skinFirst":0,"shapeFirst":0,"shapeSecond":7,"shapeMix"
:0},"eyeColor":-1,"faceFeatures":
{"eyesOpening":0,"cheeksBoneWidth":0,"noseWidth":0,"chinHole":0,"neckThickness":0,"
chinBoneLowering":0,"cheeksWidth":0,"jawBoneBackSize":0,"chinBoneSize":0,"chinBoneL
enght":0,"nosePeakSize":0,"nosePeakLowering":0,"jawBoneWidth":0,"eyeBrownForward":0
,"nosePeakHigh":0,"eyeBrownHigh":0,"noseBoneTwist":0,"cheeksBoneHigh":0,"lipsThickn
ess":0,"noseBoneHigh":0},"model":"mp_m_freemode_01","props":
[{"prop_id":0,"texture":-1,"drawable":-1},{"prop_id":1,"texture":-1,"drawable":-1},
{"prop_id":2,"texture":-1,"drawable":-1},{"prop_id":7,"texture":-1,"drawable":-1},
{"prop_id":6,"texture":0,"drawable":2}]}', 0, NULL, NULL, 0, NULL, NULL, NULL,
NULL, NULL, NULL, NULL, NULL, NULL, '[]', '[]', '[]', '[]', NULL, NULL, NULL, NULL,
NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, 0, 98),
(315, '61222431d3a2a409147e355c4849bd88d564102e',
'[{"val":910400,"percent":91.03999999999999,"name":"hunger"},
{"val":932800,"percent":93.28,"name":"thirst"}]', NULL, NULL,
'{"bank":10350,"black_money":0,"money":-1000}', 'user', '[]', 'unemployed', 0,
NULL, '{"x":431.3,"heading":85.3,"z":30.7,"y":-981.7}', 'Toni', 'Montana', '12 07
2000', 'm', '180', 'false', NULL, NULL,
'https://pngimage.net/wp-content/uploads/2018/06/gta-online-character-png-9.png',
NULL, NULL, '{"props":[{"texture":-1,"prop_id":0,"drawable":-1},{"texture":-
1,"prop_id":1,"drawable":-1},{"texture":-1,"prop_id":2,"drawable":-1},{"texture":-
1,"prop_id":6,"drawable":-1},{"texture":-1,"prop_id":7,"drawable":-1}],"eyeColor":-
1,"headOverlays":{"sunDamage":{"color":0,"opacity":0,"style":0},"chestHair":
{"color":0,"opacity":0,"style":0},"beard":
{"color":0,"opacity":0,"style":0},"complexion":
{"color":0,"opacity":0,"style":0},"lipstick":
{"color":0,"opacity":0,"style":0},"ageing":
{"color":0,"opacity":0,"style":0},"moleAndFreckles":
{"color":0,"opacity":0,"style":0},"bodyBlemishes":
{"color":0,"opacity":0,"style":0},"eyebrows":
{"color":0,"opacity":0,"style":0},"makeUp":
{"color":0,"opacity":0,"style":0},"blush":
{"color":0,"opacity":0,"style":0},"blemishes":
{"color":0,"opacity":0,"style":0}},"components":
[{"texture":0,"component_id":0,"drawable":0},
{"texture":0,"component_id":2,"drawable":0},
{"texture":0,"component_id":3,"drawable":0},
{"texture":0,"component_id":5,"drawable":0},
{"texture":0,"component_id":1,"drawable":0},
{"texture":1,"component_id":6,"drawable":31},
{"texture":0,"component_id":8,"drawable":15},
{"texture":0,"component_id":7,"drawable":3},
{"texture":0,"component_id":9,"drawable":0},
{"texture":0,"component_id":10,"drawable":0},
{"texture":4,"component_id":11,"drawable":14},
{"texture":0,"component_id":4,"drawable":2}],"faceFeatures":
{"eyesOpening":0,"cheeksBoneWidth":0,"noseWidth":0,"chinHole":0,"neckThickness":0,"
chinBoneLowering":0,"cheeksWidth":0,"jawBoneBackSize":0,"chinBoneSize":0,"chinBoneL
enght":0,"nosePeakSize":0,"nosePeakLowering":0,"jawBoneWidth":0,"eyeBrownForward":0
,"eyeBrownHigh":0,"noseBoneHigh":0,"lipsThickness":0,"nosePeakHigh":0,"noseBoneTwis
t":0,"cheeksBoneHigh":0},"hair":
{"color":1,"style":0,"highlight":1},"model":"mp_m_freemode_01","headBlend":
{"skinMix":1,"skinSecond":0,"skinFirst":15,"shapeFirst":0,"shapeSecond":0,"shapeMix
":0}}', 0, NULL, NULL, 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL,
'[]', '[]', '[]', '[]', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL,
NULL, 0, 0, 15),
(316, 'd3f0ff9fe2cd72f97fceb151241d92ae45cf645d',
'[{"val":982100,"percent":98.21,"name":"hunger"},
{"val":986575,"percent":98.6575,"name":"thirst"}]', NULL, NULL,
'{"bank":10400,"black_money":0,"money":-1000}', 'user', '[]', 'unemployed', 0,
NULL, '{"x":-260.0,"heading":359.0,"z":29.4,"y":-335.5}', 'Omy', 'Reyli',
'02.02.1998', 'm', '190', 'false', NULL, NULL,
'https://pngimage.net/wp-content/uploads/2018/06/gta-online-character-png-9.png',
NULL, NULL, '{"props":[{"prop_id":0,"texture":-1,"drawable":-1},
{"prop_id":1,"texture":-1,"drawable":-1},{"prop_id":2,"texture":-1,"drawable":-1},
{"prop_id":6,"texture":-1,"drawable":-1},{"prop_id":7,"texture":-1,"drawable":-
1}],"components":[{"drawable":0,"component_id":0,"texture":0},
{"drawable":0,"component_id":1,"texture":0},
{"drawable":0,"component_id":2,"texture":0},
{"drawable":0,"component_id":3,"texture":0},
{"drawable":0,"component_id":4,"texture":0},
{"drawable":0,"component_id":5,"texture":0},
{"drawable":0,"component_id":6,"texture":0},
{"drawable":0,"component_id":7,"texture":0},
{"drawable":0,"component_id":8,"texture":1},
{"drawable":0,"component_id":9,"texture":0},
{"drawable":0,"component_id":10,"texture":0},
{"drawable":0,"component_id":11,"texture":11}],"headOverlays":{"sunDamage":
{"color":0,"opacity":0,"style":0},"chestHair":
{"color":0,"opacity":0,"style":0},"beard":
{"color":0,"opacity":0,"style":0},"complexion":
{"color":0,"opacity":0,"style":0},"moleAndFreckles":
{"color":0,"opacity":0,"style":0},"blush":
{"color":0,"opacity":0,"style":0},"blemishes":
{"color":0,"opacity":0,"style":0},"bodyBlemishes":
{"color":0,"opacity":0,"style":0},"eyebrows":
{"color":0,"opacity":0,"style":0},"ageing":
{"color":0,"opacity":0,"style":0},"makeUp":
{"color":0,"opacity":0,"style":0},"lipstick":
{"color":0,"opacity":0,"style":0}},"eyeColor":-1,"hair":
{"color":1,"style":0,"highlight":1},"headBlend":
{"skinMix":1,"skinSecond":0,"skinFirst":15,"shapeFirst":0,"shapeSecond":0,"shapeMix
":0},"model":"mp_m_freemode_01","faceFeatures":
{"eyesOpening":0,"cheeksBoneWidth":0,"noseWidth":0,"chinHole":0,"neckThickness":0,"
chinBoneLowering":0,"cheeksWidth":0,"jawBoneBackSize":0,"chinBoneSize":0,"chinBoneL
enght":0,"nosePeakSize":0,"nosePeakLowering":0,"noseBoneHigh":0,"eyeBrownForward":0
,"nosePeakHigh":0,"jawBoneWidth":0,"eyeBrownHigh":0,"noseBoneTwist":0,"lipsThicknes
s":0,"cheeksBoneHigh":0}}', 0, NULL, NULL, 0, NULL, NULL, NULL, NULL, NULL, NULL,
NULL, NULL, NULL, '[]', '[]', '[]', '[]', NULL, NULL, NULL, NULL, NULL, NULL, NULL,
NULL, NULL, NULL, NULL, 0, 0, 3),
(317, 'fa851e9fe6399643acd2696f16ca2c6569379120',
'[{"percent":77.31,"val":773100,"name":"hunger"},
{"percent":82.9825,"val":829825,"name":"thirst"}]', NULL, NULL,
'{"bank":300,"black_money":0,"money":4960}', 'user',
'[{"slot":1,"name":"money","count":4960}]', 'unemployed', 0, NULL, '{"x":-
2890.6,"heading":153.7,"z":0.9,"y":2304.2}', 'MIKI', 'MILOSEVIC', '15.11.2001',
'm', '175', 'false', NULL, NULL,
'https://pngimage.net/wp-content/uploads/2018/06/gta-online-character-png-9.png',
NULL, NULL, '{"props":[{"drawable":-1,"prop_id":0,"texture":-1},{"drawable":-
1,"prop_id":1,"texture":-1},{"drawable":-1,"prop_id":2,"texture":-1},{"drawable":-
1,"prop_id":6,"texture":-1},{"drawable":-1,"prop_id":7,"texture":-1}],"headBlend":
{"skinMix":1,"skinSecond":0,"skinFirst":15,"shapeFirst":0,"shapeSecond":0,"shapeMix
":0},"headOverlays":{"sunDamage":{"color":0,"style":0,"opacity":0},"makeUp":
{"color":0,"style":0,"opacity":0},"beard":
{"color":0,"style":0,"opacity":0},"complexion":
{"color":0,"style":0,"opacity":0},"chestHair":
{"color":0,"style":0,"opacity":0},"blush":
{"color":0,"style":0,"opacity":0},"ageing":
{"color":0,"style":0,"opacity":0},"bodyBlemishes":
{"color":0,"style":0,"opacity":0},"eyebrows":
{"color":0,"style":0,"opacity":0},"blemishes":
{"color":0,"style":0,"opacity":0},"moleAndFreckles":
{"color":0,"style":0,"opacity":0},"lipstick":
{"color":0,"style":0,"opacity":0}},"faceFeatures":
{"eyesOpening":0,"cheeksBoneWidth":0,"cheeksBoneHigh":0,"chinHole":0,"neckThickness
":0,"lipsThickness":0,"cheeksWidth":0,"jawBoneBackSize":0,"chinBoneSize":0,"chinBon
eLenght":0,"nosePeakSize":0,"nosePeakLowering":0,"jawBoneWidth":0,"eyeBrownForward"
:0,"eyeBrownHigh":0,"noseBoneTwist":0,"chinBoneLowering":0,"noseWidth":0,"nosePeakH
igh":0,"noseBoneHigh":0},"eyeColor":-1,"hair":
{"color":1,"style":0,"highlight":1},"model":"mp_m_freemode_01","components":
[{"texture":0,"component_id":0,"drawable":0},
{"texture":0,"component_id":1,"drawable":0},
{"texture":0,"component_id":2,"drawable":0},
{"texture":0,"component_id":3,"drawable":0},
{"texture":0,"component_id":4,"drawable":0},
{"texture":0,"component_id":5,"drawable":0},
{"texture":0,"component_id":6,"drawable":0},
{"texture":0,"component_id":7,"drawable":0},
{"texture":1,"component_id":8,"drawable":0},
{"texture":0,"component_id":9,"drawable":0},
{"texture":0,"component_id":10,"drawable":0},
{"texture":11,"component_id":11,"drawable":0}]}', 0, NULL, NULL, 0, NULL, NULL,
'BABA11', 1111, NULL, NULL, NULL, NULL, NULL, '[]', '[]', '[]', '[]', NULL, NULL,
NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, 0, 38),
(318, '6fbd108930cda9bde2777749e9bf595ad9115a11',
'[{"val":447200,"name":"hunger","percent":44.72},
{"val":460400,"name":"thirst","percent":46.04}]', NULL, NULL,
'{"bank":10150,"money":0,"black_money":0}', 'owner',
'[{"name":"WEAPON_SPECIALCARBINE","count":1,"metadata":
{"serial":"369145PYF987107","registered":"Baba","components":
[],"durability":96.90999999999993,"ammo":10},"slot":1},{"name":"ammo-
rifle","count":1402,"slot":2}]', 'unemployed', 0, NULL,
'{"z":29.3,"heading":243.8,"x":32.6,"y":-1352.8}', 'Hara', 'Brat', '11111', 'm',
'177', 'false', NULL, NULL, 'https://pngimage.net/wp-content/uploads/2018/06/gta-
online-character-png-9.png', NULL, NULL, '{"hair":
{"highlight":1,"color":1,"style":0},"faceFeatures":
{"cheeksBoneHigh":0,"chinBoneLowering":0,"cheeksWidth":0,"cheeksBoneWidth":0,"lipsT
hickness":0,"noseWidth":0,"nosePeakHigh":0,"nosePeakSize":0,"chinBoneSize":0,"eyeBr
ownForward":0,"neckThickness":0,"jawBoneBackSize":0,"chinHole":0,"jawBoneWidth":0,"
noseBoneHigh":0,"chinBoneLenght":0,"eyeBrownHigh":0,"noseBoneTwist":0,"eyesOpening"
:0,"nosePeakLowering":0},"eyeColor":-1,"headBlend":
{"shapeMix":0,"shapeFirst":0,"shapeSecond":0,"skinFirst":15,"skinMix":1,"skinSecond
":0},"headOverlays":{"makeUp":{"opacity":0,"color":0,"style":0},"blush":
{"opacity":0,"color":0,"style":0},"sunDamage":
{"opacity":0,"color":0,"style":0},"ageing":
{"opacity":0,"color":0,"style":0},"beard":
{"opacity":0,"color":0,"style":0},"complexion":
{"opacity":0,"color":0,"style":0},"moleAndFreckles":
{"opacity":0,"color":0,"style":0},"bodyBlemishes":
{"opacity":0,"color":0,"style":0},"lipstick":
{"opacity":0,"color":0,"style":0},"chestHair":
{"opacity":0,"color":0,"style":0},"eyebrows":
{"opacity":0,"color":0,"style":0},"blemishes":
{"opacity":0,"color":0,"style":0}},"model":"mp_m_freemode_01","props":
[{"prop_id":0,"drawable":-1,"texture":-1},{"prop_id":1,"drawable":-1,"texture":-1},
{"prop_id":2,"drawable":-1,"texture":-1},{"prop_id":6,"drawable":-1,"texture":-1},
{"prop_id":7,"drawable":-1,"texture":-1}],"components":
[{"texture":0,"component_id":0,"drawable":0},
{"texture":0,"component_id":1,"drawable":0},
{"texture":0,"component_id":2,"drawable":0},
{"texture":0,"component_id":3,"drawable":0},
{"texture":0,"component_id":4,"drawable":0},
{"texture":0,"component_id":5,"drawable":0},
{"texture":0,"component_id":6,"drawable":0},
{"texture":0,"component_id":7,"drawable":0},
{"texture":1,"component_id":8,"drawable":0},
{"texture":0,"component_id":9,"drawable":0},
{"texture":0,"component_id":10,"drawable":0},
{"texture":11,"component_id":11,"drawable":0}]}', 0, NULL, NULL, 0, NULL, NULL,
'BA363922', NULL, NULL, NULL, NULL, NULL, NULL, '[]', '[]', '[]', '[]', NULL, NULL,
NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, 0, 874);

-- Dumping structure for table sokac.user_licenses


CREATE TABLE IF NOT EXISTS `user_licenses` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`type` varchar(255) NOT NULL,
`owner` varchar(255) NOT NULL,
PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci;

-- Dumping data for table sokac.user_licenses: ~0 rows (approximately)

-- Dumping structure for table sokac.vehicles


CREATE TABLE IF NOT EXISTS `vehicles` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`displayName` varchar(255) DEFAULT NULL,
`model` varchar(255) DEFAULT NULL,
`class` varchar(255) DEFAULT NULL,
`classDisplay` varchar(50) DEFAULT NULL,
`price` int(11) DEFAULT NULL,
`credits` int(11) DEFAULT 0,
`stock` int(11) DEFAULT 5,
`category` varchar(255) DEFAULT 'classic',
`img` varchar(255) DEFAULT
'https://www.publicdomainpictures.net/pictures/280000/velka/not-found-image-
15383864787lu.jpg',
`displayIn` tinyint(1) DEFAULT 1,
PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=549 DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;

-- Dumping data for table sokac.vehicles: ~155 rows (approximately)


INSERT INTO `vehicles` (`id`, `displayName`, `model`, `class`, `classDisplay`,
`price`, `credits`, `stock`, `category`, `img`, `displayIn`) VALUES
(1, 'Aston Martin Dzip', 'amdbx', 'AstonMartin', 'AstonMartin', 200000, 0, 5,
'classic',
'https://cdn.discordapp.com/attachments/980826702643077160/1059158055427772518/9k.p
ng', 1),
(2, 'Aston Martin', 'ast', 'AstonMartin', 'AstonMartin', 400000, 0, 4,
'classic',
'https://cdn.discordapp.com/attachments/980826702643077160/1057636592703000726/
R.jpg', 1),
(3, 'Audi A4 Cabrio', '80B4', 'Audi', 'Audi', 40000, 0, 4, 'classic',
'https://cdn.discordapp.com/attachments/980826702643077160/1057636927878221825/
R.jpg', 1),
(4, 'Audi AQ4', 'aaq4', 'Audi', 'Audi', 130000, 0, 3, 'classic',
'https://cdn.discordapp.com/attachments/980826702643077160/1057638533982076949/
R.jpg', 1),
(5, 'Audi Quattro', 'audquattros ', 'Audi', 'Audi', 45000, 0, 5, 'classic',
'https://cdn.discordapp.com/attachments/980826702643077160/1057637180824100874/
R.jpg', 1),
(6, 'Audi Q8', 'q820', 'Audi', 'Audi', 300000, 0, 3, 'classic',
'https://cdn.discordapp.com/attachments/980826702643077160/1057637422533443624/
OIP.jpg', 1),
(7, 'Audi R8', 'r820', 'Audi', 'Audi', 450000, 0, 4, 'classic',
'https://cdn.discordapp.com/attachments/980826702643077160/1057638827021303928/
OIP.jpg', 1),
(8, 'Audi RS7', 'RS72020', 'Audi', 'Audi', 380000, 0, 0, 'classic',
'https://cdn.discordapp.com/attachments/980826702643077160/1057637543102918656/
R.jpg', 1),
(9, 'Audi S8', 's8d2', 'Audi', 'Audi', 70000, 0, 5, 'classic',
'https://cdn.discordapp.com/attachments/980826702643077160/1057637821197852723/
R.jpg', 1),
(10, 'Audi SQ7', 'sq72016', 'Audi', 'Audi', 250000, 0, 2, 'classic',
'https://cdn.discordapp.com/attachments/980826702643077160/1057637932900552714/
R.jpg', 1),
(11, 'Audi TT', 'ttrs', 'Audi', 'Audi', 170000, 0, 5, 'classic',
'https://cdn.discordapp.com/attachments/980826702643077160/1057638070645690449/
R.jpg', 1),
(12, 'Bently Dzip', 'bbentayga ', 'Bently', 'Bently', 950000, 0, 5,
'classic',
'https://cdn.discordapp.com/attachments/980826702643077160/1057639207214002216/
R.jpg', 1),
(13, 'Bently Cabrio', 'cgts', 'Bently', 'Bently', 700000, 0, 5, 'classic',
'https://cdn.discordapp.com/attachments/980826702643077160/1057639101471399976/
R.jpg', 1),
(14, 'BMW 760Li', '760li04', 'BMW', 'BMW', 150000, 0, 5, 'classic',
'https://cdn.discordapp.com/attachments/980826702643077160/1057639320745410610/
R.jpg', 1),
(15, 'BMW M5F90', 'bmci', 'BMW', 'BMW', 500000, 0, 4, 'classic',
'https://cdn.discordapp.com/attachments/980826702643077160/1057639479017488506/
R.jpg', 1),
(16, 'BMW E34', 'e34', 'BMW', 'BMW', 110000, 0, 4, 'classic',
'https://cdn.discordapp.com/attachments/980826702643077160/1057639518787878952/
R.jpg', 1),
(17, 'BMW I8', 'i8', 'BMW', 'BMW', 450000, 0, 5, 'classic',
'https://cdn.discordapp.com/attachments/980826702643077160/1057639619564404856/
R.jpg', 1),
(18, 'BMW M2', 'm2', 'BMW', 'BMW', 160000, 0, 5, 'classic',
'https://cdn.discordapp.com/attachments/980826702643077160/1057639703601492058/
R.jpg', 1),
(19, 'BMW M3E36', 'm3e36', 'BMW', 'BMW', 140000, 0, 5, 'classic',
'https://cdn.discordapp.com/attachments/980826702643077160/1057639896631754762/
R.jpg', 1),
(20, 'BMW M3E92', 'm3e92', 'BMW', 'BMW', 160000, 0, 5, 'classic',
'https://cdn.discordapp.com/attachments/980826702643077160/1057639959198191626/
R.jpg', 1),
(21, 'BMW M3F80', 'm3f80', 'BMW', 'BMW', 210000, 0, 4, 'classic',
'https://cdn.discordapp.com/attachments/980826702643077160/1057640045403713558/
R.jpg', 1),
(22, 'BMW M4F82', 'm4f82', 'BMW', 'BMW', 230000, 0, 4, 'classic',
'https://cdn.discordapp.com/attachments/980826702643077160/1057640135451213864/
R.jpg', 1),
(23, 'BMW M6F13', 'm6f13', 'BMW', 'BMW', 250000, 0, 5, 'classic',
'https://cdn.discordapp.com/attachments/980826702643077160/1057640351747285033/
R.jpg', 1),
(24, 'BMW X5E53', 'x5e53', 'BMW', 'BMW', 180000, 0, 5, 'classic',
'https://cdn.discordapp.com/attachments/980826702643077160/1057640450225340546/
R.jpg', 1),
(25, 'BMW Z4', 'z419', 'BMW', 'BMW', 240000, 0, 5, 'classic',
'https://cdn.discordapp.com/attachments/980826702643077160/1057640586443751434/
R.jpg', 1),
(26, 'CADILLAC ATS', 'cats', 'Cadillac', 'Cadillac', 120000, 0, 5, 'classic',
'https://cdn.discordapp.com/attachments/980826702643077160/1057640984256716840/
R.jpg', 1),
(27, 'CADILLAC Dzip', 'cesc21', 'Cadillac', 'Cadillac', 180000, 0, 5,
'classic',
'https://cdn.discordapp.com/attachments/980826702643077160/1057641136937766932/
R.jpg', 1),
(28, 'Chevrolet Tahoe', '09tahoe', 'Chevrolet ', 'Chevrolet ', 140000, 0, 5,
'classic',
'https://cdn.discordapp.com/attachments/980826702643077160/1057641475271315456/2021
-chevrolet-tahoe-highcountry-053.jpg', 1),
(29, 'Chevrolet SS', '2020ss', 'Chevrolet ', 'Chevrolet ', 200000, 0, 5,
'classic',
'https://cdn.discordapp.com/attachments/980826702643077160/1057641762266566756/
OIP.jpg', 1),
(30, 'Chevrolet RS', 'camrs17', 'Chevrolet ', 'Chevrolet ', 250000, 0, 5,
'classic',
'https://cdn.discordapp.com/attachments/980826702643077160/1057641999014043658/
R.jpg', 1),
(31, 'Chevrolet RST', 'tahoe21', 'Chevrolet ', 'Chevrolet ', 180000, 0, 5,
'classic',
'https://cdn.discordapp.com/attachments/980826702643077160/1057642253570539530/
R.jpg', 1),
(32, 'Corvette C5Z06', 'corvettec5z06', 'Corvette', 'Corvette', 175000, 0, 5,
'classic',
'https://cdn.discordapp.com/attachments/980826702643077160/1057642285338218577/
R.jpg', 1),
(33, 'Corvette CZR1', 'czr1', 'Corvette', 'Corvette', 200000, 0, 5,
'classic',
'https://cdn.discordapp.com/attachments/980826702643077160/1057642496970199120/
OIP.jpg', 1),
(34, 'Dacia', '1310', 'Dacia', 'Dacia', 35000, 0, 5, 'classic',
'https://cdn.discordapp.com/attachments/980826702643077160/1057642885446651965/
R.jpg', 1),
(35, 'Dacia Logan', 'logan', 'Dacia', 'Dacia', 50000, 0, 4, 'classic',
'https://cdn.discordapp.com/attachments/980826702643077160/1057643087805038732/
R.png', 1),
(36, 'Dacia Sandero', 'sandero', 'Dacia', 'Dacia', 60000, 0, 5, 'classic',
'https://cdn.discordapp.com/attachments/980826702643077160/1057643141445976074/
OIP.jpg', 1),
(37, 'Dacia StepWay', 'stepway', 'Dacia', 'Dacia', 80000, 0, 5, 'classic',
'https://cdn.discordapp.com/attachments/980826702643077160/1057643373009322014/
R.jpg', 1),
(38, 'Dodge Challenger', '16challenger', 'Dodge', 'Dodge', 500000, 0, 3,
'classic',
'https://cdn.discordapp.com/attachments/980826702643077160/1057643588307144734/
R.jpg', 1),
(39, 'Dodge Charger', '16charger', 'Dodge', 'Dodge', 200000, 0, 4, 'classic',
'https://cdn.discordapp.com/attachments/980826702643077160/1057643809036582992/
speedkore-awd-tt-charger-10.webp', 1),
(40, 'Dodge Viper', '99viper', 'Dodge', 'Dodge', 350000, 0, 5, 'classic',
'https://cdn.discordapp.com/attachments/980826702643077160/1057643909100077124/
R.jpg', 1),
(41, 'Dodge CHR20', 'chr20', 'Dodge', 'Dodge', 600000, 0, 4, 'classic',
'https://cdn.discordapp.com/attachments/980826702643077160/1057644023793328148/
OIP.jpg', 1),
(42, 'Dodge Demon', 'demon', 'Dodge', 'Dodge', 550000, 0, 5, 'classic',
'https://cdn.discordapp.com/attachments/980826702643077160/1057644076926767164/
OIP.jpg', 1),
(43, 'Dodge Ram', 'ram2500', 'Dodge', 'Dodge', 225000, 0, 5, 'classic',
'https://cdn.discordapp.com/attachments/980826702643077160/1057644319797948456/
R.jpg', 1),
(44, 'Dodge SRT', 'srt4', 'Dodge', 'Dodge', 125000, 0, 5, 'classic',
'https://cdn.discordapp.com/attachments/980826702643077160/1057644454107947029/
R.jpg', 1),
(45, 'Dodge TRX', 'trx', 'Dodge', 'Dodge', 450000, 0, 5, 'classic',
'https://cdn.discordapp.com/attachments/980826702643077160/1057644586731835432/
R.jpg', 1),
(46, 'Ferrari 488', '488', 'Ferrari', 'Ferrari', 875000, 0, 2, 'classic',
'https://cdn.discordapp.com/attachments/980826702643077160/1057644837962256474/
R.jpg', 1),
(47, 'Ferrari 812', 'f812', 'Ferrari', 'Ferrari', 950000, 0, 3, 'classic',
'https://cdn.discordapp.com/attachments/980826702643077160/1057645100768956426/
R.jpg', 1),
(48, 'Ferrari FCT', 'fct', 'Ferrari', 'Ferrari', 850000, 0, 3, 'classic',
'https://cdn.discordapp.com/attachments/980826702643077160/1057645100768956426/
R.jpg', 1),
(49, 'Ferrari LA', 'laferrari', 'Ferrari', 'Ferrari', 1250000, 0, 4,
'classic',
'https://cdn.discordapp.com/attachments/980826702643077160/1057645319522877500/
R.jpg', 1),
(50, 'Ferrari MIG', 'mig', 'Ferrari', 'Ferrari', 1000000, 0, 4, 'classic',
'https://cdn.discordapp.com/attachments/980826702643077160/1057645475005747230/
R.jpg', 1),
(51, 'Ford 150', 'f150', 'Ford', 'Ford', 250000, 0, 4, 'classic',
'https://cdn.discordapp.com/attachments/980826702643077160/1057645630081732608/
R.jpg', 1),
(52, 'Ford Stari', 'f15078', 'Ford', 'Ford', 125000, 0, 5, 'classic',
'https://cdn.discordapp.com/attachments/980826702643077160/1057645697861697636/
R.jpg', 1),
(53, 'Ford GT', 'fgt', 'Ford', 'Ford', 450000, 0, 5, 'classic',
'https://cdn.discordapp.com/attachments/980826702643077160/1057645802891268178/
R.jpg', 1),
(54, 'Ford GT17', 'gt17', 'Ford', 'Ford', 750000, 0, 5, 'classic',
'https://cdn.discordapp.com/attachments/980826702643077160/1057645802891268178/
R.jpg', 1),
(55, 'Ford Mustang', 'mustang50th', 'Ford', 'Ford', 450000, 0, 4, 'classic',
'https://cdn.discordapp.com/attachments/980826702643077160/1057645901805535382/
R.jpg', 1),
(56, 'Ford WildTrak', 'wildtrak', 'Ford', 'Ford', 650000, 0, 5, 'classic',
'https://cdn.discordapp.com/attachments/980826702643077160/1057646041295503481/
R.jpg', 1),
(57, 'Honda AP2', 'ap2', 'Honda', 'Honda', 125000, 0, 5, 'classic',
'https://cdn.discordapp.com/attachments/980826702643077160/1057646624463138816/
R.jpg', 1),
(58, 'Honda EP3', 'ep3', 'Honda', 'Honda', 50000, 0, 5, 'classic',
'https://cdn.discordapp.com/attachments/980826702643077160/1057646743883358308/
R.jpg', 1),
(59, 'Honda Civic R', 'fk8', 'Honda', 'Honda', 225000, 0, 5, 'classic',
'https://cdn.discordapp.com/attachments/980826702643077160/1057646844542451752/
R.jpg', 1),
(60, 'Honda CRX', 'honcrx91', 'Honda', 'Honda', 35000, 0, 5, 'classic',
'https://cdn.discordapp.com/attachments/980826702643077160/1057646941053386762/
R.jpg', 1),
(61, 'Honda NA', 'na1', 'Honda', 'Honda', 275000, 0, 5, 'classic',
'https://cdn.discordapp.com/attachments/980826702643077160/1057647118073999380/
R.jpg', 1),
(62, 'Jaguar Dzip', 'fpacehm', 'Jaguar', 'Jaguar', 850000, 0, 5, 'classic',
'https://cdn.discordapp.com/attachments/980826702643077160/1057647382126411887/
OIP.jpg', 1),
(63, 'Jeep Rubicon', 'jeep2012', 'Jeep', 'Jeep', 150000, 0, 5, 'classic',
'https://cdn.discordapp.com/attachments/980826702643077160/1057648250682888213/
OIP.jpg', 1),
(64, 'Jeep Reneg', 'jeepreneg', 'Jeep', 'Jeep', 50000, 0, 5, 'classic',
'https://cdn.discordapp.com/attachments/980826702643077160/1057648403741429891/
OIP.jpg', 1),
(65, 'Jeep SRT', 'srt8', 'Jeep', 'Jeep', 250000, 0, 4, 'classic',
'https://cdn.discordapp.com/attachments/980826702643077160/1057648548281319434/
R.jpg', 1),
(66, 'Jeep Hawk', 'trhawk', 'Jeep', 'Jeep', 300000, 0, 5, 'classic',
'https://cdn.discordapp.com/attachments/980826702643077160/1057648606116597860/
R.jpg', 1),
(67, 'Lamborghini HurracaST', 'huracanst', 'Lamborghini', 'Lamborghini',
4000000, 0, 3, 'classic',
'https://cdn.discordapp.com/attachments/980826702643077160/1057648830931283989/
R.jpg', 1),
(68, 'Lamborghini SE', 'lambose', 'Lamborghini', 'Lamborghini', 4000000, 0,
5, 'classic',
'https://cdn.discordapp.com/attachments/980826702643077160/1057648911751327804/
OIP.jpg', 1),
(69, 'Lamborghini SV', 'lp760sv', 'Lamborghini', 'Lamborghini', 3750000, 0,
5, 'classic',
'https://cdn.discordapp.com/attachments/980826702643077160/1057649020241182790/
OIP.jpg', 1),
(70, 'Lamborghini Aventador', 'lp700r', 'Lamborghini', 'Lamborghini',
4500000, 0, 4, 'classic',
'https://cdn.discordapp.com/attachments/980826702643077160/1057649101233192982/
OIP.jpg', 1),
(71, 'Lamborghini Urus', 'urus', 'Lamborghini', 'Lamborghini', 3500000, 0, 4,
'classic',
'https://cdn.discordapp.com/attachments/980826702643077160/1057649228840718346/
R.jpg', 1),
(72, 'LandRover', 'lrrr', 'LandRover', 'LandRover', 90000, 0, 5, 'classic',
'https://cdn.discordapp.com/attachments/980826702643077160/1057649509267673128/
OIP.jpg', 1),
(73, 'Lexus GS350', 'gs350', 'Lexus', 'Lexus', 110000, 0, 5, 'classic',
'https://cdn.discordapp.com/attachments/980826702643077160/1057649948478427246/
R.jpg', 1),
(74, 'Lexus IS350', 'is350mod', 'Lexus', 'Lexus', 120000, 0, 5, 'classic',
'https://cdn.discordapp.com/attachments/980826702643077160/1057650046633512970/
OIP.jpg', 1),
(75, 'Lexus RC', 'rcf', 'Lexus', 'Lexus', 200000, 0, 5, 'classic',
'https://cdn.discordapp.com/attachments/980826702643077160/1057650216641253406/
R.jpg', 1),
(76, 'Maserati Dzip', 'levante', 'Maserati', 'Maserati', 185000, 0, 5,
'classic',
'https://cdn.discordapp.com/attachments/980826702643077160/1057650272509382726/
R.jpg', 1),
(77, 'Mazda GSLS6', '84rx7k', 'Mazda', 'Mazda', 100000, 0, 5, 'classic',
'https://cdn.discordapp.com/attachments/980826702643077160/1057650490286014504/
OIP.jpg', 1),
(78, 'Mazda RX7', 'fc3s', 'Mazda', 'Mazda', 110000, 0, 5, 'classic',
'https://cdn.discordapp.com/attachments/980826702643077160/1057650599426011277/
OIP.jpg', 1),
(79, 'Mazda ', 'majfd', 'Mazda', 'Mazda', 120000, 0, 5, 'classic',
'https://cdn.discordapp.com/attachments/980826702643077160/1057650753398915121/
download.jpg', 1),
(80, 'Mazda NA', 'na6', 'Mazda', 'Mazda', 25000, 0, 5, 'classic',
'https://cdn.discordapp.com/attachments/980826702643077160/1057650838836879380/
OIP.jpg', 1),
(81, 'Mclaren 650S', '650s', 'Mclaren', 'Mclaren', 3000000, 0, 5, 'classic',
'https://cdn.discordapp.com/attachments/980826702643077160/1057650936958427206/
OIP.jpg', 1),
(82, 'Mclaren 720S', '720s', 'Mclaren', 'Mclaren', 4000000, 0, 4, 'classic',
'https://cdn.discordapp.com/attachments/980826702643077160/1057651005619195935/
OIP.jpg', 1),
(83, 'Mclaren P412', 'mp412c', 'Mclaren', 'Mclaren', 3500000, 0, 5,
'classic',
'https://cdn.discordapp.com/attachments/980826702643077160/1057651070257598494/
download.jpg', 1),
(84, 'Mercedes AMGGTR', 'amggtrr20', 'Mercedes', 'Mercedes', 5000000, 0, 3,
'classic',
'https://cdn.discordapp.com/attachments/980826702643077160/1057651297840541787/
OIP.jpg', 1),
(85, 'Mercedes C63', 'c6320', 'Mercedes', 'Mercedes', 450000, 0, 4,
'classic',
'https://cdn.discordapp.com/attachments/980826702643077160/1057651363812749392/
OIP.jpg', 1),
(86, 'Mercedes E400', 'e400', 'Mercedes', 'Mercedes', 650000, 0, 2,
'classic',
'https://cdn.discordapp.com/attachments/980826702643077160/1057651438592995338/
OIP.jpg', 1),
(87, 'Mercedes G65', 'G65', 'Mercedes', 'Mercedes', 550000, 0, 5, 'classic',
'https://cdn.discordapp.com/attachments/980826702643077160/1057651517211037706/
OIP.jpg', 1),
(88, 'Mercedes GL63', 'gl63', 'Mercedes', 'Mercedes', 500000, 0, 4,
'classic',
'https://cdn.discordapp.com/attachments/980826702643077160/1057651569459474503/
OIP.jpg', 1),
(89, 'Mercedes BC63', 'mbc63', 'Mercedes', 'Mercedes', 350000, 0, 3,
'classic',
'https://cdn.discordapp.com/attachments/980826702643077160/1057651705107464332/
OIP.jpg', 1),
(90, 'Mercedes S500', 's500w222', 'Mercedes', 'Mercedes', 750000, 0, 3,
'classic',
'https://cdn.discordapp.com/attachments/980826702643077160/1057651819762941962/
OIP.jpg', 1),
(91, 'Mercedes Sl500', 'sl500', 'Mercedes', 'Mercedes', 150000, 0, 5,
'classic',
'https://cdn.discordapp.com/attachments/980826702643077160/1057651952244236298/
OIP.jpg', 1),
(92, 'Mercedes Kombi', 'v250', 'Mercedes', 'Mercedes', 250000, 0, 4,
'classic',
'https://cdn.discordapp.com/attachments/980826702643077160/1057652076936712292/
OIP.jpg', 1),
(93, 'Mitsubishi Lancer', 'cp9a', 'Mitsubishi', 'Mitsubishi', 145000, 0, 5,
'classic',
'https://cdn.discordapp.com/attachments/980826702643077160/1057652127859744828/
OIP.jpg', 1),
(94, 'Mitsubishi GP', 'fto', 'Mitsubishi', 'Mitsubishi', 125000, 0, 5,
'classic',
'https://cdn.discordapp.com/attachments/980826702643077160/1057652195094437968/
OIP.jpg', 1),
(95, 'Nissan 180SX', '180sx', 'Nissan ', 'Nissan ', 125000, 0, 5, 'classic',
'https://cdn.discordapp.com/attachments/980826702643077160/1057652289655033927/
OIP.jpg', 1),
(96, 'Nissan GTR', 'gtr', 'Nissan ', 'Nissan ', 1500000, 0, 4, 'classic',
'https://cdn.discordapp.com/attachments/980826702643077160/1057652333493887036/
OIP.jpg', 1),
(97, 'Nissan GTR Cabrio', 'gtrc', 'Nissan ', 'Nissan ', 1250000, 0, 5,
'classic',
'https://cdn.discordapp.com/attachments/980826702643077160/1057652415781937223/
OIP.jpg', 1),
(98, 'Nissan Z', 'maj350', 'Nissan ', 'Nissan ', 250000, 0, 4, 'classic',
'https://cdn.discordapp.com/attachments/980826702643077160/1057652508769669120/
download.jpg', 1),
(99, 'Nissan Silvia', 'nis15', 'Nissan ', 'Nissan ', 135000, 0, 5,
'classic',
'https://cdn.discordapp.com/attachments/980826702643077160/1057652544941334669/
OIP.jpg', 1),
(100, 'Nissan Titan', 'nissantitan17', 'Nissan ', 'Nissan ', 750000, 0, 5,
'classic',
'https://cdn.discordapp.com/attachments/980826702643077160/1057652738705596446/
download.jpg', 1),
(101, 'Nissan 370z', 'nzp', 'Nissan ', 'Nissan ', 200000, 0, 5, 'classic',
'https://cdn.discordapp.com/attachments/980826702643077160/1057652808003891280/
OIP.jpg', 1),
(102, 'Nissan S14', 's14', 'Nissan ', 'Nissan ', 95000, 0, 5, 'classic',
'https://cdn.discordapp.com/attachments/980826702643077160/1057652903172649010/
OIP.jpg', 1),
(103, 'Nissan PatrolGR', 'Safari97', 'Nissan ', 'Nissan ', 142000, 0, 5,
'classic',
'https://cdn.discordapp.com/attachments/980826702643077160/1057652992477761586/
OIP.jpg', 1),
(104, 'Nissan Z32', 'z32', 'Nissan ', 'Nissan ', 145000, 0, 5, 'classic',
'https://cdn.discordapp.com/attachments/980826702643077160/1057653062103216178/
OIP.jpg', 1),
(105, 'Porsche 718CaymanS', '718caymans', 'Porsche ', 'Porsche ', 1350000, 0,
5, 'classic',
'https://cdn.discordapp.com/attachments/980826702643077160/1057653173118054490/
OIP.jpg', 1),
(106, 'Porsche CGT', 'cgt', 'Porsche ', 'Porsche ', 2450000, 0, 5,
'classic',
'https://cdn.discordapp.com/attachments/980826702643077160/1057653246228971520/
OIP.jpg', 1),
(107, 'Porsche Cayenne', 'pcs18', 'Porsche ', 'Porsche ', 550000, 0, 4,
'classic',
'https://cdn.discordapp.com/attachments/980826702643077160/1057653557316304906/
OIP.jpg', 1),
(108, 'Porsche Macan', 'pm19', 'Porsche ', 'Porsche ', 750000, 0, 4,
'classic',
'https://cdn.discordapp.com/attachments/980826702643077160/1057653611187929208/
OIP.jpg', 1),
(109, 'Porsche Taycan ', 'taycan', 'Porsche ', 'Porsche ', 2500000, 0, 4,
'classic',
'https://cdn.discordapp.com/attachments/980826702643077160/1057653672353476639/
OIP.jpg', 1),
(110, 'RangeRover Evoque', 'rrevoque', 'RangeRover', 'RangeRover', 485000, 0,
5, 'classic',
'https://cdn.discordapp.com/attachments/980826702643077160/1057653746382946436/
OIP.jpg', 1),
(111, 'RangeRover SST', 'rrst', 'RangeRover', 'RangeRover', 650000, 0, 5,
'classic',
'https://cdn.discordapp.com/attachments/980826702643077160/1057653853534834718/
OIP.jpg', 1),
(112, 'RangeRover SV3', 'rsvr16', 'RangeRover', 'RangeRover', 500000, 0, 5,
'classic',
'https://cdn.discordapp.com/attachments/980826702643077160/1057653924498251776/
OIP.jpg', 1),
(113, 'Renault Twingo', 'twingo', 'Renault', 'Renault', 10000, 0, 1,
'classic',
'https://cdn.discordapp.com/attachments/980826702643077160/1057654015422378024/
OIP.jpg', 1),
(114, 'Rolls Royce Cabrio', 'dawnonyx', 'Rolls Royce', 'Rolls Royce',
7000000, 0, 5, 'classic',
'https://cdn.discordapp.com/attachments/980826702643077160/1057654136696487966/
OIP.jpg', 1),
(115, 'Rolls Royce Dzip', 'rculi', 'Rolls Royce', 'Rolls Royce', 6000000, 0,
5, 'classic',
'https://cdn.discordapp.com/attachments/980826702643077160/1057654198050771024/
OIP.jpg', 1),
(116, 'Rolls Royce Phantom', 'rrphantom', 'Rolls Royce', 'Rolls Royce',
6250000, 0, 5, 'classic',
'https://cdn.discordapp.com/attachments/980826702643077160/1057654248835391558/
OIP.jpg', 1),
(117, 'Rolls Royce Wraith', 'wraith', 'Rolls Royce', 'Rolls Royce', 7500000,
0, 4, 'classic',
'https://cdn.discordapp.com/attachments/980826702643077160/1057654299796197376/
OIP.jpg', 1),
(118, 'Subaru Subisti', 'subisti08', 'Subaru ', 'Subaru ', 85000, 0, 5,
'classic',
'https://cdn.discordapp.com/attachments/980826702643077160/1057654389885648926/
OIP.jpg', 1),
(119, 'Subaru WRX', 'subwrx', 'Subaru ', 'Subaru ', 129000, 0, 5, 'classic',
'https://cdn.discordapp.com/attachments/980826702643077160/1057654442280894545/
OIP.jpg', 1),
(120, 'Subaru SVX', 'svx', 'Subaru ', 'Subaru ', 65000, 0, 5, 'classic',
'https://cdn.discordapp.com/attachments/980826702643077160/1057654477693390918/
OIP.jpg', 1),
(121, 'Suzuki', 'gsxr19', 'Suzuki', 'Suzuki', 200000, 0, 5, 'classic',
'https://cdn.discordapp.com/attachments/980826702643077160/1057654556856700998/
OIP.jpg', 1),
(122, 'Tesla S', 'models', 'Tesla ', 'Tesla ', 2000000, 0, 4, 'classic',
'https://cdn.discordapp.com/attachments/980826702643077160/1057654607188336700/
OIP.jpg', 1),
(123, 'Tesla X', 'p90d', 'Tesla ', 'Tesla ', 2500000, 0, 5, 'classic',
'https://cdn.discordapp.com/attachments/980826702643077160/1057654665304608828/
download.jpg', 1),
(124, 'Tesla T', 'tmodel', 'Tesla ', 'Tesla ', 1950000, 0, 5, 'classic',
'https://cdn.discordapp.com/attachments/980826702643077160/1057654715472674866/
download.jpg', 1),
(125, 'Tesla TR', 'tr22', 'Tesla ', 'Tesla ', 3000000, 0, 4, 'classic',
'https://cdn.discordapp.com/attachments/980826702643077160/1057654756744626236/
OIP.jpg', 1),
(126, 'Toyota Apex', 'ae86', 'Toyota ', 'Toyota ', 65000, 0, 5, 'classic',
'https://cdn.discordapp.com/attachments/980826702643077160/1057654838311272458/
download.jpg', 1),
(127, 'Toyota Cam', 'cam8tun', 'Toyota ', 'Toyota ', 95000, 0, 5, 'classic',
'https://cdn.discordapp.com/attachments/980826702643077160/1057654933404516432/
OIP.jpg', 1),
(128, 'Toyota MK', 'mk21000', 'Toyota ', 'Toyota ', 69000, 0, 5, 'classic',
'https://cdn.discordapp.com/attachments/980826702643077160/1057655019933012008/
OIP.jpg', 1),
(129, 'Toyota Supra', 'toysupmk4', 'Toyota ', 'Toyota ', 200000, 0, 4,
'classic',
'https://cdn.discordapp.com/attachments/980826702643077160/1057655064250028042/
download.jpg', 1),
(130, 'Toyota VX', 'vxr', 'Toyota ', 'Toyota ', 175000, 0, 5, 'classic',
'https://cdn.discordapp.com/attachments/980826702643077160/1057655123184193676/
OIP.jpg', 1),
(131, 'VW Amarok', 'amarok', 'VW', 'VW', 275000, 0, 4, 'classic',
'https://cdn.discordapp.com/attachments/980826702643077160/1057655186367193118/
OIP.jpg', 1),
(132, 'Golf 8GTI', 'golf8gti', 'VW', 'VW', 175000, 0, 5, 'classic',
'https://cdn.discordapp.com/attachments/980826702643077160/1057655239379009616/
OIP.jpg', 1),
(133, 'Golf 7GTI', 'golf7gti', 'VW', 'VW', 150000, 0, 5, 'classic',
'https://cdn.discordapp.com/attachments/980826702643077160/1057655331800489994/
OIP.jpg', 1),
(134, 'Passat', 'passat', 'VW', 'VW', 135000, 0, 5, 'classic',
'https://cdn.discordapp.com/attachments/980826702643077160/1057655371830935642/
OIP.jpg', 1),
(135, 'Volvo XC90', 'xc90', 'Volvo', 'Volvo', 300000, 0, 4, 'classic',
'https://cdn.discordapp.com/attachments/980826702643077160/1057655466588635167/
download.jpg', 1),
(136, 'Bugatti Bolide', 'bolide', 'Vip', 'Vip', 2147483647, 15, 5, 'vip',
'https://cdn.discordapp.com/attachments/980826702643077160/1059154108675793008/
Z.png', 1),
(137, 'Dodge Raid', 'raid', 'Vip', 'Vip', 2147483647, 5, 5, 'vip',
'https://cdn.discordapp.com/attachments/980826702643077160/1059153940211581008/2Q.p
ng', 1),
(138, 'Ferrari fxxk', 'fxxk', 'Vip', 'Vip', 2147483647, 15, 5, 'vip',
'https://cdn.discordapp.com/attachments/980826702643077160/1059154222664396840/2Q.p
ng', 1),
(139, 'Ital Design', 'it18', 'Vip', 'Vip', 2147483647, 10, 5, 'vip',
'https://cdn.discordapp.com/attachments/980826702643077160/1059154488037998642/9k.p
ng', 1),
(140, 'Koenigsegg Agera Rs', 'agerars', 'Vip', 'Vip', 2147483647, 15, 5,
'vip',
'https://cdn.discordapp.com/attachments/980826702643077160/1059154909162913823/9k.p
ng', 1),
(141, 'Koenigsegg Regera', 'regera', 'Vip', 'Vip', 2147483647, 15, 5, 'vip',
'https://cdn.discordapp.com/attachments/980826702643077160/1059155104823005204/2Q.p
ng', 1),
(142, 'Lamborghini SVJ63', 'svj63', 'Vip', 'Vip', 2147483647, 15, 5, 'vip',
'https://cdn.discordapp.com/attachments/980826702643077160/1059155255511765112/
Z.png', 1),
(143, 'Lamborghini Veneno', 'veneno', 'Vip', 'Vip', 2147483647, 15, 5,
'vip',
'https://cdn.discordapp.com/attachments/980826702643077160/1059155339150376970/2Q.p
ng', 1),
(144, 'McLaren 675LT', '675lt', 'Vip', 'Vip', 2147483647, 10, 5, 'vip',
'https://cdn.discordapp.com/attachments/980826702643077160/1059156022150836324/9k.p
ng', 1),
(145, 'McLaren GTR96', 'gtr96', 'Vip', 'Vip', 2147483647, 15, 5, 'vip',
'https://cdn.discordapp.com/attachments/980826702643077160/1059156511936491520/9k.p
ng', 1),
(146, 'SpeedTail', 'mcst', 'Vip', 'Vip', 2147483647, 10, 5, 'vip',
'https://cdn.discordapp.com/attachments/980826702643077160/1059156684989272164/2Q.p
ng', 1),
(147, 'Nissan 350', 'ns350 ', 'Vip', 'Vip', 2147483647, 10, 5, 'vip',
'https://cdn.discordapp.com/attachments/980826702643077160/1059157271625609297/2Q.p
ng', 1),
(148, 'Porsche', 'maj935 ', 'Vip', 'Vip', 2147483647, 10, 5, 'vip',
'https://cdn.discordapp.com/attachments/980826702643077160/1059157523187368027/9k.p
ng', 1),
(149, 'teslapd ', 'teslapd ', 'Vip', 'Vip', 2147483647, 10, 5, 'vip',
'https://cdn.discordapp.com/attachments/980826702643077160/1059157911995170816/2Q.p
ng', 1),
(543, NULL, 'lp670sv', NULL, NULL, NULL, 0, 0, 'classic',
'https://www.publicdomainpictures.net/pictures/280000/velka/not-found-image-
15383864787lu.jpg', 1),
(544, NULL, 'bbentayga', NULL, NULL, NULL, 0, 0, 'classic',
'https://www.publicdomainpictures.net/pictures/280000/velka/not-found-image-
15383864787lu.jpg', 1),
(545, NULL, '15tahoe', NULL, NULL, NULL, 0, 0, 'classic',
'https://www.publicdomainpictures.net/pictures/280000/velka/not-found-image-
15383864787lu.jpg', 1),
(546, NULL, 'g65', NULL, NULL, NULL, 0, 0, 'classic',
'https://www.publicdomainpictures.net/pictures/280000/velka/not-found-image-
15383864787lu.jpg', 1),
(547, NULL, 'audquattros', NULL, NULL, NULL, 0, 0, 'classic',
'https://www.publicdomainpictures.net/pictures/280000/velka/not-found-image-
15383864787lu.jpg', 1),
(548, NULL, 'mk2100', NULL, NULL, NULL, 0, 0, 'classic',
'https://www.publicdomainpictures.net/pictures/280000/velka/not-found-image-
15383864787lu.jpg', 1);

-- Dumping structure for table sokac.wavebite_ban


CREATE TABLE IF NOT EXISTS `wavebite_ban` (
`license` varchar(50) NOT NULL,
`identifier` varchar(25) DEFAULT NULL,
`liveid` varchar(21) DEFAULT NULL,
`xblid` varchar(21) DEFAULT NULL,
`discord` varchar(30) DEFAULT NULL,
`playerip` varchar(25) DEFAULT NULL,
`targetplayername` varchar(32) DEFAULT NULL,
`sourceplayername` varchar(32) DEFAULT NULL,
`reason` varchar(255) NOT NULL,
`timeat` varchar(50) NOT NULL,
`expiration` varchar(50) NOT NULL,
`permanent` int(1) NOT NULL DEFAULT 0,
PRIMARY KEY (`license`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_bin;

-- Dumping data for table sokac.wavebite_ban: ~0 rows (approximately)

-- Dumping structure for table sokac.whatsapp_accounts


CREATE TABLE IF NOT EXISTS `whatsapp_accounts` (
`id` varchar(100) NOT NULL,
`name` varchar(50) NOT NULL,
`phone` varchar(50) NOT NULL,
`password` varchar(50) NOT NULL,
`avatar` text NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci;

-- Dumping data for table sokac.whatsapp_accounts: ~0 rows (approximately)

-- Dumping structure for table sokac.whatsapp_chats


CREATE TABLE IF NOT EXISTS `whatsapp_chats` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`phone` varchar(50) NOT NULL,
`number` varchar(50) NOT NULL,
`created` varchar(50) NOT NULL,
`messages` text NOT NULL,
PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=43 DEFAULT CHARSET=utf8mb4
COLLATE=utf8mb4_general_ci;

-- Dumping data for table sokac.whatsapp_chats: ~0 rows (approximately)

-- Dumping structure for table sokac.whatsapp_chats_messages


CREATE TABLE IF NOT EXISTS `whatsapp_chats_messages` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`id_chat` int(11) NOT NULL,
`owner` varchar(50) NOT NULL,
`type` varchar(50) NOT NULL,
`created` varchar(50) NOT NULL,
`message` mediumtext NOT NULL,
`readed` int(1) NOT NULL,
PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci;

-- Dumping data for table sokac.whatsapp_chats_messages: ~0 rows (approximately)

-- Dumping structure for table sokac.whatsapp_groups


CREATE TABLE IF NOT EXISTS `whatsapp_groups` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`phone` varchar(50) NOT NULL,
`number` varchar(50) NOT NULL,
`type` varchar(50) NOT NULL,
`name` varchar(50) NOT NULL,
`image` text NOT NULL,
`created` varchar(50) NOT NULL,
PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=8 DEFAULT CHARSET=utf8mb4
COLLATE=utf8mb4_general_ci;

-- Dumping data for table sokac.whatsapp_groups: ~0 rows (approximately)

-- Dumping structure for table sokac.whatsapp_groups_messages


CREATE TABLE IF NOT EXISTS `whatsapp_groups_messages` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`id_group` varchar(50) NOT NULL,
`owner` varchar(50) NOT NULL,
`type` varchar(50) NOT NULL,
`message` text NOT NULL,
`created` varchar(50) NOT NULL,
`read` int(11) NOT NULL,
`name` varchar(50) NOT NULL,
PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci;

-- Dumping data for table sokac.whatsapp_groups_messages: ~0 rows (approximately)

-- Dumping structure for table sokac.whatsapp_groups_users


CREATE TABLE IF NOT EXISTS `whatsapp_groups_users` (
`number_group` varchar(50) NOT NULL,
`admin` int(11) NOT NULL,
`phone` varchar(50) NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci;

-- Dumping data for table sokac.whatsapp_groups_users: ~0 rows (approximately)

-- Dumping structure for table sokac.whatsapp_stories


CREATE TABLE IF NOT EXISTS `whatsapp_stories` (
`phone` varchar(50) NOT NULL,
`image` text NOT NULL,
`created` varchar(50) NOT NULL,
`description` varchar(50) DEFAULT NULL,
`location` varchar(50) DEFAULT NULL,
`filter` varchar(50) DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci;

-- Dumping data for table sokac.whatsapp_stories: ~0 rows (approximately)

/*!40103 SET TIME_ZONE=IFNULL(@OLD_TIME_ZONE, 'system') */;


/*!40101 SET SQL_MODE=IFNULL(@OLD_SQL_MODE, '') */;
/*!40014 SET FOREIGN_KEY_CHECKS=IFNULL(@OLD_FOREIGN_KEY_CHECKS, 1) */;
/*!40101 SET CHARACTER_SET_CLIENT=@OLD_CHARACTER_SET_CLIENT */;
/*!40111 SET SQL_NOTES=IFNULL(@OLD_SQL_NOTES, 1) */;s49092_luxjeotac

You might also like