· 6 years ago · Aug 23, 2019, 04:08 PM
1-- phpMyAdmin SQL Dump
2-- version 4.0.4.1
3-- http://www.phpmyadmin.net
4--
5-- Host: 127.0.0.1
6-- Generation Time: Sep 20, 2014 at 06:00 AM
7-- Server version: 5.5.32
8-- PHP Version: 5.4.16
9
10SET SQL_MODE = "NO_AUTO_VALUE_ON_ZERO";
11SET time_zone = "+00:00";
12
13
14/*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */;
15/*!40101 SET @OLD_CHARACTER_SET_RESULTS=@@CHARACTER_SET_RESULTS */;
16/*!40101 SET @OLD_COLLATION_CONNECTION=@@COLLATION_CONNECTION */;
17/*!40101 SET NAMES utf8 */;
18
19--
20-- Database: `scrp`
21--
22CREATE DATABASE IF NOT EXISTS `scrp` DEFAULT CHARACTER SET latin1 COLLATE latin1_swedish_ci;
23USE `scrp`;
24
25-- --------------------------------------------------------
26
27--
28-- Table structure for table `accounts`
29--
30
31CREATE TABLE IF NOT EXISTS `accounts` (
32 `ID` int(12) NOT NULL AUTO_INCREMENT,
33 `Username` varchar(24) DEFAULT NULL,
34 `Password` varchar(129) DEFAULT NULL,
35 `RegisterDate` varchar(36) DEFAULT NULL,
36 `LoginDate` varchar(36) DEFAULT NULL,
37 `IP` varchar(16) DEFAULT 'n/a',
38 PRIMARY KEY (`ID`)
39) ENGINE=InnoDB DEFAULT CHARSET=latin1 AUTO_INCREMENT=1 ;
40
41-- --------------------------------------------------------
42
43--
44-- Table structure for table `arrestpoints`
45--
46
47CREATE TABLE IF NOT EXISTS `arrestpoints` (
48 `arrestID` int(11) NOT NULL AUTO_INCREMENT,
49 `arrestX` float NOT NULL,
50 `arrestY` float NOT NULL,
51 `arrestZ` float NOT NULL,
52 `arrestInterior` int(11) NOT NULL,
53 `arrestWorld` int(11) NOT NULL,
54 PRIMARY KEY (`arrestID`)
55) ENGINE=InnoDB DEFAULT CHARSET=latin1 AUTO_INCREMENT=1 ;
56
57-- --------------------------------------------------------
58
59--
60-- Table structure for table `atm`
61--
62
63CREATE TABLE IF NOT EXISTS `atm` (
64 `atmID` int(11) NOT NULL,
65 `atmX` float NOT NULL,
66 `atmY` float NOT NULL,
67 `atmZ` float NOT NULL,
68 `atmInterior` int(11) NOT NULL,
69 `atmWorld` int(11) NOT NULL
70) ENGINE=InnoDB DEFAULT CHARSET=latin1;
71
72-- --------------------------------------------------------
73
74--
75-- Table structure for table `backpackitems`
76--
77
78CREATE TABLE IF NOT EXISTS `backpackitems` (
79 `ID` int(12) DEFAULT '0',
80 `itemID` int(12) NOT NULL AUTO_INCREMENT,
81 `itemName` varchar(32) DEFAULT NULL,
82 `itemModel` int(12) DEFAULT '0',
83 `itemQuantity` int(12) DEFAULT '0',
84 PRIMARY KEY (`itemID`)
85) ENGINE=InnoDB DEFAULT CHARSET=latin1 AUTO_INCREMENT=1 ;
86
87-- --------------------------------------------------------
88
89--
90-- Table structure for table `backpacks`
91--
92
93CREATE TABLE IF NOT EXISTS `backpacks` (
94 `backpackID` int(12) NOT NULL AUTO_INCREMENT,
95 `backpackPlayer` int(12) DEFAULT '0',
96 `backpackX` float DEFAULT '0',
97 `backpackY` float DEFAULT '0',
98 `backpackZ` float DEFAULT '0',
99 `backpackInterior` int(12) DEFAULT '0',
100 `backpackWorld` int(12) DEFAULT '0',
101 `backpackHouse` int(12) DEFAULT '0',
102 `backpackVehicle` int(12) DEFAULT '0',
103 PRIMARY KEY (`backpackID`)
104) ENGINE=InnoDB DEFAULT CHARSET=latin1 AUTO_INCREMENT=1 ;
105
106-- --------------------------------------------------------
107
108--
109-- Table structure for table `billboards`
110--
111
112CREATE TABLE IF NOT EXISTS `billboards` (
113 `bbID` int(12) NOT NULL AUTO_INCREMENT,
114 `bbExists` int(12) DEFAULT '0',
115 `bbName` varchar(32) DEFAULT NULL,
116 `bbOwner` int(12) NOT NULL DEFAULT '0',
117 `bbPrice` int(12) NOT NULL DEFAULT '0',
118 `bbRange` int(12) DEFAULT '10',
119 `bbPosX` float DEFAULT '0',
120 `bbPosY` float DEFAULT '0',
121 `bbPosZ` float DEFAULT '0',
122 `bbMessage` varchar(230) DEFAULT NULL,
123 PRIMARY KEY (`bbID`)
124) ENGINE=InnoDB DEFAULT CHARSET=latin1 AUTO_INCREMENT=1 ;
125
126-- --------------------------------------------------------
127
128--
129-- Table structure for table `blacklist`
130--
131
132CREATE TABLE IF NOT EXISTS `blacklist` (
133 `IP` varchar(16) DEFAULT '0.0.0.0',
134 `Username` varchar(24) DEFAULT NULL,
135 `BannedBy` varchar(24) DEFAULT NULL,
136 `Reason` varchar(128) DEFAULT NULL,
137 `Date` varchar(36) DEFAULT NULL
138) ENGINE=InnoDB DEFAULT CHARSET=latin1;
139
140-- --------------------------------------------------------
141
142--
143-- Table structure for table `businesses`
144--
145
146CREATE TABLE IF NOT EXISTS `businesses` (
147 `bizID` int(12) NOT NULL AUTO_INCREMENT,
148 `bizName` varchar(32) DEFAULT NULL,
149 `bizOwner` int(12) DEFAULT '0',
150 `bizType` int(12) DEFAULT '0',
151 `bizPrice` int(12) DEFAULT '0',
152 `bizPosX` float DEFAULT '0',
153 `bizPosY` float DEFAULT '0',
154 `bizPosZ` float DEFAULT '0',
155 `bizPosA` float DEFAULT '0',
156 `bizIntX` float DEFAULT '0',
157 `bizIntY` float DEFAULT '0',
158 `bizIntZ` float DEFAULT '0',
159 `bizIntA` float DEFAULT '0',
160 `bizInterior` int(12) DEFAULT '0',
161 `bizExterior` int(12) DEFAULT '0',
162 `bizExteriorVW` int(12) DEFAULT '0',
163 `bizLocked` int(4) DEFAULT '0',
164 `bizVault` int(12) DEFAULT '0',
165 `bizProducts` int(12) DEFAULT '0',
166 `bizPrice1` int(12) DEFAULT '0',
167 `bizPrice2` int(12) DEFAULT '0',
168 `bizPrice3` int(12) DEFAULT '0',
169 `bizPrice4` int(12) DEFAULT '0',
170 `bizPrice5` int(12) DEFAULT '0',
171 `bizPrice6` int(12) DEFAULT '0',
172 `bizPrice7` int(12) DEFAULT '0',
173 `bizPrice8` int(12) DEFAULT '0',
174 `bizPrice9` int(12) DEFAULT '0',
175 `bizPrice10` int(12) DEFAULT '0',
176 `bizSpawnX` float DEFAULT '0',
177 `bizSpawnY` float DEFAULT '0',
178 `bizSpawnZ` float DEFAULT '0',
179 `bizSpawnA` float DEFAULT '0',
180 `bizDeliverX` float DEFAULT '0',
181 `bizDeliverY` float DEFAULT '0',
182 `bizDeliverZ` float DEFAULT '0',
183 `bizMessage` varchar(128) DEFAULT NULL,
184 `bizPrice11` int(12) DEFAULT '0',
185 `bizPrice12` int(12) DEFAULT '0',
186 `bizPrice13` int(12) DEFAULT '0',
187 `bizPrice14` int(12) DEFAULT '0',
188 `bizPrice15` int(12) DEFAULT '0',
189 `bizPrice16` int(12) DEFAULT '0',
190 `bizPrice17` int(12) DEFAULT '0',
191 `bizPrice18` int(12) DEFAULT '0',
192 `bizPrice19` int(12) DEFAULT '0',
193 `bizPrice20` int(12) DEFAULT '0',
194 `bizShipment` int(4) DEFAULT '0',
195 PRIMARY KEY (`bizID`)
196) ENGINE=InnoDB DEFAULT CHARSET=latin1 AUTO_INCREMENT=101 ;
197
198--
199-- Dumping data for table `businesses`
200--
201
202INSERT INTO `businesses` (`bizID`, `bizName`, `bizOwner`, `bizType`, `bizPrice`, `bizPosX`, `bizPosY`, `bizPosZ`, `bizPosA`, `bizIntX`, `bizIntY`, `bizIntZ`, `bizIntA`, `bizInterior`, `bizExterior`, `bizExteriorVW`, `bizLocked`, `bizVault`, `bizProducts`, `bizPrice1`, `bizPrice2`, `bizPrice3`, `bizPrice4`, `bizPrice5`, `bizPrice6`, `bizPrice7`, `bizPrice8`, `bizPrice9`, `bizPrice10`, `bizSpawnX`, `bizSpawnY`, `bizSpawnZ`, `bizSpawnA`, `bizDeliverX`, `bizDeliverY`, `bizDeliverZ`, `bizMessage`, `bizPrice11`, `bizPrice12`, `bizPrice13`, `bizPrice14`, `bizPrice15`, `bizPrice16`, `bizPrice17`, `bizPrice18`, `bizPrice19`, `bizPrice20`, `bizShipment`) VALUES
203(16, 'Idlewood Gas Sation', 420, 6, 1, 1929.49, -1776.3, 13.5466, 89.5102, -27.3383, -57.6907, 1003.55, 0, 6, 0, 0, 0, 49300, 1862, 75, 115, 15, 90, 3, 2, 10, 90, 20, 10, 1929.49, -1776.3, 13.5466, 89.5102, 1919.58, -1789.66, 13.3905, 'Welcome to Idlewood Gas Station.', 140, 150, 50, 40, 5, 10, 5, 0, 0, 0, 0),
204(32, 'Pizzeria Mozza', 17, 4, 1, 1555.54, -1199.99, 20.0235, 358.303, -794.936, 489.772, 1376.2, 1.8946, 1, 0, 0, 0, 818, 1256, 3, 6, 7, 12, 12, 13, 13, 0, 0, 0, 1632.1, -1199.95, 19.7807, 353.341, 1492.83, -1155.99, 23.9139, 'Welcome to Pizzeria Mozza!', 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0),
205(37, 'Jeffersons'' Autos', 99999999, 5, 1410065407, 2131.8, -1151.32, 24.0599, 181.047, 1494.56, 1304.21, 1093.29, 0, 3, 0, 0, 0, 343440, 100, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2146.89, -1148.41, 24.4029, 268.636, 0, 0, 0, '', 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0),
206(41, 'Snow''s Seven Eleven', 438, 1, 1, 1833.38, -1842.58, 13.5781, 81.6912, 161.314, -96.3802, 1001.8, 182.657, 18, 0, 0, 0, 549, 1410064358, 75, 125, 15, 100, 3, 2, 10, 100, 20, 10, 1833.38, -1842.58, 13.5781, 81.6912, 0, 0, 0, 'Welcome to Snow''s Seven Eleven.', 150, 200, 160, 60, 50, 5, 10, 5, 0, 0, 0),
207(47, 'Willowfield Ammunation', 99999999, 2, 1, 2400.39, -1981.99, 13.5466, 179.549, 316.396, -169.837, 999.601, 0, 6, 0, 0, 0, 134661, 421150, 50, 100, 200, 500, 700, 1000, 0, 0, 0, 0, 2400.39, -1981.99, 13.5466, 179.549, 634.33, -508.829, 16.3358, '', 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0),
208(57, 'Rathery''s Clothing Shop', 74, 3, 0, 2244.26, -1665.53, 15.4764, 340.723, 161.48, -96.5363, 1001.8, 0, 18, 0, 0, 0, 861, 12354, 40, 21, 10, 10, 0, 0, 0, 0, 0, 0, 2244.26, -1665.53, 15.4764, 340.723, 2237.77, -1663.7, 15.4764, 'Welcome to Rathery''s clothing shop the cheapest one in town.', 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0),
209(60, 'Echo Parque 24/7', 214, 1, 45, 2081.52, -1202.49, 23.9162, 273.856, -25.8283, -187.481, 1003.55, 358.289, 17, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 2081.52, -1202.49, 23.9162, 273.856, 2097.12, -1195.83, 23.8596, '', 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0),
210(61, 'Pizza Stack (Idlewood)', 231, 4, 37000, 2105.4, -1806.54, 13.5545, 270.32, 372.414, -133.22, 1001.49, 354.584, 5, 0, 0, 0, 802, 4771, 3, 5, 13, 13, 15, 20, 17, 0, 0, 0, 2105.48, -1806.63, 13.5544, 274.225, 2096.86, -1807.04, 13.5529, '', 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0),
211(62, 'Brooks'' Autos''', 36, 5, 250000, 1083.01, -1226.51, 15.8203, 95.7052, -2158.66, 643.142, 1052.38, 3.2943, 1, 0, 0, 0, 0, 100, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1097.28, -1241.78, 15.8203, 270.832, 0, 0, 0, '', 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0),
212(63, 'Ideal Homes Store', 1282, 7, 30000, 2351.6, -1412.13, 23.9923, 270.439, -2240.5, 128.377, 1035.42, 270, 6, 0, 0, 0, 0, 0, 100, 100, 100, 100, 100, 100, 100, 100, 100, 10, 2351.6, -1412.13, 23.9923, 270.439, 0, 0, 0, 'Welcome to Ideal Homes Store!', 140, 190, 150, 60, 50, 5, 10, 5, 0, 0, 0),
213(64, 'Mongols MC''s Bike Dealership', 297, 5, 1, 987.626, -1349.18, 13.5839, 81.3843, 1494.56, 1304.21, 1093.29, 0, 3, 0, 0, 0, 21764, 100, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 990.406, -1353.42, 13.3704, 260.758, 0, 0, 0, 'Best prices for the best bikes!', 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0),
214(65, 'The Mongol''s MC club-house', 8, 4, 1, 1008.84, -1295.73, 13.5466, 348.179, 501.66, -67.5671, 998.758, 181.026, 11, 0, 0, 0, 947, 0, 2, 5, 5, 10, 10, 15, 10, 0, 0, 0, 1008.84, -1295.73, 13.5466, 348.179, 0, 0, 0, '', 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0),
215(67, 'Under Construction', 390, 6, 20000, 661.363, -573.407, 16.3358, 270.41, -25.6979, -188.25, 1003.55, 0.5993, 17, 0, 0, 0, 100, 90, 75, 115, 15, 90, 3, 2, 10, 90, 20, 10, 661.363, -573.407, 16.3358, 270.41, 0, 0, 0, 'Welcome to Dillemore Gas Station', 140, 150, 50, 40, 5, 10, 5, 0, 0, 0, 0),
216(68, 'The welcome pump', 570, 1, 15000, 681.601, -473.346, 16.5361, 0.2818, -227.028, 1401.23, 27.7656, 349.899, 18, 0, 0, 0, 170, 98, 75, 125, 15, 100, 3, 2, 10, 100, 20, 10, 681.601, -473.346, 16.5361, 0.2818, 0, 0, 0, '', 150, 200, 160, 60, 50, 5, 10, 5, 0, 0, 0),
217(69, 'Local General Store', 0, 1, 25000, 691.857, -583.62, 16.3358, 265.886, -27.3073, -30.874, 1003.56, 0, 4, 0, 0, 0, 0, 157, 75, 125, 15, 100, 3, 2, 10, 100, 20, 10, 691.857, -583.62, 16.3358, 265.886, 710.88, -569.458, 16.3358, '', 150, 200, 160, 60, 50, 5, 10, 5, 0, 0, 0),
218(70, 'Dillimore Barbers', 0, 1, 6000, 672.086, -496.856, 16.3358, 91.1496, 418.653, -82.6397, 1001.8, 78.9293, 3, 0, 0, 1, 0, 220, 75, 125, 15, 100, 3, 2, 10, 100, 20, 10, 672.086, -496.856, 16.3358, 91.1496, 658.63, -499.877, 16.3358, '', 150, 200, 160, 60, 50, 5, 10, 5, 0, 0, 0),
219(71, 'Dillimore Binco', 0, 3, 25000, 672.064, -505.434, 16.3358, 93.1744, 161.391, -93.1591, 1001.8, 93.1744, 18, 0, 0, 0, 0, 85, 25, 15, 10, 10, 0, 0, 0, 0, 0, 0, 672.064, -505.434, 16.3358, 93.1744, 655.097, -500.75, 16.3358, '', 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0),
220(72, 'Burger Shot', 6, 4, 7000, 670.971, -519.353, 16.3358, 43.2324, 363.371, -74.5755, 1001.51, 319.838, 10, 0, 0, 0, 211, 49, 3, 7, 8, 15, 20, 15, 10, 0, 0, 0, 670.971, -519.353, 16.3358, 43.2324, 0, 0, 0, 'Welcome to Burger Shot! Enjoy your stay!', 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0),
221(74, 'Strawton''s Ammunation', 180, 2, 150000, 691.361, -614.229, 16.3358, 275.559, 316.396, -169.837, 999.601, 0, 6, 0, 0, 0, 0, 98, 50, 100, 200, 400, 600, 800, 10, 0, 0, 0, 691.361, -614.229, 16.3358, 275.559, 0, 0, 0, 'Strawton''s Ammunation.', 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0),
222(75, 'CheapPrice Restaurant', 28, 4, 13500, 2397.89, -1899.2, 13.5466, 179.116, 364.867, -10.6787, 1001.85, 324.504, 9, 0, 0, 0, 263, 241180, 2, 4, 7, 12, 12, 15, 10, 0, 0, 0, 2397.89, -1899.2, 13.5466, 179.116, 2391.01, -1886.2, 13.5466, 'Welcome to CheapPrice Restaurant - Enjoy the Cheap Price for your Meal.', 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0),
223(76, 'The Great Hall of Remorse', 105, 1, 9000, 940.621, -1085.28, 24.2961, 359.621, 947.875, 2176.76, 1011.02, 179.499, 1, 0, 0, 0, 1607, 57, 75, 125, 15, 100, 3, 2, 10, 100, 20, 10, 940.621, -1085.28, 24.2961, 359.621, 0, 0, 0, '', 150, 200, 160, 60, 50, 5, 10, 5, 0, 0, 0),
224(79, '98c 24/7', 2030, 1, 25000, 2424.12, -1922.09, 13.5481, 134.012, 773.839, -77.257, 1000.65, 3.0611, 7, 0, 0, 0, 3725, 0, 75, 125, 15, 100, 3, 2, 10, 100, 20, 10, 2424.12, -1922.09, 13.5481, 134.012, 0, 0, 0, 'Welcom to 98c 24/7 ', 150, 200, 160, 60, 50, 5, 10, 5, 0, 0, 0),
225(80, 'Rathery''s Bar.', 74, 1, 25000, 2310.06, -1643.51, 14.8268, 317.216, 501.759, -68.1277, 998.758, 178.263, 11, 0, 0, 0, 9, 62, 75, 125, 15, 100, 3, 2, 10, 100, 20, 10, 2310.06, -1643.51, 14.8268, 317.216, 0, 0, 0, 'Welcome to Rathery''s cheapest bar!', 150, 200, 160, 60, 50, 5, 10, 5, 0, 0, 0),
226(81, 'Ganton Barbers', 475, 1, 9500, 2265.07, -1670.38, 15.3591, 276.506, -27.3073, -30.874, 1003.56, 0, 4, 0, 0, 0, 1832, 63, 200, 300, 150, 100, 3, 2, 10, 500, 20, 10, 2265.07, -1670.38, 15.3591, 276.506, 0, 0, 0, '', 150, 200, 450, 60, 50, 5, 10, 5, 0, 0, 0),
227(82, 'Mexican & Salvadorean Food', 720, 4, 13500, 1949.3, -1985.11, 13.5466, 267.947, 681.427, -452.203, -25.617, 180.091, 1, 0, 0, 0, 350, 32, 2, 5, 5, 10, 10, 15, 10, 0, 0, 0, 1949.3, -1985.11, 13.5466, 267.947, 0, 0, 0, '~ Welcome to the M&D restaurant, eat well ~', 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0),
228(84, 'East Los Santos Cluckin'' Bell', 720, 4, 16000, 2420.1, -1509.14, 24, 270.522, 364.827, -9.857, 1001.85, 324.753, 9, 0, 0, 0, 667, 0, 2, 5, 5, 10, 10, 15, 10, 100, 20, 10, 2420.1, -1509.14, 24, 270.522, 0, 0, 0, '', 150, 200, 160, 60, 50, 5, 10, 5, 0, 0, 0),
229(85, 'Sal''s Bargen Deals', 1973, 1, 10000, 992.87, -1460.18, 13.5466, 91.7659, -2159.74, 642.329, 1052.38, 114.182, 1, 0, 0, 0, 795, 86, 75, 125, 15, 100, 3, 2, 10, 100, 20, 10, 992.87, -1460.18, 13.5466, 91.7659, 0, 0, 0, '', 150, 200, 160, 60, 50, 5, 10, 5, 0, 0, 0),
230(86, 'Washington Street Club', 195, 1, 25000, 2177.24, -1311.18, 23.9843, 236.068, 493.28, -24.3178, 1000.68, 357.956, 17, 0, 0, 0, 402, 2276, 75, 125, 15, 100, 3, 2, 10, 100, 20, 10, 2177.24, -1311.18, 23.9843, 236.068, 2179.14, -1340.73, 23.9843, '', 150, 150, 50, 60, 50, 5, 10, 5, 0, 0, 0),
231(87, 'Michael''s Towing Co.', 1211, 1, 7000, 972.484, -1479.95, 13.557, 178.509, -2159.12, 641.518, 1052.38, 178.509, 1, 0, 0, 0, 192, 96, 75, 125, 15, 100, 3, 2, 10, 100, 20, 10, 972.484, -1479.95, 13.557, 178.509, 0, 0, 0, '', 150, 200, 160, 60, 50, 5, 10, 5, 0, 0, 0),
232(88, 'Splash', 21, 1, 100000, 1219.15, -1811.7, 16.5937, 353.988, 1204.92, -13.5426, 1000.92, 354.783, 2, 0, 0, 1, 0, 100, 2, 5, 5, 10, 10, 15, 10, 0, 0, 0, 1219.15, -1811.7, 16.5937, 353.988, 0, 0, 0, '', 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0),
233(89, 'Brooks'' Autos''', 36, 5, 550000, 542.477, -1293.26, 17.242, 1.3135, 1494.56, 1304.21, 1093.29, 0, 3, 0, 0, 0, 22950, 100, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 538.555, -1284.21, 17.242, 320.86, 0, 0, 0, '', 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0),
234(90, 'Pig Pen', 0, 1, 30000, 2421.57, -1219.87, 25.5209, 175.15, 1205.32, -11.9039, 1000.92, 352.354, 2, 0, 0, 0, 301, 31, 5, 5, 15, 5, 3, 2, 1, 10, 5, 10, 2421.57, -1219.87, 25.5209, 175.15, 0, 0, 0, '', 2, 50, 50, 50, 50, 1, 10, 5, 0, 0, 0),
235(92, 'The Furniture Shop', 138, 7, 1, 1978.8, -1761.96, 13.5466, 182.708, -2240.5, 128.377, 1035.42, 270, 6, 0, 0, 0, 4608, 7369, 100, 115, 60, 70, 60, 30, 40, 100, 20, 10, 1978.8, -1761.96, 13.5466, 182.708, 1985.05, -1759.15, 13.5466, 'Hello, welcome to my Furniture Shop, make sure to buy everything you need.', 140, 190, 150, 60, 50, 5, 10, 5, 0, 0, 0),
236(93, 'Mercer Marijuana Distillery', 420, 1, 1, 2001.83, -1761.96, 13.5389, 182.751, -2158.73, 643.141, 1052.38, 190.97, 1, 0, 0, 0, 5258, 37, 75, 125, 15, 100, 3, 2, 10, 100, 20, 10, 2001.83, -1761.96, 13.5389, 182.751, 0, 0, 0, '', 150, 200, 160, 60, 50, 5, 10, 5, 0, 0, 0),
237(95, 'Seville 24/7', 99999999, 1, 13000, 2723.93, -2026.5, 13.5471, 265.929, -25.8843, -185.869, 1003.55, 265.929, 17, 0, 0, 0, 4635, 56, 75, 125, 15, 100, 3, 2, 10, 100, 20, 10, 2723.93, -2026.5, 13.5471, 265.929, 0, 0, 0, 'Welcome!', 150, 200, 160, 60, 50, 5, 10, 5, 0, 0, 0),
238(96, 'Ganton 24/7', 20, 1, 5000, 2424.09, -1742.62, 13.5438, 229.806, 6.0911, -29.2716, 1003.55, 229.806, 10, 0, 0, 0, 9020, 613, 75, 125, 15, 100, 3, 2, 10, 100, 20, 10, 2424.09, -1742.62, 13.5438, 229.806, 2445.48, -1759.3, 13.5909, 'Welcome To Ganton 24/7! This is the Best 24/7 in Los Santos!', 150, 200, 160, 60, 50, 5, 10, 5, 0, 0, 0),
239(97, 'Tony''s', 104, 4, 25000, 2129.93, -1761.65, 13.5625, 180.733, -228.881, 1401.39, 27.7656, 272.372, 18, 0, 0, 1, 0, 100, 2, 5, 5, 10, 10, 15, 10, 0, 0, 0, 2129.93, -1761.65, 13.5625, 180.733, 0, 0, 0, '', 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0),
240(98, 'Benny''s Diner', 47, 4, 1, 2348.45, -1962.68, 13.5466, 187.052, -228.568, 1401.32, 27.7656, 274.618, 18, 0, 0, 1, 43, 93, 2, 5, 5, 10, 10, 15, 10, 0, 0, 0, 2348.45, -1962.68, 13.5466, 187.052, 0, 0, 0, '*The diner would be a bona fide shithole. It would not be unclean, but it would not be a place you''d choose to go to.*', 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0),
241(99, 'Warehouse', 47, 1, 1, 2414.05, -1425.58, 23.9841, 265.331, 1076.53, 2078.36, 10.8203, 6.4917, 0, 0, 0, 1, 0, 100, 75, 125, 15, 100, 3, 2, 10, 100, 20, 10, 2414.05, -1425.58, 23.9841, 265.331, 0, 0, 0, '', 150, 200, 160, 60, 50, 5, 10, 5, 0, 0, 0),
242(100, 'Commerce Night Club', 105, 1, 21000, 1726.9, -1636.59, 20.2171, 181.81, 493.564, -23.2842, 1000.68, 1.8106, 17, 0, 0, 0, 2, 99, 75, 125, 15, 100, 3, 2, 10, 100, 20, 10, 1726.9, -1636.59, 20.2171, 181.81, 0, 0, 0, '', 150, 200, 160, 60, 50, 5, 10, 5, 0, 0, 0);
243
244-- --------------------------------------------------------
245
246--
247-- Table structure for table `cars`
248--
249
250CREATE TABLE IF NOT EXISTS `cars` (
251 `carID` int(12) NOT NULL AUTO_INCREMENT,
252 `carModel` int(12) DEFAULT '0',
253 `carOwner` int(12) DEFAULT '0',
254 `carPosX` float DEFAULT '0',
255 `carPosY` float DEFAULT '0',
256 `carPosZ` float DEFAULT '0',
257 `carPosR` float DEFAULT '0',
258 `carColor1` int(12) DEFAULT '0',
259 `carColor2` int(12) DEFAULT '0',
260 `carPaintjob` int(12) DEFAULT '-1',
261 `carLocked` int(4) DEFAULT '0',
262 `carMod1` int(12) DEFAULT '0',
263 `carMod2` int(12) DEFAULT '0',
264 `carMod3` int(12) DEFAULT '0',
265 `carMod4` int(12) DEFAULT '0',
266 `carMod5` int(12) DEFAULT '0',
267 `carMod6` int(12) DEFAULT '0',
268 `carMod7` int(12) DEFAULT '0',
269 `carMod8` int(12) DEFAULT '0',
270 `carMod9` int(12) DEFAULT '0',
271 `carMod10` int(12) DEFAULT '0',
272 `carMod11` int(12) DEFAULT '0',
273 `carMod12` int(12) DEFAULT '0',
274 `carMod13` int(12) DEFAULT '0',
275 `carMod14` int(12) DEFAULT '0',
276 `carImpounded` int(12) DEFAULT '0',
277 `carWeapon1` int(12) DEFAULT '0',
278 `carAmmo1` int(12) DEFAULT '0',
279 `carWeapon2` int(12) DEFAULT '0',
280 `carAmmo2` int(12) DEFAULT '0',
281 `carWeapon3` int(12) DEFAULT '0',
282 `carAmmo3` int(12) DEFAULT '0',
283 `carWeapon4` int(12) DEFAULT '0',
284 `carAmmo4` int(12) DEFAULT '0',
285 `carWeapon5` int(12) DEFAULT '0',
286 `carAmmo5` int(12) DEFAULT '0',
287 `carImpoundPrice` int(12) DEFAULT '0',
288 `carFaction` int(12) DEFAULT '0',
289 PRIMARY KEY (`carID`)
290) ENGINE=InnoDB DEFAULT CHARSET=latin1 AUTO_INCREMENT=241 ;
291
292--
293-- Dumping data for table `cars`
294--
295
296INSERT INTO `cars` (`carID`, `carModel`, `carOwner`, `carPosX`, `carPosY`, `carPosZ`, `carPosR`, `carColor1`, `carColor2`, `carPaintjob`, `carLocked`, `carMod1`, `carMod2`, `carMod3`, `carMod4`, `carMod5`, `carMod6`, `carMod7`, `carMod8`, `carMod9`, `carMod10`, `carMod11`, `carMod12`, `carMod13`, `carMod14`, `carImpounded`, `carWeapon1`, `carAmmo1`, `carWeapon2`, `carAmmo2`, `carWeapon3`, `carAmmo3`, `carWeapon4`, `carAmmo4`, `carWeapon5`, `carAmmo5`, `carImpoundPrice`, `carFaction`) VALUES
297(11, 541, 0, 1602.18, -1683.97, 5.8906, 89.4865, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1),
298(13, 541, 0, 1602.21, -1688.14, 5.8906, 86.265, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1),
299(14, 560, 0, 1601.37, -1691.89, 5.8906, 89.4116, 0, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1),
300(15, 560, 0, 1601.83, -1696.02, 5.8906, 84.9687, 0, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1),
301(16, 426, 0, 1602.31, -1700.22, 5.8906, 87.9125, 0, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1),
302(17, 426, 0, 1601.87, -1704.17, 5.8906, 87.3421, 0, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1),
303(18, 523, 0, 1602.67, -1710.49, 5.4633, 60.7625, 0, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1),
304(19, 523, 0, 1601.21, -1712.19, 5.4633, 20.2916, 0, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1),
305(20, 596, 0, 1595.47, -1710.98, 5.8906, 355.68, 0, 1, -1, 0, 0, 0, 0, 0, 0, 1010, 0, 0, 0, 0, 0, 0, 0, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1),
306(21, 596, 0, 1591.29, -1710.73, 5.8906, 356.049, 0, 1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1),
307(22, 596, 0, 1587.55, -1710.6, 5.8906, 359.608, 0, 1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1),
308(23, 596, 0, 1583.35, -1711.05, 5.8906, 359.609, 0, 1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1),
309(24, 596, 0, 1578.52, -1711.94, 5.8906, 0.5485, 0, 1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1),
310(25, 596, 0, 1574.46, -1711.02, 5.8906, 1.5116, 0, 1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1),
311(26, 597, 0, 1570.41, -1711.83, 5.8906, 358.748, 0, 1, -1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1),
312(27, 597, 0, 1565.65, -1711.57, 5.8906, 355.671, 0, 1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1),
313(28, 597, 0, 1560.48, -1711, 5.8906, 356.98, 0, 1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1),
314(31, 427, 0, 1544.46, -1684.5, 5.8906, 90.4437, 0, 1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1),
315(32, 427, 0, 1544.91, -1680.35, 6.0221, 90.3821, 0, 1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1),
316(33, 528, 0, 1544.28, -1676.22, 5.8906, 89.4535, 0, 1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1),
317(34, 490, 0, 1545.81, -1668.03, 6.0192, 88.6512, 0, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1),
318(35, 490, 0, 1545.74, -1672.05, 6.019, 88.6813, 0, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1),
319(36, 599, 0, 1585.51, -1671.8, 5.8921, 272.999, 0, 1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1),
320(37, 599, 0, 1585.43, -1667.66, 5.8922, 272.373, 0, 1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1),
321(52, 445, 94, 2684.6, -1990.52, 13.4336, 182.621, 0, 98, -1, 0, 0, 0, 0, 0, 0, 0, 0, 1078, 0, 0, 0, 0, 0, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0),
322(53, 579, 56, 2644.5, -2015.57, 13.4844, 358.672, 0, 6, -1, 0, 0, 0, 0, 0, 0, 0, 0, 1074, 0, 0, 0, 0, 0, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0),
323(54, 481, 127, 2441.4, -1346.12, 23.508, 177.334, 1, 1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0),
324(55, 463, 8, 1006.67, -1308.58, 12.9221, 180.435, 0, 0, -1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0),
325(56, 586, 8, 1004.78, -1308.53, 12.9027, 178.789, 0, 0, -1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0),
326(57, 482, 8, 985.279, -1255.28, 17.0909, 130.872, 0, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0),
327(58, 445, 17, 1522.14, -1194.72, 23.6399, 180.107, 84, 224, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0),
328(59, 413, 10, 1878.14, -2024.97, 13.5456, 358.806, 0, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0),
329(62, 579, 20, 1410.05, -1707.42, 13.4134, 269.578, 147, 147, -1, 0, 0, 0, 0, 0, 0, 1010, 0, 1074, 0, 1087, 0, 0, 0, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0),
330(63, 580, 150, 1910.41, -1118.29, 25.5484, 177.999, 119, 1, -1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0),
331(64, 421, 157, 1643.8, 758.89, 10.7028, 336.038, 0, 96, -1, 0, 0, 0, 0, 0, 0, 0, 0, 1078, 0, 0, 0, 0, 0, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0),
332(65, 410, 126, 2346.39, -1998.38, 13.0291, 179.344, 192, 192, -1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0),
333(66, 541, 104, 1354.36, -629.564, 108.758, 16.1246, 36, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0),
334(67, 405, 104, 1316.95, -642.525, 109.01, 19.668, 60, 64, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0),
335(68, 422, 3, 752.191, -495.479, 17.3157, 179.702, 3, 3, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0),
336(69, 405, 114, 538.555, -1284.21, 17.242, 320.86, 0, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0),
337(70, 414, 0, 2457.89, -2117.29, 13.5529, 357.777, 0, 3, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0),
338(71, 414, 0, 2464.91, -2116.77, 13.5468, 0.2668, 0, 3, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0),
339(72, 414, 0, 2472.18, -2116.59, 13.5468, 359.438, 4, 4, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0),
340(73, 414, 0, 2479.06, -2116.44, 13.5468, 352.896, 3, 3, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0),
341(74, 414, 0, 2487.6, -2116.92, 13.5468, 2.5369, 41, 14, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0),
342(75, 567, 165, 1793.49, -2130.48, 13.3199, 359.208, 0, 3, 255, 1, 0, 0, 0, 1133, 0, 0, 0, 1077, 0, 1087, 0, 0, 0, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0),
343(76, 421, 169, 1696.8, -2082.42, 13.4293, 180.832, 0, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0),
344(78, 468, 148, 2463.69, -1408.07, 28.5008, 88.7416, 0, 0, -1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0),
345(79, 481, 148, 2463.91, -1405.7, 28.3477, 92.9924, 6, 45, -1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0),
346(80, 603, 171, 1911.49, -1854.91, 14.5611, 340.12, 6, 127, -1, 0, 0, 0, 0, 0, 1024, 0, 0, 0, 0, 0, 0, 0, 0, 1145, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0),
347(81, 481, 195, 2192.25, -1351.7, 25.1205, 63.7859, 0, 0, -1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0),
348(82, 566, 195, 2183.93, -1350.72, 25.3733, 269.299, 0, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0),
349(83, 521, 195, 2182.17, -1308.85, 23.5432, 79.7968, 0, 0, -1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0),
350(84, 445, 97, 2583.36, -1262.18, 46.1897, 269.63, 1, 1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0),
351(85, 565, 176, 2431.49, -1109.17, 42.0563, 182.812, 0, 0, -1, 1, 0, 0, 0, 0, 0, 1010, 0, 1080, 0, 0, 0, 0, 0, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0),
352(86, 481, 88, 2161.07, -1153.12, 23.8855, 271.143, 1, 1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0),
353(87, 426, 176, 2431.55, -1114.75, 42.2142, 180.7, 0, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0),
354(88, 481, 214, 2144.75, -1320.05, 25.2595, 93.4137, 3, 3, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0),
355(89, 405, 223, 2228.81, -1156.02, 25.6975, 267.58, 32, 32, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0),
356(90, 576, 13, 1903.4, -2058.33, 13.0645, 89.989, 2, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0),
357(91, 576, 165, 1793.11, -2147.94, 13.1422, 0.6724, 79, 1, 255, 1, 0, 0, 0, 0, 0, 0, 0, 1077, 0, 1087, 0, 0, 0, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0),
358(92, 412, 165, 1799.05, -2138.93, 13.2856, 87.9045, 17, 1, -1, 1, 0, 0, 0, 0, 0, 0, 0, 1078, 0, 1087, 0, 0, 0, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0),
359(93, 580, 11, 1911.63, -1986.16, 13.343, 180.19, 79, 1, -1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0),
360(94, 567, 222, 2529.25, -2006.6, 13.8161, 89.1629, 126, 110, 0, 0, 0, 0, 1130, 1133, 0, 1010, 1129, 1098, 0, 1087, 1188, 1186, 0, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0),
361(95, 475, 240, 1878.35, -2056.98, 13.2198, 88.0783, 79, 1, -1, 1, 0, 0, 0, 0, 0, 1010, 0, 1074, 0, 1087, 0, 0, 0, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0),
362(96, 418, 28, 1912.79, -1607.64, 13.5543, 89.9819, 56, 39, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0),
363(97, 522, 28, 2266.87, -1884.93, 13.1079, 89.277, 7, 7, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0),
364(98, 402, 262, 1088.09, -641.946, 113.062, 270.763, 0, 42, -1, 1, 0, 0, 0, 0, 0, 1010, 0, 1074, 0, 0, 0, 0, 0, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0),
365(99, 559, 262, 1105.75, -637.511, 110.781, 52.9085, 68, 67, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0),
366(100, 579, 262, 1088.13, -635.891, 113.016, 272.553, 13, 20, -1, 1, 0, 0, 0, 0, 0, 0, 0, 1074, 0, 0, 0, 0, 0, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0),
367(101, 566, 166, 1886.71, -2030.82, 13.0754, 359.353, 0, 1, -1, 1, 0, 0, 0, 0, 0, 0, 0, 1078, 0, 1087, 0, 0, 0, 0, -1, 5, 203, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0),
368(102, 566, 310, 2485.47, -2037.91, 13.3325, 91.4102, 3, 3, -1, 0, 0, 0, 0, 0, 0, 1010, 0, 1078, 0, 1087, 0, 0, 0, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0),
369(103, 421, 286, 2017.32, -1707.78, 13.4293, 89.3404, 3, 3, -1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0),
370(104, 481, 286, 2016.43, -1701.59, 13.0621, 90.927, 6, 6, -1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0),
371(106, 463, 36, 997.617, -1308.03, 12.9173, 171.692, 198, 198, -1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0),
372(107, 401, 317, 2017.19, -1648.46, 13.3303, 93.3445, 43, 1, -1, 0, 1003, 1005, 1006, 1007, 1013, 0, 1019, 1078, 0, 0, 0, 0, 0, 1143, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0),
373(109, 468, 30, 2502.18, -1063.45, 69.805, 86.9338, 78, 90, -1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0),
374(110, 585, 30, 2498.25, -1059.38, 69.3142, 354.656, 54, 107, -1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0),
375(111, 426, 6, 970.893, -1256.56, 16.8367, 212.355, 0, 47, -1, 0, 1003, 1005, 1006, 0, 0, 1010, 1019, 1074, 0, 1087, 0, 0, 0, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0),
376(112, 461, 165, 1795.37, -2134.54, 13.1324, 6.9254, 32, 32, -1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0),
377(114, 402, 339, 1113.46, -653.634, 113.14, 180.601, 126, 126, -1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0),
378(116, 499, 0, 2469.19, -2074.92, 13.5468, 181.161, 108, 34, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0),
379(117, 401, 14, 1864.95, -2056.48, 13.1605, 269.781, 1, 1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0),
380(118, 567, 224, 2644.88, -1991.62, 13.8236, 181.706, 104, 1, 255, 0, 0, 0, 1130, 1133, 0, 1010, 1132, 1083, 0, 1087, 1188, 1186, 0, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0),
381(119, 489, 170, 2146.62, -1706.21, 15.2291, 90.5289, 84, 84, -1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0),
382(120, 492, 380, 2148.71, -1242.08, 24.4108, 359.589, 0, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0),
383(121, 481, 386, 2159.71, -1243.57, 24.8777, 268.522, 1, 1, -1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0),
384(122, 481, 382, 2157.27, -1243.57, 24.8794, 273.686, 1, 1, -1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0),
385(124, 567, 189, 1878.22, -2029.98, 13.7291, 181.387, 61, 0, 255, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0),
386(125, 468, 398, 2683.49, -2025.51, 13.18, 173.719, 3, 3, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0),
387(126, 603, 231, 2055.61, -1902.45, 13.3927, 0.2007, 5, 64, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0),
388(127, 419, 386, 2148.96, -1234.7, 24.0206, 0.8795, 0, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0),
389(128, 475, 420, 1987.38, -1735.24, 15.8944, 94.7086, 243, 243, -1, 0, 0, 0, 0, 0, 0, 0, 0, 1080, 0, 0, 0, 0, 0, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0),
390(129, 579, 176, 2431.55, -1103.44, 42.4123, 180.409, 0, 0, -1, 1, 0, 0, 0, 0, 0, 1010, 0, 1075, 0, 0, 0, 0, 0, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0),
391(130, 567, 280, 2742.87, -1441.63, 30.3512, 1.1045, 1, 1, -1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0),
392(131, 481, 240, 1898.92, -2035.83, 13.0574, 357.522, 7, 7, -1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0),
393(132, 481, 283, 2353.61, -1915.34, 14.5129, 230.875, 123, 72, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0),
394(133, 567, 283, 2485.18, -1653.56, 13.264, 266.399, 124, 87, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0),
395(135, 579, 365, 2668.41, -1998.41, 13.3912, 88.5403, 13, 13, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0),
396(136, 550, 398, 2684.36, -2020.25, 13.3528, 182.141, 78, 92, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0),
397(137, 544, 0, 1751.38, -1137.71, 24.325, 181.192, 3, 3, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0),
398(138, 544, 0, 1742.26, -1136.88, 24.0781, 179.594, 3, 29, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0),
399(139, 407, 0, 1733.99, -1136.07, 24.0859, 180.171, 3, 45, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0),
400(140, 407, 0, 1725.32, -1135.44, 24.0859, 177.475, 3, 66, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0),
401(141, 416, 0, 1717.05, -1135.58, 24.0781, 179.167, 3, 49, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0),
402(142, 490, 0, 1708.21, -1135.17, 24.0859, 179.517, 3, 3, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0),
403(143, 427, 0, 1734.25, -1101.34, 24.0781, 0.6202, 3, 1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0),
404(144, 427, 0, 1725.12, -1101.7, 24.0859, 1.1467, 3, 1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0),
405(145, 416, 0, 1716.92, -1101.55, 24.0781, 358.626, 3, 1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0),
406(146, 490, 0, 1708.24, -1100.78, 24.0781, 359.253, 3, 3, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0),
407(147, 499, 0, 2458.08, -2077.07, 13.5468, 180.891, 41, 33, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0),
408(148, 422, 286, 2014.55, -1696.84, 13.533, 90.2127, 79, 79, -1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0),
409(149, 489, 233, 1743.81, -1088.72, 24.1037, 179.409, 127, 127, -1, 1, 1000, 1004, 1006, 0, 1013, 1010, 1018, 0, 0, 0, 0, 0, 0, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0),
410(150, 422, 233, 1748.37, -1088.74, 23.9498, 179.002, 127, 127, -1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0),
411(151, 475, 233, 1751.49, -1088.7, 23.7586, 1.1078, 127, 127, -1, 0, 0, 0, 0, 0, 0, 1010, 0, 1025, 0, 0, 0, 0, 0, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0),
412(152, 400, 456, 2063.6, -1636.23, 13.6391, 89.0803, 0, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0),
413(153, 596, 0, 1535.95, -1677.98, 14.4011, 2.3376, 0, 1, -1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1),
414(154, 567, 420, 1982.77, -1737.69, 15.765, 359.237, 1, 1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 1083, 0, 1087, 0, 0, 0, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0),
415(155, 603, 418, 2138.92, -1365.78, 24.9351, 180.829, 3, 3, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0),
416(156, 562, 234, 1657.24, -1093.87, 23.9062, 267.097, 30, 100, -1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0),
417(157, 481, 424, 2155.09, -1153.51, 23.381, 19.8366, 1, 1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0),
418(161, 400, 11, 1908.47, -1986.91, 13.6391, 178.141, 1, 1, -1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0),
419(162, 586, 173, 2096.87, -1801.27, 12.9028, 89.0524, 1, 1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0),
420(165, 413, 38, 2006.15, -1632.33, 13.5354, 3.0144, 1, 1, -1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0),
421(168, 463, 6, 990.406, -1353.42, 13.3704, 260.758, 1, 1, -1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0),
422(169, 521, 6, 1006.41, -1292.52, 16.9486, 141.237, 226, 226, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0),
423(170, 602, 42, 1911.28, -1775.84, 13.1882, 0.0395, 135, 135, -1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0),
424(171, 468, 176, 2435.83, -1098.92, 42.201, 145.896, 0, 0, -1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0),
425(172, 471, 19, 2438.92, -1101.83, 42.0847, 161.988, 1, 1, -1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0),
426(174, 463, 74, 990.406, -1353.42, 13.3704, 260.758, 1, 1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0),
427(175, 566, 18, 2445.6, -1360.93, 23.6273, 176.883, 51, 51, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0),
428(176, 412, 22, 2445.24, -1296.4, 23.7253, 180.423, 132, 132, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0),
429(177, 405, 47, 2345.48, -1998.88, 13.2568, 180.321, 11, 73, -1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0),
430(178, 405, 387, 2307.06, -1672.58, 14.0691, 0.5036, 93, 70, -1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0),
431(179, 468, 508, 1862.79, -2042.66, 13.2155, 88.4306, 125, 125, -1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0),
432(180, 481, 224, 990.406, -1353.42, 13.3704, 260.758, 1, 1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0),
433(181, 585, 479, 1500.89, -1204.97, 23.1645, 270.727, 4, 4, -1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0),
434(182, 481, 569, 2441.56, -1272.13, 23.5138, 181.739, 3, 3, -1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0),
435(183, 481, 214, 2145.5, -1330.49, 25.061, 273.076, 3, 3, -1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0),
436(184, 468, 214, 2143.31, -1327.77, 25.2149, 181.803, 3, 3, -1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0),
437(185, 481, 305, 2146.93, -1431.35, 25.0522, 270.51, 81, 63, -1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0),
438(186, 439, 305, 2141.3, -1429.45, 24.3758, 90.3522, 16, 16, -1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, 5, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0),
439(187, 600, 127, 2445.72, -1334.48, 23.6198, 180.126, 17, 17, -1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0),
440(189, 414, 47, 2405.3, -1433.81, 25, 184.309, 1, 1, -1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0),
441(190, 445, 383, 179.755, -1330.31, 70.0725, 274.332, 118, 112, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0),
442(191, 491, 383, 192.7, -1297.15, 71.2761, 197.901, 0, 3, -1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0),
443(192, 507, 416, 1812.4, -1572.77, 14.5312, 31.2874, 0, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0),
444(193, 503, 0, -1494.6, 957.99, 1037, 307.061, 0, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0),
445(195, 494, 0, -1497.29, 959.981, 1037.03, 311.762, 3, 3, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0),
446(196, 588, 585, 784.044, -1631.7, 14.3828, 325.823, 56, 33, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0),
447(216, 504, 0, 2668.83, -1706.16, 10.0866, 282.608, 83, 112, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0),
448(223, 588, 585, 822.637, -1793.33, 14.7768, 311.347, 13, 84, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0),
449(227, 461, 222, 2518.16, -1998.6, 13.1342, 149.327, 1, 1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0),
450(228, 463, 113, 990.406, -1353.42, 13.3704, 260.758, 152, 152, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0),
451(229, 422, 540, 2503.61, -1022.91, 70.0706, 174.958, 17, 17, -1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0),
452(232, 405, 397, 2144.88, -1148.93, 25.1285, 10.0746, 1, 1, -1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0),
453(233, 403, 126, 2763.29, -2505.58, 14.6442, 39.3927, 115, 120, -1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0),
454(234, 405, 496, 2399.07, -1389.64, 25, 329.351, 60, 18, -1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0),
455(235, 405, 126, 2414.17, -1383.97, 24.3436, 86.8366, 103, 68, -1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0),
456(236, 419, 51, 2456.1, -1412.45, 23.6871, 358.316, 30, 30, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0),
457(237, 468, 94, 990.406, -1353.42, 13.3704, 260.758, 1, 1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0),
458(238, 468, 224, 990.406, -1353.42, 13.3704, 260.758, 1, 1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0),
459(239, 597, 0, 1528.35, -1683.68, 5.8906, 266.746, 0, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1),
460(240, 422, 389, 2146.89, -1148.41, 24.4029, 268.636, 1, 1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
461
462-- --------------------------------------------------------
463
464--
465-- Table structure for table `carstorage`
466--
467
468CREATE TABLE IF NOT EXISTS `carstorage` (
469 `ID` int(12) DEFAULT '0',
470 `itemID` int(12) NOT NULL AUTO_INCREMENT,
471 `itemName` varchar(32) DEFAULT NULL,
472 `itemModel` int(12) DEFAULT '0',
473 `itemQuantity` int(12) DEFAULT '0',
474 PRIMARY KEY (`itemID`)
475) ENGINE=InnoDB DEFAULT CHARSET=latin1 AUTO_INCREMENT=1 ;
476
477-- --------------------------------------------------------
478
479--
480-- Table structure for table `characters`
481--
482
483CREATE TABLE IF NOT EXISTS `characters` (
484 `ID` int(12) NOT NULL AUTO_INCREMENT,
485 `Username` varchar(24) DEFAULT NULL,
486 `Character` varchar(24) DEFAULT NULL,
487 `Created` int(4) DEFAULT '0',
488 `Gender` int(4) DEFAULT '0',
489 `Birthdate` varchar(32) DEFAULT '01/01/1970',
490 `Origin` varchar(32) DEFAULT 'Not Specified',
491 `Skin` int(12) DEFAULT '0',
492 `Glasses` int(12) DEFAULT '0',
493 `Hat` int(12) DEFAULT '0',
494 `Bandana` int(12) DEFAULT '0',
495 `PosX` float DEFAULT '0',
496 `PosY` float DEFAULT '0',
497 `PosZ` float DEFAULT '0',
498 `PosA` float DEFAULT '0',
499 `Interior` int(12) DEFAULT '0',
500 `World` int(12) DEFAULT '0',
501 `GlassesPos` varchar(100) DEFAULT NULL,
502 `HatPos` varchar(100) DEFAULT NULL,
503 `BandanaPos` varchar(100) DEFAULT NULL,
504 `Hospital` int(12) DEFAULT '-1',
505 `HospitalInt` int(12) DEFAULT '0',
506 `Money` int(12) DEFAULT '0',
507 `BankMoney` int(12) DEFAULT '0',
508 `OwnsBillboard` int(12) DEFAULT '-1',
509 `Savings` int(12) DEFAULT '0',
510 `Admin` int(12) DEFAULT '0',
511 `JailTime` int(12) DEFAULT '0',
512 `Muted` int(4) DEFAULT '0',
513 `CreateDate` int(12) DEFAULT '0',
514 `LastLogin` int(12) DEFAULT '0',
515 `Tester` int(4) DEFAULT '0',
516 `Gun1` int(12) DEFAULT '0',
517 `Gun2` int(12) DEFAULT '0',
518 `Gun3` int(12) DEFAULT '0',
519 `Gun4` int(12) DEFAULT '0',
520 `Gun5` int(12) DEFAULT '0',
521 `Gun6` int(12) DEFAULT '0',
522 `Gun7` int(12) DEFAULT '0',
523 `Gun8` int(12) DEFAULT '0',
524 `Gun9` int(12) DEFAULT '0',
525 `Gun10` int(12) DEFAULT '0',
526 `Gun11` int(12) DEFAULT '0',
527 `Gun12` int(12) DEFAULT '0',
528 `Gun13` int(12) DEFAULT '0',
529 `Ammo1` int(12) DEFAULT '0',
530 `Ammo2` int(12) DEFAULT '0',
531 `Ammo3` int(12) DEFAULT '0',
532 `Ammo4` int(12) DEFAULT '0',
533 `Ammo5` int(12) DEFAULT '0',
534 `Ammo6` int(12) DEFAULT '0',
535 `Ammo7` int(12) DEFAULT '0',
536 `Ammo8` int(12) DEFAULT '0',
537 `Ammo9` int(12) DEFAULT '0',
538 `Ammo10` int(12) DEFAULT '0',
539 `Ammo11` int(12) DEFAULT '0',
540 `Ammo12` int(12) DEFAULT '0',
541 `Ammo13` int(12) DEFAULT '0',
542 `House` int(12) DEFAULT '-1',
543 `Business` int(12) DEFAULT '-1',
544 `Phone` int(12) DEFAULT '0',
545 `Lottery` int(12) DEFAULT '0',
546 `Hunger` int(12) DEFAULT '100',
547 `Thirst` int(12) DEFAULT '100',
548 `PlayingHours` int(12) DEFAULT '0',
549 `Minutes` int(12) DEFAULT '0',
550 `ArmorStatus` float DEFAULT '0',
551 `Entrance` int(12) DEFAULT '0',
552 `Job` int(12) DEFAULT '0',
553 `Faction` int(12) DEFAULT '-1',
554 `FactionRank` int(12) DEFAULT '0',
555 `Prisoned` int(4) DEFAULT '0',
556 `Warrants` int(12) DEFAULT '0',
557 `Injured` int(4) DEFAULT '0',
558 `Health` float DEFAULT '0',
559 `Channel` int(12) DEFAULT '0',
560 `Accent` varchar(24) DEFAULT NULL,
561 `Bleeding` int(4) DEFAULT '0',
562 `Warnings` int(12) DEFAULT '0',
563 `Warn1` varchar(32) DEFAULT NULL,
564 `Warn2` varchar(32) DEFAULT NULL,
565 `MaskID` int(12) DEFAULT '0',
566 `FactionMod` int(12) DEFAULT '0',
567 `Capacity` int(12) DEFAULT '35',
568 `AdminHide` int(4) DEFAULT '0',
569 `LotteryB` int(11) NOT NULL,
570 `SpawnPoint` int(11) NOT NULL,
571 PRIMARY KEY (`ID`)
572) ENGINE=InnoDB DEFAULT CHARSET=latin1 AUTO_INCREMENT=1 ;
573
574-- --------------------------------------------------------
575
576--
577-- Table structure for table `contacts`
578--
579
580CREATE TABLE IF NOT EXISTS `contacts` (
581 `ID` int(12) DEFAULT '0',
582 `contactID` int(12) NOT NULL AUTO_INCREMENT,
583 `contactName` varchar(32) DEFAULT NULL,
584 `contactNumber` int(12) DEFAULT '0',
585 PRIMARY KEY (`contactID`)
586) ENGINE=InnoDB DEFAULT CHARSET=latin1 AUTO_INCREMENT=1 ;
587
588-- --------------------------------------------------------
589
590--
591-- Table structure for table `crates`
592--
593
594CREATE TABLE IF NOT EXISTS `crates` (
595 `crateID` int(12) NOT NULL AUTO_INCREMENT,
596 `crateType` int(12) DEFAULT '0',
597 `crateX` float DEFAULT '0',
598 `crateY` float DEFAULT '0',
599 `crateZ` float DEFAULT '0',
600 `crateA` float DEFAULT '0',
601 `crateInterior` int(12) DEFAULT '0',
602 `crateWorld` int(12) DEFAULT '0',
603 PRIMARY KEY (`crateID`)
604) ENGINE=InnoDB DEFAULT CHARSET=latin1 AUTO_INCREMENT=1 ;
605
606-- --------------------------------------------------------
607
608--
609-- Table structure for table `dealervehicles`
610--
611
612CREATE TABLE IF NOT EXISTS `dealervehicles` (
613 `ID` int(12) DEFAULT '0',
614 `vehID` int(12) NOT NULL AUTO_INCREMENT,
615 `vehModel` int(12) DEFAULT '0',
616 `vehPrice` int(12) DEFAULT '0',
617 PRIMARY KEY (`vehID`)
618) ENGINE=InnoDB DEFAULT CHARSET=latin1 AUTO_INCREMENT=147 ;
619
620--
621-- Dumping data for table `dealervehicles`
622--
623
624INSERT INTO `dealervehicles` (`ID`, `vehID`, `vehModel`, `vehPrice`) VALUES
625(18, 19, 400, 5000),
626(18, 20, 401, 2300),
627(18, 21, 405, 7650),
628(18, 22, 413, 3000),
629(18, 23, 562, 12000),
630(18, 24, 541, 20000),
631(18, 25, 415, 17000),
632(18, 26, 402, 5000),
633(18, 27, 451, 15000),
634(18, 28, 580, 12000),
635(18, 29, 426, 3000),
636(18, 30, 566, 2500),
637(18, 31, 458, 1500),
638(18, 32, 496, 3200),
639(18, 33, 559, 10000),
640(18, 34, 517, 4000),
641(18, 35, 550, 4000),
642(18, 36, 560, 8000),
643(18, 37, 468, 1500),
644(18, 38, 461, 2000),
645(18, 39, 471, 1000),
646(18, 40, 521, 2000),
647(18, 41, 522, 2500),
648(18, 42, 445, 1500),
649(18, 43, 534, 1800),
650(18, 44, 500, 4000),
651(37, 45, 400, 3700),
652(37, 46, 401, 1650),
653(37, 48, 404, 1200),
654(37, 49, 405, 3100),
655(37, 50, 409, 7000),
656(37, 51, 410, 2400),
657(37, 53, 412, 4000),
658(37, 54, 413, 3200),
659(37, 57, 418, 4600),
660(37, 58, 419, 1000),
661(37, 59, 426, 12000),
662(37, 60, 420, 4200),
663(37, 61, 422, 800),
664(37, 62, 445, 8000),
665(37, 63, 421, 3450),
666(37, 64, 458, 9000),
667(37, 66, 579, 42000),
668(37, 68, 562, 24000),
669(53, 69, 462, 350),
670(53, 70, 463, 650),
671(53, 71, 468, 1000),
672(53, 72, 586, 950),
673(53, 73, 581, 1750),
674(54, 74, 487, 175000),
675(54, 75, 511, 280000),
676(54, 76, 593, 95000),
677(37, 77, 566, 7500),
678(37, 78, 463, 1200),
679(37, 79, 481, 500),
680(62, 80, 414, 57500),
681(62, 81, 413, 35000),
682(62, 82, 440, 2350),
683(62, 83, 455, 17500),
684(62, 84, 456, 27500),
685(62, 85, 498, 17850),
686(62, 86, 609, 23500),
687(62, 87, 525, 3500),
688(37, 89, 439, 4300),
689(37, 90, 467, 2300),
690(37, 91, 475, 4800),
691(37, 92, 479, 2300),
692(37, 93, 489, 6500),
693(37, 94, 559, 23500),
694(37, 95, 565, 16500),
695(37, 96, 567, 6550),
696(37, 97, 576, 4300),
697(37, 98, 580, 4500),
698(37, 99, 585, 4600),
699(37, 100, 600, 2990),
700(37, 101, 602, 8500),
701(37, 102, 603, 9500),
702(64, 105, 463, 700),
703(64, 106, 461, 2350),
704(64, 108, 468, 1750),
705(64, 109, 586, 600),
706(37, 110, 525, 10000),
707(89, 111, 566, 3500),
708(89, 112, 525, 8500),
709(89, 113, 401, 2600),
710(89, 115, 405, 11000),
711(89, 116, 521, 28000),
712(89, 117, 400, 14000),
713(89, 118, 404, 4300),
714(89, 119, 410, 2000),
715(89, 120, 412, 6800),
716(89, 121, 421, 9100),
717(89, 122, 426, 14500),
718(89, 123, 422, 3000),
719(89, 124, 442, 6700),
720(89, 125, 445, 8700),
721(89, 126, 458, 8900),
722(89, 127, 463, 6000),
723(89, 128, 462, 1000),
724(89, 129, 467, 4100),
725(89, 130, 475, 8000),
726(89, 131, 478, 900),
727(89, 132, 482, 5000),
728(89, 133, 491, 4000),
729(89, 134, 492, 3000),
730(89, 135, 516, 8700),
731(89, 136, 540, 4500),
732(89, 137, 546, 5900),
733(89, 138, 551, 6000),
734(89, 139, 550, 3900),
735(89, 140, 499, 4000),
736(89, 141, 508, 7000),
737(89, 142, 547, 4000),
738(64, 143, 481, 400),
739(64, 144, 521, 2800),
740(64, 145, 581, 2650),
741(37, 146, 560, 75000);
742
743-- --------------------------------------------------------
744
745--
746-- Table structure for table `detectors`
747--
748
749CREATE TABLE IF NOT EXISTS `detectors` (
750 `detectorID` int(12) NOT NULL AUTO_INCREMENT,
751 `detectorX` float DEFAULT '0',
752 `detectorY` float DEFAULT '0',
753 `detectorZ` float DEFAULT '0',
754 `detectorAngle` float DEFAULT '0',
755 `detectorInterior` int(12) DEFAULT '0',
756 `detectorWorld` int(12) DEFAULT '0',
757 PRIMARY KEY (`detectorID`)
758) ENGINE=MyISAM DEFAULT CHARSET=latin1 AUTO_INCREMENT=1 ;
759
760-- --------------------------------------------------------
761
762--
763-- Table structure for table `dropped`
764--
765
766CREATE TABLE IF NOT EXISTS `dropped` (
767 `ID` int(12) NOT NULL AUTO_INCREMENT,
768 `itemName` varchar(32) DEFAULT NULL,
769 `itemModel` int(12) DEFAULT '0',
770 `itemX` float DEFAULT '0',
771 `itemY` float DEFAULT '0',
772 `itemZ` float DEFAULT '0',
773 `itemInt` int(12) DEFAULT '0',
774 `itemWorld` int(12) DEFAULT '0',
775 `itemQuantity` int(12) DEFAULT '0',
776 `itemAmmo` int(12) DEFAULT '0',
777 `itemWeapon` int(12) DEFAULT '0',
778 `itemPlayer` varchar(24) DEFAULT NULL,
779 PRIMARY KEY (`ID`)
780) ENGINE=InnoDB DEFAULT CHARSET=latin1 AUTO_INCREMENT=1 ;
781
782-- --------------------------------------------------------
783
784--
785-- Table structure for table `entrances`
786--
787
788CREATE TABLE IF NOT EXISTS `entrances` (
789 `entranceID` int(12) NOT NULL AUTO_INCREMENT,
790 `entranceName` varchar(32) DEFAULT NULL,
791 `entranceIcon` int(12) DEFAULT '0',
792 `entrancePosX` float DEFAULT '0',
793 `entrancePosY` float DEFAULT '0',
794 `entrancePosZ` float DEFAULT '0',
795 `entrancePosA` float DEFAULT '0',
796 `entranceIntX` float DEFAULT '0',
797 `entranceIntY` float DEFAULT '0',
798 `entranceIntZ` float DEFAULT '0',
799 `entranceIntA` float DEFAULT '0',
800 `entranceInterior` int(12) DEFAULT '0',
801 `entranceExterior` int(12) DEFAULT '0',
802 `entranceExteriorVW` int(12) DEFAULT '0',
803 `entranceType` int(12) DEFAULT '0',
804 `entrancePass` varchar(32) DEFAULT NULL,
805 `entranceLocked` int(12) DEFAULT '0',
806 `entranceCustom` int(4) DEFAULT '0',
807 `entranceWorld` int(12) DEFAULT '0',
808 PRIMARY KEY (`entranceID`)
809) ENGINE=InnoDB DEFAULT CHARSET=latin1 AUTO_INCREMENT=56 ;
810
811--
812-- Dumping data for table `entrances`
813--
814
815INSERT INTO `entrances` (`entranceID`, `entranceName`, `entranceIcon`, `entrancePosX`, `entrancePosY`, `entrancePosZ`, `entrancePosA`, `entranceIntX`, `entranceIntY`, `entranceIntZ`, `entranceIntA`, `entranceInterior`, `entranceExterior`, `entranceExteriorVW`, `entranceType`, `entrancePass`, `entranceLocked`, `entranceCustom`, `entranceWorld`) VALUES
816(7, 'San Fierro Roleplay', 0, -1605.49, 711.306, 13.8671, 182.47, 1587.61, -1709.62, -36.8138, 182.455, 1, 0, 0, 0, '', 0, 0, 0),
817(8, 'Department of Motor Vehicles', 0, -2026.62, -101.736, 35.164, 172.514, -2029.55, -118.8, 1035.17, 0, 3, 0, 0, 1, 'San Fierro Roleplay', 0, 0, 7008),
818(10, 'Downtown Bank', 0, -2055.41, 455.282, 35.1718, 141.754, 1456.19, -987.942, 996.105, 90, 6, 0, 0, 2, 'Department of Motor Vehicles', 0, 0, 7010),
819(12, 'San Fierro Cityhall', 0, -1493.9, 919.842, 7.1875, 271.94, 390.169, 173.807, 1008.38, 90, 3, 0, 0, 4, 'San Fierro Cityhall', 0, 0, 7012),
820(14, 'Downtown Apartment Complex', 0, -1754.19, 962.555, 24.8828, 3.8796, 2214.8, -1150.34, 1025.8, 276.821, 15, 0, 0, 0, 'San Fierro Cityhall', 0, 0, 7014),
821(54, 'Master Bedroom', 0, 134.639, 1379.96, 1088.37, 93.0609, 134.639, 1379.96, 11088.4, 0, 0, 5, 5006, 0, '', 0, 0, 7054),
822(55, 'Los Santos Stadium', 0, 2695.35, -1704.55, 11.8437, 227.137, -1464.28, 1557.01, 1052.53, 342.974, 14, 0, 0, 0, '', 0, 0, 7055);
823
824-- --------------------------------------------------------
825
826--
827-- Table structure for table `factions`
828--
829
830CREATE TABLE IF NOT EXISTS `factions` (
831 `factionID` int(12) NOT NULL AUTO_INCREMENT,
832 `factionName` varchar(32) DEFAULT NULL,
833 `factionColor` int(12) DEFAULT '0',
834 `factionType` int(12) DEFAULT '0',
835 `factionRanks` int(12) DEFAULT '0',
836 `factionLockerX` float DEFAULT '0',
837 `factionLockerY` float DEFAULT '0',
838 `factionLockerZ` float DEFAULT '0',
839 `factionLockerInt` int(12) DEFAULT '0',
840 `factionLockerWorld` int(12) DEFAULT '0',
841 `factionWeapon1` int(12) DEFAULT '0',
842 `factionAmmo1` int(12) DEFAULT '0',
843 `factionWeapon2` int(12) DEFAULT '0',
844 `factionAmmo2` int(12) DEFAULT '0',
845 `factionWeapon3` int(12) DEFAULT '0',
846 `factionAmmo3` int(12) DEFAULT '0',
847 `factionWeapon4` int(12) DEFAULT '0',
848 `factionAmmo4` int(12) DEFAULT '0',
849 `factionWeapon5` int(12) DEFAULT '0',
850 `factionAmmo5` int(12) DEFAULT '0',
851 `factionWeapon6` int(12) DEFAULT '0',
852 `factionAmmo6` int(12) DEFAULT '0',
853 `factionWeapon7` int(12) DEFAULT '0',
854 `factionAmmo7` int(12) DEFAULT '0',
855 `factionWeapon8` int(12) DEFAULT '0',
856 `factionAmmo8` int(12) DEFAULT '0',
857 `factionWeapon9` int(12) DEFAULT '0',
858 `factionAmmo9` int(12) DEFAULT '0',
859 `factionWeapon10` int(12) DEFAULT '0',
860 `factionAmmo10` int(12) DEFAULT '0',
861 `factionRank1` varchar(32) DEFAULT NULL,
862 `factionRank2` varchar(32) DEFAULT NULL,
863 `factionRank3` varchar(32) DEFAULT NULL,
864 `factionRank4` varchar(32) DEFAULT NULL,
865 `factionRank5` varchar(32) DEFAULT NULL,
866 `factionRank6` varchar(32) DEFAULT NULL,
867 `factionRank7` varchar(32) DEFAULT NULL,
868 `factionRank8` varchar(32) DEFAULT NULL,
869 `factionRank9` varchar(32) DEFAULT NULL,
870 `factionRank10` varchar(32) DEFAULT NULL,
871 `factionRank11` varchar(32) DEFAULT NULL,
872 `factionRank12` varchar(32) DEFAULT NULL,
873 `factionRank13` varchar(32) DEFAULT NULL,
874 `factionRank14` varchar(32) DEFAULT NULL,
875 `factionRank15` varchar(32) DEFAULT NULL,
876 `factionSkin1` int(12) DEFAULT '0',
877 `factionSkin2` int(12) DEFAULT '0',
878 `factionSkin3` int(12) DEFAULT '0',
879 `factionSkin4` int(12) DEFAULT '0',
880 `factionSkin5` int(12) DEFAULT '0',
881 `factionSkin6` int(12) DEFAULT '0',
882 `factionSkin7` int(12) DEFAULT '0',
883 `factionSkin8` int(12) DEFAULT '0',
884 `SpawnX` float NOT NULL,
885 `SpawnY` float NOT NULL,
886 `SpawnZ` float NOT NULL,
887 `SpawnInterior` int(11) NOT NULL,
888 `SpawnVW` int(1) NOT NULL,
889 PRIMARY KEY (`factionID`)
890) ENGINE=InnoDB DEFAULT CHARSET=latin1 AUTO_INCREMENT=1 ;
891
892-- --------------------------------------------------------
893
894--
895-- Table structure for table `furniture`
896--
897
898CREATE TABLE IF NOT EXISTS `furniture` (
899 `ID` int(12) DEFAULT '0',
900 `furnitureID` int(12) NOT NULL AUTO_INCREMENT,
901 `furnitureName` varchar(32) DEFAULT NULL,
902 `furnitureModel` int(12) DEFAULT '0',
903 `furnitureX` float DEFAULT '0',
904 `furnitureY` float DEFAULT '0',
905 `furnitureZ` float DEFAULT '0',
906 `furnitureRX` float DEFAULT '0',
907 `furnitureRY` float DEFAULT '0',
908 `furnitureRZ` float DEFAULT '0',
909 `furnitureType` int(12) DEFAULT '0',
910 PRIMARY KEY (`furnitureID`)
911) ENGINE=InnoDB DEFAULT CHARSET=latin1 AUTO_INCREMENT=1 ;
912
913-- --------------------------------------------------------
914
915--
916-- Table structure for table `garbage`
917--
918
919CREATE TABLE IF NOT EXISTS `garbage` (
920 `garbageID` int(12) NOT NULL AUTO_INCREMENT,
921 `garbageModel` int(12) DEFAULT '1236',
922 `garbageCapacity` int(12) DEFAULT '0',
923 `garbageX` float DEFAULT '0',
924 `garbageY` float DEFAULT '0',
925 `garbageZ` float DEFAULT '0',
926 `garbageA` float DEFAULT '0',
927 `garbageInterior` int(12) DEFAULT '0',
928 `garbageWorld` int(12) DEFAULT '0',
929 PRIMARY KEY (`garbageID`)
930) ENGINE=InnoDB DEFAULT CHARSET=latin1 AUTO_INCREMENT=1 ;
931
932-- --------------------------------------------------------
933
934--
935-- Table structure for table `gates`
936--
937
938CREATE TABLE IF NOT EXISTS `gates` (
939 `gateID` int(12) NOT NULL AUTO_INCREMENT,
940 `gateModel` int(12) DEFAULT '0',
941 `gateSpeed` float DEFAULT '0',
942 `gateTime` int(12) DEFAULT '0',
943 `gateX` float DEFAULT '0',
944 `gateY` float DEFAULT '0',
945 `gateZ` float DEFAULT '0',
946 `gateRX` float DEFAULT '0',
947 `gateRY` float DEFAULT '0',
948 `gateRZ` float DEFAULT '0',
949 `gateInterior` int(12) DEFAULT '0',
950 `gateWorld` int(12) DEFAULT '0',
951 `gateMoveX` float DEFAULT '0',
952 `gateMoveY` float DEFAULT '0',
953 `gateMoveZ` float DEFAULT '0',
954 `gateMoveRX` float DEFAULT '0',
955 `gateMoveRY` float DEFAULT '0',
956 `gateMoveRZ` float DEFAULT '0',
957 `gateLinkID` int(12) DEFAULT '0',
958 `gateFaction` int(12) DEFAULT '0',
959 `gatePass` varchar(32) DEFAULT NULL,
960 `gateRadius` float DEFAULT '0',
961 PRIMARY KEY (`gateID`)
962) ENGINE=InnoDB DEFAULT CHARSET=latin1 AUTO_INCREMENT=1 ;
963
964-- --------------------------------------------------------
965
966--
967-- Table structure for table `gps`
968--
969
970CREATE TABLE IF NOT EXISTS `gps` (
971 `ID` int(12) DEFAULT '0',
972 `locationID` int(12) NOT NULL AUTO_INCREMENT,
973 `locationName` varchar(32) DEFAULT NULL,
974 `locationX` float DEFAULT '0',
975 `locationY` float DEFAULT '0',
976 `locationZ` float DEFAULT '0',
977 PRIMARY KEY (`locationID`)
978) ENGINE=InnoDB DEFAULT CHARSET=latin1 AUTO_INCREMENT=1 ;
979
980-- --------------------------------------------------------
981
982--
983-- Table structure for table `graffiti`
984--
985
986CREATE TABLE IF NOT EXISTS `graffiti` (
987 `graffitiID` int(12) NOT NULL AUTO_INCREMENT,
988 `graffitiX` float DEFAULT '0',
989 `graffitiY` float DEFAULT '0',
990 `graffitiZ` float DEFAULT '0',
991 `graffitiAngle` float DEFAULT '0',
992 `graffitiColor` int(12) DEFAULT '0',
993 `graffitiText` varchar(64) DEFAULT NULL,
994 PRIMARY KEY (`graffitiID`)
995) ENGINE=MyISAM DEFAULT CHARSET=latin1 AUTO_INCREMENT=1 ;
996
997-- --------------------------------------------------------
998
999--
1000-- Table structure for table `gunracks`
1001--
1002
1003CREATE TABLE IF NOT EXISTS `gunracks` (
1004 `rackID` int(12) NOT NULL AUTO_INCREMENT,
1005 `rackHouse` int(12) DEFAULT '0',
1006 `rackX` float DEFAULT '0',
1007 `rackY` float DEFAULT '0',
1008 `rackZ` float DEFAULT '0',
1009 `rackA` float DEFAULT '0',
1010 `rackInterior` int(12) DEFAULT '0',
1011 `rackWorld` int(12) DEFAULT '0',
1012 `rackWeapon1` int(12) DEFAULT '0',
1013 `rackAmmo1` int(12) DEFAULT '0',
1014 `rackWeapon2` int(12) DEFAULT '0',
1015 `rackAmmo2` int(12) DEFAULT '0',
1016 `rackWeapon3` int(12) DEFAULT '0',
1017 `rackAmmo3` int(12) DEFAULT '0',
1018 `rackWeapon4` int(12) DEFAULT '0',
1019 `rackAmmo4` int(12) DEFAULT '0',
1020 PRIMARY KEY (`rackID`)
1021) ENGINE=InnoDB DEFAULT CHARSET=latin1 AUTO_INCREMENT=1 ;
1022
1023-- --------------------------------------------------------
1024
1025--
1026-- Table structure for table `houses`
1027--
1028
1029CREATE TABLE IF NOT EXISTS `houses` (
1030 `houseID` int(12) NOT NULL AUTO_INCREMENT,
1031 `houseOwner` int(12) DEFAULT '0',
1032 `housePrice` int(12) DEFAULT '0',
1033 `houseAddress` varchar(32) DEFAULT NULL,
1034 `housePosX` float DEFAULT '0',
1035 `housePosY` float DEFAULT '0',
1036 `housePosZ` float DEFAULT '0',
1037 `housePosA` float DEFAULT '0',
1038 `houseIntX` float DEFAULT '0',
1039 `houseIntY` float DEFAULT '0',
1040 `houseIntZ` float DEFAULT '0',
1041 `houseIntA` float DEFAULT '0',
1042 `houseInterior` int(12) DEFAULT '0',
1043 `houseExterior` int(12) DEFAULT '0',
1044 `houseExteriorVW` int(12) DEFAULT '0',
1045 `houseLocked` int(4) DEFAULT '0',
1046 `houseWeapon1` int(12) DEFAULT '0',
1047 `houseAmmo1` int(12) DEFAULT '0',
1048 `houseWeapon2` int(12) DEFAULT '0',
1049 `houseAmmo2` int(12) DEFAULT '0',
1050 `houseWeapon3` int(12) DEFAULT '0',
1051 `houseAmmo3` int(12) DEFAULT '0',
1052 `houseWeapon4` int(12) DEFAULT '0',
1053 `houseAmmo4` int(12) DEFAULT '0',
1054 `houseWeapon5` int(12) DEFAULT '0',
1055 `houseAmmo5` int(12) DEFAULT '0',
1056 `houseWeapon6` int(12) DEFAULT '0',
1057 `houseAmmo6` int(12) DEFAULT '0',
1058 `houseWeapon7` int(12) DEFAULT '0',
1059 `houseAmmo7` int(12) DEFAULT '0',
1060 `houseWeapon8` int(12) DEFAULT '0',
1061 `houseAmmo8` int(12) DEFAULT '0',
1062 `houseWeapon9` int(12) DEFAULT '0',
1063 `houseAmmo9` int(12) DEFAULT '0',
1064 `houseWeapon10` int(12) DEFAULT '0',
1065 `houseAmmo10` int(12) DEFAULT '0',
1066 `houseMoney` int(12) DEFAULT '0',
1067 PRIMARY KEY (`houseID`)
1068) ENGINE=InnoDB DEFAULT CHARSET=latin1 AUTO_INCREMENT=289 ;
1069
1070--
1071-- Dumping data for table `houses`
1072--
1073
1074INSERT INTO `houses` (`houseID`, `houseOwner`, `housePrice`, `houseAddress`, `housePosX`, `housePosY`, `housePosZ`, `housePosA`, `houseIntX`, `houseIntY`, `houseIntZ`, `houseIntA`, `houseInterior`, `houseExterior`, `houseExteriorVW`, `houseLocked`, `houseWeapon1`, `houseAmmo1`, `houseWeapon2`, `houseAmmo2`, `houseWeapon3`, `houseAmmo3`, `houseWeapon4`, `houseAmmo4`, `houseWeapon5`, `houseAmmo5`, `houseWeapon6`, `houseAmmo6`, `houseWeapon7`, `houseAmmo7`, `houseWeapon8`, `houseAmmo8`, `houseWeapon9`, `houseAmmo9`, `houseWeapon10`, `houseAmmo10`, `houseMoney`) VALUES
1075(2, 169, 1, '2065 Campanella Park', 2157.38, -1709.01, 15.0859, 165.058, 2269.88, -1210.32, 1047.56, 90, 10, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0),
1076(3, 22, 1, '424 Echo Parque', 2095.36, -1145.09, 26.5928, 276.9, 2269.88, -1210.32, 1047.56, 90, 10, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0),
1077(4, 22, 1, '300 Echo Parque', 2092.24, -1166.35, 26.5858, 267.187, 2269.88, -1210.32, 1047.56, 90, 10, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0),
1078(5, 165, 1, '632 Dead End, El Corona', 1804.1, -2124.9, 13.942, 182.539, 2269.88, -1210.32, 1047.56, 90, 10, 0, 0, 1, 4, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0),
1079(6, 383, 1, '732 Richman Hills', 189.637, -1308.13, 70.2491, 94.0185, 140.309, 1366.82, 1083.86, 0, 5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 50000),
1080(7, 127, 1, '527 Cardinal Park', 2150.92, -1419.09, 25.9218, 279.49, 2269.88, -1210.32, 1047.56, 90, 10, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0),
1081(8, 0, 1, '765 Richman Hills', 253.185, -1270.02, 74.43, 216.22, 2269.88, -1210.32, 1047.56, 90, 10, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0),
1082(9, 34, 1, '162 Temple Drive', 1325.95, -1067.66, 31.5545, 92.6201, 2269.88, -1210.32, 1047.56, 90, 10, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0),
1083(10, 88, 1, '1030 Idlewood', 2067.05, -1731.53, 14.2066, 89.8861, 2269.88, -1210.32, 1047.56, 90, 10, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0),
1084(11, 74, 1, '1031 Idlewood', 2066.24, -1717.09, 14.1363, 91.6212, 2269.88, -1210.32, 1047.56, 90, 10, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0),
1085(12, 7, 1, '1032 Idlewood', 2065.1, -1703.57, 14.1484, 95.068, 2269.88, -1210.32, 1047.56, 90, 10, 0, 0, 0, 24, 135, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0),
1086(13, 0, 5000, '1033 Idlewood', 2066.74, -1656.6, 14.1328, 89.4279, 2269.88, -1210.32, 1047.56, 90, 10, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0),
1087(14, 0, 5000, '1034 Idlewood', 2067.56, -1643.71, 14.1363, 85.9812, 2269.88, -1210.32, 1047.56, 90, 10, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0),
1088(15, 456, 5000, '1035 Idlewood', 2067.7, -1628.86, 14.2066, 89.4279, 2269.88, -1210.32, 1047.56, 90, 10, 0, 0, 1, 0, 0, 24, 105, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0),
1089(16, 50, 5000, '1036 Idlewood', 2018.05, -1629.92, 14.0424, 269.283, 2269.88, -1210.32, 1047.56, 90, 10, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0),
1090(17, 317, 5000, '1037 Idlewood', 2016.54, -1641.55, 14.1127, 272.416, 2269.88, -1210.32, 1047.56, 90, 10, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0),
1091(18, 0, 5000, '1038 Idlewood', 2013.58, -1656.45, 14.1363, 267.863, 2269.88, -1210.32, 1047.56, 90, 10, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0),
1092(19, 286, 5000, '1039 Idlewood', 2018.24, -1703.28, 14.2341, 274.296, 2269.88, -1210.32, 1047.56, 90, 10, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0),
1093(20, 0, 5000, '1040 Idlewood', 2016.2, -1716.93, 14.125, 267.716, 2269.88, -1210.32, 1047.56, 90, 10, 0, 0, 0, 33, 5, 29, 40, 30, 142, 4, 21, 0, 0, 31, 194, 29, 198, 25, 50, 24, 196, 30, 2000, 0),
1094(21, 286, 5000, '1041 Idlewood', 2015.35, -1732.63, 14.2341, 272.103, 2269.88, -1210.32, 1047.56, 90, 10, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0),
1095(22, 0, 5000, 'Campanella Park.', 2139.09, -1697.51, 15.0859, 5.4773, 2269.88, -1210.32, 1047.56, 90, 10, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1255),
1096(23, 170, 0, '2064 Campanella Park.', 2140.62, -1708.31, 15.0859, 185.309, 2269.88, -1210.32, 1047.56, 90, 10, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0),
1097(24, 126, 5000, '2066 Campanella Park.', 2155.62, -1698.51, 15.0859, 7.044, 2269.88, -1210.32, 1047.56, 90, 10, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0),
1098(25, 0, 5000, '2067 Campanella Park.', 2165.9, -1671.22, 15.0731, 44.6441, 2269.88, -1210.32, 1047.56, 90, 10, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0),
1099(26, 0, 5000, 'Ganton 1', 2326.99, -1716.7, 14.2377, 14.0402, 2269.88, -1210.32, 1047.56, 90, 10, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2),
1100(27, 69, 5000, 'Ganton 2', 2308.83, -1714.33, 14.9799, 353.673, 2269.88, -1210.32, 1047.56, 90, 10, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0),
1101(28, 42, 5000, 'Ganton 3', 2385.41, -1711.66, 14.2419, 7.7733, 2269.88, -1210.32, 1047.56, 90, 10, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0),
1102(29, 0, 5000, 'Ganton 4', 2402.61, -1715.15, 14.1328, 359.941, 2269.88, -1210.32, 1047.56, 90, 10, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2798),
1103(30, 0, 5000, 'Ganton 5', 2409.04, -1674.94, 14.375, 180.108, 2269.88, -1210.32, 1047.56, 90, 10, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0),
1104(31, 0, 5000, 'Ganton 6', 2384.81, -1675.84, 15.2454, 212.141, 2269.88, -1210.32, 1047.56, 90, 10, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0),
1105(32, 0, 5000, 'Ganton 7', 2368.22, -1675.34, 14.1681, 186.375, 2269.88, -1210.32, 1047.56, 90, 10, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 50),
1106(33, 0, 5000, 'Ganton 8', 2362.79, -1643.36, 14.3079, 326.87, 2269.88, -1210.32, 1047.56, 90, 10, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0),
1107(34, 0, 5000, 'Ganton 9', 2393.28, -1646.03, 13.9048, 357.143, 2269.88, -1210.32, 1047.56, 90, 10, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0),
1108(35, 0, 5000, 'Ganton 10', 2413.98, -1646.79, 14.0115, 5.6034, 2269.88, -1210.32, 1047.56, 90, 10, 0, 0, 1, 24, 42, 5, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0),
1109(36, 0, 5000, 'Ganton 11', 2459.45, -1691.66, 13.5458, 180.758, 2269.88, -1210.32, 1047.56, 90, 10, 0, 0, 0, 33, 5, 24, 7, 24, 7, 24, 7, 24, 7, 24, 7, 24, 7, 33, 5, 24, 7, 0, 0, 0),
1110(37, 180, 5000, 'Ganton 12', 2495.2, -1691.14, 14.7656, 183.578, 2269.88, -1210.32, 1047.56, 90, 10, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0),
1111(38, 0, 5000, 'Ganton 13', 2514.37, -1691.55, 14.0459, 222.745, 2269.88, -1210.32, 1047.56, 90, 10, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0),
1112(39, 525, 5000, 'Ganton 14', 2523.27, -1679.44, 15.4968, 263.166, 2269.88, -1210.32, 1047.56, 90, 10, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0),
1113(40, 0, 5000, 'Ganton 15', 2513.81, -1650.34, 14.3556, 338.366, 2269.88, -1210.32, 1047.56, 90, 10, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0),
1114(41, 0, 5000, 'Ganton 16', 2498.65, -1642.26, 14.1127, 4.0598, 2269.88, -1210.32, 1047.56, 90, 10, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0),
1115(42, 283, 5000, 'Ganton 17', 2486.51, -1644.53, 14.0768, 358.42, 2269.88, -1210.32, 1047.56, 90, 10, 0, 0, 1, 22, 85, 25, 28, 22, 85, 30, 150, 22, 170, 30, 150, 30, 150, 33, 100, 32, 250, 29, 150, 0),
1116(43, 0, 5000, 'Ganton 18', 2469.58, -1646.35, 13.7798, 41.0335, 2269.88, -1210.32, 1047.56, 90, 10, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0),
1117(44, 0, 5000, 'Ganton 19', 2451.92, -1641.41, 14.0662, 349.647, 2269.88, -1210.32, 1047.56, 90, 10, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0),
1118(45, 127, 1, '133 Cardinal Park', 2190.72, -1470.33, 25.9139, 87.8824, 2269.88, -1210.32, 1047.56, 90, 10, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0),
1119(46, 386, 5000, '1 Jefferson', 2153.83, -1243.71, 25.367, 180, 2269.88, -1210.32, 1047.56, 90, 10, 0, 0, 1, 0, 0, 5, 1, 5, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 14227),
1120(47, 0, 5000, '2 Jefferson', 2133.4, -1233, 24.4218, 174.385, 2269.88, -1210.32, 1047.56, 90, 10, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0),
1121(48, 113, 5000, '3 Jefferson', 2191.62, -1239.23, 24.4878, 174.555, 309.227, 313.337, 1003.3, 189.641, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0),
1122(49, 0, 5000, '4 Jefferson', 2209.73, -1240.25, 24.4799, 183.015, 2269.88, -1210.32, 1047.56, 90, 10, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0),
1123(50, 0, 5000, '5 Jefferson', 2229.61, -1241.61, 25.6562, 180.195, 2269.88, -1210.32, 1047.56, 90, 10, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 67),
1124(51, 0, 5000, '6 Jefferson', 2249.86, -1238.91, 25.8983, 180.822, 2269.88, -1210.32, 1047.56, 90, 10, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0),
1125(52, 387, 1, '10 Jefferson', 2307.01, -1679.16, 14.3316, 174.808, 2269.88, -1210.32, 1047.56, 90, 10, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0),
1126(53, 0, 5000, '11 Jefferson', 2132.25, -1280.05, 25.8906, 353.37, 2269.88, -1210.32, 1047.56, 90, 10, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0),
1127(54, 0, 5000, '12 Jefferson', 2111.31, -1278.98, 25.8358, 4, 2269.88, -1210.32, 1047.56, 90, 10, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0),
1128(56, 0, 5000, '14 Jefferson', 2100.94, -1321.89, 25.9531, 172.552, 2269.88, -1210.32, 1047.56, 90, 10, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0),
1129(58, 214, 5000, '16 Jefferson', 2148.48, -1320.08, 26.0736, 177.542, 2269.88, -1210.32, 1047.56, 90, 10, 0, 0, 1, 22, 46, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0),
1130(59, 67, 5000, '17 Jefferson', 2191.58, -1275.6, 25.1562, 0.2167, 2269.88, -1210.32, 1047.56, 90, 10, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0),
1131(60, 0, 5000, '18 Jefferson', 2208, -1280.82, 25.1205, 359.591, 2269.88, -1210.32, 1047.56, 90, 10, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0),
1132(61, 0, 5000, '19 Jefferson', 2230.17, -1280.06, 25.6284, 2.723, 2269.88, -1210.32, 1047.56, 90, 10, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3400),
1133(62, 0, 5000, '20 Jefferson', 2250.27, -1280.05, 25.4764, 1.8558, 2269.88, -1210.32, 1047.56, 90, 10, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0),
1134(63, 195, 5000, '21 Jefferson', 2185.07, -1363.71, 26.1597, 8.0155, 225.646, 1022.84, 1084.01, 350.817, 7, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0),
1135(64, 195, 5000, '22 Jefferson', 2202.83, -1363.67, 26.1909, 8.0155, 225.646, 1022.84, 1084.01, 350.817, 7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0),
1136(65, 191, 5000, '23 Jefferson', 2129.65, -1361.69, 26.1361, 7.0755, 2269.88, -1210.32, 1047.56, 90, 10, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0),
1137(66, 418, 5000, '24 Jefferson', 2147.7, -1366.12, 25.9722, 356.422, 2269.88, -1210.32, 1047.56, 90, 10, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0),
1138(67, 0, 5000, '25 Jefferson', 2151.19, -1400.68, 26.1284, 274.642, 2269.88, -1210.32, 1047.56, 90, 10, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0),
1139(68, 305, 5000, '26 Cardinal', 2149.86, -1433.76, 26.0701, 276.835, 2269.88, -1210.32, 1047.56, 90, 10, 0, 0, 1, 0, 0, 5, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0),
1140(69, 0, 5000, '27 Cardinal', 2152.22, -1446.29, 26.1049, 275.582, 2269.88, -1210.32, 1047.56, 90, 10, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0),
1141(70, 0, 5000, '28 Cardinal', 2146.8, -1470.48, 26.0424, 270.882, 2269.88, -1210.32, 1047.56, 90, 10, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0),
1142(71, 0, 5000, '29 Cardinal', 2148.94, -1485, 26.6238, 266.182, 2269.88, -1210.32, 1047.56, 90, 10, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0),
1143(72, 0, 5000, '1 Willowfield', 2238.12, -1906.83, 14.9375, 186.338, 2269.88, -1210.32, 1047.56, 90, 10, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0),
1144(73, 0, 5000, '2 Willowfield', 2261.48, -1906.76, 14.9375, 189.784, 2269.88, -1210.32, 1047.56, 90, 10, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0),
1145(74, 0, 5000, '3 Willowfield', 2284.53, -1906.6, 14.9294, 182.264, 2269.88, -1210.32, 1047.56, 90, 10, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0),
1146(75, 0, 5000, '4 Willowfield', 2296.74, -1882.01, 14.2341, 1.4687, 2269.88, -1210.32, 1047.56, 90, 10, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0),
1147(76, 28, 5000, '5 Willowfield', 2269.28, -1882.01, 14.2341, 2.4089, 2269.88, -1210.32, 1047.56, 90, 10, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0),
1148(77, 0, 5000, '6 Willowfield', 2241.89, -1882.01, 14.2341, 356.142, 2269.88, -1210.32, 1047.56, 90, 10, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0),
1149(78, 157, 5000, '1 Seville Boulevard', 2637.15, -1991.63, 14.324, 45.0227, 2269.88, -1210.32, 1047.56, 90, 10, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5000),
1150(79, 290, 5000, '2 Seville Boulevard', 2635.75, -2013.13, 14.1443, 150.28, 2269.88, -1210.32, 1047.56, 90, 10, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0),
1151(80, 56, 5000, '3 Seville Boulevard', 2650.7, -2021.75, 14.1766, 275.615, 2269.88, -1210.32, 1047.56, 90, 10, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0),
1152(81, 0, 5000, '4 Seville Boulevard', 2653.01, -1989.42, 13.9988, 0.8421, 2269.88, -1210.32, 1047.56, 90, 10, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 20000),
1153(82, 365, 5000, '5 Seville Boulevard', 2672.77, -1989.47, 14.324, 2.4089, 2269.88, -1210.32, 1047.56, 90, 10, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0),
1154(83, 0, 5000, '6 Seville Boulevard', 2673.07, -2020.29, 14.1681, 172.527, 2269.88, -1210.32, 1047.56, 90, 10, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0),
1155(84, 398, 5000, '7 Seville Boulevard', 2695.25, -2020.55, 14.0221, 191.328, 2269.88, -1210.32, 1047.56, 90, 10, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0),
1156(85, 94, 5000, '8 Seville Boulevard', 2696.31, -1990.36, 14.2228, 358.649, 2269.88, -1210.32, 1047.56, 90, 10, 0, 0, 0, 8, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0),
1157(86, 25, 5000, '9 Seville Boulevard', 2751.5, -1962.87, 13.5466, 91.7098, 2269.88, -1210.32, 1047.56, 90, 10, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0),
1158(87, 123, 5000, '10 Seville Boulevard', 2751.5, -1936.4, 13.5389, 96.0967, 2269.88, -1210.32, 1047.56, 90, 10, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0),
1159(88, 0, 5000, '11 Seville Boulevard', 2787.08, -1926.12, 13.5466, 274.675, 2269.88, -1210.32, 1047.56, 90, 10, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0),
1160(89, 123, 5000, '12 Seville Boulevard', 2787.07, -1952.43, 13.5466, 275.302, 2269.88, -1210.32, 1047.56, 90, 10, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0),
1161(90, 224, 5000, '30 Willowfield', 2522.76, -2018.99, 14.074, 218.999, 2269.88, -1210.32, 1047.56, 90, 10, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0),
1162(91, 222, 5000, '31 Willowfield', 2524.17, -1998.12, 14.1127, 349.323, 2269.88, -1210.32, 1047.56, 90, 10, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0),
1163(92, 0, 5000, '32 Willowfield', 2508.49, -1998.37, 13.9025, 7.8104, 2269.88, -1210.32, 1047.56, 90, 10, 0, 0, 1, 5, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0),
1164(93, 0, 5000, '33 Willowfield', 2483.48, -1995.34, 13.8343, 356.217, 2269.88, -1210.32, 1047.56, 90, 10, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0),
1165(94, 0, 5000, '34 Willowfield', 2465.12, -1995.75, 14.0193, 359.35, 2269.88, -1210.32, 1047.56, 90, 10, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0),
1166(95, 0, 5000, '35 Willowfield', 2437.92, -2020.85, 13.9025, 182.663, 2269.88, -1210.32, 1047.56, 90, 10, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0),
1167(96, 224, 5000, '36 Willowfield', 2465.53, -2020.79, 14.1239, 186.109, 2269.88, -1210.32, 1047.56, 90, 10, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0),
1168(97, 310, 5000, '37 Willowfield', 2486.39, -2021.55, 13.9988, 187.363, 2269.88, -1210.32, 1047.56, 90, 10, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0),
1169(98, 0, 5000, '38 Willowfield', 2507.67, -2021.05, 14.2101, 186.736, 2269.88, -1210.32, 1047.56, 90, 10, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0),
1170(99, 0, 3000, 'Apartment - B1', 2275.83, -1785.77, 13.5466, 266.19, 2269.88, -1210.32, 1047.56, 90, 10, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0),
1171(100, 0, 3000, 'Apartment - B2', 2247.07, -1795.85, 13.5466, 95.4216, 2269.88, -1210.32, 1047.56, 90, 10, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0),
1172(101, 0, 2000, 'Apartment C1', 1179.89, -1260.87, 15.1795, 91.7779, 2269.88, -1210.32, 1047.56, 90, 10, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0),
1173(102, 0, 2000, 'Apartment C2', 1187.44, -1260.92, 15.1794, 269.416, 2269.88, -1210.32, 1047.56, 90, 10, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0),
1174(103, 0, 2000, 'Apartment C3', 1187.36, -1254.73, 15.1794, 270.356, 2269.88, -1210.32, 1047.56, 90, 10, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0),
1175(104, 0, 2000, 'Apartment C4', 1187.36, -1254.9, 18.8906, 237.022, 2269.88, -1210.32, 1047.56, 90, 10, 0, 0, 1, 30, 150, 30, 150, 28, 250, 32, 250, 24, 70, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0),
1176(105, 0, 2000, 'Apartment C5', 1179.8, -1254.44, 18.8906, 86.4278, 2269.88, -1210.32, 1047.56, 90, 10, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0),
1177(106, 496, 2000, 'Apartment C6', 1179.89, -1260.82, 18.8983, 95.5146, 2269.88, -1210.32, 1047.56, 90, 10, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0),
1178(107, 126, 2000, 'Apartment C7', 1187.44, -1261.08, 18.8983, 273.49, 2269.88, -1210.32, 1047.56, 90, 10, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0),
1179(108, 0, 2000, 'Apartment C8', 1179.89, -1233.32, 22.1406, 93.6578, 2269.88, -1210.32, 1047.56, 90, 10, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0),
1180(109, 0, 2000, 'Apartment C9', 1187.44, -1233.35, 22.1406, 268.79, 2269.88, -1210.32, 1047.56, 90, 10, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0),
1181(110, 0, 2000, 'Apartment C10', 1187.36, -1227.3, 22.1329, 274.743, 2269.88, -1210.32, 1047.56, 90, 10, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0),
1182(111, 0, 2000, 'Apartment C11', 1179.81, -1227.07, 18.5545, 93.6578, 2269.88, -1210.32, 1047.56, 90, 10, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0),
1183(112, 0, 2000, 'Apartment C12', 1187.36, -1227.32, 18.5545, 265.366, 2269.88, -1210.32, 1047.56, 90, 10, 0, 0, 1, 0, 0, 24, 7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0),
1184(113, 0, 2000, 'Apartment C13', 1187.45, -1233.54, 18.5545, 256.906, 2269.88, -1210.32, 1047.56, 90, 10, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0),
1185(114, 0, 2000, 'Apartment C14', 1179.81, -1254.62, 15.1795, 88.6446, 2269.88, -1210.32, 1047.56, 90, 10, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0),
1186(115, 10, 2000, 'El Corona 1', 1870.76, -2019.6, 13.5466, 94.7565, 2269.88, -1210.32, 1047.56, 90, 10, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0),
1187(116, 189, 2000, 'El Corona 2', 1870.76, -2021.43, 13.5466, 94.7565, 2269.88, -1210.32, 1047.56, 90, 10, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0),
1188(117, 166, 2000, 'El Corona 3', 1895.53, -2021.63, 13.5466, 277.408, 2269.88, -1210.32, 1047.56, 90, 10, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7500),
1189(118, 114, 2000, 'El Corona 4', 1895.53, -2019.4, 13.5466, 277.408, 2269.88, -1210.32, 1047.56, 90, 10, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0),
1190(119, 13, 2000, 'El Corona 5', 1895.48, -2068.92, 15.6688, 179.334, 2269.88, -1210.32, 1047.56, 90, 10, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0),
1191(120, 240, 2000, 'El Corona 6', 1873.35, -2070.76, 15.4968, 181.527, 2269.88, -1210.32, 1047.56, 90, 10, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 25000),
1192(121, 118, 2000, 'El Corona 7', 1851.8, -2070.45, 15.4812, 181.214, 2269.88, -1210.32, 1047.56, 90, 10, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0),
1193(122, 14, 2000, 'El Corona 8', 1857.16, -2040.85, 13.5466, 351.982, 2269.88, -1210.32, 1047.56, 90, 10, 0, 0, 1, 0, 0, 0, 0, 0, 0, 24, 65, 8, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0),
1194(123, 494, 2000, 'El Corona 9', 1867.87, -1985.4, 13.5466, 0.1764, 2269.88, -1210.32, 1047.56, 90, 10, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 500),
1195(124, 14, 2000, 'El Corona 10', 1865.72, -1998.09, 13.5466, 170.922, 2468.26, -1698.24, 1013.51, 90, 2, 0, 0, 1, 8, 1, 0, 0, 24, 42, 24, 42, 24, 42, 24, 42, 24, 42, 24, 42, 24, 42, 24, 42, 0),
1196(125, 268, 2000, 'El Corona 11', 1900.32, -1985.39, 13.5466, 359.551, 2269.88, -1210.32, 1047.56, 90, 10, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0),
1197(126, 114, 2000, 'El Corona 12', 1898.34, -1998.06, 13.5466, 177.188, 2269.88, -1210.32, 1047.56, 90, 10, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0),
1198(127, 11, 2000, 'El Corona 13', 1913.95, -1993.3, 13.5466, 275.576, 295.148, 1473.11, 1080.26, 0, 15, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0),
1199(128, 113, 2000, 'El Corona 14', 1852.28, -1990.19, 13.5466, 91.9607, 2269.88, -1210.32, 1047.56, 90, 10, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4500),
1200(129, 0, 2000, 'El Corona 15', 1853.99, -1914.26, 15.2566, 359.926, 2269.88, -1210.32, 1047.56, 90, 10, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 500),
1201(130, 0, 2000, 'El Corona 16', 1872.36, -1911.79, 15.2566, 2.1149, 2269.88, -1210.32, 1047.56, 90, 10, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0),
1202(131, 438, 2000, 'El Corona 17', 1891.95, -1914.39, 15.2566, 358.355, 2269.88, -1210.32, 1047.56, 90, 10, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0),
1203(132, 0, 2000, 'El Corona 18', 1913.58, -1911.9, 15.2566, 1.1749, 2269.88, -1210.32, 1047.56, 90, 10, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0),
1204(133, 0, 2000, 'El Corona 19', 1928.74, -1915.9, 15.2566, 3.3682, 2269.88, -1210.32, 1047.56, 90, 10, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0),
1205(134, 0, 2000, 'El Corona 20', 1938.54, -1911.45, 15.2566, 273.754, 2269.88, -1210.32, 1047.56, 90, 10, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0),
1206(135, 44, 1, '210 Vinewood Hills', 1258.68, -785.378, 92.0298, 264.674, 1260.87, -785.61, 1091.91, 279.859, 5, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0),
1207(136, 0, 150000, 'LSPD TRAIN - HOUSE', 251.431, -1220.21, 76.1023, 29.3019, 2269.88, -1210.32, 1047.56, 90, 10, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0),
1208(137, 28, 1, 'Martin Luther King Apartment 1', 2228.43, -1150.72, 1025.8, 276.194, 2269.88, -1210.32, 1047.56, 90, 10, 15, 7014, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0),
1209(138, 0, 1, '3 Martin Luther King Jr Apartme', 2242.52, -1170.67, 1029.8, 283.478, 2269.88, -1210.32, 1047.56, 90, 10, 15, 7014, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0),
1210(139, 169, 1, '159 Dead End, El Corona', 1684.86, -2098.53, 13.8343, 3.6054, 2269.88, -1210.32, 1047.56, 90, 10, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0),
1211(140, 164, 1, '2 Martin Luther King Apartment', 2235.46, -1162.57, 1029.8, 179.253, 2269.88, -1210.32, 1047.56, 90, 10, 15, 7014, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0),
1212(141, 0, 5000, '472 Oak Hill Road', 2408, -1106.97, 40.2957, 183.102, 2269.88, -1210.32, 1047.56, 90, 10, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0),
1213(142, 0, 5000, '473 Oak Hill Road', 2457.07, -1102.5, 43.867, 216.606, 2269.88, -1210.32, 1047.56, 90, 10, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0),
1214(143, 0, 5000, '474 Oak Hill Road', 2470.72, -1105.32, 44.4878, 95.2723, 2269.88, -1210.32, 1047.56, 90, 10, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0),
1215(144, 176, 5000, '473 Oak Hill Road', 2438.63, -1105.28, 42.7509, 187.212, 2269.88, -1210.32, 1047.56, 90, 10, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0),
1216(145, 0, 10000, '475 Oak Hill Road', 2519.02, -1112.73, 56.5924, 86.8846, 2269.88, -1210.32, 1047.56, 90, 10, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0),
1217(146, 0, 10000, '476 Oak Hill Road', 2572.29, -1091.87, 67.2257, 234.443, 2269.88, -1210.32, 1047.56, 90, 10, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0),
1218(147, 0, 10000, '477 Oak Hill Road', 2576.68, -1070.79, 69.8321, 269.536, 2269.88, -1210.32, 1047.56, 90, 10, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0),
1219(148, 0, 1, '4 Martin Luther King Apartment', 2238.93, -1192.74, 1033.8, 93.3809, 2269.88, -1210.32, 1047.56, 90, 10, 15, 7014, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0),
1220(150, 231, 1, '911 Vinewood Road', 1111.5, -976.408, 42.7653, 189.737, 2496.08, -1692.21, 1014.74, 176.409, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0),
1221(151, 0, 1, '5 Martin Luther King Apartment', 2225.39, -1189.96, 1029.8, 175.083, 2269.88, -1210.32, 1047.56, 90, 10, 15, 7014, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0),
1222(152, 219, 1, '632 Temple Drive', 993.813, -1059.03, 33.6995, 179.87, 2807.42, -1174.64, 1025.57, 2.9567, 8, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0),
1223(158, 20, 5000, 'Pershing Square.', 1411.37, -1699.79, 13.5394, 56.1618, 226.928, 1114.28, 1081, 270, 5, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0),
1224(159, 0, 5000, '424 Echo parque.', 2091.56, -1184.29, 27.0569, 352.559, 2269.88, -1210.32, 1047.56, 90, 10, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0),
1225(160, 0, 5000, 'Echo parque.', 2093.99, -1122.68, 27.6898, 353.186, 2269.88, -1210.32, 1047.56, 90, 10, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0),
1226(161, 618, 5000, 'Jefferson St.', 2090.62, -1235.18, 26.0191, 181.832, 2269.88, -1210.32, 1047.56, 90, 10, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0),
1227(162, 93, 5000, '3030 Jefferson St', 2110.88, -1244.4, 25.8514, 176.818, 2269.88, -1210.32, 1047.56, 90, 10, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0),
1228(163, 0, 5000, '3020 Jefferson St', 2230.37, -1397.24, 24.5736, 186.532, 2269.88, -1210.32, 1047.56, 90, 10, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0),
1229(164, 0, 5000, '3010 Jefferson St', 2243.4, -1397.24, 24.5736, 183.085, 2269.88, -1210.32, 1047.56, 90, 10, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0),
1230(165, 0, 5000, '3000 Jefferson St', 2256.42, -1397.24, 24.5736, 181.205, 2269.88, -1210.32, 1047.56, 90, 10, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0),
1231(166, 0, 1000, 'Room 1.', 2228.43, -1150.49, 1025.8, 271.822, 2269.88, -1210.32, 1047.56, 90, 10, 15, 7020, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0),
1232(167, 0, 1000, 'Room 2.', 2242.52, -1170.77, 1029.8, 267.122, 2269.88, -1210.32, 1047.56, 90, 10, 15, 7020, 1, 25, 97, 0, 0, 30, 300, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0),
1233(168, 0, 1000, 'Red County st.', 1451.69, 375.744, 19.4004, 343.424, 301.965, 301.119, 999.148, 329.847, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0),
1234(169, 81, 1000, 'El Corona - Room 1', 2228.41, -1150.43, 1025.8, 268.166, 2269.88, -1210.32, 1047.56, 90, 10, 15, 7021, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0),
1235(170, 113, 1000, 'El Corona - Room 2', 2242.52, -1170.78, 1029.8, 264.72, 244.148, 304.842, 999.148, 79.818, 1, 15, 7021, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0),
1236(171, 0, 1000, 'El Corona - Room 3', 2225.73, -1189.96, 1029.8, 178.961, 2269.88, -1210.32, 1047.56, 90, 10, 15, 7021, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0),
1237(172, 11, 1000, 'El Corona - Room 4', 2209.65, -1187.37, 1029.8, 11.8807, 2269.88, -1210.32, 1047.56, 90, 10, 15, 7021, 0, 32, 250, 0, 0, 8, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0),
1238(173, 240, 1000, 'El Corona - Room 5', 2191.89, -1173.03, 1029.8, 82.6946, 2269.88, -1210.32, 1047.56, 90, 10, 15, 7021, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0),
1239(174, 13, 1000, 'El Corona - Room 6', 2193.46, -1138.62, 1029.8, 354.647, 2269.88, -1210.32, 1047.56, 90, 10, 15, 7021, 1, 24, 42, 0, 0, 24, 42, 24, 42, 24, 42, 24, 42, 32, 250, 8, 1, 0, 0, 0, 0, 0),
1240(175, 0, 1000, 'El Corona - Room 7', 2193.25, -1147.67, 1033.8, 174.479, 2269.88, -1210.32, 1047.56, 90, 10, 15, 7021, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0),
1241(176, 425, 1, 'Apartment 27', 2228.43, -1150.53, 1025.8, 272.112, 295.148, 1473.11, 1080.26, 0, 15, 15, 7053, 1, 30, 36, 33, 3, 30, 30, 33, 85, 25, 128, 25, 108, 0, 0, 25, 8, 24, 7, 25, 100, 0),
1242(177, 170, 1, '786 Red County Hills', 980.31, -677.371, 121.976, 218.824, 2324.42, -1148.94, 1050.71, 0, 12, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0),
1243(178, 99, 1, '614 Brooksdale Avenue', 2551.12, -1233.79, 49.3316, 1.1088, 235.292, 1187.37, 1080.26, 0, 3, 0, 0, 1, 24, 1362, 5, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0),
1244(179, 93, 1, '613 Brooksdale Avenue', 2536.83, -1235.61, 43.7218, 183.085, 235.292, 1187.37, 1080.26, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0),
1245(180, 22, 1, '467 Brooksdale Avenue', 2434, -1274.96, 24.7565, 88.9494, 2269.88, -1210.32, 1047.56, 90, 10, 0, 0, 0, 0, 0, 25, 50, 25, 100, 29, 150, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0),
1246(181, 97, 5000, 'Ganton 20', 2327.49, -1681.84, 14.9294, 91.3973, 2269.88, -1210.32, 1047.56, 90, 10, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0),
1247(182, 0, 45000, '290 Vinewood Hills', 1540.41, -851.46, 64.3358, 270.75, 2269.88, -1210.32, 1047.56, 90, 10, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0),
1248(183, 0, 30000, '289 Vinewood Hills', 1535.03, -800.241, 72.8494, 271.812, 2269.88, -1210.32, 1047.56, 90, 10, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0),
1249(184, 0, 30000, '288 Vinewood Hills', 1527.82, -772.586, 80.5781, 321.632, 2269.88, -1210.32, 1047.56, 90, 10, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0),
1250(185, 0, 30000, '291 Vinewood Hills', 1535.77, -885.294, 57.6572, 133.63, 2269.88, -1210.32, 1047.56, 90, 10, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0),
1251(186, 0, 30000, '292 Vinewood Hills', 1468.6, -906.169, 54.8358, 180.944, 2269.88, -1210.32, 1047.56, 90, 10, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0),
1252(187, 0, 30000, '293 Vinewood Hills', 1421.8, -886.232, 50.6861, 179.691, 2269.88, -1210.32, 1047.56, 90, 10, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0),
1253(188, 0, 50000, '172 Vinewood Hills', 1045.15, -642.707, 120.117, 254.866, 1260.64, -785.275, 1091.91, 94.529, 5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0),
1254(189, 0, 12000, '13 Jefferson', 2090.91, -1277.83, 26.1795, 213.122, 2269.88, -1210.32, 1047.56, 90, 10, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0),
1255(190, 262, 17500, '15 Jefferson', 2126.76, -1320.75, 26.624, 359.239, 2269.88, -1210.32, 1047.56, 90, 10, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0),
1256(191, 262, 75000, '752 Vinewood Hills', 1095.13, -647.43, 113.648, 144.842, 2269.88, -1210.32, 1047.56, 90, 10, 0, 0, 1, 24, 16, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0),
1257(192, 44, 1, '173 Willowfield', 2333.25, -1883.56, 15, 176.716, 2495.87, -1693.1, 1014.74, 180, 3, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0),
1258(193, 28, 950000, '895 Richman Hills', 1496.84, -687.898, 95.5633, 2.591, 1261.47, -785.267, 1091.91, 267.014, 5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0),
1259(194, 104, 1, '173 Vinewood Hills ', 1331.94, -633.231, 109.135, 202.812, 2324.42, -1148.94, 1050.71, 0, 12, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0),
1260(195, 387, 1, '27 Jefferson', 2050.72, -1065.77, 25.7835, 51.9308, 2269.88, -1210.32, 1047.56, 90, 10, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 25, 28, 0, 0, 24, 42, 24, 42, 24, 42, 24, 42, 209600),
1261(196, 359, 1, '4000', 2232.48, -1469.34, 24.5816, 1.4982, 2269.88, -1210.32, 1047.56, 90, 10, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0),
1262(197, 94, 1, '4010 Seville Bvld.', 2736.65, -1952.56, 13.5467, 275.912, 2269.88, -1210.32, 1047.56, 90, 10, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0),
1263(198, 170, 1, '4020 Jefferson St', 2263.88, -1469.34, 24.3705, 2.1484, 2269.88, -1210.32, 1047.56, 90, 10, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0),
1264(199, 0, 10000, '107 Burbon Street', 497.411, -1095.07, 82.3591, 179.813, 497.405, -1094.55, 82.3591, 180.898, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0),
1265(200, 262, 25000, 'East Los Santos Car Wash', 2494.14, -1464.71, 24.0254, 186.41, 1062.15, 2077.08, 10.8203, 187.71, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0),
1266(202, 523, 2500, '147 Suger Hill', 1106.55, -299.86, 74.539, 264.17, 2317.8, -1026.21, 1050.22, 0, 9, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0),
1267(203, 359, 2, '478 Oak Hill Road', 2579.67, -1033.45, 69.58, 359.409, 226.291, 1240.06, 1082.14, 90, 2, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0),
1268(204, 0, 1000, '479 Oak Hill Road', 2561.81, -1034.28, 69.8692, 268.855, 2233.79, -1114.27, 1050.88, 0, 5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0),
1269(205, 0, 1000, '480 Oak Hill Road', 2549.41, -1032.38, 69.5789, 183.482, 2233.79, -1114.27, 1050.88, 0, 5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0),
1270(206, 0, 1500, '481 Oak Hill Road', 2526.79, -1033.52, 69.5792, 352.829, 223.162, 1287.52, 1082.14, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0),
1271(207, 540, 4000, '482 Oak Hill Road', 2512.75, -1027.16, 70.0858, 352.202, 2269.88, -1210.32, 1047.56, 90, 10, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0),
1272(208, 0, 1000, '483 Oak Hill Road', 2534.48, -1063.39, 69.5652, 264.782, 2233.79, -1114.27, 1050.88, 0, 5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0),
1273(209, 14, 1000, '484 Oak Hill Road', 2526.09, -1060.61, 69.9707, 90.5895, 2233.79, -1114.27, 1050.88, 0, 5, 0, 0, 1, 24, 42, 24, 42, 24, 42, 24, 42, 24, 42, 24, 42, 24, 42, 24, 42, 24, 42, 24, 42, 0),
1274(210, 30, 2000, '485 Oak Hill Road', 2499.75, -1065.52, 70.2359, 254.465, 223.162, 1287.52, 1082.14, 0, 1, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0),
1275(211, 3, 3000, '1 Dillimore', 743.217, -509.318, 18.0128, 0.7634, 2269.88, -1210.32, 1047.56, 90, 10, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0),
1276(212, 0, 3000, '2 Dillimore', 768.311, -503.482, 18.0128, 1.077, 223.162, 1287.52, 1082.14, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0),
1277(213, 0, 3000, '3 Dillimore', 795.222, -506.15, 18.0128, 0.7634, 225.7, 1022, 1084.02, 0, 7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0),
1278(214, 0, 3000, '4 Dillimore', 818.277, -509.318, 18.0128, 2.6435, 2269.88, -1210.32, 1047.56, 90, 10, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0),
1279(215, 0, 3000, '5 Dillimore', 766.636, -556.784, 18.0128, 179.98, 2269.88, -1210.32, 1047.56, 90, 10, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0),
1280(216, 0, 3000, '6 Dillimore', 745.13, -556.785, 18.0128, 181.535, 23.9584, 1340.61, 1084.38, 0, 10, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0),
1281(217, 523, 3000, '7 Dillimore', 745.673, -591.091, 18.0128, 268.329, 2269.88, -1210.32, 1047.56, 90, 10, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0),
1282(218, 13, 7000, '57 Glen Park', 2023.03, -1120.26, 26.4209, 1.5147, 2269.88, -1210.32, 1047.56, 90, 10, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0),
1283(219, 10, 7000, '56 Glen Park', 2045.57, -1116.65, 26.3617, 174.622, 2269.88, -1210.32, 1047.56, 90, 10, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0),
1284(221, 424, 1, '31 El Monte', 2459.45, -948.157, 80.0822, 351.893, 2269.88, -1210.32, 1047.56, 90, 10, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0),
1285(222, 223, 1, '32 El Monte', 2454.18, -964.925, 80.0729, 98.7406, 318.754, 1116.47, 1083.88, 348.432, 5, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0),
1286(223, 224, 3000, '58 Glen Park', 1999.94, -1114.15, 27.125, 6.1142, 223.162, 1287.52, 1082.14, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 500, 0, 0, 0, 0, 0, 0, 0),
1287(224, 0, 3000, '59 Glen Park', 1955.44, -1115.37, 27.8304, 91.4866, 2269.88, -1210.32, 1047.56, 90, 10, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0),
1288(225, 222, 3000, '60 Glen Park', 1939.1, -1114.48, 27.4521, 2.354, 2269.88, -1210.32, 1047.56, 90, 10, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0),
1289(226, 0, 3000, '61 Glen Park', 1921.56, -1115.1, 27.0883, 93.3666, 2269.88, -1210.32, 1047.56, 90, 10, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0),
1290(227, 150, 3000, '62 Glen Park', 1905.93, -1113.1, 26.6639, 1.559, 2269.88, -1210.32, 1047.56, 90, 10, 0, 0, 1, 24, 42, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 16000),
1291(228, 0, 3000, '63 Glen Park', 1886.15, -1113.8, 26.2758, 89.9197, 2269.88, -1210.32, 1047.56, 90, 10, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0),
1292(229, 17, 1, 'STORAGE', -823.495, 534.756, 1356.86, 312.217, 2269.88, -1210.32, 1047.56, 90, 10, 1, 6032, 0, 0, 0, 23, 20, 23, 20, 23, 20, 23, 20, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0),
1293(230, 239, 1000, '1 Normandy Projects', 2468.45, -1409.83, 28.8335, 177.269, 222.042, 1140.76, 1082.61, 0, 4, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0),
1294(231, 148, 1000, '2 Normandy Projects', 2473.11, -1410.01, 28.8337, 180.088, 22.9675, 1403.84, 1084.43, 0, 5, 0, 0, 1, 22, 17, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0),
1295(232, 0, 1000, '3 Normandy Projects', 2476.28, -1410.02, 28.8337, 180.088, 222.042, 1140.76, 1082.61, 0, 4, 0, 0, 0, 0, 0, 5, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0),
1296(233, 0, 1000, '4 Normandy Projects', 2468.28, -1399.11, 28.8281, 1.1741, 2269.88, -1210.32, 1047.56, 90, 10, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0),
1297(234, 0, 1000, '5 Normandy Projects', 2473.1, -1399.07, 28.8339, 0.5475, 2269.88, -1210.32, 1047.56, 90, 10, 0, 0, 1, 24, 42, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0),
1298(235, 51, 1000, '6 Normandy Projects', 2476.31, -1399.09, 28.8346, 0.5475, 2269.88, -1210.32, 1047.56, 90, 10, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0),
1299(236, 0, 1000, '7 Normandy Projects', 2487.39, -1399.1, 28.8374, 1.5104, 235.292, 1187.37, 1080.26, 0, 3, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0),
1300(237, 0, 1000, '8 Normandy Projects', 2492.25, -1399.09, 28.8386, 359.944, 222.042, 1140.76, 1082.61, 0, 4, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0),
1301(238, 0, 1000, '9 Normandy Projects', 2495.42, -1399.08, 28.8393, 358.064, 2269.88, -1210.32, 1047.56, 90, 10, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0),
1302(239, 0, 1000, '10 Normandy Projects', 2495.37, -1410.03, 28.8393, 177.896, 2269.88, -1210.32, 1047.56, 90, 10, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0),
1303(240, 0, 1000, '11 Normandy Projects', 2492.12, -1410.04, 28.8386, 180.088, 2495.87, -1693.1, 1014.74, 180, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0),
1304(241, 0, 1000, '12 Normandy Projects', 2487.32, -1410.03, 28.8374, 179.776, 295.148, 1473.11, 1080.26, 0, 15, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0),
1305(242, 0, 7500, '747 East Beach, Jacksonville', 2808.08, -1175.92, 25.3801, 359.154, 2495.87, -1693.1, 1014.74, 180, 3, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0),
1306(243, 0, 7500, '746 East Beach, Jacksonville', 2808.06, -1190.79, 25.3418, 180.793, 2495.87, -1693.1, 1014.74, 180, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0),
1307(246, 420, 1, '420 Idlewood Avenue', 1980.38, -1719.04, 17.0303, 77.1138, 140.309, 1366.82, 1083.86, 0, 5, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0),
1308(247, 361, 1, '33 El Monte', 2472.3, -962.44, 80.5252, 358.559, 2269.88, -1210.32, 1047.56, 90, 10, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0),
1309(248, 0, 5000, '468 Brooksdale Avenue', 2434.8, -1289.36, 25.3477, 82.2798, 2269.88, -1210.32, 1047.56, 90, 10, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0),
1310(252, 0, 5000, '469 Brooksdale Avenue', 2434.25, -1303.4, 24.9764, 87.2826, 2269.88, -1210.32, 1047.56, 90, 10, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0),
1311(253, 0, 5000, '170 Brooksdale Avenue', 2434.42, -1320.64, 24.9337, 96.6595, 2269.88, -1210.32, 1047.56, 90, 10, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0),
1312(254, 0, 5000, '171 Brooksdale Avenue', 2439.94, -1338.37, 24.1079, 176.247, 2269.88, -1210.32, 1047.56, 90, 10, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0),
1313(255, 18, 5000, '172 Brooksdale Avenue', 2439.94, -1357.02, 24.1002, 89.0669, 318.708, 1115.47, 1083.88, 6.339, 5, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0),
1314(256, 154, 5000, '164 Temple Drive', 1326.26, -1090.75, 27.9765, 92.0129, 2269.88, -1210.32, 1047.56, 90, 10, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0),
1315(257, 1, 5000, '1 Brooksdale Avenue', 2594.82, -1200.03, 59.2187, 88.3675, 2269.88, -1210.32, 1047.56, 90, 10, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0),
1316(258, 0, 5000, '2 Brooksdale Avenue', 2594.89, -1203.07, 58.4375, 88.1104, 2269.88, -1210.32, 1047.56, 90, 10, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0),
1317(259, 0, 5000, '3 Brooksdale Avenue', 2594.8, -1207.59, 57.5078, 86.5999, 2269.88, -1210.32, 1047.56, 90, 10, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0),
1318(260, 0, 5000, '4 Brooksdale Avenue', 2594.95, -1211.89, 56.375, 89.4761, 2269.88, -1210.32, 1047.56, 90, 10, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0),
1319(261, 0, 5000, '5 Brooksdale Avenue', 2594.83, -1216.26, 54.9765, 87.6523, 2269.88, -1210.32, 1047.56, 90, 10, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0),
1320(262, 0, 5000, '6 Brooksdale Avenue', 2594.96, -1220.63, 53.6693, 85.8847, 2269.88, -1210.32, 1047.56, 90, 10, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0),
1321(263, 0, 5000, '7 Brooksdale Avenue', 2595.03, -1224.64, 52.3763, 88.4476, 2269.88, -1210.32, 1047.56, 90, 10, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0),
1322(264, 0, 5000, '8 Brooksdale Avenue', 2594.76, -1229.18, 51.0468, 93.1476, 2269.88, -1210.32, 1047.56, 90, 10, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0),
1323(265, 0, 5000, '9 Brooksdale Avenue', 2595.12, -1233.49, 49.8203, 92.2638, 2269.88, -1210.32, 1047.56, 90, 10, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0),
1324(266, 0, 5000, '10 Brooksdale Avenue', 2594.7, -1237.98, 48.4218, 91.9505, 2269.88, -1210.32, 1047.56, 90, 10, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0),
1325(267, 0, 5000, '11 Brooksdale Avenue', 2600.9, -1238.14, 48.6836, 273.059, 2269.88, -1210.32, 1047.56, 90, 10, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0),
1326(268, 0, 5000, '12 Brooksdale Avenue', 2600.71, -1233.47, 49.8203, 267.788, 2269.88, -1210.32, 1047.56, 90, 10, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0),
1327(269, 0, 5000, '13 Brooksdale Avenue', 2600.47, -1229.22, 51.0468, 273.485, 2269.88, -1210.32, 1047.56, 90, 10, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0),
1328(270, 0, 5000, '14 Brooksdale Avenue', 2600.81, -1224.69, 52.341, 272.858, 2269.88, -1210.32, 1047.56, 90, 10, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0),
1329(271, 0, 5000, '15 Brooksdale Avenue', 2600.67, -1220.61, 53.6372, 273.798, 2269.88, -1210.32, 1047.56, 90, 10, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0),
1330(272, 0, 5000, '16 Brooksdale Avenue', 2600.38, -1216.36, 54.9765, 271.604, 2269.88, -1210.32, 1047.56, 90, 10, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0),
1331(273, 0, 5000, '17 Brooksdale Avenue', 2600.89, -1211.74, 56.6269, 269.467, 2269.88, -1210.32, 1047.56, 90, 10, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0),
1332(274, 0, 5000, '18 Brooksdale Avenue', 2600.71, -1207.67, 57.5078, 274.481, 2269.88, -1210.32, 1047.56, 90, 10, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0),
1333(275, 0, 5000, '19 Brooksdale Avenue', 2600.58, -1203.06, 58.4375, 268.27, 2269.88, -1210.32, 1047.56, 90, 10, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0),
1334(276, 0, 5000, '20 Brooksdale Avenue', 2600.83, -1200.14, 59.2187, 268.013, 2269.88, -1210.32, 1047.56, 90, 10, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0),
1335(277, 0, 4000, 'Apartment 290', 2240.05, -1170.63, 1029.8, 91.0041, 2269.88, -1210.32, 1047.56, 90, 10, 15, 7053, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0),
1336(278, 0, 4000, 'Apartment 291', 2242.36, -1170.67, 1029.8, 271.237, 2269.88, -1210.32, 1047.56, 90, 10, 15, 7053, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0),
1337(279, 0, 4000, 'Apartment 289', 2239.89, -1159.66, 1029.8, 95.564, 2269.88, -1210.32, 1047.56, 90, 10, 15, 7053, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0),
1338(280, 0, 4000, 'Apartment 288', 2242.57, -1159.86, 1029.8, 271.949, 2269.88, -1210.32, 1047.56, 90, 10, 15, 7053, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0),
1339(282, 25, 5000, '633 Dead End, El Corona', 1801.86, -2099.41, 14.021, 352.112, 226.291, 1240.06, 1082.14, 90, 2, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5000),
1340(283, 0, 5000, '634 Dead End, El Corona', 1782.15, -2126.17, 14.0678, 181.826, 226.291, 1240.06, 1082.14, 90, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0),
1341(284, 0, 5000, '636 Dead End, El Corona', 1761.19, -2125.43, 14.0566, 180.572, 226.291, 1240.06, 1082.14, 90, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0),
1342(285, 0, 5000, '638 Dead End, El Corona', 1734.75, -2130.19, 14.021, 178.547, 226.291, 1240.06, 1082.14, 90, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0),
1343(286, 0, 5000, '640 Dead End, El Corona', 1715.09, -2125.15, 14.0566, 181.849, 226.291, 1240.06, 1082.14, 90, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0),
1344(287, 0, 5000, '642 Dead End, El Corona', 1695.56, -2125.69, 13.81, 178.571, 226.291, 1240.06, 1082.14, 90, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0),
1345(288, 0, 5000, '644 Dead End, El Corona', 1673.74, -2122.34, 14.146, 133.619, 226.291, 1240.06, 1082.14, 90, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
1346
1347-- --------------------------------------------------------
1348
1349--
1350-- Table structure for table `housestorage`
1351--
1352
1353CREATE TABLE IF NOT EXISTS `housestorage` (
1354 `ID` int(12) DEFAULT '0',
1355 `itemID` int(12) NOT NULL AUTO_INCREMENT,
1356 `itemName` varchar(32) DEFAULT NULL,
1357 `itemModel` int(12) DEFAULT '0',
1358 `itemQuantity` int(12) DEFAULT '0',
1359 PRIMARY KEY (`itemID`)
1360) ENGINE=InnoDB DEFAULT CHARSET=latin1 AUTO_INCREMENT=1 ;
1361
1362-- --------------------------------------------------------
1363
1364--
1365-- Table structure for table `impoundlots`
1366--
1367
1368CREATE TABLE IF NOT EXISTS `impoundlots` (
1369 `impoundID` int(12) NOT NULL AUTO_INCREMENT,
1370 `impoundLotX` float DEFAULT '0',
1371 `impoundLotY` float DEFAULT '0',
1372 `impoundLotZ` float DEFAULT '0',
1373 `impoundReleaseX` float DEFAULT '0',
1374 `impoundReleaseY` float DEFAULT '0',
1375 `impoundReleaseZ` float DEFAULT '0',
1376 `impoundReleaseInt` int(12) DEFAULT '0',
1377 `impoundReleaseWorld` int(12) DEFAULT '0',
1378 `impoundReleaseA` float DEFAULT '0',
1379 PRIMARY KEY (`impoundID`)
1380) ENGINE=InnoDB DEFAULT CHARSET=latin1 AUTO_INCREMENT=1 ;
1381
1382-- --------------------------------------------------------
1383
1384--
1385-- Table structure for table `inventory`
1386--
1387
1388CREATE TABLE IF NOT EXISTS `inventory` (
1389 `ID` int(12) DEFAULT '0',
1390 `invID` int(12) NOT NULL AUTO_INCREMENT,
1391 `invItem` varchar(32) DEFAULT NULL,
1392 `invModel` int(12) DEFAULT '0',
1393 `invQuantity` int(12) DEFAULT '0',
1394 PRIMARY KEY (`invID`)
1395) ENGINE=InnoDB DEFAULT CHARSET=latin1 AUTO_INCREMENT=1 ;
1396
1397-- --------------------------------------------------------
1398
1399--
1400-- Table structure for table `jobs`
1401--
1402
1403CREATE TABLE IF NOT EXISTS `jobs` (
1404 `jobID` int(12) NOT NULL AUTO_INCREMENT,
1405 `jobPosX` float DEFAULT '0',
1406 `jobPosY` float DEFAULT '0',
1407 `jobPosZ` float DEFAULT '0',
1408 `jobPointX` float DEFAULT '0',
1409 `jobPointY` float DEFAULT '0',
1410 `jobPointZ` float DEFAULT '0',
1411 `jobDeliverX` float DEFAULT '0',
1412 `jobDeliverY` float DEFAULT '0',
1413 `jobDeliverZ` float DEFAULT '0',
1414 `jobInterior` int(12) DEFAULT '0',
1415 `jobWorld` int(12) DEFAULT '0',
1416 `jobType` int(12) DEFAULT '0',
1417 `jobPointInt` int(12) DEFAULT '0',
1418 `jobPointWorld` int(12) DEFAULT '0',
1419 PRIMARY KEY (`jobID`)
1420) ENGINE=InnoDB DEFAULT CHARSET=latin1 AUTO_INCREMENT=35 ;
1421
1422--
1423-- Dumping data for table `jobs`
1424--
1425
1426INSERT INTO `jobs` (`jobID`, `jobPosX`, `jobPosY`, `jobPosZ`, `jobPointX`, `jobPointY`, `jobPointZ`, `jobDeliverX`, `jobDeliverY`, `jobDeliverZ`, `jobInterior`, `jobWorld`, `jobType`, `jobPointInt`, `jobPointWorld`) VALUES
1427(13, 2446.43, -2118.8, 13.5468, 2452.66, -2116.49, 13.5529, 0, 0, 0, 0, 0, 1, 0, 0),
1428(17, 1844.17, -1760.96, 13.5468, 0, 0, 0, 0, 0, 0, 0, 0, 4, 0, 0),
1429(18, 790.254, -1620.72, 13.3905, 0, 0, 0, 0, 0, 0, 0, 0, 6, 0, 0),
1430(19, 2194.4, -1974.56, 13.5592, 2184.69, -1988.42, 13.5499, 0, 0, 0, 0, 0, 7, 0, 0),
1431(20, 2561.64, -1293.43, 1044.12, 2558.7, -1295.85, 1044.12, 0, 0, 0, 2, 7013, 9, 2, 7013),
1432(31, 937.282, 2117.79, 1011.02, 941.023, 2163.11, 1011.03, 0, 0, 0, 1, 7019, 9, 1, 7019),
1433(32, 2562.13, -1293.56, 1044.12, 0, 0, 0, 0, 0, 0, 2, 7049, 9, 0, 0),
1434(34, 2562.26, -1293.47, 1044.12, 0, 0, 0, 0, 0, 0, 2, 0, 9, 0, 0);
1435
1436-- --------------------------------------------------------
1437
1438--
1439-- Table structure for table `namechanges`
1440--
1441
1442CREATE TABLE IF NOT EXISTS `namechanges` (
1443 `ID` int(12) NOT NULL AUTO_INCREMENT,
1444 `OldName` varchar(24) DEFAULT NULL,
1445 `NewName` varchar(24) DEFAULT NULL,
1446 `Date` varchar(36) DEFAULT NULL,
1447 PRIMARY KEY (`ID`)
1448) ENGINE=InnoDB DEFAULT CHARSET=latin1 AUTO_INCREMENT=1 ;
1449
1450-- --------------------------------------------------------
1451
1452--
1453-- Table structure for table `plants`
1454--
1455
1456CREATE TABLE IF NOT EXISTS `plants` (
1457 `plantID` int(12) NOT NULL AUTO_INCREMENT,
1458 `plantType` int(12) DEFAULT '0',
1459 `plantDrugs` int(12) DEFAULT '0',
1460 `plantX` float DEFAULT '0',
1461 `plantY` float DEFAULT '0',
1462 `plantZ` float DEFAULT '0',
1463 `plantA` float DEFAULT '0',
1464 `plantInterior` int(12) DEFAULT '0',
1465 `plantWorld` int(12) DEFAULT '0',
1466 PRIMARY KEY (`plantID`)
1467) ENGINE=InnoDB DEFAULT CHARSET=latin1 AUTO_INCREMENT=1 ;
1468
1469-- --------------------------------------------------------
1470
1471--
1472-- Table structure for table `pumps`
1473--
1474
1475CREATE TABLE IF NOT EXISTS `pumps` (
1476 `ID` int(12) DEFAULT '0',
1477 `pumpID` int(12) NOT NULL AUTO_INCREMENT,
1478 `pumpPosX` float DEFAULT '0',
1479 `pumpPosY` float DEFAULT '0',
1480 `pumpPosZ` float DEFAULT '0',
1481 `pumpPosA` float DEFAULT '0',
1482 `pumpFuel` int(12) DEFAULT '0',
1483 PRIMARY KEY (`pumpID`)
1484) ENGINE=InnoDB DEFAULT CHARSET=latin1 AUTO_INCREMENT=22 ;
1485
1486--
1487-- Dumping data for table `pumps`
1488--
1489
1490INSERT INTO `pumps` (`ID`, `pumpID`, `pumpPosX`, `pumpPosY`, `pumpPosZ`, `pumpPosA`, `pumpFuel`) VALUES
1491(67, 15, 655.642, -570.239, 16.4113, 91.5188, 1454),
1492(67, 16, 655.598, -559.56, 16.4514, 88.9889, 2000),
1493(16, 17, 1941.36, -1767.12, 14.1428, 273.761, 181133),
1494(16, 18, 1941.83, -1771.51, 14.1625, -90.7393, 181131),
1495(16, 20, 1941.89, -1774.31, 14.1511, -91.0074, 179042),
1496(16, 21, 1941.82, -1777.77, 14.1302, -91.1277, 179743);
1497
1498-- --------------------------------------------------------
1499
1500--
1501-- Table structure for table `speedcameras`
1502--
1503
1504CREATE TABLE IF NOT EXISTS `speedcameras` (
1505 `speedID` int(12) NOT NULL AUTO_INCREMENT,
1506 `speedRange` float DEFAULT '0',
1507 `speedLimit` float DEFAULT '0',
1508 `speedX` float DEFAULT '0',
1509 `speedY` float DEFAULT '0',
1510 `speedZ` float DEFAULT '0',
1511 `speedAngle` float DEFAULT '0',
1512 PRIMARY KEY (`speedID`)
1513) ENGINE=InnoDB DEFAULT CHARSET=latin1 AUTO_INCREMENT=1 ;
1514
1515-- --------------------------------------------------------
1516
1517--
1518-- Table structure for table `tickets`
1519--
1520
1521CREATE TABLE IF NOT EXISTS `tickets` (
1522 `ID` int(12) DEFAULT '0',
1523 `ticketID` int(12) NOT NULL AUTO_INCREMENT,
1524 `ticketFee` int(12) DEFAULT '0',
1525 `ticketBy` varchar(24) DEFAULT NULL,
1526 `ticketDate` varchar(36) DEFAULT NULL,
1527 `ticketReason` varchar(32) DEFAULT NULL,
1528 PRIMARY KEY (`ticketID`)
1529) ENGINE=InnoDB DEFAULT CHARSET=latin1 AUTO_INCREMENT=1 ;
1530
1531-- --------------------------------------------------------
1532
1533--
1534-- Table structure for table `vendors`
1535--
1536
1537CREATE TABLE IF NOT EXISTS `vendors` (
1538 `vendorID` int(12) NOT NULL AUTO_INCREMENT,
1539 `vendorType` int(12) DEFAULT '0',
1540 `vendorX` float DEFAULT '0',
1541 `vendorY` float DEFAULT '0',
1542 `vendorZ` float DEFAULT '0',
1543 `vendorA` float DEFAULT '0',
1544 `vendorInterior` int(12) DEFAULT '0',
1545 `vendorWorld` int(12) DEFAULT '0',
1546 PRIMARY KEY (`vendorID`)
1547) ENGINE=InnoDB DEFAULT CHARSET=latin1 AUTO_INCREMENT=1 ;
1548
1549-- --------------------------------------------------------
1550
1551--
1552-- Table structure for table `warrants`
1553--
1554
1555CREATE TABLE IF NOT EXISTS `warrants` (
1556 `ID` int(12) NOT NULL AUTO_INCREMENT,
1557 `Suspect` varchar(24) DEFAULT NULL,
1558 `Username` varchar(24) DEFAULT NULL,
1559 `Date` varchar(36) DEFAULT NULL,
1560 `Description` varchar(128) DEFAULT NULL,
1561 PRIMARY KEY (`ID`)
1562) ENGINE=InnoDB DEFAULT CHARSET=latin1 AUTO_INCREMENT=1 ;
1563
1564/*!40101 SET CHARACTER_SET_CLIENT=@OLD_CHARACTER_SET_CLIENT */;
1565/*!40101 SET CHARACTER_SET_RESULTS=@OLD_CHARACTER_SET_RESULTS */;
1566/*!40101 SET COLLATION_CONNECTION=@OLD_COLLATION_CONNECTION */;