· 9 years ago · Mar 18, 2017, 09:16 PM
1Windowscreensnow.com
2-- MySQL dump 10.11
3--
4-- Host: mysqlv106 Database: windowscreensnow
5-- ------------------------------------------------------
6-- Server version 5.0.91-log
7
8/*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */;
9/*!40101 SET @OLD_CHARACTER_SET_RESULTS=@@CHARACTER_SET_RESULTS */;
10/*!40101 SET @OLD_COLLATION_CONNECTION=@@COLLATION_CONNECTION */;
11/*!40101 SET NAMES utf8 */;
12/*!40103 SET @OLD_TIME_ZONE=@@TIME_ZONE */;
13/*!40103 SET TIME_ZONE='+00:00' */;
14/*!40014 SET @OLD_UNIQUE_CHECKS=@@UNIQUE_CHECKS, UNIQUE_CHECKS=0 */;
15/*!40014 SET @OLD_FOREIGN_KEY_CHECKS=@@FOREIGN_KEY_CHECKS, FOREIGN_KEY_CHECKS=0 */;
16/*!40101 SET @OLD_SQL_MODE=@@SQL_MODE, SQL_MODE='NO_AUTO_VALUE_ON_ZERO' */;
17/*!40111 SET @OLD_SQL_NOTES=@@SQL_NOTES, SQL_NOTES=0 */;
18
19--
20-- Table structure for table `address`
21--
22
23DROP TABLE IF EXISTS `address`;
24SET @saved_cs_client = @@character_set_client;
25SET character_set_client = utf8;
26CREATE TABLE `address` (
27 `address_id` int(11) NOT NULL auto_increment,
28 `customer_id` int(11) NOT NULL,
29 `firstname` varchar(32) collate utf8_bin NOT NULL default '',
30 `lastname` varchar(32) collate utf8_bin NOT NULL default '',
31 `company` varchar(32) collate utf8_bin NOT NULL,
32 `company_id` varchar(32) collate utf8_bin NOT NULL,
33 `tax_id` varchar(32) collate utf8_bin NOT NULL,
34 `address_1` varchar(128) collate utf8_bin NOT NULL,
35 `address_2` varchar(128) collate utf8_bin NOT NULL,
36 `city` varchar(128) collate utf8_bin NOT NULL,
37 `postcode` varchar(10) collate utf8_bin NOT NULL,
38 `country_id` int(11) NOT NULL default '0',
39 `zone_id` int(11) NOT NULL default '0',
40 PRIMARY KEY (`address_id`),
41 KEY `customer_id` (`customer_id`)
42) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_bin;
43SET character_set_client = @saved_cs_client;
44
45--
46-- Dumping data for table `address`
47--
48
49LOCK TABLES `address` WRITE;
50/*!40000 ALTER TABLE `address` DISABLE KEYS */;
51/*!40000 ALTER TABLE `address` ENABLE KEYS */;
52UNLOCK TABLES;
53
54--
55-- Table structure for table `affiliate`
56--
57
58DROP TABLE IF EXISTS `affiliate`;
59SET @saved_cs_client = @@character_set_client;
60SET character_set_client = utf8;
61CREATE TABLE `affiliate` (
62 `affiliate_id` int(11) NOT NULL auto_increment,
63 `firstname` varchar(32) collate utf8_bin NOT NULL default '',
64 `lastname` varchar(32) collate utf8_bin NOT NULL default '',
65 `email` varchar(96) collate utf8_bin NOT NULL default '',
66 `telephone` varchar(32) collate utf8_bin NOT NULL default '',
67 `fax` varchar(32) collate utf8_bin NOT NULL default '',
68 `password` varchar(40) collate utf8_bin NOT NULL default '',
69 `salt` varchar(9) collate utf8_bin NOT NULL default '',
70 `company` varchar(32) collate utf8_bin NOT NULL,
71 `website` varchar(255) collate utf8_bin NOT NULL,
72 `address_1` varchar(128) collate utf8_bin NOT NULL default '',
73 `address_2` varchar(128) collate utf8_bin NOT NULL,
74 `city` varchar(128) collate utf8_bin NOT NULL default '',
75 `postcode` varchar(10) collate utf8_bin NOT NULL default '',
76 `country_id` int(11) NOT NULL,
77 `zone_id` int(11) NOT NULL,
78 `code` varchar(64) collate utf8_bin NOT NULL,
79 `commission` decimal(4,2) NOT NULL default '0.00',
80 `tax` varchar(64) collate utf8_bin NOT NULL,
81 `payment` varchar(6) collate utf8_bin NOT NULL,
82 `cheque` varchar(100) collate utf8_bin NOT NULL default '',
83 `paypal` varchar(64) collate utf8_bin NOT NULL default '',
84 `bank_name` varchar(64) collate utf8_bin NOT NULL default '',
85 `bank_branch_number` varchar(64) collate utf8_bin NOT NULL default '',
86 `bank_swift_code` varchar(64) collate utf8_bin NOT NULL default '',
87 `bank_account_name` varchar(64) collate utf8_bin NOT NULL default '',
88 `bank_account_number` varchar(64) collate utf8_bin NOT NULL default '',
89 `ip` varchar(40) collate utf8_bin NOT NULL,
90 `status` tinyint(1) NOT NULL,
91 `approved` tinyint(1) NOT NULL,
92 `date_added` datetime NOT NULL,
93 PRIMARY KEY (`affiliate_id`)
94) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_bin;
95SET character_set_client = @saved_cs_client;
96
97--
98-- Dumping data for table `affiliate`
99--
100
101LOCK TABLES `affiliate` WRITE;
102/*!40000 ALTER TABLE `affiliate` DISABLE KEYS */;
103/*!40000 ALTER TABLE `affiliate` ENABLE KEYS */;
104UNLOCK TABLES;
105
106--
107-- Table structure for table `affiliate_transaction`
108--
109
110DROP TABLE IF EXISTS `affiliate_transaction`;
111SET @saved_cs_client = @@character_set_client;
112SET character_set_client = utf8;
113CREATE TABLE `affiliate_transaction` (
114 `affiliate_transaction_id` int(11) NOT NULL auto_increment,
115 `affiliate_id` int(11) NOT NULL,
116 `order_id` int(11) NOT NULL,
117 `description` text collate utf8_bin NOT NULL,
118 `amount` decimal(15,4) NOT NULL,
119 `date_added` datetime NOT NULL,
120 PRIMARY KEY (`affiliate_transaction_id`)
121) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_bin;
122SET character_set_client = @saved_cs_client;
123
124--
125-- Dumping data for table `affiliate_transaction`
126--
127
128LOCK TABLES `affiliate_transaction` WRITE;
129/*!40000 ALTER TABLE `affiliate_transaction` DISABLE KEYS */;
130/*!40000 ALTER TABLE `affiliate_transaction` ENABLE KEYS */;
131UNLOCK TABLES;
132
133--
134-- Table structure for table `attribute`
135--
136
137DROP TABLE IF EXISTS `attribute`;
138SET @saved_cs_client = @@character_set_client;
139SET character_set_client = utf8;
140CREATE TABLE `attribute` (
141 `attribute_id` int(11) NOT NULL auto_increment,
142 `attribute_group_id` int(11) NOT NULL,
143 `sort_order` int(3) NOT NULL,
144 PRIMARY KEY (`attribute_id`)
145) ENGINE=MyISAM AUTO_INCREMENT=15 DEFAULT CHARSET=utf8 COLLATE=utf8_bin;
146SET character_set_client = @saved_cs_client;
147
148--
149-- Dumping data for table `attribute`
150--
151
152LOCK TABLES `attribute` WRITE;
153/*!40000 ALTER TABLE `attribute` DISABLE KEYS */;
154INSERT INTO `attribute` VALUES (14,3,2),(13,3,0);
155/*!40000 ALTER TABLE `attribute` ENABLE KEYS */;
156UNLOCK TABLES;
157
158--
159-- Table structure for table `attribute_description`
160--
161
162DROP TABLE IF EXISTS `attribute_description`;
163SET @saved_cs_client = @@character_set_client;
164SET character_set_client = utf8;
165CREATE TABLE `attribute_description` (
166 `attribute_id` int(11) NOT NULL,
167 `language_id` int(11) NOT NULL,
168 `name` varchar(64) collate utf8_bin NOT NULL,
169 PRIMARY KEY (`attribute_id`,`language_id`)
170) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_bin;
171SET character_set_client = @saved_cs_client;
172
173--
174-- Dumping data for table `attribute_description`
175--
176
177LOCK TABLES `attribute_description` WRITE;
178/*!40000 ALTER TABLE `attribute_description` DISABLE KEYS */;
179INSERT INTO `attribute_description` VALUES (14,1,'Mesh Type'),(13,1,'Size');
180/*!40000 ALTER TABLE `attribute_description` ENABLE KEYS */;
181UNLOCK TABLES;
182
183--
184-- Table structure for table `attribute_group`
185--
186
187DROP TABLE IF EXISTS `attribute_group`;
188SET @saved_cs_client = @@character_set_client;
189SET character_set_client = utf8;
190CREATE TABLE `attribute_group` (
191 `attribute_group_id` int(11) NOT NULL auto_increment,
192 `sort_order` int(3) NOT NULL,
193 PRIMARY KEY (`attribute_group_id`)
194) ENGINE=MyISAM AUTO_INCREMENT=8 DEFAULT CHARSET=utf8 COLLATE=utf8_bin;
195SET character_set_client = @saved_cs_client;
196
197--
198-- Dumping data for table `attribute_group`
199--
200
201LOCK TABLES `attribute_group` WRITE;
202/*!40000 ALTER TABLE `attribute_group` DISABLE KEYS */;
203INSERT INTO `attribute_group` VALUES (3,1);
204/*!40000 ALTER TABLE `attribute_group` ENABLE KEYS */;
205UNLOCK TABLES;
206
207--
208-- Table structure for table `attribute_group_description`
209--
210
211DROP TABLE IF EXISTS `attribute_group_description`;
212SET @saved_cs_client = @@character_set_client;
213SET character_set_client = utf8;
214CREATE TABLE `attribute_group_description` (
215 `attribute_group_id` int(11) NOT NULL,
216 `language_id` int(11) NOT NULL,
217 `name` varchar(64) collate utf8_bin NOT NULL,
218 PRIMARY KEY (`attribute_group_id`,`language_id`)
219) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_bin;
220SET character_set_client = @saved_cs_client;
221
222--
223-- Dumping data for table `attribute_group_description`
224--
225
226LOCK TABLES `attribute_group_description` WRITE;
227/*!40000 ALTER TABLE `attribute_group_description` DISABLE KEYS */;
228INSERT INTO `attribute_group_description` VALUES (3,1,'Specifications');
229/*!40000 ALTER TABLE `attribute_group_description` ENABLE KEYS */;
230UNLOCK TABLES;
231
232--
233-- Table structure for table `banner`
234--
235
236DROP TABLE IF EXISTS `banner`;
237SET @saved_cs_client = @@character_set_client;
238SET character_set_client = utf8;
239CREATE TABLE `banner` (
240 `banner_id` int(11) NOT NULL auto_increment,
241 `name` varchar(64) collate utf8_bin NOT NULL,
242 `status` tinyint(1) NOT NULL,
243 PRIMARY KEY (`banner_id`)
244) ENGINE=MyISAM AUTO_INCREMENT=11 DEFAULT CHARSET=utf8 COLLATE=utf8_bin;
245SET character_set_client = @saved_cs_client;
246
247--
248-- Dumping data for table `banner`
249--
250
251LOCK TABLES `banner` WRITE;
252/*!40000 ALTER TABLE `banner` DISABLE KEYS */;
253INSERT INTO `banner` VALUES (10,'carousel 1',1),(9,'Home Slider',1);
254/*!40000 ALTER TABLE `banner` ENABLE KEYS */;
255UNLOCK TABLES;
256
257--
258-- Table structure for table `banner_image`
259--
260
261DROP TABLE IF EXISTS `banner_image`;
262SET @saved_cs_client = @@character_set_client;
263SET character_set_client = utf8;
264CREATE TABLE `banner_image` (
265 `banner_image_id` int(11) NOT NULL auto_increment,
266 `banner_id` int(11) NOT NULL,
267 `link` varchar(255) collate utf8_bin NOT NULL,
268 `image` varchar(255) collate utf8_bin NOT NULL,
269 PRIMARY KEY (`banner_image_id`)
270) ENGINE=MyISAM AUTO_INCREMENT=178 DEFAULT CHARSET=utf8 COLLATE=utf8_bin;
271SET character_set_client = @saved_cs_client;
272
273--
274-- Dumping data for table `banner_image`
275--
276
277LOCK TABLES `banner_image` WRITE;
278/*!40000 ALTER TABLE `banner_image` DISABLE KEYS */;
279INSERT INTO `banner_image` VALUES (177,9,'','data/fall-special.jpg'),(171,10,'http://www.windowscreensnow.com/index.php?route=product/category&path=59','data/screens.jpg'),(176,9,'','data/factory-direct2.jpg'),(170,10,'http://www.windowscreensnow.com/index.php?route=product/category&path=60','data/Patio-doors-1255.jpg'),(175,9,'','data/protect-you-family.jpg'),(174,9,'','data/sick-and-tired.jpg'),(173,9,'','data/one-stop-source.jpg'),(172,9,'','data/save-time.jpg'),(168,10,'','data/screen-rolls2.jpg'),(169,10,'http://www.windowscreensnow.com/index.php?route=product/category&path=62','data/New-Components.jpg'),(167,10,'http://www.windowscreensnow.com/index.php?route=product/category&path=64','data/soffit-vent-184.jpg'),(166,10,'http://www.windowscreensnow.com/index.php?route=product/category&path=61','data/screenkit-good.jpg');
280/*!40000 ALTER TABLE `banner_image` ENABLE KEYS */;
281UNLOCK TABLES;
282
283--
284-- Table structure for table `banner_image_description`
285--
286
287DROP TABLE IF EXISTS `banner_image_description`;
288SET @saved_cs_client = @@character_set_client;
289SET character_set_client = utf8;
290CREATE TABLE `banner_image_description` (
291 `banner_image_id` int(11) NOT NULL,
292 `language_id` int(11) NOT NULL,
293 `banner_id` int(11) NOT NULL,
294 `title` varchar(64) collate utf8_bin NOT NULL,
295 PRIMARY KEY (`banner_image_id`,`language_id`)
296) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_bin;
297SET character_set_client = @saved_cs_client;
298
299--
300-- Dumping data for table `banner_image_description`
301--
302
303LOCK TABLES `banner_image_description` WRITE;
304/*!40000 ALTER TABLE `banner_image_description` DISABLE KEYS */;
305INSERT INTO `banner_image_description` VALUES (171,1,10,'Window Screens'),(175,1,9,'protect your family'),(174,1,9,'sick and tired'),(173,1,9,'one stop source'),(172,1,9,'save time '),(170,1,10,'Screen Doors'),(169,1,10,'Parts and Components'),(168,1,10,'Screen Rolls'),(167,1,10,'Soffit Vents'),(166,1,10,'Screen Kits'),(176,1,9,'factory direct'),(177,1,9,'fall special');
306/*!40000 ALTER TABLE `banner_image_description` ENABLE KEYS */;
307UNLOCK TABLES;
308
309--
310-- Table structure for table `category`
311--
312
313DROP TABLE IF EXISTS `category`;
314SET @saved_cs_client = @@character_set_client;
315SET character_set_client = utf8;
316CREATE TABLE `category` (
317 `category_id` int(11) NOT NULL auto_increment,
318 `image` varchar(255) collate utf8_bin default NULL,
319 `parent_id` int(11) NOT NULL default '0',
320 `top` tinyint(1) NOT NULL,
321 `column` int(3) NOT NULL,
322 `sort_order` int(3) NOT NULL default '0',
323 `status` tinyint(1) NOT NULL,
324 `date_added` datetime NOT NULL default '0000-00-00 00:00:00',
325 `date_modified` datetime NOT NULL default '0000-00-00 00:00:00',
326 PRIMARY KEY (`category_id`)
327) ENGINE=MyISAM AUTO_INCREMENT=82 DEFAULT CHARSET=utf8 COLLATE=utf8_bin;
328SET character_set_client = @saved_cs_client;
329
330--
331-- Dumping data for table `category`
332--
333
334LOCK TABLES `category` WRITE;
335/*!40000 ALTER TABLE `category` DISABLE KEYS */;
336INSERT INTO `category` VALUES (76,'data/patio-screen-door-kit-1.jpg',61,0,1,1,1,'2012-11-26 00:05:22','2012-12-31 22:32:24'),(71,'data/New-Components.jpg',62,0,1,0,1,'2012-11-24 14:44:51','2013-01-01 00:23:31'),(72,'data/Screen-Door-Kit.jpg',62,0,1,2,1,'2012-11-25 12:00:49','2013-01-01 00:59:18'),(73,'data/Spline-roller.jpg',62,0,1,3,1,'2012-11-25 20:10:34','2013-01-01 01:06:58'),(74,'data/Screenkits.jpg',61,0,1,0,1,'2012-11-26 00:03:38','2012-12-31 21:59:53'),(70,'',63,0,1,3,1,'2012-10-29 21:51:38','2012-10-29 21:51:38'),(68,'data/window-screen-roll.jpg',63,0,1,0,1,'2012-10-28 09:58:05','2013-01-01 01:25:51'),(67,'data/Aluminum-Screen-Rolls.gif',63,0,1,1,1,'2012-10-28 09:54:26','2012-10-29 21:52:32'),(66,'',0,1,1,7,1,'2012-10-14 18:52:02','2012-10-18 18:24:56'),(77,'data/patio screen.jpg',62,0,1,3,1,'2012-11-26 21:04:25','2013-01-01 00:48:32'),(64,'',0,1,1,6,1,'2012-08-28 21:56:41','2012-08-28 21:56:41'),(63,'data/screen-rolls2.jpg',0,1,1,5,1,'2012-08-28 21:56:09','2013-01-01 01:16:45'),(62,'data/New-Components.jpg',0,1,1,4,1,'2012-08-28 21:55:19','2013-01-01 00:21:20'),(61,'data/Screenkits_edited-1.jpg',0,1,1,3,1,'2012-08-28 21:54:38','2012-12-31 22:22:17'),(60,'data/Patio-doors-1255.jpg',0,1,1,2,1,'2012-08-28 21:52:43','2012-12-31 22:22:54'),(59,'data/wholesale-window-screens.jpg',0,1,1,1,1,'2012-08-28 21:41:54','2012-12-31 21:46:04'),(78,'data/screen-mesh-pallet.jpg',66,0,1,0,1,'2012-12-30 20:56:41','2012-12-30 21:21:46'),(81,'data/New-Components.jpg',66,0,1,3,1,'2012-12-31 12:37:37','2012-12-31 12:38:33'),(80,'data/Screen-Frame-color.gif',66,0,1,0,1,'2012-12-30 21:11:47','2012-12-31 21:33:38');
337/*!40000 ALTER TABLE `category` ENABLE KEYS */;
338UNLOCK TABLES;
339
340--
341-- Table structure for table `category_description`
342--
343
344DROP TABLE IF EXISTS `category_description`;
345SET @saved_cs_client = @@character_set_client;
346SET character_set_client = utf8;
347CREATE TABLE `category_description` (
348 `category_id` int(11) NOT NULL,
349 `language_id` int(11) NOT NULL,
350 `name` varchar(255) collate utf8_bin NOT NULL default '',
351 `description` text collate utf8_bin NOT NULL,
352 `meta_description` varchar(255) collate utf8_bin NOT NULL,
353 `meta_keyword` varchar(255) collate utf8_bin NOT NULL,
354 PRIMARY KEY (`category_id`,`language_id`),
355 KEY `name` (`name`)
356) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_bin;
357SET character_set_client = @saved_cs_client;
358
359--
360-- Dumping data for table `category_description`
361--
362
363LOCK TABLES `category_description` WRITE;
364/*!40000 ALTER TABLE `category_description` DISABLE KEYS */;
365INSERT INTO `category_description` VALUES (78,1,'Bulk Screen Mesh','<p>\r\n Wholesale window screen mesh.</p>\r\n<p>\r\n 18x16&nbsp; Fiberglass Insect Window Screen</p>\r\n<p>\r\n &nbsp;</p>\r\n','Wholesale Window Screen Mesh. ','Window screen mesh,window screen ,insect,screening,pool,patio,screen,mesh'),(77,1,'Pool and Patio Parts','<p>\r\n <span style="font-size: 14px;"><strong>Pool and Patio Screen Parts and Components-&nbsp; <span style="font-size: 12px;">Closure Kits, Rubber Flat Spline, 1 x 2 Extruded Aluminum Screen Frame.</span></strong></span></p>\r\n','Pool and Patio Replacement Parts. Wholesale Closure Kits, Flat Spline ,1 x 2 Aluminum Pool and patio screen frame.','Pool Patio screen frame closure kits aluminum extrusion frame plunger kits screen flat spline'),(76,1,'Screen Door Kits','<p>\r\n <strong><span style="font-size: 14px;">&nbsp;Patio Screen Door Kit </span>- </strong><strong>Includes (wheels, Aluminum Framing, Screen Mesh, Spline, Corner Locks </strong></p>\r\n<p>\r\n <strong>Available in White, Mill Finish , Bronze</strong></p>\r\n<p>\r\n <strong>Cut and Assemble in Minutes Easy 1,2,3</strong></p>\r\n<p>\r\n <strong>Available Screen Colors in Charcoal or Grey</strong></p>\r\n<p>\r\n <strong>Heavy Duty Extruded .060 Extruded Aluminum Frame</strong></p>\r\n<p>\r\n <strong>Pre Mitre Cut to Accomidate Most Openings without Cutting.</strong></p>\r\n<p>\r\n <strong>Made In The U.S.A.</strong></p>\r\n','Patio Screen Door Kits easy to assemble .Extruded Sliding Screen Doors at wholesale pricing.','aluminum sliding patio screen door kits replacement insect screen'),(66,1,'Wholesalel/Export','','Export of wholesale aluminum window screen frame and fiberglass screening and components.',''),(67,1,'Aluminum ','<p>\r\n Aluminum Insect Screen Rolls</p>\r\n','',''),(70,1,'Pool and Patio','','',''),(72,1,'Screen Door Parts','<p>\r\n <span style="font-size: 14px;"><strong>Patio Sliding Screen Door Parts - <span style="font-size: 12px;">Nylon Roller Wheels, Steel Roller Wheels, Replacement Handle Kits, Bug Strip and More at dicount wholesale pricing.</span></strong></span></p>\r\n','Sliding Patio Screen Door Parts and Components at Wholesale Pricing.Next Day Shipping','Sliding screen door parts components roller wheels corner locks screws top hung brackets'),(73,1,'Screening Tools','<p>\r\n <span style="font-size: 14px;"><strong>Screening Tools- <span style="font-size: 12px;">Professional Window Screen Spline Roller Tools and Econo Home Rollers at Afffordable Prices.</span></strong></span></p>\r\n','Professional Window Screen Spline Roller Tools and Econo Home Rollers at Afffordable Prices.','window screen patio door screen roller tools'),(74,1,'Window Screen Kits','<p>\r\n <span style="font-size: 14px;"><strong>Window Screen Kits - </strong></span><strong><span style="font-size: 12px;">All Hardware Included in Kit. (Corner locks,Screen mesh, Spline, Springs, Tabs, Aluminum Screen Frame)</span></strong></p>\r\n<p>\r\n <strong><span style="font-size: 12px;">Kit Will make screens up to 36 " width or height</span></strong></p>\r\n<p>\r\n <strong><span style="font-size: 12px;">Window Screen Kits are a quick and affordable way to fix your window screens yourself with our state of the art window screen kits.</span></strong></p>\r\n<p>\r\n <strong><span style="font-size: 12px;">Next Day Shipping! Easy Assembly! Fast and Affordable!</span></strong></p>\r\n<p>\r\n <strong><span style="font-size: 12px;">Available in Standard 5/16" frame or 7/16" in heavy duty .020 wall thickness</span></strong></p>\r\n<p>\r\n <strong><span style="font-size: 12px;">Frame Colors: Mill Finish (silver) , White, Bronze.</span></strong></p>\r\n<p>\r\n <strong><span style="font-size: 12px;">Mesh Colors : Charcoal , Grey</span></strong></p>\r\n','',''),(64,1,'Soffit Vents','','',''),(81,1,'Bulk Screen Parts','<p>\r\n Wholesale window screen parts and components. Replacement window screens.</p>\r\n','Wholesale Window Screen Parts and Components. Manufacturer of Quality Window screens.','Wholesale window screen parts and components'),(80,1,'Bulk Screen Frame','<p>\r\n <span style="font-size: 14px;"><strong>Aluminum Screen Frame - <span style="font-size: 12px;">Roll Formed Aluminum Window Screen Frame manufactured in our State of the Art &nbsp;facility . </span></strong></span></p>\r\n<p>\r\n <span style="font-size: 14px;"><strong><span style="font-size: 12px;">All Screen Frame is made of High Quality Aluminum Alloy .020 Wall Thickness. Available in Special Lengths upon Request. Please Contact us at 1-888-461-6444</span></strong></span></p>\r\n','Wholesale Manufacturer or Rollformed Aluminum Window Screen Frame.','Aluminum,window,screen,frame,wholesale,maufacturer'),(59,1,'Window Screens','<p>\r\n <strong><span style="font-size: 14px;">Custom Made Window Screens-</span> Custom made window screens are cut and fabricated at our facility boxed and shipped within 1-3 days to your doorstep. No </strong></p>\r\n<p>\r\n <strong>work just simply measure your screen and order online! Made from rollformed aluminum screen frame and available in White, Mill Finish or Bronze.</strong></p>\r\n<p>\r\n <strong>Insect Fiber Mesh will provide years of protection against insects available in Charcoal (standard) or Grey.</strong></p>\r\n<p>\r\n <strong>Custom Made Window Screens include all hardware simply choose from the options.</strong></p>\r\n','Custom made window screens a with fast dependable service at wholesale pricing. ','Custom window screens replacement insect screens windows'),(60,1,'Screen Doors','<p style="margin-bottom: 0in;">\r\n <span style="font-size: 14px;"><strong>PATIO SCREEN DOORS-</strong></span> <strong>This Heavy Duty Extruded Aluminum screen door is the ultimate solution for patio sliding doors. Frame is 1†x 2 1/2†aluminum with a wall thickness of .050. This is NO steel roll formed door. Our Deluxe door is reversible and comes standard with our locking handle and keep, heavy gauge fiberglass mesh and 1 1/2†tear away bug strip. Options include colors in White, Bronze, and Mill Finish, Adjustable Plastic or Steel Rollers which are easily replaceable in minutes. Our Doors are custom made in our facility to your specifications with the highest quality of craftsmanship giving you years of hassle free use. This door is fabricated and screened and delivered ready to install.</strong></p>\r\n','Patio Screen Doors Custom Made to Any Size at Wholesale Pricing.','patio screen door sliding screen door replacement insect protection'),(61,1,'Do-it-Yourself Kits','<p>\r\n <span style="font-size: 14px;"><strong>Window Screen Kits - </strong></span><strong><span style="font-size: 12px;">All Hardware Included in Kit. (Corner locks,Screen mesh, Spline, Springs, Tabs, Aluminum Screen Frame)</span></strong></p>\r\n<p>\r\n <strong><span style="font-size: 12px;">Kit Will make screens up to 36 " width or height</span></strong></p>\r\n<p>\r\n <strong><span style="font-size: 12px;">Window Screen Kits are a quick and affordable way to fix your window screens yourself with our state of the art window screen kits.</span></strong></p>\r\n<p>\r\n <strong><span style="font-size: 12px;">Next Day Shipping! Easy Assembly! Fast and Affordable!</span></strong></p>\r\n<p>\r\n <strong><span style="font-size: 12px;">Available in Standard 5/16" frame or 7/16" in heavy duty .020 wall thickness</span></strong></p>\r\n<p>\r\n <strong><span style="font-size: 12px;">Frame Colors: Mill Finish (silver) , White, Bronze.</span></strong></p>\r\n<p>\r\n <strong><span style="font-size: 12px;">Mesh Colors : Charcoal , Grey</span></strong></p>\r\n','All in One Replacement Window Screen Kits for the do it your selfer. Wholesale pricing','insect window screen kits aluminum screen replacement kits '),(62,1,'Part & Components','<p>\r\n <span style="font-size: 14px;"><strong>&nbsp;Window Screen Parts and Components</strong></span></p>\r\n<p>\r\n <strong>Quality Window Screen Parts and Components at Wholesale Pricing.</strong></p>\r\n<p>\r\n <strong>In Stock and Most Products&nbsp;Ship Same Day!</strong></p>\r\n','Window and Screen replacement Parts and Components. Wholesale Screening materials.','Window screen parts and components replacement window parts'),(71,1,'Screen Parts','<p>\r\n <span style="font-size: 14px;"><strong>Window Screen Parts and Components</strong></span></p>\r\n<p>\r\n <strong>Quality Window Screen Parts and Components at Wholesale Pricing.</strong></p>\r\n<p>\r\n <strong>In Stock and Most Products Ship Same Day!</strong></p>\r\n<p>\r\n <strong>Tension Springs, Pull Tabs, Corner Locks</strong></p>\r\n','Quality Window Screen Parts and Components. Framing,Corner locks,Tabs Screen Spline and more.','window screen parts components spline pull tabs tension springs'),(63,1,'Screen Mesh','<p>\r\n <span style="font-size: 14px;"><strong>Fiberglass Insect Screen Mesh- </strong></span><span style="font-size: 12px;"><strong>Insect window screen mesh is Made in The U.S. and constructed with the finest available materials. 18 x 16 mesh is standard for window screens and patio screen doors. It is a nylon coated fiberglass core mesh that is used in 90% of residential windows and home use. Is available in Standard Charcoal or Grey and in lengths of 25\' , 50\' , 100\'.</strong></span></p>\r\n','Insect Window Screen Mesh in Fiberglass and Aluminum. Protect Against Mosquitos.Wholesale Pricing.','Insect window screen protection mosquito fiberglass mesh 18x16 16x14'),(68,1,'Fiberglass','<p>\r\n <span style="font-size: 14px;"><strong><span style="font-size: 16px;">Fiberglass Insect Screen</span>- <span style="font-size: 12px;">Insect window screen mesh is Made in The U.S. and constructed with the finest available materials. 18 x 16 mesh is standard for window screens and patio screen doors. It is a nylon coated fiberglass core mesh that is used in 90% of residential windows and home use. Is available in Standard Charcoal or Grey and in lengths of 25\' , 50\' , 100\'.</span></strong></span></p>\r\n','Fiberglass Insect Window Screen Mesh .Protect yourself. Wholesale Pricing.','fiberglass,insect,window,screen,mesh,fiberglass,18x16');
366/*!40000 ALTER TABLE `category_description` ENABLE KEYS */;
367UNLOCK TABLES;
368
369--
370-- Table structure for table `category_to_layout`
371--
372
373DROP TABLE IF EXISTS `category_to_layout`;
374SET @saved_cs_client = @@character_set_client;
375SET character_set_client = utf8;
376CREATE TABLE `category_to_layout` (
377 `category_id` int(11) NOT NULL,
378 `store_id` int(11) NOT NULL,
379 `layout_id` int(11) NOT NULL,
380 PRIMARY KEY (`category_id`,`store_id`)
381) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_bin;
382SET character_set_client = @saved_cs_client;
383
384--
385-- Dumping data for table `category_to_layout`
386--
387
388LOCK TABLES `category_to_layout` WRITE;
389/*!40000 ALTER TABLE `category_to_layout` DISABLE KEYS */;
390/*!40000 ALTER TABLE `category_to_layout` ENABLE KEYS */;
391UNLOCK TABLES;
392
393--
394-- Table structure for table `category_to_store`
395--
396
397DROP TABLE IF EXISTS `category_to_store`;
398SET @saved_cs_client = @@character_set_client;
399SET character_set_client = utf8;
400CREATE TABLE `category_to_store` (
401 `category_id` int(11) NOT NULL,
402 `store_id` int(11) NOT NULL,
403 PRIMARY KEY (`category_id`,`store_id`)
404) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_bin;
405SET character_set_client = @saved_cs_client;
406
407--
408-- Dumping data for table `category_to_store`
409--
410
411LOCK TABLES `category_to_store` WRITE;
412/*!40000 ALTER TABLE `category_to_store` DISABLE KEYS */;
413INSERT INTO `category_to_store` VALUES (59,0),(60,0),(61,0),(62,0),(63,0),(64,0),(66,0),(67,0),(68,0),(70,0),(71,0),(72,0),(73,0),(74,0),(76,0),(77,0),(78,0),(80,0),(81,0);
414/*!40000 ALTER TABLE `category_to_store` ENABLE KEYS */;
415UNLOCK TABLES;
416
417--
418-- Table structure for table `country`
419--
420
421DROP TABLE IF EXISTS `country`;
422SET @saved_cs_client = @@character_set_client;
423SET character_set_client = utf8;
424CREATE TABLE `country` (
425 `country_id` int(11) NOT NULL auto_increment,
426 `name` varchar(128) collate utf8_bin NOT NULL,
427 `iso_code_2` varchar(2) collate utf8_bin NOT NULL default '',
428 `iso_code_3` varchar(3) collate utf8_bin NOT NULL default '',
429 `address_format` text collate utf8_bin NOT NULL,
430 `postcode_required` tinyint(1) NOT NULL,
431 `status` tinyint(1) NOT NULL default '1',
432 PRIMARY KEY (`country_id`)
433) ENGINE=MyISAM AUTO_INCREMENT=240 DEFAULT CHARSET=utf8 COLLATE=utf8_bin;
434SET character_set_client = @saved_cs_client;
435
436--
437-- Dumping data for table `country`
438--
439
440LOCK TABLES `country` WRITE;
441/*!40000 ALTER TABLE `country` DISABLE KEYS */;
442INSERT INTO `country` VALUES (1,'Afghanistan','AF','AFG','',0,1),(2,'Albania','AL','ALB','',0,1),(3,'Algeria','DZ','DZA','',0,1),(4,'American Samoa','AS','ASM','',0,1),(5,'Andorra','AD','AND','',0,1),(6,'Angola','AO','AGO','',0,1),(7,'Anguilla','AI','AIA','',0,1),(8,'Antarctica','AQ','ATA','',0,1),(9,'Antigua and Barbuda','AG','ATG','',0,1),(10,'Argentina','AR','ARG','',0,1),(11,'Armenia','AM','ARM','',0,1),(12,'Aruba','AW','ABW','',0,1),(13,'Australia','AU','AUS','',0,1),(14,'Austria','AT','AUT','',0,1),(15,'Azerbaijan','AZ','AZE','',0,1),(16,'Bahamas','BS','BHS','',0,1),(17,'Bahrain','BH','BHR','',0,1),(18,'Bangladesh','BD','BGD','',0,1),(19,'Barbados','BB','BRB','',0,1),(20,'Belarus','BY','BLR','',0,1),(21,'Belgium','BE','BEL','',0,1),(22,'Belize','BZ','BLZ','',0,1),(23,'Benin','BJ','BEN','',0,1),(24,'Bermuda','BM','BMU','',0,1),(25,'Bhutan','BT','BTN','',0,1),(26,'Bolivia','BO','BOL','',0,1),(27,'Bosnia and Herzegowina','BA','BIH','',0,1),(28,'Botswana','BW','BWA','',0,1),(29,'Bouvet Island','BV','BVT','',0,1),(30,'Brazil','BR','BRA','',0,1),(31,'British Indian Ocean Territory','IO','IOT','',0,1),(32,'Brunei Darussalam','BN','BRN','',0,1),(33,'Bulgaria','BG','BGR','',0,1),(34,'Burkina Faso','BF','BFA','',0,1),(35,'Burundi','BI','BDI','',0,1),(36,'Cambodia','KH','KHM','',0,1),(37,'Cameroon','CM','CMR','',0,1),(38,'Canada','CA','CAN','',0,1),(39,'Cape Verde','CV','CPV','',0,1),(40,'Cayman Islands','KY','CYM','',0,1),(41,'Central African Republic','CF','CAF','',0,1),(42,'Chad','TD','TCD','',0,1),(43,'Chile','CL','CHL','',0,1),(44,'China','CN','CHN','',0,1),(45,'Christmas Island','CX','CXR','',0,1),(46,'Cocos (Keeling) Islands','CC','CCK','',0,1),(47,'Colombia','CO','COL','',0,1),(48,'Comoros','KM','COM','',0,1),(49,'Congo','CG','COG','',0,1),(50,'Cook Islands','CK','COK','',0,1),(51,'Costa Rica','CR','CRI','',0,1),(52,'Cote D\'Ivoire','CI','CIV','',0,1),(53,'Croatia','HR','HRV','',0,1),(54,'Cuba','CU','CUB','',0,1),(55,'Cyprus','CY','CYP','',0,1),(56,'Czech Republic','CZ','CZE','',0,1),(57,'Denmark','DK','DNK','',0,1),(58,'Djibouti','DJ','DJI','',0,1),(59,'Dominica','DM','DMA','',0,1),(60,'Dominican Republic','DO','DOM','',0,1),(61,'East Timor','TP','TMP','',0,1),(62,'Ecuador','EC','ECU','',0,1),(63,'Egypt','EG','EGY','',0,1),(64,'El Salvador','SV','SLV','',0,1),(65,'Equatorial Guinea','GQ','GNQ','',0,1),(66,'Eritrea','ER','ERI','',0,1),(67,'Estonia','EE','EST','',0,1),(68,'Ethiopia','ET','ETH','',0,1),(69,'Falkland Islands (Malvinas)','FK','FLK','',0,1),(70,'Faroe Islands','FO','FRO','',0,1),(71,'Fiji','FJ','FJI','',0,1),(72,'Finland','FI','FIN','',0,1),(73,'France','FR','FRA','',0,1),(74,'France, Metropolitan','FX','FXX','',0,1),(75,'French Guiana','GF','GUF','',0,1),(76,'French Polynesia','PF','PYF','',0,1),(77,'French Southern Territories','TF','ATF','',0,1),(78,'Gabon','GA','GAB','',0,1),(79,'Gambia','GM','GMB','',0,1),(80,'Georgia','GE','GEO','',0,1),(81,'Germany','DE','DEU','{company}\r\n{firstname} {lastname}\r\n{address_1}\r\n{address_2}\r\n{postcode} {city}\r\n{country}',1,1),(82,'Ghana','GH','GHA','',0,1),(83,'Gibraltar','GI','GIB','',0,1),(84,'Greece','GR','GRC','',0,1),(85,'Greenland','GL','GRL','',0,1),(86,'Grenada','GD','GRD','',0,1),(87,'Guadeloupe','GP','GLP','',0,1),(88,'Guam','GU','GUM','',0,1),(89,'Guatemala','GT','GTM','',0,1),(90,'Guinea','GN','GIN','',0,1),(91,'Guinea-bissau','GW','GNB','',0,1),(92,'Guyana','GY','GUY','',0,1),(93,'Haiti','HT','HTI','',0,1),(94,'Heard and Mc Donald Islands','HM','HMD','',0,1),(95,'Honduras','HN','HND','',0,1),(96,'Hong Kong','HK','HKG','',0,1),(97,'Hungary','HU','HUN','',0,1),(98,'Iceland','IS','ISL','',0,1),(99,'India','IN','IND','',0,1),(100,'Indonesia','ID','IDN','',0,1),(101,'Iran (Islamic Republic of)','IR','IRN','',0,1),(102,'Iraq','IQ','IRQ','',0,1),(103,'Ireland','IE','IRL','',0,1),(104,'Israel','IL','ISR','',0,1),(105,'Italy','IT','ITA','',0,1),(106,'Jamaica','JM','JAM','',0,1),(107,'Japan','JP','JPN','',0,1),(108,'Jordan','JO','JOR','',0,1),(109,'Kazakhstan','KZ','KAZ','',0,1),(110,'Kenya','KE','KEN','',0,1),(111,'Kiribati','KI','KIR','',0,1),(112,'North Korea','KP','PRK','',0,1),(113,'Korea, Republic of','KR','KOR','',0,1),(114,'Kuwait','KW','KWT','',0,1),(115,'Kyrgyzstan','KG','KGZ','',0,1),(116,'Lao People\'s Democratic Republic','LA','LAO','',0,1),(117,'Latvia','LV','LVA','',0,1),(118,'Lebanon','LB','LBN','',0,1),(119,'Lesotho','LS','LSO','',0,1),(120,'Liberia','LR','LBR','',0,1),(121,'Libyan Arab Jamahiriya','LY','LBY','',0,1),(122,'Liechtenstein','LI','LIE','',0,1),(123,'Lithuania','LT','LTU','',0,1),(124,'Luxembourg','LU','LUX','',0,1),(125,'Macau','MO','MAC','',0,1),(126,'FYROM','MK','MKD','',0,1),(127,'Madagascar','MG','MDG','',0,1),(128,'Malawi','MW','MWI','',0,1),(129,'Malaysia','MY','MYS','',0,1),(130,'Maldives','MV','MDV','',0,1),(131,'Mali','ML','MLI','',0,1),(132,'Malta','MT','MLT','',0,1),(133,'Marshall Islands','MH','MHL','',0,1),(134,'Martinique','MQ','MTQ','',0,1),(135,'Mauritania','MR','MRT','',0,1),(136,'Mauritius','MU','MUS','',0,1),(137,'Mayotte','YT','MYT','',0,1),(138,'Mexico','MX','MEX','',0,1),(139,'Micronesia, Federated States of','FM','FSM','',0,1),(140,'Moldova, Republic of','MD','MDA','',0,1),(141,'Monaco','MC','MCO','',0,1),(142,'Mongolia','MN','MNG','',0,1),(143,'Montserrat','MS','MSR','',0,1),(144,'Morocco','MA','MAR','',0,1),(145,'Mozambique','MZ','MOZ','',0,1),(146,'Myanmar','MM','MMR','',0,1),(147,'Namibia','NA','NAM','',0,1),(148,'Nauru','NR','NRU','',0,1),(149,'Nepal','NP','NPL','',0,1),(150,'Netherlands','NL','NLD','',0,1),(151,'Netherlands Antilles','AN','ANT','',0,1),(152,'New Caledonia','NC','NCL','',0,1),(153,'New Zealand','NZ','NZL','',0,1),(154,'Nicaragua','NI','NIC','',0,1),(155,'Niger','NE','NER','',0,1),(156,'Nigeria','NG','NGA','',0,1),(157,'Niue','NU','NIU','',0,1),(158,'Norfolk Island','NF','NFK','',0,1),(159,'Northern Mariana Islands','MP','MNP','',0,1),(160,'Norway','NO','NOR','',0,1),(161,'Oman','OM','OMN','',0,1),(162,'Pakistan','PK','PAK','',0,1),(163,'Palau','PW','PLW','',0,1),(164,'Panama','PA','PAN','',0,1),(165,'Papua New Guinea','PG','PNG','',0,1),(166,'Paraguay','PY','PRY','',0,1),(167,'Peru','PE','PER','',0,1),(168,'Philippines','PH','PHL','',0,1),(169,'Pitcairn','PN','PCN','',0,1),(170,'Poland','PL','POL','',0,1),(171,'Portugal','PT','PRT','',0,1),(172,'Puerto Rico','PR','PRI','',0,1),(173,'Qatar','QA','QAT','',0,1),(174,'Reunion','RE','REU','',0,1),(175,'Romania','RO','ROM','',0,1),(176,'Russian Federation','RU','RUS','',0,1),(177,'Rwanda','RW','RWA','',0,1),(178,'Saint Kitts and Nevis','KN','KNA','',0,1),(179,'Saint Lucia','LC','LCA','',0,1),(180,'Saint Vincent and the Grenadines','VC','VCT','',0,1),(181,'Samoa','WS','WSM','',0,1),(182,'San Marino','SM','SMR','',0,1),(183,'Sao Tome and Principe','ST','STP','',0,1),(184,'Saudi Arabia','SA','SAU','',0,1),(185,'Senegal','SN','SEN','',0,1),(186,'Seychelles','SC','SYC','',0,1),(187,'Sierra Leone','SL','SLE','',0,1),(188,'Singapore','SG','SGP','',0,1),(189,'Slovak Republic','SK','SVK','{firstname} {lastname}\r\n{company}\r\n{address_1}\r\n{address_2}\r\n{city} {postcode}\r\n{zone}\r\n{country}',0,1),(190,'Slovenia','SI','SVN','',0,1),(191,'Solomon Islands','SB','SLB','',0,1),(192,'Somalia','SO','SOM','',0,1),(193,'South Africa','ZA','ZAF','',0,1),(194,'South Georgia & South Sandwich Islands','GS','SGS','',0,1),(195,'Spain','ES','ESP','',0,1),(196,'Sri Lanka','LK','LKA','',0,1),(197,'St. Helena','SH','SHN','',0,1),(198,'St. Pierre and Miquelon','PM','SPM','',0,1),(199,'Sudan','SD','SDN','',0,1),(200,'Suriname','SR','SUR','',0,1),(201,'Svalbard and Jan Mayen Islands','SJ','SJM','',0,1),(202,'Swaziland','SZ','SWZ','',0,1),(203,'Sweden','SE','SWE','',0,1),(204,'Switzerland','CH','CHE','',0,1),(205,'Syrian Arab Republic','SY','SYR','',0,1),(206,'Taiwan','TW','TWN','',0,1),(207,'Tajikistan','TJ','TJK','',0,1),(208,'Tanzania, United Republic of','TZ','TZA','',0,1),(209,'Thailand','TH','THA','',0,1),(210,'Togo','TG','TGO','',0,1),(211,'Tokelau','TK','TKL','',0,1),(212,'Tonga','TO','TON','',0,1),(213,'Trinidad and Tobago','TT','TTO','',0,1),(214,'Tunisia','TN','TUN','',0,1),(215,'Turkey','TR','TUR','',0,1),(216,'Turkmenistan','TM','TKM','',0,1),(217,'Turks and Caicos Islands','TC','TCA','',0,1),(218,'Tuvalu','TV','TUV','',0,1),(219,'Uganda','UG','UGA','',0,1),(220,'Ukraine','UA','UKR','',0,1),(221,'United Arab Emirates','AE','ARE','',0,1),(222,'United Kingdom','GB','GBR','',1,1),(223,'United States','US','USA','{firstname} {lastname}\r\n{company}\r\n{address_1}\r\n{address_2}\r\n{city}, {zone} {postcode}\r\n{country}',0,1),(224,'United States Minor Outlying Islands','UM','UMI','',0,1),(225,'Uruguay','UY','URY','',0,1),(226,'Uzbekistan','UZ','UZB','',0,1),(227,'Vanuatu','VU','VUT','',0,1),(228,'Vatican City State (Holy See)','VA','VAT','',0,1),(229,'Venezuela','VE','VEN','',0,1),(230,'Viet Nam','VN','VNM','',0,1),(231,'Virgin Islands (British)','VG','VGB','',0,1),(232,'Virgin Islands (U.S.)','VI','VIR','',0,1),(233,'Wallis and Futuna Islands','WF','WLF','',0,1),(234,'Western Sahara','EH','ESH','',0,1),(235,'Yemen','YE','YEM','',0,1),(236,'Yugoslavia','YU','YUG','',0,1),(237,'Democratic Republic of Congo','CD','COD','',0,1),(238,'Zambia','ZM','ZMB','',0,1),(239,'Zimbabwe','ZW','ZWE','',0,1);
443/*!40000 ALTER TABLE `country` ENABLE KEYS */;
444UNLOCK TABLES;
445
446--
447-- Table structure for table `coupon`
448--
449
450DROP TABLE IF EXISTS `coupon`;
451SET @saved_cs_client = @@character_set_client;
452SET character_set_client = utf8;
453CREATE TABLE `coupon` (
454 `coupon_id` int(11) NOT NULL auto_increment,
455 `name` varchar(128) collate utf8_bin NOT NULL,
456 `code` varchar(10) collate utf8_bin NOT NULL,
457 `type` char(1) collate utf8_bin NOT NULL,
458 `discount` decimal(15,4) NOT NULL,
459 `logged` tinyint(1) NOT NULL,
460 `shipping` tinyint(1) NOT NULL,
461 `total` decimal(15,4) NOT NULL,
462 `date_start` date NOT NULL default '0000-00-00',
463 `date_end` date NOT NULL default '0000-00-00',
464 `uses_total` int(11) NOT NULL,
465 `uses_customer` varchar(11) collate utf8_bin NOT NULL,
466 `status` tinyint(1) NOT NULL,
467 `date_added` datetime NOT NULL default '0000-00-00 00:00:00',
468 PRIMARY KEY (`coupon_id`)
469) ENGINE=MyISAM AUTO_INCREMENT=7 DEFAULT CHARSET=utf8 COLLATE=utf8_bin;
470SET character_set_client = @saved_cs_client;
471
472--
473-- Dumping data for table `coupon`
474--
475
476LOCK TABLES `coupon` WRITE;
477/*!40000 ALTER TABLE `coupon` DISABLE KEYS */;
478INSERT INTO `coupon` VALUES (4,'-10% Discount','2222','P','10.0000',0,0,'0.0000','2011-01-01','2013-03-14',10,'10',1,'2009-01-27 13:55:03'),(5,'Free Shipping','3333','P','0.0000',0,1,'100.0000','2009-03-01','2009-08-31',10,'10',1,'2009-03-14 21:13:53'),(6,'-10.00 Discount','1111','F','10.0000',0,0,'10.0000','1970-11-01','2020-11-01',100000,'10000',1,'2009-03-14 21:15:18');
479/*!40000 ALTER TABLE `coupon` ENABLE KEYS */;
480UNLOCK TABLES;
481
482--
483-- Table structure for table `coupon_history`
484--
485
486DROP TABLE IF EXISTS `coupon_history`;
487SET @saved_cs_client = @@character_set_client;
488SET character_set_client = utf8;
489CREATE TABLE `coupon_history` (
490 `coupon_history_id` int(11) NOT NULL auto_increment,
491 `coupon_id` int(11) NOT NULL,
492 `order_id` int(11) NOT NULL,
493 `customer_id` int(11) NOT NULL,
494 `amount` decimal(15,4) NOT NULL,
495 `date_added` datetime NOT NULL,
496 PRIMARY KEY (`coupon_history_id`)
497) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_bin;
498SET character_set_client = @saved_cs_client;
499
500--
501-- Dumping data for table `coupon_history`
502--
503
504LOCK TABLES `coupon_history` WRITE;
505/*!40000 ALTER TABLE `coupon_history` DISABLE KEYS */;
506/*!40000 ALTER TABLE `coupon_history` ENABLE KEYS */;
507UNLOCK TABLES;
508
509--
510-- Table structure for table `coupon_product`
511--
512
513DROP TABLE IF EXISTS `coupon_product`;
514SET @saved_cs_client = @@character_set_client;
515SET character_set_client = utf8;
516CREATE TABLE `coupon_product` (
517 `coupon_product_id` int(11) NOT NULL auto_increment,
518 `coupon_id` int(11) NOT NULL,
519 `product_id` int(11) NOT NULL,
520 PRIMARY KEY (`coupon_product_id`)
521) ENGINE=MyISAM AUTO_INCREMENT=6 DEFAULT CHARSET=utf8 COLLATE=utf8_bin;
522SET character_set_client = @saved_cs_client;
523
524--
525-- Dumping data for table `coupon_product`
526--
527
528LOCK TABLES `coupon_product` WRITE;
529/*!40000 ALTER TABLE `coupon_product` DISABLE KEYS */;
530INSERT INTO `coupon_product` VALUES (5,4,57),(4,4,63);
531/*!40000 ALTER TABLE `coupon_product` ENABLE KEYS */;
532UNLOCK TABLES;
533
534--
535-- Table structure for table `currency`
536--
537
538DROP TABLE IF EXISTS `currency`;
539SET @saved_cs_client = @@character_set_client;
540SET character_set_client = utf8;
541CREATE TABLE `currency` (
542 `currency_id` int(11) NOT NULL auto_increment,
543 `title` varchar(32) collate utf8_bin NOT NULL default '',
544 `code` varchar(3) collate utf8_bin NOT NULL default '',
545 `symbol_left` varchar(12) collate utf8_bin NOT NULL,
546 `symbol_right` varchar(12) collate utf8_bin NOT NULL,
547 `decimal_place` char(1) collate utf8_bin NOT NULL,
548 `value` float(15,8) NOT NULL,
549 `status` tinyint(1) NOT NULL,
550 `date_modified` datetime NOT NULL default '0000-00-00 00:00:00',
551 PRIMARY KEY (`currency_id`)
552) ENGINE=MyISAM AUTO_INCREMENT=4 DEFAULT CHARSET=utf8 COLLATE=utf8_bin;
553SET character_set_client = @saved_cs_client;
554
555--
556-- Dumping data for table `currency`
557--
558
559LOCK TABLES `currency` WRITE;
560/*!40000 ALTER TABLE `currency` DISABLE KEYS */;
561INSERT INTO `currency` VALUES (1,'Pound Sterling','GBP','£','','2',0.61849999,0,'2012-12-30 19:42:57'),(2,'US Dollar','USD','$','','2',1.00000000,1,'2012-12-31 19:28:22'),(3,'Euro','EUR','','€','2',0.75569999,0,'2012-12-30 19:42:57');
562/*!40000 ALTER TABLE `currency` ENABLE KEYS */;
563UNLOCK TABLES;
564
565--
566-- Table structure for table `customer`
567--
568
569DROP TABLE IF EXISTS `customer`;
570SET @saved_cs_client = @@character_set_client;
571SET character_set_client = utf8;
572CREATE TABLE `customer` (
573 `customer_id` int(11) NOT NULL auto_increment,
574 `store_id` int(11) NOT NULL default '0',
575 `firstname` varchar(32) collate utf8_bin NOT NULL default '',
576 `lastname` varchar(32) collate utf8_bin NOT NULL default '',
577 `email` varchar(96) collate utf8_bin NOT NULL default '',
578 `telephone` varchar(32) collate utf8_bin NOT NULL default '',
579 `fax` varchar(32) collate utf8_bin NOT NULL default '',
580 `password` varchar(40) collate utf8_bin NOT NULL default '',
581 `salt` varchar(9) collate utf8_bin NOT NULL default '',
582 `cart` text collate utf8_bin,
583 `wishlist` text collate utf8_bin,
584 `newsletter` tinyint(1) NOT NULL default '0',
585 `address_id` int(11) NOT NULL default '0',
586 `customer_group_id` int(11) NOT NULL,
587 `ip` varchar(40) collate utf8_bin NOT NULL default '0',
588 `status` tinyint(1) NOT NULL,
589 `approved` tinyint(1) NOT NULL,
590 `token` varchar(255) collate utf8_bin NOT NULL,
591 `date_added` datetime NOT NULL default '0000-00-00 00:00:00',
592 PRIMARY KEY (`customer_id`)
593) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_bin;
594SET character_set_client = @saved_cs_client;
595
596--
597-- Dumping data for table `customer`
598--
599
600LOCK TABLES `customer` WRITE;
601/*!40000 ALTER TABLE `customer` DISABLE KEYS */;
602/*!40000 ALTER TABLE `customer` ENABLE KEYS */;
603UNLOCK TABLES;
604
605--
606-- Table structure for table `customer_group`
607--
608
609DROP TABLE IF EXISTS `customer_group`;
610SET @saved_cs_client = @@character_set_client;
611SET character_set_client = utf8;
612CREATE TABLE `customer_group` (
613 `customer_group_id` int(11) NOT NULL auto_increment,
614 `approval` int(1) NOT NULL,
615 `company_id_display` int(1) NOT NULL,
616 `company_id_required` int(1) NOT NULL,
617 `tax_id_display` int(1) NOT NULL,
618 `tax_id_required` int(1) NOT NULL,
619 `sort_order` int(3) NOT NULL,
620 PRIMARY KEY (`customer_group_id`)
621) ENGINE=MyISAM AUTO_INCREMENT=2 DEFAULT CHARSET=utf8 COLLATE=utf8_bin;
622SET character_set_client = @saved_cs_client;
623
624--
625-- Dumping data for table `customer_group`
626--
627
628LOCK TABLES `customer_group` WRITE;
629/*!40000 ALTER TABLE `customer_group` DISABLE KEYS */;
630INSERT INTO `customer_group` VALUES (1,0,1,0,0,1,1);
631/*!40000 ALTER TABLE `customer_group` ENABLE KEYS */;
632UNLOCK TABLES;
633
634--
635-- Table structure for table `customer_group_description`
636--
637
638DROP TABLE IF EXISTS `customer_group_description`;
639SET @saved_cs_client = @@character_set_client;
640SET character_set_client = utf8;
641CREATE TABLE `customer_group_description` (
642 `customer_group_id` int(11) NOT NULL,
643 `language_id` int(11) NOT NULL,
644 `name` varchar(32) collate utf8_bin NOT NULL,
645 `description` text collate utf8_bin NOT NULL,
646 PRIMARY KEY (`customer_group_id`,`language_id`)
647) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_bin;
648SET character_set_client = @saved_cs_client;
649
650--
651-- Dumping data for table `customer_group_description`
652--
653
654LOCK TABLES `customer_group_description` WRITE;
655/*!40000 ALTER TABLE `customer_group_description` DISABLE KEYS */;
656INSERT INTO `customer_group_description` VALUES (1,1,'Default','test');
657/*!40000 ALTER TABLE `customer_group_description` ENABLE KEYS */;
658UNLOCK TABLES;
659
660--
661-- Table structure for table `customer_ip`
662--
663
664DROP TABLE IF EXISTS `customer_ip`;
665SET @saved_cs_client = @@character_set_client;
666SET character_set_client = utf8;
667CREATE TABLE `customer_ip` (
668 `customer_ip_id` int(11) NOT NULL auto_increment,
669 `customer_id` int(11) NOT NULL,
670 `ip` varchar(40) collate utf8_bin NOT NULL,
671 `date_added` datetime NOT NULL,
672 PRIMARY KEY (`customer_ip_id`),
673 KEY `ip` (`ip`)
674) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_bin;
675SET character_set_client = @saved_cs_client;
676
677--
678-- Dumping data for table `customer_ip`
679--
680
681LOCK TABLES `customer_ip` WRITE;
682/*!40000 ALTER TABLE `customer_ip` DISABLE KEYS */;
683/*!40000 ALTER TABLE `customer_ip` ENABLE KEYS */;
684UNLOCK TABLES;
685
686--
687-- Table structure for table `customer_ip_blacklist`
688--
689
690DROP TABLE IF EXISTS `customer_ip_blacklist`;
691SET @saved_cs_client = @@character_set_client;
692SET character_set_client = utf8;
693CREATE TABLE `customer_ip_blacklist` (
694 `customer_ip_blacklist_id` int(11) NOT NULL auto_increment,
695 `ip` varchar(40) collate utf8_bin NOT NULL,
696 PRIMARY KEY (`customer_ip_blacklist_id`),
697 KEY `ip` (`ip`)
698) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_bin;
699SET character_set_client = @saved_cs_client;
700
701--
702-- Dumping data for table `customer_ip_blacklist`
703--
704
705LOCK TABLES `customer_ip_blacklist` WRITE;
706/*!40000 ALTER TABLE `customer_ip_blacklist` DISABLE KEYS */;
707/*!40000 ALTER TABLE `customer_ip_blacklist` ENABLE KEYS */;
708UNLOCK TABLES;
709
710--
711-- Table structure for table `customer_online`
712--
713
714DROP TABLE IF EXISTS `customer_online`;
715SET @saved_cs_client = @@character_set_client;
716SET character_set_client = utf8;
717CREATE TABLE `customer_online` (
718 `ip` varchar(40) collate utf8_bin NOT NULL,
719 `customer_id` int(11) NOT NULL,
720 `url` text collate utf8_bin NOT NULL,
721 `referer` text collate utf8_bin NOT NULL,
722 `date_added` datetime NOT NULL,
723 PRIMARY KEY (`ip`)
724) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_bin;
725SET character_set_client = @saved_cs_client;
726
727--
728-- Dumping data for table `customer_online`
729--
730
731LOCK TABLES `customer_online` WRITE;
732/*!40000 ALTER TABLE `customer_online` DISABLE KEYS */;
733/*!40000 ALTER TABLE `customer_online` ENABLE KEYS */;
734UNLOCK TABLES;
735
736--
737-- Table structure for table `customer_reward`
738--
739
740DROP TABLE IF EXISTS `customer_reward`;
741SET @saved_cs_client = @@character_set_client;
742SET character_set_client = utf8;
743CREATE TABLE `customer_reward` (
744 `customer_reward_id` int(11) NOT NULL auto_increment,
745 `customer_id` int(11) NOT NULL default '0',
746 `order_id` int(11) NOT NULL default '0',
747 `description` text collate utf8_bin NOT NULL,
748 `points` int(8) NOT NULL default '0',
749 `date_added` datetime NOT NULL default '0000-00-00 00:00:00',
750 PRIMARY KEY (`customer_reward_id`)
751) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_bin;
752SET character_set_client = @saved_cs_client;
753
754--
755-- Dumping data for table `customer_reward`
756--
757
758LOCK TABLES `customer_reward` WRITE;
759/*!40000 ALTER TABLE `customer_reward` DISABLE KEYS */;
760/*!40000 ALTER TABLE `customer_reward` ENABLE KEYS */;
761UNLOCK TABLES;
762
763--
764-- Table structure for table `customer_transaction`
765--
766
767DROP TABLE IF EXISTS `customer_transaction`;
768SET @saved_cs_client = @@character_set_client;
769SET character_set_client = utf8;
770CREATE TABLE `customer_transaction` (
771 `customer_transaction_id` int(11) NOT NULL auto_increment,
772 `customer_id` int(11) NOT NULL,
773 `order_id` int(11) NOT NULL,
774 `description` text collate utf8_bin NOT NULL,
775 `amount` decimal(15,4) NOT NULL,
776 `date_added` datetime NOT NULL,
777 PRIMARY KEY (`customer_transaction_id`)
778) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_bin;
779SET character_set_client = @saved_cs_client;
780
781--
782-- Dumping data for table `customer_transaction`
783--
784
785LOCK TABLES `customer_transaction` WRITE;
786/*!40000 ALTER TABLE `customer_transaction` DISABLE KEYS */;
787/*!40000 ALTER TABLE `customer_transaction` ENABLE KEYS */;
788UNLOCK TABLES;
789
790--
791-- Table structure for table `download`
792--
793
794DROP TABLE IF EXISTS `download`;
795SET @saved_cs_client = @@character_set_client;
796SET character_set_client = utf8;
797CREATE TABLE `download` (
798 `download_id` int(11) NOT NULL auto_increment,
799 `filename` varchar(128) collate utf8_bin NOT NULL default '',
800 `mask` varchar(128) collate utf8_bin NOT NULL default '',
801 `remaining` int(11) NOT NULL default '0',
802 `date_added` datetime NOT NULL default '0000-00-00 00:00:00',
803 PRIMARY KEY (`download_id`)
804) ENGINE=MyISAM AUTO_INCREMENT=2 DEFAULT CHARSET=utf8 COLLATE=utf8_bin;
805SET character_set_client = @saved_cs_client;
806
807--
808-- Dumping data for table `download`
809--
810
811LOCK TABLES `download` WRITE;
812/*!40000 ALTER TABLE `download` DISABLE KEYS */;
813INSERT INTO `download` VALUES (1,'2012-10-25_11-28-04_669.mp4.d8a113ee2aad1e3d617e5a19120f9213','Rollform machine',1,'2012-11-27 22:28:00');
814/*!40000 ALTER TABLE `download` ENABLE KEYS */;
815UNLOCK TABLES;
816
817--
818-- Table structure for table `download_description`
819--
820
821DROP TABLE IF EXISTS `download_description`;
822SET @saved_cs_client = @@character_set_client;
823SET character_set_client = utf8;
824CREATE TABLE `download_description` (
825 `download_id` int(11) NOT NULL,
826 `language_id` int(11) NOT NULL,
827 `name` varchar(64) collate utf8_bin NOT NULL default '',
828 PRIMARY KEY (`download_id`,`language_id`)
829) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_bin;
830SET character_set_client = @saved_cs_client;
831
832--
833-- Dumping data for table `download_description`
834--
835
836LOCK TABLES `download_description` WRITE;
837/*!40000 ALTER TABLE `download_description` DISABLE KEYS */;
838INSERT INTO `download_description` VALUES (1,1,'Roll form machine');
839/*!40000 ALTER TABLE `download_description` ENABLE KEYS */;
840UNLOCK TABLES;
841
842--
843-- Table structure for table `extension`
844--
845
846DROP TABLE IF EXISTS `extension`;
847SET @saved_cs_client = @@character_set_client;
848SET character_set_client = utf8;
849CREATE TABLE `extension` (
850 `extension_id` int(11) NOT NULL auto_increment,
851 `type` varchar(32) collate utf8_bin NOT NULL,
852 `code` varchar(32) collate utf8_bin NOT NULL,
853 PRIMARY KEY (`extension_id`)
854) ENGINE=MyISAM AUTO_INCREMENT=434 DEFAULT CHARSET=utf8 COLLATE=utf8_bin;
855SET character_set_client = @saved_cs_client;
856
857--
858-- Dumping data for table `extension`
859--
860
861LOCK TABLES `extension` WRITE;
862/*!40000 ALTER TABLE `extension` DISABLE KEYS */;
863INSERT INTO `extension` VALUES (23,'payment','cod'),(22,'total','shipping'),(57,'total','sub_total'),(58,'total','tax'),(59,'total','total'),(410,'module','banner'),(426,'module','carousel'),(390,'total','credit'),(387,'shipping','flat'),(349,'total','handling'),(350,'total','low_order_fee'),(389,'total','coupon'),(413,'module','category'),(411,'module','affiliate'),(408,'module','account'),(393,'total','reward'),(398,'total','voucher'),(407,'payment','free_checkout'),(427,'module','featured'),(419,'module','slideshow'),(428,'module','unistore'),(429,'shipping','usps'),(430,'shipping','ups'),(431,'shipping','fedex'),(432,'module','welcome'),(433,'module','customFooter');
864/*!40000 ALTER TABLE `extension` ENABLE KEYS */;
865UNLOCK TABLES;
866
867--
868-- Table structure for table `geo_zone`
869--
870
871DROP TABLE IF EXISTS `geo_zone`;
872SET @saved_cs_client = @@character_set_client;
873SET character_set_client = utf8;
874CREATE TABLE `geo_zone` (
875 `geo_zone_id` int(11) NOT NULL auto_increment,
876 `name` varchar(32) collate utf8_bin NOT NULL default '',
877 `description` varchar(255) collate utf8_bin NOT NULL default '',
878 `date_modified` datetime NOT NULL default '0000-00-00 00:00:00',
879 `date_added` datetime NOT NULL default '0000-00-00 00:00:00',
880 PRIMARY KEY (`geo_zone_id`)
881) ENGINE=MyISAM AUTO_INCREMENT=5 DEFAULT CHARSET=utf8 COLLATE=utf8_bin;
882SET character_set_client = @saved_cs_client;
883
884--
885-- Dumping data for table `geo_zone`
886--
887
888LOCK TABLES `geo_zone` WRITE;
889/*!40000 ALTER TABLE `geo_zone` DISABLE KEYS */;
890INSERT INTO `geo_zone` VALUES (3,'UK VAT Zone','UK VAT','2010-02-26 22:33:24','2009-01-06 23:26:25'),(4,'UK Shipping','UK Shipping Zones','2010-12-15 15:18:13','2009-06-23 01:14:53');
891/*!40000 ALTER TABLE `geo_zone` ENABLE KEYS */;
892UNLOCK TABLES;
893
894--
895-- Table structure for table `information`
896--
897
898DROP TABLE IF EXISTS `information`;
899SET @saved_cs_client = @@character_set_client;
900SET character_set_client = utf8;
901CREATE TABLE `information` (
902 `information_id` int(11) NOT NULL auto_increment,
903 `bottom` int(1) NOT NULL default '0',
904 `sort_order` int(3) NOT NULL default '0',
905 `status` tinyint(1) NOT NULL default '1',
906 PRIMARY KEY (`information_id`)
907) ENGINE=MyISAM AUTO_INCREMENT=9 DEFAULT CHARSET=utf8 COLLATE=utf8_bin;
908SET character_set_client = @saved_cs_client;
909
910--
911-- Dumping data for table `information`
912--
913
914LOCK TABLES `information` WRITE;
915/*!40000 ALTER TABLE `information` DISABLE KEYS */;
916INSERT INTO `information` VALUES (3,1,3,1),(4,1,1,1),(5,1,4,1),(6,1,2,1),(7,1,2,1),(8,1,0,1);
917/*!40000 ALTER TABLE `information` ENABLE KEYS */;
918UNLOCK TABLES;
919
920--
921-- Table structure for table `information_description`
922--
923
924DROP TABLE IF EXISTS `information_description`;
925SET @saved_cs_client = @@character_set_client;
926SET character_set_client = utf8;
927CREATE TABLE `information_description` (
928 `information_id` int(11) NOT NULL,
929 `language_id` int(11) NOT NULL,
930 `title` varchar(64) collate utf8_bin NOT NULL default '',
931 `description` text collate utf8_bin NOT NULL,
932 PRIMARY KEY (`information_id`,`language_id`)
933) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_bin;
934SET character_set_client = @saved_cs_client;
935
936--
937-- Dumping data for table `information_description`
938--
939
940LOCK TABLES `information_description` WRITE;
941/*!40000 ALTER TABLE `information_description` DISABLE KEYS */;
942INSERT INTO `information_description` VALUES (3,1,'Privacy Policy','<p>\r\n Privacy Policy</p>\r\n'),(6,1,'Delivery Information','<p>\r\n <span style="font-size: 14px;"><strong>Delivery Information</strong></span></p>\r\n<p>\r\n <span style="font-size: 14px;">Most Standard orders are&nbsp;shipped within 3&nbsp; working days&nbsp;after order has been placed.</span></p>\r\n<p>\r\n <span style="font-size: 14px;">Orders are shipped via USPS, UPS,&nbsp; FED EX.</span></p>\r\n<p>\r\n &nbsp;</p>\r\n'),(4,1,'About Us','<p>\r\n <span style="font-size: 14px;"><strong>About Us</strong></span></p>\r\n<p>\r\n WindowScreensNow.com Is a subsidary of U.S. Screen Corporation located in Florida Since 1987. We are a major manufaturer of roll form aluminum screen frame ,Patio Doors</p>\r\n<p>\r\n and Components . We&nbsp;are a wholesale supplier to the new construction and window industries across the south east United States. Window Screens Now is a service oriented</p>\r\n<p>\r\n Manufacturer who understands the desires and needs of customers. Window Screens Now Manufacturers over 150,000 window screens annually and is committed to taking</p>\r\n<p>\r\n care of our clients in a friendly, speedy, and no nonsense way at the best price guarantee!</p>\r\n'),(7,1,'Window Screen Information','<p style="text-align: center;">\r\n <span style="font-size: 20px;"><strong>Window Screen</strong></span></p>\r\n<p>\r\n &nbsp;</p>\r\n<p>\r\n <span style="font-size: 14px;">A <b>window screen</b>, <b>insect screen</b> or <b>bug screen</b> is a metal wire, fiberglass, or other synthetic fiber mesh, stretched in a frame of wood or metal, designed to cover the opening of an open window. Its primary purpose is to keep leaves, debris, insects, birds, and other animals from entering a building or a screened structure such as a porch, while permitting fresh air-flow. Most houses in Australia, the United States and Canada have screens on all operable windows, which are most useful in areas that have large mosquito populations. Formerly, screens in North America were usually replaced with glass&nbsp;storm windows in the winter, but now the two functions are usually combined in combination storm and screen windows, which allow glass and screen panels to slide up and down</span></p>\r\n<p style="text-align: center;">\r\n <span style="font-size: 20px;"><strong>Types of Fabric</strong></span></p>\r\n<p style="text-align: center;">\r\n <span style="font-size: 20px;"><span style="display: none;">&nbsp;HHHHHHHnmnm</span></span><span style="font-size: 20px;"><span style="font-size: 14px;">The most common materials used for insect screening material are aluminum and fiberglass. Aluminum is generally available in natural aluminum or in an applied black or charcoal color, which make the screening much less visible. Fiberglass is available in light gray as well as charcoal colors, the charcoal again offering better viewing and appearance. Fiberglass is less expensive, and has the advantage of not "denting" when hit or pushed, but it is somewhat more opaque than aluminum. For this reason, dark aluminum allows a better view of windows from the exterior, detracting less than fiberglass from the architectural effect of traditional divided-light window styles.</span></span></p>\r\n<p style="text-align: left;">\r\n <span style="font-size: 20px;"><span style="font-size: 14px;">For applications requiring greater strength, such as screened doors, nylon and polyester screening are also available.</span></span></p>\r\n<p style="text-align: left;">\r\n <span style="font-size: 20px;"><span style="font-size: 14px;">Bronze insect screening is much more expensive, but gives much longer service than either aluminum or fiberglass. When first installed, it has a bright gold color; this weathers to an unobtrusive dark charcoal within a year or less. Weathered bronze darkens the external appearance of windows to approximately the same degree as charcoal or black aluminum. Bronze is somewhat more resistant to denting than aluminum. Less common screen fabrics include copper, brass, stainless steel, and galvanized steel. For coastal locations, corrosion resistance usually requires the use of bronze or synthetic screening fabric.</span></span></p>\r\n<p style="text-align: left;">\r\n <span style="font-size: 20px;"><span style="font-size: 14px;">Some manufacturers offer screening that promise to substantially reduce the visibility of the screening. One material generally recognized as semi-transparent, inLighten®, was marketed for several years but its manufacturer discontinued the product in early 2011.</span></span></p>\r\n<p style="text-align: left;">\r\n <span style="font-size: 20px;"><span style="font-size: 14px;">In addition to insect screening, denser screen types that also reduce sunlight and heat gain are available. These offer significant potential energy savings in hot climates.</span></span></p>\r\n<p style="text-align: left;">\r\n <span style="font-size: 20px;"><span style="font-size: 14px;">Several manufacturers offer screens that roll into a pocket when not in use. These are available for casement windows as well as other types of window and door openings.</span></span></p>\r\n<p style="text-align: left;">\r\n <span style="font-size: 20px;"><span style="font-size: 14px;">Do-it-yourself screen and frame replacement kits are widely available at hardware and home improvement stores. One kind is composed of straight aluminum sides (which can be cut to size) and plastic corner inserts. Screen replacement kits usually consist of a roll of nylon screening fabric and a generous supply of rubber spline.</span></span></p>\r\n<p style="text-align: left;">\r\n <span style="font-size: 20px;"><span style="font-size: 14px;">Temporary, removable screens that fit within window tracks of double-hung windows are a common expedient widely available in hardware and home improvement stores. Typically 12 to 18 inches high, these screens are wedged beneath the lower sash of a double-hung window and secured laterally by the tracks of the window. A sliding mechanism allows the screen to be adjusted laterally to fit the width of most windows, which also allows the screen to fit securely within the tracks below the open sash.</span></span></p>\r\n<p style="text-align: center;">\r\n <span style="font-size: 20px;">HISTORY</span></p>\r\n<p>\r\n <span style="font-size: 20px;"><span style="font-size: 14px;">"Wove wire for window screens" were referenced in the American Farmer in 1823. Advertisement for wire window screens appeared in Boyd\'s Blue Book in 1836. Two wire window screens were exhibited at Quincy Hall in Boston in 1839. In 1861 Gilberr, Bennett and Company was manufacturing wire mesh sieves for food processing. An employee realized that the wire cloth could be painted gray and sold as window screens and the product became an immediate success. On July 7, 1868, Bayley and McCluskey filed a U.S. Patent, number 79541 for screened roof-top rail-car windows, allowing ventilation, while preventing "sparks, cinders, dust, etc." from entering the passenger compartment. By 1874, E.T. Barnum Company of Detroit, Michiganadvertised screens that were sold by the square foot.<sup class="reference" id="cite_ref-Busy_1-0"><font size="2"><span>[</span></font></sup> Apparently, window screens designed specifically to prevent insect entry were not patented in the United States, although by 1900 several patents were awarded for particular innovations related to window screen design. By the 1950s, <a class="mw-redirect" href="http://en.wikipedia.org/wiki/Parasitic_diseases" title="Parasitic diseases">parasitic diseases</a> were largely eradicated in the United States in part due to the widespread use of window screens. Today most houses in Australia, the United States and Canada have screens on all operable windows</span></span></p>\r\n<p style="text-align: left;">\r\n &nbsp;</p>\r\n<p>\r\n <span style="font-size: 20px;"><span style="font-size: 14px;">&nbsp;</span></span></p>\r\n<p>\r\n <span style="font-size: 20px;"><span style="font-size: 14px;">&nbsp;</span></span></p>\r\n<p style="text-align: left;">\r\n <span style="font-size: 20px;"><span style="font-size: 14px;">&nbsp;</span></span></p>\r\n<p>\r\n <span style="font-size: 20px;"><span style="font-size: 14px;">&nbsp;</span></span></p>\r\n<p>\r\n <span style="font-size: 20px;"><span style="font-size: 14px;">&nbsp;</span></span></p>\r\n<p>\r\n <span style="font-size: 20px;"><span style="font-size: 14px;">&nbsp;</span></span></p>\r\n<p>\r\n <span style="font-size: 20px;"><span style="font-size: 14px;">&nbsp;</span></span></p>\r\n<p>\r\n <span style="font-size: 20px;"><span style="font-size: 14px;">&nbsp;</span></span></p>\r\n<p>\r\n <span style="font-size: 20px;"><span style="font-size: 14px;">&nbsp;</span></span></p>\r\n<p>\r\n <span style="font-size: 20px;"><span style="font-size: 14px;">&nbsp;</span></span></p>\r\n<p>\r\n <span style="font-size: 20px;"><span style="font-size: 14px;">&nbsp;</span></span></p>\r\n<p>\r\n <span style="font-size: 20px;"><span style="font-size: 14px;">&nbsp;</span></span></p>\r\n<p>\r\n <span style="font-size: 20px;"><span style="font-size: 14px;">&nbsp;</span></span></p>\r\n<p>\r\n <span style="font-size: 20px;"><span style="font-size: 14px;">&nbsp;</span></span></p>\r\n<p style="text-align: left;">\r\n &nbsp;</p>\r\n<p style="text-align: left;">\r\n &nbsp;</p>\r\n<p style="text-align: left;">\r\n &nbsp;</p>\r\n<p style="text-align: left;">\r\n <span id="cke_bm_101E" style="display: none;"><span style="font-size: 20px;"><span style="font-size: 14px;"><span style="font-size: 14px;"><span></span></span></span></span></span></p>\r\n<p style="text-align: left;">\r\n <span id="cke_bm_101E" style="display: none;"><span style="font-size: 20px;"><span style="font-size: 14px;"><span style="font-size: 14px;"><span></span></span></span></span></span></p>\r\n<p style="text-align: left;">\r\n <span id="cke_bm_101E" style="display: none;"><span style="font-size: 20px;"><span style="font-size: 14px;"><span style="font-size: 14px;"><span></span></span></span></span></span></p>\r\n<p style="text-align: left;">\r\n <span id="cke_bm_101E" style="display: none;"><span style="font-size: 20px;"><span style="font-size: 14px;"><span style="font-size: 14px;"><span></span></span></span></span></span></p>\r\n<p style="text-align: left;">\r\n <span id="cke_bm_101E" style="display: none;"><span style="font-size: 20px;"><span style="font-size: 14px;"><span style="font-size: 14px;"><span></span></span></span></span></span></p>\r\n<p style="text-align: left;">\r\n <span id="cke_bm_101E" style="display: none;"><span style="font-size: 20px;"><span style="font-size: 14px;"><span style="font-size: 14px;"><span></span></span></span></span></span></p>\r\n<p style="text-align: left;">\r\n <span id="cke_bm_101E" style="display: none;"><span style="font-size: 20px;"><span style="font-size: 14px;"><span style="font-size: 14px;"><span></span></span></span></span></span></p>\r\n<p style="text-align: left;">\r\n <span id="cke_bm_101E" style="display: none;"><span style="font-size: 20px;"><span style="font-size: 14px;"><span style="font-size: 14px;"><span></span></span></span></span></span></p>\r\n<p style="text-align: left;">\r\n <span id="cke_bm_101E" style="display: none;"><span style="font-size: 20px;"><span style="font-size: 14px;"><span style="font-size: 14px;"><span></span></span></span></span></span></p>\r\n<p style="text-align: left;">\r\n <span id="cke_bm_101E" style="display: none;"><span style="font-size: 20px;"><span style="font-size: 14px;"><span style="font-size: 14px;"><span></span></span></span></span></span></p>\r\n<p style="text-align: left;">\r\n <span id="cke_bm_101E" style="display: none;"><span style="font-size: 20px;"><span style="font-size: 14px;"><span style="font-size: 14px;"><span></span></span></span></span></span></p>\r\n<p style="text-align: left;">\r\n <span id="cke_bm_101E" style="display: none;"><span style="font-size: 20px;"><span style="font-size: 14px;"><span style="font-size: 14px;"><span></span></span></span></span></span></p>\r\n<p style="text-align: left;">\r\n <span id="cke_bm_101E" style="display: none;"><span style="font-size: 20px;"><span style="font-size: 14px;"><span style="font-size: 14px;"><span></span></span></span></span></span></p>\r\n<p style="text-align: left;">\r\n <span id="cke_bm_101E" style="display: none;"><span style="font-size: 20px;"><span style="font-size: 14px;"><span style="font-size: 14px;"><span></span></span></span></span></span></p>\r\n<p style="text-align: left;">\r\n <span id="cke_bm_101E" style="display: none;"><span style="font-size: 20px;"><span style="font-size: 14px;"><span style="font-size: 14px;"><span></span></span></span></span></span></p>\r\n<p style="text-align: left;">\r\n <span id="cke_bm_101E" style="display: none;"><span style="font-size: 20px;"><span style="font-size: 14px;"><span style="font-size: 14px;"><span></span></span></span></span></span></p>\r\n<p>\r\n <span id="cke_bm_101E" style="display: none;"><span style="font-size: 20px;"><span style="font-size: 14px;">"Wove wire for window screens" were referenced in the American Farmer in 1823. Advertisement for wire window screens appeared in Boyd\'s Blue Book in 1836. Two wire window screens were exhibited at Quincy Hall in Boston in 1839. In 1861 Gilberr, Bennett and Company was manufacturing <a class="mw-redirect" href="http://en.wikipedia.org/wiki/Wire_mesh" title="Wire mesh">wire mesh</a> <a class="mw-redirect" href="http://en.wikipedia.org/wiki/Sieves" title="Sieves">sieves</a> for food processing. An employee realized that the wire cloth could be painted gray and sold as window screens and the product became an immediate success. On July 7, 1868, Bayley and McCluskey filed a <a class="mw-redirect" href="http://en.wikipedia.org/wiki/U.S._Patent" title="U.S. Patent">U.S. Patent</a>, number 79541 for screened roof-top rail-car windows, allowing ventilation, while preventing "sparks, cinders, dust, etc." from entering the passenger compartment. By 1874, E.T. Barnum Company of <a class="mw-redirect" href="http://en.wikipedia.org/wiki/Detroit,_Michigan" title="Detroit, Michigan">Detroit</a>, <a href="http://en.wikipedia.org/wiki/Michigan" title="Michigan">Michigan</a> advertised screens that were sold by the square foot.<sup class="reference" id="cite_ref-Busy_1-0"><a href="http://en.wikipedia.org/wiki/Window_screen#cite_note-Busy-1"><font size="2"><span>[</span>1<span>]</span></font></a></sup><sup class="reference" id="cite_ref-2"><a href="http://en.wikipedia.org/wiki/Window_screen#cite_note-2"><font size="2"><span>[</span>2<span>]</span></font></a></sup> Apparently, window screens designed specifically to prevent insect entry were not patented in the United States, although by 1900 several patents were awarded for particular innovations related to window screen design. By the 1950s, <a class="mw-redirect" href="http://en.wikipedia.org/wiki/Parasitic_diseases" title="Parasitic diseases">parasitic diseases</a> were largely eradicated in the <a href="http://en.wikipedia.org/wiki/United_States" title="United States">United States</a> in part due to the widespread use of window screens.<sup class="reference" id="cite_ref-3"><a href="http://en.wikipedia.org/wiki/Window_screen#cite_note-3"><font size="2"><span>[</span>3<span>]</span></font></a></sup> Today most houses in <a href="http://en.wikipedia.org/wiki/Australia" title="Australia">Australia</a>, the <a href="http://en.wikipedia.org/wiki/United_States" title="United States">United States</a> and <a href="http://en.wikipedia.org/wiki/Canada" title="Canada">Canada</a> have screens on all operable windows</span></span></span></p>\r\n<p style="text-align: left;">\r\n <span id="cke_bm_101E" style="display: none;"><span style="font-size: 20px;"><span style="font-size: 14px;">&nbsp;</span></span></span></p>\r\n<p style="text-align: center;">\r\n &nbsp;</p>\r\n<p style="text-align: left;">\r\n <span id="cke_bm_101E" style="display: none;">&nbsp;</span></p>\r\n<p style="text-align: left;">\r\n <span id="cke_bm_101E" style="display: none;">&nbsp;</span></p>\r\n<p style="text-align: center;">\r\n <span id="cke_bm_101E" style="display: none;">&nbsp;</span></p>\r\n<p style="text-align: center;">\r\n <span id="cke_bm_101E" style="display: none;">&nbsp;</span></p>\r\n<p style="text-align: center;">\r\n &nbsp;</p>\r\n<p style="text-align: center;">\r\n &nbsp;</p>\r\n'),(8,1,'How to measure window screens','<h2 class="Heading2">\r\n &nbsp;</h2>\r\n<p style="text-align: center;">\r\n <strong><span style="color: rgb(255, 0, 0);">DIRECTIONS FOR MEASURING WINDOW&nbsp;SCREENS</span></strong></p>\r\n<ol>\r\n <li>\r\n Find&nbsp;a screen from an actual window that fits properly. Never measure a screen does not fit correctly or&nbsp;that is from a storage area.</li>\r\n <li>\r\n Measure the width and the length of the screen within a 1/16"</li>\r\n <li>\r\n Measure the thickness of the screen frame.<br />\r\n It will be one of the following: 1/4", 5/16", 7/16"<br />\r\n <strong>This measurement is very important - make sure it is checked carefully</strong>.</li>\r\n <li>\r\n Choose the color of the&nbsp;screen frame Mill (aluminum color), White, or Bronze (dark brown).</li>\r\n <li>\r\n Determine from the pictures below what type of frame and &nbsp;hardware is on your screen.</li>\r\n</ol>\r\n<p>\r\n &nbsp;</p>\r\n<p>\r\n &nbsp;</p>\r\n<p style="text-align: center;">\r\n <img alt="Frame Thickness" src="http://www.windowscreensnow.com/image/data/Frame Size profiles.jpg" style="width: 542px; height: 263px;" /></p>\r\n<p>\r\n &nbsp;</p>\r\n<p>\r\n &nbsp;</p>\r\n<p>\r\n &nbsp;</p>\r\n<p>\r\n &nbsp;</p>\r\n'),(5,1,'Terms & Conditions','<p style="text-align: center;">\r\n <span style="font-size: 20px;"><strong>Terms &amp; Conditions</strong></span></p>\r\n<p>\r\n <span style="font-size: 20px;"><strong>&nbsp;</strong></span></p>\r\n<p>\r\n <span style="font-size: 20px;"><strong>&nbsp;</strong></span></p>\r\n<p style="text-align: center;">\r\n <span style="font-size: 20px;"><strong><span style="color: rgb(255, 0, 0);">RETURN POLICY</span></strong></span></p>\r\n<p>\r\n <span style="font-size: 20px;"><strong><b><font face="Futura-Bold" size="2"><font face="Futura-Bold" size="2">No returns or cancellations for custom made </font></font></b><b><font face="Futura-Bold" size="2"><font face="Futura-Bold" size="2">merchandise will be accepted. (Note: All </font></font></b><b><font face="Futura-Bold" size="2"><font face="Futura-Bold" size="2">screens are custom made.) Material that can be</font></font></b></strong></span></p>\r\n<p>\r\n <span style="font-size: 20px;"><strong><b><font face="Futura-Bold" size="2"><font face="Futura-Bold" size="2">returned is limited to stock items. </font></font></b><span style="font-size: 14px;"><font face="Futura-Book"><font face="Futura-Book">Merchandise</font></font><font face="Futura-Book"><font face="Futura-Book"> shall not be returned without authorization. All returns must be sent freight prepaid</font></font></span></strong></span></p>\r\n<p>\r\n <span style="font-size: 20px;"><strong><span style="font-size: 14px;"><font face="Futura-Book"><font face="Futura-Book">back to our warehouse. All returnable items </font></font></span><span style="font-size: 14px;"><font face="Futura-Book"><font face="Futura-Book">are subject to a minimum re-stocking charge of </font></font></span><span style="font-size: 14px;"><font face="Futura-Book"><font face="Futura-Book">15% of the original purchase price. Freight both ways is the </font></font></span></strong></span></p>\r\n<p>\r\n <span style="font-size: 20px;"><strong><span style="font-size: 14px;"><font face="Futura-Book"><font face="Futura-Book">responsibility of the customer.</font></font></span><font face="Futura-Book"><font face="Futura-Book"> <span style="font-size: 14px;"><span style="background-color: rgb(255, 255, 0);">Goods </span></span></font></font><span style="font-size: 14px;"><font face="Futura-Book"><font face="Futura-Book"><span style="background-color: rgb(255, 255, 0);">must be PREPAID, UNUSED and COMPLETE for </span></font></font><font face="Futura-Book"><font face="Futura-Book"><span style="background-color: rgb(255, 255, 0);">credit issuance</span></font></font><font face="Futura-Book"><font face="Futura-Book"><span style="background-color: rgb(255, 255, 0);">.</span></font></font></span></strong></span></p>\r\n<p>\r\n &nbsp;</p>\r\n<p style="text-align: center;">\r\n <span style="font-size: 20px;"><strong><span style="font-size: 14px;"><font face="Futura-Book"><font face="Futura-Book">&nbsp;</font></font></span></strong></span></p>\r\n<p style="text-align: center;">\r\n <span style="font-size: 20px;"><strong><span style="font-size: 14px;"><font face="Futura-Book"><font face="Futura-Book"><span style="color: rgb(255, 0, 0);"><span style="font-size: 20px;">CLAIMS AND DAMAGES</span></span></font></font></span></strong></span></p>\r\n<p>\r\n <span style="display: none;">&nbsp;</span></p>\r\n<p align="LEFT">\r\n <span style="font-size: 20px;"><strong><span style="font-size: 14px;"><font face="Futura-Book"><font face="Futura-Book"><span id="cke_bm_61S" style="display: none;">&nbsp;</span>&nbsp;</font></font></span></strong></span><span style="font-size: 20px;"><strong><span style="font-size: 14px;"><font face="Futura-Book"><font face="Futura-Book"><b><font face="Futura-Bold"><font face="Futura-Bold">All claims and shortages must be reported to us within 5 days after receipt of merchandise. </font></font></b><font face="Futura-Book"><font face="Futura-Book">Merchandise should be inspected before the delivery receipt is </font></font></font></font></span></strong></span></p>\r\n<p align="LEFT">\r\n <span style="font-size: 20px;"><strong><span style="font-size: 14px;"><font face="Futura-Book"><font face="Futura-Book"><font face="Futura-Book"><font face="Futura-Book">signed. Open any cartons that appear to be damaged before signing the delivery </font></font><font face="Futura-Book"><font face="Futura-Book">receipt. All obvious damage must be noted on the delivery receipt next to </font></font></font></font></span></strong></span></p>\r\n<p align="LEFT">\r\n <span style="font-size: 20px;"><strong><span style="font-size: 14px;"><font face="Futura-Book"><font face="Futura-Book"><font face="Futura-Book"><font face="Futura-Book">your signature. If the damaged goods are concealed and discovered after the delivery, immediately notify our office.<span id="cke_bm_61E" style="display: none;">&nbsp;</span></font></font></font></font></span></strong></span></p>\r\n<p>\r\n <span style="display: none;">&nbsp;</span></p>\r\n<p>\r\n &nbsp;</p>\r\n<p>\r\n &nbsp;</p>\r\n<p>\r\n &nbsp;</p>\r\n<p style="text-align: center;">\r\n &nbsp;</p>\r\n<p style="text-align: center;">\r\n &nbsp;</p>\r\n<p style="text-align: center;">\r\n &nbsp;</p>\r\n');
943/*!40000 ALTER TABLE `information_description` ENABLE KEYS */;
944UNLOCK TABLES;
945
946--
947-- Table structure for table `information_to_layout`
948--
949
950DROP TABLE IF EXISTS `information_to_layout`;
951SET @saved_cs_client = @@character_set_client;
952SET character_set_client = utf8;
953CREATE TABLE `information_to_layout` (
954 `information_id` int(11) NOT NULL,
955 `store_id` int(11) NOT NULL,
956 `layout_id` int(11) NOT NULL,
957 PRIMARY KEY (`information_id`,`store_id`)
958) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_bin;
959SET character_set_client = @saved_cs_client;
960
961--
962-- Dumping data for table `information_to_layout`
963--
964
965LOCK TABLES `information_to_layout` WRITE;
966/*!40000 ALTER TABLE `information_to_layout` DISABLE KEYS */;
967/*!40000 ALTER TABLE `information_to_layout` ENABLE KEYS */;
968UNLOCK TABLES;
969
970--
971-- Table structure for table `information_to_store`
972--
973
974DROP TABLE IF EXISTS `information_to_store`;
975SET @saved_cs_client = @@character_set_client;
976SET character_set_client = utf8;
977CREATE TABLE `information_to_store` (
978 `information_id` int(11) NOT NULL,
979 `store_id` int(11) NOT NULL,
980 PRIMARY KEY (`information_id`,`store_id`)
981) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_bin;
982SET character_set_client = @saved_cs_client;
983
984--
985-- Dumping data for table `information_to_store`
986--
987
988LOCK TABLES `information_to_store` WRITE;
989/*!40000 ALTER TABLE `information_to_store` DISABLE KEYS */;
990INSERT INTO `information_to_store` VALUES (3,0),(4,0),(5,0),(6,0),(7,0),(8,0);
991/*!40000 ALTER TABLE `information_to_store` ENABLE KEYS */;
992UNLOCK TABLES;
993
994--
995-- Table structure for table `language`
996--
997
998DROP TABLE IF EXISTS `language`;
999SET @saved_cs_client = @@character_set_client;
1000SET character_set_client = utf8;
1001CREATE TABLE `language` (
1002 `language_id` int(11) NOT NULL auto_increment,
1003 `name` varchar(32) collate utf8_bin NOT NULL default '',
1004 `code` varchar(5) collate utf8_bin NOT NULL,
1005 `locale` varchar(255) collate utf8_bin NOT NULL,
1006 `image` varchar(64) collate utf8_bin NOT NULL,
1007 `directory` varchar(32) collate utf8_bin NOT NULL default '',
1008 `filename` varchar(64) collate utf8_bin NOT NULL default '',
1009 `sort_order` int(3) NOT NULL default '0',
1010 `status` tinyint(1) NOT NULL,
1011 PRIMARY KEY (`language_id`),
1012 KEY `name` (`name`)
1013) ENGINE=MyISAM AUTO_INCREMENT=2 DEFAULT CHARSET=utf8 COLLATE=utf8_bin;
1014SET character_set_client = @saved_cs_client;
1015
1016--
1017-- Dumping data for table `language`
1018--
1019
1020LOCK TABLES `language` WRITE;
1021/*!40000 ALTER TABLE `language` DISABLE KEYS */;
1022INSERT INTO `language` VALUES (1,'English','en','en_US.UTF-8,en_US,en-gb,english','gb.png','english','english',1,1);
1023/*!40000 ALTER TABLE `language` ENABLE KEYS */;
1024UNLOCK TABLES;
1025
1026--
1027-- Table structure for table `layout`
1028--
1029
1030DROP TABLE IF EXISTS `layout`;
1031SET @saved_cs_client = @@character_set_client;
1032SET character_set_client = utf8;
1033CREATE TABLE `layout` (
1034 `layout_id` int(11) NOT NULL auto_increment,
1035 `name` varchar(64) collate utf8_bin NOT NULL,
1036 PRIMARY KEY (`layout_id`)
1037) ENGINE=MyISAM AUTO_INCREMENT=12 DEFAULT CHARSET=utf8 COLLATE=utf8_bin;
1038SET character_set_client = @saved_cs_client;
1039
1040--
1041-- Dumping data for table `layout`
1042--
1043
1044LOCK TABLES `layout` WRITE;
1045/*!40000 ALTER TABLE `layout` DISABLE KEYS */;
1046INSERT INTO `layout` VALUES (1,'Home'),(2,'Product'),(3,'Category'),(4,'Default'),(5,'Manufacturer'),(6,'Account'),(7,'Checkout'),(8,'Contact'),(9,'Sitemap'),(10,'Affiliate'),(11,'Information');
1047/*!40000 ALTER TABLE `layout` ENABLE KEYS */;
1048UNLOCK TABLES;
1049
1050--
1051-- Table structure for table `layout_route`
1052--
1053
1054DROP TABLE IF EXISTS `layout_route`;
1055SET @saved_cs_client = @@character_set_client;
1056SET character_set_client = utf8;
1057CREATE TABLE `layout_route` (
1058 `layout_route_id` int(11) NOT NULL auto_increment,
1059 `layout_id` int(11) NOT NULL,
1060 `store_id` int(11) NOT NULL,
1061 `route` varchar(255) collate utf8_bin NOT NULL,
1062 PRIMARY KEY (`layout_route_id`)
1063) ENGINE=MyISAM AUTO_INCREMENT=32 DEFAULT CHARSET=utf8 COLLATE=utf8_bin;
1064SET character_set_client = @saved_cs_client;
1065
1066--
1067-- Dumping data for table `layout_route`
1068--
1069
1070LOCK TABLES `layout_route` WRITE;
1071/*!40000 ALTER TABLE `layout_route` DISABLE KEYS */;
1072INSERT INTO `layout_route` VALUES (30,6,0,'account'),(17,10,0,'affiliate/'),(29,3,0,'product/category'),(26,1,0,'common/home'),(20,2,0,'product/product'),(24,11,0,'information/information'),(22,5,0,'product/manufacturer'),(23,7,0,'checkout/'),(31,8,0,'information/contact');
1073/*!40000 ALTER TABLE `layout_route` ENABLE KEYS */;
1074UNLOCK TABLES;
1075
1076--
1077-- Table structure for table `length_class`
1078--
1079
1080DROP TABLE IF EXISTS `length_class`;
1081SET @saved_cs_client = @@character_set_client;
1082SET character_set_client = utf8;
1083CREATE TABLE `length_class` (
1084 `length_class_id` int(11) NOT NULL auto_increment,
1085 `value` decimal(15,8) NOT NULL,
1086 PRIMARY KEY (`length_class_id`)
1087) ENGINE=MyISAM AUTO_INCREMENT=4 DEFAULT CHARSET=utf8 COLLATE=utf8_bin;
1088SET character_set_client = @saved_cs_client;
1089
1090--
1091-- Dumping data for table `length_class`
1092--
1093
1094LOCK TABLES `length_class` WRITE;
1095/*!40000 ALTER TABLE `length_class` DISABLE KEYS */;
1096INSERT INTO `length_class` VALUES (1,'1.00000000'),(2,'10.00000000'),(3,'0.39370000');
1097/*!40000 ALTER TABLE `length_class` ENABLE KEYS */;
1098UNLOCK TABLES;
1099
1100--
1101-- Table structure for table `length_class_description`
1102--
1103
1104DROP TABLE IF EXISTS `length_class_description`;
1105SET @saved_cs_client = @@character_set_client;
1106SET character_set_client = utf8;
1107CREATE TABLE `length_class_description` (
1108 `length_class_id` int(11) NOT NULL auto_increment,
1109 `language_id` int(11) NOT NULL,
1110 `title` varchar(32) collate utf8_bin NOT NULL,
1111 `unit` varchar(4) collate utf8_bin NOT NULL,
1112 PRIMARY KEY (`length_class_id`,`language_id`)
1113) ENGINE=MyISAM AUTO_INCREMENT=4 DEFAULT CHARSET=utf8 COLLATE=utf8_bin;
1114SET character_set_client = @saved_cs_client;
1115
1116--
1117-- Dumping data for table `length_class_description`
1118--
1119
1120LOCK TABLES `length_class_description` WRITE;
1121/*!40000 ALTER TABLE `length_class_description` DISABLE KEYS */;
1122INSERT INTO `length_class_description` VALUES (1,1,'Centimeter','cm'),(2,1,'Millimeter','mm'),(3,1,'Inch','in');
1123/*!40000 ALTER TABLE `length_class_description` ENABLE KEYS */;
1124UNLOCK TABLES;
1125
1126--
1127-- Table structure for table `manufacturer`
1128--
1129
1130DROP TABLE IF EXISTS `manufacturer`;
1131SET @saved_cs_client = @@character_set_client;
1132SET character_set_client = utf8;
1133CREATE TABLE `manufacturer` (
1134 `manufacturer_id` int(11) NOT NULL auto_increment,
1135 `name` varchar(64) collate utf8_bin NOT NULL default '',
1136 `image` varchar(255) collate utf8_bin default NULL,
1137 `sort_order` int(3) NOT NULL,
1138 PRIMARY KEY (`manufacturer_id`)
1139) ENGINE=MyISAM AUTO_INCREMENT=12 DEFAULT CHARSET=utf8 COLLATE=utf8_bin;
1140SET character_set_client = @saved_cs_client;
1141
1142--
1143-- Dumping data for table `manufacturer`
1144--
1145
1146LOCK TABLES `manufacturer` WRITE;
1147/*!40000 ALTER TABLE `manufacturer` DISABLE KEYS */;
1148INSERT INTO `manufacturer` VALUES (11,'U.S. Screen Corp.','data/us-screen-logo.png',0);
1149/*!40000 ALTER TABLE `manufacturer` ENABLE KEYS */;
1150UNLOCK TABLES;
1151
1152--
1153-- Table structure for table `manufacturer_to_store`
1154--
1155
1156DROP TABLE IF EXISTS `manufacturer_to_store`;
1157SET @saved_cs_client = @@character_set_client;
1158SET character_set_client = utf8;
1159CREATE TABLE `manufacturer_to_store` (
1160 `manufacturer_id` int(11) NOT NULL,
1161 `store_id` int(11) NOT NULL,
1162 PRIMARY KEY (`manufacturer_id`,`store_id`)
1163) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_bin;
1164SET character_set_client = @saved_cs_client;
1165
1166--
1167-- Dumping data for table `manufacturer_to_store`
1168--
1169
1170LOCK TABLES `manufacturer_to_store` WRITE;
1171/*!40000 ALTER TABLE `manufacturer_to_store` DISABLE KEYS */;
1172INSERT INTO `manufacturer_to_store` VALUES (11,0);
1173/*!40000 ALTER TABLE `manufacturer_to_store` ENABLE KEYS */;
1174UNLOCK TABLES;
1175
1176--
1177-- Table structure for table `option`
1178--
1179
1180DROP TABLE IF EXISTS `option`;
1181SET @saved_cs_client = @@character_set_client;
1182SET character_set_client = utf8;
1183CREATE TABLE `option` (
1184 `option_id` int(11) NOT NULL auto_increment,
1185 `type` varchar(32) collate utf8_bin NOT NULL,
1186 `sort_order` int(3) NOT NULL,
1187 PRIMARY KEY (`option_id`)
1188) ENGINE=MyISAM AUTO_INCREMENT=42 DEFAULT CHARSET=utf8 COLLATE=utf8_bin;
1189SET character_set_client = @saved_cs_client;
1190
1191--
1192-- Dumping data for table `option`
1193--
1194
1195LOCK TABLES `option` WRITE;
1196/*!40000 ALTER TABLE `option` DISABLE KEYS */;
1197INSERT INTO `option` VALUES (18,'select',2),(16,'select',1),(14,'image',5),(15,'image',7),(13,'image',6),(17,'select',3),(19,'select',4),(20,'select',0),(21,'select',1),(22,'image',4),(23,'checkbox',6),(24,'image',9),(25,'checkbox',7),(26,'image',7),(27,'image',1),(28,'select',2),(29,'select',2),(30,'select',2),(31,'image',8),(32,'select',0),(33,'select',2),(34,'select',1),(35,'select',1),(36,'select',1),(37,'image',1),(38,'select',1),(39,'select',1),(40,'select',1),(41,'image',1);
1198/*!40000 ALTER TABLE `option` ENABLE KEYS */;
1199UNLOCK TABLES;
1200
1201--
1202-- Table structure for table `option_description`
1203--
1204
1205DROP TABLE IF EXISTS `option_description`;
1206SET @saved_cs_client = @@character_set_client;
1207SET character_set_client = utf8;
1208CREATE TABLE `option_description` (
1209 `option_id` int(11) NOT NULL,
1210 `language_id` int(11) NOT NULL,
1211 `name` varchar(128) collate utf8_bin NOT NULL,
1212 PRIMARY KEY (`option_id`,`language_id`)
1213) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_bin;
1214SET character_set_client = @saved_cs_client;
1215
1216--
1217-- Dumping data for table `option_description`
1218--
1219
1220LOCK TABLES `option_description` WRITE;
1221/*!40000 ALTER TABLE `option_description` DISABLE KEYS */;
1222INSERT INTO `option_description` VALUES (18,1,'Width Fraction'),(15,1,'Mesh Color'),(13,1,'Corner Lock Color'),(14,1,'Frame Color'),(19,1,'Length Fraction'),(17,1,'Length Inches'),(16,1,'Width Inches'),(20,1,'Width Inches'),(21,1,'Length Inches'),(22,1,'Wheels'),(23,1,'Frame Thickness'),(24,1,'Pull Tabs'),(25,1,'Which Side Are Springs On?'),(26,1,'Spring Type'),(27,1,'Screen Color'),(28,1,'Lengths'),(29,1,'Length'),(30,1,'Length'),(31,1,'Top Hung Bracket'),(32,1,'Door Kit Length'),(33,1,'Spline Length'),(34,1,'Spline Diameter'),(35,1,'Pull White or Black'),(36,1,'Pull White or Black'),(37,1,'Steel Wheels'),(38,1,'Length'),(39,1,'Corner Lock Size'),(40,1,'Spline Type'),(41,1,'tension spring type');
1223/*!40000 ALTER TABLE `option_description` ENABLE KEYS */;
1224UNLOCK TABLES;
1225
1226--
1227-- Table structure for table `option_value`
1228--
1229
1230DROP TABLE IF EXISTS `option_value`;
1231SET @saved_cs_client = @@character_set_client;
1232SET character_set_client = utf8;
1233CREATE TABLE `option_value` (
1234 `option_value_id` int(11) NOT NULL auto_increment,
1235 `option_id` int(11) NOT NULL,
1236 `image` varchar(255) collate utf8_bin NOT NULL,
1237 `sort_order` int(3) NOT NULL,
1238 PRIMARY KEY (`option_value_id`)
1239) ENGINE=MyISAM AUTO_INCREMENT=321 DEFAULT CHARSET=utf8 COLLATE=utf8_bin;
1240SET character_set_client = @saved_cs_client;
1241
1242--
1243-- Dumping data for table `option_value`
1244--
1245
1246LOCK TABLES `option_value` WRITE;
1247/*!40000 ALTER TABLE `option_value` DISABLE KEYS */;
1248INSERT INTO `option_value` VALUES (89,18,'no_image.jpg',14),(49,13,'data/corner-lock-gray-straight-cut-2.png',1),(54,14,'data/bronze.png',3),(268,23,'',0),(50,13,'data/corner-lock-white-straight-cut.png',2),(269,23,'',0),(56,15,'data/gray-mesh.png',2),(229,16,'no_image.jpg',70),(228,16,'no_image.jpg',69),(227,16,'no_image.jpg',68),(226,16,'no_image.jpg',67),(225,16,'no_image.jpg',66),(169,17,'no_image.jpg',70),(166,17,'no_image.jpg',67),(167,17,'no_image.jpg',68),(88,18,'no_image.jpg',13),(87,18,'no_image.jpg',12),(86,18,'no_image.jpg',11),(85,18,'no_image.jpg',10),(84,18,'no_image.jpg',9),(168,17,'no_image.jpg',69),(165,17,'no_image.jpg',66),(164,17,'no_image.jpg',65),(163,17,'no_image.jpg',64),(162,17,'no_image.jpg',63),(161,17,'no_image.jpg',62),(160,17,'no_image.jpg',61),(83,18,'no_image.jpg',8),(82,18,'no_image.jpg',7),(77,18,'no_image.jpg',2),(78,18,'no_image.jpg',3),(79,18,'no_image.jpg',4),(80,18,'no_image.jpg',5),(81,18,'no_image.jpg',6),(108,18,'no_image.jpg',1),(91,18,'no_image.jpg',16),(96,19,'no_image.jpg',6),(95,19,'no_image.jpg',5),(94,19,'no_image.jpg',4),(93,19,'no_image.jpg',3),(92,19,'no_image.jpg',2),(97,19,'no_image.jpg',7),(98,19,'no_image.jpg',8),(99,19,'no_image.jpg',9),(100,19,'no_image.jpg',10),(101,19,'no_image.jpg',11),(102,19,'no_image.jpg',12),(103,19,'no_image.jpg',13),(104,19,'no_image.jpg',14),(105,19,'no_image.jpg',15),(224,16,'no_image.jpg',65),(223,16,'no_image.jpg',64),(222,16,'no_image.jpg',63),(221,16,'no_image.jpg',62),(220,16,'no_image.jpg',61),(52,14,'data/mill-finish.png',1),(53,14,'data/white.png',2),(55,15,'data/charcoal-mesh.png',1),(106,19,'no_image.jpg',16),(90,18,'no_image.jpg',15),(159,17,'no_image.jpg',60),(158,17,'no_image.jpg',59),(157,17,'no_image.jpg',58),(156,17,'no_image.jpg',57),(155,17,'no_image.jpg',56),(154,17,'no_image.jpg',55),(153,17,'no_image.jpg',54),(152,17,'no_image.jpg',53),(151,17,'no_image.jpg',52),(150,17,'no_image.jpg',51),(149,17,'no_image.jpg',50),(148,17,'no_image.jpg',49),(147,17,'no_image.jpg',48),(146,17,'no_image.jpg',47),(145,17,'no_image.jpg',46),(144,17,'no_image.jpg',45),(143,17,'no_image.jpg',44),(142,17,'no_image.jpg',43),(141,17,'no_image.jpg',42),(140,17,'no_image.jpg',41),(219,16,'no_image.jpg',60),(218,16,'no_image.jpg',59),(217,16,'no_image.jpg',58),(216,16,'no_image.jpg',57),(215,16,'no_image.jpg',56),(214,16,'no_image.jpg',55),(213,16,'no_image.jpg',54),(212,16,'no_image.jpg',53),(211,16,'no_image.jpg',52),(210,16,'no_image.jpg',51),(209,16,'no_image.jpg',50),(208,16,'no_image.jpg',49),(207,16,'no_image.jpg',48),(206,16,'no_image.jpg',47),(205,16,'no_image.jpg',46),(204,16,'no_image.jpg',45),(203,16,'no_image.jpg',44),(202,16,'no_image.jpg',43),(201,16,'no_image.jpg',42),(200,16,'no_image.jpg',41),(139,17,'no_image.jpg',40),(138,17,'no_image.jpg',39),(137,17,'no_image.jpg',38),(136,17,'no_image.jpg',37),(135,17,'no_image.jpg',36),(134,17,'no_image.jpg',35),(133,17,'no_image.jpg',34),(132,17,'no_image.jpg',33),(131,17,'no_image.jpg',32),(130,17,'no_image.jpg',31),(129,17,'no_image.jpg',30),(75,17,'no_image.jpg',9),(74,17,'no_image.jpg',8),(73,17,'no_image.jpg',7),(76,17,'no_image.jpg',10),(72,17,'no_image.jpg',6),(71,17,'no_image.jpg',5),(107,17,'no_image.jpg',10),(70,17,'no_image.jpg',4),(69,17,'no_image.jpg',3),(68,17,'no_image.jpg',2),(67,17,'no_image.jpg',1),(110,17,'no_image.jpg',11),(111,17,'no_image.jpg',12),(112,17,'no_image.jpg',13),(113,17,'no_image.jpg',14),(114,17,'no_image.jpg',15),(115,17,'no_image.jpg',16),(116,17,'no_image.jpg',17),(117,17,'no_image.jpg',18),(118,17,'no_image.jpg',19),(119,17,'no_image.jpg',20),(120,17,'no_image.jpg',21),(121,17,'no_image.jpg',22),(122,17,'no_image.jpg',23),(123,17,'no_image.jpg',24),(124,17,'no_image.jpg',25),(126,17,'no_image.jpg',27),(125,17,'no_image.jpg',26),(127,17,'no_image.jpg',28),(128,17,'no_image.jpg',29),(199,16,'no_image.jpg',40),(198,16,'no_image.jpg',39),(197,16,'no_image.jpg',38),(196,16,'no_image.jpg',37),(195,16,'no_image.jpg',36),(194,16,'no_image.jpg',35),(193,16,'no_image.jpg',34),(192,16,'no_image.jpg',33),(191,16,'no_image.jpg',32),(190,16,'no_image.jpg',31),(66,16,'no_image.jpg',10),(65,16,'no_image.jpg',9),(64,16,'no_image.jpg',8),(63,16,'no_image.jpg',7),(62,16,'no_image.jpg',6),(58,16,'no_image.jpg',2),(57,16,'no_image.jpg',1),(59,16,'no_image.jpg',3),(60,16,'no_image.jpg',4),(61,16,'no_image.jpg',5),(170,16,'no_image.jpg',11),(171,16,'no_image.jpg',12),(172,16,'no_image.jpg',13),(173,16,'no_image.jpg',14),(174,16,'no_image.jpg',15),(175,16,'no_image.jpg',16),(176,16,'no_image.jpg',17),(177,16,'no_image.jpg',18),(178,16,'no_image.jpg',19),(179,16,'no_image.jpg',20),(180,16,'no_image.jpg',21),(181,16,'no_image.jpg',22),(182,16,'no_image.jpg',23),(183,16,'no_image.jpg',24),(184,16,'no_image.jpg',25),(185,16,'no_image.jpg',26),(186,16,'no_image.jpg',27),(187,16,'no_image.jpg',28),(188,16,'no_image.jpg',29),(189,16,'no_image.jpg',30),(230,20,'no_image.jpg',1),(236,21,'no_image.jpg',6),(235,21,'no_image.jpg',5),(234,21,'no_image.jpg',4),(233,21,'no_image.jpg',3),(232,21,'no_image.jpg',1),(231,21,'no_image.jpg',0),(244,21,'no_image.jpg',15),(245,21,'no_image.jpg',16),(247,21,'no_image.jpg',18),(246,21,'no_image.jpg',17),(248,21,'no_image.jpg',19),(249,21,'no_image.jpg',20),(250,21,'no_image.jpg',21),(251,21,'no_image.jpg',22),(252,21,'no_image.jpg',23),(253,21,'no_image.jpg',24),(254,21,'no_image.jpg',25),(255,21,'no_image.jpg',26),(256,21,'no_image.jpg',27),(257,21,'no_image.jpg',28),(258,21,'no_image.jpg',29),(237,21,'no_image.jpg',7),(238,21,'no_image.jpg',8),(239,21,'no_image.jpg',9),(240,21,'no_image.jpg',10),(241,21,'no_image.jpg',11),(242,21,'no_image.jpg',12),(243,21,'no_image.jpg',14),(259,21,'no_image.jpg',2),(260,21,'no_image.jpg',13),(261,20,'',2),(262,20,'',3),(263,20,'',4),(264,20,'',5),(265,20,'',6),(51,13,'data/corner-lock-bronze.jpg',3),(266,22,'data/Plastic-Wheel-Roller.jpg',1),(267,22,'data/steel-wheel-roller.jpg',4),(109,19,'no_image.jpg',1),(271,24,'data/Aluminum-Corner-Locks.jpg',2),(272,24,'data/white.png',3),(270,24,'data/Black-Plactic-Pull-Tab.jpg',1),(275,25,'no_image.jpg',3),(274,25,'no_image.jpg',2),(273,25,'no_image.jpg',1),(277,26,'data/plunger.jpg',2),(276,26,'data/tension-spring100.jpg',1),(278,26,'data/white.png',3),(279,27,'data/charcoal-mesh.png',1),(280,27,'data/gray-mesh.png',2),(281,28,'no_image.jpg',1),(283,29,'',1),(284,29,'',2),(285,30,'',1),(286,30,'',2),(282,28,'no_image.jpg',2),(287,15,'data/gray-mesh.png',3),(288,31,'data/Top Hung Bracket.jpg',1),(289,32,'no_image.jpg',0),(296,33,'no_image.jpg',7),(294,33,'no_image.jpg',5),(295,33,'no_image.jpg',6),(293,33,'no_image.jpg',4),(292,33,'no_image.jpg',3),(291,33,'no_image.jpg',2),(290,33,'no_image.jpg',1),(299,34,'no_image.jpg',2),(298,34,'no_image.jpg',1),(297,34,'no_image.jpg',0),(300,34,'no_image.jpg',3),(301,34,'no_image.jpg',4),(302,34,'no_image.jpg',5),(303,34,'no_image.jpg',6),(304,34,'no_image.jpg',7),(305,35,'data/Black-Plactic-Pull-Tab.jpg',1),(306,35,'data/White-Plastic-Pull-Tab.jpg',2),(307,36,'data/Black-Plactic-Pull-Tab.jpg',1),(308,36,'data/White-Plastic-Pull-Tab.jpg',2),(309,37,'data/steel-wheel-roller.jpg',1),(311,38,'no_image.jpg',2),(310,38,'no_image.jpg',1),(312,38,'no_image.jpg',3),(313,38,'no_image.jpg',4),(314,37,'data/Patio-screen-door-wheel-rep.jpg',0),(315,39,'',1),(316,39,'',2),(317,40,'',1),(318,40,'',2),(319,41,'data/tension-spring100.jpg',1),(320,41,'data/Tension-Spring.gif',2);
1249/*!40000 ALTER TABLE `option_value` ENABLE KEYS */;
1250UNLOCK TABLES;
1251
1252--
1253-- Table structure for table `option_value_description`
1254--
1255
1256DROP TABLE IF EXISTS `option_value_description`;
1257SET @saved_cs_client = @@character_set_client;
1258SET character_set_client = utf8;
1259CREATE TABLE `option_value_description` (
1260 `option_value_id` int(11) NOT NULL,
1261 `language_id` int(11) NOT NULL,
1262 `option_id` int(11) NOT NULL,
1263 `name` varchar(128) collate utf8_bin NOT NULL,
1264 PRIMARY KEY (`option_value_id`,`language_id`)
1265) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_bin;
1266SET character_set_client = @saved_cs_client;
1267
1268--
1269-- Dumping data for table `option_value_description`
1270--
1271
1272LOCK TABLES `option_value_description` WRITE;
1273/*!40000 ALTER TABLE `option_value_description` DISABLE KEYS */;
1274INSERT INTO `option_value_description` VALUES (55,1,15,'Charcoal'),(229,1,16,'70"'),(54,1,14,'Bronze'),(52,1,14,'Mil Finish (silver)'),(228,1,16,'69"'),(49,1,13,'Mil Finish (silver)'),(50,1,13,'White'),(51,1,13,'Bronze'),(227,1,16,'68"'),(226,1,16,'67"'),(224,1,16,'65"'),(169,1,17,'70"'),(168,1,17,'69"'),(167,1,17,'68"'),(166,1,17,'67"'),(165,1,17,'66"'),(89,1,18,'13/16'),(88,1,18,'3/4'),(87,1,18,'11/16'),(86,1,18,'5/8'),(85,1,18,'9/16'),(84,1,18,'1/2'),(83,1,18,'7/16'),(82,1,18,'3/8'),(77,1,18,'1/16'),(78,1,18,'1/8'),(79,1,18,'3/16'),(80,1,18,'1/4'),(81,1,18,'5/16'),(91,1,18,'15/16'),(96,1,19,'5/16'),(95,1,19,'1/4'),(94,1,19,'3/16'),(93,1,19,'1/8'),(92,1,19,'1/16'),(97,1,19,'3/8'),(98,1,19,'7/16'),(99,1,19,'1/2'),(100,1,19,'9/16'),(101,1,19,'5/8'),(102,1,19,'11/16'),(103,1,19,'3/4'),(104,1,19,'13/16'),(105,1,19,'7/8'),(225,1,16,'66"'),(223,1,16,'64"'),(222,1,16,'63"'),(163,1,17,'64"'),(164,1,17,'65"'),(161,1,17,'62"'),(56,1,15,'Grey'),(53,1,14,'White'),(108,1,18,'None'),(106,1,19,'15/16'),(90,1,18,'7/8'),(162,1,17,'63"'),(160,1,17,'61"'),(159,1,17,'60"'),(158,1,17,'59"'),(157,1,17,'58"'),(156,1,17,'57"'),(155,1,17,'56"'),(154,1,17,'55"'),(153,1,17,'54"'),(152,1,17,'53"'),(151,1,17,'52"'),(150,1,17,'51"'),(149,1,17,'50"'),(148,1,17,'49"'),(147,1,17,'48"'),(146,1,17,'47"'),(145,1,17,'46"'),(144,1,17,'45"'),(143,1,17,'44"'),(142,1,17,'43"'),(141,1,17,'42"'),(140,1,17,'41"'),(139,1,17,'40"'),(138,1,17,'39"'),(137,1,17,'38"'),(136,1,17,'37"'),(135,1,17,'36"'),(134,1,17,'35"'),(133,1,17,'34"'),(132,1,17,'33"'),(131,1,17,'32"'),(130,1,17,'31"'),(129,1,17,'30"'),(75,1,17,'9"'),(74,1,17,'8"'),(73,1,17,'7"'),(76,1,17,'10"'),(72,1,17,'6"'),(71,1,17,'5"'),(107,1,17,'10"'),(70,1,17,'4"'),(69,1,17,'3"'),(68,1,17,'2"'),(67,1,17,'1"'),(110,1,17,'11"'),(111,1,17,'12"'),(112,1,17,'13"'),(113,1,17,'14"'),(114,1,17,'15"'),(115,1,17,'16"'),(116,1,17,'17"'),(117,1,17,'18"'),(118,1,17,'19"'),(119,1,17,'20"'),(120,1,17,'21"'),(121,1,17,'22"'),(122,1,17,'23"'),(123,1,17,'24"'),(124,1,17,'25"'),(126,1,17,'27"'),(125,1,17,'26"'),(221,1,16,'62"'),(220,1,16,'61"'),(219,1,16,'60"'),(218,1,16,'59"'),(217,1,16,'58"'),(216,1,16,'57"'),(215,1,16,'56"'),(214,1,16,'55"'),(213,1,16,'54"'),(212,1,16,'53"'),(211,1,16,'52"'),(210,1,16,'51"'),(209,1,16,'50"'),(208,1,16,'49"'),(207,1,16,'48"'),(206,1,16,'47"'),(205,1,16,'46"'),(204,1,16,'45"'),(203,1,16,'44"'),(202,1,16,'43"'),(201,1,16,'42"'),(200,1,16,'41"'),(199,1,16,'40"'),(198,1,16,'39"'),(197,1,16,'38"'),(196,1,16,'37"'),(195,1,16,'36"'),(194,1,16,'35"'),(193,1,16,'34"'),(192,1,16,'33"'),(191,1,16,'32"'),(190,1,16,'31"'),(66,1,16,'10"'),(65,1,16,'9"'),(64,1,16,'8"'),(63,1,16,'7"'),(62,1,16,'6"'),(58,1,16,'2"'),(57,1,16,'1"'),(59,1,16,'3"'),(60,1,16,'4"'),(61,1,16,'5"'),(170,1,16,'11"'),(171,1,16,'12"'),(172,1,16,'13"'),(173,1,16,'14"'),(174,1,16,'15"'),(175,1,16,'16"'),(176,1,16,'17"'),(177,1,16,'18"'),(178,1,16,'19"'),(179,1,16,'20"'),(180,1,16,'21"'),(181,1,16,'22"'),(182,1,16,'23"'),(183,1,16,'24"'),(184,1,16,'25"'),(185,1,16,'26"'),(186,1,16,'27"'),(187,1,16,'28"'),(127,1,17,'28"'),(128,1,17,'29"'),(188,1,16,'29"'),(189,1,16,'30"'),(230,1,20,'24"'),(236,1,21,'76"'),(235,1,21,'75"'),(234,1,21,'74"'),(233,1,21,'73"'),(232,1,21,'71"'),(231,1,21,'70"'),(244,1,21,'85"'),(245,1,21,'86"'),(247,1,21,'88"'),(246,1,21,'87"'),(248,1,21,'89"'),(249,1,21,'90"'),(250,1,21,'91"'),(251,1,21,'92"'),(252,1,21,'93"'),(253,1,21,'94"'),(254,1,21,'95"'),(255,1,21,'96"'),(256,1,21,'97"'),(257,1,21,'98"'),(258,1,21,'99"'),(237,1,21,'77"'),(238,1,21,'78"'),(239,1,21,'79"'),(240,1,21,'80"'),(241,1,21,'81"'),(242,1,21,'82"'),(243,1,21,'84"'),(259,1,21,'72"'),(260,1,21,'83"'),(261,1,20,'30"'),(262,1,20,'36"'),(263,1,20,'48"'),(264,1,20,'54"'),(265,1,20,'60"'),(266,1,22,'Plastic Wheels'),(267,1,22,'Steel Wheels'),(109,1,19,'None'),(268,1,23,'5/16" (standard)'),(269,1,23,'7/16"'),(271,1,24,'Aluminum Pull Tabs'),(272,1,24,'NONE'),(274,1,25,'Height Side'),(273,1,25,'Width Side'),(280,1,27,'Grey'),(275,1,25,'NONE'),(277,1,26,'Plunger Springs'),(276,1,26,'Tension Springs (standard)'),(278,1,26,'NONE'),(270,1,24,'Plastic Pull Tabs'),(279,1,27,'Charcoal (standard)'),(282,1,28,'50\''),(281,1,28,'25\''),(283,1,29,'25\''),(284,1,29,'50\''),(285,1,30,'25\''),(286,1,30,'50\''),(287,1,15,'Bright (silver)'),(288,1,31,'Top Hung Bracket'),(289,1,32,'96"'),(296,1,33,'2000\''),(295,1,33,'1000\''),(294,1,33,'500\''),(293,1,33,'250\''),(292,1,33,'50\''),(291,1,33,'25\''),(290,1,33,'10\''),(303,1,34,'.220'),(302,1,34,'.200'),(301,1,34,'.185'),(300,1,34,'.165'),(299,1,34,'.150'),(298,1,34,'.145 (Standard)'),(297,1,34,'.140 '),(304,1,34,'.250'),(305,1,35,'Black'),(306,1,35,'White (clear)'),(307,1,36,'Black'),(308,1,36,'White (clear)'),(309,1,37,'Steel Wheels'),(313,1,38,'60"'),(312,1,38,'48"'),(311,1,38,'36"'),(310,1,38,'24"'),(314,1,37,'Plastic Wheels'),(315,1,39,'5/16" (standard)'),(316,1,39,'7/16"'),(317,1,40,'Serrated (standard)'),(318,1,40,'Smooth'),(319,1,41,'No Hole (standard)'),(320,1,41,'Drilling Required');
1275/*!40000 ALTER TABLE `option_value_description` ENABLE KEYS */;
1276UNLOCK TABLES;
1277
1278--
1279-- Table structure for table `order`
1280--
1281
1282DROP TABLE IF EXISTS `order`;
1283SET @saved_cs_client = @@character_set_client;
1284SET character_set_client = utf8;
1285CREATE TABLE `order` (
1286 `order_id` int(11) NOT NULL auto_increment,
1287 `invoice_no` int(11) NOT NULL default '0',
1288 `invoice_prefix` varchar(26) collate utf8_bin NOT NULL,
1289 `store_id` int(11) NOT NULL default '0',
1290 `store_name` varchar(64) collate utf8_bin NOT NULL,
1291 `store_url` varchar(255) collate utf8_bin NOT NULL,
1292 `customer_id` int(11) NOT NULL default '0',
1293 `customer_group_id` int(11) NOT NULL default '0',
1294 `firstname` varchar(32) collate utf8_bin NOT NULL default '',
1295 `lastname` varchar(32) collate utf8_bin NOT NULL,
1296 `email` varchar(96) collate utf8_bin NOT NULL,
1297 `telephone` varchar(32) collate utf8_bin NOT NULL default '',
1298 `fax` varchar(32) collate utf8_bin NOT NULL default '',
1299 `payment_firstname` varchar(32) collate utf8_bin NOT NULL default '',
1300 `payment_lastname` varchar(32) collate utf8_bin NOT NULL default '',
1301 `payment_company` varchar(32) collate utf8_bin NOT NULL,
1302 `payment_company_id` varchar(32) collate utf8_bin NOT NULL,
1303 `payment_tax_id` varchar(32) collate utf8_bin NOT NULL,
1304 `payment_address_1` varchar(128) collate utf8_bin NOT NULL,
1305 `payment_address_2` varchar(128) collate utf8_bin NOT NULL,
1306 `payment_city` varchar(128) collate utf8_bin NOT NULL,
1307 `payment_postcode` varchar(10) collate utf8_bin NOT NULL default '',
1308 `payment_country` varchar(128) collate utf8_bin NOT NULL,
1309 `payment_country_id` int(11) NOT NULL,
1310 `payment_zone` varchar(128) collate utf8_bin NOT NULL,
1311 `payment_zone_id` int(11) NOT NULL,
1312 `payment_address_format` text collate utf8_bin NOT NULL,
1313 `payment_method` varchar(128) collate utf8_bin NOT NULL default '',
1314 `payment_code` varchar(128) collate utf8_bin NOT NULL,
1315 `shipping_firstname` varchar(32) collate utf8_bin NOT NULL,
1316 `shipping_lastname` varchar(32) collate utf8_bin NOT NULL default '',
1317 `shipping_company` varchar(32) collate utf8_bin NOT NULL,
1318 `shipping_address_1` varchar(128) collate utf8_bin NOT NULL,
1319 `shipping_address_2` varchar(128) collate utf8_bin NOT NULL,
1320 `shipping_city` varchar(128) collate utf8_bin NOT NULL,
1321 `shipping_postcode` varchar(10) collate utf8_bin NOT NULL default '',
1322 `shipping_country` varchar(128) collate utf8_bin NOT NULL,
1323 `shipping_country_id` int(11) NOT NULL,
1324 `shipping_zone` varchar(128) collate utf8_bin NOT NULL,
1325 `shipping_zone_id` int(11) NOT NULL,
1326 `shipping_address_format` text collate utf8_bin NOT NULL,
1327 `shipping_method` varchar(128) collate utf8_bin NOT NULL default '',
1328 `shipping_code` varchar(128) collate utf8_bin NOT NULL,
1329 `comment` text collate utf8_bin NOT NULL,
1330 `total` decimal(15,4) NOT NULL default '0.0000',
1331 `order_status_id` int(11) NOT NULL default '0',
1332 `affiliate_id` int(11) NOT NULL,
1333 `commission` decimal(15,4) NOT NULL,
1334 `language_id` int(11) NOT NULL,
1335 `currency_id` int(11) NOT NULL,
1336 `currency_code` varchar(3) collate utf8_bin NOT NULL,
1337 `currency_value` decimal(15,8) NOT NULL default '1.00000000',
1338 `ip` varchar(40) collate utf8_bin NOT NULL,
1339 `forwarded_ip` varchar(40) collate utf8_bin NOT NULL,
1340 `user_agent` varchar(255) collate utf8_bin NOT NULL,
1341 `accept_language` varchar(255) collate utf8_bin NOT NULL,
1342 `date_added` datetime NOT NULL,
1343 `date_modified` datetime NOT NULL,
1344 PRIMARY KEY (`order_id`)
1345) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_bin;
1346SET character_set_client = @saved_cs_client;
1347
1348--
1349-- Dumping data for table `order`
1350--
1351
1352LOCK TABLES `order` WRITE;
1353/*!40000 ALTER TABLE `order` DISABLE KEYS */;
1354/*!40000 ALTER TABLE `order` ENABLE KEYS */;
1355UNLOCK TABLES;
1356
1357--
1358-- Table structure for table `order_download`
1359--
1360
1361DROP TABLE IF EXISTS `order_download`;
1362SET @saved_cs_client = @@character_set_client;
1363SET character_set_client = utf8;
1364CREATE TABLE `order_download` (
1365 `order_download_id` int(11) NOT NULL auto_increment,
1366 `order_id` int(11) NOT NULL,
1367 `order_product_id` int(11) NOT NULL,
1368 `name` varchar(64) collate utf8_bin NOT NULL default '',
1369 `filename` varchar(128) collate utf8_bin NOT NULL default '',
1370 `mask` varchar(128) collate utf8_bin NOT NULL default '',
1371 `remaining` int(3) NOT NULL default '0',
1372 PRIMARY KEY (`order_download_id`)
1373) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_bin;
1374SET character_set_client = @saved_cs_client;
1375
1376--
1377-- Dumping data for table `order_download`
1378--
1379
1380LOCK TABLES `order_download` WRITE;
1381/*!40000 ALTER TABLE `order_download` DISABLE KEYS */;
1382/*!40000 ALTER TABLE `order_download` ENABLE KEYS */;
1383UNLOCK TABLES;
1384
1385--
1386-- Table structure for table `order_fraud`
1387--
1388
1389DROP TABLE IF EXISTS `order_fraud`;
1390SET @saved_cs_client = @@character_set_client;
1391SET character_set_client = utf8;
1392CREATE TABLE `order_fraud` (
1393 `order_id` int(11) NOT NULL,
1394 `customer_id` int(11) NOT NULL,
1395 `country_match` varchar(3) collate utf8_bin NOT NULL,
1396 `country_code` varchar(2) collate utf8_bin NOT NULL,
1397 `high_risk_country` varchar(3) collate utf8_bin NOT NULL,
1398 `distance` int(11) NOT NULL,
1399 `ip_region` varchar(255) collate utf8_bin NOT NULL,
1400 `ip_city` varchar(255) collate utf8_bin NOT NULL,
1401 `ip_latitude` decimal(10,6) NOT NULL,
1402 `ip_longitude` decimal(10,6) NOT NULL,
1403 `ip_isp` varchar(255) collate utf8_bin NOT NULL,
1404 `ip_org` varchar(255) collate utf8_bin NOT NULL,
1405 `ip_asnum` int(11) NOT NULL,
1406 `ip_user_type` varchar(255) collate utf8_bin NOT NULL,
1407 `ip_country_confidence` varchar(3) collate utf8_bin NOT NULL,
1408 `ip_region_confidence` varchar(3) collate utf8_bin NOT NULL,
1409 `ip_city_confidence` varchar(3) collate utf8_bin NOT NULL,
1410 `ip_postal_confidence` varchar(3) collate utf8_bin NOT NULL,
1411 `ip_postal_code` varchar(10) collate utf8_bin NOT NULL,
1412 `ip_accuracy_radius` int(11) NOT NULL,
1413 `ip_net_speed_cell` varchar(255) collate utf8_bin NOT NULL,
1414 `ip_metro_code` int(3) NOT NULL,
1415 `ip_area_code` int(3) NOT NULL,
1416 `ip_time_zone` varchar(255) collate utf8_bin NOT NULL,
1417 `ip_region_name` varchar(255) collate utf8_bin NOT NULL,
1418 `ip_domain` varchar(255) collate utf8_bin NOT NULL,
1419 `ip_country_name` varchar(255) collate utf8_bin NOT NULL,
1420 `ip_continent_code` varchar(2) collate utf8_bin NOT NULL,
1421 `ip_corporate_proxy` varchar(3) collate utf8_bin NOT NULL,
1422 `anonymous_proxy` varchar(3) collate utf8_bin NOT NULL,
1423 `proxy_score` int(3) NOT NULL,
1424 `is_trans_proxy` varchar(3) collate utf8_bin NOT NULL,
1425 `free_mail` varchar(3) collate utf8_bin NOT NULL,
1426 `carder_email` varchar(3) collate utf8_bin NOT NULL,
1427 `high_risk_username` varchar(3) collate utf8_bin NOT NULL,
1428 `high_risk_password` varchar(3) collate utf8_bin NOT NULL,
1429 `bin_match` varchar(10) collate utf8_bin NOT NULL,
1430 `bin_country` varchar(2) collate utf8_bin NOT NULL,
1431 `bin_name_match` varchar(3) collate utf8_bin NOT NULL,
1432 `bin_name` varchar(255) collate utf8_bin NOT NULL,
1433 `bin_phone_match` varchar(3) collate utf8_bin NOT NULL,
1434 `bin_phone` varchar(32) collate utf8_bin NOT NULL,
1435 `customer_phone_in_billing_location` varchar(8) collate utf8_bin NOT NULL,
1436 `ship_forward` varchar(3) collate utf8_bin NOT NULL,
1437 `city_postal_match` varchar(3) collate utf8_bin NOT NULL,
1438 `ship_city_postal_match` varchar(3) collate utf8_bin NOT NULL,
1439 `score` decimal(10,5) NOT NULL,
1440 `explanation` text collate utf8_bin NOT NULL,
1441 `risk_score` decimal(10,5) NOT NULL,
1442 `queries_remaining` int(11) NOT NULL,
1443 `maxmind_id` varchar(8) collate utf8_bin NOT NULL,
1444 `error` text collate utf8_bin NOT NULL,
1445 `date_added` datetime NOT NULL default '0000-00-00 00:00:00',
1446 PRIMARY KEY (`order_id`)
1447) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_bin;
1448SET character_set_client = @saved_cs_client;
1449
1450--
1451-- Dumping data for table `order_fraud`
1452--
1453
1454LOCK TABLES `order_fraud` WRITE;
1455/*!40000 ALTER TABLE `order_fraud` DISABLE KEYS */;
1456/*!40000 ALTER TABLE `order_fraud` ENABLE KEYS */;
1457UNLOCK TABLES;
1458
1459--
1460-- Table structure for table `order_history`
1461--
1462
1463DROP TABLE IF EXISTS `order_history`;
1464SET @saved_cs_client = @@character_set_client;
1465SET character_set_client = utf8;
1466CREATE TABLE `order_history` (
1467 `order_history_id` int(11) NOT NULL auto_increment,
1468 `order_id` int(11) NOT NULL,
1469 `order_status_id` int(5) NOT NULL,
1470 `notify` tinyint(1) NOT NULL default '0',
1471 `comment` text collate utf8_bin NOT NULL,
1472 `date_added` datetime NOT NULL default '0000-00-00 00:00:00',
1473 PRIMARY KEY (`order_history_id`)
1474) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_bin;
1475SET character_set_client = @saved_cs_client;
1476
1477--
1478-- Dumping data for table `order_history`
1479--
1480
1481LOCK TABLES `order_history` WRITE;
1482/*!40000 ALTER TABLE `order_history` DISABLE KEYS */;
1483/*!40000 ALTER TABLE `order_history` ENABLE KEYS */;
1484UNLOCK TABLES;
1485
1486--
1487-- Table structure for table `order_option`
1488--
1489
1490DROP TABLE IF EXISTS `order_option`;
1491SET @saved_cs_client = @@character_set_client;
1492SET character_set_client = utf8;
1493CREATE TABLE `order_option` (
1494 `order_option_id` int(11) NOT NULL auto_increment,
1495 `order_id` int(11) NOT NULL,
1496 `order_product_id` int(11) NOT NULL,
1497 `product_option_id` int(11) NOT NULL,
1498 `product_option_value_id` int(11) NOT NULL default '0',
1499 `name` varchar(255) collate utf8_bin NOT NULL,
1500 `value` text collate utf8_bin NOT NULL,
1501 `type` varchar(32) collate utf8_bin NOT NULL,
1502 PRIMARY KEY (`order_option_id`)
1503) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_bin;
1504SET character_set_client = @saved_cs_client;
1505
1506--
1507-- Dumping data for table `order_option`
1508--
1509
1510LOCK TABLES `order_option` WRITE;
1511/*!40000 ALTER TABLE `order_option` DISABLE KEYS */;
1512/*!40000 ALTER TABLE `order_option` ENABLE KEYS */;
1513UNLOCK TABLES;
1514
1515--
1516-- Table structure for table `order_product`
1517--
1518
1519DROP TABLE IF EXISTS `order_product`;
1520SET @saved_cs_client = @@character_set_client;
1521SET character_set_client = utf8;
1522CREATE TABLE `order_product` (
1523 `order_product_id` int(11) NOT NULL auto_increment,
1524 `order_id` int(11) NOT NULL,
1525 `product_id` int(11) NOT NULL,
1526 `name` varchar(255) collate utf8_bin NOT NULL,
1527 `model` varchar(64) collate utf8_bin NOT NULL,
1528 `quantity` int(4) NOT NULL,
1529 `price` decimal(15,4) NOT NULL default '0.0000',
1530 `total` decimal(15,4) NOT NULL default '0.0000',
1531 `tax` decimal(15,4) NOT NULL default '0.0000',
1532 `reward` int(8) NOT NULL,
1533 PRIMARY KEY (`order_product_id`)
1534) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_bin;
1535SET character_set_client = @saved_cs_client;
1536
1537--
1538-- Dumping data for table `order_product`
1539--
1540
1541LOCK TABLES `order_product` WRITE;
1542/*!40000 ALTER TABLE `order_product` DISABLE KEYS */;
1543/*!40000 ALTER TABLE `order_product` ENABLE KEYS */;
1544UNLOCK TABLES;
1545
1546--
1547-- Table structure for table `order_status`
1548--
1549
1550DROP TABLE IF EXISTS `order_status`;
1551SET @saved_cs_client = @@character_set_client;
1552SET character_set_client = utf8;
1553CREATE TABLE `order_status` (
1554 `order_status_id` int(11) NOT NULL auto_increment,
1555 `language_id` int(11) NOT NULL,
1556 `name` varchar(32) collate utf8_bin NOT NULL,
1557 PRIMARY KEY (`order_status_id`,`language_id`)
1558) ENGINE=MyISAM AUTO_INCREMENT=17 DEFAULT CHARSET=utf8 COLLATE=utf8_bin;
1559SET character_set_client = @saved_cs_client;
1560
1561--
1562-- Dumping data for table `order_status`
1563--
1564
1565LOCK TABLES `order_status` WRITE;
1566/*!40000 ALTER TABLE `order_status` DISABLE KEYS */;
1567INSERT INTO `order_status` VALUES (2,1,'Processing'),(3,1,'Shipped'),(7,1,'Canceled'),(5,1,'Complete'),(8,1,'Denied'),(9,1,'Canceled Reversal'),(10,1,'Failed'),(11,1,'Refunded'),(12,1,'Reversed'),(13,1,'Chargeback'),(1,1,'Pending'),(16,1,'Voided'),(15,1,'Processed'),(14,1,'Expired');
1568/*!40000 ALTER TABLE `order_status` ENABLE KEYS */;
1569UNLOCK TABLES;
1570
1571--
1572-- Table structure for table `order_total`
1573--
1574
1575DROP TABLE IF EXISTS `order_total`;
1576SET @saved_cs_client = @@character_set_client;
1577SET character_set_client = utf8;
1578CREATE TABLE `order_total` (
1579 `order_total_id` int(10) NOT NULL auto_increment,
1580 `order_id` int(11) NOT NULL,
1581 `code` varchar(32) collate utf8_bin NOT NULL,
1582 `title` varchar(255) collate utf8_bin NOT NULL default '',
1583 `text` varchar(255) collate utf8_bin NOT NULL default '',
1584 `value` decimal(15,4) NOT NULL default '0.0000',
1585 `sort_order` int(3) NOT NULL,
1586 PRIMARY KEY (`order_total_id`),
1587 KEY `idx_orders_total_orders_id` (`order_id`)
1588) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_bin;
1589SET character_set_client = @saved_cs_client;
1590
1591--
1592-- Dumping data for table `order_total`
1593--
1594
1595LOCK TABLES `order_total` WRITE;
1596/*!40000 ALTER TABLE `order_total` DISABLE KEYS */;
1597/*!40000 ALTER TABLE `order_total` ENABLE KEYS */;
1598UNLOCK TABLES;
1599
1600--
1601-- Table structure for table `order_voucher`
1602--
1603
1604DROP TABLE IF EXISTS `order_voucher`;
1605SET @saved_cs_client = @@character_set_client;
1606SET character_set_client = utf8;
1607CREATE TABLE `order_voucher` (
1608 `order_voucher_id` int(11) NOT NULL auto_increment,
1609 `order_id` int(11) NOT NULL,
1610 `voucher_id` int(11) NOT NULL,
1611 `description` varchar(255) collate utf8_bin NOT NULL,
1612 `code` varchar(10) collate utf8_bin NOT NULL,
1613 `from_name` varchar(64) collate utf8_bin NOT NULL,
1614 `from_email` varchar(96) collate utf8_bin NOT NULL,
1615 `to_name` varchar(64) collate utf8_bin NOT NULL,
1616 `to_email` varchar(96) collate utf8_bin NOT NULL,
1617 `voucher_theme_id` int(11) NOT NULL,
1618 `message` text collate utf8_bin NOT NULL,
1619 `amount` decimal(15,4) NOT NULL,
1620 PRIMARY KEY (`order_voucher_id`)
1621) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_bin;
1622SET character_set_client = @saved_cs_client;
1623
1624--
1625-- Dumping data for table `order_voucher`
1626--
1627
1628LOCK TABLES `order_voucher` WRITE;
1629/*!40000 ALTER TABLE `order_voucher` DISABLE KEYS */;
1630/*!40000 ALTER TABLE `order_voucher` ENABLE KEYS */;
1631UNLOCK TABLES;
1632
1633--
1634-- Table structure for table `product`
1635--
1636
1637DROP TABLE IF EXISTS `product`;
1638SET @saved_cs_client = @@character_set_client;
1639SET character_set_client = utf8;
1640CREATE TABLE `product` (
1641 `product_id` int(11) NOT NULL auto_increment,
1642 `model` varchar(64) collate utf8_bin NOT NULL,
1643 `sku` varchar(64) collate utf8_bin NOT NULL,
1644 `upc` varchar(12) collate utf8_bin NOT NULL,
1645 `ean` varchar(14) collate utf8_bin NOT NULL,
1646 `jan` varchar(13) collate utf8_bin NOT NULL,
1647 `isbn` varchar(13) collate utf8_bin NOT NULL,
1648 `mpn` varchar(64) collate utf8_bin NOT NULL,
1649 `location` varchar(128) collate utf8_bin NOT NULL,
1650 `quantity` int(4) NOT NULL default '0',
1651 `stock_status_id` int(11) NOT NULL,
1652 `image` varchar(255) collate utf8_bin default NULL,
1653 `manufacturer_id` int(11) NOT NULL,
1654 `shipping` tinyint(1) NOT NULL default '1',
1655 `price` decimal(15,4) NOT NULL default '0.0000',
1656 `points` int(8) NOT NULL default '0',
1657 `tax_class_id` int(11) NOT NULL,
1658 `date_available` date NOT NULL,
1659 `weight` decimal(15,8) NOT NULL default '0.00000000',
1660 `weight_class_id` int(11) NOT NULL default '0',
1661 `length` decimal(15,8) NOT NULL default '0.00000000',
1662 `width` decimal(15,8) NOT NULL default '0.00000000',
1663 `height` decimal(15,8) NOT NULL default '0.00000000',
1664 `length_class_id` int(11) NOT NULL default '0',
1665 `subtract` tinyint(1) NOT NULL default '1',
1666 `minimum` int(11) NOT NULL default '1',
1667 `sort_order` int(11) NOT NULL default '0',
1668 `status` tinyint(1) NOT NULL default '0',
1669 `date_added` datetime NOT NULL default '0000-00-00 00:00:00',
1670 `date_modified` datetime NOT NULL default '0000-00-00 00:00:00',
1671 `viewed` int(5) NOT NULL default '0',
1672 PRIMARY KEY (`product_id`)
1673) ENGINE=MyISAM AUTO_INCREMENT=129 DEFAULT CHARSET=utf8 COLLATE=utf8_bin;
1674SET character_set_client = @saved_cs_client;
1675
1676--
1677-- Dumping data for table `product`
1678--
1679
1680LOCK TABLES `product` WRITE;
1681/*!40000 ALTER TABLE `product` DISABLE KEYS */;
1682INSERT INTO `product` VALUES (68,'36"x100\' Fiberglass Screen','','','','','','','',1,5,'data/window-screen-roll.jpg',0,1,'45.0000',0,0,'2012-10-21','0.00000000',6,'0.00000000','0.00000000','0.00000000',3,0,1,1,1,'2012-10-22 22:12:33','2012-11-24 15:28:03',35),(67,'30"x100\' Fiberglass Screen','','','','','','','',1,5,'data/window-screen-roll.jpg',0,1,'40.0000',0,0,'2012-10-21','0.00000000',6,'0.00000000','0.00000000','0.00000000',3,0,1,1,1,'2012-10-22 21:09:19','2012-10-29 00:24:59',31),(66,'24"x100\' Fiberglass Screen','','','','','','','',1,7,'data/window-screen-roll.jpg',0,1,'32.0000',0,0,'2012-10-17','0.00000000',6,'0.00000000','0.00000000','0.00000000',3,0,1,1,1,'2012-10-18 20:36:26','2012-10-28 09:58:59',206),(52,'Soffit Vent 6"X16"','','','','','','','',1,7,'data/soffit-vent-6inch.jpg',0,1,'2.7500',0,9,'2012-08-27','0.00000000',6,'16.00000000','0.31250000','6.00000000',3,0,1,2,1,'2012-08-28 22:12:53','2012-09-21 18:18:37',51),(53,'Soffit Vent 7"X16"','','','','','','','',1,7,'data/soffit-vent-7inch.jpg',0,1,'2.7500',0,9,'2012-08-27','0.00000000',6,'16.00000000','0.31250000','7.00000000',3,0,1,3,1,'2012-08-28 22:18:25','2012-09-21 18:23:56',40),(54,'Soffit Vent 4"x24"','','','','','','','',1,7,'data/Soffit-Vent-4inch.jpg',0,1,'2.8500',0,9,'2012-08-27','0.00000000',6,'24.00000000','0.31250000','4.00000000',3,0,1,4,1,'2012-08-28 22:23:44','2012-12-02 09:59:17',71),(55,'Soffit Vent 6"x24"','','','','','','','',1,7,'data/soffit-vent-6inch.jpg',0,1,'2.8500',0,9,'2012-08-27','0.00000000',6,'24.00000000','0.31250000','6.00000000',3,0,1,5,1,'2012-08-28 22:26:55','2012-09-21 18:19:41',39),(56,'Soffit Vent 7"x24"','','','','','','','',1,7,'data/soffit-vent-7inch.jpg',0,1,'2.8500',0,9,'2012-08-27','0.00000000',6,'24.00000000','0.31250000','7.00000000',3,0,1,6,1,'2012-08-28 22:32:13','2012-09-21 18:24:20',43),(57,'Custom Soffit Vent','','','','','','','',1,7,'data/soffit-vent-6inch.jpg',0,1,'0.0000',0,9,'2012-08-27','0.00000000',6,'0.00000000','0.00000000','0.00000000',3,0,1,7,1,'2012-08-28 23:54:28','2012-09-21 18:21:04',76),(58,'Tension springs no hole','','','','','','','',1,7,'data/No-Hole-Tension-Spring-2.gif',0,1,'0.5000',0,9,'2012-08-28','0.00000000',6,'2.50000000','0.35800000','0.00000000',3,0,10,1,1,'2012-08-29 16:03:41','2012-11-24 14:53:09',151),(59,'corner lock external','','','','','','','',1,7,'data/corner-lock-gray-straight-cut-2.png',0,1,'0.4000',0,9,'2012-08-28','0.00000000',6,'2.00000000','0.25000000','2.00000000',3,0,10,1,1,'2012-08-29 17:19:09','2012-12-31 11:48:19',152),(60,'Corner lock mite','','','','','','','',1,5,'data/mitre-corner-lock.jpg',0,1,'0.3500',0,0,'2012-08-28','0.00000000',6,'2.00000000','5.00000000','2.00000000',3,1,10,1,1,'2012-08-29 17:54:24','2012-11-24 14:48:04',122),(61,'Tension Spring','','','','','','','',1,7,'data/Tension-Spring.gif',0,1,'0.5000',0,9,'2012-08-28','0.00000000',6,'2.50000000','0.35000000','0.00000000',3,0,10,1,1,'2012-08-29 18:22:01','2012-11-24 14:52:33',138),(63,'Custom Window Screen','','','','','','','',1,7,'data/window-screens2.jpg',0,1,'0.0000',0,9,'2012-08-28','0.00000000',6,'0.00000000','0.00000000','0.00000000',3,0,1,1,1,'2012-08-29 21:03:36','2012-12-31 21:44:23',166),(64,'sliding screen doors','','','','','','','',1,7,'data/1345219025890.jpg',0,1,'0.0000',0,9,'2012-08-28','8.00000000',5,'36.00000000','1.00000000','80.00000000',3,0,1,1,1,'2012-08-29 23:24:38','2013-01-01 01:30:04',245),(51,'Soffit Vent 4"X16"','','','','','','','',1,7,'data/Soffit-Vent-4inch.jpg',0,1,'2.7500',0,9,'2012-08-27','0.00000000',6,'16.00000000','0.31250000','4.00000000',3,0,1,1,1,'2012-08-28 22:02:01','2012-09-21 18:09:48',75),(69,'48"x100\' Fiberglass Screen','','','','','','','',1,7,'data/window-screen-roll.jpg',0,1,'60.0000',0,0,'2012-10-25','0.00000000',6,'5.00000000','5.00000000','48.00000000',3,0,1,1,1,'2012-10-26 20:36:31','2012-10-29 00:26:35',24),(70,'60"x100\' Fiberglass Screen','','','','','','','',1,7,'data/window-screen-roll.jpg',0,1,'75.0000',0,0,'2012-10-25','0.00000000',6,'5.00000000','5.00000000','60.00000000',3,0,1,1,1,'2012-10-26 21:40:43','2012-10-29 00:27:04',19),(71,'72"x100\' Fiberglass Screen','','','','','','','',1,7,'data/window-screen-roll.jpg',0,1,'89.0000',0,0,'2012-10-25','0.00000000',6,'5.00000000','5.00000000','72.00000000',3,0,1,1,1,'2012-10-26 22:07:30','2012-10-29 00:28:27',25),(72,'84"x100\' Fiberglass Screen','','','','','','','',1,7,'data/window-screen-roll.jpg',0,1,'105.0000',0,0,'2012-10-25','0.00000000',6,'5.00000000','5.00000000','84.00000000',3,0,1,1,1,'2012-10-26 22:07:31','2012-10-29 00:28:49',16),(73,'96"x100\' Fiberglass Screen','','','','','','','',1,7,'data/window-screen-roll.jpg',0,1,'119.0000',0,0,'2012-10-25','0.00000000',6,'5.00000000','5.00000000','96.00000000',3,0,1,1,1,'2012-10-26 22:31:20','2012-10-29 00:29:28',24),(74,'window screen kit 36"','','','','','','','',1,7,'data/Screenkits22.jpg',11,1,'8.7500',0,0,'2012-10-25','0.00000000',6,'0.00000000','0.00000000','0.00000000',3,0,1,1,1,'2012-10-26 23:04:28','2012-11-26 00:10:07',44),(75,'24"x100\' Aluminum Screen','','','','','','','',1,7,'data/charcoalgrayrolls.jpg',0,1,'54.0000',0,0,'2012-10-27','0.00000000',6,'10.00000000','6.00000000','6.00000000',3,0,1,1,1,'2012-10-28 09:50:51','2012-10-29 00:01:42',183),(76,'30"x100\' Aluminum Screen ','','','','','','','',1,7,'data/charcoalgrayrolls.jpg',0,1,'68.0000',0,0,'2012-10-27','0.00000000',6,'30.00000000','6.00000000','6.00000000',3,0,1,1,1,'2012-10-28 23:49:05','2012-10-29 00:07:19',19),(77,'36"x100\' Aluminum Screen ','','','','','','','',1,7,'data/charcoalgrayrolls.jpg',0,1,'82.0000',0,0,'2012-10-27','0.00000000',6,'36.00000000','6.00000000','6.00000000',3,0,1,1,1,'2012-10-28 23:57:22','2012-10-29 00:09:37',16),(78,'42"x100\' Aluminum Screen','','','','','','','',1,7,'data/charcoalgrayrolls.jpg',0,1,'95.0000',0,0,'2012-10-28','0.00000000',6,'48.00000000','6.00000000','6.00000000',3,0,1,1,1,'2012-10-29 00:35:01','0000-00-00 00:00:00',19),(79,'60"x100\' Aluminum Screen','','','','','','','',1,7,'data/charcoalgrayrolls.jpg',0,1,'155.0000',0,0,'2012-10-28','0.00000000',6,'60.00000000','6.00000000','6.00000000',3,0,1,1,1,'2012-10-29 00:40:03','2012-10-29 00:44:41',14),(80,'36"x100\' Pool and Patio Screen','','','','','','','',1,7,'data/patio screen.jpg',0,1,'65.0000',0,0,'2012-10-28','0.00000000',6,'36.00000000','6.00000000','6.00000000',3,0,1,1,1,'2012-10-29 21:49:47','2012-11-04 17:13:01',22),(81,'48"x100\' Pool and Patio Screen','','','','','','','',1,7,'data/patio screen.jpg',0,1,'75.0000',0,0,'2012-10-28','0.00000000',6,'0.00000000','0.00000000','0.00000000',3,0,1,1,1,'2012-10-29 22:31:12','2012-11-04 17:10:50',21),(82,'60"x100\' Pool and Patio Screen','','','','','','','',1,7,'data/patio screen.jpg',0,1,'89.0000',0,0,'2012-10-28','0.00000000',6,'60.00000000','6.00000000','6.00000000',3,0,1,1,1,'2012-10-29 22:36:56','2012-11-04 17:23:00',19),(83,'72"x100\' Pool and Patio Screen ','','','','','','','',1,7,'data/patio screen.jpg',0,1,'110.0000',0,0,'2012-10-28','0.00000000',6,'72.00000000','6.00000000','6.00000000',3,0,1,1,1,'2012-10-29 22:57:16','2012-11-04 17:28:16',17),(84,'84"x100\' Pool and Patio Screen','','','','','','','',1,7,'data/patio screen.jpg',0,1,'129.0000',0,0,'2012-10-28','0.00000000',6,'84.00000000','6.00000000','6.00000000',3,0,1,1,1,'2012-10-29 23:10:48','2012-11-04 17:34:49',19),(85,'96"x100\' Pool and Patio Screen','','','','','','','',1,7,'data/patio screen.jpg',0,1,'146.0000',0,0,'2012-10-28','0.00000000',6,'96.00000000','6.00000000','6.00000000',3,0,1,1,1,'2012-10-29 23:18:50','0000-00-00 00:00:00',18),(90,'window screen Kit 60"','','','','','','','',1,7,'data/Screenkits22.jpg',0,1,'10.5000',0,0,'2012-10-31','0.00000000',6,'60.00000000','2.00000000','2.00000000',3,0,1,3,1,'2012-11-01 22:12:33','2012-11-26 00:09:44',26),(87,'108"x100\' Pool and Patio Screen','','','','','','','',1,7,'data/patio screen.jpg',0,1,'162.0000',0,0,'2012-10-28','0.00000000',6,'108.00000000','6.00000000','6.00000000',3,0,1,8,1,'2012-10-29 23:32:53','2012-11-04 17:38:14',16),(89,' Window Screen Kit 48"','','','','','','','',1,7,'data/Screenkits22.jpg',0,1,'9.5000',0,0,'2012-10-31','0.00000000',6,'48.00000000','2.00000000','2.00000000',3,0,1,1,1,'2012-11-01 21:53:54','2012-11-26 00:10:41',25),(91,'36"x 80" Screen Door Kit','','','','','','','',1,7,'data/patio-screen-door-kit-1.jpg',0,1,'45.0000',0,0,'2012-10-31','0.00000000',6,'80.00000000','4.00000000','2.00000000',3,0,1,5,1,'2012-11-01 22:52:04','2012-11-26 00:08:17',32),(92,'24" x 80" Screen Door Kit','','','','','','','',1,7,'data/patio-screen-door-kit-1.jpg',11,1,'42.0000',0,0,'2012-11-04','0.00000000',6,'0.00000000','0.00000000','0.00000000',3,0,1,4,1,'2012-11-05 20:51:48','2012-11-26 00:07:53',35),(93,'48" x 80" Screen Door Kit','','','','','','','',1,7,'data/patio-screen-door-kit-1.jpg',0,1,'48.0000',0,0,'2012-11-04','0.00000000',6,'0.00000000','0.00000000','0.00000000',3,0,1,6,1,'2012-11-05 21:49:01','2012-11-26 00:08:44',21),(94,'36" x 80" Screen Door Kit','','','','','','','',1,7,'data/patio-screen-door-kit-1.jpg',0,1,'54.0000',0,0,'2012-11-04','0.00000000',6,'0.00000000','0.00000000','0.00000000',3,0,1,7,1,'2012-11-05 22:33:16','2012-11-26 00:09:08',20),(95,'5/16" x 3/4" x 6\' Aluminum Screen Frame','','','','','','','',1,7,'data/Screen-Frame-Colors.jpg',11,1,'2.2500',0,0,'2012-11-05','0.00000000',6,'72.00000000','0.75000000','5.00000000',3,0,1,1,1,'2012-11-06 20:38:17','2012-12-01 23:27:22',45),(96,'Screen Spline','','','','','','','',1,7,'data/Spline in Frame.jpg',11,1,'1.5000',0,0,'2012-11-22','0.00000000',6,'120.00000000','0.14300000','0.00000000',3,0,1,9,1,'2012-11-23 22:29:38','2012-11-24 15:24:47',38),(97,' Plastic Pull Tabs','','','','','','','',1,7,'data/Pull-Tabs-Group.jpg',0,1,'0.2500',0,0,'2012-11-23','0.00000000',6,'1.25000000','0.12500000','1.00000000',3,1,10,7,1,'2012-11-24 13:22:35','2012-11-24 14:46:27',29),(98,'Aluminum Pul Tabs','','','','','','','',1,7,'data/Aluminum-Corner-Locks.jpg',0,1,'0.4000',0,0,'2012-11-23','0.00000000',6,'1.25000000','2.00000000','0.08000000',3,0,10,8,1,'2012-11-24 14:40:22','2012-11-24 14:48:19',23),(99,'Plunger Springs','','','','','','','',1,7,'data/plunger.jpg',0,1,'0.5000',0,0,'2012-11-23','0.00000000',6,'1.25000000','0.12500000','0.17500000',3,0,10,6,1,'2012-11-24 14:58:52','2012-11-24 15:05:21',16),(100,'Patio screen door handle kit','','','','','','','',1,7,'data/Screen-Door-Handle-Kit.jpg',11,1,'9.5000',0,0,'2012-11-24','0.00000000',6,'0.00000000','0.00000000','0.00000000',3,0,1,3,1,'2012-11-25 12:18:57','2012-11-25 17:53:09',29),(101,'Patio Screen Door Handle -Only','','','','','','','',1,7,'data/Screen-Door-Handle-2.jpg',0,1,'5.9500',0,0,'2012-11-24','0.00000000',6,'3.50000000','2.25000000','0.25000000',3,0,1,4,1,'2012-11-25 12:30:51','2012-11-25 17:54:53',21),(102,'Replacement W Rollers','','','','','','','',1,7,'data/plastic-and-steel-w-rollers.jpg',11,1,'3.5000',0,0,'2012-11-24','0.00000000',6,'0.00000000','0.00000000','0.00000000',3,0,2,0,1,'2012-11-25 13:44:28','2012-11-26 20:11:27',36),(103,'Adjustment Screw','','','','','','','',1,7,'data/W-Roller-Adjustment-Screw.jpg',11,1,'1.2500',0,0,'2012-11-24','0.00000000',6,'2.00000000','0.12500000','0.12500000',3,0,1,1,1,'2012-11-25 14:47:45','2012-11-25 20:04:40',29),(104,'Corner Lock Screws','','','','','','','',1,7,'data/Self-Tapping-Screws.gif',0,1,'0.2500',0,0,'2012-11-24','0.00000000',6,'0.00000000','0.00000000','0.00000000',3,0,10,6,1,'2012-11-25 15:52:13','2012-11-25 17:56:59',20),(105,'Patio Door Corner Lock','','','','','','','',1,7,'data/Patio-Door-Corner-Lock.jpg',0,1,'3.5000',0,0,'2012-11-24','0.00000000',6,'2.50000000','0.48700000','2.50000000',3,0,1,6,1,'2012-11-25 17:26:19','2012-11-25 19:57:45',19),(106,'Top Hung Bracket','','','','','','','',1,7,'data/Top Hung Bracket.jpg',0,1,'18.0000',0,0,'2012-11-24','0.00000000',6,'0.00000000','0.00000000','0.00000000',3,0,1,7,1,'2012-11-25 18:22:50','2012-11-25 19:11:51',21),(107,'Top Hung Wheels','','','','','','','',1,7,'data/Top-Hung-Roller-Wheel1.jpg',11,1,'2.2500',0,0,'2012-11-24','0.00000000',6,'0.75000000','0.25000000','0.75000000',3,0,2,8,1,'2012-11-25 18:52:08','2012-11-25 23:55:17',29),(108,'Deluxe Screen Door Frame','','','','','','','',1,7,'data/Bronze-Screen-Door-Frame.jpg',0,1,'15.0000',0,0,'2012-11-24','0.00000000',6,'96.00000000','2.00000000','1.50000000',3,0,1,5,1,'2012-11-25 18:55:08','2012-11-25 20:00:25',19),(109,'Professional Screen Roller','','','','','','','',1,7,'data/Spline-roller.jpg',0,1,'42.0000',0,0,'2012-11-24','0.00000000',6,'11.00000000','1.00000000','1.00000000',3,0,1,1,1,'2012-11-25 20:30:20','0000-00-00 00:00:00',23),(110,'Screen Roller Replacement Wheels','','','','','','','',1,7,'data/Replacement-Rollers.jpg',11,1,'8.5000',0,0,'2012-11-24','0.00000000',6,'2.00000000','2.00000000','0.12500000',3,0,1,2,1,'2012-11-25 20:49:27','0000-00-00 00:00:00',33),(111,'US 1-11 Screen Frame','','','','','','','',1,7,'data/Screen-Frame-color.gif',0,1,'359.0000',0,0,'2012-11-24','120.00000000',5,'156.00000000','11.00000000','6.00000000',3,0,1,1,1,'2012-11-25 21:20:20','2012-12-30 21:16:42',21),(112,'Spline Roll .145','','','','','','','',1,7,'data/Spline-roll-1.jpg',11,1,'34.0000',0,0,'2012-11-24','0.00000000',6,'0.00000000','0.00000000','0.00000000',3,0,5,12,1,'2012-11-25 22:08:39','2012-12-31 14:46:56',26),(113,'Flat Spine','','','','','','','',1,7,'data/Flat-Spline.jpg',0,1,'4.5000',0,0,'2012-11-25','0.00000000',6,'0.00000000','0.00000000','0.00000000',3,0,1,10,1,'2012-11-26 20:34:07','2012-11-26 21:20:10',23),(114,'Closure Kit','','','','','','','',1,7,'data/closure kit.jpg',11,1,'14.5000',0,0,'2012-11-25','0.00000000',6,'13.00000000','4.00000000','1.50000000',3,0,1,1,1,'2012-11-26 21:02:03','2012-11-26 21:18:46',34),(115,'5/16" x 3/4" Screen Frame','','','','','','','',1,7,'data/Screen-Frame-color.gif',11,1,'220.0000',0,0,'2012-11-29','0.00000000',6,'0.00000000','0.00000000','0.00000000',3,0,1,0,1,'2012-11-30 19:27:28','2012-12-30 21:16:19',26),(116,'7/16" x 3/4" Window Screen Frame','','','','','','','',1,5,'data/screen-frame-profile-2.jpg',11,1,'255.0000',0,0,'2012-11-29','0.00000000',6,'0.00000000','0.00000000','0.00000000',3,1,1,1,1,'2012-11-30 20:07:31','2012-12-30 21:17:24',31),(117,'US 1-15 Screen Frame 7/16" x 3/4" (1500l/f)','','','','','','','',1,5,'data/screen-frame-profile-2.jpg',0,1,'385.0000',0,0,'2012-11-30','0.00000000',6,'0.00000000','0.00000000','0.00000000',3,0,1,1,1,'2012-12-01 21:10:28','2012-12-30 21:17:51',17),(118,'3/4" x 5/16" x 6\' 3" Screen Frame (US-15)','','','','','','','',1,7,'data/screen-frame-profile-2.jpg',11,1,'2.6500',0,0,'2012-11-30','0.00000000',6,'75.00000000','0.00000000','0.00000000',3,0,1,1,1,'2012-12-01 21:54:40','2012-12-01 23:27:53',33),(119,'Patio Screen Frame 1" x 2"','','','','','','','',1,7,'data/1x2-patio-frame.jpg',0,1,'9.5000',0,0,'2012-12-01','0.00000000',6,'6.00000000','2.00000000','1.00000000',3,0,1,1,1,'2012-12-02 10:25:01','0000-00-00 00:00:00',69),(120,'18" x 600\' Fiberglass Insect Screen','','','','','','','',1,7,'data/600-ft-roll-screen-mesh.jpg',0,1,'98.0000',0,0,'2012-12-02','0.00000000',6,'0.00000000','0.00000000','0.00000000',3,0,1,6,1,'2012-12-03 21:48:37','2012-12-31 11:22:36',65),(121,'24" x 600\' Fiberglass Window Screen','','','','','','','',1,7,'data/600-ft-roll-screen-mesh.jpg',0,1,'128.0000',0,0,'2012-12-29','0.00000000',6,'0.00000000','0.00000000','0.00000000',3,0,1,7,1,'2012-12-30 19:55:39','2012-12-31 11:22:55',26),(122,'36" x 600\' Fiberglass Insect Screen','','','','','','','',1,7,'data/600-ft-roll-screen-mesh.jpg',0,1,'196.0000',0,0,'2012-12-29','0.00000000',6,'0.00000000','0.00000000','0.00000000',3,0,1,8,1,'2012-12-30 20:44:42','2012-12-31 11:23:18',23),(123,'48" x 600\' Fibeerglass Insect Screen','','','','','','','',1,7,'data/600-ft-roll-screen-mesh.jpg',0,1,'259.0000',0,0,'2012-12-30','0.00000000',6,'0.00000000','0.00000000','0.00000000',3,0,1,8,1,'2012-12-31 09:28:06','0000-00-00 00:00:00',2),(124,'60" Fiberglass Insect Screen','','','','','','','',1,7,'data/600-ft-roll-screen-mesh.jpg',0,1,'320.0000',0,0,'2012-12-30','0.00000000',6,'0.00000000','0.00000000','0.00000000',3,0,1,10,1,'2012-12-31 10:24:00','2012-12-31 11:35:15',0),(125,'Bulk External Corner Locks Bx. (3500)','','','','','','','',1,7,'data/corner-lock-gray-straight-cut-2.png',0,1,'295.0000',0,0,'2012-12-30','0.00000000',6,'0.00000000','0.00000000','0.00000000',3,0,1,12,1,'2012-12-31 12:28:43','2012-12-31 14:09:36',4),(126,'Mitre Corner Locks Bx (3500)','','','','','','','',1,7,'data/mitre-corner-lock.jpg',0,1,'279.0000',0,0,'2012-12-30','0.00000000',6,'0.00000000','0.00000000','0.00000000',3,0,1,11,1,'2012-12-31 13:34:45','2012-12-31 14:03:52',4),(127,'No Hole Tension Springs Box (5000)','','','','','','','',1,7,'data/No-Hole-Tension-Spring-2.gif',0,1,'385.0000',0,0,'2012-12-30','0.00000000',6,'0.00000000','0.00000000','0.00000000',3,0,1,15,1,'2012-12-31 15:11:24','2012-12-31 15:22:11',1),(128,'Pull Tabs Box (5000)','','','','','','','',1,7,'data/Pull-Tabs-Group.jpg',0,1,'250.0000',0,0,'2012-12-30','0.00000000',6,'0.00000000','0.00000000','0.00000000',3,0,1,16,1,'2012-12-31 19:57:25','2012-12-31 21:05:36',2);
1683/*!40000 ALTER TABLE `product` ENABLE KEYS */;
1684UNLOCK TABLES;
1685
1686--
1687-- Table structure for table `product_attribute`
1688--
1689
1690DROP TABLE IF EXISTS `product_attribute`;
1691SET @saved_cs_client = @@character_set_client;
1692SET character_set_client = utf8;
1693CREATE TABLE `product_attribute` (
1694 `product_id` int(11) NOT NULL,
1695 `attribute_id` int(11) NOT NULL,
1696 `language_id` int(11) NOT NULL,
1697 `text` text collate utf8_bin NOT NULL,
1698 PRIMARY KEY (`product_id`,`attribute_id`,`language_id`)
1699) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_bin;
1700SET character_set_client = @saved_cs_client;
1701
1702--
1703-- Dumping data for table `product_attribute`
1704--
1705
1706LOCK TABLES `product_attribute` WRITE;
1707/*!40000 ALTER TABLE `product_attribute` DISABLE KEYS */;
1708INSERT INTO `product_attribute` VALUES (64,13,1,'1" x 2/12" '),(91,13,1,'Frame Thickness: .050'),(64,14,1,'18x16 Screen Mesh');
1709/*!40000 ALTER TABLE `product_attribute` ENABLE KEYS */;
1710UNLOCK TABLES;
1711
1712--
1713-- Table structure for table `product_description`
1714--
1715
1716DROP TABLE IF EXISTS `product_description`;
1717SET @saved_cs_client = @@character_set_client;
1718SET character_set_client = utf8;
1719CREATE TABLE `product_description` (
1720 `product_id` int(11) NOT NULL auto_increment,
1721 `language_id` int(11) NOT NULL,
1722 `name` varchar(255) collate utf8_bin NOT NULL,
1723 `description` text collate utf8_bin NOT NULL,
1724 `meta_description` varchar(255) collate utf8_bin NOT NULL,
1725 `meta_keyword` varchar(255) collate utf8_bin NOT NULL,
1726 `tag` text collate utf8_bin NOT NULL,
1727 PRIMARY KEY (`product_id`,`language_id`),
1728 KEY `name` (`name`),
1729 FULLTEXT KEY `description` (`description`),
1730 FULLTEXT KEY `tag` (`tag`)
1731) ENGINE=MyISAM AUTO_INCREMENT=129 DEFAULT CHARSET=utf8 COLLATE=utf8_bin;
1732SET character_set_client = @saved_cs_client;
1733
1734--
1735-- Dumping data for table `product_description`
1736--
1737
1738LOCK TABLES `product_description` WRITE;
1739/*!40000 ALTER TABLE `product_description` DISABLE KEYS */;
1740INSERT INTO `product_description` VALUES (80,1,'36" x 100\' Fiberglass Pool and Patio Mesh (18x14)','<p>\r\n Used in patio and pool enclosures or anywhere extra strength would be benefical for a project</p>\r\n<ul>\r\n <li>\r\n Thicker diameter thread for extra strength when used in larger openings</li>\r\n <li>\r\n Special coating for added weather resistance</li>\r\n <li>\r\n Made in the USA</li>\r\n <li>\r\n 18x14</li>\r\n <li>\r\n Widths 36" - 108"</li>\r\n <li>\r\n Available in 25\' , 50 \',&nbsp;100\' &nbsp;Lengths</li>\r\n</ul>\r\n','','',''),(81,1,'48" x 100\' Fiberglass Pool and Patio Mesh (18x14)','<p>\r\n Used in patio and pool enclosures or anywhere extra strength would be benefical for a project</p>\r\n<ul>\r\n <li>\r\n Thicker diameter thread for extra strength when used in larger openings</li>\r\n <li>\r\n Special coating for added weather resistance</li>\r\n <li>\r\n Made in the USA</li>\r\n <li>\r\n 18x14</li>\r\n <li>\r\n Widths 36" - 108"</li>\r\n <li>\r\n Available in 25\' , 50 \', 100\' Lengths</li>\r\n</ul>\r\n','','',''),(82,1,'60" x 100\' Fiberglass Pool and Patio Mesh (18x14)','<p>\r\n Used in patio and pool enclosures or anywhere extra strength would be benefical for a project</p>\r\n<ul>\r\n <li>\r\n Thicker diameter thread for extra strength when used in larger openings</li>\r\n <li>\r\n Special coating for added weather resistance</li>\r\n <li>\r\n Made in the USA</li>\r\n <li>\r\n 18x14</li>\r\n <li>\r\n Widths 36" - 108"</li>\r\n <li>\r\n Available in 25\' , 50 \', 100\' Lengths</li>\r\n</ul>\r\n','','',''),(83,1,'72" x 100\' Fiberglass Pool and Patio Mesh (18x14)','<p>\r\n Used in patio and pool enclosures or anywhere extra strength would be benefical for a project</p>\r\n<ul>\r\n <li>\r\n Thicker diameter thread for extra strength when used in larger openings</li>\r\n <li>\r\n Special coating for added weather resistance</li>\r\n <li>\r\n Made in the USA</li>\r\n <li>\r\n 18x14</li>\r\n <li>\r\n Widths 36" - 108"</li>\r\n <li>\r\n Available in 25\' , 50 \', 100\' Lengths</li>\r\n</ul>\r\n','','',''),(84,1,'84" x 100\' Fiberglass Pool and Patio Mesh (18x14)','<p>\r\n Used in patio and pool enclosures or anywhere extra strength would be benefical for a project</p>\r\n<ul>\r\n <li>\r\n Thicker diameter thread for extra strength when used in larger openings</li>\r\n <li>\r\n Special coating for added weather resistance</li>\r\n <li>\r\n Made in the USA</li>\r\n <li>\r\n 18x14</li>\r\n <li>\r\n Widths 36" - 108"</li>\r\n <li>\r\n Available in 25\' , 50 \', 100\' Lengths</li>\r\n</ul>\r\n','','',''),(85,1,'96" x 100\' Fiberglass Pool and Patio Mesh (18x14)','<p>\r\n Used in patio and pool enclosures or anywhere extra strength would be benefical for a project</p>\r\n<ul>\r\n <li>\r\n Thicker diameter thread for extra strength when used in larger openings</li>\r\n <li>\r\n Special coating for added weather resistance</li>\r\n <li>\r\n Made in the USA</li>\r\n <li>\r\n 18x14</li>\r\n <li>\r\n Widths 36" - 108"</li>\r\n <li>\r\n Available in 25\' , 50 \', 100\' Lengths</li>\r\n</ul>\r\n','','',''),(87,1,'108" x 100\' Fiberglass Pool and Patio Mesh (18x14)','<p>\r\n Used in patio and pool enclosures or anywhere extra strength would be benefical for a project</p>\r\n<ul>\r\n <li>\r\n Thicker diameter thread for extra strength when used in larger openings</li>\r\n <li>\r\n Special coating for added weather resistance</li>\r\n <li>\r\n Made in the USA</li>\r\n <li>\r\n 18x14</li>\r\n <li>\r\n Widths 36" - 108"</li>\r\n <li>\r\n Available in 25\' , 50 \', 100\' Lengths</li>\r\n</ul>\r\n','','',''),(89,1,'Window Screen Kit 48" (medium)','<p>\r\n All Hardware Included in Kit. (Corner locks,Screen mesh, Spline, Springs, Tabs, Aluminum Screen Frame)</p>\r\n<p>\r\n Will make screens up to&nbsp;48 " width or height</p>\r\n<p>\r\n Window Screen Kits are a quick and affordable way to fix your window screens yourself with our state of the art window screen kits.</p>\r\n<p>\r\n Next Day Shipping! Easy Assembly! Fast and Affordable!</p>\r\n<p>\r\n Available in Standard 5/16" frame or 7/16" in heavy duty .020 wall thickness</p>\r\n<p>\r\n Frame Colors: Mill Finish (silver) , White, Bronze.</p>\r\n<p>\r\n Mesh Colors : Charcoal , Grey</p>\r\n','','',''),(90,1,'Window Screen Kit 60" (Large)','<p>\r\n All Hardware Included in Kit. (Corner locks,Screen mesh, Spline, Springs, Tabs, Aluminum Screen Frame)</p>\r\n<p>\r\n Will make screens up to&nbsp;60 " width or height</p>\r\n<p>\r\n Window Screen Kits are a quick and affordable way to fix your window screens yourself with our state of the art window screen kits.</p>\r\n<p>\r\n Next Day Shipping! Easy Assembly! Fast and Affordable!</p>\r\n<p>\r\n Available in Standard 5/16" frame or 7/16" in heavy duty .020 wall thickness</p>\r\n<p>\r\n Frame Colors: Mill Finish (silver) , White, Bronze.</p>\r\n<p>\r\n Mesh Colors : Charcoal , Grey</p>\r\n','','',''),(79,1,'60" x 100\' Aluminum screen mesh','<p>\r\n <span class="lbl"><strong>Widths: 24" - 60"</strong></span></p>\r\n<p>\r\n <span class="lbl"><strong>Lenths: 100\'</strong></span></p>\r\n<p>\r\n <span class="lbl"><strong>Mesh Size:</strong></span><span class="val">4 – 50</span></p>\r\n<div class="r">\r\n <strong><span class="lbl">Diameter:</span></strong><span class="val">.005†– .030â€</span></div>\r\n<div class="r">\r\n &nbsp;</div>\r\n<div class="r">\r\n <strong><span class="lbl">Finishes: Bright Aluminum or Charcoal</span></strong></div>\r\n<div class="r">\r\n &nbsp;</div>\r\n<div class="r">\r\n <strong><span class="lbl">Put-Ups:</span></strong><span class="val">Rolls, Stamped / Die Cut Pieces, Cut Pieces, Custom Slitting</span></div>\r\n<div class="r">\r\n &nbsp;</div>\r\n<div class="r">\r\n <strong><span class="lbl">Treatments:</span></strong><span class="val">Cleaning, Annealing, Calendering</span></div>\r\n','','',''),(54,1,'Soffit Vent 4"x24"','<p>\r\n <span style="font-family: verdana, geneva, sans-serif;">Made from high alloy Aluminum framing with fiberglass mesh. This under eave vent will provide adequate air flow and ventilation to your attic, resulting in energy savings and drying moisture that can breed mold. This vent is used in Metro Dade County where building codes are of the highest standards.</span></p>\r\n<div>\r\n &nbsp;</div>\r\n','Custom made soffit screen vents for under eaves. 4" x 24" Soffit vents made of high strength aluminum with screen mesh.','Aluminum soffit ventilation,soffit screen vents,under eave vents,soffit vents,soffit,screens,vents','soffit ventilation,soffit vents, screen vents,'),(55,1,'Soffit Vent 6"x24"','<p>\r\n <span style="font-family: verdana, geneva, sans-serif; ">Made from high alloy Aluminum framing with fiberglass mesh. This under eave vent will provide adequate air flow and ventilation to your attic, resulting in energy savings and drying moisture that can breed mold. This vent is used in Metro Dade County where building codes are of the highest standards.</span></p>\r\n<div>\r\n &nbsp;</div>\r\n','','',''),(52,1,'Soffit Vent 6"X16"','<p>\r\n <span style="font-family: verdana, geneva, sans-serif; ">Made from high alloy Aluminum framing with fiberglass mesh. This under eave vent will provide adequate air flow and ventilation to your attic, resulting in energy savings and drying moisture that can breed mold. This vent is used in Metro Dade County where building codes are of the highest standards.</span></p>\r\n<div>\r\n &nbsp;</div>\r\n','','',''),(51,1,'Soffit Vent 4"X16"','<p>\r\n <span style="font-family: verdana, geneva, sans-serif; ">Made from high alloy Aluminum framing with fiberglass mesh. This under eave vent will provide adequate air flow and ventilation to your attic, resulting in energy savings and drying moisture that can breed mold. This vent is used in Metro Dade County where building codes are of the highest standards.</span></p>\r\n<div>\r\n &nbsp;</div>\r\n','','',''),(53,1,'Soffit Vent 7"X16"','<p>\r\n <span style="font-family: verdana, geneva, sans-serif; ">Made from high alloy Aluminum framing with fiberglass mesh. This under eave vent will provide adequate air flow and ventilation to your attic, resulting in energy savings and drying moisture that can breed mold. This vent is used in Metro Dade County where building codes are of the highest standards.</span></p>\r\n<div>\r\n &nbsp;</div>\r\n','','',''),(56,1,'Soffit Vent 7"x24"','<p>\r\n <span style="font-family: verdana, geneva, sans-serif; ">Made from high alloy Aluminum framing with fiberglass mesh. This under eave vent will provide adequate air flow and ventilation to your attic, resulting in energy savings and drying moisture that can breed mold. This vent is used in Metro Dade County where building codes are of the highest standards.</span></p>\r\n<div>\r\n &nbsp;</div>\r\n','','',''),(57,1,'Custom Soffit Vent','<p>\r\n <span style="font-family: verdana, geneva, sans-serif; ">Made from high alloy Aluminum framing with fiberglass mesh. This under eave vent will provide adequate air flow and ventilation to your attic, resulting in energy savings and drying moisture that can breed mold. This vent is used in Metro Dade County where building codes are of the highest standards.</span></p>\r\n<div>\r\n &nbsp;</div>\r\n','','',''),(58,1,'Tension Springs (no Hole)','<p style="margin-bottom: 0in;">\r\n No Hole Tension springs require no drilling and installed in frame by clipping them in with corner locks. Regular Tension springs require drilling or punching frame for installation. No hole tension springs have dominated the market because of their ease of use and reliability.</p>\r\n','window screen aluminum tension springs that require no holes or drilling tension springs insert into screen frame ends.','aluminum tension springs no hole window screen clips ','aluminum,tension,springs,window,screen,clips.no,hole'),(59,1,'Corner Lock External','<p style="margin-bottom: 0in;">\r\n CORNER LOCKS EXTERNAL- Available in White, Bronze and Mill Finish . These easy to use straight cut corner locks allow you to build your screen using a 90degree cut instead of a 45degree mitre cut. It is made of high strength polypropylene and is a heavy duty corner that will not crack or erode from the elements giving you years of durability. It was designed specifically for our frame and molded in our own facility resulting in savings of time and money for you the customer.</p>\r\n','External Plastic straight cut corner lock for window screen frame','external corner lock window screen straight cut plastic corner lock','plastic,corner,lock,straight,cut,window,screen,corner'),(60,1,'Corner Lock Mitre','<p style="margin-bottom: 0in;">\r\n CORNER LOCKS MITRE- Internal corner lock for 5/16†x 3/4†frame. It is made of high strength polypropylene and is a heavy duty corner that will not crack or erode from the elements giving you years of durability. It was designed specifically for our frame and molded in our own facility resulting in savings of time and money for you the customer.</p>\r\n','Plastic corner lock for mitre cut window screens.','plastic corner locks mitre window screen ','plastic,corner,lock,mitre,window,screen,'),(61,1,'Tension Springs','<p style="margin-bottom: 0in;">\r\n TENSION SPRINGS- Tension Springs allow the screen to remain in the window by putting pressure in the window screen track on window. Tension springs are aluminum and come in two ways, No Hole Tension springs require no drilling and installed in frame by clipping them in with corner locks. Regular Tension springs require drilling or punching frame for installation. No hole tension springs have dominated the market because of their ease of use and reliability.</p>\r\n','aluminum tension spring clip for window screen','tension spring clip window screens aluminum ','tension,springs,aluminum,pull,tab,window,screen'),(63,1,'Custom Window Screen','<p>\r\n &nbsp;<strong><span style="font-size: 14px;">Custom Made Window Screens-</span>&nbsp;Custom made window screens are cut and fabricated at our facility boxed and shipped within 1-3 days to your doorstep. No </strong></p>\r\n<p>\r\n <strong>work just </strong><strong>simply measure your screen and order online! Made from rollformed aluminum screen frame and available in White, Mill Finish or Bronze.</strong></p>\r\n<p>\r\n <strong>Insect Fiber Mesh will provide years of protection against insects available in Charcoal (standard) or Grey.</strong></p>\r\n<p>\r\n <strong>Custom Made Window Screens include all hardware simply choose from the options.</strong></p>\r\n<p>\r\n &nbsp;</p>\r\n','custom made window screens with insect screen and aluminum screen frame.','window screens insect protection aluminum screen frame wholesale custom','window,screens,insect,protection,aluminum,screen,frame'),(77,1,'36" x 100\' Aluminum Screen Mesh','<p>\r\n <span class="lbl"><strong>Widths: 24" - 60"</strong></span></p>\r\n<p>\r\n <span class="lbl"><strong>Lenths: 100\'</strong></span></p>\r\n<p>\r\n <span class="lbl"><strong>Mesh Size:</strong></span><span class="val">4 – 50</span></p>\r\n<div class="r">\r\n <strong><span class="lbl">Diameter:</span></strong><span class="val">.005†– .030â€</span></div>\r\n<div class="r">\r\n &nbsp;</div>\r\n<div class="r">\r\n <strong><span class="lbl">Finishes: Bright Aluminum or Charcoal</span></strong></div>\r\n<div class="r">\r\n &nbsp;</div>\r\n<div class="r">\r\n <strong><span class="lbl">Put-Ups:</span></strong><span class="val">Rolls, Stamped / Die Cut Pieces, Cut Pieces, Custom Slitting</span></div>\r\n<div class="r">\r\n &nbsp;</div>\r\n<div class="r">\r\n <strong><span class="lbl">Treatments:</span></strong><span class="val">Cleaning, Annealing, Calendering</span></div>\r\n','','',''),(67,1,'30" x 100\' Fiberglass Insect Screen (18x16)','<p>\r\n 30" x 100\' Fiberglass Insect Window Screening</p>\r\n<p>\r\n Insect window screen mesh is Made in The U.S. and constructed with the finest available materials. 18 x 16 mesh is standard for window screens and patio screen doors. It is a nylon coated fiberglass core mesh that is used in 90% of residential windows and home use. Is available in Standard Charcoal or Grey and in lengths of 25\' , 50\' , 100\'</p>\r\n<p>\r\n &nbsp;</p>\r\n','','',''),(66,1,'24" x 100\' Fiberglass Insect Screen (18x16)','<p>\r\n 24" x 100\' Fiberglass Screen Mesh</p>\r\n<p>\r\n Insect window screen mesh is Made in The U.S. and constructed with the finest available materials. 18 x 16 mesh is standard for window screens and patio screen doors. It is a nylon coated fiberglass core mesh that is used in 90% of residential windows and home use. Is available in Standard Charcoal or Grey and in lengths of 25\' , 50\' , 100\'.</p>\r\n','Insect Fiberglass Screen Mesh ','Insect Window screen mesh','Insect,window,screen,fiberglass,mesh,18x16,repair,window'),(68,1,'36" x 100\' Fiberglass Insect Screen (18x16)','<p>\r\n 36" x 100\' Fiberglas Insect Screen (18x16)</p>\r\n<p>\r\n Insect window screen mesh is Made in The U.S. and constructed with the finest available materials. 18 x 16 mesh is standard for window screens and patio screen doors. It is a nylon coated fiberglass core mesh that is used in 90% of residential windows and home use. Is available in Standard Charcoal or Grey and in lengths of 25\' , 50\' , 100\'</p>\r\n<p>\r\n &nbsp;</p>\r\n','','',''),(69,1,'48" x 100\' Fiberglass Insect Screen (18x16)','<p>\r\n 48" x 100\' Fiberglass Insect Window Screening</p>\r\n<p>\r\n Insect window screen mesh is Made in The U.S. and constructed with the finest available materials. 18 x 16 mesh is standard for window screens and patio screen doors. It is a nylon coated fiberglass core mesh that is used in 90% of residential windows and home use. Is available in Standard Charcoal or Grey and in lengths of 25\' , 50\' , 100\'</p>\r\n','','',''),(70,1,'60" x 100\' Fiberglass Insect Screen (18x16)','<p>\r\n 60" x 100\' Fiberglass Insect Window Screening</p>\r\n<p>\r\n Insect window screen mesh is Made in The U.S. and constructed with the finest available materials. 18 x 16 mesh is standard for window screens and patio screen doors. It is a nylon coated fiberglass core mesh that is used in 90% of residential windows and home use. Is available in Standard Charcoal or Grey and in lengths of 25\' , 50\' , 100\'</p>\r\n','','',''),(71,1,'72" x 100\' Fiberglass Insect Screen (18x16)','<p>\r\n 72" x 100\' Fiberglass Insect Window Screening</p>\r\n<p>\r\n Insect window screen mesh is Made in The U.S. and constructed with the finest available materials. 18 x 16 mesh is standard for window screens and patio screen doors. It is a nylon coated fiberglass core mesh that is used in 90% of residential windows and home use. Is available in Standard Charcoal or Grey and in lengths of 25\' , 50\' , 100\'</p>\r\n','','',''),(72,1,'84" x 100\' Fiberglass Insect Screen (18x16)','<p>\r\n 84" x 100\' Fiberglass Insect Window Screening</p>\r\n<p>\r\n Insect window screen mesh is Made in The U.S. and constructed with the finest available materials. 18 x 16 mesh is standard for window screens and patio screen doors. It is a nylon coated fiberglass core mesh that is used in 90% of residential windows and home use. Is available in Standard Charcoal or Grey and in lengths of 25\' , 50\' , 100\'</p>\r\n','','',''),(73,1,'96" x 100\' Fiberglass Insect Screen (18x16)','<p>\r\n 96" x 100\' Fiberglass Insect Window Screening</p>\r\n<p>\r\n Insect window screen mesh is Made in The U.S. and constructed with the finest available materials. 18 x 16 mesh is standard for window screens and patio screen doors. It is a nylon coated fiberglass core mesh that is used in 90% of residential windows and home use. Is available in Standard Charcoal or Grey and in lengths of 25\' , 50\' , 100\'</p>\r\n','','',''),(74,1,'Window Screen Kit 36" (small)','<p>\r\n All Hardware Included in Kit.&nbsp;&nbsp; (Corner locks,Screen mesh, Spline, Springs, Tabs, Aluminum Screen Frame)&nbsp;</p>\r\n<p>\r\n Will make screens up to 36 " width or height</p>\r\n<p>\r\n Window Screen Kits are a quick and affordable way to fix your window screens yourself with our state of the art window screen kits.</p>\r\n<p>\r\n Next Day Shipping!&nbsp; Easy Assembly!&nbsp; Fast and Affordable!</p>\r\n<p>\r\n Available in Standard 5/16" frame or 7/16" in heavy duty&nbsp;.020 wall thickness</p>\r\n<p>\r\n Frame Colors: Mill Finish (silver) , White, Bronze.</p>\r\n<p>\r\n Mesh Colors : Charcoal , Grey</p>\r\n<p>\r\n &nbsp;</p>\r\n','','',''),(75,1,'24" x 100\' Aluminum Screen Mesh','<p>\r\n <span class="lbl"><strong>Widths: 24" - 60"</strong></span></p>\r\n<p>\r\n <span class="lbl"><strong>Lenths: 100\'</strong></span></p>\r\n<p>\r\n <span class="lbl"><strong>Mesh Size:</strong></span><span class="val">4 – 50</span></p>\r\n<div class="r">\r\n <strong><span class="lbl">Diameter:</span></strong><span class="val">.005†– .030â€</span></div>\r\n<div class="r">\r\n &nbsp;</div>\r\n<div class="r">\r\n <strong><span class="lbl">Finishes: Bright Aluminum or Charcoal</span></strong></div>\r\n<div class="r">\r\n &nbsp;</div>\r\n<div class="r">\r\n <strong><span class="lbl">Put-Ups:</span></strong><span class="val">Rolls, Stamped / Die Cut Pieces, Cut Pieces, Custom Slitting</span></div>\r\n<div class="r">\r\n &nbsp;</div>\r\n<div class="r">\r\n <strong><span class="lbl">Treatments:</span></strong><span class="val">Cleaning, Annealing, Calendering</span></div>\r\n','Aluminum Screen Mesh (18x16) available in 100\' rolls used for residual and commercial window screens.','Aluminum screen mesh window screen repair replacement','aluminum,screen,mesh,window,replacement,roll'),(76,1,'30" x 100\' Aluminum Screen Mesh','<p>\r\n <span class="lbl"><strong>Widths: 24" - 60"</strong></span></p>\r\n<p>\r\n <span class="lbl"><strong>Lenths: 100\'</strong></span></p>\r\n<p>\r\n <span class="lbl"><strong>Mesh Size:</strong></span><span class="val">4 – 50</span></p>\r\n<div class="r">\r\n <strong><span class="lbl">Diameter:</span></strong><span class="val">.005†– .030â€</span></div>\r\n<div class="r">\r\n &nbsp;</div>\r\n<div class="r">\r\n <strong><span class="lbl">Finishes: Bright Aluminum or Charcoal</span></strong></div>\r\n<div class="r">\r\n &nbsp;</div>\r\n<div class="r">\r\n <strong><span class="lbl">Put-Ups:</span></strong><span class="val">Rolls, Stamped / Die Cut Pieces, Cut Pieces, Custom Slitting</span></div>\r\n<div class="r">\r\n &nbsp;</div>\r\n<div class="r">\r\n <strong><span class="lbl">Treatments:</span></strong><span class="val">Cleaning, Annealing, Calendering</span></div>\r\n','','',''),(78,1,'42" x 100\' Aluminum Screen Mesh','<p>\r\n <span class="lbl"><strong>Widths: 24" - 60"</strong></span></p>\r\n<p>\r\n <span class="lbl"><strong>Lenths: 100\'</strong></span></p>\r\n<p>\r\n <span class="lbl"><strong>Mesh Size:</strong></span><span class="val">4 – 50</span></p>\r\n<div class="r">\r\n <strong><span class="lbl">Diameter:</span></strong><span class="val">.005†– .030â€</span></div>\r\n<div class="r">\r\n &nbsp;</div>\r\n<div class="r">\r\n <strong><span class="lbl">Finishes: Bright Aluminum or Charcoal</span></strong></div>\r\n<div class="r">\r\n &nbsp;</div>\r\n<div class="r">\r\n <strong><span class="lbl">Put-Ups:</span></strong><span class="val">Rolls, Stamped / Die Cut Pieces, Cut Pieces, Custom Slitting</span></div>\r\n<div class="r">\r\n &nbsp;</div>\r\n<div class="r">\r\n <strong><span class="lbl">Treatments:</span></strong><span class="val">Cleaning, Annealing, Calendering</span></div>\r\n','','',''),(92,1,'Screen Door Kit 24" x 80"- 96" Extruded Aluminum','<p>\r\n <strong>24" x 80" or 96" &nbsp;Patio Screen Door Kit</strong></p>\r\n<p>\r\n <strong>Includes (wheels, Aluminum Framing, Screen Mesh, Spline, Corner Locks</strong></p>\r\n<p>\r\n <strong>Available in White, Mill Finish , Bronze</strong></p>\r\n<p>\r\n <strong>Cut and Assemble in Minutes Easy 1,2,3</strong></p>\r\n<p>\r\n <strong>Available Screen Colors in Charcoal or Grey</strong></p>\r\n<p>\r\n <strong>Heavy Duty Extruded .060 Extruded Aluminum Frame</strong></p>\r\n<p>\r\n <strong>Pre Mitre Cut to Accomidate Most Openings without Cutting.</strong></p>\r\n<p>\r\n <strong>Made In The U.S.A. </strong></p>\r\n','','',''),(91,1,'Screen Door Kit 36" x 80" - 96" Extruded Aluminum','<p>\r\n <strong>36" x 80" or 96" &nbsp;Patio Screen Door Kit</strong></p>\r\n<p>\r\n <strong>Includes (wheels, Aluminum Framing, Screen Mesh, Spline, Corner Locks&nbsp;</strong></p>\r\n<p>\r\n <strong>Available in White, Mill Finish , Bronze</strong></p>\r\n<p>\r\n <strong>Cut and Assemble in Minutes Easy 1,2,3</strong></p>\r\n<p>\r\n <strong>Available Screen Colors in Charcoal or Grey</strong></p>\r\n<p>\r\n <strong>Heavy Duty Extruded .060 Extruded Aluminum Frame</strong></p>\r\n<p>\r\n <strong>Pre Mitre Cut to Accomidate Most Openings without Cutting.</strong></p>\r\n<p>\r\n <strong>Made In The U.S.A.</strong></p>\r\n<p>\r\n &nbsp;</p>\r\n<p>\r\n &nbsp;</p>\r\n<p>\r\n &nbsp;</p>\r\n','','',''),(93,1,'Screen Door Kit 48" x 80" - 96" Extruded Aluminum','<p>\r\n <strong>48" x 80" or 96" &nbsp;Patio Screen Door Kit</strong></p>\r\n<p>\r\n <strong>Includes (wheels, Aluminum Framing, Screen Mesh, Spline, Corner Locks </strong></p>\r\n<p>\r\n <strong>Available in White, Mill Finish , Bronze</strong></p>\r\n<p>\r\n <strong>Cut and Assemble in Minutes Easy 1,2,3</strong></p>\r\n<p>\r\n <strong>Available Screen Colors in Charcoal or Grey</strong></p>\r\n<p>\r\n <strong>Heavy Duty Extruded .060 Extruded Aluminum Frame</strong></p>\r\n<p>\r\n <strong>Pre Mitre Cut to Accomidate Most Openings without Cutting.</strong></p>\r\n<p>\r\n <strong>Made In The U.S.A.</strong></p>\r\n','','',''),(94,1,'Screen Door Kit 60" x 80" - 96" Extruded Aluminum','<p>\r\n <strong>60" x 80" - 96"&nbsp;Patio Screen Door Kit</strong></p>\r\n<p>\r\n <strong>Includes (wheels, Aluminum Framing, Screen Mesh, Spline, Corner Locks </strong></p>\r\n<p>\r\n <strong>Available in White, Mill Finish , Bronze</strong></p>\r\n<p>\r\n <strong>Cut and Assemble in Minutes Easy 1,2,3</strong></p>\r\n<p>\r\n <strong>Available Screen Colors in Charcoal or Grey</strong></p>\r\n<p>\r\n <strong>Heavy Duty Extruded .060 Extruded Aluminum Frame</strong></p>\r\n<p>\r\n <strong>Pre Mitre Cut to Accomidate Most Openings without Cutting.</strong></p>\r\n<p>\r\n <strong>Made In The U.S.A.</strong></p>\r\n','','',''),(96,1,'Window Screen Spline','<p>\r\n Window Screen Spline</p>\r\n<p>\r\n Colors: Black or Grey</p>\r\n<p>\r\n Sizes: .140 - .250</p>\r\n<p>\r\n &nbsp; Round serrated spline used for window screens. Standard size used for our window screen&nbsp;frame&nbsp;is .145 black spline.</p>\r\n<p>\r\n Available Lengths: 10\', 25\',&nbsp;50\', 200\', 500\', 1000\', 2000\' .</p>\r\n','','',''),(97,1,'Nylon Pull Tabs','<p>\r\n &nbsp;Used in conjunction with tension springs on window screens.</p>\r\n<p>\r\n &nbsp;For easy removal and insertion of window screens into window frame</p>\r\n<p>\r\n &nbsp;Placed in spline grove of screen frame opposite of tension springs. (2 per Screen)</p>\r\n<p>\r\n &nbsp;Material : Nylon</p>\r\n<p>\r\n &nbsp;Colors : Black or Natural white in plastic.&nbsp;&nbsp;</p>\r\n<p>\r\n &nbsp;Quantity: 10, 25, 50, 100, 500, 1000, 5000</p>\r\n<p>\r\n &nbsp;</p>\r\n','','',''),(98,1,'Aluminum Pull Tabs','<p>\r\n &nbsp;Used in conjunction with tension springs on window screens.</p>\r\n<p>\r\n For easy removal and insertion of window screens into window frame</p>\r\n<p>\r\n Placed in spline grove of screen frame opposite of tension springs. (2 per Screen)</p>\r\n<p>\r\n Material : Aluminum</p>\r\n<p>\r\n Colors : Mill Finish</p>\r\n<p>\r\n Quantity: 10, 25, 50, 100, 500, 1000, 5000</p>\r\n','','',''),(99,1,'Plunger Springs','<p>\r\n Plunger Springs are used to hold window screen in place in window frame.</p>\r\n<p>\r\n Used opposite of pull tabs (2 per screen)</p>\r\n','','',''),(100,1,' Patio Screen Door Handle-Kit','<p>\r\n This plastic Sliding Screen Door Latch and Pull has a steel latch.Can be used on most standard screen door frames. This screen door latch is popular with several screen door manufacturers it is made of a rugged black nylon plastic to provide years of use.</p>\r\n<p>\r\n Includes: Plastic Handle, Steel Latch , Keeper, and screws to attach.</p>\r\n','','',''),(101,1,'Patio Screen Door Handle-only','<p>\r\n Durable Plastic Nylon Screen Door Handle.</p>\r\n<p>\r\n Compatible with almost all standard patio screen doors</p>\r\n<p>\r\n Color: Black</p>\r\n<p>\r\n Includes: Handle and Screws .no latch or keep</p>\r\n','','',''),(102,1,'Patio Screen Door Wheels','<p>\r\n Patio Screen Door Replacement Wheels</p>\r\n<p>\r\n The M Roller is one of the most durable and longest lasting door rollers available.</p>\r\n<p>\r\n Requires&nbsp;NO disassembling of door corners and frame</p>\r\n<p>\r\n Most Doors can be converted with a few simple steps.</p>\r\n<p>\r\n Available in Nylon, Steel , and Stainless Steel Wheels</p>\r\n<p>\r\n In Stock</p>\r\n<p>\r\n Next Day Shipping!</p>\r\n','','',''),(103,1,'Patio Screen Door Adjustment Screw','<p>\r\n Adjustment Screw for W Wheels on Patio Screen Doors\'</p>\r\n<p>\r\n #8&nbsp; 2" Pan Head Adjustment Screw</p>\r\n','','',''),(104,1,'Scren Door Corner Screws','<p>\r\n Pan Head Screws that fit the replacemrnt aluminum&nbsp;corner locks for patio screen doors.</p>\r\n<p>\r\n Zink Plated # 8 x 1/2"</p>\r\n','','',''),(105,1,'Patio Screen Door Corner Lock','<p>\r\n Patio screen door corner lock is the top of the line extruded aluminum corner lock designed to last.</p>\r\n<p>\r\n Fits are deluxe screen door frame and most others on the market.</p>\r\n<p>\r\n Material: Heavy Duty Extruded Aluminum</p>\r\n<p>\r\n &nbsp;</p>\r\n','','',''),(106,1,'Top Hung Bracket','<p>\r\n Exclusivley made for Our Deluxe Screen Door Frame.</p>\r\n<p>\r\n Fits on top of door frame for patio doors that hand.</p>\r\n<p>\r\n Comes with 2 top hung roller wheels 3/4" diameter</p>\r\n<p>\r\n Mounting Screws are also included.</p>\r\n<p>\r\n Available in: 24" , 36" , 48" , 60"</p>\r\n<p>\r\n Colors: White , Bronze , Mill Finish</p>\r\n<p>\r\n &nbsp;</p>\r\n','','',''),(107,1,'Top Hung Replacement Wheels','<p>\r\n Replacement Wheels for our Top Hung Doors</p>\r\n<p>\r\n Heavy Duty Nylon Oval Wheels</p>\r\n<p>\r\n 3/4" Diameter</p>\r\n','','',''),(108,1,'Patio Screen Door Frame','<p>\r\n This Heavy Duty Extruded Aluminum screen door is the ultimate solution for patio sliding doors.</p>\r\n<p>\r\n Frame is 1 1/2†x 2 1/2†aluminum with a wall thickness of .050</p>\r\n<p>\r\n Available Lengths: 96"</p>\r\n<p>\r\n Colors: White , Bronze, Mill Finish</p>\r\n','','',''),(109,1,'Professional Screen Roller Tool','<p>\r\n Profossional Screen Roller Tool is a heavy duty screen roller used by us and other commercial screen companies around the nation.</p>\r\n<p>\r\n Heavy duty bearing wheels</p>\r\n<p>\r\n Double Sided rollers to handle all types of screening demands</p>\r\n<p>\r\n Solis wood handle.</p>\r\n','','',''),(110,1,'Screen Roller Wheels','<p>\r\n Screen Roller Replacement Wheels</p>\r\n<p>\r\n High Strength Polymer Wheels with Sealed Pre Lubed Bearings</p>\r\n','','',''),(111,1,'US 1-11 Screen Frame 5/16" x 3/4" (2000 l/f Box)','<p>\r\n <strong><span style="font-size: 16px;">Roll Formed Aluminum Screen Frame</span></strong></p>\r\n<p>\r\n <strong><span style="font-size: 16px;">5/16" x 3/4" x 12\' 6"&nbsp; (US-11)</span></strong></p>\r\n<p>\r\n <strong><span style="font-size: 16px;">.020 Wall Thickness</span></strong></p>\r\n<p>\r\n <strong><span style="font-size: 16px;">2000 l/f per Box </span></strong></p>\r\n<p>\r\n <strong><span style="font-size: 16px;">Colors: White, Bronze, Mill Finish</span></strong></p>\r\n<table border="1" cellpadding="1" cellspacing="1" style="width: 500px;">\r\n <tbody>\r\n <tr>\r\n <td>\r\n <strong>Sceen Frame </strong></td>\r\n <td>\r\n <strong>Corner Locks</strong></td>\r\n <td>\r\n <strong>Spline</strong></td>\r\n </tr>\r\n <tr>\r\n <td>\r\n US-1-11</td>\r\n <td>\r\n US-11 Straight Cut</td>\r\n <td>\r\n .145</td>\r\n </tr>\r\n <tr>\r\n <td>\r\n &nbsp;</td>\r\n <td>\r\n US-11 Mitre</td>\r\n <td>\r\n &nbsp;</td>\r\n </tr>\r\n <tr>\r\n <td>\r\n &nbsp;</td>\r\n <td>\r\n &nbsp;</td>\r\n <td>\r\n &nbsp;</td>\r\n </tr>\r\n </tbody>\r\n</table>\r\n<p>\r\n &nbsp;</p>\r\n<p>\r\n &nbsp;</p>\r\n','','',''),(113,1,'Flat Spline ','<p>\r\n <strong>Flat Spline is used for pool and patio framing and mesh.</strong></p>\r\n<p>\r\n <strong>.375 width Polyproplene Rubber Spline</strong></p>\r\n<p>\r\n <strong>Color: Black</strong></p>\r\n<p>\r\n <strong>Available In: 25\' , 50\' , 250\' , 500\' , 1000\' </strong></p>\r\n<p>\r\n &nbsp;</p>\r\n','','',''),(114,1,'Screen Door Closure Kit','<p>\r\n Complete Handle and Closure Kit for Hinged Patio Screen Doors</p>\r\n<p>\r\n Will work on any screen door that is hinged.</p>\r\n<p>\r\n Kit includes: Handles inside and out with lock, Adjustable Plunger and all hardware needed</p>\r\n<p>\r\n Easy installation instructions.</p>\r\n<p>\r\n Colors: Mill Finish, White, Bronze</p>\r\n','','',''),(115,1,'US 1-11 Screen Frame 5/16" x 3/4" (1000 l/f Box)','<p>\r\n <strong><span style="font-size: 16px;">Roll Formed Aluminum Screen Frame</span></strong></p>\r\n<p>\r\n <strong><span style="font-size: 16px;">5/16" x 3/4" x 12\' 6" (US-11)</span></strong></p>\r\n<p>\r\n <strong><span style="font-size: 16px;">.020 Wall Thickness</span></strong></p>\r\n<p>\r\n <strong><span style="font-size: 16px;">1000 l/f per Box </span></strong></p>\r\n<p>\r\n <strong><span style="font-size: 16px;">Colors: White, Bronze, Mill Finish</span></strong></p>\r\n<p>\r\n &nbsp;</p>\r\n<table border="1" cellpadding="1" cellspacing="1" style="width: 500px;">\r\n <tbody>\r\n <tr>\r\n <td>\r\n <strong>Sceen Frame </strong></td>\r\n <td>\r\n <strong>Corner Locks</strong></td>\r\n <td>\r\n <strong>Spline</strong></td>\r\n </tr>\r\n <tr>\r\n <td>\r\n US-1-11</td>\r\n <td>\r\n US-11 Straight Cut</td>\r\n <td>\r\n .145</td>\r\n </tr>\r\n <tr>\r\n <td>\r\n &nbsp;</td>\r\n <td>\r\n US-11 Mitre</td>\r\n <td>\r\n &nbsp;</td>\r\n </tr>\r\n <tr>\r\n <td>\r\n &nbsp;</td>\r\n <td>\r\n &nbsp;</td>\r\n </tr>\r\n </tbody>\r\n</table>\r\n<p>\r\n &nbsp;</p>\r\n','','',''),(116,1,'US 1-15 Screen Frame 7/16" x 3/4" (1000 l/f Box)','<p>\r\n <strong><span style="font-size: 16px;">Roll Formed Aluminum Screen Frame</span></strong></p>\r\n<p>\r\n <strong><span style="font-size: 16px;">7/16" x 3/4" x 12\' 6" (US-11)</span></strong></p>\r\n<p>\r\n <strong><span style="font-size: 16px;">.020 Wall Thickness</span></strong></p>\r\n<p>\r\n <strong><span style="font-size: 16px;">1000 l/f per Box </span></strong></p>\r\n<p>\r\n <strong><span style="font-size: 16px;">Colors: White, Bronze, Mill Finish</span></strong></p>\r\n','','',''),(117,1,'US 1-15 Screen Frame 7/16" x 3/4" (1500 l/f Box)','<p>\r\n <strong><span style="font-size: 16px;">Roll Formed Aluminum Screen Frame</span></strong></p>\r\n<p>\r\n <strong><span style="font-size: 16px;">7/16" x 3/4" x 12\' 6" (US-15)</span></strong></p>\r\n<p>\r\n <strong><span style="font-size: 16px;">.020 Wall Thickness</span></strong></p>\r\n<p>\r\n <strong><span style="font-size: 16px;">1500 &nbsp;l/f per Box </span></strong></p>\r\n<p>\r\n <strong><span style="font-size: 16px;">Colors: White, Bronze, Mill Finish</span></strong></p>\r\n<table border="1" cellpadding="1" cellspacing="1" style="width: 500px;">\r\n <tbody>\r\n <tr>\r\n <td>\r\n <strong>Sceen Frame </strong></td>\r\n <td>\r\n <strong>Corner Locks</strong></td>\r\n <td>\r\n <strong>Spline</strong></td>\r\n </tr>\r\n <tr>\r\n <td>\r\n US-1-15</td>\r\n <td>\r\n US-15 Straight Cut</td>\r\n <td>\r\n .145</td>\r\n </tr>\r\n <tr>\r\n <td>\r\n &nbsp;</td>\r\n <td>\r\n US-15&nbsp; Mitre</td>\r\n <td>\r\n &nbsp;</td>\r\n </tr>\r\n <tr>\r\n <td>\r\n &nbsp;</td>\r\n <td>\r\n US-15 Mitre Aluminum</td>\r\n </tr>\r\n </tbody>\r\n</table>\r\n<p>\r\n &nbsp;</p>\r\n','','',''),(95,1,'5/16" x 3/4" x 6\' 3" Screen Frame (US-11)','<p>\r\n <span style="font-size: 14px;"><strong>5/16" x 3/4" x 6\'&nbsp;3" Aluminum Screen Frame is used in the majority of all window screens.</strong></span></p>\r\n<p>\r\n <span style="font-size: 14px;"><strong>Made of .020 Roll Formed Aluminum&nbsp; Alloy </strong></span></p>\r\n<p>\r\n <span style="font-size: 14px;"><strong>Will not Rust </strong></span></p>\r\n<p>\r\n <span style="font-size: 14px;"><strong>Available in Mill Finish, White, Bronze</strong></span></p>\r\n<p>\r\n <span style="font-size: 14px;"><strong>Lengths : 6\' 3"</strong></span></p>\r\n<table border="1" cellpadding="1" cellspacing="1" style="width: 500px;">\r\n <tbody>\r\n <tr>\r\n <td>\r\n <span style="font-size: 14px;"><strong><strong>Sceen Frame </strong></strong></span></td>\r\n <td>\r\n <span style="font-size: 14px;"><strong><strong>Corner Locks</strong></strong></span></td>\r\n <td>\r\n <span style="font-size: 14px;"><strong><strong>Spline</strong></strong></span></td>\r\n </tr>\r\n <tr>\r\n <td>\r\n <span style="font-size: 14px;"><strong>US-1-11</strong></span></td>\r\n <td>\r\n <span style="font-size: 14px;"><strong>US-11 Straight Cut</strong></span></td>\r\n <td>\r\n <span style="font-size: 14px;"><strong>.145</strong></span></td>\r\n </tr>\r\n <tr>\r\n <td>\r\n &nbsp;</td>\r\n <td>\r\n <span style="font-size: 14px;"><strong>US-11 Mitre</strong></span></td>\r\n <td>\r\n &nbsp;</td>\r\n </tr>\r\n <tr>\r\n <td>\r\n &nbsp;</td>\r\n <td>\r\n <span style="font-size: 14px;"><strong>US-11 Mitre Aluminum</strong></span></td>\r\n </tr>\r\n </tbody>\r\n</table>\r\n<p>\r\n &nbsp;</p>\r\n<p>\r\n &nbsp;</p>\r\n<p>\r\n &nbsp;</p>\r\n','','',''),(118,1,'7/16" x 3/4" x 6\' 3" Screen Frame (US-15)','<p>\r\n <span style="font-size: 18px;"><strong>Roll Formed Aluminum Screen Frame</strong></span></p>\r\n<p>\r\n <strong><span style="font-size: 16px;">7/16" x 3/4" x&nbsp;6\' 3" &nbsp;(US-15)</span></strong></p>\r\n<p>\r\n <strong><span style="font-size: 16px;">.020 Wall Thickness</span></strong></p>\r\n<p>\r\n <strong><span style="font-size: 16px;">Colors: White, Bronze, Mill Finish</span></strong></p>\r\n<table border="1" cellpadding="1" cellspacing="1" style="width: 500px;">\r\n <tbody>\r\n <tr>\r\n <td>\r\n <strong><span style="font-size: 16px;"><strong>Sceen Frame </strong></span></strong></td>\r\n <td>\r\n <strong><span style="font-size: 16px;"><strong>Corner Locks</strong></span></strong></td>\r\n <td>\r\n <strong><span style="font-size: 16px;"><strong>Spline</strong></span></strong></td>\r\n </tr>\r\n <tr>\r\n <td>\r\n <strong><span style="font-size: 16px;">US-1-15</span></strong></td>\r\n <td>\r\n <strong><span style="font-size: 16px;">US-15 Straight Cut</span></strong></td>\r\n <td>\r\n <strong><span style="font-size: 16px;">.145</span></strong></td>\r\n </tr>\r\n <tr>\r\n <td>\r\n &nbsp;</td>\r\n <td>\r\n <strong><span style="font-size: 16px;">US-15 Mitre</span></strong></td>\r\n <td>\r\n &nbsp;</td>\r\n </tr>\r\n <tr>\r\n <td>\r\n &nbsp;</td>\r\n <td>\r\n <strong><span style="font-size: 16px;">US-15 Mitre Aluminum</span></strong></td>\r\n </tr>\r\n </tbody>\r\n</table>\r\n<p>\r\n &nbsp;</p>\r\n<p>\r\n &nbsp;</p>\r\n','','',''),(119,1,'Pool and Patio Screen Frame 1x2','<p>\r\n <strong>1" x 2" Pool and patio enclosure screen frame. Made of high strength extruded&nbsp;&nbsp;aluminum.</strong></p>\r\n<p>\r\n <strong>Lengths: 6\', 8\', 12\' </strong></p>\r\n<p>\r\n <strong>Colors: Mill Finish, White, Bronze</strong></p>\r\n<p>\r\n &nbsp;</p>\r\n','wholesale Pool and pato screen frame made of extrude aluminum used for scren enclosures.Available in 6\',8\',12\' lengths.','pool and patio enclosure frame,patio screen frame,aluminum screen frame,screen frame,patio,screen,frame','pool and patio,1 x 2, patio screen frame,extruded frame'),(120,1,'18" X 600\' Fiberglass Insect Screen Mesh','<p>\r\n 18" x 600\' Fiberglasss Window Screen Mesh .</p>\r\n<p>\r\n 18 x16 Insect Screen for window screens.</p>\r\n<p>\r\n Available in Charcoal or Grey.</p>\r\n','18" x 600\' Fiberglass Insect Screen Mesh. Wholesale Screening Products. ','wholesale fiberglass insect screen, Fiberglass screen mesh,window screen,window,screen,mesh','wholesale,window screen,mesh,fiberglass,screen'),(121,1,'24" X 600\' Fiberglasss Insect Screen Mesh ','<p>\r\n 24" x 600\' Fiberglasss Window Screen Mesh .</p>\r\n<p>\r\n 18 x16 Insect Screen for window screens.</p>\r\n<p>\r\n Available in Charcoal or Grey.</p>\r\n','24" x 600\' Fiberglass Insect Screen Mesh. wholesale screening product','wholesale fiberglass insect screen, fiberglass screen mesh, wiindow screen, window,screen,mesh','wholesale,window screen,insect,fiberglass,screen,mesh'),(122,1,'36" X 600\' Fiberglass Insect Screen Mesh','<p>\r\n 36" x 600\' Fiberglasss Window Screen Mesh</p>\r\n<p>\r\n 18 x 16 Insect Screen for window screens.</p>\r\n<p>\r\n Available in Charcoal and Grey</p>\r\n','36" X 600\' Fiberglass Insect Screen Mesh. Wholesale Screening Products','wholesale fiberglass insect screen, fiberglass screen mesh, window screen, window,screen,mesh','wholesale,window,screen,mesh,fiberglass,screen'),(123,1,'48" X 600\' Fiberglass Insect Screen Mesh','<p style="margin-bottom: 0in;">\r\n <strong>36" x 600\' Fiberglasss Window Screen Mesh</strong></p>\r\n<p style="margin-bottom: 0in;">\r\n <strong>18 x 16 Insect Screen for window screens.</strong></p>\r\n<p>\r\n <strong>Available in Charcoal and Grey</strong></p>\r\n','36" X 600\' Fiberglass Insect Screen Mesh. Wholesale Screening Products','wholesale fiberglass insect screen, fiberglass screen mesh, window screen, window,screen,mesh','wholesale,window,screen,mesh,fiberglass,screen'),(124,1,'60" X 600\' Fiberglass Insect Screen Mesh','<p style="margin-bottom: 0in;">\r\n 60" x 600\' Fiberglasss Window Screen Mesh</p>\r\n<p style="margin-bottom: 0in;">\r\n 18 x 16 Insect Screen for window screens.</p>\r\n<p>\r\n Available in Charcoal and Grey</p>\r\n','60" X 600\' Fiberglass Insect Screen Mesh. Wholesale Screening Products','wholesale fiberglass insect screen, fiberglass screen mesh, window screen, window,screen,mesh','wholesale,window,screen,mesh,fiberglass,screen'),(125,1,'Bulk External Corner Locks Box (3500)','<p style="margin-bottom: 0in;">\r\n <strong>CORNER LOCKS EXTERNAL</strong>-&nbsp; 1 BOX (3500)</p>\r\n<p style="margin-bottom: 0in;">\r\n Available in White, Bronze and Mill Finish . These easy to use straight cut corner locks allow you to build your screen using a 90degree cut instead of a 45degree mitre cut. It is made of high strength polypropylene and is a heavy duty corner that will not crack or erode from the elements giving you years of durability. It was designed specifically for our frame and molded in our own facility resulting in savings of time and money for you the customer.</p>\r\n','Plastic External Corner Locks for window screen replacement.','window screen straight cut corner locks replacement screens ','window,screen,external,corner,locks'),(126,1,'Mitre Corner Locks Box (3500)','<p style="margin-bottom: 0in;">\r\n CORNER LOCKS MITRE- Internal corner lock for 5/16†x 3/4â€&nbsp; or 7/16" x 3/4" frame. It is made of high strength polypropylene and is a heavy duty corner that will not crack or erode from the elements giving you years of durability. It was designed specifically for our frame and molded in our own facility resulting in savings of time and money for you the customer.</p>\r\n','Mitre Corner Locks for window screen replacement. Wholesale Manufacturer','Window screen corner locks mitre plastic aluminum screen corners.','Internal window screen corner locks mitre'),(112,1,'Spline Roll .145 (2000 L/F)','<p>\r\n <span style="font-size: 16px;"><strong>Serrated Spline Rubber</strong></span></p>\r\n<p>\r\n <span style="font-size: 16px;"><strong>Thickness: .145</strong></span></p>\r\n<p>\r\n <span style="font-size: 16px;"><strong>Length: 2000 l/f roll</strong></span></p>\r\n<p>\r\n <span style="font-size: 16px;"><strong>Fits: US 1-11 Frame and All other standard 5/16" x 3/4" Screen Frames</strong></span></p>\r\n<p>\r\n <span style="font-size: 16px;"><strong>5 Roll Minimum</strong></span></p>\r\n<p>\r\n &nbsp;</p>\r\n','Window Screen Spline Replacement. 2,000 l/f rolls .145 serrated spline.','serrated smooth window screen rubber spline replacement','window,screen,spline,replacement,rubber,splie,serrated,smooth'),(127,1,' Tension Springs Box (5000)','<p>\r\n <span style="font-size: 16px;"><strong>Tension Springs</strong></span></p>\r\n<p>\r\n <strong>Window Screen Tension Springs</strong></p>\r\n<p>\r\n <strong>Available in No Hole or Regular</strong></p>\r\n<p>\r\n <strong>Made of Aluminum Alloy. </strong></p>\r\n<p>\r\n <strong>5000 per Box</strong></p>\r\n','Wholesale Manufacturer Window Screen Tension Springs 5000 per box.','window screen tension springs no hole plunger springs no drilling','window,screen,tension,spring,replacement,plunger,springs'),(128,1,'Pull Tabs Box (5000)','<p>\r\n <span style="font-size: 14px;"><strong>Window Screen Pull Tabs</strong></span></p>\r\n<p>\r\n <strong>Used in conjunction with tension springs on window screens.</strong></p>\r\n<p>\r\n <strong>For easy removal and insertion of window screens into window frame</strong></p>\r\n<p>\r\n <strong>Placed in spline grove of screen frame opposite of tension springs. (2 per Screen)</strong></p>\r\n<p>\r\n <strong>Material : Nylon or Aluminum</strong></p>\r\n<p>\r\n <strong>Colors : Black or Natural white in plastic , Mill Finish in Aluminum</strong></p>\r\n<p>\r\n <strong>Quantity:&nbsp; 5000</strong></p>\r\n','Aluminum and Plastic Window Screen Pull Tabs. Wholesale Box quanties.','Aluminum,pull tabs,plastic,pull,tabs,window,screen,replacement,hardware,screen','Aluminum,plastic,pull,tabs,window,screen,replacement,tabs'),(64,1,' Custom Sliding Screen Doors','<p style="margin-bottom: 0in;">\r\n <span style="font-size: 14px;"><strong>PATIO SCREEN DOORS-</strong></span> <strong>This Heavy Duty Extruded Aluminum screen door is the ultimate solution for patio sliding doors. Frame is 1†x 2 1/2†aluminum with a wall thickness of .050. This is NO steel roll formed door. Our Deluxe door is reversible and comes standard with our locking handle and keep, heavy gauge fiberglass mesh and 1 1/2†tear away bug strip. Options include colors in White, Bronze, and Mill Finish, Adjustable Plastic or Steel Rollers which are easily replaceable in minutes. Our Doors are custom made in our facility to your specifications with the highest quality of craftsmanship giving you years of hassle free use. This door is fabricated and screened and delivered ready to install.</strong></p>\r\n','Patio Sliding Screen Doors made from Heavy Duty Extruded Aluminum with Adjustable Wheels At the Best Price Guaranteed.','sliding patio screen door, custom screen doors, extruded aluminum patio screen, titan patio door, Screen door, Screen, Door','screen doors,sliding screen door,patio screen door');
1741/*!40000 ALTER TABLE `product_description` ENABLE KEYS */;
1742UNLOCK TABLES;
1743
1744--
1745-- Table structure for table `product_discount`
1746--
1747
1748DROP TABLE IF EXISTS `product_discount`;
1749SET @saved_cs_client = @@character_set_client;
1750SET character_set_client = utf8;
1751CREATE TABLE `product_discount` (
1752 `product_discount_id` int(11) NOT NULL auto_increment,
1753 `product_id` int(11) NOT NULL,
1754 `customer_group_id` int(11) NOT NULL,
1755 `quantity` int(4) NOT NULL default '0',
1756 `priority` int(5) NOT NULL default '1',
1757 `price` decimal(15,4) NOT NULL default '0.0000',
1758 `date_start` date NOT NULL default '0000-00-00',
1759 `date_end` date NOT NULL default '0000-00-00',
1760 PRIMARY KEY (`product_discount_id`),
1761 KEY `product_id` (`product_id`)
1762) ENGINE=MyISAM AUTO_INCREMENT=1721 DEFAULT CHARSET=utf8 COLLATE=utf8_bin;
1763SET character_set_client = @saved_cs_client;
1764
1765--
1766-- Dumping data for table `product_discount`
1767--
1768
1769LOCK TABLES `product_discount` WRITE;
1770/*!40000 ALTER TABLE `product_discount` DISABLE KEYS */;
1771INSERT INTO `product_discount` VALUES (735,51,1,1500,5,'1.5000','0000-00-00','0000-00-00'),(734,51,1,1000,4,'1.7500','0000-00-00','0000-00-00'),(733,51,1,500,3,'2.0000','0000-00-00','0000-00-00'),(732,51,1,250,2,'2.2500','0000-00-00','0000-00-00'),(731,51,1,50,1,'2.5000','0000-00-00','0000-00-00'),(740,52,1,1500,5,'1.5000','0000-00-00','0000-00-00'),(739,52,1,1000,4,'1.7500','0000-00-00','0000-00-00'),(738,52,1,500,3,'2.0000','0000-00-00','0000-00-00'),(737,52,1,250,2,'2.2500','0000-00-00','0000-00-00'),(736,52,1,50,1,'2.5000','0000-00-00','0000-00-00'),(760,53,1,1500,5,'1.5000','0000-00-00','0000-00-00'),(759,53,1,1000,4,'1.7500','0000-00-00','0000-00-00'),(758,53,1,500,3,'2.0000','0000-00-00','0000-00-00'),(757,53,1,250,2,'2.2500','0000-00-00','0000-00-00'),(756,53,1,50,1,'2.5000','0000-00-00','0000-00-00'),(1580,54,1,1500,5,'1.7200','0000-00-00','0000-00-00'),(1579,54,1,1000,4,'1.9200','0000-00-00','0000-00-00'),(1578,54,1,500,3,'2.2500','0000-00-00','0000-00-00'),(1577,54,1,250,2,'2.5000','0000-00-00','0000-00-00'),(1576,54,1,50,1,'2.7500','0000-00-00','0000-00-00'),(745,55,1,1500,5,'1.7200','0000-00-00','0000-00-00'),(744,55,1,1000,4,'1.9200','0000-00-00','0000-00-00'),(743,55,1,500,3,'2.2500','0000-00-00','0000-00-00'),(742,55,1,250,2,'2.5000','0000-00-00','0000-00-00'),(741,55,1,50,1,'2.7500','0000-00-00','0000-00-00'),(765,56,1,1500,5,'1.7200','0000-00-00','0000-00-00'),(764,56,1,1000,4,'1.9200','0000-00-00','0000-00-00'),(763,56,1,500,3,'2.2500','0000-00-00','0000-00-00'),(762,56,1,250,2,'2.5000','0000-00-00','0000-00-00'),(761,56,1,50,1,'2.7500','0000-00-00','0000-00-00'),(1229,58,1,1000,4,'0.1200','0000-00-00','0000-00-00'),(1228,58,1,500,3,'0.1500','0000-00-00','0000-00-00'),(1227,58,1,250,2,'0.2500','0000-00-00','0000-00-00'),(1226,58,1,50,1,'0.3800','0000-00-00','0000-00-00'),(1661,59,1,3500,4,'0.0850','0000-00-00','0000-00-00'),(1660,59,1,1000,3,'0.1200','0000-00-00','0000-00-00'),(1659,59,1,500,2,'0.1800','0000-00-00','0000-00-00'),(1658,59,1,250,1,'0.2500','0000-00-00','0000-00-00'),(1657,59,1,50,0,'0.3000','0000-00-00','0000-00-00'),(1204,60,1,5000,5,'0.0800','0000-00-00','0000-00-00'),(1203,60,1,1000,4,'0.1200','0000-00-00','0000-00-00'),(1202,60,1,500,3,'0.1500','0000-00-00','0000-00-00'),(1201,60,1,250,2,'0.2000','0000-00-00','0000-00-00'),(1200,60,1,50,1,'0.2500','0000-00-00','0000-00-00'),(1225,61,1,1000,4,'0.1200','0000-00-00','0000-00-00'),(1224,61,1,500,3,'0.1500','0000-00-00','0000-00-00'),(1223,61,1,250,2,'0.2500','0000-00-00','0000-00-00'),(1222,61,1,50,1,'0.3800','0000-00-00','0000-00-00'),(1720,63,1,0,0,'0.0000','0000-00-00','0000-00-00'),(880,66,1,5,2,'26.0000','0000-00-00','0000-00-00'),(879,66,1,3,1,'29.0000','0000-00-00','0000-00-00'),(912,67,1,5,2,'35.0000','0000-00-00','0000-00-00'),(911,67,1,3,1,'38.0000','0000-00-00','0000-00-00'),(1239,68,1,5,2,'40.0000','0000-00-00','0000-00-00'),(1238,68,1,3,1,'43.0000','0000-00-00','0000-00-00'),(916,69,1,5,0,'56.0000','0000-00-00','0000-00-00'),(915,69,1,3,0,'58.0000','0000-00-00','0000-00-00'),(920,70,1,5,2,'69.0000','0000-00-00','0000-00-00'),(919,70,1,3,1,'72.0000','0000-00-00','0000-00-00'),(922,71,1,5,2,'83.0000','0000-00-00','0000-00-00'),(921,71,1,3,1,'86.0000','0000-00-00','0000-00-00'),(924,72,1,5,2,'99.0000','0000-00-00','0000-00-00'),(923,72,1,3,1,'102.0000','0000-00-00','0000-00-00'),(881,75,1,3,1,'51.5000','0000-00-00','0000-00-00'),(882,75,1,5,2,'49.0000','0000-00-00','0000-00-00'),(888,76,1,5,0,'63.5000','0000-00-00','0000-00-00'),(887,76,1,3,0,'66.0000','0000-00-00','0000-00-00'),(889,77,1,3,1,'79.0000','0000-00-00','0000-00-00'),(890,77,1,5,2,'77.0000','0000-00-00','0000-00-00'),(925,78,1,3,0,'92.5000','0000-00-00','0000-00-00'),(926,78,1,5,0,'89.7500','0000-00-00','0000-00-00'),(930,79,1,5,2,'146.5000','0000-00-00','0000-00-00'),(929,79,1,3,1,'149.0000','0000-00-00','0000-00-00'),(1010,80,1,5,0,'59.0000','0000-00-00','0000-00-00'),(1009,80,1,3,0,'62.0000','0000-00-00','0000-00-00'),(1008,81,1,5,0,'69.7500','0000-00-00','0000-00-00'),(1007,81,1,3,0,'72.0000','0000-00-00','0000-00-00'),(1014,83,1,5,2,'105.0000','0000-00-00','0000-00-00'),(1013,83,1,3,1,'107.0000','0000-00-00','0000-00-00'),(1012,82,1,5,2,'84.0000','0000-00-00','0000-00-00'),(1011,82,1,3,1,'86.5000','0000-00-00','0000-00-00'),(1016,84,1,5,2,'122.0000','0000-00-00','0000-00-00'),(1015,84,1,3,1,'125.0000','0000-00-00','0000-00-00'),(963,85,1,3,1,'143.0000','0000-00-00','0000-00-00'),(964,85,1,5,2,'139.0000','0000-00-00','0000-00-00'),(1434,91,1,10,3,'36.0000','0000-00-00','0000-00-00'),(1449,89,1,10,3,'7.9500','0000-00-00','0000-00-00'),(1018,87,1,5,2,'152.0000','0000-00-00','0000-00-00'),(1017,87,1,3,1,'156.0000','0000-00-00','0000-00-00'),(1448,89,1,5,2,'8.5000','0000-00-00','0000-00-00'),(1447,89,1,3,1,'9.0000','0000-00-00','0000-00-00'),(1433,91,1,5,2,'39.0000','0000-00-00','0000-00-00'),(1443,90,1,10,3,'8.9900','0000-00-00','0000-00-00'),(1442,90,1,5,2,'9.5000','0000-00-00','0000-00-00'),(1441,90,1,3,1,'9.9900','0000-00-00','0000-00-00'),(1446,74,1,10,3,'7.5000','0000-00-00','0000-00-00'),(1445,74,1,5,2,'7.7500','0000-00-00','0000-00-00'),(1444,74,1,3,1,'8.2500','0000-00-00','0000-00-00'),(1432,91,1,3,1,'42.0000','0000-00-00','0000-00-00'),(1431,92,1,10,3,'33.0000','0000-00-00','0000-00-00'),(1430,92,1,5,2,'36.0000','0000-00-00','0000-00-00'),(1429,92,1,3,1,'39.0000','0000-00-00','0000-00-00'),(1437,93,1,10,3,'39.0000','0000-00-00','0000-00-00'),(1436,93,1,5,2,'41.0000','0000-00-00','0000-00-00'),(1435,93,1,3,1,'45.0000','0000-00-00','0000-00-00'),(1440,94,1,10,3,'45.0000','0000-00-00','0000-00-00'),(1439,94,1,5,2,'48.0000','0000-00-00','0000-00-00'),(1438,94,1,3,1,'51.0000','0000-00-00','0000-00-00'),(1545,95,1,200,5,'1.9500','0000-00-00','0000-00-00'),(1544,95,1,100,4,'2.0000','0000-00-00','0000-00-00'),(1543,95,1,50,3,'2.1000','0000-00-00','0000-00-00'),(1542,95,1,25,2,'2.1500','0000-00-00','0000-00-00'),(1541,95,1,10,1,'2.2000','0000-00-00','0000-00-00'),(1194,97,1,1000,6,'0.1200','0000-00-00','0000-00-00'),(1193,97,1,500,5,'0.1400','0000-00-00','0000-00-00'),(1192,97,1,250,4,'0.1600','0000-00-00','0000-00-00'),(1191,97,1,100,3,'0.1800','0000-00-00','0000-00-00'),(1190,97,1,50,2,'0.2000','0000-00-00','0000-00-00'),(1189,97,1,25,1,'0.2200','0000-00-00','0000-00-00'),(1211,98,1,1000,6,'0.1800','0000-00-00','0000-00-00'),(1210,98,1,500,5,'0.2000','0000-00-00','0000-00-00'),(1209,98,1,250,4,'0.2400','0000-00-00','0000-00-00'),(1208,98,1,100,3,'0.2800','0000-00-00','0000-00-00'),(1207,98,1,50,2,'0.3200','0000-00-00','0000-00-00'),(1206,98,1,25,1,'0.3600','0000-00-00','0000-00-00'),(1205,98,1,0,0,'0.0000','0000-00-00','0000-00-00'),(1230,99,1,25,1,'0.4800','0000-00-00','0000-00-00'),(1231,99,1,50,2,'0.4400','0000-00-00','0000-00-00'),(1232,99,1,100,3,'0.4000','0000-00-00','0000-00-00'),(1233,99,1,250,4,'0.3400','0000-00-00','0000-00-00'),(1234,99,1,500,5,'0.3000','0000-00-00','0000-00-00'),(1235,99,1,1000,6,'0.2400','0000-00-00','0000-00-00'),(1300,100,1,100,4,'4.9500','0000-00-00','0000-00-00'),(1299,100,1,50,3,'5.9500','0000-00-00','0000-00-00'),(1298,100,1,25,2,'6.9500','0000-00-00','0000-00-00'),(1297,100,1,10,1,'8.5000','0000-00-00','0000-00-00'),(1305,101,1,500,5,'2.9500','0000-00-00','0000-00-00'),(1304,101,1,100,4,'3.5000','0000-00-00','0000-00-00'),(1303,101,1,50,3,'3.9500','0000-00-00','0000-00-00'),(1302,101,1,25,2,'4.9500','0000-00-00','0000-00-00'),(1301,101,1,10,1,'5.7500','0000-00-00','0000-00-00'),(1461,102,1,1000,6,'1.7500','0000-00-00','0000-00-00'),(1460,102,1,500,5,'2.2500','0000-00-00','0000-00-00'),(1459,102,1,100,4,'2.5000','0000-00-00','0000-00-00'),(1458,102,1,48,3,'2.7500','0000-00-00','0000-00-00'),(1457,102,1,24,2,'3.0000','0000-00-00','0000-00-00'),(1456,102,1,12,1,'3.2500','0000-00-00','0000-00-00'),(1392,103,1,1000,4,'0.7900','0000-00-00','0000-00-00'),(1391,103,1,500,3,'0.8500','0000-00-00','0000-00-00'),(1390,103,1,100,2,'0.9800','0000-00-00','0000-00-00'),(1389,103,1,25,1,'1.1500','0000-00-00','0000-00-00'),(1328,104,1,500,4,'0.1200','0000-00-00','0000-00-00'),(1327,104,1,100,3,'0.1500','0000-00-00','0000-00-00'),(1326,104,1,50,2,'0.1800','0000-00-00','0000-00-00'),(1325,104,1,25,1,'0.2000','0000-00-00','0000-00-00'),(1383,105,1,500,5,'2.5000','0000-00-00','0000-00-00'),(1382,105,1,250,4,'2.8500','0000-00-00','0000-00-00'),(1381,105,1,100,3,'2.9500','0000-00-00','0000-00-00'),(1380,105,1,50,2,'3.1500','0000-00-00','0000-00-00'),(1379,105,1,24,1,'3.2500','0000-00-00','0000-00-00'),(1373,106,1,100,5,'10.0000','0000-00-00','0000-00-00'),(1372,106,1,50,4,'13.0000','0000-00-00','0000-00-00'),(1371,106,1,25,3,'14.0000','0000-00-00','0000-00-00'),(1370,106,1,10,2,'15.0000','0000-00-00','0000-00-00'),(1369,106,1,5,1,'16.0000','0000-00-00','0000-00-00'),(1425,107,1,250,5,'1.7500','0000-00-00','0000-00-00'),(1424,107,1,100,4,'1.8500','0000-00-00','0000-00-00'),(1423,107,1,50,3,'1.9500','0000-00-00','0000-00-00'),(1422,107,1,25,2,'2.0500','0000-00-00','0000-00-00'),(1421,107,1,10,1,'2.1500','0000-00-00','0000-00-00'),(1388,108,1,250,5,'8.5000','0000-00-00','0000-00-00'),(1387,108,1,100,4,'10.0000','0000-00-00','0000-00-00'),(1386,108,1,50,3,'11.5000','0000-00-00','0000-00-00'),(1385,108,1,25,2,'12.0000','0000-00-00','0000-00-00'),(1384,108,1,10,1,'13.5000','0000-00-00','0000-00-00'),(1393,109,1,5,1,'39.0000','0000-00-00','0000-00-00'),(1394,109,1,10,2,'36.0000','0000-00-00','0000-00-00'),(1395,109,1,15,3,'33.0000','0000-00-00','0000-00-00'),(1396,109,1,25,4,'29.0000','0000-00-00','0000-00-00'),(1397,110,1,10,1,'8.2500','0000-00-00','0000-00-00'),(1398,110,1,25,2,'7.9500','0000-00-00','0000-00-00'),(1399,110,1,50,3,'6.7500','0000-00-00','0000-00-00'),(1618,111,1,100,0,'285.0000','0000-00-00','0000-00-00'),(1617,111,1,50,0,'315.0000','0000-00-00','0000-00-00'),(1616,111,1,25,0,'325.0000','0000-00-00','0000-00-00'),(1615,111,1,10,0,'345.0000','0000-00-00','0000-00-00'),(1614,111,1,5,0,'350.0000','0000-00-00','0000-00-00'),(1700,112,1,100,3,'23.5000','0000-00-00','0000-00-00'),(1699,112,1,50,2,'25.0000','0000-00-00','0000-00-00'),(1698,112,1,20,1,'27.0000','0000-00-00','0000-00-00'),(1477,114,1,50,4,'8.5000','0000-00-00','0000-00-00'),(1476,114,1,25,3,'9.0000','0000-00-00','0000-00-00'),(1475,114,1,15,2,'11.0000','0000-00-00','0000-00-00'),(1474,114,1,5,1,'13.0000','0000-00-00','0000-00-00'),(1623,117,1,100,5,'338.0000','0000-00-00','0000-00-00'),(1622,117,1,50,4,'345.0000','0000-00-00','0000-00-00'),(1621,117,1,25,3,'355.0000','0000-00-00','0000-00-00'),(1620,117,1,10,2,'368.0000','0000-00-00','0000-00-00'),(1619,117,1,5,1,'378.0000','0000-00-00','0000-00-00'),(1550,118,1,100,5,'2.4000','0000-00-00','0000-00-00'),(1549,118,1,50,4,'2.4500','0000-00-00','0000-00-00'),(1548,118,1,25,3,'2.5000','0000-00-00','0000-00-00'),(1547,118,1,10,2,'2.5500','0000-00-00','0000-00-00'),(1546,118,1,5,1,'2.6000','0000-00-00','0000-00-00'),(1581,119,1,10,1,'8.9500','0000-00-00','0000-00-00'),(1582,119,1,25,2,'8.7500','0000-00-00','0000-00-00'),(1583,119,1,50,3,'8.5000','0000-00-00','0000-00-00'),(1635,120,1,50,3,'89.0000','0000-00-00','0000-00-00'),(1634,120,1,25,2,'92.0000','0000-00-00','0000-00-00'),(1633,120,1,10,1,'95.0000','0000-00-00','0000-00-00'),(1638,121,1,50,3,'111.0000','0000-00-00','0000-00-00'),(1637,121,1,25,2,'118.0000','0000-00-00','0000-00-00'),(1636,121,1,10,1,'122.0000','0000-00-00','0000-00-00'),(1641,122,1,50,3,'174.0000','0000-00-00','0000-00-00'),(1640,122,1,25,2,'182.0000','0000-00-00','0000-00-00'),(1639,122,1,10,1,'188.0000','0000-00-00','0000-00-00'),(1624,123,1,10,1,'248.0000','0000-00-00','0000-00-00'),(1625,123,1,25,2,'238.0000','0000-00-00','0000-00-00'),(1626,123,1,50,3,'228.0000','0000-00-00','0000-00-00'),(1653,124,1,50,3,'294.0000','0000-00-00','0000-00-00'),(1652,124,1,25,2,'305.0000','0000-00-00','0000-00-00'),(1651,124,1,10,1,'312.0000','0000-00-00','0000-00-00'),(1688,125,1,10,3,'235.0000','0000-00-00','0000-00-00'),(1687,125,1,5,2,'262.0000','0000-00-00','0000-00-00'),(1686,125,1,3,1,'280.0000','0000-00-00','0000-00-00'),(1682,126,1,10,3,'229.0000','0000-00-00','0000-00-00'),(1681,126,1,5,2,'258.0000','0000-00-00','0000-00-00'),(1680,126,1,3,1,'275.0000','0000-00-00','0000-00-00'),(1709,127,1,15,3,'345.0000','0000-00-00','0000-00-00'),(1708,127,1,10,2,'360.0000','0000-00-00','0000-00-00'),(1707,127,1,5,1,'370.0000','0000-00-00','0000-00-00'),(1719,128,1,20,3,'198.0000','0000-00-00','0000-00-00'),(1718,128,1,10,2,'225.0000','0000-00-00','0000-00-00'),(1717,128,1,5,1,'240.0000','0000-00-00','0000-00-00');
1772/*!40000 ALTER TABLE `product_discount` ENABLE KEYS */;
1773UNLOCK TABLES;
1774
1775--
1776-- Table structure for table `product_image`
1777--
1778
1779DROP TABLE IF EXISTS `product_image`;
1780SET @saved_cs_client = @@character_set_client;
1781SET character_set_client = utf8;
1782CREATE TABLE `product_image` (
1783 `product_image_id` int(11) NOT NULL auto_increment,
1784 `product_id` int(11) NOT NULL,
1785 `image` varchar(255) collate utf8_bin default NULL,
1786 `sort_order` int(3) NOT NULL default '0',
1787 PRIMARY KEY (`product_image_id`)
1788) ENGINE=MyISAM AUTO_INCREMENT=2787 DEFAULT CHARSET=utf8 COLLATE=utf8_bin;
1789SET character_set_client = @saved_cs_client;
1790
1791--
1792-- Dumping data for table `product_image`
1793--
1794
1795LOCK TABLES `product_image` WRITE;
1796/*!40000 ALTER TABLE `product_image` DISABLE KEYS */;
1797INSERT INTO `product_image` VALUES (2634,94,'data/sliding-screen-door-white.jpg',2),(2633,94,'data/Top Hung Bracket.jpg',4),(2631,94,'data/steel-wheel-roller.jpg',3),(2630,93,'data/steel-wheel-roller.jpg',0),(2628,93,'data/Screen-Door-Frame-mill.jpg',0),(2629,93,'data/sliding-screen-door-white.jpg',0),(2579,58,'data/No-Hole-Tension-Spring-2.gif',0),(2637,74,'data/corner-lock-white-straight-cut.png',2),(2636,74,'data/Screen-Frame-Colors.jpg',1),(2627,93,'data/Top Hung Bracket.jpg',0),(2741,59,'data/corner-lock-white-straight-cut.png',1),(2740,59,'data/corner-lock-bronze.jpg',2),(2786,64,'data/Patio-doors-1255.jpg',0),(2784,63,'data/screens.jpg',0),(2428,66,'data/Charcoal-Screen-Mesh.jpg',0),(2584,68,'no_image.jpg',0),(2433,69,'data/Charcoal-Screen-Mesh.jpg',0),(2459,80,'data/screen mesh.jpg',0),(2458,81,'data/screen mesh.jpg',0),(2460,83,'data/screen mesh.jpg',0),(2461,84,'data/screen mesh.jpg',0),(2446,85,'data/screen mesh.jpg',0),(2635,74,'data/white-frame.png',3),(2462,87,'no_image.jpg',0),(2626,91,'data/sliding-screen-door-white.jpg',1),(2388,53,'data/eave-soffit-vent.jpg',1),(2386,57,'data/eave-soffit-vent.jpg',2),(2381,51,'data/eave-soffit-vent.jpg',1),(2703,54,'data/eave-soffit-vent.jpg',1),(2382,52,'data/eave-soffit-vent.jpg',1),(2383,55,'data/eave-soffit-vent.jpg',1),(2389,56,'data/eave-soffit-vent.jpg',1),(2387,57,'data/Soffit-Vent-4inch.jpg',1),(2625,91,'data/Screen-Door-Frame-mill.jpg',2),(2624,91,'data/Top Hung Bracket.jpg',3),(2623,91,'data/steel-wheel-roller.jpg',0),(2622,92,'data/sliding-screen-door-white.jpg',0),(2619,92,'data/Screen-Door-W-Roller_edited-1.jpg',0),(2620,92,'data/Screen-Door-Frame-mill.jpg',0),(2621,92,'data/Top Hung Bracket.jpg',0),(2632,94,'data/Screen-Door-Frame-mill.jpg',1),(2683,95,'data/Spline in Frame.jpg',0),(2681,95,'data/white-frame.png',0),(2682,95,'data/mill-finished-(silver)-frame.png',0),(2582,96,'data/Spline-roll-1.jpg',0),(2571,97,'data/White-Plastic-Pull-Tab.jpg',0),(2570,97,'data/Black-Plactic-Pull-Tab.jpg',0),(2641,102,'data/steel-wheel-roller.jpg',0),(2640,102,'data/Screen-Door-W-Roller_edited-1.jpg',0),(2607,103,'data/adjustment-screw-in-door.jpg',0),(2606,106,'data/Top-Hung-Bracket-Profile.jpg',0),(2605,106,'data/Top-Hung-Roller-Wheel1.jpg',0),(2616,107,'data/Top-Hung-Roller-Profile.jpg',2),(2723,111,'data/Spline in Frame.jpg',3),(2722,111,'data/Screen-Frame-Profile.jpg',4),(2721,111,'data/Screen-Frame-Colors.jpg',2),(2768,112,'data/Spline in Frame.jpg',0),(2615,107,'data/Top Hung Bracket.jpg',0),(2769,112,'data/bulk-spline.jpg',0),(2642,114,'data/closer-kit.jpg',0),(2643,114,'data/Pool and patio door closure kit.jpg',0),(2719,115,'data/Screen-Frame-Colors.jpg',0),(2718,115,'data/Screen-Frame-Profile.jpg',0),(2720,111,'data/Aluminum-Coil.jpg',5),(2724,116,'data/screen-frame-profile.jpg',0),(2725,117,'data/screen-frame-profile.jpg',0),(2684,118,'data/screen-frame-profile.jpg',0),(2704,119,'data/patio screen.jpg',0),(2730,120,'data/screen-rolls.jpg',0),(2731,121,'data/600-ft-roll-screen-mesh.jpg',0),(2733,122,'data/screen-mesh-pallet.jpg',0),(2726,123,'data/screen-mesh-pallet.jpg',0),(2732,122,'data/screen-rolls.jpg',0),(2737,124,'data/600-ft-roll-screen-mesh.jpg',0),(2759,125,'data/corner-lock-white-straight-cut.png',0),(2760,125,'data/corner-lock-gray-straight-cut-2.png',0),(2761,125,'data/corner-lock-bronze.jpg',0),(2755,126,'data/mitre-corner-lock.jpg',0),(2775,127,'data/tension-spring100.jpg',0),(2774,127,'data/Tension-Spring.gif',0),(2783,128,'data/White-Plastic-Pull-Tab.jpg',0),(2782,128,'data/Aluminum-Corner-Locks.jpg',0),(2781,128,'data/Black-Plactic-Pull-Tab.jpg',0);
1798/*!40000 ALTER TABLE `product_image` ENABLE KEYS */;
1799UNLOCK TABLES;
1800
1801--
1802-- Table structure for table `product_option`
1803--
1804
1805DROP TABLE IF EXISTS `product_option`;
1806SET @saved_cs_client = @@character_set_client;
1807SET character_set_client = utf8;
1808CREATE TABLE `product_option` (
1809 `product_option_id` int(11) NOT NULL auto_increment,
1810 `product_id` int(11) NOT NULL,
1811 `option_id` int(11) NOT NULL,
1812 `option_value` text collate utf8_bin NOT NULL,
1813 `required` tinyint(1) NOT NULL,
1814 PRIMARY KEY (`product_option_id`)
1815) ENGINE=MyISAM AUTO_INCREMENT=369 DEFAULT CHARSET=utf8 COLLATE=utf8_bin;
1816SET character_set_client = @saved_cs_client;
1817
1818--
1819-- Dumping data for table `product_option`
1820--
1821
1822LOCK TABLES `product_option` WRITE;
1823/*!40000 ALTER TABLE `product_option` DISABLE KEYS */;
1824INSERT INTO `product_option` VALUES (263,63,24,'',1),(265,63,26,'',1),(242,59,13,'',1),(264,63,25,'',1),(241,57,15,'',1),(240,57,14,'',1),(237,57,17,'',1),(235,57,16,'',1),(261,63,23,'',1),(260,63,14,'',1),(253,63,19,'',1),(245,63,17,'',1),(244,63,18,'',1),(367,64,31,'',0),(251,64,14,'',1),(252,64,22,'',1),(249,64,21,'',1),(243,63,16,'',1),(267,67,15,'',1),(273,67,28,'',0),(268,66,28,'',0),(269,68,15,'',1),(270,68,28,'',1),(266,66,27,'',1),(274,69,15,'',1),(275,69,28,'',1),(276,70,15,'',1),(277,70,28,'',1),(278,71,15,'',1),(279,71,28,'',1),(280,72,15,'',1),(281,72,28,'',1),(282,73,15,'',1),(283,73,28,'',0),(286,74,26,'',1),(284,74,15,'',1),(285,74,23,'',1),(287,74,14,'',1),(288,75,15,'',1),(289,76,15,'',1),(290,77,15,'',1),(291,78,15,'',1),(292,79,15,'',1),(293,80,15,'',1),(294,81,15,'',1),(295,82,15,'',1),(296,83,15,'',1),(297,84,15,'',1),(298,85,15,'',1),(299,85,28,'',1),(315,90,26,'',1),(314,89,26,'',1),(302,87,15,'',1),(303,87,28,'',0),(318,90,15,'',1),(309,80,28,'',0),(310,81,28,'',0),(311,82,28,'',0),(312,83,28,'',0),(313,84,28,'',0),(316,89,15,'',1),(308,90,23,'',1),(317,89,23,'',1),(306,89,14,'',1),(307,90,14,'',1),(321,91,31,'',0),(320,91,15,'',1),(319,91,14,'',1),(322,91,22,'',1),(326,92,31,'',0),(325,92,15,'',1),(324,92,14,'',1),(323,92,22,'',1),(330,93,31,'',0),(329,93,15,'',1),(328,93,14,'',1),(327,93,22,'',1),(331,92,32,'',0),(332,91,32,'',0),(333,93,32,'',0),(337,94,31,'',0),(336,94,15,'',1),(335,94,14,'',1),(334,94,22,'',1),(338,94,32,'',0),(339,95,14,'',1),(340,96,33,'',1),(341,96,34,'',1),(342,97,35,'',1),(343,102,37,'',1),(345,106,14,'',1),(344,106,38,'',1),(347,108,14,'',1),(348,111,14,'',1),(365,112,40,'',1),(350,113,33,'',1),(351,114,14,'',1),(352,115,14,'',1),(353,116,14,'',1),(354,117,14,'',1),(355,118,14,'',1),(356,119,14,'',1),(357,120,27,'',1),(358,121,15,'',1),(359,123,15,'',1),(360,122,15,'',1),(361,124,15,'',1),(362,125,13,'',1),(363,125,39,'',1),(364,126,39,'',1),(366,127,41,'',1),(250,64,20,'',1),(368,128,24,'',1);
1825/*!40000 ALTER TABLE `product_option` ENABLE KEYS */;
1826UNLOCK TABLES;
1827
1828--
1829-- Table structure for table `product_option_value`
1830--
1831
1832DROP TABLE IF EXISTS `product_option_value`;
1833SET @saved_cs_client = @@character_set_client;
1834SET character_set_client = utf8;
1835CREATE TABLE `product_option_value` (
1836 `product_option_value_id` int(11) NOT NULL auto_increment,
1837 `product_option_id` int(11) NOT NULL,
1838 `product_id` int(11) NOT NULL,
1839 `option_id` int(11) NOT NULL,
1840 `option_value_id` int(11) NOT NULL,
1841 `quantity` int(3) NOT NULL,
1842 `subtract` tinyint(1) NOT NULL,
1843 `price` decimal(15,4) NOT NULL,
1844 `price_prefix` varchar(1) collate utf8_bin NOT NULL,
1845 `points` int(8) NOT NULL,
1846 `points_prefix` varchar(1) collate utf8_bin NOT NULL,
1847 `weight` decimal(15,8) NOT NULL,
1848 `weight_prefix` varchar(1) collate utf8_bin NOT NULL,
1849 PRIMARY KEY (`product_option_value_id`)
1850) ENGINE=MyISAM AUTO_INCREMENT=825 DEFAULT CHARSET=utf8 COLLATE=utf8_bin;
1851SET character_set_client = @saved_cs_client;
1852
1853--
1854-- Dumping data for table `product_option_value`
1855--
1856
1857LOCK TABLES `product_option_value` WRITE;
1858/*!40000 ALTER TABLE `product_option_value` DISABLE KEYS */;
1859INSERT INTO `product_option_value` VALUES (625,282,73,15,56,0,0,'0.0000','+',0,'+','0.00000000','+'),(624,282,73,15,55,0,0,'0.0000','+',0,'+','0.00000000','+'),(627,283,73,28,282,0,1,'44.0000','-',0,'+','0.00000000','+'),(626,283,73,28,281,0,1,'55.0000','-',0,'+','0.00000000','+'),(621,280,72,15,56,0,0,'0.0000','+',0,'+','0.00000000','+'),(620,280,72,15,55,0,0,'0.0000','+',0,'+','0.00000000','+'),(623,281,72,28,282,0,0,'35.0000','-',0,'+','0.00000000','+'),(622,281,72,28,281,0,0,'44.0000','-',0,'+','0.00000000','+'),(617,278,71,15,56,0,0,'0.0000','+',0,'+','0.00000000','+'),(616,278,71,15,55,0,0,'0.0000','+',0,'+','0.00000000','+'),(619,279,71,28,282,0,0,'28.0000','-',0,'+','0.00000000','+'),(618,279,71,28,281,0,0,'38.0000','-',0,'+','0.00000000','+'),(615,277,70,28,282,0,0,'25.0000','-',0,'+','0.00000000','+'),(614,277,70,28,281,0,0,'40.0000','-',0,'+','0.00000000','+'),(611,274,69,15,56,0,0,'0.0000','+',0,'+','0.00000000','+'),(610,274,69,15,55,0,0,'0.0000','+',0,'+','0.00000000','+'),(613,275,69,28,282,0,0,'22.0000','-',0,'+','0.00000000','+'),(612,275,69,28,281,0,0,'31.0000','-',0,'+','0.00000000','+'),(597,267,67,15,56,0,0,'0.0000','+',0,'+','0.00000000','+'),(596,267,67,15,55,0,0,'0.0000','+',0,'+','0.00000000','+'),(601,269,68,15,56,0,0,'0.0000','+',0,'+','0.00000000','+'),(600,269,68,15,55,0,0,'0.0000','+',0,'+','0.00000000','+'),(603,270,68,28,282,0,0,'15.0000','-',0,'+','0.00000000','+'),(602,270,68,28,281,0,0,'20.0000','-',0,'+','0.00000000','+'),(599,268,66,28,282,0,0,'10.0000','-',0,'+','0.00000000','+'),(598,268,66,28,281,0,0,'12.0000','-',0,'+','0.00000000','+'),(609,273,67,28,282,0,0,'12.0000','-',0,'+','0.00000000','+'),(608,273,67,28,281,0,0,'18.0000','-',0,'+','0.00000000','+'),(595,266,66,27,280,0,0,'0.0000','+',0,'+','0.00000000','+'),(594,266,66,27,279,0,0,'0.0000','+',0,'+','0.00000000','+'),(593,263,63,24,272,0,0,'0.0000','+',0,'+','0.00000000','+'),(586,263,63,24,271,0,0,'1.0000','+',0,'+','0.00000000','+'),(109,241,57,15,56,0,0,'0.0000','+',0,'+','0.00000000','+'),(108,241,57,15,55,0,0,'0.0000','+',0,'+','0.00000000','+'),(107,240,57,14,54,0,0,'0.0000','+',0,'+','0.00000000','+'),(106,240,57,14,53,0,0,'0.0000','+',0,'+','0.00000000','+'),(105,240,57,14,52,0,0,'0.0000','+',0,'+','0.00000000','+'),(384,237,57,17,159,0,0,'6.0000','+',0,'+','0.00000000','+'),(383,237,57,17,158,0,0,'5.9000','+',0,'+','0.00000000','+'),(382,237,57,17,157,0,0,'5.8000','+',0,'+','0.00000000','+'),(381,237,57,17,156,0,0,'5.7000','+',0,'+','0.00000000','+'),(380,237,57,17,155,0,0,'5.6000','+',0,'+','0.00000000','+'),(379,237,57,17,154,0,0,'5.5000','+',0,'+','0.00000000','+'),(378,237,57,17,153,0,0,'5.4000','+',0,'+','0.00000000','+'),(377,237,57,17,152,0,0,'5.3000','+',0,'+','0.00000000','+'),(376,237,57,17,151,0,0,'5.2000','+',0,'+','0.00000000','+'),(375,237,57,17,150,0,0,'5.1000','+',0,'+','0.00000000','+'),(374,237,57,17,149,0,0,'5.0000','+',0,'+','0.00000000','+'),(373,237,57,17,148,0,0,'4.9000','+',0,'+','0.00000000','+'),(372,237,57,17,147,0,0,'4.8000','+',0,'+','0.00000000','+'),(371,237,57,17,146,0,0,'4.7000','+',0,'+','0.00000000','+'),(370,237,57,17,145,0,0,'4.6000','+',0,'+','0.00000000','+'),(369,237,57,17,144,0,0,'4.5000','+',0,'+','0.00000000','+'),(368,237,57,17,143,0,0,'4.4000','+',0,'+','0.00000000','+'),(367,237,57,17,142,0,0,'4.3000','+',0,'+','0.00000000','+'),(366,237,57,17,141,0,0,'4.2000','+',0,'+','0.00000000','+'),(365,237,57,17,140,0,0,'4.1000','+',0,'+','0.00000000','+'),(114,242,59,13,51,0,0,'0.0000','+',0,'+','0.00000000','+'),(113,242,59,13,50,0,0,'0.0000','+',0,'+','0.00000000','+'),(112,242,59,13,49,0,0,'0.0000','+',0,'+','0.00000000','+'),(585,263,63,24,270,0,0,'0.0000','+',0,'+','0.00000000','+'),(592,265,63,26,278,0,0,'0.0000','+',0,'+','0.00000000','+'),(591,265,63,26,277,0,0,'0.0000','+',0,'+','0.00000000','+'),(590,265,63,26,276,0,0,'0.0000','+',0,'+','0.00000000','+'),(589,264,63,25,275,0,0,'0.0000','+',0,'+','0.00000000','+'),(587,264,63,25,274,0,0,'0.0000','+',0,'+','0.00000000','+'),(588,264,63,25,273,0,0,'0.0000','+',0,'+','0.00000000','+'),(403,261,63,23,268,0,0,'0.0000','+',0,'+','0.00000000','+'),(404,261,63,23,269,0,0,'0.7500','+',0,'+','0.00000000','+'),(401,260,63,14,54,0,0,'0.5000','+',0,'+','0.00000000','+'),(400,260,63,14,53,0,0,'0.5000','+',0,'+','0.00000000','+'),(402,260,63,14,52,0,0,'0.0000','+',0,'+','0.00000000','+'),(582,253,63,19,106,0,0,'0.0000','+',0,'+','0.00000000','+'),(581,253,63,19,105,0,0,'0.0000','+',0,'+','0.00000000','+'),(580,253,63,19,104,0,0,'0.0000','+',0,'+','0.00000000','+'),(579,253,63,19,103,0,0,'0.0000','+',0,'+','0.00000000','+'),(578,253,63,19,102,0,0,'0.0000','+',0,'+','0.00000000','+'),(577,253,63,19,101,0,0,'0.0000','+',0,'+','0.00000000','+'),(576,253,63,19,100,0,0,'0.0000','+',0,'+','0.00000000','+'),(575,253,63,19,99,0,0,'0.0000','+',0,'+','0.00000000','+'),(574,253,63,19,98,0,0,'0.0000','+',0,'+','0.00000000','+'),(573,253,63,19,97,0,0,'0.0000','+',0,'+','0.00000000','+'),(572,253,63,19,96,0,0,'0.0000','+',0,'+','0.00000000','+'),(571,253,63,19,95,0,0,'0.0000','+',0,'+','0.00000000','+'),(570,253,63,19,94,0,0,'0.0000','+',0,'+','0.00000000','+'),(569,253,63,19,93,0,0,'0.0000','+',0,'+','0.00000000','+'),(568,253,63,19,92,0,0,'0.0000','+',0,'+','0.00000000','+'),(567,253,63,19,109,0,0,'0.0000','+',0,'+','0.00000000','+'),(470,245,63,17,169,0,0,'14.0000','+',0,'+','0.00000000','+'),(469,245,63,17,168,0,0,'13.8000','+',0,'+','0.00000000','+'),(468,245,63,17,167,0,0,'13.6000','+',0,'+','0.00000000','+'),(467,245,63,17,166,0,0,'13.4000','+',0,'+','0.00000000','+'),(466,245,63,17,165,0,0,'13.2000','+',0,'+','0.00000000','+'),(465,245,63,17,164,0,0,'13.0000','+',0,'+','0.00000000','+'),(464,245,63,17,163,0,0,'12.8000','+',0,'+','0.00000000','+'),(463,245,63,17,162,0,0,'12.6000','+',0,'+','0.00000000','+'),(462,245,63,17,161,0,0,'12.4000','+',0,'+','0.00000000','+'),(461,245,63,17,160,0,0,'12.2000','+',0,'+','0.00000000','+'),(460,245,63,17,159,0,0,'12.0000','+',0,'+','0.00000000','+'),(459,245,63,17,158,0,0,'11.8000','+',0,'+','0.00000000','+'),(458,245,63,17,157,0,0,'11.6000','+',0,'+','0.00000000','+'),(457,245,63,17,156,0,0,'11.4000','+',0,'+','0.00000000','+'),(456,245,63,17,155,0,0,'11.2000','+',0,'+','0.00000000','+'),(455,245,63,17,154,0,0,'11.0000','+',0,'+','0.00000000','+'),(454,245,63,17,153,0,0,'10.8000','+',0,'+','0.00000000','+'),(453,245,63,17,152,0,0,'10.6000','+',0,'+','0.00000000','+'),(452,245,63,17,151,0,0,'10.4000','+',0,'+','0.00000000','+'),(451,245,63,17,150,0,0,'10.2000','+',0,'+','0.00000000','+'),(450,245,63,17,149,0,0,'10.0000','+',0,'+','0.00000000','+'),(449,245,63,17,148,0,0,'9.8000','+',0,'+','0.00000000','+'),(448,245,63,17,147,0,0,'9.6000','+',0,'+','0.00000000','+'),(447,245,63,17,146,0,0,'9.4000','+',0,'+','0.00000000','+'),(446,245,63,17,145,0,0,'9.2000','+',0,'+','0.00000000','+'),(445,245,63,17,144,0,0,'9.0000','+',0,'+','0.00000000','+'),(444,245,63,17,143,0,0,'8.8000','+',0,'+','0.00000000','+'),(443,245,63,17,142,0,0,'8.6000','+',0,'+','0.00000000','+'),(442,245,63,17,141,0,0,'8.4000','+',0,'+','0.00000000','+'),(441,245,63,17,140,0,0,'8.2000','+',0,'+','0.00000000','+'),(440,245,63,17,139,0,0,'8.0000','+',0,'+','0.00000000','+'),(439,245,63,17,138,0,0,'7.8000','+',0,'+','0.00000000','+'),(437,245,63,17,137,0,0,'7.6000','+',0,'+','0.00000000','+'),(436,245,63,17,136,0,0,'7.4000','+',0,'+','0.00000000','+'),(435,245,63,17,135,0,0,'7.2000','+',0,'+','0.00000000','+'),(434,245,63,17,134,0,0,'7.0000','+',0,'+','0.00000000','+'),(433,245,63,17,133,0,0,'6.8000','+',0,'+','0.00000000','+'),(432,245,63,17,132,0,0,'6.6000','+',0,'+','0.00000000','+'),(431,245,63,17,131,0,0,'6.4000','+',0,'+','0.00000000','+'),(430,245,63,17,130,0,0,'6.2000','+',0,'+','0.00000000','+'),(429,245,63,17,129,0,0,'6.0000','+',0,'+','0.00000000','+'),(428,245,63,17,128,0,0,'5.8000','+',0,'+','0.00000000','+'),(427,245,63,17,127,0,0,'5.6000','+',0,'+','0.00000000','+'),(426,245,63,17,126,0,0,'5.4000','+',0,'+','0.00000000','+'),(425,245,63,17,125,0,0,'5.2000','+',0,'+','0.00000000','+'),(424,245,63,17,124,0,0,'5.0000','+',0,'+','0.00000000','+'),(423,245,63,17,123,0,0,'4.8000','+',0,'+','0.00000000','+'),(422,245,63,17,122,0,0,'4.6000','+',0,'+','0.00000000','+'),(421,245,63,17,121,0,0,'4.4000','+',0,'+','0.00000000','+'),(420,245,63,17,120,0,0,'4.2000','+',0,'+','0.00000000','+'),(419,245,63,17,119,0,0,'4.0000','+',0,'+','0.00000000','+'),(418,245,63,17,118,0,0,'3.8000','+',0,'+','0.00000000','+'),(417,245,63,17,117,0,0,'3.6000','+',0,'+','0.00000000','+'),(416,245,63,17,116,0,0,'3.4000','+',0,'+','0.00000000','+'),(415,245,63,17,115,0,0,'3.2000','+',0,'+','0.00000000','+'),(414,245,63,17,114,0,0,'3.0000','+',0,'+','0.00000000','+'),(413,245,63,17,113,0,0,'2.8000','+',0,'+','0.00000000','+'),(412,245,63,17,112,0,0,'2.6000','+',0,'+','0.00000000','+'),(411,245,63,17,111,0,0,'2.4000','+',0,'+','0.00000000','+'),(410,245,63,17,110,0,0,'2.2000','+',0,'+','0.00000000','+'),(409,245,63,17,76,0,0,'2.0000','+',0,'+','0.00000000','+'),(408,245,63,17,74,0,0,'1.6000','+',0,'+','0.00000000','+'),(407,245,63,17,73,0,0,'1.4000','+',0,'+','0.00000000','+'),(406,245,63,17,72,0,0,'1.2000','+',0,'+','0.00000000','+'),(405,245,63,17,71,0,0,'1.0000','+',0,'+','0.00000000','+'),(204,245,63,17,70,0,0,'0.8000','+',0,'+','0.00000000','+'),(200,244,63,18,91,0,0,'0.0000','+',0,'+','0.00000000','+'),(199,244,63,18,90,0,0,'0.0000','+',0,'+','0.00000000','+'),(198,244,63,18,89,0,0,'0.0000','+',0,'+','0.00000000','+'),(197,244,63,18,88,0,0,'0.0000','+',0,'+','0.00000000','+'),(196,244,63,18,87,0,0,'0.0000','+',0,'+','0.00000000','+'),(195,244,63,18,86,0,0,'0.0000','+',0,'+','0.00000000','+'),(194,244,63,18,85,0,0,'0.0000','+',0,'+','0.00000000','+'),(193,244,63,18,84,0,0,'0.0000','+',0,'+','0.00000000','+'),(192,244,63,18,83,0,0,'0.0000','+',0,'+','0.00000000','+'),(191,244,63,18,82,0,0,'0.0000','+',0,'+','0.00000000','+'),(190,244,63,18,81,0,0,'0.0000','+',0,'+','0.00000000','+'),(189,244,63,18,80,0,0,'0.0000','+',0,'+','0.00000000','+'),(188,244,63,18,79,0,0,'0.0000','+',0,'+','0.00000000','+'),(187,244,63,18,78,0,0,'0.0000','+',0,'+','0.00000000','+'),(186,244,63,18,77,0,0,'0.0000','+',0,'+','0.00000000','+'),(185,244,63,18,108,0,0,'0.0000','+',0,'+','0.00000000','+'),(184,243,63,16,229,0,0,'14.0000','+',0,'+','0.00000000','+'),(183,243,63,16,228,0,0,'13.8000','+',0,'+','0.00000000','+'),(182,243,63,16,227,0,0,'13.6000','+',0,'+','0.00000000','+'),(181,243,63,16,226,0,0,'13.4000','+',0,'+','0.00000000','+'),(180,243,63,16,225,0,0,'13.2000','+',0,'+','0.00000000','+'),(179,243,63,16,224,0,0,'13.0000','+',0,'+','0.00000000','+'),(178,243,63,16,223,0,0,'12.8000','+',0,'+','0.00000000','+'),(177,243,63,16,222,0,0,'12.6000','+',0,'+','0.00000000','+'),(176,243,63,16,221,0,0,'12.4000','+',0,'+','0.00000000','+'),(175,243,63,16,220,0,0,'12.2000','+',0,'+','0.00000000','+'),(174,243,63,16,219,0,0,'12.0000','+',0,'+','0.00000000','+'),(173,243,63,16,218,0,0,'11.8000','+',0,'+','0.00000000','+'),(172,243,63,16,217,0,0,'11.6000','+',0,'+','0.00000000','+'),(171,243,63,16,216,0,0,'11.4000','+',0,'+','0.00000000','+'),(170,243,63,16,215,0,0,'11.2000','+',0,'+','0.00000000','+'),(169,243,63,16,214,0,0,'11.0000','+',0,'+','0.00000000','+'),(168,243,63,16,213,0,0,'10.8000','+',0,'+','0.00000000','+'),(167,243,63,16,212,0,0,'10.6000','+',0,'+','0.00000000','+'),(166,243,63,16,211,0,0,'10.4000','+',0,'+','0.00000000','+'),(165,243,63,16,210,0,0,'10.2000','+',0,'+','0.00000000','+'),(164,243,63,16,209,0,0,'10.0000','+',0,'+','0.00000000','+'),(163,243,63,16,208,0,0,'9.8000','+',0,'+','0.00000000','+'),(162,243,63,16,207,0,0,'9.6000','+',0,'+','0.00000000','+'),(161,243,63,16,206,0,0,'9.4000','+',0,'+','0.00000000','+'),(160,243,63,16,205,0,0,'9.2000','+',0,'+','0.00000000','+'),(159,243,63,16,204,0,0,'9.0000','+',0,'+','0.00000000','+'),(158,243,63,16,203,0,0,'8.8000','+',0,'+','0.00000000','+'),(157,243,63,16,202,0,0,'8.6000','+',0,'+','0.00000000','+'),(156,243,63,16,201,0,0,'8.4000','+',0,'+','0.00000000','+'),(155,243,63,16,200,0,0,'8.2000','+',0,'+','0.00000000','+'),(154,243,63,16,199,0,0,'8.0000','+',0,'+','0.00000000','+'),(153,243,63,16,198,0,0,'7.8000','+',0,'+','0.00000000','+'),(152,243,63,16,197,0,0,'7.6000','+',0,'+','0.00000000','+'),(151,243,63,16,196,0,0,'7.4000','+',0,'+','0.00000000','+'),(150,243,63,16,195,0,0,'7.2000','+',0,'+','0.00000000','+'),(149,243,63,16,194,0,0,'7.0000','+',0,'+','0.00000000','+'),(148,243,63,16,193,0,0,'6.8000','+',0,'+','0.00000000','+'),(147,243,63,16,192,0,0,'6.6000','+',0,'+','0.00000000','+'),(146,243,63,16,191,0,0,'6.4000','+',0,'+','0.00000000','+'),(145,243,63,16,190,0,0,'6.2000','+',0,'+','0.00000000','+'),(144,243,63,16,189,0,0,'6.0000','+',0,'+','0.00000000','+'),(143,243,63,16,188,0,0,'5.8000','+',0,'+','0.00000000','+'),(142,243,63,16,187,0,0,'5.6000','+',0,'+','0.00000000','+'),(141,243,63,16,186,0,0,'5.4000','+',0,'+','0.00000000','+'),(140,243,63,16,185,0,0,'5.2000','+',0,'+','0.00000000','+'),(139,243,63,16,184,0,0,'5.0000','+',0,'+','0.00000000','+'),(138,243,63,16,183,0,0,'4.8000','+',0,'+','0.00000000','+'),(137,243,63,16,182,0,0,'4.6000','+',0,'+','0.00000000','+'),(136,243,63,16,181,0,0,'4.4000','+',0,'+','0.00000000','+'),(135,243,63,16,180,0,0,'4.2000','+',0,'+','0.00000000','+'),(134,243,63,16,179,0,0,'4.0000','+',0,'+','0.00000000','+'),(133,243,63,16,178,0,0,'3.8000','+',0,'+','0.00000000','+'),(132,243,63,16,177,0,0,'3.6000','+',0,'+','0.00000000','+'),(131,243,63,16,176,0,0,'3.4000','+',0,'+','0.00000000','+'),(130,243,63,16,175,0,0,'3.2000','+',0,'+','0.00000000','+'),(129,243,63,16,174,0,0,'3.0000','+',0,'+','0.00000000','+'),(128,243,63,16,173,0,0,'2.8000','+',0,'+','0.00000000','+'),(127,243,63,16,172,0,0,'2.6000','+',0,'+','0.00000000','+'),(126,243,63,16,171,0,0,'2.4000','+',0,'+','0.00000000','+'),(125,243,63,16,170,0,0,'2.2000','+',0,'+','0.00000000','+'),(124,243,63,16,66,0,0,'2.0000','+',0,'+','0.00000000','+'),(123,243,63,16,65,0,0,'1.8000','+',0,'+','0.00000000','+'),(122,243,63,16,64,0,0,'1.6000','+',0,'+','0.00000000','+'),(121,243,63,16,63,0,0,'1.4000','+',0,'+','0.00000000','+'),(120,243,63,16,62,0,0,'1.2000','+',0,'+','0.00000000','+'),(119,243,63,16,61,0,0,'1.0000','+',0,'+','0.00000000','+'),(118,243,63,16,60,0,0,'0.8000','+',0,'+','0.00000000','+'),(822,367,64,31,288,0,0,'12.0000','+',0,'+','1.00000000','+'),(332,251,64,14,54,0,0,'0.0000','+',0,'+','0.00000000','+'),(331,251,64,14,53,0,0,'0.0000','+',0,'+','0.00000000','+'),(330,251,64,14,52,0,0,'0.0000','+',0,'+','0.00000000','+'),(334,252,64,22,267,1,0,'5.0000','+',0,'+','0.00000000','+'),(333,252,64,22,266,0,0,'0.0000','+',0,'+','0.00000000','+'),(323,249,64,21,258,0,0,'74.2500','+',0,'+','0.00000000','+'),(322,249,64,21,257,0,0,'73.5000','+',0,'+','0.00000000','+'),(321,249,64,21,256,0,0,'72.7500','+',0,'+','0.00000000','+'),(320,249,64,21,255,0,0,'72.0000','+',0,'+','0.00000000','+'),(319,249,64,21,254,0,0,'71.2500','+',0,'+','0.00000000','+'),(318,249,64,21,253,0,0,'70.5000','+',0,'+','0.00000000','+'),(317,249,64,21,252,0,0,'69.7500','+',0,'+','0.00000000','+'),(316,249,64,21,251,0,0,'69.0000','+',0,'+','0.00000000','+'),(314,249,64,21,250,0,0,'68.2500','+',0,'+','0.00000000','+'),(313,249,64,21,249,0,0,'67.5000','+',0,'+','0.00000000','+'),(312,249,64,21,248,0,0,'66.7500','+',0,'+','0.00000000','+'),(311,249,64,21,247,0,0,'66.0000','+',0,'+','0.00000000','+'),(310,249,64,21,246,0,0,'65.2500','+',0,'+','0.00000000','+'),(309,249,64,21,245,0,0,'64.5000','+',0,'+','0.00000000','+'),(308,249,64,21,244,0,0,'63.7500','+',0,'+','0.00000000','+'),(307,249,64,21,243,0,0,'63.0000','+',0,'+','0.00000000','+'),(305,249,64,21,260,0,0,'62.2500','+',0,'+','0.00000000','+'),(304,249,64,21,242,0,0,'61.5000','+',0,'+','0.00000000','+'),(303,249,64,21,241,0,0,'60.7500','+',0,'+','0.00000000','+'),(302,249,64,21,240,0,0,'60.0000','+',0,'+','0.00000000','+'),(301,249,64,21,239,0,0,'59.2500','+',0,'+','0.00000000','+'),(300,249,64,21,238,0,0,'58.5000','+',0,'+','0.00000000','+'),(299,249,64,21,237,0,0,'57.7500','+',0,'+','0.00000000','+'),(298,249,64,21,236,0,0,'57.0000','+',0,'+','0.00000000','+'),(297,249,64,21,235,0,0,'56.0000','+',0,'+','0.00000000','+'),(296,249,64,21,234,0,0,'55.5000','+',0,'+','0.00000000','+'),(293,249,64,21,233,0,0,'54.7500','+',0,'+','0.00000000','+'),(292,249,64,21,259,0,0,'54.0000','+',0,'+','0.00000000','+'),(294,249,64,21,232,0,0,'53.2500','+',0,'+','0.00000000','+'),(295,249,64,21,231,0,0,'52.5000','+',0,'+','0.00000000','+'),(315,249,64,21,231,0,0,'0.0000','+',0,'+','0.00000000','+'),(329,250,64,20,265,0,0,'45.0000','+',0,'+','0.00000000','+'),(328,250,64,20,264,0,0,'40.5000','+',0,'+','0.00000000','+'),(327,250,64,20,263,0,0,'36.0000','+',0,'+','0.00000000','+'),(326,250,64,20,262,0,0,'27.0000','+',0,'+','0.00000000','+'),(325,250,64,20,261,0,0,'22.5000','+',0,'+','0.00000000','+'),(364,237,57,17,139,0,0,'4.0000','+',0,'+','0.00000000','+'),(363,237,57,17,138,0,0,'3.9000','+',0,'+','0.00000000','+'),(362,237,57,17,137,0,0,'3.8000','+',0,'+','0.00000000','+'),(361,237,57,17,136,0,0,'3.7000','+',0,'+','0.00000000','+'),(360,237,57,17,135,0,0,'3.6000','+',0,'+','0.00000000','+'),(359,237,57,17,134,0,0,'3.5000','+',0,'+','0.00000000','+'),(358,237,57,17,133,0,0,'3.4000','+',0,'+','0.00000000','+'),(357,237,57,17,132,0,0,'3.3000','+',0,'+','0.00000000','+'),(356,237,57,17,131,0,0,'3.2000','+',0,'+','0.00000000','+'),(355,237,57,17,130,0,0,'3.1000','+',0,'+','0.00000000','+'),(354,237,57,17,129,0,0,'3.0000','+',0,'+','0.00000000','+'),(353,237,57,17,128,0,0,'2.9000','+',0,'+','0.00000000','+'),(352,237,57,17,127,0,0,'2.8000','+',0,'+','0.00000000','+'),(351,237,57,17,126,0,0,'2.7000','+',0,'+','0.00000000','+'),(350,237,57,17,125,0,0,'2.6000','+',0,'+','0.00000000','+'),(349,237,57,17,124,0,0,'2.5000','+',0,'+','0.00000000','+'),(348,237,57,17,123,0,0,'2.4000','+',0,'+','0.00000000','+'),(347,237,57,17,122,0,0,'2.3000','+',0,'+','0.00000000','+'),(346,237,57,17,121,0,0,'2.2000','+',0,'+','0.00000000','+'),(345,237,57,17,120,0,0,'2.1000','+',0,'+','0.00000000','+'),(344,237,57,17,119,0,0,'2.0000','+',0,'+','0.00000000','+'),(343,237,57,17,118,0,0,'1.9000','+',0,'+','0.00000000','+'),(342,237,57,17,117,0,0,'1.8000','+',0,'+','0.00000000','+'),(341,237,57,17,116,0,0,'1.7000','+',0,'+','0.00000000','+'),(340,237,57,17,115,0,0,'1.6000','+',0,'+','0.00000000','+'),(339,237,57,17,114,0,0,'1.5000','+',0,'+','0.00000000','+'),(338,237,57,17,113,0,0,'1.4000','+',0,'+','0.00000000','+'),(337,237,57,17,112,0,0,'1.3000','+',0,'+','0.00000000','+'),(336,237,57,17,111,0,0,'1.2000','+',0,'+','0.00000000','+'),(335,237,57,17,110,0,0,'1.1000','+',0,'+','0.00000000','+'),(89,237,57,17,76,0,0,'1.0000','+',0,'+','0.00000000','+'),(88,237,57,17,75,0,0,'0.9000','+',0,'+','0.00000000','+'),(87,237,57,17,74,0,0,'0.8000','+',0,'+','0.00000000','+'),(86,237,57,17,73,0,0,'0.7000','+',0,'+','0.00000000','+'),(85,237,57,17,72,0,0,'0.6000','+',0,'+','0.00000000','+'),(84,237,57,17,71,0,0,'0.5000','+',0,'+','0.00000000','+'),(83,237,57,17,70,0,0,'0.4000','+',0,'+','0.00000000','+'),(82,237,57,17,69,0,0,'0.3000','+',0,'+','0.00000000','+'),(81,237,57,17,68,0,0,'0.2000','+',0,'+','0.00000000','+'),(80,237,57,17,67,0,0,'0.1000','+',0,'+','0.00000000','+'),(64,235,57,16,66,0,0,'1.0000','+',0,'+','0.00000000','+'),(63,235,57,16,65,0,0,'0.9000','+',0,'+','0.00000000','+'),(62,235,57,16,64,0,0,'0.8000','+',0,'+','0.00000000','+'),(61,235,57,16,63,0,0,'0.7000','+',0,'+','0.00000000','+'),(60,235,57,16,62,0,0,'0.6000','+',0,'+','0.00000000','+'),(59,235,57,16,61,0,0,'0.5000','+',0,'+','0.00000000','+'),(58,235,57,16,60,0,0,'0.4000','+',0,'+','0.00000000','+'),(57,235,57,16,59,0,0,'0.3000','+',0,'+','0.00000000','+'),(56,235,57,16,58,0,0,'0.2000','+',0,'+','0.00000000','+'),(55,235,57,16,57,0,0,'0.1000','+',0,'+','0.00000000','+'),(633,286,74,26,277,0,0,'0.0000','+',0,'+','0.00000000','+'),(632,286,74,26,276,0,0,'0.0000','+',0,'+','0.00000000','+'),(629,284,74,15,56,0,0,'0.0000','+',0,'+','0.00000000','+'),(628,284,74,15,55,0,0,'0.0000','+',0,'+','0.00000000','+'),(630,285,74,23,269,0,0,'1.5000','+',0,'+','0.00000000','+'),(631,285,74,23,268,0,0,'0.0000','+',0,'+','0.00000000','+'),(635,287,74,14,54,0,0,'0.0000','+',0,'+','0.00000000','+'),(634,287,74,14,53,0,0,'0.0000','+',0,'+','0.00000000','+'),(636,287,74,14,52,0,0,'0.0000','+',0,'+','0.00000000','+'),(637,288,75,15,287,0,0,'0.0000','+',0,'+','0.00000000','+'),(639,288,75,15,55,0,0,'4.0000','+',0,'+','0.00000000','+'),(640,289,76,15,287,0,0,'0.0000','+',0,'+','0.00000000','+'),(641,289,76,15,55,0,0,'4.5000','+',0,'+','0.00000000','+'),(642,290,77,15,287,0,0,'0.0000','+',0,'+','0.00000000','+'),(643,290,77,15,55,0,0,'5.0000','+',0,'+','0.00000000','+'),(644,291,78,15,287,0,0,'0.0000','+',0,'+','0.00000000','+'),(645,291,78,15,55,0,0,'6.0000','+',0,'+','0.00000000','+'),(646,292,79,15,287,0,0,'0.0000','+',0,'+','0.00000000','+'),(647,292,79,15,55,0,0,'11.0000','+',0,'+','0.00000000','+'),(649,293,80,15,56,0,0,'5.0000','+',0,'+','0.00000000','+'),(648,293,80,15,55,0,0,'0.0000','+',0,'+','0.00000000','+'),(651,294,81,15,56,0,0,'5.0000','+',0,'+','0.00000000','+'),(650,294,81,15,55,0,0,'0.0000','+',0,'+','0.00000000','+'),(653,295,82,15,56,0,0,'5.0000','+',0,'+','0.00000000','+'),(652,295,82,15,55,0,0,'0.0000','+',0,'+','0.00000000','+'),(655,296,83,15,56,0,0,'5.0000','+',0,'+','0.00000000','+'),(654,296,83,15,55,0,0,'0.0000','+',0,'+','0.00000000','+'),(657,297,84,15,56,0,0,'5.0000','+',0,'+','0.00000000','+'),(656,297,84,15,55,0,0,'0.0000','+',0,'+','0.00000000','+'),(658,298,85,15,55,0,0,'0.0000','+',0,'+','0.00000000','+'),(659,298,85,15,56,0,0,'5.0000','+',0,'+','0.00000000','+'),(660,299,85,28,281,0,0,'79.0000','-',0,'+','0.00000000','+'),(661,299,85,28,282,0,0,'50.0000','-',0,'+','0.00000000','+'),(695,315,90,26,278,0,0,'0.0000','+',0,'+','0.00000000','+'),(697,315,90,26,277,0,0,'0.0000','+',0,'+','0.00000000','+'),(696,315,90,26,276,0,0,'0.0000','+',0,'+','0.00000000','+'),(703,318,90,15,56,0,0,'0.0000','+',0,'+','0.00000000','+'),(692,314,89,26,278,0,0,'0.0000','+',0,'+','0.00000000','+'),(694,314,89,26,277,0,0,'0.0000','+',0,'+','0.00000000','+'),(693,314,89,26,276,0,0,'0.0000','+',0,'+','0.00000000','+'),(667,302,87,15,56,0,1,'8.0000','+',0,'+','0.00000000','+'),(666,302,87,15,55,0,1,'0.0000','+',0,'+','0.00000000','+'),(669,303,87,28,282,0,0,'58.0000','-',0,'+','0.00000000','+'),(668,303,87,28,281,0,0,'80.0000','-',0,'+','0.00000000','+'),(702,318,90,15,55,0,0,'0.0000','+',0,'+','0.00000000','+'),(683,309,80,28,282,0,0,'20.0000','-',0,'+','0.00000000','+'),(682,309,80,28,281,0,0,'33.0000','-',0,'+','0.00000000','+'),(684,310,81,28,281,0,0,'41.0000','-',0,'+','0.00000000','+'),(685,310,81,28,282,0,0,'22.0000','-',0,'+','0.00000000','+'),(686,311,82,28,281,0,0,'44.0000','-',0,'+','0.00000000','+'),(687,311,82,28,282,0,0,'-28.0000','-',0,'+','0.00000000','+'),(688,312,83,28,281,0,0,'52.0000','+',0,'+','0.00000000','+'),(689,312,83,28,282,0,0,'37.0000','-',0,'+','0.00000000','+'),(690,313,84,28,281,0,0,'72.0000','-',0,'+','0.00000000','+'),(691,313,84,28,282,0,0,'43.0000','-',0,'+','0.00000000','+'),(699,316,89,15,56,0,0,'0.0000','+',0,'+','0.00000000','+'),(698,316,89,15,55,0,0,'0.0000','+',0,'+','0.00000000','+'),(700,317,89,23,269,0,0,'1.5000','+',0,'+','0.00000000','+'),(680,308,90,23,269,0,0,'1.7500','+',0,'+','0.00000000','+'),(681,308,90,23,268,0,0,'0.0000','+',0,'+','0.00000000','+'),(678,307,90,14,54,0,0,'0.0000','+',0,'+','0.00000000','+'),(701,317,89,23,268,0,0,'0.0000','+',0,'+','0.00000000','+'),(675,306,89,14,54,0,0,'0.0000','+',0,'+','0.00000000','+'),(676,306,89,14,53,0,0,'0.0000','+',0,'+','0.00000000','+'),(674,306,89,14,52,0,0,'0.0000','+',0,'+','0.00000000','+'),(679,307,90,14,53,0,0,'0.0000','+',0,'+','0.00000000','+'),(677,307,90,14,52,0,0,'0.0000','+',0,'+','0.00000000','+'),(709,321,91,31,288,0,0,'12.0000','+',0,'+','0.00000000','+'),(708,320,91,15,56,0,0,'0.0000','+',0,'+','0.00000000','+'),(707,320,91,15,55,0,0,'0.0000','+',0,'+','0.00000000','+'),(706,319,91,14,54,0,0,'0.0000','+',0,'+','0.00000000','+'),(705,319,91,14,53,0,0,'0.0000','+',0,'+','0.00000000','+'),(704,319,91,14,52,0,0,'0.0000','+',0,'+','0.00000000','+'),(711,322,91,22,267,0,0,'5.0000','+',0,'+','0.00000000','+'),(710,322,91,22,266,0,0,'0.0000','+',0,'+','0.00000000','+'),(719,326,92,31,288,0,0,'12.0000','+',0,'+','0.00000000','+'),(718,325,92,15,56,0,0,'0.0000','+',0,'+','0.00000000','+'),(717,325,92,15,55,0,0,'0.0000','+',0,'+','0.00000000','+'),(716,324,92,14,54,0,0,'0.0000','+',0,'+','0.00000000','+'),(715,324,92,14,53,0,0,'0.0000','+',0,'+','0.00000000','+'),(714,324,92,14,52,0,0,'0.0000','+',0,'+','0.00000000','+'),(713,323,92,22,267,0,0,'5.0000','+',0,'+','0.00000000','+'),(712,323,92,22,266,0,0,'0.0000','+',0,'+','0.00000000','+'),(727,330,93,31,288,0,0,'12.0000','+',0,'+','0.00000000','+'),(726,329,93,15,56,0,1,'0.0000','+',0,'+','0.00000000','+'),(725,329,93,15,55,0,1,'0.0000','+',0,'+','0.00000000','+'),(724,328,93,14,54,0,0,'0.0000','+',0,'+','0.00000000','+'),(723,328,93,14,53,0,0,'0.0000','+',0,'+','0.00000000','+'),(722,328,93,14,52,0,0,'0.0000','+',0,'+','0.00000000','+'),(721,327,93,22,267,0,1,'5.0000','+',0,'+','0.00000000','+'),(720,327,93,22,266,0,1,'0.0000','+',0,'+','0.00000000','+'),(728,331,92,32,289,0,0,'12.0000','+',0,'+','0.00000000','+'),(729,332,91,32,289,0,0,'12.0000','+',0,'+','0.00000000','+'),(730,333,93,32,289,0,0,'12.0000','+',0,'+','0.00000000','+'),(738,337,94,31,288,0,0,'12.0000','+',0,'+','0.00000000','+'),(737,336,94,15,56,0,1,'0.0000','+',0,'+','0.00000000','+'),(736,336,94,15,55,0,1,'0.0000','+',0,'+','0.00000000','+'),(735,335,94,14,54,0,0,'0.0000','+',0,'+','0.00000000','+'),(734,335,94,14,53,0,0,'0.0000','+',0,'+','0.00000000','+'),(733,335,94,14,52,0,0,'0.0000','+',0,'+','0.00000000','+'),(732,334,94,22,267,0,0,'5.0000','+',0,'+','0.00000000','+'),(731,334,94,22,266,0,0,'0.0000','+',0,'+','0.00000000','+'),(739,338,94,32,289,0,0,'12.0000','+',0,'+','0.00000000','+'),(742,339,95,14,54,0,0,'0.1000','+',0,'+','0.00000000','+'),(741,339,95,14,53,0,0,'0.1000','+',0,'+','0.00000000','+'),(740,339,95,14,52,0,0,'0.0000','+',0,'+','0.00000000','+'),(760,343,102,37,309,0,0,'0.5000','+',0,'+','0.00000000','+'),(749,340,96,33,296,1,0,'56.0000','+',0,'+','0.00000000','+'),(748,340,96,33,295,1,0,'41.5000','+',0,'+','0.00000000','+'),(747,340,96,33,294,1,0,'23.5000','+',0,'+','0.00000000','+'),(746,340,96,33,293,1,0,'13.5000','+',0,'+','0.00000000','+'),(745,340,96,33,292,1,0,'5.0000','+',0,'+','0.00000000','+'),(757,341,96,34,304,1,0,'2.0000','+',0,'+','0.00000000','+'),(743,340,96,33,290,1,0,'0.0000','+',0,'+','0.00000000','+'),(744,340,96,33,291,1,0,'2.0000','+',0,'+','0.00000000','+'),(756,341,96,34,303,1,0,'1.5000','+',0,'+','0.00000000','+'),(755,341,96,34,302,1,0,'1.0000','+',0,'+','0.00000000','+'),(754,341,96,34,301,1,0,'0.0000','+',0,'+','0.00000000','+'),(753,341,96,34,300,1,0,'0.0000','+',0,'+','0.00000000','+'),(752,341,96,34,299,1,0,'0.0000','+',0,'+','0.00000000','+'),(751,341,96,34,298,1,0,'0.0000','+',0,'+','0.00000000','+'),(750,341,96,34,297,1,0,'0.0000','+',0,'+','0.00000000','+'),(759,342,97,35,306,0,0,'0.0000','+',0,'+','0.00000000','+'),(758,342,97,35,305,0,0,'0.0000','+',0,'+','0.00000000','+'),(766,345,106,14,54,0,0,'0.0000','+',0,'+','0.00000000','+'),(765,345,106,14,53,0,0,'0.0000','+',0,'+','0.00000000','+'),(767,345,106,14,52,0,0,'0.0000','+',0,'+','0.00000000','+'),(764,344,106,38,313,0,0,'2.0000','+',0,'+','0.00000000','+'),(763,344,106,38,312,0,0,'1.0000','+',0,'+','0.00000000','+'),(762,344,106,38,311,0,0,'0.0000','+',0,'+','0.00000000','+'),(761,344,106,38,310,0,0,'0.0000','+',0,'+','0.00000000','+'),(772,347,108,14,54,0,0,'0.0000','+',0,'+','0.00000000','+'),(771,347,108,14,53,0,0,'0.0000','+',0,'+','0.00000000','+'),(773,347,108,14,52,0,0,'0.0000','+',0,'+','0.00000000','+'),(776,348,111,14,54,1,0,'20.0000','+',0,'+','0.00000000','+'),(775,348,111,14,53,1,0,'20.0000','+',0,'+','0.00000000','+'),(774,348,111,14,52,1,0,'0.0000','+',0,'+','0.00000000','+'),(777,343,102,37,314,0,0,'0.0000','+',0,'+','0.00000000','+'),(782,350,113,33,295,5,0,'48.0000','+',0,'+','0.00000000','+'),(781,350,113,33,294,4,0,'38.0000','+',0,'+','0.00000000','+'),(780,350,113,33,293,3,0,'28.0000','+',0,'+','0.00000000','+'),(779,350,113,33,292,2,0,'3.5000','+',0,'+','0.00000000','+'),(778,350,113,33,291,1,0,'0.0000','+',0,'+','0.00000000','+'),(784,351,114,14,54,0,0,'0.0000','+',0,'+','0.00000000','+'),(783,351,114,14,53,0,0,'0.0000','+',0,'+','0.00000000','+'),(785,351,114,14,52,0,0,'0.0000','+',0,'+','0.00000000','+'),(787,352,115,14,54,0,1,'15.0000','+',0,'+','0.00000000','+'),(786,352,115,14,53,0,1,'15.0000','+',0,'+','0.00000000','+'),(788,352,115,14,52,0,1,'0.0000','+',0,'+','0.00000000','+'),(789,353,116,14,54,0,0,'15.0000','+',0,'+','0.00000000','+'),(791,353,116,14,53,0,0,'15.0000','+',0,'+','0.00000000','+'),(790,353,116,14,52,0,0,'0.0000','+',0,'+','0.00000000','+'),(793,354,117,14,54,0,0,'20.0000','+',0,'+','0.00000000','+'),(792,354,117,14,53,0,0,'20.0000','+',0,'+','0.00000000','+'),(794,354,117,14,52,0,0,'0.0000','+',0,'+','0.00000000','+'),(796,355,118,14,54,0,0,'0.1500','+',0,'+','0.00000000','+'),(795,355,118,14,53,0,0,'0.1500','+',0,'+','0.00000000','+'),(797,355,118,14,52,0,0,'0.0000','+',0,'+','0.00000000','+'),(798,356,119,14,53,0,0,'0.0000','+',0,'+','0.00000000','+'),(799,356,119,14,54,0,0,'0.0000','+',0,'+','0.00000000','+'),(800,356,119,14,52,0,0,'0.0000','+',0,'+','0.00000000','+'),(802,357,120,27,280,0,0,'0.0000','+',0,'+','0.00000000','+'),(801,357,120,27,279,0,0,'0.0000','+',0,'+','0.00000000','+'),(804,358,121,15,56,0,0,'0.0000','+',0,'+','0.00000000','+'),(803,358,121,15,55,0,0,'0.0000','+',0,'+','0.00000000','+'),(805,359,123,15,55,0,0,'0.0000','+',0,'+','0.00000000','+'),(806,359,123,15,56,0,0,'0.0000','+',0,'+','0.00000000','+'),(808,360,122,15,56,0,0,'0.0000','+',0,'+','0.00000000','+'),(807,360,122,15,55,0,0,'0.0000','+',0,'+','0.00000000','+'),(810,361,124,15,56,0,0,'0.0000','+',0,'+','0.00000000','+'),(809,361,124,15,55,0,0,'0.0000','+',0,'+','0.00000000','+'),(812,362,125,13,51,0,0,'0.0000','+',0,'+','0.00000000','+'),(811,362,125,13,50,0,0,'0.0000','+',0,'+','0.00000000','+'),(813,362,125,13,49,0,0,'0.0000','+',0,'+','0.00000000','+'),(815,363,125,39,316,0,0,'15.0000','+',0,'+','0.00000000','+'),(814,363,125,39,315,0,0,'0.0000','+',0,'+','0.00000000','+'),(816,364,126,39,315,0,0,'0.0000','+',0,'+','0.00000000','+'),(817,364,126,39,316,0,0,'15.0000','+',0,'+','0.00000000','+'),(819,365,112,40,318,0,0,'0.0000','+',0,'+','0.00000000','+'),(818,365,112,40,317,0,0,'0.0000','+',0,'+','0.00000000','+'),(821,366,127,41,320,0,0,'0.0000','+',0,'+','0.00000000','+'),(820,366,127,41,319,0,0,'0.0000','+',0,'+','0.00000000','+'),(324,250,64,20,230,0,0,'18.0000','+',0,'+','0.00000000','+'),(824,368,128,24,271,0,0,'90.0000','+',0,'+','0.00000000','+'),(823,368,128,24,270,0,0,'0.0000','+',0,'+','0.00000000','+');
1860/*!40000 ALTER TABLE `product_option_value` ENABLE KEYS */;
1861UNLOCK TABLES;
1862
1863--
1864-- Table structure for table `product_related`
1865--
1866
1867DROP TABLE IF EXISTS `product_related`;
1868SET @saved_cs_client = @@character_set_client;
1869SET character_set_client = utf8;
1870CREATE TABLE `product_related` (
1871 `product_id` int(11) NOT NULL,
1872 `related_id` int(11) NOT NULL,
1873 PRIMARY KEY (`product_id`,`related_id`)
1874) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_bin;
1875SET character_set_client = @saved_cs_client;
1876
1877--
1878-- Dumping data for table `product_related`
1879--
1880
1881LOCK TABLES `product_related` WRITE;
1882/*!40000 ALTER TABLE `product_related` DISABLE KEYS */;
1883/*!40000 ALTER TABLE `product_related` ENABLE KEYS */;
1884UNLOCK TABLES;
1885
1886--
1887-- Table structure for table `product_reward`
1888--
1889
1890DROP TABLE IF EXISTS `product_reward`;
1891SET @saved_cs_client = @@character_set_client;
1892SET character_set_client = utf8;
1893CREATE TABLE `product_reward` (
1894 `product_reward_id` int(11) NOT NULL auto_increment,
1895 `product_id` int(11) NOT NULL default '0',
1896 `customer_group_id` int(11) NOT NULL default '0',
1897 `points` int(8) NOT NULL default '0',
1898 PRIMARY KEY (`product_reward_id`)
1899) ENGINE=MyISAM AUTO_INCREMENT=1079 DEFAULT CHARSET=utf8 COLLATE=utf8_bin;
1900SET character_set_client = @saved_cs_client;
1901
1902--
1903-- Dumping data for table `product_reward`
1904--
1905
1906LOCK TABLES `product_reward` WRITE;
1907/*!40000 ALTER TABLE `product_reward` DISABLE KEYS */;
1908INSERT INTO `product_reward` VALUES (804,72,1,0),(802,70,1,0),(800,69,1,0),(930,68,1,0),(1076,63,1,0),(660,55,1,0),(665,56,1,0),(803,71,1,0),(769,66,1,0),(798,67,1,0),(1078,64,1,0),(922,61,1,0),(1053,59,1,0),(923,58,1,0),(663,57,1,0),(1025,54,1,0),(664,53,1,0),(659,52,1,0),(918,60,1,0),(658,51,1,0),(805,73,1,0),(979,74,1,0),(782,75,1,0),(785,76,1,0),(786,77,1,0),(806,78,1,0),(808,79,1,0),(848,80,1,0),(847,81,1,0),(849,82,1,0),(850,83,1,0),(851,84,1,0),(827,85,1,0),(978,90,1,0),(852,87,1,0),(980,89,1,0),(975,91,1,0),(974,92,1,0),(976,93,1,0),(977,94,1,0),(1012,95,1,0),(928,96,1,0),(916,97,1,0),(919,98,1,0),(926,99,1,0),(943,100,1,0),(944,101,1,0),(982,102,1,0),(963,103,1,0),(949,104,1,0),(961,105,1,0),(959,106,1,0),(972,107,1,0),(962,108,1,0),(964,109,1,0),(965,110,1,0),(1039,111,1,0),(1066,112,1,0),(989,113,1,0),(988,114,1,0),(1038,115,1,0),(1040,116,1,0),(1041,117,1,0),(1013,118,1,0),(1026,119,1,0),(1045,120,1,0),(1046,121,1,0),(1047,122,1,0),(1042,123,1,0),(1051,124,1,0),(1062,125,1,0),(1060,126,1,0),(1069,127,1,0),(1075,128,1,0);
1909/*!40000 ALTER TABLE `product_reward` ENABLE KEYS */;
1910UNLOCK TABLES;
1911
1912--
1913-- Table structure for table `product_special`
1914--
1915
1916DROP TABLE IF EXISTS `product_special`;
1917SET @saved_cs_client = @@character_set_client;
1918SET character_set_client = utf8;
1919CREATE TABLE `product_special` (
1920 `product_special_id` int(11) NOT NULL auto_increment,
1921 `product_id` int(11) NOT NULL,
1922 `customer_group_id` int(11) NOT NULL,
1923 `priority` int(5) NOT NULL default '1',
1924 `price` decimal(15,4) NOT NULL default '0.0000',
1925 `date_start` date NOT NULL default '0000-00-00',
1926 `date_end` date NOT NULL default '0000-00-00',
1927 PRIMARY KEY (`product_special_id`),
1928 KEY `product_id` (`product_id`)
1929) ENGINE=MyISAM AUTO_INCREMENT=440 DEFAULT CHARSET=utf8 COLLATE=utf8_bin;
1930SET character_set_client = @saved_cs_client;
1931
1932--
1933-- Dumping data for table `product_special`
1934--
1935
1936LOCK TABLES `product_special` WRITE;
1937/*!40000 ALTER TABLE `product_special` DISABLE KEYS */;
1938/*!40000 ALTER TABLE `product_special` ENABLE KEYS */;
1939UNLOCK TABLES;
1940
1941--
1942-- Table structure for table `product_to_category`
1943--
1944
1945DROP TABLE IF EXISTS `product_to_category`;
1946SET @saved_cs_client = @@character_set_client;
1947SET character_set_client = utf8;
1948CREATE TABLE `product_to_category` (
1949 `product_id` int(11) NOT NULL,
1950 `category_id` int(11) NOT NULL,
1951 PRIMARY KEY (`product_id`,`category_id`)
1952) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_bin;
1953SET character_set_client = @saved_cs_client;
1954
1955--
1956-- Dumping data for table `product_to_category`
1957--
1958
1959LOCK TABLES `product_to_category` WRITE;
1960/*!40000 ALTER TABLE `product_to_category` DISABLE KEYS */;
1961INSERT INTO `product_to_category` VALUES (51,64),(52,64),(53,64),(54,64),(55,64),(56,64),(57,64),(58,62),(58,71),(59,62),(59,71),(60,62),(60,71),(61,62),(61,71),(63,59),(64,60),(66,63),(66,68),(67,63),(67,68),(68,63),(68,68),(68,71),(69,63),(69,68),(70,63),(70,68),(71,63),(71,68),(72,63),(72,68),(73,63),(73,68),(74,61),(74,74),(75,67),(76,67),(77,67),(78,67),(79,67),(80,70),(81,70),(82,70),(83,70),(84,70),(85,70),(87,70),(89,61),(89,74),(90,61),(90,74),(91,61),(91,76),(92,61),(92,76),(93,61),(93,76),(94,61),(94,76),(95,62),(95,71),(96,62),(96,71),(97,62),(97,71),(98,62),(98,71),(99,62),(99,71),(100,62),(100,72),(101,62),(101,72),(102,62),(102,72),(103,62),(103,72),(104,62),(104,72),(105,62),(105,72),(106,62),(106,72),(107,62),(107,72),(108,62),(108,72),(109,62),(109,73),(110,62),(110,73),(111,66),(111,80),(112,66),(112,81),(113,62),(113,77),(114,62),(114,77),(115,66),(115,80),(116,66),(116,80),(117,66),(117,80),(118,62),(118,71),(119,62),(119,77),(120,66),(120,78),(121,66),(121,78),(122,66),(122,78),(123,66),(123,78),(124,66),(124,78),(125,66),(125,81),(126,66),(126,81),(127,66),(127,81),(128,66),(128,81);
1962/*!40000 ALTER TABLE `product_to_category` ENABLE KEYS */;
1963UNLOCK TABLES;
1964
1965--
1966-- Table structure for table `product_to_download`
1967--
1968
1969DROP TABLE IF EXISTS `product_to_download`;
1970SET @saved_cs_client = @@character_set_client;
1971SET character_set_client = utf8;
1972CREATE TABLE `product_to_download` (
1973 `product_id` int(11) NOT NULL,
1974 `download_id` int(11) NOT NULL,
1975 PRIMARY KEY (`product_id`,`download_id`)
1976) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_bin;
1977SET character_set_client = @saved_cs_client;
1978
1979--
1980-- Dumping data for table `product_to_download`
1981--
1982
1983LOCK TABLES `product_to_download` WRITE;
1984/*!40000 ALTER TABLE `product_to_download` DISABLE KEYS */;
1985INSERT INTO `product_to_download` VALUES (95,1);
1986/*!40000 ALTER TABLE `product_to_download` ENABLE KEYS */;
1987UNLOCK TABLES;
1988
1989--
1990-- Table structure for table `product_to_layout`
1991--
1992
1993DROP TABLE IF EXISTS `product_to_layout`;
1994SET @saved_cs_client = @@character_set_client;
1995SET character_set_client = utf8;
1996CREATE TABLE `product_to_layout` (
1997 `product_id` int(11) NOT NULL,
1998 `store_id` int(11) NOT NULL,
1999 `layout_id` int(11) NOT NULL,
2000 PRIMARY KEY (`product_id`,`store_id`)
2001) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_bin;
2002SET character_set_client = @saved_cs_client;
2003
2004--
2005-- Dumping data for table `product_to_layout`
2006--
2007
2008LOCK TABLES `product_to_layout` WRITE;
2009/*!40000 ALTER TABLE `product_to_layout` DISABLE KEYS */;
2010/*!40000 ALTER TABLE `product_to_layout` ENABLE KEYS */;
2011UNLOCK TABLES;
2012
2013--
2014-- Table structure for table `product_to_store`
2015--
2016
2017DROP TABLE IF EXISTS `product_to_store`;
2018SET @saved_cs_client = @@character_set_client;
2019SET character_set_client = utf8;
2020CREATE TABLE `product_to_store` (
2021 `product_id` int(11) NOT NULL,
2022 `store_id` int(11) NOT NULL default '0',
2023 PRIMARY KEY (`product_id`,`store_id`)
2024) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_bin;
2025SET character_set_client = @saved_cs_client;
2026
2027--
2028-- Dumping data for table `product_to_store`
2029--
2030
2031LOCK TABLES `product_to_store` WRITE;
2032/*!40000 ALTER TABLE `product_to_store` DISABLE KEYS */;
2033INSERT INTO `product_to_store` VALUES (51,0),(52,0),(53,0),(54,0),(55,0),(56,0),(57,0),(58,0),(59,0),(60,0),(61,0),(63,0),(64,0),(66,0),(67,0),(68,0),(69,0),(70,0),(71,0),(72,0),(73,0),(74,0),(75,0),(76,0),(77,0),(78,0),(79,0),(80,0),(81,0),(82,0),(83,0),(84,0),(85,0),(87,0),(89,0),(90,0),(91,0),(92,0),(93,0),(94,0),(95,0),(96,0),(97,0),(98,0),(99,0),(100,0),(101,0),(102,0),(103,0),(104,0),(105,0),(106,0),(107,0),(108,0),(109,0),(110,0),(111,0),(112,0),(113,0),(114,0),(115,0),(116,0),(117,0),(118,0),(119,0),(120,0),(121,0),(122,0),(123,0),(124,0),(125,0),(126,0),(127,0),(128,0);
2034/*!40000 ALTER TABLE `product_to_store` ENABLE KEYS */;
2035UNLOCK TABLES;
2036
2037--
2038-- Table structure for table `return`
2039--
2040
2041DROP TABLE IF EXISTS `return`;
2042SET @saved_cs_client = @@character_set_client;
2043SET character_set_client = utf8;
2044CREATE TABLE `return` (
2045 `return_id` int(11) NOT NULL auto_increment,
2046 `order_id` int(11) NOT NULL,
2047 `product_id` int(11) NOT NULL,
2048 `customer_id` int(11) NOT NULL,
2049 `firstname` varchar(32) collate utf8_bin NOT NULL,
2050 `lastname` varchar(32) collate utf8_bin NOT NULL,
2051 `email` varchar(96) collate utf8_bin NOT NULL,
2052 `telephone` varchar(32) collate utf8_bin NOT NULL,
2053 `product` varchar(255) collate utf8_bin NOT NULL,
2054 `model` varchar(64) collate utf8_bin NOT NULL,
2055 `quantity` int(4) NOT NULL,
2056 `opened` tinyint(1) NOT NULL,
2057 `return_reason_id` int(11) NOT NULL,
2058 `return_action_id` int(11) NOT NULL,
2059 `return_status_id` int(11) NOT NULL,
2060 `comment` text collate utf8_bin,
2061 `date_ordered` date NOT NULL,
2062 `date_added` datetime NOT NULL,
2063 `date_modified` datetime NOT NULL,
2064 PRIMARY KEY (`return_id`)
2065) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_bin;
2066SET character_set_client = @saved_cs_client;
2067
2068--
2069-- Dumping data for table `return`
2070--
2071
2072LOCK TABLES `return` WRITE;
2073/*!40000 ALTER TABLE `return` DISABLE KEYS */;
2074/*!40000 ALTER TABLE `return` ENABLE KEYS */;
2075UNLOCK TABLES;
2076
2077--
2078-- Table structure for table `return_action`
2079--
2080
2081DROP TABLE IF EXISTS `return_action`;
2082SET @saved_cs_client = @@character_set_client;
2083SET character_set_client = utf8;
2084CREATE TABLE `return_action` (
2085 `return_action_id` int(11) NOT NULL auto_increment,
2086 `language_id` int(11) NOT NULL default '0',
2087 `name` varchar(64) collate utf8_bin NOT NULL default '',
2088 PRIMARY KEY (`return_action_id`,`language_id`)
2089) ENGINE=MyISAM AUTO_INCREMENT=4 DEFAULT CHARSET=utf8 COLLATE=utf8_bin;
2090SET character_set_client = @saved_cs_client;
2091
2092--
2093-- Dumping data for table `return_action`
2094--
2095
2096LOCK TABLES `return_action` WRITE;
2097/*!40000 ALTER TABLE `return_action` DISABLE KEYS */;
2098INSERT INTO `return_action` VALUES (1,1,'Refunded'),(2,1,'Credit Issued'),(3,1,'Replacement Sent');
2099/*!40000 ALTER TABLE `return_action` ENABLE KEYS */;
2100UNLOCK TABLES;
2101
2102--
2103-- Table structure for table `return_history`
2104--
2105
2106DROP TABLE IF EXISTS `return_history`;
2107SET @saved_cs_client = @@character_set_client;
2108SET character_set_client = utf8;
2109CREATE TABLE `return_history` (
2110 `return_history_id` int(11) NOT NULL auto_increment,
2111 `return_id` int(11) NOT NULL,
2112 `return_status_id` int(11) NOT NULL,
2113 `notify` tinyint(1) NOT NULL,
2114 `comment` text collate utf8_bin NOT NULL,
2115 `date_added` datetime NOT NULL,
2116 PRIMARY KEY (`return_history_id`)
2117) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_bin;
2118SET character_set_client = @saved_cs_client;
2119
2120--
2121-- Dumping data for table `return_history`
2122--
2123
2124LOCK TABLES `return_history` WRITE;
2125/*!40000 ALTER TABLE `return_history` DISABLE KEYS */;
2126/*!40000 ALTER TABLE `return_history` ENABLE KEYS */;
2127UNLOCK TABLES;
2128
2129--
2130-- Table structure for table `return_reason`
2131--
2132
2133DROP TABLE IF EXISTS `return_reason`;
2134SET @saved_cs_client = @@character_set_client;
2135SET character_set_client = utf8;
2136CREATE TABLE `return_reason` (
2137 `return_reason_id` int(11) NOT NULL auto_increment,
2138 `language_id` int(11) NOT NULL default '0',
2139 `name` varchar(128) collate utf8_bin NOT NULL default '',
2140 PRIMARY KEY (`return_reason_id`,`language_id`)
2141) ENGINE=MyISAM AUTO_INCREMENT=6 DEFAULT CHARSET=utf8 COLLATE=utf8_bin;
2142SET character_set_client = @saved_cs_client;
2143
2144--
2145-- Dumping data for table `return_reason`
2146--
2147
2148LOCK TABLES `return_reason` WRITE;
2149/*!40000 ALTER TABLE `return_reason` DISABLE KEYS */;
2150INSERT INTO `return_reason` VALUES (1,1,'Dead On Arrival'),(2,1,'Received Wrong Item'),(3,1,'Order Error'),(4,1,'Faulty, please supply details'),(5,1,'Other, please supply details');
2151/*!40000 ALTER TABLE `return_reason` ENABLE KEYS */;
2152UNLOCK TABLES;
2153
2154--
2155-- Table structure for table `return_status`
2156--
2157
2158DROP TABLE IF EXISTS `return_status`;
2159SET @saved_cs_client = @@character_set_client;
2160SET character_set_client = utf8;
2161CREATE TABLE `return_status` (
2162 `return_status_id` int(11) NOT NULL auto_increment,
2163 `language_id` int(11) NOT NULL default '0',
2164 `name` varchar(32) collate utf8_bin NOT NULL default '',
2165 PRIMARY KEY (`return_status_id`,`language_id`)
2166) ENGINE=MyISAM AUTO_INCREMENT=4 DEFAULT CHARSET=utf8 COLLATE=utf8_bin;
2167SET character_set_client = @saved_cs_client;
2168
2169--
2170-- Dumping data for table `return_status`
2171--
2172
2173LOCK TABLES `return_status` WRITE;
2174/*!40000 ALTER TABLE `return_status` DISABLE KEYS */;
2175INSERT INTO `return_status` VALUES (1,1,'Pending'),(3,1,'Complete'),(2,1,'Awaiting Products');
2176/*!40000 ALTER TABLE `return_status` ENABLE KEYS */;
2177UNLOCK TABLES;
2178
2179--
2180-- Table structure for table `review`
2181--
2182
2183DROP TABLE IF EXISTS `review`;
2184SET @saved_cs_client = @@character_set_client;
2185SET character_set_client = utf8;
2186CREATE TABLE `review` (
2187 `review_id` int(11) NOT NULL auto_increment,
2188 `product_id` int(11) NOT NULL,
2189 `customer_id` int(11) NOT NULL,
2190 `author` varchar(64) collate utf8_bin NOT NULL default '',
2191 `text` text collate utf8_bin NOT NULL,
2192 `rating` int(1) NOT NULL,
2193 `status` tinyint(1) NOT NULL default '0',
2194 `date_added` datetime NOT NULL default '0000-00-00 00:00:00',
2195 `date_modified` datetime NOT NULL default '0000-00-00 00:00:00',
2196 PRIMARY KEY (`review_id`),
2197 KEY `product_id` (`product_id`)
2198) ENGINE=MyISAM AUTO_INCREMENT=2 DEFAULT CHARSET=utf8 COLLATE=utf8_bin;
2199SET character_set_client = @saved_cs_client;
2200
2201--
2202-- Dumping data for table `review`
2203--
2204
2205LOCK TABLES `review` WRITE;
2206/*!40000 ALTER TABLE `review` DISABLE KEYS */;
2207INSERT INTO `review` VALUES (1,63,0,'Ed Lamberta','Unbelievable Service and product! Shipped same day of order and I recieved it in 2 days .It was easy to assemble and very high quality. ',5,1,'2012-10-17 20:32:28','0000-00-00 00:00:00');
2208/*!40000 ALTER TABLE `review` ENABLE KEYS */;
2209UNLOCK TABLES;
2210
2211--
2212-- Table structure for table `setting`
2213--
2214
2215DROP TABLE IF EXISTS `setting`;
2216SET @saved_cs_client = @@character_set_client;
2217SET character_set_client = utf8;
2218CREATE TABLE `setting` (
2219 `setting_id` int(11) NOT NULL auto_increment,
2220 `store_id` int(11) NOT NULL default '0',
2221 `group` varchar(32) collate utf8_bin NOT NULL,
2222 `key` varchar(64) collate utf8_bin NOT NULL default '',
2223 `value` text collate utf8_bin NOT NULL,
2224 `serialized` tinyint(1) NOT NULL,
2225 PRIMARY KEY (`setting_id`)
2226) ENGINE=MyISAM AUTO_INCREMENT=6150 DEFAULT CHARSET=utf8 COLLATE=utf8_bin;
2227SET character_set_client = @saved_cs_client;
2228
2229--
2230-- Dumping data for table `setting`
2231--
2232
2233LOCK TABLES `setting` WRITE;
2234/*!40000 ALTER TABLE `setting` DISABLE KEYS */;
2235INSERT INTO `setting` VALUES (1,0,'shipping','shipping_sort_order','3',0),(2,0,'sub_total','sub_total_sort_order','1',0),(3,0,'sub_total','sub_total_status','1',0),(4,0,'tax','tax_status','1',0),(5,0,'total','total_sort_order','9',0),(6,0,'total','total_status','1',0),(7,0,'tax','tax_sort_order','5',0),(8,0,'free_checkout','free_checkout_sort_order','1',0),(9,0,'cod','cod_sort_order','5',0),(10,0,'cod','cod_total','0.01',0),(11,0,'cod','cod_order_status_id','1',0),(12,0,'cod','cod_geo_zone_id','0',0),(13,0,'cod','cod_status','1',0),(14,0,'shipping','shipping_status','1',0),(15,0,'shipping','shipping_estimator','1',0),(5628,0,'config','config_google_analytics','',0),(27,0,'coupon','coupon_sort_order','4',0),(28,0,'coupon','coupon_status','1',0),(5777,0,'welcome','welcome_module','a:1:{i:1;a:5:{s:11:\"description\";a:1:{i:1;s:47:\"<p>\r\n WELCOME WELCOME WELCOME</p>\r\n\";}s:9:\"layout_id\";s:1:\"6\";s:8:\"position\";s:11:\"content_top\";s:6:\"status\";s:1:\"1\";s:10:\"sort_order\";s:0:\"\";}}',1),(5627,0,'config','config_error_filename','error.txt',0),(5626,0,'config','config_error_log','1',0),(34,0,'flat','flat_sort_order','1',0),(35,0,'flat','flat_status','1',0),(36,0,'flat','flat_geo_zone_id','0',0),(37,0,'flat','flat_tax_class_id','9',0),(5625,0,'config','config_error_display','1',0),(5624,0,'config','config_compression','0',0),(5623,0,'config','config_encryption','5319b970f23dfd796289d48101e202e2',0),(5620,0,'config','config_use_ssl','0',0),(5621,0,'config','config_seo_url','0',0),(5622,0,'config','config_maintenance','0',0),(3192,0,'featured','product','',0),(3193,0,'featured','featured_product','43,40,42,49,46,47,28',0),(41,0,'flat','flat_cost','5.00',0),(42,0,'credit','credit_sort_order','7',0),(43,0,'credit','credit_status','1',0),(5619,0,'config','config_fraud_status_id','7',0),(5618,0,'config','config_fraud_score','',0),(5617,0,'config','config_fraud_key','',0),(5616,0,'config','config_fraud_detection','0',0),(5615,0,'config','config_alert_emails','',0),(5614,0,'config','config_account_mail','0',0),(5613,0,'config','config_alert_mail','0',0),(53,0,'reward','reward_sort_order','2',0),(54,0,'reward','reward_status','1',0),(5612,0,'config','config_smtp_timeout','5',0),(56,0,'affiliate','affiliate_module','a:1:{i:0;a:4:{s:9:\"layout_id\";s:2:\"10\";s:8:\"position\";s:12:\"column_right\";s:6:\"status\";s:1:\"1\";s:10:\"sort_order\";s:1:\"1\";}}',1),(57,0,'category','category_module','a:2:{i:0;a:5:{s:9:\"layout_id\";s:1:\"3\";s:8:\"position\";s:11:\"column_left\";s:5:\"count\";s:1:\"0\";s:6:\"status\";s:1:\"1\";s:10:\"sort_order\";s:1:\"1\";}i:1;a:5:{s:9:\"layout_id\";s:1:\"2\";s:8:\"position\";s:11:\"column_left\";s:5:\"count\";s:1:\"0\";s:6:\"status\";s:1:\"1\";s:10:\"sort_order\";s:1:\"1\";}}',1),(5611,0,'config','config_smtp_port','25',0),(5610,0,'config','config_smtp_password','',0),(60,0,'account','account_module','a:1:{i:0;a:4:{s:9:\"layout_id\";s:1:\"6\";s:8:\"position\";s:12:\"column_right\";s:6:\"status\";s:1:\"1\";s:10:\"sort_order\";s:1:\"1\";}}',1),(5609,0,'config','config_smtp_username','',0),(5608,0,'config','config_smtp_host','',0),(5607,0,'config','config_mail_parameter','',0),(5606,0,'config','config_mail_protocol','mail',0),(5605,0,'config','config_image_cart_height','151',0),(5604,0,'config','config_image_cart_width','151',0),(5603,0,'config','config_image_wishlist_height','50',0),(5602,0,'config','config_image_wishlist_width','50',0),(5601,0,'config','config_image_compare_height','151',0),(5600,0,'config','config_image_compare_width','151',0),(5599,0,'config','config_image_related_height','151',0),(5598,0,'config','config_image_related_width','151',0),(5597,0,'config','config_image_additional_height','70',0),(5596,0,'config','config_image_additional_width','70',0),(5595,0,'config','config_image_product_height','151',0),(5594,0,'config','config_image_product_width','151',0),(5593,0,'config','config_image_popup_height','500',0),(5592,0,'config','config_image_popup_width','500',0),(5590,0,'config','config_image_thumb_width','340',0),(5591,0,'config','config_image_thumb_height','340',0),(93,0,'voucher','voucher_sort_order','8',0),(94,0,'voucher','voucher_status','1',0),(5588,0,'config','config_image_category_width','151',0),(5589,0,'config','config_image_category_height','151',0),(5587,0,'config','config_icon','data/cart.png',0),(5586,0,'config','config_logo','data/Logo.png',0),(5585,0,'config','config_return_status_id','2',0),(102,0,'free_checkout','free_checkout_status','1',0),(103,0,'free_checkout','free_checkout_order_status_id','1',0),(5584,0,'config','config_commission','5',0),(5583,0,'config','config_affiliate_id','4',0),(3495,0,'slideshow','slideshow_module','a:1:{i:0;a:7:{s:9:\"banner_id\";s:1:\"9\";s:5:\"width\";s:3:\"940\";s:6:\"height\";s:3:\"359\";s:9:\"layout_id\";s:1:\"1\";s:8:\"position\";s:11:\"content_top\";s:6:\"status\";s:1:\"1\";s:10:\"sort_order\";s:1:\"1\";}}',1),(108,0,'banner','banner_module','a:1:{i:0;a:7:{s:9:\"banner_id\";s:1:\"6\";s:5:\"width\";s:3:\"182\";s:6:\"height\";s:3:\"182\";s:9:\"layout_id\";s:1:\"3\";s:8:\"position\";s:11:\"column_left\";s:6:\"status\";s:1:\"1\";s:10:\"sort_order\";s:1:\"3\";}}',1),(5582,0,'config','config_stock_status_id','5',0),(5580,0,'config','config_stock_warning','0',0),(5581,0,'config','config_stock_checkout','0',0),(5579,0,'config','config_stock_display','0',0),(5578,0,'config','config_complete_status_id','5',0),(5577,0,'config','config_order_status_id','1',0),(5576,0,'config','config_invoice_prefix','INV-2012-00',0),(5575,0,'config','config_order_edit','100',0),(5573,0,'config','config_guest_checkout','1',0),(5574,0,'config','config_checkout_id','5',0),(5572,0,'config','config_cart_weight','1',0),(5571,0,'config','config_account_id','3',0),(5570,0,'config','config_customer_price','0',0),(5569,0,'config','config_customer_group_display','a:1:{i:0;s:1:\"1\";}',1),(5568,0,'config','config_customer_group_id','1',0),(5567,0,'config','config_customer_online','0',0),(5566,0,'config','config_tax_customer','shipping',0),(5565,0,'config','config_tax_default','shipping',0),(5564,0,'config','config_vat','0',0),(5563,0,'config','config_tax','1',0),(5562,0,'config','config_voucher_max','1000',0),(5561,0,'config','config_voucher_min','1',0),(5560,0,'config','config_upload_allowed','jpg, JPG, jpeg, gif, png, txt',0),(5559,0,'config','config_download','1',0),(5558,0,'config','config_review_status','1',0),(5555,0,'config','config_catalog_limit','15',0),(5556,0,'config','config_admin_limit','20',0),(5557,0,'config','config_product_count','0',0),(5554,0,'config','config_weight_class_id','6',0),(5552,0,'config','config_currency_auto','1',0),(5553,0,'config','config_length_class_id','3',0),(5551,0,'config','config_currency','USD',0),(5550,0,'config','config_admin_language','en',0),(5549,0,'config','config_language','en',0),(5548,0,'config','config_zone_id','3630',0),(5547,0,'config','config_country_id','223',0),(5546,0,'config','config_layout_id','4',0),(5545,0,'config','config_template','unistore',0),(5544,0,'config','config_meta_description','My Store',0),(5543,0,'config','config_title','Window Screens Now',0),(5542,0,'config','config_fax','',0),(5538,0,'config','config_owner','Your Name',0),(5539,0,'config','config_address','201 ABC Road\r\nLake Wales, Fl. 33859',0),(5540,0,'config','config_email','fga2002@hotmail.com',0),(5999,0,'unistore','background_image_attachment','scroll',0),(5996,0,'unistore','background_image','1',0),(5998,0,'unistore','background_image_repeat','no-repeat',0),(5997,0,'unistore','background_image_position','top left',0),(5995,0,'unistore','own_image','',0),(5994,0,'unistore','own_pattern','',0),(5993,0,'unistore','body_pattern','5',0),(5992,0,'unistore','bg_content','fafafa',0),(5991,0,'unistore','bg_footer','000000',0),(5990,0,'unistore','bg_general','ffffff',0),(5989,0,'unistore','bar_in_top_bottom_gradient','',0),(5988,0,'unistore','bar_in_top_top_gradient','',0),(5987,0,'unistore','top_bottom_gradient','fa3e05',0),(5986,0,'unistore','top_top_gradient','fa3e05',0),(5985,0,'unistore','categories_in_top_bottom_gradient','c9c9b9',0),(5984,0,'unistore','categories_in_top_top_gradient','c9c9b9',0),(5983,0,'unistore','hover_for_products','e9fa00',0),(5982,0,'unistore','content_color','e9fa00',0),(5981,0,'unistore','sale_ribbon_bottom_gradient','',0),(5980,0,'unistore','sale_ribbon_top_gradient','',0),(5978,0,'unistore','top_and_footer_top_gradient','',0),(5979,0,'unistore','top_and_footer_bottom_gradient','',0),(5977,0,'unistore','content_bottom_gradient','',0),(5976,0,'unistore','content_top_gradient','',0),(5975,0,'unistore','headlines_font','standard',0),(5974,0,'unistore','body_font','standard',0),(5973,0,'unistore','text_in_bar_in_top','ffffff',0),(5972,0,'unistore','text_in_top','',0),(5971,0,'unistore','categories_in_top','000000',0),(5970,0,'unistore','product_name_and_categories_on_subpages','',0),(5969,0,'unistore','headlines_footer','',0),(5968,0,'unistore','headlines_content','',0),(5541,0,'config','config_telephone','1-888-461-6444',0),(5537,0,'config','config_name','Window Screens Now',0),(5967,0,'unistore','new_price_and_footer_contact','fa0a5a',0),(5966,0,'unistore','body_text_footer','',0),(5965,0,'unistore','body_text_content','080008',0),(3612,0,'carousel','carousel_module','a:1:{i:0;a:9:{s:9:\"banner_id\";s:2:\"10\";s:5:\"limit\";s:1:\"4\";s:6:\"scroll\";s:1:\"3\";s:5:\"width\";s:3:\"200\";s:6:\"height\";s:3:\"200\";s:9:\"layout_id\";s:1:\"1\";s:8:\"position\";s:11:\"content_top\";s:6:\"status\";s:1:\"1\";s:10:\"sort_order\";s:1:\"2\";}}',1),(5964,0,'unistore','unistore_options_status','1',0),(5963,0,'unistore','unistore_color','0',0);
2236/*!40000 ALTER TABLE `setting` ENABLE KEYS */;
2237UNLOCK TABLES;
2238
2239--
2240-- Table structure for table `stock_status`
2241--
2242
2243DROP TABLE IF EXISTS `stock_status`;
2244SET @saved_cs_client = @@character_set_client;
2245SET character_set_client = utf8;
2246CREATE TABLE `stock_status` (
2247 `stock_status_id` int(11) NOT NULL auto_increment,
2248 `language_id` int(11) NOT NULL,
2249 `name` varchar(32) collate utf8_bin NOT NULL,
2250 PRIMARY KEY (`stock_status_id`,`language_id`)
2251) ENGINE=MyISAM AUTO_INCREMENT=9 DEFAULT CHARSET=utf8 COLLATE=utf8_bin;
2252SET character_set_client = @saved_cs_client;
2253
2254--
2255-- Dumping data for table `stock_status`
2256--
2257
2258LOCK TABLES `stock_status` WRITE;
2259/*!40000 ALTER TABLE `stock_status` DISABLE KEYS */;
2260INSERT INTO `stock_status` VALUES (7,1,'In Stock'),(8,1,'Pre-Order'),(5,1,'Out Of Stock'),(6,1,'2 - 3 Days');
2261/*!40000 ALTER TABLE `stock_status` ENABLE KEYS */;
2262UNLOCK TABLES;
2263
2264--
2265-- Table structure for table `store`
2266--
2267
2268DROP TABLE IF EXISTS `store`;
2269SET @saved_cs_client = @@character_set_client;
2270SET character_set_client = utf8;
2271CREATE TABLE `store` (
2272 `store_id` int(11) NOT NULL auto_increment,
2273 `name` varchar(64) collate utf8_bin NOT NULL,
2274 `url` varchar(255) collate utf8_bin NOT NULL,
2275 `ssl` varchar(255) collate utf8_bin NOT NULL,
2276 PRIMARY KEY (`store_id`)
2277) ENGINE=MyISAM AUTO_INCREMENT=2 DEFAULT CHARSET=utf8 COLLATE=utf8_bin;
2278SET character_set_client = @saved_cs_client;
2279
2280--
2281-- Dumping data for table `store`
2282--
2283
2284LOCK TABLES `store` WRITE;
2285/*!40000 ALTER TABLE `store` DISABLE KEYS */;
2286/*!40000 ALTER TABLE `store` ENABLE KEYS */;
2287UNLOCK TABLES;
2288
2289--
2290-- Table structure for table `tax_class`
2291--
2292
2293DROP TABLE IF EXISTS `tax_class`;
2294SET @saved_cs_client = @@character_set_client;
2295SET character_set_client = utf8;
2296CREATE TABLE `tax_class` (
2297 `tax_class_id` int(11) NOT NULL auto_increment,
2298 `title` varchar(32) collate utf8_bin NOT NULL default '',
2299 `description` varchar(255) collate utf8_bin NOT NULL default '',
2300 `date_added` datetime NOT NULL default '0000-00-00 00:00:00',
2301 `date_modified` datetime NOT NULL default '0000-00-00 00:00:00',
2302 PRIMARY KEY (`tax_class_id`)
2303) ENGINE=MyISAM AUTO_INCREMENT=11 DEFAULT CHARSET=utf8 COLLATE=utf8_bin;
2304SET character_set_client = @saved_cs_client;
2305
2306--
2307-- Dumping data for table `tax_class`
2308--
2309
2310LOCK TABLES `tax_class` WRITE;
2311/*!40000 ALTER TABLE `tax_class` DISABLE KEYS */;
2312INSERT INTO `tax_class` VALUES (9,'Taxable Goods','Taxed Stuff','2009-01-06 23:21:53','2011-09-23 14:07:50'),(10,'Downloadable Products','Downloadable','2011-09-21 22:19:39','2011-09-22 10:27:36');
2313/*!40000 ALTER TABLE `tax_class` ENABLE KEYS */;
2314UNLOCK TABLES;
2315
2316--
2317-- Table structure for table `tax_rate`
2318--
2319
2320DROP TABLE IF EXISTS `tax_rate`;
2321SET @saved_cs_client = @@character_set_client;
2322SET character_set_client = utf8;
2323CREATE TABLE `tax_rate` (
2324 `tax_rate_id` int(11) NOT NULL auto_increment,
2325 `geo_zone_id` int(11) NOT NULL default '0',
2326 `name` varchar(32) collate utf8_bin NOT NULL,
2327 `rate` decimal(15,4) NOT NULL default '0.0000',
2328 `type` char(1) collate utf8_bin NOT NULL,
2329 `date_added` datetime NOT NULL default '0000-00-00 00:00:00',
2330 `date_modified` datetime NOT NULL default '0000-00-00 00:00:00',
2331 PRIMARY KEY (`tax_rate_id`)
2332) ENGINE=MyISAM AUTO_INCREMENT=88 DEFAULT CHARSET=utf8 COLLATE=utf8_bin;
2333SET character_set_client = @saved_cs_client;
2334
2335--
2336-- Dumping data for table `tax_rate`
2337--
2338
2339LOCK TABLES `tax_rate` WRITE;
2340/*!40000 ALTER TABLE `tax_rate` DISABLE KEYS */;
2341INSERT INTO `tax_rate` VALUES (86,3,'VAT (17.5%)','17.5000','P','2011-03-09 21:17:10','2011-09-22 22:24:29'),(87,3,'Eco Tax (-2.00)','2.0000','F','2011-09-21 21:49:23','2011-09-23 00:40:19');
2342/*!40000 ALTER TABLE `tax_rate` ENABLE KEYS */;
2343UNLOCK TABLES;
2344
2345--
2346-- Table structure for table `tax_rate_to_customer_group`
2347--
2348
2349DROP TABLE IF EXISTS `tax_rate_to_customer_group`;
2350SET @saved_cs_client = @@character_set_client;
2351SET character_set_client = utf8;
2352CREATE TABLE `tax_rate_to_customer_group` (
2353 `tax_rate_id` int(11) NOT NULL,
2354 `customer_group_id` int(11) NOT NULL,
2355 PRIMARY KEY (`tax_rate_id`,`customer_group_id`)
2356) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_bin;
2357SET character_set_client = @saved_cs_client;
2358
2359--
2360-- Dumping data for table `tax_rate_to_customer_group`
2361--
2362
2363LOCK TABLES `tax_rate_to_customer_group` WRITE;
2364/*!40000 ALTER TABLE `tax_rate_to_customer_group` DISABLE KEYS */;
2365INSERT INTO `tax_rate_to_customer_group` VALUES (86,1),(87,1);
2366/*!40000 ALTER TABLE `tax_rate_to_customer_group` ENABLE KEYS */;
2367UNLOCK TABLES;
2368
2369--
2370-- Table structure for table `tax_rule`
2371--
2372
2373DROP TABLE IF EXISTS `tax_rule`;
2374SET @saved_cs_client = @@character_set_client;
2375SET character_set_client = utf8;
2376CREATE TABLE `tax_rule` (
2377 `tax_rule_id` int(11) NOT NULL auto_increment,
2378 `tax_class_id` int(11) NOT NULL,
2379 `tax_rate_id` int(11) NOT NULL,
2380 `based` varchar(10) collate utf8_bin NOT NULL,
2381 `priority` int(5) NOT NULL default '1',
2382 PRIMARY KEY (`tax_rule_id`)
2383) ENGINE=MyISAM AUTO_INCREMENT=129 DEFAULT CHARSET=utf8 COLLATE=utf8_bin;
2384SET character_set_client = @saved_cs_client;
2385
2386--
2387-- Dumping data for table `tax_rule`
2388--
2389
2390LOCK TABLES `tax_rule` WRITE;
2391/*!40000 ALTER TABLE `tax_rule` DISABLE KEYS */;
2392INSERT INTO `tax_rule` VALUES (121,10,86,'payment',1),(120,10,87,'store',0),(128,9,86,'shipping',1),(127,9,87,'shipping',2);
2393/*!40000 ALTER TABLE `tax_rule` ENABLE KEYS */;
2394UNLOCK TABLES;
2395
2396--
2397-- Table structure for table `url_alias`
2398--
2399
2400DROP TABLE IF EXISTS `url_alias`;
2401SET @saved_cs_client = @@character_set_client;
2402SET character_set_client = utf8;
2403CREATE TABLE `url_alias` (
2404 `url_alias_id` int(11) NOT NULL auto_increment,
2405 `query` varchar(255) collate utf8_bin NOT NULL,
2406 `keyword` varchar(255) collate utf8_bin NOT NULL,
2407 PRIMARY KEY (`url_alias_id`)
2408) ENGINE=MyISAM AUTO_INCREMENT=925 DEFAULT CHARSET=utf8 COLLATE=utf8_bin;
2409SET character_set_client = @saved_cs_client;
2410
2411--
2412-- Dumping data for table `url_alias`
2413--
2414
2415LOCK TABLES `url_alias` WRITE;
2416/*!40000 ALTER TABLE `url_alias` DISABLE KEYS */;
2417INSERT INTO `url_alias` VALUES (840,'product_id=60','plastic-corner-lock-mitre'),(881,'product_id=59','plastic-corner-lock-window-screen'),(873,'information_id=4','about_us'),(919,'category_id=72','patio-sliding-screen-door-parts-aluminum-replacement-wheels-rubber-spline-corner-locks-handles'),(843,'product_id=58','tension-spring-clips'),(842,'product_id=61','tension-spring-aluminum-window-screen'),(924,'product_id=64','screen-door-sliding-patio-insect-screens'),(923,'category_id=63','fiberglass-insect-window-screen-mesh-'),(911,'category_id=60','patio-sliding-screen-doors-insect-protection-screens'),(824,'product_id=75','aluminum-screen-mesh'),(826,'manufacturer_id=11','window-screen-manufacturer'),(846,'product_id=96','Window-screen-spline'),(852,'information_id=7','window screens'),(857,'product_id=119','pool-patio-screen-frame-1x2-extruded-frame'),(874,'product_id=120','insect-window-screen-mesh-fiberglass-screening,18x16,'),(875,'product_id=122','insect-fiberglass-window-screen-mesh-wholesale'),(870,'category_id=78','wholesale-window-screen-mesh-fiberglass-insect-window-screen-new,york,wire'),(871,'product_id=123','Insect-window-screen-fiberglass-mesh'),(905,'category_id=80','wholesale-aluminum-window-screen-frame'),(879,'product_id=124','fiberglass-window-screen-mesh-18x16,window,replacement'),(894,'product_id=112','window-screen-spline-roll-replacement-screening-spline'),(890,'product_id=125','window-screen-external-corner-lock-replacement-screen'),(885,'category_id=81','window-screen-parts-components-wholesale-replacement'),(888,'product_id=126','window-screen-internal-mitre-plastic-corner-locks-replacement'),(897,'product_id=127','window-screen-tension-springs-aluminum-springs'),(902,'product_id=128','window-screen-pull-tabs-replacement-aluminum-pull-tabs'),(907,'category_id=59','window-screens-custom-insect-replacement-screens'),(912,'category_id=76','aluminum-sliding-patio-screen-door-kits-replacement-screens'),(915,'category_id=62','Window-screen-parts-components-kits-replacement-window-parts'),(918,'category_id=77','pool-patio-1x2-extruded-aluminum-frame-flat-spline-closure-kits'),(920,'category_id=73','screen-roller-tools-spline-roller-tool');
2418/*!40000 ALTER TABLE `url_alias` ENABLE KEYS */;
2419UNLOCK TABLES;
2420
2421--
2422-- Table structure for table `user`
2423--
2424
2425DROP TABLE IF EXISTS `user`;
2426SET @saved_cs_client = @@character_set_client;
2427SET character_set_client = utf8;
2428CREATE TABLE `user` (
2429 `user_id` int(11) NOT NULL auto_increment,
2430 `user_group_id` int(11) NOT NULL,
2431 `username` varchar(20) collate utf8_bin NOT NULL default '',
2432 `password` varchar(40) collate utf8_bin NOT NULL default '',
2433 `salt` varchar(9) collate utf8_bin NOT NULL default '',
2434 `firstname` varchar(32) collate utf8_bin NOT NULL default '',
2435 `lastname` varchar(32) collate utf8_bin NOT NULL default '',
2436 `email` varchar(96) collate utf8_bin NOT NULL default '',
2437 `code` varchar(32) collate utf8_bin NOT NULL,
2438 `ip` varchar(40) collate utf8_bin NOT NULL default '',
2439 `status` tinyint(1) NOT NULL,
2440 `date_added` datetime NOT NULL default '0000-00-00 00:00:00',
2441 PRIMARY KEY (`user_id`)
2442) ENGINE=MyISAM AUTO_INCREMENT=3 DEFAULT CHARSET=utf8 COLLATE=utf8_bin;
2443SET character_set_client = @saved_cs_client;
2444
2445--
2446-- Dumping data for table `user`
2447--
2448
2449LOCK TABLES `user` WRITE;
2450/*!40000 ALTER TABLE `user` DISABLE KEYS */;
2451INSERT INTO `user` VALUES (1,1,'admin','452d1e7d17b408e8418c19a912ec323f4f05af89','336caa5a1','','','fga2002@hotmail.com','','71.203.60.174',1,'2012-08-28 20:01:20'),(2,1,'chad','58fbcb0ca9eb5b92fb31faa24935b54976d2beac','fb4c71c4f','Chad','Riedel','fga2002@hotmail.com','','72.188.32.31',1,'2012-08-29 10:49:30');
2452/*!40000 ALTER TABLE `user` ENABLE KEYS */;
2453UNLOCK TABLES;
2454
2455--
2456-- Table structure for table `user_group`
2457--
2458
2459DROP TABLE IF EXISTS `user_group`;
2460SET @saved_cs_client = @@character_set_client;
2461SET character_set_client = utf8;
2462CREATE TABLE `user_group` (
2463 `user_group_id` int(11) NOT NULL auto_increment,
2464 `name` varchar(64) collate utf8_bin NOT NULL,
2465 `permission` text collate utf8_bin NOT NULL,
2466 PRIMARY KEY (`user_group_id`)
2467) ENGINE=MyISAM AUTO_INCREMENT=11 DEFAULT CHARSET=utf8 COLLATE=utf8_bin;
2468SET character_set_client = @saved_cs_client;
2469
2470--
2471-- Dumping data for table `user_group`
2472--
2473
2474LOCK TABLES `user_group` WRITE;
2475/*!40000 ALTER TABLE `user_group` DISABLE KEYS */;
2476INSERT INTO `user_group` VALUES (1,'Top Administrator','a:2:{s:6:\"access\";a:127:{i:0;s:17:\"catalog/attribute\";i:1;s:23:\"catalog/attribute_group\";i:2;s:16:\"catalog/category\";i:3;s:16:\"catalog/download\";i:4;s:19:\"catalog/information\";i:5;s:20:\"catalog/manufacturer\";i:6;s:14:\"catalog/option\";i:7;s:15:\"catalog/product\";i:8;s:14:\"catalog/review\";i:9;s:18:\"common/filemanager\";i:10;s:13:\"design/banner\";i:11;s:13:\"design/layout\";i:12;s:14:\"extension/feed\";i:13;s:16:\"extension/module\";i:14;s:17:\"extension/payment\";i:15;s:18:\"extension/shipping\";i:16;s:15:\"extension/total\";i:17;s:16:\"feed/google_base\";i:18;s:19:\"feed/google_sitemap\";i:19;s:20:\"localisation/country\";i:20;s:21:\"localisation/currency\";i:21;s:21:\"localisation/geo_zone\";i:22;s:21:\"localisation/language\";i:23;s:25:\"localisation/length_class\";i:24;s:25:\"localisation/order_status\";i:25;s:26:\"localisation/return_action\";i:26;s:26:\"localisation/return_reason\";i:27;s:26:\"localisation/return_status\";i:28;s:25:\"localisation/stock_status\";i:29;s:22:\"localisation/tax_class\";i:30;s:21:\"localisation/tax_rate\";i:31;s:25:\"localisation/weight_class\";i:32;s:17:\"localisation/zone\";i:33;s:14:\"module/account\";i:34;s:16:\"module/affiliate\";i:35;s:13:\"module/banner\";i:36;s:17:\"module/bestseller\";i:37;s:15:\"module/carousel\";i:38;s:15:\"module/category\";i:39;s:15:\"module/featured\";i:40;s:18:\"module/google_talk\";i:41;s:18:\"module/information\";i:42;s:13:\"module/latest\";i:43;s:16:\"module/slideshow\";i:44;s:14:\"module/special\";i:45;s:12:\"module/store\";i:46;s:14:\"module/welcome\";i:47;s:24:\"payment/authorizenet_aim\";i:48;s:21:\"payment/bank_transfer\";i:49;s:14:\"payment/cheque\";i:50;s:11:\"payment/cod\";i:51;s:21:\"payment/free_checkout\";i:52;s:22:\"payment/klarna_invoice\";i:53;s:17:\"payment/klarna_pp\";i:54;s:14:\"payment/liqpay\";i:55;s:20:\"payment/moneybookers\";i:56;s:14:\"payment/nochex\";i:57;s:15:\"payment/paymate\";i:58;s:16:\"payment/paypoint\";i:59;s:13:\"payment/payza\";i:60;s:26:\"payment/perpetual_payments\";i:61;s:14:\"payment/pp_pro\";i:62;s:17:\"payment/pp_pro_uk\";i:63;s:19:\"payment/pp_standard\";i:64;s:15:\"payment/sagepay\";i:65;s:22:\"payment/sagepay_direct\";i:66;s:18:\"payment/sagepay_us\";i:67;s:19:\"payment/twocheckout\";i:68;s:28:\"payment/web_payment_software\";i:69;s:16:\"payment/worldpay\";i:70;s:27:\"report/affiliate_commission\";i:71;s:22:\"report/customer_credit\";i:72;s:22:\"report/customer_online\";i:73;s:21:\"report/customer_order\";i:74;s:22:\"report/customer_reward\";i:75;s:24:\"report/product_purchased\";i:76;s:21:\"report/product_viewed\";i:77;s:18:\"report/sale_coupon\";i:78;s:17:\"report/sale_order\";i:79;s:18:\"report/sale_return\";i:80;s:20:\"report/sale_shipping\";i:81;s:15:\"report/sale_tax\";i:82;s:14:\"sale/affiliate\";i:83;s:12:\"sale/contact\";i:84;s:11:\"sale/coupon\";i:85;s:13:\"sale/customer\";i:86;s:23:\"sale/customer_blacklist\";i:87;s:19:\"sale/customer_group\";i:88;s:10:\"sale/order\";i:89;s:11:\"sale/return\";i:90;s:12:\"sale/voucher\";i:91;s:18:\"sale/voucher_theme\";i:92;s:15:\"setting/setting\";i:93;s:13:\"setting/store\";i:94;s:16:\"shipping/auspost\";i:95;s:17:\"shipping/citylink\";i:96;s:14:\"shipping/fedex\";i:97;s:13:\"shipping/flat\";i:98;s:13:\"shipping/free\";i:99;s:13:\"shipping/item\";i:100;s:23:\"shipping/parcelforce_48\";i:101;s:15:\"shipping/pickup\";i:102;s:19:\"shipping/royal_mail\";i:103;s:12:\"shipping/ups\";i:104;s:13:\"shipping/usps\";i:105;s:15:\"shipping/weight\";i:106;s:11:\"tool/backup\";i:107;s:14:\"tool/error_log\";i:108;s:12:\"total/coupon\";i:109;s:12:\"total/credit\";i:110;s:14:\"total/handling\";i:111;s:16:\"total/klarna_fee\";i:112;s:19:\"total/low_order_fee\";i:113;s:12:\"total/reward\";i:114;s:14:\"total/shipping\";i:115;s:15:\"total/sub_total\";i:116;s:9:\"total/tax\";i:117;s:11:\"total/total\";i:118;s:13:\"total/voucher\";i:119;s:9:\"user/user\";i:120;s:20:\"user/user_permission\";i:121;s:15:\"module/unistore\";i:122;s:13:\"shipping/usps\";i:123;s:12:\"shipping/ups\";i:124;s:14:\"shipping/fedex\";i:125;s:14:\"module/welcome\";i:126;s:19:\"module/customFooter\";}s:6:\"modify\";a:127:{i:0;s:17:\"catalog/attribute\";i:1;s:23:\"catalog/attribute_group\";i:2;s:16:\"catalog/category\";i:3;s:16:\"catalog/download\";i:4;s:19:\"catalog/information\";i:5;s:20:\"catalog/manufacturer\";i:6;s:14:\"catalog/option\";i:7;s:15:\"catalog/product\";i:8;s:14:\"catalog/review\";i:9;s:18:\"common/filemanager\";i:10;s:13:\"design/banner\";i:11;s:13:\"design/layout\";i:12;s:14:\"extension/feed\";i:13;s:16:\"extension/module\";i:14;s:17:\"extension/payment\";i:15;s:18:\"extension/shipping\";i:16;s:15:\"extension/total\";i:17;s:16:\"feed/google_base\";i:18;s:19:\"feed/google_sitemap\";i:19;s:20:\"localisation/country\";i:20;s:21:\"localisation/currency\";i:21;s:21:\"localisation/geo_zone\";i:22;s:21:\"localisation/language\";i:23;s:25:\"localisation/length_class\";i:24;s:25:\"localisation/order_status\";i:25;s:26:\"localisation/return_action\";i:26;s:26:\"localisation/return_reason\";i:27;s:26:\"localisation/return_status\";i:28;s:25:\"localisation/stock_status\";i:29;s:22:\"localisation/tax_class\";i:30;s:21:\"localisation/tax_rate\";i:31;s:25:\"localisation/weight_class\";i:32;s:17:\"localisation/zone\";i:33;s:14:\"module/account\";i:34;s:16:\"module/affiliate\";i:35;s:13:\"module/banner\";i:36;s:17:\"module/bestseller\";i:37;s:15:\"module/carousel\";i:38;s:15:\"module/category\";i:39;s:15:\"module/featured\";i:40;s:18:\"module/google_talk\";i:41;s:18:\"module/information\";i:42;s:13:\"module/latest\";i:43;s:16:\"module/slideshow\";i:44;s:14:\"module/special\";i:45;s:12:\"module/store\";i:46;s:14:\"module/welcome\";i:47;s:24:\"payment/authorizenet_aim\";i:48;s:21:\"payment/bank_transfer\";i:49;s:14:\"payment/cheque\";i:50;s:11:\"payment/cod\";i:51;s:21:\"payment/free_checkout\";i:52;s:22:\"payment/klarna_invoice\";i:53;s:17:\"payment/klarna_pp\";i:54;s:14:\"payment/liqpay\";i:55;s:20:\"payment/moneybookers\";i:56;s:14:\"payment/nochex\";i:57;s:15:\"payment/paymate\";i:58;s:16:\"payment/paypoint\";i:59;s:13:\"payment/payza\";i:60;s:26:\"payment/perpetual_payments\";i:61;s:14:\"payment/pp_pro\";i:62;s:17:\"payment/pp_pro_uk\";i:63;s:19:\"payment/pp_standard\";i:64;s:15:\"payment/sagepay\";i:65;s:22:\"payment/sagepay_direct\";i:66;s:18:\"payment/sagepay_us\";i:67;s:19:\"payment/twocheckout\";i:68;s:28:\"payment/web_payment_software\";i:69;s:16:\"payment/worldpay\";i:70;s:27:\"report/affiliate_commission\";i:71;s:22:\"report/customer_credit\";i:72;s:22:\"report/customer_online\";i:73;s:21:\"report/customer_order\";i:74;s:22:\"report/customer_reward\";i:75;s:24:\"report/product_purchased\";i:76;s:21:\"report/product_viewed\";i:77;s:18:\"report/sale_coupon\";i:78;s:17:\"report/sale_order\";i:79;s:18:\"report/sale_return\";i:80;s:20:\"report/sale_shipping\";i:81;s:15:\"report/sale_tax\";i:82;s:14:\"sale/affiliate\";i:83;s:12:\"sale/contact\";i:84;s:11:\"sale/coupon\";i:85;s:13:\"sale/customer\";i:86;s:23:\"sale/customer_blacklist\";i:87;s:19:\"sale/customer_group\";i:88;s:10:\"sale/order\";i:89;s:11:\"sale/return\";i:90;s:12:\"sale/voucher\";i:91;s:18:\"sale/voucher_theme\";i:92;s:15:\"setting/setting\";i:93;s:13:\"setting/store\";i:94;s:16:\"shipping/auspost\";i:95;s:17:\"shipping/citylink\";i:96;s:14:\"shipping/fedex\";i:97;s:13:\"shipping/flat\";i:98;s:13:\"shipping/free\";i:99;s:13:\"shipping/item\";i:100;s:23:\"shipping/parcelforce_48\";i:101;s:15:\"shipping/pickup\";i:102;s:19:\"shipping/royal_mail\";i:103;s:12:\"shipping/ups\";i:104;s:13:\"shipping/usps\";i:105;s:15:\"shipping/weight\";i:106;s:11:\"tool/backup\";i:107;s:14:\"tool/error_log\";i:108;s:12:\"total/coupon\";i:109;s:12:\"total/credit\";i:110;s:14:\"total/handling\";i:111;s:16:\"total/klarna_fee\";i:112;s:19:\"total/low_order_fee\";i:113;s:12:\"total/reward\";i:114;s:14:\"total/shipping\";i:115;s:15:\"total/sub_total\";i:116;s:9:\"total/tax\";i:117;s:11:\"total/total\";i:118;s:13:\"total/voucher\";i:119;s:9:\"user/user\";i:120;s:20:\"user/user_permission\";i:121;s:15:\"module/unistore\";i:122;s:13:\"shipping/usps\";i:123;s:12:\"shipping/ups\";i:124;s:14:\"shipping/fedex\";i:125;s:14:\"module/welcome\";i:126;s:19:\"module/customFooter\";}}'),(10,'Demonstration','');
2477/*!40000 ALTER TABLE `user_group` ENABLE KEYS */;
2478UNLOCK TABLES;
2479
2480--
2481-- Table structure for table `voucher`
2482--
2483
2484DROP TABLE IF EXISTS `voucher`;
2485SET @saved_cs_client = @@character_set_client;
2486SET character_set_client = utf8;
2487CREATE TABLE `voucher` (
2488 `voucher_id` int(11) NOT NULL auto_increment,
2489 `order_id` int(11) NOT NULL,
2490 `code` varchar(10) collate utf8_bin NOT NULL,
2491 `from_name` varchar(64) collate utf8_bin NOT NULL,
2492 `from_email` varchar(96) collate utf8_bin NOT NULL,
2493 `to_name` varchar(64) collate utf8_bin NOT NULL,
2494 `to_email` varchar(96) collate utf8_bin NOT NULL,
2495 `voucher_theme_id` int(11) NOT NULL,
2496 `message` text collate utf8_bin NOT NULL,
2497 `amount` decimal(15,4) NOT NULL,
2498 `status` tinyint(1) NOT NULL,
2499 `date_added` datetime NOT NULL default '0000-00-00 00:00:00',
2500 PRIMARY KEY (`voucher_id`)
2501) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_bin;
2502SET character_set_client = @saved_cs_client;
2503
2504--
2505-- Dumping data for table `voucher`
2506--
2507
2508LOCK TABLES `voucher` WRITE;
2509/*!40000 ALTER TABLE `voucher` DISABLE KEYS */;
2510/*!40000 ALTER TABLE `voucher` ENABLE KEYS */;
2511UNLOCK TABLES;
2512
2513--
2514-- Table structure for table `voucher_history`
2515--
2516
2517DROP TABLE IF EXISTS `voucher_history`;
2518SET @saved_cs_client = @@character_set_client;
2519SET character_set_client = utf8;
2520CREATE TABLE `voucher_history` (
2521 `voucher_history_id` int(11) NOT NULL auto_increment,
2522 `voucher_id` int(11) NOT NULL,
2523 `order_id` int(11) NOT NULL,
2524 `amount` decimal(15,4) NOT NULL,
2525 `date_added` datetime NOT NULL,
2526 PRIMARY KEY (`voucher_history_id`)
2527) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_bin;
2528SET character_set_client = @saved_cs_client;
2529
2530--
2531-- Dumping data for table `voucher_history`
2532--
2533
2534LOCK TABLES `voucher_history` WRITE;
2535/*!40000 ALTER TABLE `voucher_history` DISABLE KEYS */;
2536/*!40000 ALTER TABLE `voucher_history` ENABLE KEYS */;
2537UNLOCK TABLES;
2538
2539--
2540-- Table structure for table `voucher_theme`
2541--
2542
2543DROP TABLE IF EXISTS `voucher_theme`;
2544SET @saved_cs_client = @@character_set_client;
2545SET character_set_client = utf8;
2546CREATE TABLE `voucher_theme` (
2547 `voucher_theme_id` int(11) NOT NULL auto_increment,
2548 `image` varchar(255) collate utf8_bin NOT NULL,
2549 PRIMARY KEY (`voucher_theme_id`)
2550) ENGINE=MyISAM AUTO_INCREMENT=9 DEFAULT CHARSET=utf8 COLLATE=utf8_bin;
2551SET character_set_client = @saved_cs_client;
2552
2553--
2554-- Dumping data for table `voucher_theme`
2555--
2556
2557LOCK TABLES `voucher_theme` WRITE;
2558/*!40000 ALTER TABLE `voucher_theme` DISABLE KEYS */;
2559INSERT INTO `voucher_theme` VALUES (8,'data/demo/canon_eos_5d_2.jpg'),(7,'data/demo/gift-voucher-birthday.jpg'),(6,'data/demo/apple_logo.jpg');
2560/*!40000 ALTER TABLE `voucher_theme` ENABLE KEYS */;
2561UNLOCK TABLES;
2562
2563--
2564-- Table structure for table `voucher_theme_description`
2565--
2566
2567DROP TABLE IF EXISTS `voucher_theme_description`;
2568SET @saved_cs_client = @@character_set_client;
2569SET character_set_client = utf8;
2570CREATE TABLE `voucher_theme_description` (
2571 `voucher_theme_id` int(11) NOT NULL,
2572 `language_id` int(11) NOT NULL,
2573 `name` varchar(32) collate utf8_bin NOT NULL,
2574 PRIMARY KEY (`voucher_theme_id`,`language_id`)
2575) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_bin;
2576SET character_set_client = @saved_cs_client;
2577
2578--
2579-- Dumping data for table `voucher_theme_description`
2580--
2581
2582LOCK TABLES `voucher_theme_description` WRITE;
2583/*!40000 ALTER TABLE `voucher_theme_description` DISABLE KEYS */;
2584INSERT INTO `voucher_theme_description` VALUES (6,1,'Christmas'),(7,1,'Birthday'),(8,1,'General');
2585/*!40000 ALTER TABLE `voucher_theme_description` ENABLE KEYS */;
2586UNLOCK TABLES;
2587
2588--
2589-- Table structure for table `weight_class`
2590--
2591
2592DROP TABLE IF EXISTS `weight_class`;
2593SET @saved_cs_client = @@character_set_client;
2594SET character_set_client = utf8;
2595CREATE TABLE `weight_class` (
2596 `weight_class_id` int(11) NOT NULL auto_increment,
2597 `value` decimal(15,8) NOT NULL default '0.00000000',
2598 PRIMARY KEY (`weight_class_id`)
2599) ENGINE=MyISAM AUTO_INCREMENT=7 DEFAULT CHARSET=utf8 COLLATE=utf8_bin;
2600SET character_set_client = @saved_cs_client;
2601
2602--
2603-- Dumping data for table `weight_class`
2604--
2605
2606LOCK TABLES `weight_class` WRITE;
2607/*!40000 ALTER TABLE `weight_class` DISABLE KEYS */;
2608INSERT INTO `weight_class` VALUES (1,'1.00000000'),(2,'1000.00000000'),(5,'2.20460000'),(6,'35.27400000');
2609/*!40000 ALTER TABLE `weight_class` ENABLE KEYS */;
2610UNLOCK TABLES;
2611
2612--
2613-- Table structure for table `weight_class_description`
2614--
2615
2616DROP TABLE IF EXISTS `weight_class_description`;
2617SET @saved_cs_client = @@character_set_client;
2618SET character_set_client = utf8;
2619CREATE TABLE `weight_class_description` (
2620 `weight_class_id` int(11) NOT NULL auto_increment,
2621 `language_id` int(11) NOT NULL,
2622 `title` varchar(32) collate utf8_bin NOT NULL,
2623 `unit` varchar(4) collate utf8_bin NOT NULL default '',
2624 PRIMARY KEY (`weight_class_id`,`language_id`)
2625) ENGINE=MyISAM AUTO_INCREMENT=7 DEFAULT CHARSET=utf8 COLLATE=utf8_bin;
2626SET character_set_client = @saved_cs_client;
2627
2628--
2629-- Dumping data for table `weight_class_description`
2630--
2631
2632LOCK TABLES `weight_class_description` WRITE;
2633/*!40000 ALTER TABLE `weight_class_description` DISABLE KEYS */;
2634INSERT INTO `weight_class_description` VALUES (1,1,'Kilogram','kg'),(2,1,'Gram','g'),(5,1,'Pound ','lb'),(6,1,'Ounce','oz');
2635/*!40000 ALTER TABLE `weight_class_description` ENABLE KEYS */;
2636UNLOCK TABLES;
2637
2638--
2639-- Table structure for table `zone`
2640--
2641
2642DROP TABLE IF EXISTS `zone`;
2643SET @saved_cs_client = @@character_set_client;
2644SET character_set_client = utf8;
2645CREATE TABLE `zone` (
2646 `zone_id` int(11) NOT NULL auto_increment,
2647 `country_id` int(11) NOT NULL,
2648 `name` varchar(128) collate utf8_bin NOT NULL,
2649 `code` varchar(32) collate utf8_bin NOT NULL default '',
2650 `status` tinyint(1) NOT NULL default '1',
2651 PRIMARY KEY (`zone_id`)
2652) ENGINE=MyISAM AUTO_INCREMENT=3970 DEFAULT CHARSET=utf8 COLLATE=utf8_bin;
2653SET character_set_client = @saved_cs_client;
2654
2655--
2656-- Dumping data for table `zone`
2657--
2658
2659LOCK TABLES `zone` WRITE;
2660/*!40000 ALTER TABLE `zone` DISABLE KEYS */;
2661INSERT INTO `zone` VALUES (1,1,'Badakhshan','BDS',1),(2,1,'Badghis','BDG',1),(3,1,'Baghlan','BGL',1),(4,1,'Balkh','BAL',1),(5,1,'Bamian','BAM',1),(6,1,'Farah','FRA',1),(7,1,'Faryab','FYB',1),(8,1,'Ghazni','GHA',1),(9,1,'Ghowr','GHO',1),(10,1,'Helmand','HEL',1),(11,1,'Herat','HER',1),(12,1,'Jowzjan','JOW',1),(13,1,'Kabul','KAB',1),(14,1,'Kandahar','KAN',1),(15,1,'Kapisa','KAP',1),(16,1,'Khost','KHO',1),(17,1,'Konar','KNR',1),(18,1,'Kondoz','KDZ',1),(19,1,'Laghman','LAG',1),(20,1,'Lowgar','LOW',1),(21,1,'Nangrahar','NAN',1),(22,1,'Nimruz','NIM',1),(23,1,'Nurestan','NUR',1),(24,1,'Oruzgan','ORU',1),(25,1,'Paktia','PIA',1),(26,1,'Paktika','PKA',1),(27,1,'Parwan','PAR',1),(28,1,'Samangan','SAM',1),(29,1,'Sar-e Pol','SAR',1),(30,1,'Takhar','TAK',1),(31,1,'Wardak','WAR',1),(32,1,'Zabol','ZAB',1),(33,2,'Berat','BR',1),(34,2,'Bulqize','BU',1),(35,2,'Delvine','DL',1),(36,2,'Devoll','DV',1),(37,2,'Diber','DI',1),(38,2,'Durres','DR',1),(39,2,'Elbasan','EL',1),(40,2,'Kolonje','ER',1),(41,2,'Fier','FR',1),(42,2,'Gjirokaster','GJ',1),(43,2,'Gramsh','GR',1),(44,2,'Has','HA',1),(45,2,'Kavaje','KA',1),(46,2,'Kurbin','KB',1),(47,2,'Kucove','KC',1),(48,2,'Korce','KO',1),(49,2,'Kruje','KR',1),(50,2,'Kukes','KU',1),(51,2,'Librazhd','LB',1),(52,2,'Lezhe','LE',1),(53,2,'Lushnje','LU',1),(54,2,'Malesi e Madhe','MM',1),(55,2,'Mallakaster','MK',1),(56,2,'Mat','MT',1),(57,2,'Mirdite','MR',1),(58,2,'Peqin','PQ',1),(59,2,'Permet','PR',1),(60,2,'Pogradec','PG',1),(61,2,'Puke','PU',1),(62,2,'Shkoder','SH',1),(63,2,'Skrapar','SK',1),(64,2,'Sarande','SR',1),(65,2,'Tepelene','TE',1),(66,2,'Tropoje','TP',1),(67,2,'Tirane','TR',1),(68,2,'Vlore','VL',1),(69,3,'Adrar','ADR',1),(70,3,'Ain Defla','ADE',1),(71,3,'Ain Temouchent','ATE',1),(72,3,'Alger','ALG',1),(73,3,'Annaba','ANN',1),(74,3,'Batna','BAT',1),(75,3,'Bechar','BEC',1),(76,3,'Bejaia','BEJ',1),(77,3,'Biskra','BIS',1),(78,3,'Blida','BLI',1),(79,3,'Bordj Bou Arreridj','BBA',1),(80,3,'Bouira','BOA',1),(81,3,'Boumerdes','BMD',1),(82,3,'Chlef','CHL',1),(83,3,'Constantine','CON',1),(84,3,'Djelfa','DJE',1),(85,3,'El Bayadh','EBA',1),(86,3,'El Oued','EOU',1),(87,3,'El Tarf','ETA',1),(88,3,'Ghardaia','GHA',1),(89,3,'Guelma','GUE',1),(90,3,'Illizi','ILL',1),(91,3,'Jijel','JIJ',1),(92,3,'Khenchela','KHE',1),(93,3,'Laghouat','LAG',1),(94,3,'Muaskar','MUA',1),(95,3,'Medea','MED',1),(96,3,'Mila','MIL',1),(97,3,'Mostaganem','MOS',1),(98,3,'M\'Sila','MSI',1),(99,3,'Naama','NAA',1),(100,3,'Oran','ORA',1),(101,3,'Ouargla','OUA',1),(102,3,'Oum el-Bouaghi','OEB',1),(103,3,'Relizane','REL',1),(104,3,'Saida','SAI',1),(105,3,'Setif','SET',1),(106,3,'Sidi Bel Abbes','SBA',1),(107,3,'Skikda','SKI',1),(108,3,'Souk Ahras','SAH',1),(109,3,'Tamanghasset','TAM',1),(110,3,'Tebessa','TEB',1),(111,3,'Tiaret','TIA',1),(112,3,'Tindouf','TIN',1),(113,3,'Tipaza','TIP',1),(114,3,'Tissemsilt','TIS',1),(115,3,'Tizi Ouzou','TOU',1),(116,3,'Tlemcen','TLE',1),(117,4,'Eastern','E',1),(118,4,'Manu\'a','M',1),(119,4,'Rose Island','R',1),(120,4,'Swains Island','S',1),(121,4,'Western','W',1),(122,5,'Andorra la Vella','ALV',1),(123,5,'Canillo','CAN',1),(124,5,'Encamp','ENC',1),(125,5,'Escaldes-Engordany','ESE',1),(126,5,'La Massana','LMA',1),(127,5,'Ordino','ORD',1),(128,5,'Sant Julia de Loria','SJL',1),(129,6,'Bengo','BGO',1),(130,6,'Benguela','BGU',1),(131,6,'Bie','BIE',1),(132,6,'Cabinda','CAB',1),(133,6,'Cuando-Cubango','CCU',1),(134,6,'Cuanza Norte','CNO',1),(135,6,'Cuanza Sul','CUS',1),(136,6,'Cunene','CNN',1),(137,6,'Huambo','HUA',1),(138,6,'Huila','HUI',1),(139,6,'Luanda','LUA',1),(140,6,'Lunda Norte','LNO',1),(141,6,'Lunda Sul','LSU',1),(142,6,'Malange','MAL',1),(143,6,'Moxico','MOX',1),(144,6,'Namibe','NAM',1),(145,6,'Uige','UIG',1),(146,6,'Zaire','ZAI',1),(147,9,'Saint George','ASG',1),(148,9,'Saint John','ASJ',1),(149,9,'Saint Mary','ASM',1),(150,9,'Saint Paul','ASL',1),(151,9,'Saint Peter','ASR',1),(152,9,'Saint Philip','ASH',1),(153,9,'Barbuda','BAR',1),(154,9,'Redonda','RED',1),(155,10,'Antartida e Islas del Atlantico','AN',1),(156,10,'Buenos Aires','BA',1),(157,10,'Catamarca','CA',1),(158,10,'Chaco','CH',1),(159,10,'Chubut','CU',1),(160,10,'Cordoba','CO',1),(161,10,'Corrientes','CR',1),(162,10,'Distrito Federal','DF',1),(163,10,'Entre Rios','ER',1),(164,10,'Formosa','FO',1),(165,10,'Jujuy','JU',1),(166,10,'La Pampa','LP',1),(167,10,'La Rioja','LR',1),(168,10,'Mendoza','ME',1),(169,10,'Misiones','MI',1),(170,10,'Neuquen','NE',1),(171,10,'Rio Negro','RN',1),(172,10,'Salta','SA',1),(173,10,'San Juan','SJ',1),(174,10,'San Luis','SL',1),(175,10,'Santa Cruz','SC',1),(176,10,'Santa Fe','SF',1),(177,10,'Santiago del Estero','SD',1),(178,10,'Tierra del Fuego','TF',1),(179,10,'Tucuman','TU',1),(180,11,'Aragatsotn','AGT',1),(181,11,'Ararat','ARR',1),(182,11,'Armavir','ARM',1),(183,11,'Geghark\'unik\'','GEG',1),(184,11,'Kotayk\'','KOT',1),(185,11,'Lorri','LOR',1),(186,11,'Shirak','SHI',1),(187,11,'Syunik\'','SYU',1),(188,11,'Tavush','TAV',1),(189,11,'Vayots\' Dzor','VAY',1),(190,11,'Yerevan','YER',1),(191,13,'Australian Capital Territory','ACT',1),(192,13,'New South Wales','NSW',1),(193,13,'Northern Territory','NT',1),(194,13,'Queensland','QLD',1),(195,13,'South Australia','SA',1),(196,13,'Tasmania','TAS',1),(197,13,'Victoria','VIC',1),(198,13,'Western Australia','WA',1),(199,14,'Burgenland','BUR',1),(200,14,'Kärnten','KAR',1),(201,14,'Niederösterreich','NOS',1),(202,14,'Oberösterreich','OOS',1),(203,14,'Salzburg','SAL',1),(204,14,'Steiermark','STE',1),(205,14,'Tirol','TIR',1),(206,14,'Vorarlberg','VOR',1),(207,14,'Wien','WIE',1),(208,15,'Ali Bayramli','AB',1),(209,15,'Abseron','ABS',1),(210,15,'AgcabAdi','AGC',1),(211,15,'Agdam','AGM',1),(212,15,'Agdas','AGS',1),(213,15,'Agstafa','AGA',1),(214,15,'Agsu','AGU',1),(215,15,'Astara','AST',1),(216,15,'Baki','BA',1),(217,15,'BabAk','BAB',1),(218,15,'BalakAn','BAL',1),(219,15,'BArdA','BAR',1),(220,15,'Beylaqan','BEY',1),(221,15,'Bilasuvar','BIL',1),(222,15,'Cabrayil','CAB',1),(223,15,'Calilabab','CAL',1),(224,15,'Culfa','CUL',1),(225,15,'Daskasan','DAS',1),(226,15,'Davaci','DAV',1),(227,15,'Fuzuli','FUZ',1),(228,15,'Ganca','GA',1),(229,15,'Gadabay','GAD',1),(230,15,'Goranboy','GOR',1),(231,15,'Goycay','GOY',1),(232,15,'Haciqabul','HAC',1),(233,15,'Imisli','IMI',1),(234,15,'Ismayilli','ISM',1),(235,15,'Kalbacar','KAL',1),(236,15,'Kurdamir','KUR',1),(237,15,'Lankaran','LA',1),(238,15,'Lacin','LAC',1),(239,15,'Lankaran','LAN',1),(240,15,'Lerik','LER',1),(241,15,'Masalli','MAS',1),(242,15,'Mingacevir','MI',1),(243,15,'Naftalan','NA',1),(244,15,'Neftcala','NEF',1),(245,15,'Oguz','OGU',1),(246,15,'Ordubad','ORD',1),(247,15,'Qabala','QAB',1),(248,15,'Qax','QAX',1),(249,15,'Qazax','QAZ',1),(250,15,'Qobustan','QOB',1),(251,15,'Quba','QBA',1),(252,15,'Qubadli','QBI',1),(253,15,'Qusar','QUS',1),(254,15,'Saki','SA',1),(255,15,'Saatli','SAT',1),(256,15,'Sabirabad','SAB',1),(257,15,'Sadarak','SAD',1),(258,15,'Sahbuz','SAH',1),(259,15,'Saki','SAK',1),(260,15,'Salyan','SAL',1),(261,15,'Sumqayit','SM',1),(262,15,'Samaxi','SMI',1),(263,15,'Samkir','SKR',1),(264,15,'Samux','SMX',1),(265,15,'Sarur','SAR',1),(266,15,'Siyazan','SIY',1),(267,15,'Susa','SS',1),(268,15,'Susa','SUS',1),(269,15,'Tartar','TAR',1),(270,15,'Tovuz','TOV',1),(271,15,'Ucar','UCA',1),(272,15,'Xankandi','XA',1),(273,15,'Xacmaz','XAC',1),(274,15,'Xanlar','XAN',1),(275,15,'Xizi','XIZ',1),(276,15,'Xocali','XCI',1),(277,15,'Xocavand','XVD',1),(278,15,'Yardimli','YAR',1),(279,15,'Yevlax','YEV',1),(280,15,'Zangilan','ZAN',1),(281,15,'Zaqatala','ZAQ',1),(282,15,'Zardab','ZAR',1),(283,15,'Naxcivan','NX',1),(284,16,'Acklins','ACK',1),(285,16,'Berry Islands','BER',1),(286,16,'Bimini','BIM',1),(287,16,'Black Point','BLK',1),(288,16,'Cat Island','CAT',1),(289,16,'Central Abaco','CAB',1),(290,16,'Central Andros','CAN',1),(291,16,'Central Eleuthera','CEL',1),(292,16,'City of Freeport','FRE',1),(293,16,'Crooked Island','CRO',1),(294,16,'East Grand Bahama','EGB',1),(295,16,'Exuma','EXU',1),(296,16,'Grand Cay','GRD',1),(297,16,'Harbour Island','HAR',1),(298,16,'Hope Town','HOP',1),(299,16,'Inagua','INA',1),(300,16,'Long Island','LNG',1),(301,16,'Mangrove Cay','MAN',1),(302,16,'Mayaguana','MAY',1),(303,16,'Moore\'s Island','MOO',1),(304,16,'North Abaco','NAB',1),(305,16,'North Andros','NAN',1),(306,16,'North Eleuthera','NEL',1),(307,16,'Ragged Island','RAG',1),(308,16,'Rum Cay','RUM',1),(309,16,'San Salvador','SAL',1),(310,16,'South Abaco','SAB',1),(311,16,'South Andros','SAN',1),(312,16,'South Eleuthera','SEL',1),(313,16,'Spanish Wells','SWE',1),(314,16,'West Grand Bahama','WGB',1),(315,17,'Capital','CAP',1),(316,17,'Central','CEN',1),(317,17,'Muharraq','MUH',1),(318,17,'Northern','NOR',1),(319,17,'Southern','SOU',1),(320,18,'Barisal','BAR',1),(321,18,'Chittagong','CHI',1),(322,18,'Dhaka','DHA',1),(323,18,'Khulna','KHU',1),(324,18,'Rajshahi','RAJ',1),(325,18,'Sylhet','SYL',1),(326,19,'Christ Church','CC',1),(327,19,'Saint Andrew','AND',1),(328,19,'Saint George','GEO',1),(329,19,'Saint James','JAM',1),(330,19,'Saint John','JOH',1),(331,19,'Saint Joseph','JOS',1),(332,19,'Saint Lucy','LUC',1),(333,19,'Saint Michael','MIC',1),(334,19,'Saint Peter','PET',1),(335,19,'Saint Philip','PHI',1),(336,19,'Saint Thomas','THO',1),(337,20,'Brestskaya (Brest)','BR',1),(338,20,'Homyel\'skaya (Homyel\')','HO',1),(339,20,'Horad Minsk','HM',1),(340,20,'Hrodzyenskaya (Hrodna)','HR',1),(341,20,'Mahilyowskaya (Mahilyow)','MA',1),(342,20,'Minskaya','MI',1),(343,20,'Vitsyebskaya (Vitsyebsk)','VI',1),(344,21,'Antwerpen','VAN',1),(345,21,'Brabant Wallon','WBR',1),(346,21,'Hainaut','WHT',1),(347,21,'Liege','WLG',1),(348,21,'Limburg','VLI',1),(349,21,'Luxembourg','WLX',1),(350,21,'Namur','WNA',1),(351,21,'Oost-Vlaanderen','VOV',1),(352,21,'Vlaams Brabant','VBR',1),(353,21,'West-Vlaanderen','VWV',1),(354,22,'Belize','BZ',1),(355,22,'Cayo','CY',1),(356,22,'Corozal','CR',1),(357,22,'Orange Walk','OW',1),(358,22,'Stann Creek','SC',1),(359,22,'Toledo','TO',1),(360,23,'Alibori','AL',1),(361,23,'Atakora','AK',1),(362,23,'Atlantique','AQ',1),(363,23,'Borgou','BO',1),(364,23,'Collines','CO',1),(365,23,'Donga','DO',1),(366,23,'Kouffo','KO',1),(367,23,'Littoral','LI',1),(368,23,'Mono','MO',1),(369,23,'Oueme','OU',1),(370,23,'Plateau','PL',1),(371,23,'Zou','ZO',1),(372,24,'Devonshire','DS',1),(373,24,'Hamilton City','HC',1),(374,24,'Hamilton','HA',1),(375,24,'Paget','PG',1),(376,24,'Pembroke','PB',1),(377,24,'Saint George City','GC',1),(378,24,'Saint George\'s','SG',1),(379,24,'Sandys','SA',1),(380,24,'Smith\'s','SM',1),(381,24,'Southampton','SH',1),(382,24,'Warwick','WA',1),(383,25,'Bumthang','BUM',1),(384,25,'Chukha','CHU',1),(385,25,'Dagana','DAG',1),(386,25,'Gasa','GAS',1),(387,25,'Haa','HAA',1),(388,25,'Lhuntse','LHU',1),(389,25,'Mongar','MON',1),(390,25,'Paro','PAR',1),(391,25,'Pemagatshel','PEM',1),(392,25,'Punakha','PUN',1),(393,25,'Samdrup Jongkhar','SJO',1),(394,25,'Samtse','SAT',1),(395,25,'Sarpang','SAR',1),(396,25,'Thimphu','THI',1),(397,25,'Trashigang','TRG',1),(398,25,'Trashiyangste','TRY',1),(399,25,'Trongsa','TRO',1),(400,25,'Tsirang','TSI',1),(401,25,'Wangdue Phodrang','WPH',1),(402,25,'Zhemgang','ZHE',1),(403,26,'Beni','BEN',1),(404,26,'Chuquisaca','CHU',1),(405,26,'Cochabamba','COC',1),(406,26,'La Paz','LPZ',1),(407,26,'Oruro','ORU',1),(408,26,'Pando','PAN',1),(409,26,'Potosi','POT',1),(410,26,'Santa Cruz','SCZ',1),(411,26,'Tarija','TAR',1),(412,27,'Brcko district','BRO',1),(413,27,'Unsko-Sanski Kanton','FUS',1),(414,27,'Posavski Kanton','FPO',1),(415,27,'Tuzlanski Kanton','FTU',1),(416,27,'Zenicko-Dobojski Kanton','FZE',1),(417,27,'Bosanskopodrinjski Kanton','FBP',1),(418,27,'Srednjebosanski Kanton','FSB',1),(419,27,'Hercegovacko-neretvanski Kanton','FHN',1),(420,27,'Zapadnohercegovacka Zupanija','FZH',1),(421,27,'Kanton Sarajevo','FSA',1),(422,27,'Zapadnobosanska','FZA',1),(423,27,'Banja Luka','SBL',1),(424,27,'Doboj','SDO',1),(425,27,'Bijeljina','SBI',1),(426,27,'Vlasenica','SVL',1),(427,27,'Sarajevo-Romanija or Sokolac','SSR',1),(428,27,'Foca','SFO',1),(429,27,'Trebinje','STR',1),(430,28,'Central','CE',1),(431,28,'Ghanzi','GH',1),(432,28,'Kgalagadi','KD',1),(433,28,'Kgatleng','KT',1),(434,28,'Kweneng','KW',1),(435,28,'Ngamiland','NG',1),(436,28,'North East','NE',1),(437,28,'North West','NW',1),(438,28,'South East','SE',1),(439,28,'Southern','SO',1),(440,30,'Acre','AC',1),(441,30,'Alagoas','AL',1),(442,30,'Amapa','AP',1),(443,30,'Amazonas','AM',1),(444,30,'Bahia','BA',1),(445,30,'Ceara','CE',1),(446,30,'Distrito Federal','DF',1),(447,30,'Espirito Santo','ES',1),(448,30,'Goias','GO',1),(449,30,'Maranhao','MA',1),(450,30,'Mato Grosso','MT',1),(451,30,'Mato Grosso do Sul','MS',1),(452,30,'Minas Gerais','MG',1),(453,30,'Para','PA',1),(454,30,'Paraiba','PB',1),(455,30,'Parana','PR',1),(456,30,'Pernambuco','PE',1),(457,30,'Piaui','PI',1),(458,30,'Rio de Janeiro','RJ',1),(459,30,'Rio Grande do Norte','RN',1),(460,30,'Rio Grande do Sul','RS',1),(461,30,'Rondonia','RO',1),(462,30,'Roraima','RR',1),(463,30,'Santa Catarina','SC',1),(464,30,'Sao Paulo','SP',1),(465,30,'Sergipe','SE',1),(466,30,'Tocantins','TO',1),(467,31,'Peros Banhos','PB',1),(468,31,'Salomon Islands','SI',1),(469,31,'Nelsons Island','NI',1),(470,31,'Three Brothers','TB',1),(471,31,'Eagle Islands','EA',1),(472,31,'Danger Island','DI',1),(473,31,'Egmont Islands','EG',1),(474,31,'Diego Garcia','DG',1),(475,32,'Belait','BEL',1),(476,32,'Brunei and Muara','BRM',1),(477,32,'Temburong','TEM',1),(478,32,'Tutong','TUT',1),(479,33,'Blagoevgrad','',1),(480,33,'Burgas','',1),(481,33,'Dobrich','',1),(482,33,'Gabrovo','',1),(483,33,'Haskovo','',1),(484,33,'Kardjali','',1),(485,33,'Kyustendil','',1),(486,33,'Lovech','',1),(487,33,'Montana','',1),(488,33,'Pazardjik','',1),(489,33,'Pernik','',1),(490,33,'Pleven','',1),(491,33,'Plovdiv','',1),(492,33,'Razgrad','',1),(493,33,'Shumen','',1),(494,33,'Silistra','',1),(495,33,'Sliven','',1),(496,33,'Smolyan','',1),(497,33,'Sofia','',1),(498,33,'Sofia - town','',1),(499,33,'Stara Zagora','',1),(500,33,'Targovishte','',1),(501,33,'Varna','',1),(502,33,'Veliko Tarnovo','',1),(503,33,'Vidin','',1),(504,33,'Vratza','',1),(505,33,'Yambol','',1),(506,34,'Bale','BAL',1),(507,34,'Bam','BAM',1),(508,34,'Banwa','BAN',1),(509,34,'Bazega','BAZ',1),(510,34,'Bougouriba','BOR',1),(511,34,'Boulgou','BLG',1),(512,34,'Boulkiemde','BOK',1),(513,34,'Comoe','COM',1),(514,34,'Ganzourgou','GAN',1),(515,34,'Gnagna','GNA',1),(516,34,'Gourma','GOU',1),(517,34,'Houet','HOU',1),(518,34,'Ioba','IOA',1),(519,34,'Kadiogo','KAD',1),(520,34,'Kenedougou','KEN',1),(521,34,'Komondjari','KOD',1),(522,34,'Kompienga','KOP',1),(523,34,'Kossi','KOS',1),(524,34,'Koulpelogo','KOL',1),(525,34,'Kouritenga','KOT',1),(526,34,'Kourweogo','KOW',1),(527,34,'Leraba','LER',1),(528,34,'Loroum','LOR',1),(529,34,'Mouhoun','MOU',1),(530,34,'Nahouri','NAH',1),(531,34,'Namentenga','NAM',1),(532,34,'Nayala','NAY',1),(533,34,'Noumbiel','NOU',1),(534,34,'Oubritenga','OUB',1),(535,34,'Oudalan','OUD',1),(536,34,'Passore','PAS',1),(537,34,'Poni','PON',1),(538,34,'Sanguie','SAG',1),(539,34,'Sanmatenga','SAM',1),(540,34,'Seno','SEN',1),(541,34,'Sissili','SIS',1),(542,34,'Soum','SOM',1),(543,34,'Sourou','SOR',1),(544,34,'Tapoa','TAP',1),(545,34,'Tuy','TUY',1),(546,34,'Yagha','YAG',1),(547,34,'Yatenga','YAT',1),(548,34,'Ziro','ZIR',1),(549,34,'Zondoma','ZOD',1),(550,34,'Zoundweogo','ZOW',1),(551,35,'Bubanza','BB',1),(552,35,'Bujumbura','BJ',1),(553,35,'Bururi','BR',1),(554,35,'Cankuzo','CA',1),(555,35,'Cibitoke','CI',1),(556,35,'Gitega','GI',1),(557,35,'Karuzi','KR',1),(558,35,'Kayanza','KY',1),(559,35,'Kirundo','KI',1),(560,35,'Makamba','MA',1),(561,35,'Muramvya','MU',1),(562,35,'Muyinga','MY',1),(563,35,'Mwaro','MW',1),(564,35,'Ngozi','NG',1),(565,35,'Rutana','RT',1),(566,35,'Ruyigi','RY',1),(567,36,'Phnom Penh','PP',1),(568,36,'Preah Seihanu (Kompong Som or Sihanoukville)','PS',1),(569,36,'Pailin','PA',1),(570,36,'Keb','KB',1),(571,36,'Banteay Meanchey','BM',1),(572,36,'Battambang','BA',1),(573,36,'Kampong Cham','KM',1),(574,36,'Kampong Chhnang','KN',1),(575,36,'Kampong Speu','KU',1),(576,36,'Kampong Som','KO',1),(577,36,'Kampong Thom','KT',1),(578,36,'Kampot','KP',1),(579,36,'Kandal','KL',1),(580,36,'Kaoh Kong','KK',1),(581,36,'Kratie','KR',1),(582,36,'Mondul Kiri','MK',1),(583,36,'Oddar Meancheay','OM',1),(584,36,'Pursat','PU',1),(585,36,'Preah Vihear','PR',1),(586,36,'Prey Veng','PG',1),(587,36,'Ratanak Kiri','RK',1),(588,36,'Siemreap','SI',1),(589,36,'Stung Treng','ST',1),(590,36,'Svay Rieng','SR',1),(591,36,'Takeo','TK',1),(592,37,'Adamawa (Adamaoua)','ADA',1),(593,37,'Centre','CEN',1),(594,37,'East (Est)','EST',1),(595,37,'Extreme North (Extreme-Nord)','EXN',1),(596,37,'Littoral','LIT',1),(597,37,'North (Nord)','NOR',1),(598,37,'Northwest (Nord-Ouest)','NOT',1),(599,37,'West (Ouest)','OUE',1),(600,37,'South (Sud)','SUD',1),(601,37,'Southwest (Sud-Ouest).','SOU',1),(602,38,'Alberta','AB',1),(603,38,'British Columbia','BC',1),(604,38,'Manitoba','MB',1),(605,38,'New Brunswick','NB',1),(606,38,'Newfoundland and Labrador','NL',1),(607,38,'Northwest Territories','NT',1),(608,38,'Nova Scotia','NS',1),(609,38,'Nunavut','NU',1),(610,38,'Ontario','ON',1),(611,38,'Prince Edward Island','PE',1),(612,38,'Québec','QC',1),(613,38,'Saskatchewan','SK',1),(614,38,'Yukon Territory','YT',1),(615,39,'Boa Vista','BV',1),(616,39,'Brava','BR',1),(617,39,'Calheta de Sao Miguel','CS',1),(618,39,'Maio','MA',1),(619,39,'Mosteiros','MO',1),(620,39,'Paul','PA',1),(621,39,'Porto Novo','PN',1),(622,39,'Praia','PR',1),(623,39,'Ribeira Grande','RG',1),(624,39,'Sal','SL',1),(625,39,'Santa Catarina','CA',1),(626,39,'Santa Cruz','CR',1),(627,39,'Sao Domingos','SD',1),(628,39,'Sao Filipe','SF',1),(629,39,'Sao Nicolau','SN',1),(630,39,'Sao Vicente','SV',1),(631,39,'Tarrafal','TA',1),(632,40,'Creek','CR',1),(633,40,'Eastern','EA',1),(634,40,'Midland','ML',1),(635,40,'South Town','ST',1),(636,40,'Spot Bay','SP',1),(637,40,'Stake Bay','SK',1),(638,40,'West End','WD',1),(639,40,'Western','WN',1),(640,41,'Bamingui-Bangoran','BBA',1),(641,41,'Basse-Kotto','BKO',1),(642,41,'Haute-Kotto','HKO',1),(643,41,'Haut-Mbomou','HMB',1),(644,41,'Kemo','KEM',1),(645,41,'Lobaye','LOB',1),(646,41,'Mambere-KadeÔ','MKD',1),(647,41,'Mbomou','MBO',1),(648,41,'Nana-Mambere','NMM',1),(649,41,'Ombella-M\'Poko','OMP',1),(650,41,'Ouaka','OUK',1),(651,41,'Ouham','OUH',1),(652,41,'Ouham-Pende','OPE',1),(653,41,'Vakaga','VAK',1),(654,41,'Nana-Grebizi','NGR',1),(655,41,'Sangha-Mbaere','SMB',1),(656,41,'Bangui','BAN',1),(657,42,'Batha','BA',1),(658,42,'Biltine','BI',1),(659,42,'Borkou-Ennedi-Tibesti','BE',1),(660,42,'Chari-Baguirmi','CB',1),(661,42,'Guera','GU',1),(662,42,'Kanem','KA',1),(663,42,'Lac','LA',1),(664,42,'Logone Occidental','LC',1),(665,42,'Logone Oriental','LR',1),(666,42,'Mayo-Kebbi','MK',1),(667,42,'Moyen-Chari','MC',1),(668,42,'Ouaddai','OU',1),(669,42,'Salamat','SA',1),(670,42,'Tandjile','TA',1),(671,43,'Aisen del General Carlos Ibanez','AI',1),(672,43,'Antofagasta','AN',1),(673,43,'Araucania','AR',1),(674,43,'Atacama','AT',1),(675,43,'Bio-Bio','BI',1),(676,43,'Coquimbo','CO',1),(677,43,'Libertador General Bernardo O\'Hi','LI',1),(678,43,'Los Lagos','LL',1),(679,43,'Magallanes y de la Antartica Chi','MA',1),(680,43,'Maule','ML',1),(681,43,'Region Metropolitana','RM',1),(682,43,'Tarapaca','TA',1),(683,43,'Valparaiso','VS',1),(684,44,'Anhui','AN',1),(685,44,'Beijing','BE',1),(686,44,'Chongqing','CH',1),(687,44,'Fujian','FU',1),(688,44,'Gansu','GA',1),(689,44,'Guangdong','GU',1),(690,44,'Guangxi','GX',1),(691,44,'Guizhou','GZ',1),(692,44,'Hainan','HA',1),(693,44,'Hebei','HB',1),(694,44,'Heilongjiang','HL',1),(695,44,'Henan','HE',1),(696,44,'Hong Kong','HK',1),(697,44,'Hubei','HU',1),(698,44,'Hunan','HN',1),(699,44,'Inner Mongolia','IM',1),(700,44,'Jiangsu','JI',1),(701,44,'Jiangxi','JX',1),(702,44,'Jilin','JL',1),(703,44,'Liaoning','LI',1),(704,44,'Macau','MA',1),(705,44,'Ningxia','NI',1),(706,44,'Shaanxi','SH',1),(707,44,'Shandong','SA',1),(708,44,'Shanghai','SG',1),(709,44,'Shanxi','SX',1),(710,44,'Sichuan','SI',1),(711,44,'Tianjin','TI',1),(712,44,'Xinjiang','XI',1),(713,44,'Yunnan','YU',1),(714,44,'Zhejiang','ZH',1),(715,46,'Direction Island','D',1),(716,46,'Home Island','H',1),(717,46,'Horsburgh Island','O',1),(718,46,'South Island','S',1),(719,46,'West Island','W',1),(720,47,'Amazonas','AMZ',1),(721,47,'Antioquia','ANT',1),(722,47,'Arauca','ARA',1),(723,47,'Atlantico','ATL',1),(724,47,'Bogota D.C.','BDC',1),(725,47,'Bolivar','BOL',1),(726,47,'Boyaca','BOY',1),(727,47,'Caldas','CAL',1),(728,47,'Caqueta','CAQ',1),(729,47,'Casanare','CAS',1),(730,47,'Cauca','CAU',1),(731,47,'Cesar','CES',1),(732,47,'Choco','CHO',1),(733,47,'Cordoba','COR',1),(734,47,'Cundinamarca','CAM',1),(735,47,'Guainia','GNA',1),(736,47,'Guajira','GJR',1),(737,47,'Guaviare','GVR',1),(738,47,'Huila','HUI',1),(739,47,'Magdalena','MAG',1),(740,47,'Meta','MET',1),(741,47,'Narino','NAR',1),(742,47,'Norte de Santander','NDS',1),(743,47,'Putumayo','PUT',1),(744,47,'Quindio','QUI',1),(745,47,'Risaralda','RIS',1),(746,47,'San Andres y Providencia','SAP',1),(747,47,'Santander','SAN',1),(748,47,'Sucre','SUC',1),(749,47,'Tolima','TOL',1),(750,47,'Valle del Cauca','VDC',1),(751,47,'Vaupes','VAU',1),(752,47,'Vichada','VIC',1),(753,48,'Grande Comore','G',1),(754,48,'Anjouan','A',1),(755,48,'Moheli','M',1),(756,49,'Bouenza','BO',1),(757,49,'Brazzaville','BR',1),(758,49,'Cuvette','CU',1),(759,49,'Cuvette-Ouest','CO',1),(760,49,'Kouilou','KO',1),(761,49,'Lekoumou','LE',1),(762,49,'Likouala','LI',1),(763,49,'Niari','NI',1),(764,49,'Plateaux','PL',1),(765,49,'Pool','PO',1),(766,49,'Sangha','SA',1),(767,50,'Pukapuka','PU',1),(768,50,'Rakahanga','RK',1),(769,50,'Manihiki','MK',1),(770,50,'Penrhyn','PE',1),(771,50,'Nassau Island','NI',1),(772,50,'Surwarrow','SU',1),(773,50,'Palmerston','PA',1),(774,50,'Aitutaki','AI',1),(775,50,'Manuae','MA',1),(776,50,'Takutea','TA',1),(777,50,'Mitiaro','MT',1),(778,50,'Atiu','AT',1),(779,50,'Mauke','MU',1),(780,50,'Rarotonga','RR',1),(781,50,'Mangaia','MG',1),(782,51,'Alajuela','AL',1),(783,51,'Cartago','CA',1),(784,51,'Guanacaste','GU',1),(785,51,'Heredia','HE',1),(786,51,'Limon','LI',1),(787,51,'Puntarenas','PU',1),(788,51,'San Jose','SJ',1),(789,52,'Abengourou','ABE',1),(790,52,'Abidjan','ABI',1),(791,52,'Aboisso','ABO',1),(792,52,'Adiake','ADI',1),(793,52,'Adzope','ADZ',1),(794,52,'Agboville','AGB',1),(795,52,'Agnibilekrou','AGN',1),(796,52,'Alepe','ALE',1),(797,52,'Bocanda','BOC',1),(798,52,'Bangolo','BAN',1),(799,52,'Beoumi','BEO',1),(800,52,'Biankouma','BIA',1),(801,52,'Bondoukou','BDK',1),(802,52,'Bongouanou','BGN',1),(803,52,'Bouafle','BFL',1),(804,52,'Bouake','BKE',1),(805,52,'Bouna','BNA',1),(806,52,'Boundiali','BDL',1),(807,52,'Dabakala','DKL',1),(808,52,'Dabou','DBU',1),(809,52,'Daloa','DAL',1),(810,52,'Danane','DAN',1),(811,52,'Daoukro','DAO',1),(812,52,'Dimbokro','DIM',1),(813,52,'Divo','DIV',1),(814,52,'Duekoue','DUE',1),(815,52,'Ferkessedougou','FER',1),(816,52,'Gagnoa','GAG',1),(817,52,'Grand-Bassam','GBA',1),(818,52,'Grand-Lahou','GLA',1),(819,52,'Guiglo','GUI',1),(820,52,'Issia','ISS',1),(821,52,'Jacqueville','JAC',1),(822,52,'Katiola','KAT',1),(823,52,'Korhogo','KOR',1),(824,52,'Lakota','LAK',1),(825,52,'Man','MAN',1),(826,52,'Mankono','MKN',1),(827,52,'Mbahiakro','MBA',1),(828,52,'Odienne','ODI',1),(829,52,'Oume','OUM',1),(830,52,'Sakassou','SAK',1),(831,52,'San-Pedro','SPE',1),(832,52,'Sassandra','SAS',1),(833,52,'Seguela','SEG',1),(834,52,'Sinfra','SIN',1),(835,52,'Soubre','SOU',1),(836,52,'Tabou','TAB',1),(837,52,'Tanda','TAN',1),(838,52,'Tiebissou','TIE',1),(839,52,'Tingrela','TIN',1),(840,52,'Tiassale','TIA',1),(841,52,'Touba','TBA',1),(842,52,'Toulepleu','TLP',1),(843,52,'Toumodi','TMD',1),(844,52,'Vavoua','VAV',1),(845,52,'Yamoussoukro','YAM',1),(846,52,'Zuenoula','ZUE',1),(847,53,'Bjelovar-Bilogora','BB',1),(848,53,'City of Zagreb','CZ',1),(849,53,'Dubrovnik-Neretva','DN',1),(850,53,'Istra','IS',1),(851,53,'Karlovac','KA',1),(852,53,'Koprivnica-Krizevci','KK',1),(853,53,'Krapina-Zagorje','KZ',1),(854,53,'Lika-Senj','LS',1),(855,53,'Medimurje','ME',1),(856,53,'Osijek-Baranja','OB',1),(857,53,'Pozega-Slavonia','PS',1),(858,53,'Primorje-Gorski Kotar','PG',1),(859,53,'Sibenik','SI',1),(860,53,'Sisak-Moslavina','SM',1),(861,53,'Slavonski Brod-Posavina','SB',1),(862,53,'Split-Dalmatia','SD',1),(863,53,'Varazdin','VA',1),(864,53,'Virovitica-Podravina','VP',1),(865,53,'Vukovar-Srijem','VS',1),(866,53,'Zadar-Knin','ZK',1),(867,53,'Zagreb','ZA',1),(868,54,'Camaguey','CA',1),(869,54,'Ciego de Avila','CD',1),(870,54,'Cienfuegos','CI',1),(871,54,'Ciudad de La Habana','CH',1),(872,54,'Granma','GR',1),(873,54,'Guantanamo','GU',1),(874,54,'Holguin','HO',1),(875,54,'Isla de la Juventud','IJ',1),(876,54,'La Habana','LH',1),(877,54,'Las Tunas','LT',1),(878,54,'Matanzas','MA',1),(879,54,'Pinar del Rio','PR',1),(880,54,'Sancti Spiritus','SS',1),(881,54,'Santiago de Cuba','SC',1),(882,54,'Villa Clara','VC',1),(883,55,'Famagusta','F',1),(884,55,'Kyrenia','K',1),(885,55,'Larnaca','A',1),(886,55,'Limassol','I',1),(887,55,'Nicosia','N',1),(888,55,'Paphos','P',1),(889,56,'Ústecký','U',1),(890,56,'JihoÄeský','C',1),(891,56,'Jihomoravský','B',1),(892,56,'Karlovarský','K',1),(893,56,'Královehradecký','H',1),(894,56,'Liberecký','L',1),(895,56,'Moravskoslezský','T',1),(896,56,'Olomoucký','M',1),(897,56,'Pardubický','E',1),(898,56,'Plzeňský','P',1),(899,56,'Praha','A',1),(900,56,'StÅ™edoÄeský','S',1),(901,56,'VysoÄina','J',1),(902,56,'ZlÃnský','Z',1),(903,57,'Arhus','AR',1),(904,57,'Bornholm','BH',1),(905,57,'Copenhagen','CO',1),(906,57,'Faroe Islands','FO',1),(907,57,'Frederiksborg','FR',1),(908,57,'Fyn','FY',1),(909,57,'Kobenhavn','KO',1),(910,57,'Nordjylland','NO',1),(911,57,'Ribe','RI',1),(912,57,'Ringkobing','RK',1),(913,57,'Roskilde','RO',1),(914,57,'Sonderjylland','SO',1),(915,57,'Storstrom','ST',1),(916,57,'Vejle','VK',1),(917,57,'Vestjælland','VJ',1),(918,57,'Viborg','VB',1),(919,58,'\'Ali Sabih','S',1),(920,58,'Dikhil','K',1),(921,58,'Djibouti','J',1),(922,58,'Obock','O',1),(923,58,'Tadjoura','T',1),(924,59,'Saint Andrew Parish','AND',1),(925,59,'Saint David Parish','DAV',1),(926,59,'Saint George Parish','GEO',1),(927,59,'Saint John Parish','JOH',1),(928,59,'Saint Joseph Parish','JOS',1),(929,59,'Saint Luke Parish','LUK',1),(930,59,'Saint Mark Parish','MAR',1),(931,59,'Saint Patrick Parish','PAT',1),(932,59,'Saint Paul Parish','PAU',1),(933,59,'Saint Peter Parish','PET',1),(934,60,'Distrito Nacional','DN',1),(935,60,'Azua','AZ',1),(936,60,'Baoruco','BC',1),(937,60,'Barahona','BH',1),(938,60,'Dajabon','DJ',1),(939,60,'Duarte','DU',1),(940,60,'Elias Pina','EL',1),(941,60,'El Seybo','SY',1),(942,60,'Espaillat','ET',1),(943,60,'Hato Mayor','HM',1),(944,60,'Independencia','IN',1),(945,60,'La Altagracia','AL',1),(946,60,'La Romana','RO',1),(947,60,'La Vega','VE',1),(948,60,'Maria Trinidad Sanchez','MT',1),(949,60,'Monsenor Nouel','MN',1),(950,60,'Monte Cristi','MC',1),(951,60,'Monte Plata','MP',1),(952,60,'Pedernales','PD',1),(953,60,'Peravia (Bani)','PR',1),(954,60,'Puerto Plata','PP',1),(955,60,'Salcedo','SL',1),(956,60,'Samana','SM',1),(957,60,'Sanchez Ramirez','SH',1),(958,60,'San Cristobal','SC',1),(959,60,'San Jose de Ocoa','JO',1),(960,60,'San Juan','SJ',1),(961,60,'San Pedro de Macoris','PM',1),(962,60,'Santiago','SA',1),(963,60,'Santiago Rodriguez','ST',1),(964,60,'Santo Domingo','SD',1),(965,60,'Valverde','VA',1),(966,61,'Aileu','AL',1),(967,61,'Ainaro','AN',1),(968,61,'Baucau','BA',1),(969,61,'Bobonaro','BO',1),(970,61,'Cova Lima','CO',1),(971,61,'Dili','DI',1),(972,61,'Ermera','ER',1),(973,61,'Lautem','LA',1),(974,61,'Liquica','LI',1),(975,61,'Manatuto','MT',1),(976,61,'Manufahi','MF',1),(977,61,'Oecussi','OE',1),(978,61,'Viqueque','VI',1),(979,62,'Azuay','AZU',1),(980,62,'Bolivar','BOL',1),(981,62,'Cañar','CAN',1),(982,62,'Carchi','CAR',1),(983,62,'Chimborazo','CHI',1),(984,62,'Cotopaxi','COT',1),(985,62,'El Oro','EOR',1),(986,62,'Esmeraldas','ESM',1),(987,62,'Galápagos','GPS',1),(988,62,'Guayas','GUA',1),(989,62,'Imbabura','IMB',1),(990,62,'Loja','LOJ',1),(991,62,'Los Rios','LRO',1),(992,62,'Manabí','MAN',1),(993,62,'Morona Santiago','MSA',1),(994,62,'Napo','NAP',1),(995,62,'Orellana','ORE',1),(996,62,'Pastaza','PAS',1),(997,62,'Pichincha','PIC',1),(998,62,'Sucumbíos','SUC',1),(999,62,'Tungurahua','TUN',1),(1000,62,'Zamora Chinchipe','ZCH',1),(1001,63,'Ad Daqahliyah','DHY',1),(1002,63,'Al Bahr al Ahmar','BAM',1),(1003,63,'Al Buhayrah','BHY',1),(1004,63,'Al Fayyum','FYM',1),(1005,63,'Al Gharbiyah','GBY',1),(1006,63,'Al Iskandariyah','IDR',1),(1007,63,'Al Isma\'iliyah','IML',1),(1008,63,'Al Jizah','JZH',1),(1009,63,'Al Minufiyah','MFY',1),(1010,63,'Al Minya','MNY',1),(1011,63,'Al Qahirah','QHR',1),(1012,63,'Al Qalyubiyah','QLY',1),(1013,63,'Al Wadi al Jadid','WJD',1),(1014,63,'Ash Sharqiyah','SHQ',1),(1015,63,'As Suways','SWY',1),(1016,63,'Aswan','ASW',1),(1017,63,'Asyut','ASY',1),(1018,63,'Bani Suwayf','BSW',1),(1019,63,'Bur Sa\'id','BSD',1),(1020,63,'Dumyat','DMY',1),(1021,63,'Janub Sina\'','JNS',1),(1022,63,'Kafr ash Shaykh','KSH',1),(1023,63,'Matruh','MAT',1),(1024,63,'Qina','QIN',1),(1025,63,'Shamal Sina\'','SHS',1),(1026,63,'Suhaj','SUH',1),(1027,64,'Ahuachapan','AH',1),(1028,64,'Cabanas','CA',1),(1029,64,'Chalatenango','CH',1),(1030,64,'Cuscatlan','CU',1),(1031,64,'La Libertad','LB',1),(1032,64,'La Paz','PZ',1),(1033,64,'La Union','UN',1),(1034,64,'Morazan','MO',1),(1035,64,'San Miguel','SM',1),(1036,64,'San Salvador','SS',1),(1037,64,'San Vicente','SV',1),(1038,64,'Santa Ana','SA',1),(1039,64,'Sonsonate','SO',1),(1040,64,'Usulutan','US',1),(1041,65,'Provincia Annobon','AN',1),(1042,65,'Provincia Bioko Norte','BN',1),(1043,65,'Provincia Bioko Sur','BS',1),(1044,65,'Provincia Centro Sur','CS',1),(1045,65,'Provincia Kie-Ntem','KN',1),(1046,65,'Provincia Litoral','LI',1),(1047,65,'Provincia Wele-Nzas','WN',1),(1048,66,'Central (Maekel)','MA',1),(1049,66,'Anseba (Keren)','KE',1),(1050,66,'Southern Red Sea (Debub-Keih-Bahri)','DK',1),(1051,66,'Northern Red Sea (Semien-Keih-Bahri)','SK',1),(1052,66,'Southern (Debub)','DE',1),(1053,66,'Gash-Barka (Barentu)','BR',1),(1054,67,'Harjumaa (Tallinn)','HA',1),(1055,67,'Hiiumaa (Kardla)','HI',1),(1056,67,'Ida-Virumaa (Johvi)','IV',1),(1057,67,'Jarvamaa (Paide)','JA',1),(1058,67,'Jogevamaa (Jogeva)','JO',1),(1059,67,'Laane-Virumaa (Rakvere)','LV',1),(1060,67,'Laanemaa (Haapsalu)','LA',1),(1061,67,'Parnumaa (Parnu)','PA',1),(1062,67,'Polvamaa (Polva)','PO',1),(1063,67,'Raplamaa (Rapla)','RA',1),(1064,67,'Saaremaa (Kuessaare)','SA',1),(1065,67,'Tartumaa (Tartu)','TA',1),(1066,67,'Valgamaa (Valga)','VA',1),(1067,67,'Viljandimaa (Viljandi)','VI',1),(1068,67,'Vorumaa (Voru)','VO',1),(1069,68,'Afar','AF',1),(1070,68,'Amhara','AH',1),(1071,68,'Benishangul-Gumaz','BG',1),(1072,68,'Gambela','GB',1),(1073,68,'Hariai','HR',1),(1074,68,'Oromia','OR',1),(1075,68,'Somali','SM',1),(1076,68,'Southern Nations - Nationalities and Peoples Region','SN',1),(1077,68,'Tigray','TG',1),(1078,68,'Addis Ababa','AA',1),(1079,68,'Dire Dawa','DD',1),(1080,71,'Central Division','C',1),(1081,71,'Northern Division','N',1),(1082,71,'Eastern Division','E',1),(1083,71,'Western Division','W',1),(1084,71,'Rotuma','R',1),(1085,72,'Ahvenanmaan Laani','AL',1),(1086,72,'Etela-Suomen Laani','ES',1),(1087,72,'Ita-Suomen Laani','IS',1),(1088,72,'Lansi-Suomen Laani','LS',1),(1089,72,'Lapin Lanani','LA',1),(1090,72,'Oulun Laani','OU',1),(1091,73,'Alsace','AL',1),(1092,73,'Aquitaine','AQ',1),(1093,73,'Auvergne','AU',1),(1094,73,'Brittany','BR',1),(1095,73,'Burgundy','BU',1),(1096,73,'Center Loire Valley','CE',1),(1097,73,'Champagne','CH',1),(1098,73,'Corse','CO',1),(1099,73,'France Comte','FR',1),(1100,73,'Languedoc Roussillon','LA',1),(1101,73,'Limousin','LI',1),(1102,73,'Lorraine','LO',1),(1103,73,'Midi Pyrenees','MI',1),(1104,73,'Nord Pas de Calais','NO',1),(1105,73,'Normandy','NR',1),(1106,73,'Paris / Ill de France','PA',1),(1107,73,'Picardie','PI',1),(1108,73,'Poitou Charente','PO',1),(1109,73,'Provence','PR',1),(1110,73,'Rhone Alps','RH',1),(1111,73,'Riviera','RI',1),(1112,73,'Western Loire Valley','WE',1),(1113,74,'Etranger','Et',1),(1114,74,'Ain','01',1),(1115,74,'Aisne','02',1),(1116,74,'Allier','03',1),(1117,74,'Alpes de Haute Provence','04',1),(1118,74,'Hautes-Alpes','05',1),(1119,74,'Alpes Maritimes','06',1),(1120,74,'Ardèche','07',1),(1121,74,'Ardennes','08',1),(1122,74,'Ariège','09',1),(1123,74,'Aube','10',1),(1124,74,'Aude','11',1),(1125,74,'Aveyron','12',1),(1126,74,'Bouches du Rhône','13',1),(1127,74,'Calvados','14',1),(1128,74,'Cantal','15',1),(1129,74,'Charente','16',1),(1130,74,'Charente Maritime','17',1),(1131,74,'Cher','18',1),(1132,74,'Corrèze','19',1),(1133,74,'Corse du Sud','2A',1),(1134,74,'Haute Corse','2B',1),(1135,74,'Côte d'or','21',1),(1136,74,'Côtes d'Armor','22',1),(1137,74,'Creuse','23',1),(1138,74,'Dordogne','24',1),(1139,74,'Doubs','25',1),(1140,74,'Drôme','26',1),(1141,74,'Eure','27',1),(1142,74,'Eure et Loir','28',1),(1143,74,'Finistère','29',1),(1144,74,'Gard','30',1),(1145,74,'Haute Garonne','31',1),(1146,74,'Gers','32',1),(1147,74,'Gironde','33',1),(1148,74,'Hérault','34',1),(1149,74,'Ille et Vilaine','35',1),(1150,74,'Indre','36',1),(1151,74,'Indre et Loire','37',1),(1152,74,'Isére','38',1),(1153,74,'Jura','39',1),(1154,74,'Landes','40',1),(1155,74,'Loir et Cher','41',1),(1156,74,'Loire','42',1),(1157,74,'Haute Loire','43',1),(1158,74,'Loire Atlantique','44',1),(1159,74,'Loiret','45',1),(1160,74,'Lot','46',1),(1161,74,'Lot et Garonne','47',1),(1162,74,'Lozère','48',1),(1163,74,'Maine et Loire','49',1),(1164,74,'Manche','50',1),(1165,74,'Marne','51',1),(1166,74,'Haute Marne','52',1),(1167,74,'Mayenne','53',1),(1168,74,'Meurthe et Moselle','54',1),(1169,74,'Meuse','55',1),(1170,74,'Morbihan','56',1),(1171,74,'Moselle','57',1),(1172,74,'Nièvre','58',1),(1173,74,'Nord','59',1),(1174,74,'Oise','60',1),(1175,74,'Orne','61',1),(1176,74,'Pas de Calais','62',1),(1177,74,'Puy de Dôme','63',1),(1178,74,'Pyrénées Atlantiques','64',1),(1179,74,'Hautes Pyrénées','65',1),(1180,74,'Pyrénées Orientales','66',1),(1181,74,'Bas Rhin','67',1),(1182,74,'Haut Rhin','68',1),(1183,74,'Rhône','69',1),(1184,74,'Haute Saône','70',1),(1185,74,'Saône et Loire','71',1),(1186,74,'Sarthe','72',1),(1187,74,'Savoie','73',1),(1188,74,'Haute Savoie','74',1),(1189,74,'Paris','75',1),(1190,74,'Seine Maritime','76',1),(1191,74,'Seine et Marne','77',1),(1192,74,'Yvelines','78',1),(1193,74,'Deux Sèvres','79',1),(1194,74,'Somme','80',1),(1195,74,'Tarn','81',1),(1196,74,'Tarn et Garonne','82',1),(1197,74,'Var','83',1),(1198,74,'Vaucluse','84',1),(1199,74,'Vendée','85',1),(1200,74,'Vienne','86',1),(1201,74,'Haute Vienne','87',1),(1202,74,'Vosges','88',1),(1203,74,'Yonne','89',1),(1204,74,'Territoire de Belfort','90',1),(1205,74,'Essonne','91',1),(1206,74,'Hauts de Seine','92',1),(1207,74,'Seine St-Denis','93',1),(1208,74,'Val de Marne','94',1),(1209,74,'Val d\'Oise','95',1),(1210,76,'Archipel des Marquises','M',1),(1211,76,'Archipel des Tuamotu','T',1),(1212,76,'Archipel des Tubuai','I',1),(1213,76,'Iles du Vent','V',1),(1214,76,'Iles Sous-le-Vent','S',1),(1215,77,'Iles Crozet','C',1),(1216,77,'Iles Kerguelen','K',1),(1217,77,'Ile Amsterdam','A',1),(1218,77,'Ile Saint-Paul','P',1),(1219,77,'Adelie Land','D',1),(1220,78,'Estuaire','ES',1),(1221,78,'Haut-Ogooue','HO',1),(1222,78,'Moyen-Ogooue','MO',1),(1223,78,'Ngounie','NG',1),(1224,78,'Nyanga','NY',1),(1225,78,'Ogooue-Ivindo','OI',1),(1226,78,'Ogooue-Lolo','OL',1),(1227,78,'Ogooue-Maritime','OM',1),(1228,78,'Woleu-Ntem','WN',1),(1229,79,'Banjul','BJ',1),(1230,79,'Basse','BS',1),(1231,79,'Brikama','BR',1),(1232,79,'Janjangbure','JA',1),(1233,79,'Kanifeng','KA',1),(1234,79,'Kerewan','KE',1),(1235,79,'Kuntaur','KU',1),(1236,79,'Mansakonko','MA',1),(1237,79,'Lower River','LR',1),(1238,79,'Central River','CR',1),(1239,79,'North Bank','NB',1),(1240,79,'Upper River','UR',1),(1241,79,'Western','WE',1),(1242,80,'Abkhazia','AB',1),(1243,80,'Ajaria','AJ',1),(1244,80,'Tbilisi','TB',1),(1245,80,'Guria','GU',1),(1246,80,'Imereti','IM',1),(1247,80,'Kakheti','KA',1),(1248,80,'Kvemo Kartli','KK',1),(1249,80,'Mtskheta-Mtianeti','MM',1),(1250,80,'Racha Lechkhumi and Kvemo Svanet','RL',1),(1251,80,'Samegrelo-Zemo Svaneti','SZ',1),(1252,80,'Samtskhe-Javakheti','SJ',1),(1253,80,'Shida Kartli','SK',1),(1254,81,'Baden-Württemberg','BAW',1),(1255,81,'Bayern','BAY',1),(1256,81,'Berlin','BER',1),(1257,81,'Brandenburg','BRG',1),(1258,81,'Bremen','BRE',1),(1259,81,'Hamburg','HAM',1),(1260,81,'Hessen','HES',1),(1261,81,'Mecklenburg-Vorpommern','MEC',1),(1262,81,'Niedersachsen','NDS',1),(1263,81,'Nordrhein-Westfalen','NRW',1),(1264,81,'Rheinland-Pfalz','RHE',1),(1265,81,'Saarland','SAR',1),(1266,81,'Sachsen','SAS',1),(1267,81,'Sachsen-Anhalt','SAC',1),(1268,81,'Schleswig-Holstein','SCN',1),(1269,81,'Thüringen','THE',1),(1270,82,'Ashanti Region','AS',1),(1271,82,'Brong-Ahafo Region','BA',1),(1272,82,'Central Region','CE',1),(1273,82,'Eastern Region','EA',1),(1274,82,'Greater Accra Region','GA',1),(1275,82,'Northern Region','NO',1),(1276,82,'Upper East Region','UE',1),(1277,82,'Upper West Region','UW',1),(1278,82,'Volta Region','VO',1),(1279,82,'Western Region','WE',1),(1280,84,'Attica','AT',1),(1281,84,'Central Greece','CN',1),(1282,84,'Central Macedonia','CM',1),(1283,84,'Crete','CR',1),(1284,84,'East Macedonia and Thrace','EM',1),(1285,84,'Epirus','EP',1),(1286,84,'Ionian Islands','II',1),(1287,84,'North Aegean','NA',1),(1288,84,'Peloponnesos','PP',1),(1289,84,'South Aegean','SA',1),(1290,84,'Thessaly','TH',1),(1291,84,'West Greece','WG',1),(1292,84,'West Macedonia','WM',1),(1293,85,'Avannaa','A',1),(1294,85,'Tunu','T',1),(1295,85,'Kitaa','K',1),(1296,86,'Saint Andrew','A',1),(1297,86,'Saint David','D',1),(1298,86,'Saint George','G',1),(1299,86,'Saint John','J',1),(1300,86,'Saint Mark','M',1),(1301,86,'Saint Patrick','P',1),(1302,86,'Carriacou','C',1),(1303,86,'Petit Martinique','Q',1),(1304,89,'Alta Verapaz','AV',1),(1305,89,'Baja Verapaz','BV',1),(1306,89,'Chimaltenango','CM',1),(1307,89,'Chiquimula','CQ',1),(1308,89,'El Peten','PE',1),(1309,89,'El Progreso','PR',1),(1310,89,'El Quiche','QC',1),(1311,89,'Escuintla','ES',1),(1312,89,'Guatemala','GU',1),(1313,89,'Huehuetenango','HU',1),(1314,89,'Izabal','IZ',1),(1315,89,'Jalapa','JA',1),(1316,89,'Jutiapa','JU',1),(1317,89,'Quetzaltenango','QZ',1),(1318,89,'Retalhuleu','RE',1),(1319,89,'Sacatepequez','ST',1),(1320,89,'San Marcos','SM',1),(1321,89,'Santa Rosa','SR',1),(1322,89,'Solola','SO',1),(1323,89,'Suchitepequez','SU',1),(1324,89,'Totonicapan','TO',1),(1325,89,'Zacapa','ZA',1),(1326,90,'Conakry','CNK',1),(1327,90,'Beyla','BYL',1),(1328,90,'Boffa','BFA',1),(1329,90,'Boke','BOK',1),(1330,90,'Coyah','COY',1),(1331,90,'Dabola','DBL',1),(1332,90,'Dalaba','DLB',1),(1333,90,'Dinguiraye','DGR',1),(1334,90,'Dubreka','DBR',1),(1335,90,'Faranah','FRN',1),(1336,90,'Forecariah','FRC',1),(1337,90,'Fria','FRI',1),(1338,90,'Gaoual','GAO',1),(1339,90,'Gueckedou','GCD',1),(1340,90,'Kankan','KNK',1),(1341,90,'Kerouane','KRN',1),(1342,90,'Kindia','KND',1),(1343,90,'Kissidougou','KSD',1),(1344,90,'Koubia','KBA',1),(1345,90,'Koundara','KDA',1),(1346,90,'Kouroussa','KRA',1),(1347,90,'Labe','LAB',1),(1348,90,'Lelouma','LLM',1),(1349,90,'Lola','LOL',1),(1350,90,'Macenta','MCT',1),(1351,90,'Mali','MAL',1),(1352,90,'Mamou','MAM',1),(1353,90,'Mandiana','MAN',1),(1354,90,'Nzerekore','NZR',1),(1355,90,'Pita','PIT',1),(1356,90,'Siguiri','SIG',1),(1357,90,'Telimele','TLM',1),(1358,90,'Tougue','TOG',1),(1359,90,'Yomou','YOM',1),(1360,91,'Bafata Region','BF',1),(1361,91,'Biombo Region','BB',1),(1362,91,'Bissau Region','BS',1),(1363,91,'Bolama Region','BL',1),(1364,91,'Cacheu Region','CA',1),(1365,91,'Gabu Region','GA',1),(1366,91,'Oio Region','OI',1),(1367,91,'Quinara Region','QU',1),(1368,91,'Tombali Region','TO',1),(1369,92,'Barima-Waini','BW',1),(1370,92,'Cuyuni-Mazaruni','CM',1),(1371,92,'Demerara-Mahaica','DM',1),(1372,92,'East Berbice-Corentyne','EC',1),(1373,92,'Essequibo Islands-West Demerara','EW',1),(1374,92,'Mahaica-Berbice','MB',1),(1375,92,'Pomeroon-Supenaam','PM',1),(1376,92,'Potaro-Siparuni','PI',1),(1377,92,'Upper Demerara-Berbice','UD',1),(1378,92,'Upper Takutu-Upper Essequibo','UT',1),(1379,93,'Artibonite','AR',1),(1380,93,'Centre','CE',1),(1381,93,'Grand\'Anse','GA',1),(1382,93,'Nord','ND',1),(1383,93,'Nord-Est','NE',1),(1384,93,'Nord-Ouest','NO',1),(1385,93,'Ouest','OU',1),(1386,93,'Sud','SD',1),(1387,93,'Sud-Est','SE',1),(1388,94,'Flat Island','F',1),(1389,94,'McDonald Island','M',1),(1390,94,'Shag Island','S',1),(1391,94,'Heard Island','H',1),(1392,95,'Atlantida','AT',1),(1393,95,'Choluteca','CH',1),(1394,95,'Colon','CL',1),(1395,95,'Comayagua','CM',1),(1396,95,'Copan','CP',1),(1397,95,'Cortes','CR',1),(1398,95,'El Paraiso','PA',1),(1399,95,'Francisco Morazan','FM',1),(1400,95,'Gracias a Dios','GD',1),(1401,95,'Intibuca','IN',1),(1402,95,'Islas de la Bahia (Bay Islands)','IB',1),(1403,95,'La Paz','PZ',1),(1404,95,'Lempira','LE',1),(1405,95,'Ocotepeque','OC',1),(1406,95,'Olancho','OL',1),(1407,95,'Santa Barbara','SB',1),(1408,95,'Valle','VA',1),(1409,95,'Yoro','YO',1),(1410,96,'Central and Western Hong Kong Island','HCW',1),(1411,96,'Eastern Hong Kong Island','HEA',1),(1412,96,'Southern Hong Kong Island','HSO',1),(1413,96,'Wan Chai Hong Kong Island','HWC',1),(1414,96,'Kowloon City Kowloon','KKC',1),(1415,96,'Kwun Tong Kowloon','KKT',1),(1416,96,'Sham Shui Po Kowloon','KSS',1),(1417,96,'Wong Tai Sin Kowloon','KWT',1),(1418,96,'Yau Tsim Mong Kowloon','KYT',1),(1419,96,'Islands New Territories','NIS',1),(1420,96,'Kwai Tsing New Territories','NKT',1),(1421,96,'North New Territories','NNO',1),(1422,96,'Sai Kung New Territories','NSK',1),(1423,96,'Sha Tin New Territories','NST',1),(1424,96,'Tai Po New Territories','NTP',1),(1425,96,'Tsuen Wan New Territories','NTW',1),(1426,96,'Tuen Mun New Territories','NTM',1),(1427,96,'Yuen Long New Territories','NYL',1),(1428,97,'Bacs-Kiskun','BK',1),(1429,97,'Baranya','BA',1),(1430,97,'Bekes','BE',1),(1431,97,'Bekescsaba','BS',1),(1432,97,'Borsod-Abauj-Zemplen','BZ',1),(1433,97,'Budapest','BU',1),(1434,97,'Csongrad','CS',1),(1435,97,'Debrecen','DE',1),(1436,97,'Dunaujvaros','DU',1),(1437,97,'Eger','EG',1),(1438,97,'Fejer','FE',1),(1439,97,'Gyor','GY',1),(1440,97,'Gyor-Moson-Sopron','GM',1),(1441,97,'Hajdu-Bihar','HB',1),(1442,97,'Heves','HE',1),(1443,97,'Hodmezovasarhely','HO',1),(1444,97,'Jasz-Nagykun-Szolnok','JN',1),(1445,97,'Kaposvar','KA',1),(1446,97,'Kecskemet','KE',1),(1447,97,'Komarom-Esztergom','KO',1),(1448,97,'Miskolc','MI',1),(1449,97,'Nagykanizsa','NA',1),(1450,97,'Nograd','NO',1),(1451,97,'Nyiregyhaza','NY',1),(1452,97,'Pecs','PE',1),(1453,97,'Pest','PS',1),(1454,97,'Somogy','SO',1),(1455,97,'Sopron','SP',1),(1456,97,'Szabolcs-Szatmar-Bereg','SS',1),(1457,97,'Szeged','SZ',1),(1458,97,'Szekesfehervar','SE',1),(1459,97,'Szolnok','SL',1),(1460,97,'Szombathely','SM',1),(1461,97,'Tatabanya','TA',1),(1462,97,'Tolna','TO',1),(1463,97,'Vas','VA',1),(1464,97,'Veszprem','VE',1),(1465,97,'Zala','ZA',1),(1466,97,'Zalaegerszeg','ZZ',1),(1467,98,'Austurland','AL',1),(1468,98,'Hofuoborgarsvaeoi','HF',1),(1469,98,'Norourland eystra','NE',1),(1470,98,'Norourland vestra','NV',1),(1471,98,'Suourland','SL',1),(1472,98,'Suournes','SN',1),(1473,98,'Vestfiroir','VF',1),(1474,98,'Vesturland','VL',1),(1475,99,'Andaman and Nicobar Islands','AN',1),(1476,99,'Andhra Pradesh','AP',1),(1477,99,'Arunachal Pradesh','AR',1),(1478,99,'Assam','AS',1),(1479,99,'Bihar','BI',1),(1480,99,'Chandigarh','CH',1),(1481,99,'Dadra and Nagar Haveli','DA',1),(1482,99,'Daman and Diu','DM',1),(1483,99,'Delhi','DE',1),(1484,99,'Goa','GO',1),(1485,99,'Gujarat','GU',1),(1486,99,'Haryana','HA',1),(1487,99,'Himachal Pradesh','HP',1),(1488,99,'Jammu and Kashmir','JA',1),(1489,99,'Karnataka','KA',1),(1490,99,'Kerala','KE',1),(1491,99,'Lakshadweep Islands','LI',1),(1492,99,'Madhya Pradesh','MP',1),(1493,99,'Maharashtra','MA',1),(1494,99,'Manipur','MN',1),(1495,99,'Meghalaya','ME',1),(1496,99,'Mizoram','MI',1),(1497,99,'Nagaland','NA',1),(1498,99,'Orissa','OR',1),(1499,99,'Pondicherry','PO',1),(1500,99,'Punjab','PU',1),(1501,99,'Rajasthan','RA',1),(1502,99,'Sikkim','SI',1),(1503,99,'Tamil Nadu','TN',1),(1504,99,'Tripura','TR',1),(1505,99,'Uttar Pradesh','UP',1),(1506,99,'West Bengal','WB',1),(1507,100,'Aceh','AC',1),(1508,100,'Bali','BA',1),(1509,100,'Banten','BT',1),(1510,100,'Bengkulu','BE',1),(1511,100,'BoDeTaBek','BD',1),(1512,100,'Gorontalo','GO',1),(1513,100,'Jakarta Raya','JK',1),(1514,100,'Jambi','JA',1),(1515,100,'Jawa Barat','JB',1),(1516,100,'Jawa Tengah','JT',1),(1517,100,'Jawa Timur','JI',1),(1518,100,'Kalimantan Barat','KB',1),(1519,100,'Kalimantan Selatan','KS',1),(1520,100,'Kalimantan Tengah','KT',1),(1521,100,'Kalimantan Timur','KI',1),(1522,100,'Kepulauan Bangka Belitung','BB',1),(1523,100,'Lampung','LA',1),(1524,100,'Maluku','MA',1),(1525,100,'Maluku Utara','MU',1),(1526,100,'Nusa Tenggara Barat','NB',1),(1527,100,'Nusa Tenggara Timur','NT',1),(1528,100,'Papua','PA',1),(1529,100,'Riau','RI',1),(1530,100,'Sulawesi Selatan','SN',1),(1531,100,'Sulawesi Tengah','ST',1),(1532,100,'Sulawesi Tenggara','SG',1),(1533,100,'Sulawesi Utara','SA',1),(1534,100,'Sumatera Barat','SB',1),(1535,100,'Sumatera Selatan','SS',1),(1536,100,'Sumatera Utara','SU',1),(1537,100,'Yogyakarta','YO',1),(1538,101,'Tehran','TEH',1),(1539,101,'Qom','QOM',1),(1540,101,'Markazi','MKZ',1),(1541,101,'Qazvin','QAZ',1),(1542,101,'Gilan','GIL',1),(1543,101,'Ardabil','ARD',1),(1544,101,'Zanjan','ZAN',1),(1545,101,'East Azarbaijan','EAZ',1),(1546,101,'West Azarbaijan','WEZ',1),(1547,101,'Kurdistan','KRD',1),(1548,101,'Hamadan','HMD',1),(1549,101,'Kermanshah','KRM',1),(1550,101,'Ilam','ILM',1),(1551,101,'Lorestan','LRS',1),(1552,101,'Khuzestan','KZT',1),(1553,101,'Chahar Mahaal and Bakhtiari','CMB',1),(1554,101,'Kohkiluyeh and Buyer Ahmad','KBA',1),(1555,101,'Bushehr','BSH',1),(1556,101,'Fars','FAR',1),(1557,101,'Hormozgan','HRM',1),(1558,101,'Sistan and Baluchistan','SBL',1),(1559,101,'Kerman','KRB',1),(1560,101,'Yazd','YZD',1),(1561,101,'Esfahan','EFH',1),(1562,101,'Semnan','SMN',1),(1563,101,'Mazandaran','MZD',1),(1564,101,'Golestan','GLS',1),(1565,101,'North Khorasan','NKH',1),(1566,101,'Razavi Khorasan','RKH',1),(1567,101,'South Khorasan','SKH',1),(1568,102,'Baghdad','BD',1),(1569,102,'Salah ad Din','SD',1),(1570,102,'Diyala','DY',1),(1571,102,'Wasit','WS',1),(1572,102,'Maysan','MY',1),(1573,102,'Al Basrah','BA',1),(1574,102,'Dhi Qar','DQ',1),(1575,102,'Al Muthanna','MU',1),(1576,102,'Al Qadisyah','QA',1),(1577,102,'Babil','BB',1),(1578,102,'Al Karbala','KB',1),(1579,102,'An Najaf','NJ',1),(1580,102,'Al Anbar','AB',1),(1581,102,'Ninawa','NN',1),(1582,102,'Dahuk','DH',1),(1583,102,'Arbil','AL',1),(1584,102,'At Ta\'mim','TM',1),(1585,102,'As Sulaymaniyah','SL',1),(1586,103,'Carlow','CA',1),(1587,103,'Cavan','CV',1),(1588,103,'Clare','CL',1),(1589,103,'Cork','CO',1),(1590,103,'Donegal','DO',1),(1591,103,'Dublin','DU',1),(1592,103,'Galway','GA',1),(1593,103,'Kerry','KE',1),(1594,103,'Kildare','KI',1),(1595,103,'Kilkenny','KL',1),(1596,103,'Laois','LA',1),(1597,103,'Leitrim','LE',1),(1598,103,'Limerick','LI',1),(1599,103,'Longford','LO',1),(1600,103,'Louth','LU',1),(1601,103,'Mayo','MA',1),(1602,103,'Meath','ME',1),(1603,103,'Monaghan','MO',1),(1604,103,'Offaly','OF',1),(1605,103,'Roscommon','RO',1),(1606,103,'Sligo','SL',1),(1607,103,'Tipperary','TI',1),(1608,103,'Waterford','WA',1),(1609,103,'Westmeath','WE',1),(1610,103,'Wexford','WX',1),(1611,103,'Wicklow','WI',1),(1612,104,'Be\'er Sheva','BS',1),(1613,104,'Bika\'at Hayarden','BH',1),(1614,104,'Eilat and Arava','EA',1),(1615,104,'Galil','GA',1),(1616,104,'Haifa','HA',1),(1617,104,'Jehuda Mountains','JM',1),(1618,104,'Jerusalem','JE',1),(1619,104,'Negev','NE',1),(1620,104,'Semaria','SE',1),(1621,104,'Sharon','SH',1),(1622,104,'Tel Aviv (Gosh Dan)','TA',1),(3860,105,'Caltanissetta','CL',1),(3842,105,'Agrigento','AG',1),(3843,105,'Alessandria','AL',1),(3844,105,'Ancona','AN',1),(3845,105,'Aosta','AO',1),(3846,105,'Arezzo','AR',1),(3847,105,'Ascoli Piceno','AP',1),(3848,105,'Asti','AT',1),(3849,105,'Avellino','AV',1),(3850,105,'Bari','BA',1),(3851,105,'Belluno','BL',1),(3852,105,'Benevento','BN',1),(3853,105,'Bergamo','BG',1),(3854,105,'Biella','BI',1),(3855,105,'Bologna','BO',1),(3856,105,'Bolzano','BZ',1),(3857,105,'Brescia','BS',1),(3858,105,'Brindisi','BR',1),(3859,105,'Cagliari','CA',1),(1643,106,'Clarendon Parish','CLA',1),(1644,106,'Hanover Parish','HAN',1),(1645,106,'Kingston Parish','KIN',1),(1646,106,'Manchester Parish','MAN',1),(1647,106,'Portland Parish','POR',1),(1648,106,'Saint Andrew Parish','AND',1),(1649,106,'Saint Ann Parish','ANN',1),(1650,106,'Saint Catherine Parish','CAT',1),(1651,106,'Saint Elizabeth Parish','ELI',1),(1652,106,'Saint James Parish','JAM',1),(1653,106,'Saint Mary Parish','MAR',1),(1654,106,'Saint Thomas Parish','THO',1),(1655,106,'Trelawny Parish','TRL',1),(1656,106,'Westmoreland Parish','WML',1),(1657,107,'Aichi','AI',1),(1658,107,'Akita','AK',1),(1659,107,'Aomori','AO',1),(1660,107,'Chiba','CH',1),(1661,107,'Ehime','EH',1),(1662,107,'Fukui','FK',1),(1663,107,'Fukuoka','FU',1),(1664,107,'Fukushima','FS',1),(1665,107,'Gifu','GI',1),(1666,107,'Gumma','GU',1),(1667,107,'Hiroshima','HI',1),(1668,107,'Hokkaido','HO',1),(1669,107,'Hyogo','HY',1),(1670,107,'Ibaraki','IB',1),(1671,107,'Ishikawa','IS',1),(1672,107,'Iwate','IW',1),(1673,107,'Kagawa','KA',1),(1674,107,'Kagoshima','KG',1),(1675,107,'Kanagawa','KN',1),(1676,107,'Kochi','KO',1),(1677,107,'Kumamoto','KU',1),(1678,107,'Kyoto','KY',1),(1679,107,'Mie','MI',1),(1680,107,'Miyagi','MY',1),(1681,107,'Miyazaki','MZ',1),(1682,107,'Nagano','NA',1),(1683,107,'Nagasaki','NG',1),(1684,107,'Nara','NR',1),(1685,107,'Niigata','NI',1),(1686,107,'Oita','OI',1),(1687,107,'Okayama','OK',1),(1688,107,'Okinawa','ON',1),(1689,107,'Osaka','OS',1),(1690,107,'Saga','SA',1),(1691,107,'Saitama','SI',1),(1692,107,'Shiga','SH',1),(1693,107,'Shimane','SM',1),(1694,107,'Shizuoka','SZ',1),(1695,107,'Tochigi','TO',1),(1696,107,'Tokushima','TS',1),(1697,107,'Tokyo','TK',1),(1698,107,'Tottori','TT',1),(1699,107,'Toyama','TY',1),(1700,107,'Wakayama','WA',1),(1701,107,'Yamagata','YA',1),(1702,107,'Yamaguchi','YM',1),(1703,107,'Yamanashi','YN',1),(1704,108,'\'Amman','AM',1),(1705,108,'Ajlun','AJ',1),(1706,108,'Al \'Aqabah','AA',1),(1707,108,'Al Balqa\'','AB',1),(1708,108,'Al Karak','AK',1),(1709,108,'Al Mafraq','AL',1),(1710,108,'At Tafilah','AT',1),(1711,108,'Az Zarqa\'','AZ',1),(1712,108,'Irbid','IR',1),(1713,108,'Jarash','JA',1),(1714,108,'Ma\'an','MA',1),(1715,108,'Madaba','MD',1),(1716,109,'Almaty','AL',1),(1717,109,'Almaty City','AC',1),(1718,109,'Aqmola','AM',1),(1719,109,'Aqtobe','AQ',1),(1720,109,'Astana City','AS',1),(1721,109,'Atyrau','AT',1),(1722,109,'Batys Qazaqstan','BA',1),(1723,109,'Bayqongyr City','BY',1),(1724,109,'Mangghystau','MA',1),(1725,109,'Ongtustik Qazaqstan','ON',1),(1726,109,'Pavlodar','PA',1),(1727,109,'Qaraghandy','QA',1),(1728,109,'Qostanay','QO',1),(1729,109,'Qyzylorda','QY',1),(1730,109,'Shyghys Qazaqstan','SH',1),(1731,109,'Soltustik Qazaqstan','SO',1),(1732,109,'Zhambyl','ZH',1),(1733,110,'Central','CE',1),(1734,110,'Coast','CO',1),(1735,110,'Eastern','EA',1),(1736,110,'Nairobi Area','NA',1),(1737,110,'North Eastern','NE',1),(1738,110,'Nyanza','NY',1),(1739,110,'Rift Valley','RV',1),(1740,110,'Western','WE',1),(1741,111,'Abaiang','AG',1),(1742,111,'Abemama','AM',1),(1743,111,'Aranuka','AK',1),(1744,111,'Arorae','AO',1),(1745,111,'Banaba','BA',1),(1746,111,'Beru','BE',1),(1747,111,'Butaritari','bT',1),(1748,111,'Kanton','KA',1),(1749,111,'Kiritimati','KR',1),(1750,111,'Kuria','KU',1),(1751,111,'Maiana','MI',1),(1752,111,'Makin','MN',1),(1753,111,'Marakei','ME',1),(1754,111,'Nikunau','NI',1),(1755,111,'Nonouti','NO',1),(1756,111,'Onotoa','ON',1),(1757,111,'Tabiteuea','TT',1),(1758,111,'Tabuaeran','TR',1),(1759,111,'Tamana','TM',1),(1760,111,'Tarawa','TW',1),(1761,111,'Teraina','TE',1),(1762,112,'Chagang-do','CHA',1),(1763,112,'Hamgyong-bukto','HAB',1),(1764,112,'Hamgyong-namdo','HAN',1),(1765,112,'Hwanghae-bukto','HWB',1),(1766,112,'Hwanghae-namdo','HWN',1),(1767,112,'Kangwon-do','KAN',1),(1768,112,'P\'yongan-bukto','PYB',1),(1769,112,'P\'yongan-namdo','PYN',1),(1770,112,'Ryanggang-do (Yanggang-do)','YAN',1),(1771,112,'Rason Directly Governed City','NAJ',1),(1772,112,'P\'yongyang Special City','PYO',1),(1773,113,'Ch\'ungch\'ong-bukto','CO',1),(1774,113,'Ch\'ungch\'ong-namdo','CH',1),(1775,113,'Cheju-do','CD',1),(1776,113,'Cholla-bukto','CB',1),(1777,113,'Cholla-namdo','CN',1),(1778,113,'Inch\'on-gwangyoksi','IG',1),(1779,113,'Kangwon-do','KA',1),(1780,113,'Kwangju-gwangyoksi','KG',1),(1781,113,'Kyonggi-do','KD',1),(1782,113,'Kyongsang-bukto','KB',1),(1783,113,'Kyongsang-namdo','KN',1),(1784,113,'Pusan-gwangyoksi','PG',1),(1785,113,'Soul-t\'ukpyolsi','SO',1),(1786,113,'Taegu-gwangyoksi','TA',1),(1787,113,'Taejon-gwangyoksi','TG',1),(1788,114,'Al \'Asimah','AL',1),(1789,114,'Al Ahmadi','AA',1),(1790,114,'Al Farwaniyah','AF',1),(1791,114,'Al Jahra\'','AJ',1),(1792,114,'Hawalli','HA',1),(1793,115,'Bishkek','GB',1),(1794,115,'Batken','B',1),(1795,115,'Chu','C',1),(1796,115,'Jalal-Abad','J',1),(1797,115,'Naryn','N',1),(1798,115,'Osh','O',1),(1799,115,'Talas','T',1),(1800,115,'Ysyk-Kol','Y',1),(1801,116,'Vientiane','VT',1),(1802,116,'Attapu','AT',1),(1803,116,'Bokeo','BK',1),(1804,116,'Bolikhamxai','BL',1),(1805,116,'Champasak','CH',1),(1806,116,'Houaphan','HO',1),(1807,116,'Khammouan','KH',1),(1808,116,'Louang Namtha','LM',1),(1809,116,'Louangphabang','LP',1),(1810,116,'Oudomxai','OU',1),(1811,116,'Phongsali','PH',1),(1812,116,'Salavan','SL',1),(1813,116,'Savannakhet','SV',1),(1814,116,'Vientiane','VI',1),(1815,116,'Xaignabouli','XA',1),(1816,116,'Xekong','XE',1),(1817,116,'Xiangkhoang','XI',1),(1818,116,'Xaisomboun','XN',1),(1819,117,'Aizkraukles Rajons','AIZ',1),(1820,117,'Aluksnes Rajons','ALU',1),(1821,117,'Balvu Rajons','BAL',1),(1822,117,'Bauskas Rajons','BAU',1),(1823,117,'Cesu Rajons','CES',1),(1824,117,'Daugavpils Rajons','DGR',1),(1825,117,'Dobeles Rajons','DOB',1),(1826,117,'Gulbenes Rajons','GUL',1),(1827,117,'Jekabpils Rajons','JEK',1),(1828,117,'Jelgavas Rajons','JGR',1),(1829,117,'Kraslavas Rajons','KRA',1),(1830,117,'Kuldigas Rajons','KUL',1),(1831,117,'Liepajas Rajons','LPR',1),(1832,117,'Limbazu Rajons','LIM',1),(1833,117,'Ludzas Rajons','LUD',1),(1834,117,'Madonas Rajons','MAD',1),(1835,117,'Ogres Rajons','OGR',1),(1836,117,'Preilu Rajons','PRE',1),(1837,117,'Rezeknes Rajons','RZR',1),(1838,117,'Rigas Rajons','RGR',1),(1839,117,'Saldus Rajons','SAL',1),(1840,117,'Talsu Rajons','TAL',1),(1841,117,'Tukuma Rajons','TUK',1),(1842,117,'Valkas Rajons','VLK',1),(1843,117,'Valmieras Rajons','VLM',1),(1844,117,'Ventspils Rajons','VSR',1),(1845,117,'Daugavpils','DGV',1),(1846,117,'Jelgava','JGV',1),(1847,117,'Jurmala','JUR',1),(1848,117,'Liepaja','LPK',1),(1849,117,'Rezekne','RZK',1),(1850,117,'Riga','RGA',1),(1851,117,'Ventspils','VSL',1),(1852,119,'Berea','BE',1),(1853,119,'Butha-Buthe','BB',1),(1854,119,'Leribe','LE',1),(1855,119,'Mafeteng','MF',1),(1856,119,'Maseru','MS',1),(1857,119,'Mohale\'s Hoek','MH',1),(1858,119,'Mokhotlong','MK',1),(1859,119,'Qacha\'s Nek','QN',1),(1860,119,'Quthing','QT',1),(1861,119,'Thaba-Tseka','TT',1),(1862,120,'Bomi','BI',1),(1863,120,'Bong','BG',1),(1864,120,'Grand Bassa','GB',1),(1865,120,'Grand Cape Mount','CM',1),(1866,120,'Grand Gedeh','GG',1),(1867,120,'Grand Kru','GK',1),(1868,120,'Lofa','LO',1),(1869,120,'Margibi','MG',1),(1870,120,'Maryland','ML',1),(1871,120,'Montserrado','MS',1),(1872,120,'Nimba','NB',1),(1873,120,'River Cess','RC',1),(1874,120,'Sinoe','SN',1),(1875,121,'Ajdabiya','AJ',1),(1876,121,'Al \'Aziziyah','AZ',1),(1877,121,'Al Fatih','FA',1),(1878,121,'Al Jabal al Akhdar','JA',1),(1879,121,'Al Jufrah','JU',1),(1880,121,'Al Khums','KH',1),(1881,121,'Al Kufrah','KU',1),(1882,121,'An Nuqat al Khams','NK',1),(1883,121,'Ash Shati\'','AS',1),(1884,121,'Awbari','AW',1),(1885,121,'Az Zawiyah','ZA',1),(1886,121,'Banghazi','BA',1),(1887,121,'Darnah','DA',1),(1888,121,'Ghadamis','GD',1),(1889,121,'Gharyan','GY',1),(1890,121,'Misratah','MI',1),(1891,121,'Murzuq','MZ',1),(1892,121,'Sabha','SB',1),(1893,121,'Sawfajjin','SW',1),(1894,121,'Surt','SU',1),(1895,121,'Tarabulus (Tripoli)','TL',1),(1896,121,'Tarhunah','TH',1),(1897,121,'Tubruq','TU',1),(1898,121,'Yafran','YA',1),(1899,121,'Zlitan','ZL',1),(1900,122,'Vaduz','V',1),(1901,122,'Schaan','A',1),(1902,122,'Balzers','B',1),(1903,122,'Triesen','N',1),(1904,122,'Eschen','E',1),(1905,122,'Mauren','M',1),(1906,122,'Triesenberg','T',1),(1907,122,'Ruggell','R',1),(1908,122,'Gamprin','G',1),(1909,122,'Schellenberg','L',1),(1910,122,'Planken','P',1),(1911,123,'Alytus','AL',1),(1912,123,'Kaunas','KA',1),(1913,123,'Klaipeda','KL',1),(1914,123,'Marijampole','MA',1),(1915,123,'Panevezys','PA',1),(1916,123,'Siauliai','SI',1),(1917,123,'Taurage','TA',1),(1918,123,'Telsiai','TE',1),(1919,123,'Utena','UT',1),(1920,123,'Vilnius','VI',1),(1921,124,'Diekirch','DD',1),(1922,124,'Clervaux','DC',1),(1923,124,'Redange','DR',1),(1924,124,'Vianden','DV',1),(1925,124,'Wiltz','DW',1),(1926,124,'Grevenmacher','GG',1),(1927,124,'Echternach','GE',1),(1928,124,'Remich','GR',1),(1929,124,'Luxembourg','LL',1),(1930,124,'Capellen','LC',1),(1931,124,'Esch-sur-Alzette','LE',1),(1932,124,'Mersch','LM',1),(1933,125,'Our Lady Fatima Parish','OLF',1),(1934,125,'St. Anthony Parish','ANT',1),(1935,125,'St. Lazarus Parish','LAZ',1),(1936,125,'Cathedral Parish','CAT',1),(1937,125,'St. Lawrence Parish','LAW',1),(1938,127,'Antananarivo','AN',1),(1939,127,'Antsiranana','AS',1),(1940,127,'Fianarantsoa','FN',1),(1941,127,'Mahajanga','MJ',1),(1942,127,'Toamasina','TM',1),(1943,127,'Toliara','TL',1),(1944,128,'Balaka','BLK',1),(1945,128,'Blantyre','BLT',1),(1946,128,'Chikwawa','CKW',1),(1947,128,'Chiradzulu','CRD',1),(1948,128,'Chitipa','CTP',1),(1949,128,'Dedza','DDZ',1),(1950,128,'Dowa','DWA',1),(1951,128,'Karonga','KRG',1),(1952,128,'Kasungu','KSG',1),(1953,128,'Likoma','LKM',1),(1954,128,'Lilongwe','LLG',1),(1955,128,'Machinga','MCG',1),(1956,128,'Mangochi','MGC',1),(1957,128,'Mchinji','MCH',1),(1958,128,'Mulanje','MLJ',1),(1959,128,'Mwanza','MWZ',1),(1960,128,'Mzimba','MZM',1),(1961,128,'Ntcheu','NTU',1),(1962,128,'Nkhata Bay','NKB',1),(1963,128,'Nkhotakota','NKH',1),(1964,128,'Nsanje','NSJ',1),(1965,128,'Ntchisi','NTI',1),(1966,128,'Phalombe','PHL',1),(1967,128,'Rumphi','RMP',1),(1968,128,'Salima','SLM',1),(1969,128,'Thyolo','THY',1),(1970,128,'Zomba','ZBA',1),(1971,129,'Johor','JO',1),(1972,129,'Kedah','KE',1),(1973,129,'Kelantan','KL',1),(1974,129,'Labuan','LA',1),(1975,129,'Melaka','ME',1),(1976,129,'Negeri Sembilan','NS',1),(1977,129,'Pahang','PA',1),(1978,129,'Perak','PE',1),(1979,129,'Perlis','PR',1),(1980,129,'Pulau Pinang','PP',1),(1981,129,'Sabah','SA',1),(1982,129,'Sarawak','SR',1),(1983,129,'Selangor','SE',1),(1984,129,'Terengganu','TE',1),(1985,129,'Wilayah Persekutuan','WP',1),(1986,130,'Thiladhunmathi Uthuru','THU',1),(1987,130,'Thiladhunmathi Dhekunu','THD',1),(1988,130,'Miladhunmadulu Uthuru','MLU',1),(1989,130,'Miladhunmadulu Dhekunu','MLD',1),(1990,130,'Maalhosmadulu Uthuru','MAU',1),(1991,130,'Maalhosmadulu Dhekunu','MAD',1),(1992,130,'Faadhippolhu','FAA',1),(1993,130,'Male Atoll','MAA',1),(1994,130,'Ari Atoll Uthuru','AAU',1),(1995,130,'Ari Atoll Dheknu','AAD',1),(1996,130,'Felidhe Atoll','FEA',1),(1997,130,'Mulaku Atoll','MUA',1),(1998,130,'Nilandhe Atoll Uthuru','NAU',1),(1999,130,'Nilandhe Atoll Dhekunu','NAD',1),(2000,130,'Kolhumadulu','KLH',1),(2001,130,'Hadhdhunmathi','HDH',1),(2002,130,'Huvadhu Atoll Uthuru','HAU',1),(2003,130,'Huvadhu Atoll Dhekunu','HAD',1),(2004,130,'Fua Mulaku','FMU',1),(2005,130,'Addu','ADD',1),(2006,131,'Gao','GA',1),(2007,131,'Kayes','KY',1),(2008,131,'Kidal','KD',1),(2009,131,'Koulikoro','KL',1),(2010,131,'Mopti','MP',1),(2011,131,'Segou','SG',1),(2012,131,'Sikasso','SK',1),(2013,131,'Tombouctou','TB',1),(2014,131,'Bamako Capital District','CD',1),(2015,132,'Attard','ATT',1),(2016,132,'Balzan','BAL',1),(2017,132,'Birgu','BGU',1),(2018,132,'Birkirkara','BKK',1),(2019,132,'Birzebbuga','BRZ',1),(2020,132,'Bormla','BOR',1),(2021,132,'Dingli','DIN',1),(2022,132,'Fgura','FGU',1),(2023,132,'Floriana','FLO',1),(2024,132,'Gudja','GDJ',1),(2025,132,'Gzira','GZR',1),(2026,132,'Gargur','GRG',1),(2027,132,'Gaxaq','GXQ',1),(2028,132,'Hamrun','HMR',1),(2029,132,'Iklin','IKL',1),(2030,132,'Isla','ISL',1),(2031,132,'Kalkara','KLK',1),(2032,132,'Kirkop','KRK',1),(2033,132,'Lija','LIJ',1),(2034,132,'Luqa','LUQ',1),(2035,132,'Marsa','MRS',1),(2036,132,'Marsaskala','MKL',1),(2037,132,'Marsaxlokk','MXL',1),(2038,132,'Mdina','MDN',1),(2039,132,'Melliea','MEL',1),(2040,132,'Mgarr','MGR',1),(2041,132,'Mosta','MST',1),(2042,132,'Mqabba','MQA',1),(2043,132,'Msida','MSI',1),(2044,132,'Mtarfa','MTF',1),(2045,132,'Naxxar','NAX',1),(2046,132,'Paola','PAO',1),(2047,132,'Pembroke','PEM',1),(2048,132,'Pieta','PIE',1),(2049,132,'Qormi','QOR',1),(2050,132,'Qrendi','QRE',1),(2051,132,'Rabat','RAB',1),(2052,132,'Safi','SAF',1),(2053,132,'San Giljan','SGI',1),(2054,132,'Santa Lucija','SLU',1),(2055,132,'San Pawl il-Bahar','SPB',1),(2056,132,'San Gwann','SGW',1),(2057,132,'Santa Venera','SVE',1),(2058,132,'Siggiewi','SIG',1),(2059,132,'Sliema','SLM',1),(2060,132,'Swieqi','SWQ',1),(2061,132,'Ta Xbiex','TXB',1),(2062,132,'Tarxien','TRX',1),(2063,132,'Valletta','VLT',1),(2064,132,'Xgajra','XGJ',1),(2065,132,'Zabbar','ZBR',1),(2066,132,'Zebbug','ZBG',1),(2067,132,'Zejtun','ZJT',1),(2068,132,'Zurrieq','ZRQ',1),(2069,132,'Fontana','FNT',1),(2070,132,'Ghajnsielem','GHJ',1),(2071,132,'Gharb','GHR',1),(2072,132,'Ghasri','GHS',1),(2073,132,'Kercem','KRC',1),(2074,132,'Munxar','MUN',1),(2075,132,'Nadur','NAD',1),(2076,132,'Qala','QAL',1),(2077,132,'Victoria','VIC',1),(2078,132,'San Lawrenz','SLA',1),(2079,132,'Sannat','SNT',1),(2080,132,'Xagra','ZAG',1),(2081,132,'Xewkija','XEW',1),(2082,132,'Zebbug','ZEB',1),(2083,133,'Ailinginae','ALG',1),(2084,133,'Ailinglaplap','ALL',1),(2085,133,'Ailuk','ALK',1),(2086,133,'Arno','ARN',1),(2087,133,'Aur','AUR',1),(2088,133,'Bikar','BKR',1),(2089,133,'Bikini','BKN',1),(2090,133,'Bokak','BKK',1),(2091,133,'Ebon','EBN',1),(2092,133,'Enewetak','ENT',1),(2093,133,'Erikub','EKB',1),(2094,133,'Jabat','JBT',1),(2095,133,'Jaluit','JLT',1),(2096,133,'Jemo','JEM',1),(2097,133,'Kili','KIL',1),(2098,133,'Kwajalein','KWJ',1),(2099,133,'Lae','LAE',1),(2100,133,'Lib','LIB',1),(2101,133,'Likiep','LKP',1),(2102,133,'Majuro','MJR',1),(2103,133,'Maloelap','MLP',1),(2104,133,'Mejit','MJT',1),(2105,133,'Mili','MIL',1),(2106,133,'Namorik','NMK',1),(2107,133,'Namu','NAM',1),(2108,133,'Rongelap','RGL',1),(2109,133,'Rongrik','RGK',1),(2110,133,'Toke','TOK',1),(2111,133,'Ujae','UJA',1),(2112,133,'Ujelang','UJL',1),(2113,133,'Utirik','UTK',1),(2114,133,'Wotho','WTH',1),(2115,133,'Wotje','WTJ',1),(2116,135,'Adrar','AD',1),(2117,135,'Assaba','AS',1),(2118,135,'Brakna','BR',1),(2119,135,'Dakhlet Nouadhibou','DN',1),(2120,135,'Gorgol','GO',1),(2121,135,'Guidimaka','GM',1),(2122,135,'Hodh Ech Chargui','HC',1),(2123,135,'Hodh El Gharbi','HG',1),(2124,135,'Inchiri','IN',1),(2125,135,'Tagant','TA',1),(2126,135,'Tiris Zemmour','TZ',1),(2127,135,'Trarza','TR',1),(2128,135,'Nouakchott','NO',1),(2129,136,'Beau Bassin-Rose Hill','BR',1),(2130,136,'Curepipe','CU',1),(2131,136,'Port Louis','PU',1),(2132,136,'Quatre Bornes','QB',1),(2133,136,'Vacoas-Phoenix','VP',1),(2134,136,'Agalega Islands','AG',1),(2135,136,'Cargados Carajos Shoals (Saint Brandon Islands)','CC',1),(2136,136,'Rodrigues','RO',1),(2137,136,'Black River','BL',1),(2138,136,'Flacq','FL',1),(2139,136,'Grand Port','GP',1),(2140,136,'Moka','MO',1),(2141,136,'Pamplemousses','PA',1),(2142,136,'Plaines Wilhems','PW',1),(2143,136,'Port Louis','PL',1),(2144,136,'Riviere du Rempart','RR',1),(2145,136,'Savanne','SA',1),(2146,138,'Baja California Norte','BN',1),(2147,138,'Baja California Sur','BS',1),(2148,138,'Campeche','CA',1),(2149,138,'Chiapas','CI',1),(2150,138,'Chihuahua','CH',1),(2151,138,'Coahuila de Zaragoza','CZ',1),(2152,138,'Colima','CL',1),(2153,138,'Distrito Federal','DF',1),(2154,138,'Durango','DU',1),(2155,138,'Guanajuato','GA',1),(2156,138,'Guerrero','GE',1),(2157,138,'Hidalgo','HI',1),(2158,138,'Jalisco','JA',1),(2159,138,'Mexico','ME',1),(2160,138,'Michoacan de Ocampo','MI',1),(2161,138,'Morelos','MO',1),(2162,138,'Nayarit','NA',1),(2163,138,'Nuevo Leon','NL',1),(2164,138,'Oaxaca','OA',1),(2165,138,'Puebla','PU',1),(2166,138,'Queretaro de Arteaga','QA',1),(2167,138,'Quintana Roo','QR',1),(2168,138,'San Luis Potosi','SA',1),(2169,138,'Sinaloa','SI',1),(2170,138,'Sonora','SO',1),(2171,138,'Tabasco','TB',1),(2172,138,'Tamaulipas','TM',1),(2173,138,'Tlaxcala','TL',1),(2174,138,'Veracruz-Llave','VE',1),(2175,138,'Yucatan','YU',1),(2176,138,'Zacatecas','ZA',1),(2177,139,'Chuuk','C',1),(2178,139,'Kosrae','K',1),(2179,139,'Pohnpei','P',1),(2180,139,'Yap','Y',1),(2181,140,'Gagauzia','GA',1),(2182,140,'Chisinau','CU',1),(2183,140,'Balti','BA',1),(2184,140,'Cahul','CA',1),(2185,140,'Edinet','ED',1),(2186,140,'Lapusna','LA',1),(2187,140,'Orhei','OR',1),(2188,140,'Soroca','SO',1),(2189,140,'Tighina','TI',1),(2190,140,'Ungheni','UN',1),(2191,140,'St‚nga Nistrului','SN',1),(2192,141,'Fontvieille','FV',1),(2193,141,'La Condamine','LC',1),(2194,141,'Monaco-Ville','MV',1),(2195,141,'Monte-Carlo','MC',1),(2196,142,'Ulanbaatar','1',1),(2197,142,'Orhon','035',1),(2198,142,'Darhan uul','037',1),(2199,142,'Hentiy','039',1),(2200,142,'Hovsgol','041',1),(2201,142,'Hovd','043',1),(2202,142,'Uvs','046',1),(2203,142,'Tov','047',1),(2204,142,'Selenge','049',1),(2205,142,'Suhbaatar','051',1),(2206,142,'Omnogovi','053',1),(2207,142,'Ovorhangay','055',1),(2208,142,'Dzavhan','057',1),(2209,142,'DundgovL','059',1),(2210,142,'Dornod','061',1),(2211,142,'Dornogov','063',1),(2212,142,'Govi-Sumber','064',1),(2213,142,'Govi-Altay','065',1),(2214,142,'Bulgan','067',1),(2215,142,'Bayanhongor','069',1),(2216,142,'Bayan-Olgiy','071',1),(2217,142,'Arhangay','073',1),(2218,143,'Saint Anthony','A',1),(2219,143,'Saint Georges','G',1),(2220,143,'Saint Peter','P',1),(2221,144,'Agadir','AGD',1),(2222,144,'Al Hoceima','HOC',1),(2223,144,'Azilal','AZI',1),(2224,144,'Beni Mellal','BME',1),(2225,144,'Ben Slimane','BSL',1),(2226,144,'Boulemane','BLM',1),(2227,144,'Casablanca','CBL',1),(2228,144,'Chaouen','CHA',1),(2229,144,'El Jadida','EJA',1),(2230,144,'El Kelaa des Sraghna','EKS',1),(2231,144,'Er Rachidia','ERA',1),(2232,144,'Essaouira','ESS',1),(2233,144,'Fes','FES',1),(2234,144,'Figuig','FIG',1),(2235,144,'Guelmim','GLM',1),(2236,144,'Ifrane','IFR',1),(2237,144,'Kenitra','KEN',1),(2238,144,'Khemisset','KHM',1),(2239,144,'Khenifra','KHN',1),(2240,144,'Khouribga','KHO',1),(2241,144,'Laayoune','LYN',1),(2242,144,'Larache','LAR',1),(2243,144,'Marrakech','MRK',1),(2244,144,'Meknes','MKN',1),(2245,144,'Nador','NAD',1),(2246,144,'Ouarzazate','ORZ',1),(2247,144,'Oujda','OUJ',1),(2248,144,'Rabat-Sale','RSA',1),(2249,144,'Safi','SAF',1),(2250,144,'Settat','SET',1),(2251,144,'Sidi Kacem','SKA',1),(2252,144,'Tangier','TGR',1),(2253,144,'Tan-Tan','TAN',1),(2254,144,'Taounate','TAO',1),(2255,144,'Taroudannt','TRD',1),(2256,144,'Tata','TAT',1),(2257,144,'Taza','TAZ',1),(2258,144,'Tetouan','TET',1),(2259,144,'Tiznit','TIZ',1),(2260,144,'Ad Dakhla','ADK',1),(2261,144,'Boujdour','BJD',1),(2262,144,'Es Smara','ESM',1),(2263,145,'Cabo Delgado','CD',1),(2264,145,'Gaza','GZ',1),(2265,145,'Inhambane','IN',1),(2266,145,'Manica','MN',1),(2267,145,'Maputo (city)','MC',1),(2268,145,'Maputo','MP',1),(2269,145,'Nampula','NA',1),(2270,145,'Niassa','NI',1),(2271,145,'Sofala','SO',1),(2272,145,'Tete','TE',1),(2273,145,'Zambezia','ZA',1),(2274,146,'Ayeyarwady','AY',1),(2275,146,'Bago','BG',1),(2276,146,'Magway','MG',1),(2277,146,'Mandalay','MD',1),(2278,146,'Sagaing','SG',1),(2279,146,'Tanintharyi','TN',1),(2280,146,'Yangon','YG',1),(2281,146,'Chin State','CH',1),(2282,146,'Kachin State','KC',1),(2283,146,'Kayah State','KH',1),(2284,146,'Kayin State','KN',1),(2285,146,'Mon State','MN',1),(2286,146,'Rakhine State','RK',1),(2287,146,'Shan State','SH',1),(2288,147,'Caprivi','CA',1),(2289,147,'Erongo','ER',1),(2290,147,'Hardap','HA',1),(2291,147,'Karas','KR',1),(2292,147,'Kavango','KV',1),(2293,147,'Khomas','KH',1),(2294,147,'Kunene','KU',1),(2295,147,'Ohangwena','OW',1),(2296,147,'Omaheke','OK',1),(2297,147,'Omusati','OT',1),(2298,147,'Oshana','ON',1),(2299,147,'Oshikoto','OO',1),(2300,147,'Otjozondjupa','OJ',1),(2301,148,'Aiwo','AO',1),(2302,148,'Anabar','AA',1),(2303,148,'Anetan','AT',1),(2304,148,'Anibare','AI',1),(2305,148,'Baiti','BA',1),(2306,148,'Boe','BO',1),(2307,148,'Buada','BU',1),(2308,148,'Denigomodu','DE',1),(2309,148,'Ewa','EW',1),(2310,148,'Ijuw','IJ',1),(2311,148,'Meneng','ME',1),(2312,148,'Nibok','NI',1),(2313,148,'Uaboe','UA',1),(2314,148,'Yaren','YA',1),(2315,149,'Bagmati','BA',1),(2316,149,'Bheri','BH',1),(2317,149,'Dhawalagiri','DH',1),(2318,149,'Gandaki','GA',1),(2319,149,'Janakpur','JA',1),(2320,149,'Karnali','KA',1),(2321,149,'Kosi','KO',1),(2322,149,'Lumbini','LU',1),(2323,149,'Mahakali','MA',1),(2324,149,'Mechi','ME',1),(2325,149,'Narayani','NA',1),(2326,149,'Rapti','RA',1),(2327,149,'Sagarmatha','SA',1),(2328,149,'Seti','SE',1),(2329,150,'Drenthe','DR',1),(2330,150,'Flevoland','FL',1),(2331,150,'Friesland','FR',1),(2332,150,'Gelderland','GE',1),(2333,150,'Groningen','GR',1),(2334,150,'Limburg','LI',1),(2335,150,'Noord Brabant','NB',1),(2336,150,'Noord Holland','NH',1),(2337,150,'Overijssel','OV',1),(2338,150,'Utrecht','UT',1),(2339,150,'Zeeland','ZE',1),(2340,150,'Zuid Holland','ZH',1),(2341,152,'Iles Loyaute','L',1),(2342,152,'Nord','N',1),(2343,152,'Sud','S',1),(2344,153,'Auckland','AUK',1),(2345,153,'Bay of Plenty','BOP',1),(2346,153,'Canterbury','CAN',1),(2347,153,'Coromandel','COR',1),(2348,153,'Gisborne','GIS',1),(2349,153,'Fiordland','FIO',1),(2350,153,'Hawke\'s Bay','HKB',1),(2351,153,'Marlborough','MBH',1),(2352,153,'Manawatu-Wanganui','MWT',1),(2353,153,'Mt Cook-Mackenzie','MCM',1),(2354,153,'Nelson','NSN',1),(2355,153,'Northland','NTL',1),(2356,153,'Otago','OTA',1),(2357,153,'Southland','STL',1),(2358,153,'Taranaki','TKI',1),(2359,153,'Wellington','WGN',1),(2360,153,'Waikato','WKO',1),(2361,153,'Wairprarapa','WAI',1),(2362,153,'West Coast','WTC',1),(2363,154,'Atlantico Norte','AN',1),(2364,154,'Atlantico Sur','AS',1),(2365,154,'Boaco','BO',1),(2366,154,'Carazo','CA',1),(2367,154,'Chinandega','CI',1),(2368,154,'Chontales','CO',1),(2369,154,'Esteli','ES',1),(2370,154,'Granada','GR',1),(2371,154,'Jinotega','JI',1),(2372,154,'Leon','LE',1),(2373,154,'Madriz','MD',1),(2374,154,'Managua','MN',1),(2375,154,'Masaya','MS',1),(2376,154,'Matagalpa','MT',1),(2377,154,'Nuevo Segovia','NS',1),(2378,154,'Rio San Juan','RS',1),(2379,154,'Rivas','RI',1),(2380,155,'Agadez','AG',1),(2381,155,'Diffa','DF',1),(2382,155,'Dosso','DS',1),(2383,155,'Maradi','MA',1),(2384,155,'Niamey','NM',1),(2385,155,'Tahoua','TH',1),(2386,155,'Tillaberi','TL',1),(2387,155,'Zinder','ZD',1),(2388,156,'Abia','AB',1),(2389,156,'Abuja Federal Capital Territory','CT',1),(2390,156,'Adamawa','AD',1),(2391,156,'Akwa Ibom','AK',1),(2392,156,'Anambra','AN',1),(2393,156,'Bauchi','BC',1),(2394,156,'Bayelsa','BY',1),(2395,156,'Benue','BN',1),(2396,156,'Borno','BO',1),(2397,156,'Cross River','CR',1),(2398,156,'Delta','DE',1),(2399,156,'Ebonyi','EB',1),(2400,156,'Edo','ED',1),(2401,156,'Ekiti','EK',1),(2402,156,'Enugu','EN',1),(2403,156,'Gombe','GO',1),(2404,156,'Imo','IM',1),(2405,156,'Jigawa','JI',1),(2406,156,'Kaduna','KD',1),(2407,156,'Kano','KN',1),(2408,156,'Katsina','KT',1),(2409,156,'Kebbi','KE',1),(2410,156,'Kogi','KO',1),(2411,156,'Kwara','KW',1),(2412,156,'Lagos','LA',1),(2413,156,'Nassarawa','NA',1),(2414,156,'Niger','NI',1),(2415,156,'Ogun','OG',1),(2416,156,'Ondo','ONG',1),(2417,156,'Osun','OS',1),(2418,156,'Oyo','OY',1),(2419,156,'Plateau','PL',1),(2420,156,'Rivers','RI',1),(2421,156,'Sokoto','SO',1),(2422,156,'Taraba','TA',1),(2423,156,'Yobe','YO',1),(2424,156,'Zamfara','ZA',1),(2425,159,'Northern Islands','N',1),(2426,159,'Rota','R',1),(2427,159,'Saipan','S',1),(2428,159,'Tinian','T',1),(2429,160,'Akershus','AK',1),(2430,160,'Aust-Agder','AA',1),(2431,160,'Buskerud','BU',1),(2432,160,'Finnmark','FM',1),(2433,160,'Hedmark','HM',1),(2434,160,'Hordaland','HL',1),(2435,160,'More og Romdal','MR',1),(2436,160,'Nord-Trondelag','NT',1),(2437,160,'Nordland','NL',1),(2438,160,'Ostfold','OF',1),(2439,160,'Oppland','OP',1),(2440,160,'Oslo','OL',1),(2441,160,'Rogaland','RL',1),(2442,160,'Sor-Trondelag','ST',1),(2443,160,'Sogn og Fjordane','SJ',1),(2444,160,'Svalbard','SV',1),(2445,160,'Telemark','TM',1),(2446,160,'Troms','TR',1),(2447,160,'Vest-Agder','VA',1),(2448,160,'Vestfold','VF',1),(2449,161,'Ad Dakhiliyah','DA',1),(2450,161,'Al Batinah','BA',1),(2451,161,'Al Wusta','WU',1),(2452,161,'Ash Sharqiyah','SH',1),(2453,161,'Az Zahirah','ZA',1),(2454,161,'Masqat','MA',1),(2455,161,'Musandam','MU',1),(2456,161,'Zufar','ZU',1),(2457,162,'Balochistan','B',1),(2458,162,'Federally Administered Tribal Areas','T',1),(2459,162,'Islamabad Capital Territory','I',1),(2460,162,'North-West Frontier','N',1),(2461,162,'Punjab','P',1),(2462,162,'Sindh','S',1),(2463,163,'Aimeliik','AM',1),(2464,163,'Airai','AR',1),(2465,163,'Angaur','AN',1),(2466,163,'Hatohobei','HA',1),(2467,163,'Kayangel','KA',1),(2468,163,'Koror','KO',1),(2469,163,'Melekeok','ME',1),(2470,163,'Ngaraard','NA',1),(2471,163,'Ngarchelong','NG',1),(2472,163,'Ngardmau','ND',1),(2473,163,'Ngatpang','NT',1),(2474,163,'Ngchesar','NC',1),(2475,163,'Ngeremlengui','NR',1),(2476,163,'Ngiwal','NW',1),(2477,163,'Peleliu','PE',1),(2478,163,'Sonsorol','SO',1),(2479,164,'Bocas del Toro','BT',1),(2480,164,'Chiriqui','CH',1),(2481,164,'Cocle','CC',1),(2482,164,'Colon','CL',1),(2483,164,'Darien','DA',1),(2484,164,'Herrera','HE',1),(2485,164,'Los Santos','LS',1),(2486,164,'Panama','PA',1),(2487,164,'San Blas','SB',1),(2488,164,'Veraguas','VG',1),(2489,165,'Bougainville','BV',1),(2490,165,'Central','CE',1),(2491,165,'Chimbu','CH',1),(2492,165,'Eastern Highlands','EH',1),(2493,165,'East New Britain','EB',1),(2494,165,'East Sepik','ES',1),(2495,165,'Enga','EN',1),(2496,165,'Gulf','GU',1),(2497,165,'Madang','MD',1),(2498,165,'Manus','MN',1),(2499,165,'Milne Bay','MB',1),(2500,165,'Morobe','MR',1),(2501,165,'National Capital','NC',1),(2502,165,'New Ireland','NI',1),(2503,165,'Northern','NO',1),(2504,165,'Sandaun','SA',1),(2505,165,'Southern Highlands','SH',1),(2506,165,'Western','WE',1),(2507,165,'Western Highlands','WH',1),(2508,165,'West New Britain','WB',1),(2509,166,'Alto Paraguay','AG',1),(2510,166,'Alto Parana','AN',1),(2511,166,'Amambay','AM',1),(2512,166,'Asuncion','AS',1),(2513,166,'Boqueron','BO',1),(2514,166,'Caaguazu','CG',1),(2515,166,'Caazapa','CZ',1),(2516,166,'Canindeyu','CN',1),(2517,166,'Central','CE',1),(2518,166,'Concepcion','CC',1),(2519,166,'Cordillera','CD',1),(2520,166,'Guaira','GU',1),(2521,166,'Itapua','IT',1),(2522,166,'Misiones','MI',1),(2523,166,'Neembucu','NE',1),(2524,166,'Paraguari','PA',1),(2525,166,'Presidente Hayes','PH',1),(2526,166,'San Pedro','SP',1),(2527,167,'Amazonas','AM',1),(2528,167,'Ancash','AN',1),(2529,167,'Apurimac','AP',1),(2530,167,'Arequipa','AR',1),(2531,167,'Ayacucho','AY',1),(2532,167,'Cajamarca','CJ',1),(2533,167,'Callao','CL',1),(2534,167,'Cusco','CU',1),(2535,167,'Huancavelica','HV',1),(2536,167,'Huanuco','HO',1),(2537,167,'Ica','IC',1),(2538,167,'Junin','JU',1),(2539,167,'La Libertad','LD',1),(2540,167,'Lambayeque','LY',1),(2541,167,'Lima','LI',1),(2542,167,'Loreto','LO',1),(2543,167,'Madre de Dios','MD',1),(2544,167,'Moquegua','MO',1),(2545,167,'Pasco','PA',1),(2546,167,'Piura','PI',1),(2547,167,'Puno','PU',1),(2548,167,'San Martin','SM',1),(2549,167,'Tacna','TA',1),(2550,167,'Tumbes','TU',1),(2551,167,'Ucayali','UC',1),(2552,168,'Abra','ABR',1),(2553,168,'Agusan del Norte','ANO',1),(2554,168,'Agusan del Sur','ASU',1),(2555,168,'Aklan','AKL',1),(2556,168,'Albay','ALB',1),(2557,168,'Antique','ANT',1),(2558,168,'Apayao','APY',1),(2559,168,'Aurora','AUR',1),(2560,168,'Basilan','BAS',1),(2561,168,'Bataan','BTA',1),(2562,168,'Batanes','BTE',1),(2563,168,'Batangas','BTG',1),(2564,168,'Biliran','BLR',1),(2565,168,'Benguet','BEN',1),(2566,168,'Bohol','BOL',1),(2567,168,'Bukidnon','BUK',1),(2568,168,'Bulacan','BUL',1),(2569,168,'Cagayan','CAG',1),(2570,168,'Camarines Norte','CNO',1),(2571,168,'Camarines Sur','CSU',1),(2572,168,'Camiguin','CAM',1),(2573,168,'Capiz','CAP',1),(2574,168,'Catanduanes','CAT',1),(2575,168,'Cavite','CAV',1),(2576,168,'Cebu','CEB',1),(2577,168,'Compostela','CMP',1),(2578,168,'Davao del Norte','DNO',1),(2579,168,'Davao del Sur','DSU',1),(2580,168,'Davao Oriental','DOR',1),(2581,168,'Eastern Samar','ESA',1),(2582,168,'Guimaras','GUI',1),(2583,168,'Ifugao','IFU',1),(2584,168,'Ilocos Norte','INO',1),(2585,168,'Ilocos Sur','ISU',1),(2586,168,'Iloilo','ILO',1),(2587,168,'Isabela','ISA',1),(2588,168,'Kalinga','KAL',1),(2589,168,'Laguna','LAG',1),(2590,168,'Lanao del Norte','LNO',1),(2591,168,'Lanao del Sur','LSU',1),(2592,168,'La Union','UNI',1),(2593,168,'Leyte','LEY',1),(2594,168,'Maguindanao','MAG',1),(2595,168,'Marinduque','MRN',1),(2596,168,'Masbate','MSB',1),(2597,168,'Mindoro Occidental','MIC',1),(2598,168,'Mindoro Oriental','MIR',1),(2599,168,'Misamis Occidental','MSC',1),(2600,168,'Misamis Oriental','MOR',1),(2601,168,'Mountain','MOP',1),(2602,168,'Negros Occidental','NOC',1),(2603,168,'Negros Oriental','NOR',1),(2604,168,'North Cotabato','NCT',1),(2605,168,'Northern Samar','NSM',1),(2606,168,'Nueva Ecija','NEC',1),(2607,168,'Nueva Vizcaya','NVZ',1),(2608,168,'Palawan','PLW',1),(2609,168,'Pampanga','PMP',1),(2610,168,'Pangasinan','PNG',1),(2611,168,'Quezon','QZN',1),(2612,168,'Quirino','QRN',1),(2613,168,'Rizal','RIZ',1),(2614,168,'Romblon','ROM',1),(2615,168,'Samar','SMR',1),(2616,168,'Sarangani','SRG',1),(2617,168,'Siquijor','SQJ',1),(2618,168,'Sorsogon','SRS',1),(2619,168,'South Cotabato','SCO',1),(2620,168,'Southern Leyte','SLE',1),(2621,168,'Sultan Kudarat','SKU',1),(2622,168,'Sulu','SLU',1),(2623,168,'Surigao del Norte','SNO',1),(2624,168,'Surigao del Sur','SSU',1),(2625,168,'Tarlac','TAR',1),(2626,168,'Tawi-Tawi','TAW',1),(2627,168,'Zambales','ZBL',1),(2628,168,'Zamboanga del Norte','ZNO',1),(2629,168,'Zamboanga del Sur','ZSU',1),(2630,168,'Zamboanga Sibugay','ZSI',1),(2631,170,'Dolnoslaskie','DO',1),(2632,170,'Kujawsko-Pomorskie','KP',1),(2633,170,'Lodzkie','LO',1),(2634,170,'Lubelskie','LL',1),(2635,170,'Lubuskie','LU',1),(2636,170,'Malopolskie','ML',1),(2637,170,'Mazowieckie','MZ',1),(2638,170,'Opolskie','OP',1),(2639,170,'Podkarpackie','PP',1),(2640,170,'Podlaskie','PL',1),(2641,170,'Pomorskie','PM',1),(2642,170,'Slaskie','SL',1),(2643,170,'Swietokrzyskie','SW',1),(2644,170,'Warminsko-Mazurskie','WM',1),(2645,170,'Wielkopolskie','WP',1),(2646,170,'Zachodniopomorskie','ZA',1),(2647,198,'Saint Pierre','P',1),(2648,198,'Miquelon','M',1),(2649,171,'Açores','AC',1),(2650,171,'Aveiro','AV',1),(2651,171,'Beja','BE',1),(2652,171,'Braga','BR',1),(2653,171,'Bragança','BA',1),(2654,171,'Castelo Branco','CB',1),(2655,171,'Coimbra','CO',1),(2656,171,'Évora','EV',1),(2657,171,'Faro','FA',1),(2658,171,'Guarda','GU',1),(2659,171,'Leiria','LE',1),(2660,171,'Lisboa','LI',1),(2661,171,'Madeira','ME',1),(2662,171,'Portalegre','PO',1),(2663,171,'Porto','PR',1),(2664,171,'Santarém','SA',1),(2665,171,'Setúbal','SE',1),(2666,171,'Viana do Castelo','VC',1),(2667,171,'Vila Real','VR',1),(2668,171,'Viseu','VI',1),(2669,173,'Ad Dawhah','DW',1),(2670,173,'Al Ghuwayriyah','GW',1),(2671,173,'Al Jumayliyah','JM',1),(2672,173,'Al Khawr','KR',1),(2673,173,'Al Wakrah','WK',1),(2674,173,'Ar Rayyan','RN',1),(2675,173,'Jarayan al Batinah','JB',1),(2676,173,'Madinat ash Shamal','MS',1),(2677,173,'Umm Sa\'id','UD',1),(2678,173,'Umm Salal','UL',1),(2679,175,'Alba','AB',1),(2680,175,'Arad','AR',1),(2681,175,'Arges','AG',1),(2682,175,'Bacau','BC',1),(2683,175,'Bihor','BH',1),(2684,175,'Bistrita-Nasaud','BN',1),(2685,175,'Botosani','BT',1),(2686,175,'Brasov','BV',1),(2687,175,'Braila','BR',1),(2688,175,'Bucuresti','B',1),(2689,175,'Buzau','BZ',1),(2690,175,'Caras-Severin','CS',1),(2691,175,'Calarasi','CL',1),(2692,175,'Cluj','CJ',1),(2693,175,'Constanta','CT',1),(2694,175,'Covasna','CV',1),(2695,175,'Dimbovita','DB',1),(2696,175,'Dolj','DJ',1),(2697,175,'Galati','GL',1),(2698,175,'Giurgiu','GR',1),(2699,175,'Gorj','GJ',1),(2700,175,'Harghita','HR',1),(2701,175,'Hunedoara','HD',1),(2702,175,'Ialomita','IL',1),(2703,175,'Iasi','IS',1),(2704,175,'Ilfov','IF',1),(2705,175,'Maramures','MM',1),(2706,175,'Mehedinti','MH',1),(2707,175,'Mures','MS',1),(2708,175,'Neamt','NT',1),(2709,175,'Olt','OT',1),(2710,175,'Prahova','PH',1),(2711,175,'Satu-Mare','SM',1),(2712,175,'Salaj','SJ',1),(2713,175,'Sibiu','SB',1),(2714,175,'Suceava','SV',1),(2715,175,'Teleorman','TR',1),(2716,175,'Timis','TM',1),(2717,175,'Tulcea','TL',1),(2718,175,'Vaslui','VS',1),(2719,175,'Valcea','VL',1),(2720,175,'Vrancea','VN',1),(2721,176,'Abakan','AB',1),(2722,176,'Aginskoye','AG',1),(2723,176,'Anadyr','AN',1),(2724,176,'Arkahangelsk','AR',1),(2725,176,'Astrakhan','AS',1),(2726,176,'Barnaul','BA',1),(2727,176,'Belgorod','BE',1),(2728,176,'Birobidzhan','BI',1),(2729,176,'Blagoveshchensk','BL',1),(2730,176,'Bryansk','BR',1),(2731,176,'Cheboksary','CH',1),(2732,176,'Chelyabinsk','CL',1),(2733,176,'Cherkessk','CR',1),(2734,176,'Chita','CI',1),(2735,176,'Dudinka','DU',1),(2736,176,'Elista','EL',1),(2737,176,'Gomo-Altaysk','GO',1),(2738,176,'Gorno-Altaysk','GA',1),(2739,176,'Groznyy','GR',1),(2740,176,'Irkutsk','IR',1),(2741,176,'Ivanovo','IV',1),(2742,176,'Izhevsk','IZ',1),(2743,176,'Kalinigrad','KA',1),(2744,176,'Kaluga','KL',1),(2745,176,'Kasnodar','KS',1),(2746,176,'Kazan','KZ',1),(2747,176,'Kemerovo','KE',1),(2748,176,'Khabarovsk','KH',1),(2749,176,'Khanty-Mansiysk','KM',1),(2750,176,'Kostroma','KO',1),(2751,176,'Krasnodar','KR',1),(2752,176,'Krasnoyarsk','KN',1),(2753,176,'Kudymkar','KU',1),(2754,176,'Kurgan','KG',1),(2755,176,'Kursk','KK',1),(2756,176,'Kyzyl','KY',1),(2757,176,'Lipetsk','LI',1),(2758,176,'Magadan','MA',1),(2759,176,'Makhachkala','MK',1),(2760,176,'Maykop','MY',1),(2761,176,'Moscow','MO',1),(2762,176,'Murmansk','MU',1),(2763,176,'Nalchik','NA',1),(2764,176,'Naryan Mar','NR',1),(2765,176,'Nazran','NZ',1),(2766,176,'Nizhniy Novgorod','NI',1),(2767,176,'Novgorod','NO',1),(2768,176,'Novosibirsk','NV',1),(2769,176,'Omsk','OM',1),(2770,176,'Orel','OR',1),(2771,176,'Orenburg','OE',1),(2772,176,'Palana','PA',1),(2773,176,'Penza','PE',1),(2774,176,'Perm','PR',1),(2775,176,'Petropavlovsk-Kamchatskiy','PK',1),(2776,176,'Petrozavodsk','PT',1),(2777,176,'Pskov','PS',1),(2778,176,'Rostov-na-Donu','RO',1),(2779,176,'Ryazan','RY',1),(2780,176,'Salekhard','SL',1),(2781,176,'Samara','SA',1),(2782,176,'Saransk','SR',1),(2783,176,'Saratov','SV',1),(2784,176,'Smolensk','SM',1),(2785,176,'St. Petersburg','SP',1),(2786,176,'Stavropol','ST',1),(2787,176,'Syktyvkar','SY',1),(2788,176,'Tambov','TA',1),(2789,176,'Tomsk','TO',1),(2790,176,'Tula','TU',1),(2791,176,'Tura','TR',1),(2792,176,'Tver','TV',1),(2793,176,'Tyumen','TY',1),(2794,176,'Ufa','UF',1),(2795,176,'Ul\'yanovsk','UL',1),(2796,176,'Ulan-Ude','UU',1),(2797,176,'Ust\'-Ordynskiy','US',1),(2798,176,'Vladikavkaz','VL',1),(2799,176,'Vladimir','VA',1),(2800,176,'Vladivostok','VV',1),(2801,176,'Volgograd','VG',1),(2802,176,'Vologda','VD',1),(2803,176,'Voronezh','VO',1),(2804,176,'Vyatka','VY',1),(2805,176,'Yakutsk','YA',1),(2806,176,'Yaroslavl','YR',1),(2807,176,'Yekaterinburg','YE',1),(2808,176,'Yoshkar-Ola','YO',1),(2809,177,'Butare','BU',1),(2810,177,'Byumba','BY',1),(2811,177,'Cyangugu','CY',1),(2812,177,'Gikongoro','GK',1),(2813,177,'Gisenyi','GS',1),(2814,177,'Gitarama','GT',1),(2815,177,'Kibungo','KG',1),(2816,177,'Kibuye','KY',1),(2817,177,'Kigali Rurale','KR',1),(2818,177,'Kigali-ville','KV',1),(2819,177,'Ruhengeri','RU',1),(2820,177,'Umutara','UM',1),(2821,178,'Christ Church Nichola Town','CCN',1),(2822,178,'Saint Anne Sandy Point','SAS',1),(2823,178,'Saint George Basseterre','SGB',1),(2824,178,'Saint George Gingerland','SGG',1),(2825,178,'Saint James Windward','SJW',1),(2826,178,'Saint John Capesterre','SJC',1),(2827,178,'Saint John Figtree','SJF',1),(2828,178,'Saint Mary Cayon','SMC',1),(2829,178,'Saint Paul Capesterre','CAP',1),(2830,178,'Saint Paul Charlestown','CHA',1),(2831,178,'Saint Peter Basseterre','SPB',1),(2832,178,'Saint Thomas Lowland','STL',1),(2833,178,'Saint Thomas Middle Island','STM',1),(2834,178,'Trinity Palmetto Point','TPP',1),(2835,179,'Anse-la-Raye','AR',1),(2836,179,'Castries','CA',1),(2837,179,'Choiseul','CH',1),(2838,179,'Dauphin','DA',1),(2839,179,'Dennery','DE',1),(2840,179,'Gros-Islet','GI',1),(2841,179,'Laborie','LA',1),(2842,179,'Micoud','MI',1),(2843,179,'Praslin','PR',1),(2844,179,'Soufriere','SO',1),(2845,179,'Vieux-Fort','VF',1),(2846,180,'Charlotte','C',1),(2847,180,'Grenadines','R',1),(2848,180,'Saint Andrew','A',1),(2849,180,'Saint David','D',1),(2850,180,'Saint George','G',1),(2851,180,'Saint Patrick','P',1),(2852,181,'A\'ana','AN',1),(2853,181,'Aiga-i-le-Tai','AI',1),(2854,181,'Atua','AT',1),(2855,181,'Fa\'asaleleaga','FA',1),(2856,181,'Gaga\'emauga','GE',1),(2857,181,'Gagaifomauga','GF',1),(2858,181,'Palauli','PA',1),(2859,181,'Satupa\'itea','SA',1),(2860,181,'Tuamasaga','TU',1),(2861,181,'Va\'a-o-Fonoti','VF',1),(2862,181,'Vaisigano','VS',1),(2863,182,'Acquaviva','AC',1),(2864,182,'Borgo Maggiore','BM',1),(2865,182,'Chiesanuova','CH',1),(2866,182,'Domagnano','DO',1),(2867,182,'Faetano','FA',1),(2868,182,'Fiorentino','FI',1),(2869,182,'Montegiardino','MO',1),(2870,182,'Citta di San Marino','SM',1),(2871,182,'Serravalle','SE',1),(2872,183,'Sao Tome','S',1),(2873,183,'Principe','P',1),(2874,184,'Al Bahah','BH',1),(2875,184,'Al Hudud ash Shamaliyah','HS',1),(2876,184,'Al Jawf','JF',1),(2877,184,'Al Madinah','MD',1),(2878,184,'Al Qasim','QS',1),(2879,184,'Ar Riyad','RD',1),(2880,184,'Ash Sharqiyah (Eastern)','AQ',1),(2881,184,'\'Asir','AS',1),(2882,184,'Ha\'il','HL',1),(2883,184,'Jizan','JZ',1),(2884,184,'Makkah','ML',1),(2885,184,'Najran','NR',1),(2886,184,'Tabuk','TB',1),(2887,185,'Dakar','DA',1),(2888,185,'Diourbel','DI',1),(2889,185,'Fatick','FA',1),(2890,185,'Kaolack','KA',1),(2891,185,'Kolda','KO',1),(2892,185,'Louga','LO',1),(2893,185,'Matam','MA',1),(2894,185,'Saint-Louis','SL',1),(2895,185,'Tambacounda','TA',1),(2896,185,'Thies','TH',1),(2897,185,'Ziguinchor','ZI',1),(2898,186,'Anse aux Pins','AP',1),(2899,186,'Anse Boileau','AB',1),(2900,186,'Anse Etoile','AE',1),(2901,186,'Anse Louis','AL',1),(2902,186,'Anse Royale','AR',1),(2903,186,'Baie Lazare','BL',1),(2904,186,'Baie Sainte Anne','BS',1),(2905,186,'Beau Vallon','BV',1),(2906,186,'Bel Air','BA',1),(2907,186,'Bel Ombre','BO',1),(2908,186,'Cascade','CA',1),(2909,186,'Glacis','GL',1),(2910,186,'Grand\' Anse (on Mahe)','GM',1),(2911,186,'Grand\' Anse (on Praslin)','GP',1),(2912,186,'La Digue','DG',1),(2913,186,'La Riviere Anglaise','RA',1),(2914,186,'Mont Buxton','MB',1),(2915,186,'Mont Fleuri','MF',1),(2916,186,'Plaisance','PL',1),(2917,186,'Pointe La Rue','PR',1),(2918,186,'Port Glaud','PG',1),(2919,186,'Saint Louis','SL',1),(2920,186,'Takamaka','TA',1),(2921,187,'Eastern','E',1),(2922,187,'Northern','N',1),(2923,187,'Southern','S',1),(2924,187,'Western','W',1),(2925,189,'Banskobystrický','BA',1),(2926,189,'Bratislavský','BR',1),(2927,189,'KoÅ¡ický','KO',1),(2928,189,'Nitriansky','NI',1),(2929,189,'PreÅ¡ovský','PR',1),(2930,189,'TrenÄiansky','TC',1),(2931,189,'Trnavský','TV',1),(2932,189,'Žilinský','ZI',1),(2933,191,'Central','CE',1),(2934,191,'Choiseul','CH',1),(2935,191,'Guadalcanal','GC',1),(2936,191,'Honiara','HO',1),(2937,191,'Isabel','IS',1),(2938,191,'Makira','MK',1),(2939,191,'Malaita','ML',1),(2940,191,'Rennell and Bellona','RB',1),(2941,191,'Temotu','TM',1),(2942,191,'Western','WE',1),(2943,192,'Awdal','AW',1),(2944,192,'Bakool','BK',1),(2945,192,'Banaadir','BN',1),(2946,192,'Bari','BR',1),(2947,192,'Bay','BY',1),(2948,192,'Galguduud','GA',1),(2949,192,'Gedo','GE',1),(2950,192,'Hiiraan','HI',1),(2951,192,'Jubbada Dhexe','JD',1),(2952,192,'Jubbada Hoose','JH',1),(2953,192,'Mudug','MU',1),(2954,192,'Nugaal','NU',1),(2955,192,'Sanaag','SA',1),(2956,192,'Shabeellaha Dhexe','SD',1),(2957,192,'Shabeellaha Hoose','SH',1),(2958,192,'Sool','SL',1),(2959,192,'Togdheer','TO',1),(2960,192,'Woqooyi Galbeed','WG',1),(2961,193,'Eastern Cape','EC',1),(2962,193,'Free State','FS',1),(2963,193,'Gauteng','GT',1),(2964,193,'KwaZulu-Natal','KN',1),(2965,193,'Limpopo','LP',1),(2966,193,'Mpumalanga','MP',1),(2967,193,'North West','NW',1),(2968,193,'Northern Cape','NC',1),(2969,193,'Western Cape','WC',1),(2970,195,'La Coruña','CA',1),(2971,195,'Álava','AL',1),(2972,195,'Albacete','AB',1),(2973,195,'Alicante','AC',1),(2974,195,'Almeria','AM',1),(2975,195,'Asturias','AS',1),(2976,195,'Ávila','AV',1),(2977,195,'Badajoz','BJ',1),(2978,195,'Baleares','IB',1),(2979,195,'Barcelona','BA',1),(2980,195,'Burgos','BU',1),(2981,195,'Cáceres','CC',1),(2982,195,'Cádiz','CZ',1),(2983,195,'Cantabria','CT',1),(2984,195,'Castellón','CL',1),(2985,195,'Ceuta','CE',1),(2986,195,'Ciudad Real','CR',1),(2987,195,'Córdoba','CD',1),(2988,195,'Cuenca','CU',1),(2989,195,'Girona','GI',1),(2990,195,'Granada','GD',1),(2991,195,'Guadalajara','GJ',1),(2992,195,'Guipúzcoa','GP',1),(2993,195,'Huelva','HL',1),(2994,195,'Huesca','HS',1),(2995,195,'Jaén','JN',1),(2996,195,'La Rioja','RJ',1),(2997,195,'Las Palmas','PM',1),(2998,195,'Leon','LE',1),(2999,195,'Lleida','LL',1),(3000,195,'Lugo','LG',1),(3001,195,'Madrid','MD',1),(3002,195,'Malaga','MA',1),(3003,195,'Melilla','ML',1),(3004,195,'Murcia','MU',1),(3005,195,'Navarra','NV',1),(3006,195,'Ourense','OU',1),(3007,195,'Palencia','PL',1),(3008,195,'Pontevedra','PO',1),(3009,195,'Salamanca','SL',1),(3010,195,'Santa Cruz de Tenerife','SC',1),(3011,195,'Segovia','SG',1),(3012,195,'Sevilla','SV',1),(3013,195,'Soria','SO',1),(3014,195,'Tarragona','TA',1),(3015,195,'Teruel','TE',1),(3016,195,'Toledo','TO',1),(3017,195,'Valencia','VC',1),(3018,195,'Valladolid','VD',1),(3019,195,'Vizcaya','VZ',1),(3020,195,'Zamora','ZM',1),(3021,195,'Zaragoza','ZR',1),(3022,196,'Central','CE',1),(3023,196,'Eastern','EA',1),(3024,196,'North Central','NC',1),(3025,196,'Northern','NO',1),(3026,196,'North Western','NW',1),(3027,196,'Sabaragamuwa','SA',1),(3028,196,'Southern','SO',1),(3029,196,'Uva','UV',1),(3030,196,'Western','WE',1),(3031,197,'Ascension','A',1),(3032,197,'Saint Helena','S',1),(3033,197,'Tristan da Cunha','T',1),(3034,199,'A\'ali an Nil','ANL',1),(3035,199,'Al Bahr al Ahmar','BAM',1),(3036,199,'Al Buhayrat','BRT',1),(3037,199,'Al Jazirah','JZR',1),(3038,199,'Al Khartum','KRT',1),(3039,199,'Al Qadarif','QDR',1),(3040,199,'Al Wahdah','WDH',1),(3041,199,'An Nil al Abyad','ANB',1),(3042,199,'An Nil al Azraq','ANZ',1),(3043,199,'Ash Shamaliyah','ASH',1),(3044,199,'Bahr al Jabal','BJA',1),(3045,199,'Gharb al Istiwa\'iyah','GIS',1),(3046,199,'Gharb Bahr al Ghazal','GBG',1),(3047,199,'Gharb Darfur','GDA',1),(3048,199,'Gharb Kurdufan','GKU',1),(3049,199,'Janub Darfur','JDA',1),(3050,199,'Janub Kurdufan','JKU',1),(3051,199,'Junqali','JQL',1),(3052,199,'Kassala','KSL',1),(3053,199,'Nahr an Nil','NNL',1),(3054,199,'Shamal Bahr al Ghazal','SBG',1),(3055,199,'Shamal Darfur','SDA',1),(3056,199,'Shamal Kurdufan','SKU',1),(3057,199,'Sharq al Istiwa\'iyah','SIS',1),(3058,199,'Sinnar','SNR',1),(3059,199,'Warab','WRB',1),(3060,200,'Brokopondo','BR',1),(3061,200,'Commewijne','CM',1),(3062,200,'Coronie','CR',1),(3063,200,'Marowijne','MA',1),(3064,200,'Nickerie','NI',1),(3065,200,'Para','PA',1),(3066,200,'Paramaribo','PM',1),(3067,200,'Saramacca','SA',1),(3068,200,'Sipaliwini','SI',1),(3069,200,'Wanica','WA',1),(3070,202,'Hhohho','H',1),(3071,202,'Lubombo','L',1),(3072,202,'Manzini','M',1),(3073,202,'Shishelweni','S',1),(3074,203,'Blekinge','K',1),(3075,203,'Dalarna','W',1),(3076,203,'Gävleborg','X',1),(3077,203,'Gotland','I',1),(3078,203,'Halland','N',1),(3079,203,'Jämtland','Z',1),(3080,203,'Jönköping','F',1),(3081,203,'Kalmar','H',1),(3082,203,'Kronoberg','G',1),(3083,203,'Norrbotten','BD',1),(3084,203,'Örebro','T',1),(3085,203,'Östergötland','E',1),(3086,203,'Skåne','M',1),(3087,203,'Södermanland','D',1),(3088,203,'Stockholm','AB',1),(3089,203,'Uppsala','C',1),(3090,203,'Värmland','S',1),(3091,203,'Västerbotten','AC',1),(3092,203,'Västernorrland','Y',1),(3093,203,'Västmanland','U',1),(3094,203,'Västra Götaland','O',1),(3095,204,'Aargau','AG',1),(3096,204,'Appenzell Ausserrhoden','AR',1),(3097,204,'Appenzell Innerrhoden','AI',1),(3098,204,'Basel-Stadt','BS',1),(3099,204,'Basel-Landschaft','BL',1),(3100,204,'Bern','BE',1),(3101,204,'Fribourg','FR',1),(3102,204,'Genève','GE',1),(3103,204,'Glarus','GL',1),(3104,204,'Graubünden','GR',1),(3105,204,'Jura','JU',1),(3106,204,'Luzern','LU',1),(3107,204,'Neuchâtel','NE',1),(3108,204,'Nidwald','NW',1),(3109,204,'Obwald','OW',1),(3110,204,'St. Gallen','SG',1),(3111,204,'Schaffhausen','SH',1),(3112,204,'Schwyz','SZ',1),(3113,204,'Solothurn','SO',1),(3114,204,'Thurgau','TG',1),(3115,204,'Ticino','TI',1),(3116,204,'Uri','UR',1),(3117,204,'Valais','VS',1),(3118,204,'Vaud','VD',1),(3119,204,'Zug','ZG',1),(3120,204,'Zürich','ZH',1),(3121,205,'Al Hasakah','HA',1),(3122,205,'Al Ladhiqiyah','LA',1),(3123,205,'Al Qunaytirah','QU',1),(3124,205,'Ar Raqqah','RQ',1),(3125,205,'As Suwayda','SU',1),(3126,205,'Dara','DA',1),(3127,205,'Dayr az Zawr','DZ',1),(3128,205,'Dimashq','DI',1),(3129,205,'Halab','HL',1),(3130,205,'Hamah','HM',1),(3131,205,'Hims','HI',1),(3132,205,'Idlib','ID',1),(3133,205,'Rif Dimashq','RD',1),(3134,205,'Tartus','TA',1),(3135,206,'Chang-hua','CH',1),(3136,206,'Chia-i','CI',1),(3137,206,'Hsin-chu','HS',1),(3138,206,'Hua-lien','HL',1),(3139,206,'I-lan','IL',1),(3140,206,'Kao-hsiung county','KH',1),(3141,206,'Kin-men','KM',1),(3142,206,'Lien-chiang','LC',1),(3143,206,'Miao-li','ML',1),(3144,206,'Nan-t\'ou','NT',1),(3145,206,'P\'eng-hu','PH',1),(3146,206,'P\'ing-tung','PT',1),(3147,206,'T\'ai-chung','TG',1),(3148,206,'T\'ai-nan','TA',1),(3149,206,'T\'ai-pei county','TP',1),(3150,206,'T\'ai-tung','TT',1),(3151,206,'T\'ao-yuan','TY',1),(3152,206,'Yun-lin','YL',1),(3153,206,'Chia-i city','CC',1),(3154,206,'Chi-lung','CL',1),(3155,206,'Hsin-chu','HC',1),(3156,206,'T\'ai-chung','TH',1),(3157,206,'T\'ai-nan','TN',1),(3158,206,'Kao-hsiung city','KC',1),(3159,206,'T\'ai-pei city','TC',1),(3160,207,'Gorno-Badakhstan','GB',1),(3161,207,'Khatlon','KT',1),(3162,207,'Sughd','SU',1),(3163,208,'Arusha','AR',1),(3164,208,'Dar es Salaam','DS',1),(3165,208,'Dodoma','DO',1),(3166,208,'Iringa','IR',1),(3167,208,'Kagera','KA',1),(3168,208,'Kigoma','KI',1),(3169,208,'Kilimanjaro','KJ',1),(3170,208,'Lindi','LN',1),(3171,208,'Manyara','MY',1),(3172,208,'Mara','MR',1),(3173,208,'Mbeya','MB',1),(3174,208,'Morogoro','MO',1),(3175,208,'Mtwara','MT',1),(3176,208,'Mwanza','MW',1),(3177,208,'Pemba North','PN',1),(3178,208,'Pemba South','PS',1),(3179,208,'Pwani','PW',1),(3180,208,'Rukwa','RK',1),(3181,208,'Ruvuma','RV',1),(3182,208,'Shinyanga','SH',1),(3183,208,'Singida','SI',1),(3184,208,'Tabora','TB',1),(3185,208,'Tanga','TN',1),(3186,208,'Zanzibar Central/South','ZC',1),(3187,208,'Zanzibar North','ZN',1),(3188,208,'Zanzibar Urban/West','ZU',1),(3189,209,'Amnat Charoen','Amnat Charoen',1),(3190,209,'Ang Thong','Ang Thong',1),(3191,209,'Ayutthaya','Ayutthaya',1),(3192,209,'Bangkok','Bangkok',1),(3193,209,'Buriram','Buriram',1),(3194,209,'Chachoengsao','Chachoengsao',1),(3195,209,'Chai Nat','Chai Nat',1),(3196,209,'Chaiyaphum','Chaiyaphum',1),(3197,209,'Chanthaburi','Chanthaburi',1),(3198,209,'Chiang Mai','Chiang Mai',1),(3199,209,'Chiang Rai','Chiang Rai',1),(3200,209,'Chon Buri','Chon Buri',1),(3201,209,'Chumphon','Chumphon',1),(3202,209,'Kalasin','Kalasin',1),(3203,209,'Kamphaeng Phet','Kamphaeng Phet',1),(3204,209,'Kanchanaburi','Kanchanaburi',1),(3205,209,'Khon Kaen','Khon Kaen',1),(3206,209,'Krabi','Krabi',1),(3207,209,'Lampang','Lampang',1),(3208,209,'Lamphun','Lamphun',1),(3209,209,'Loei','Loei',1),(3210,209,'Lop Buri','Lop Buri',1),(3211,209,'Mae Hong Son','Mae Hong Son',1),(3212,209,'Maha Sarakham','Maha Sarakham',1),(3213,209,'Mukdahan','Mukdahan',1),(3214,209,'Nakhon Nayok','Nakhon Nayok',1),(3215,209,'Nakhon Pathom','Nakhon Pathom',1),(3216,209,'Nakhon Phanom','Nakhon Phanom',1),(3217,209,'Nakhon Ratchasima','Nakhon Ratchasima',1),(3218,209,'Nakhon Sawan','Nakhon Sawan',1),(3219,209,'Nakhon Si Thammarat','Nakhon Si Thammarat',1),(3220,209,'Nan','Nan',1),(3221,209,'Narathiwat','Narathiwat',1),(3222,209,'Nong Bua Lamphu','Nong Bua Lamphu',1),(3223,209,'Nong Khai','Nong Khai',1),(3224,209,'Nonthaburi','Nonthaburi',1),(3225,209,'Pathum Thani','Pathum Thani',1),(3226,209,'Pattani','Pattani',1),(3227,209,'Phangnga','Phangnga',1),(3228,209,'Phatthalung','Phatthalung',1),(3229,209,'Phayao','Phayao',1),(3230,209,'Phetchabun','Phetchabun',1),(3231,209,'Phetchaburi','Phetchaburi',1),(3232,209,'Phichit','Phichit',1),(3233,209,'Phitsanulok','Phitsanulok',1),(3234,209,'Phrae','Phrae',1),(3235,209,'Phuket','Phuket',1),(3236,209,'Prachin Buri','Prachin Buri',1),(3237,209,'Prachuap Khiri Khan','Prachuap Khiri Khan',1),(3238,209,'Ranong','Ranong',1),(3239,209,'Ratchaburi','Ratchaburi',1),(3240,209,'Rayong','Rayong',1),(3241,209,'Roi Et','Roi Et',1),(3242,209,'Sa Kaeo','Sa Kaeo',1),(3243,209,'Sakon Nakhon','Sakon Nakhon',1),(3244,209,'Samut Prakan','Samut Prakan',1),(3245,209,'Samut Sakhon','Samut Sakhon',1),(3246,209,'Samut Songkhram','Samut Songkhram',1),(3247,209,'Sara Buri','Sara Buri',1),(3248,209,'Satun','Satun',1),(3249,209,'Sing Buri','Sing Buri',1),(3250,209,'Sisaket','Sisaket',1),(3251,209,'Songkhla','Songkhla',1),(3252,209,'Sukhothai','Sukhothai',1),(3253,209,'Suphan Buri','Suphan Buri',1),(3254,209,'Surat Thani','Surat Thani',1),(3255,209,'Surin','Surin',1),(3256,209,'Tak','Tak',1),(3257,209,'Trang','Trang',1),(3258,209,'Trat','Trat',1),(3259,209,'Ubon Ratchathani','Ubon Ratchathani',1),(3260,209,'Udon Thani','Udon Thani',1),(3261,209,'Uthai Thani','Uthai Thani',1),(3262,209,'Uttaradit','Uttaradit',1),(3263,209,'Yala','Yala',1),(3264,209,'Yasothon','Yasothon',1),(3265,210,'Kara','K',1),(3266,210,'Plateaux','P',1),(3267,210,'Savanes','S',1),(3268,210,'Centrale','C',1),(3269,210,'Maritime','M',1),(3270,211,'Atafu','A',1),(3271,211,'Fakaofo','F',1),(3272,211,'Nukunonu','N',1),(3273,212,'Ha\'apai','H',1),(3274,212,'Tongatapu','T',1),(3275,212,'Vava\'u','V',1),(3276,213,'Couva/Tabaquite/Talparo','CT',1),(3277,213,'Diego Martin','DM',1),(3278,213,'Mayaro/Rio Claro','MR',1),(3279,213,'Penal/Debe','PD',1),(3280,213,'Princes Town','PT',1),(3281,213,'Sangre Grande','SG',1),(3282,213,'San Juan/Laventille','SL',1),(3283,213,'Siparia','SI',1),(3284,213,'Tunapuna/Piarco','TP',1),(3285,213,'Port of Spain','PS',1),(3286,213,'San Fernando','SF',1),(3287,213,'Arima','AR',1),(3288,213,'Point Fortin','PF',1),(3289,213,'Chaguanas','CH',1),(3290,213,'Tobago','TO',1),(3291,214,'Ariana','AR',1),(3292,214,'Beja','BJ',1),(3293,214,'Ben Arous','BA',1),(3294,214,'Bizerte','BI',1),(3295,214,'Gabes','GB',1),(3296,214,'Gafsa','GF',1),(3297,214,'Jendouba','JE',1),(3298,214,'Kairouan','KR',1),(3299,214,'Kasserine','KS',1),(3300,214,'Kebili','KB',1),(3301,214,'Kef','KF',1),(3302,214,'Mahdia','MH',1),(3303,214,'Manouba','MN',1),(3304,214,'Medenine','ME',1),(3305,214,'Monastir','MO',1),(3306,214,'Nabeul','NA',1),(3307,214,'Sfax','SF',1),(3308,214,'Sidi','SD',1),(3309,214,'Siliana','SL',1),(3310,214,'Sousse','SO',1),(3311,214,'Tataouine','TA',1),(3312,214,'Tozeur','TO',1),(3313,214,'Tunis','TU',1),(3314,214,'Zaghouan','ZA',1),(3315,215,'Adana','ADA',1),(3316,215,'Adıyaman','ADI',1),(3317,215,'Afyonkarahisar','AFY',1),(3318,215,'AÄŸrı','AGR',1),(3319,215,'Aksaray','AKS',1),(3320,215,'Amasya','AMA',1),(3321,215,'Ankara','ANK',1),(3322,215,'Antalya','ANT',1),(3323,215,'Ardahan','ARD',1),(3324,215,'Artvin','ART',1),(3325,215,'Aydın','AYI',1),(3326,215,'Balıkesir','BAL',1),(3327,215,'Bartın','BAR',1),(3328,215,'Batman','BAT',1),(3329,215,'Bayburt','BAY',1),(3330,215,'Bilecik','BIL',1),(3331,215,'Bingöl','BIN',1),(3332,215,'Bitlis','BIT',1),(3333,215,'Bolu','BOL',1),(3334,215,'Burdur','BRD',1),(3335,215,'Bursa','BRS',1),(3336,215,'Çanakkale','CKL',1),(3337,215,'Çankırı','CKR',1),(3338,215,'Çorum','COR',1),(3339,215,'Denizli','DEN',1),(3340,215,'Diyarbakir','DIY',1),(3341,215,'Düzce','DUZ',1),(3342,215,'Edirne','EDI',1),(3343,215,'Elazig','ELA',1),(3344,215,'Erzincan','EZC',1),(3345,215,'Erzurum','EZR',1),(3346,215,'EskiÅŸehir','ESK',1),(3347,215,'Gaziantep','GAZ',1),(3348,215,'Giresun','GIR',1),(3349,215,'Gümüşhane','GMS',1),(3350,215,'Hakkari','HKR',1),(3351,215,'Hatay','HTY',1),(3352,215,'IÄŸdır','IGD',1),(3353,215,'Isparta','ISP',1),(3354,215,'İstanbul','IST',1),(3355,215,'İzmir','IZM',1),(3356,215,'KahramanmaraÅŸ','KAH',1),(3357,215,'Karabük','KRB',1),(3358,215,'Karaman','KRM',1),(3359,215,'Kars','KRS',1),(3360,215,'Kastamonu','KAS',1),(3361,215,'Kayseri','KAY',1),(3362,215,'Kilis','KLS',1),(3363,215,'Kirikkale','KRK',1),(3364,215,'Kirklareli','KLR',1),(3365,215,'Kirsehir','KRH',1),(3366,215,'Kocaeli','KOC',1),(3367,215,'Konya','KON',1),(3368,215,'Kütahya','KUT',1),(3369,215,'Malatya','MAL',1),(3370,215,'Manisa','MAN',1),(3371,215,'Mardin','MAR',1),(3372,215,'Mersin','MER',1),(3373,215,'MuÄŸla','MUG',1),(3374,215,'MuÅŸ','MUS',1),(3375,215,'NevÅŸehir','NEV',1),(3376,215,'NiÄŸde','NIG',1),(3377,215,'Ordu','ORD',1),(3378,215,'Osmaniye','OSM',1),(3379,215,'Rize','RIZ',1),(3380,215,'Sakarya','SAK',1),(3381,215,'Samsun','SAM',1),(3382,215,'Åžanlıurfa','SAN',1),(3383,215,'Siirt','SII',1),(3384,215,'Sinop','SIN',1),(3385,215,'Şırnak','SIR',1),(3386,215,'Sivas','SIV',1),(3387,215,'TekirdaÄŸ','TEL',1),(3388,215,'Tokat','TOK',1),(3389,215,'Trabzon','TRA',1),(3390,215,'Tunceli','TUN',1),(3391,215,'UÅŸak','USK',1),(3392,215,'Van','VAN',1),(3393,215,'Yalova','YAL',1),(3394,215,'Yozgat','YOZ',1),(3395,215,'Zonguldak','ZON',1),(3396,216,'Ahal Welayaty','A',1),(3397,216,'Balkan Welayaty','B',1),(3398,216,'Dashhowuz Welayaty','D',1),(3399,216,'Lebap Welayaty','L',1),(3400,216,'Mary Welayaty','M',1),(3401,217,'Ambergris Cays','AC',1),(3402,217,'Dellis Cay','DC',1),(3403,217,'French Cay','FC',1),(3404,217,'Little Water Cay','LW',1),(3405,217,'Parrot Cay','RC',1),(3406,217,'Pine Cay','PN',1),(3407,217,'Salt Cay','SL',1),(3408,217,'Grand Turk','GT',1),(3409,217,'South Caicos','SC',1),(3410,217,'East Caicos','EC',1),(3411,217,'Middle Caicos','MC',1),(3412,217,'North Caicos','NC',1),(3413,217,'Providenciales','PR',1),(3414,217,'West Caicos','WC',1),(3415,218,'Nanumanga','NMG',1),(3416,218,'Niulakita','NLK',1),(3417,218,'Niutao','NTO',1),(3418,218,'Funafuti','FUN',1),(3419,218,'Nanumea','NME',1),(3420,218,'Nui','NUI',1),(3421,218,'Nukufetau','NFT',1),(3422,218,'Nukulaelae','NLL',1),(3423,218,'Vaitupu','VAI',1),(3424,219,'Kalangala','KAL',1),(3425,219,'Kampala','KMP',1),(3426,219,'Kayunga','KAY',1),(3427,219,'Kiboga','KIB',1),(3428,219,'Luwero','LUW',1),(3429,219,'Masaka','MAS',1),(3430,219,'Mpigi','MPI',1),(3431,219,'Mubende','MUB',1),(3432,219,'Mukono','MUK',1),(3433,219,'Nakasongola','NKS',1),(3434,219,'Rakai','RAK',1),(3435,219,'Sembabule','SEM',1),(3436,219,'Wakiso','WAK',1),(3437,219,'Bugiri','BUG',1),(3438,219,'Busia','BUS',1),(3439,219,'Iganga','IGA',1),(3440,219,'Jinja','JIN',1),(3441,219,'Kaberamaido','KAB',1),(3442,219,'Kamuli','KML',1),(3443,219,'Kapchorwa','KPC',1),(3444,219,'Katakwi','KTK',1),(3445,219,'Kumi','KUM',1),(3446,219,'Mayuge','MAY',1),(3447,219,'Mbale','MBA',1),(3448,219,'Pallisa','PAL',1),(3449,219,'Sironko','SIR',1),(3450,219,'Soroti','SOR',1),(3451,219,'Tororo','TOR',1),(3452,219,'Adjumani','ADJ',1),(3453,219,'Apac','APC',1),(3454,219,'Arua','ARU',1),(3455,219,'Gulu','GUL',1),(3456,219,'Kitgum','KIT',1),(3457,219,'Kotido','KOT',1),(3458,219,'Lira','LIR',1),(3459,219,'Moroto','MRT',1),(3460,219,'Moyo','MOY',1),(3461,219,'Nakapiripirit','NAK',1),(3462,219,'Nebbi','NEB',1),(3463,219,'Pader','PAD',1),(3464,219,'Yumbe','YUM',1),(3465,219,'Bundibugyo','BUN',1),(3466,219,'Bushenyi','BSH',1),(3467,219,'Hoima','HOI',1),(3468,219,'Kabale','KBL',1),(3469,219,'Kabarole','KAR',1),(3470,219,'Kamwenge','KAM',1),(3471,219,'Kanungu','KAN',1),(3472,219,'Kasese','KAS',1),(3473,219,'Kibaale','KBA',1),(3474,219,'Kisoro','KIS',1),(3475,219,'Kyenjojo','KYE',1),(3476,219,'Masindi','MSN',1),(3477,219,'Mbarara','MBR',1),(3478,219,'Ntungamo','NTU',1),(3479,219,'Rukungiri','RUK',1),(3480,220,'Cherkasy','CK',1),(3481,220,'Chernihiv','CH',1),(3482,220,'Chernivtsi','CV',1),(3483,220,'Crimea','CR',1),(3484,220,'Dnipropetrovs\'k','DN',1),(3485,220,'Donets\'k','DO',1),(3486,220,'Ivano-Frankivs\'k','IV',1),(3487,220,'Kharkiv Kherson','KL',1),(3488,220,'Khmel\'nyts\'kyy','KM',1),(3489,220,'Kirovohrad','KR',1),(3490,220,'Kiev','KV',1),(3491,220,'Kyyiv','KY',1),(3492,220,'Luhans\'k','LU',1),(3493,220,'L\'viv','LV',1),(3494,220,'Mykolayiv','MY',1),(3495,220,'Odesa','OD',1),(3496,220,'Poltava','PO',1),(3497,220,'Rivne','RI',1),(3498,220,'Sevastopol','SE',1),(3499,220,'Sumy','SU',1),(3500,220,'Ternopil\'','TE',1),(3501,220,'Vinnytsya','VI',1),(3502,220,'Volyn\'','VO',1),(3503,220,'Zakarpattya','ZK',1),(3504,220,'Zaporizhzhya','ZA',1),(3505,220,'Zhytomyr','ZH',1),(3506,221,'Abu Zaby','AZ',1),(3507,221,'\'Ajman','AJ',1),(3508,221,'Al Fujayrah','FU',1),(3509,221,'Ash Shariqah','SH',1),(3510,221,'Dubayy','DU',1),(3511,221,'R\'as al Khaymah','RK',1),(3512,221,'Umm al Qaywayn','UQ',1),(3513,222,'Aberdeen','ABN',1),(3514,222,'Aberdeenshire','ABNS',1),(3515,222,'Anglesey','ANG',1),(3516,222,'Angus','AGS',1),(3517,222,'Argyll and Bute','ARY',1),(3518,222,'Bedfordshire','BEDS',1),(3519,222,'Berkshire','BERKS',1),(3520,222,'Blaenau Gwent','BLA',1),(3521,222,'Bridgend','BRI',1),(3522,222,'Bristol','BSTL',1),(3523,222,'Buckinghamshire','BUCKS',1),(3524,222,'Caerphilly','CAE',1),(3525,222,'Cambridgeshire','CAMBS',1),(3526,222,'Cardiff','CDF',1),(3527,222,'Carmarthenshire','CARM',1),(3528,222,'Ceredigion','CDGN',1),(3529,222,'Cheshire','CHES',1),(3530,222,'Clackmannanshire','CLACK',1),(3531,222,'Conwy','CON',1),(3532,222,'Cornwall','CORN',1),(3533,222,'Denbighshire','DNBG',1),(3534,222,'Derbyshire','DERBY',1),(3535,222,'Devon','DVN',1),(3536,222,'Dorset','DOR',1),(3537,222,'Dumfries and Galloway','DGL',1),(3538,222,'Dundee','DUND',1),(3539,222,'Durham','DHM',1),(3540,222,'East Ayrshire','ARYE',1),(3541,222,'East Dunbartonshire','DUNBE',1),(3542,222,'East Lothian','LOTE',1),(3543,222,'East Renfrewshire','RENE',1),(3544,222,'East Riding of Yorkshire','ERYS',1),(3545,222,'East Sussex','SXE',1),(3546,222,'Edinburgh','EDIN',1),(3547,222,'Essex','ESX',1),(3548,222,'Falkirk','FALK',1),(3549,222,'Fife','FFE',1),(3550,222,'Flintshire','FLINT',1),(3551,222,'Glasgow','GLAS',1),(3552,222,'Gloucestershire','GLOS',1),(3553,222,'Greater London','LDN',1),(3554,222,'Greater Manchester','MCH',1),(3555,222,'Gwynedd','GDD',1),(3556,222,'Hampshire','HANTS',1),(3557,222,'Herefordshire','HWR',1),(3558,222,'Hertfordshire','HERTS',1),(3559,222,'Highlands','HLD',1),(3560,222,'Inverclyde','IVER',1),(3561,222,'Isle of Wight','IOW',1),(3562,222,'Kent','KNT',1),(3563,222,'Lancashire','LANCS',1),(3564,222,'Leicestershire','LEICS',1),(3565,222,'Lincolnshire','LINCS',1),(3566,222,'Merseyside','MSY',1),(3567,222,'Merthyr Tydfil','MERT',1),(3568,222,'Midlothian','MLOT',1),(3569,222,'Monmouthshire','MMOUTH',1),(3570,222,'Moray','MORAY',1),(3571,222,'Neath Port Talbot','NPRTAL',1),(3572,222,'Newport','NEWPT',1),(3573,222,'Norfolk','NOR',1),(3574,222,'North Ayrshire','ARYN',1),(3575,222,'North Lanarkshire','LANN',1),(3576,222,'North Yorkshire','YSN',1),(3577,222,'Northamptonshire','NHM',1),(3578,222,'Northumberland','NLD',1),(3579,222,'Nottinghamshire','NOT',1),(3580,222,'Orkney Islands','ORK',1),(3581,222,'Oxfordshire','OFE',1),(3582,222,'Pembrokeshire','PEM',1),(3583,222,'Perth and Kinross','PERTH',1),(3584,222,'Powys','PWS',1),(3585,222,'Renfrewshire','REN',1),(3586,222,'Rhondda Cynon Taff','RHON',1),(3587,222,'Rutland','RUT',1),(3588,222,'Scottish Borders','BOR',1),(3589,222,'Shetland Islands','SHET',1),(3590,222,'Shropshire','SPE',1),(3591,222,'Somerset','SOM',1),(3592,222,'South Ayrshire','ARYS',1),(3593,222,'South Lanarkshire','LANS',1),(3594,222,'South Yorkshire','YSS',1),(3595,222,'Staffordshire','SFD',1),(3596,222,'Stirling','STIR',1),(3597,222,'Suffolk','SFK',1),(3598,222,'Surrey','SRY',1),(3599,222,'Swansea','SWAN',1),(3600,222,'Torfaen','TORF',1),(3601,222,'Tyne and Wear','TWR',1),(3602,222,'Vale of Glamorgan','VGLAM',1),(3603,222,'Warwickshire','WARKS',1),(3604,222,'West Dunbartonshire','WDUN',1),(3605,222,'West Lothian','WLOT',1),(3606,222,'West Midlands','WMD',1),(3607,222,'West Sussex','SXW',1),(3608,222,'West Yorkshire','YSW',1),(3609,222,'Western Isles','WIL',1),(3610,222,'Wiltshire','WLT',1),(3611,222,'Worcestershire','WORCS',1),(3612,222,'Wrexham','WRX',1),(3613,223,'Alabama','AL',1),(3614,223,'Alaska','AK',1),(3615,223,'American Samoa','AS',1),(3616,223,'Arizona','AZ',1),(3617,223,'Arkansas','AR',1),(3618,223,'Armed Forces Africa','AF',1),(3619,223,'Armed Forces Americas','AA',1),(3620,223,'Armed Forces Canada','AC',1),(3621,223,'Armed Forces Europe','AE',1),(3622,223,'Armed Forces Middle East','AM',1),(3623,223,'Armed Forces Pacific','AP',1),(3624,223,'California','CA',1),(3625,223,'Colorado','CO',1),(3626,223,'Connecticut','CT',1),(3627,223,'Delaware','DE',1),(3628,223,'District of Columbia','DC',1),(3629,223,'Federated States Of Micronesia','FM',1),(3630,223,'Florida','FL',1),(3631,223,'Georgia','GA',1),(3632,223,'Guam','GU',1),(3633,223,'Hawaii','HI',1),(3634,223,'Idaho','ID',1),(3635,223,'Illinois','IL',1),(3636,223,'Indiana','IN',1),(3637,223,'Iowa','IA',1),(3638,223,'Kansas','KS',1),(3639,223,'Kentucky','KY',1),(3640,223,'Louisiana','LA',1),(3641,223,'Maine','ME',1),(3642,223,'Marshall Islands','MH',1),(3643,223,'Maryland','MD',1),(3644,223,'Massachusetts','MA',1),(3645,223,'Michigan','MI',1),(3646,223,'Minnesota','MN',1),(3647,223,'Mississippi','MS',1),(3648,223,'Missouri','MO',1),(3649,223,'Montana','MT',1),(3650,223,'Nebraska','NE',1),(3651,223,'Nevada','NV',1),(3652,223,'New Hampshire','NH',1),(3653,223,'New Jersey','NJ',1),(3654,223,'New Mexico','NM',1),(3655,223,'New York','NY',1),(3656,223,'North Carolina','NC',1),(3657,223,'North Dakota','ND',1),(3658,223,'Northern Mariana Islands','MP',1),(3659,223,'Ohio','OH',1),(3660,223,'Oklahoma','OK',1),(3661,223,'Oregon','OR',1),(3662,223,'Palau','PW',1),(3663,223,'Pennsylvania','PA',1),(3664,223,'Puerto Rico','PR',1),(3665,223,'Rhode Island','RI',1),(3666,223,'South Carolina','SC',1),(3667,223,'South Dakota','SD',1),(3668,223,'Tennessee','TN',1),(3669,223,'Texas','TX',1),(3670,223,'Utah','UT',1),(3671,223,'Vermont','VT',1),(3672,223,'Virgin Islands','VI',1),(3673,223,'Virginia','VA',1),(3674,223,'Washington','WA',1),(3675,223,'West Virginia','WV',1),(3676,223,'Wisconsin','WI',1),(3677,223,'Wyoming','WY',1),(3678,224,'Baker Island','BI',1),(3679,224,'Howland Island','HI',1),(3680,224,'Jarvis Island','JI',1),(3681,224,'Johnston Atoll','JA',1),(3682,224,'Kingman Reef','KR',1),(3683,224,'Midway Atoll','MA',1),(3684,224,'Navassa Island','NI',1),(3685,224,'Palmyra Atoll','PA',1),(3686,224,'Wake Island','WI',1),(3687,225,'Artigas','AR',1),(3688,225,'Canelones','CA',1),(3689,225,'Cerro Largo','CL',1),(3690,225,'Colonia','CO',1),(3691,225,'Durazno','DU',1),(3692,225,'Flores','FS',1),(3693,225,'Florida','FA',1),(3694,225,'Lavalleja','LA',1),(3695,225,'Maldonado','MA',1),(3696,225,'Montevideo','MO',1),(3697,225,'Paysandu','PA',1),(3698,225,'Rio Negro','RN',1),(3699,225,'Rivera','RV',1),(3700,225,'Rocha','RO',1),(3701,225,'Salto','SL',1),(3702,225,'San Jose','SJ',1),(3703,225,'Soriano','SO',1),(3704,225,'Tacuarembo','TA',1),(3705,225,'Treinta y Tres','TT',1),(3706,226,'Andijon','AN',1),(3707,226,'Buxoro','BU',1),(3708,226,'Farg\'ona','FA',1),(3709,226,'Jizzax','JI',1),(3710,226,'Namangan','NG',1),(3711,226,'Navoiy','NW',1),(3712,226,'Qashqadaryo','QA',1),(3713,226,'Qoraqalpog\'iston Republikasi','QR',1),(3714,226,'Samarqand','SA',1),(3715,226,'Sirdaryo','SI',1),(3716,226,'Surxondaryo','SU',1),(3717,226,'Toshkent City','TK',1),(3718,226,'Toshkent Region','TO',1),(3719,226,'Xorazm','XO',1),(3720,227,'Malampa','MA',1),(3721,227,'Penama','PE',1),(3722,227,'Sanma','SA',1),(3723,227,'Shefa','SH',1),(3724,227,'Tafea','TA',1),(3725,227,'Torba','TO',1),(3726,229,'Amazonas','AM',1),(3727,229,'Anzoategui','AN',1),(3728,229,'Apure','AP',1),(3729,229,'Aragua','AR',1),(3730,229,'Barinas','BA',1),(3731,229,'Bolivar','BO',1),(3732,229,'Carabobo','CA',1),(3733,229,'Cojedes','CO',1),(3734,229,'Delta Amacuro','DA',1),(3735,229,'Dependencias Federales','DF',1),(3736,229,'Distrito Federal','DI',1),(3737,229,'Falcon','FA',1),(3738,229,'Guarico','GU',1),(3739,229,'Lara','LA',1),(3740,229,'Merida','ME',1),(3741,229,'Miranda','MI',1),(3742,229,'Monagas','MO',1),(3743,229,'Nueva Esparta','NE',1),(3744,229,'Portuguesa','PO',1),(3745,229,'Sucre','SU',1),(3746,229,'Tachira','TA',1),(3747,229,'Trujillo','TR',1),(3748,229,'Vargas','VA',1),(3749,229,'Yaracuy','YA',1),(3750,229,'Zulia','ZU',1),(3751,230,'An Giang','AG',1),(3752,230,'Bac Giang','BG',1),(3753,230,'Bac Kan','BK',1),(3754,230,'Bac Lieu','BL',1),(3755,230,'Bac Ninh','BC',1),(3756,230,'Ba Ria-Vung Tau','BR',1),(3757,230,'Ben Tre','BN',1),(3758,230,'Binh Dinh','BH',1),(3759,230,'Binh Duong','BU',1),(3760,230,'Binh Phuoc','BP',1),(3761,230,'Binh Thuan','BT',1),(3762,230,'Ca Mau','CM',1),(3763,230,'Can Tho','CT',1),(3764,230,'Cao Bang','CB',1),(3765,230,'Dak Lak','DL',1),(3766,230,'Dak Nong','DG',1),(3767,230,'Da Nang','DN',1),(3768,230,'Dien Bien','DB',1),(3769,230,'Dong Nai','DI',1),(3770,230,'Dong Thap','DT',1),(3771,230,'Gia Lai','GL',1),(3772,230,'Ha Giang','HG',1),(3773,230,'Hai Duong','HD',1),(3774,230,'Hai Phong','HP',1),(3775,230,'Ha Nam','HM',1),(3776,230,'Ha Noi','HI',1),(3777,230,'Ha Tay','HT',1),(3778,230,'Ha Tinh','HH',1),(3779,230,'Hoa Binh','HB',1),(3780,230,'Ho Chi Minh City','HC',1),(3781,230,'Hau Giang','HU',1),(3782,230,'Hung Yen','HY',1),(3783,232,'Saint Croix','C',1),(3784,232,'Saint John','J',1),(3785,232,'Saint Thomas','T',1),(3786,233,'Alo','A',1),(3787,233,'Sigave','S',1),(3788,233,'Wallis','W',1),(3789,235,'Abyan','AB',1),(3790,235,'Adan','AD',1),(3791,235,'Amran','AM',1),(3792,235,'Al Bayda','BA',1),(3793,235,'Ad Dali','DA',1),(3794,235,'Dhamar','DH',1),(3795,235,'Hadramawt','HD',1),(3796,235,'Hajjah','HJ',1),(3797,235,'Al Hudaydah','HU',1),(3798,235,'Ibb','IB',1),(3799,235,'Al Jawf','JA',1),(3800,235,'Lahij','LA',1),(3801,235,'Ma\'rib','MA',1),(3802,235,'Al Mahrah','MR',1),(3803,235,'Al Mahwit','MW',1),(3804,235,'Sa\'dah','SD',1),(3805,235,'San\'a','SN',1),(3806,235,'Shabwah','SH',1),(3807,235,'Ta\'izz','TA',1),(3808,236,'Kosovo','KOS',1),(3809,236,'Montenegro','MON',1),(3810,236,'Serbia','SER',1),(3811,236,'Vojvodina','VOJ',1),(3812,237,'Bas-Congo','BC',1),(3813,237,'Bandundu','BN',1),(3814,237,'Equateur','EQ',1),(3815,237,'Katanga','KA',1),(3816,237,'Kasai-Oriental','KE',1),(3817,237,'Kinshasa','KN',1),(3818,237,'Kasai-Occidental','KW',1),(3819,237,'Maniema','MA',1),(3820,237,'Nord-Kivu','NK',1),(3821,237,'Orientale','OR',1),(3822,237,'Sud-Kivu','SK',1),(3823,238,'Central','CE',1),(3824,238,'Copperbelt','CB',1),(3825,238,'Eastern','EA',1),(3826,238,'Luapula','LP',1),(3827,238,'Lusaka','LK',1),(3828,238,'Northern','NO',1),(3829,238,'North-Western','NW',1),(3830,238,'Southern','SO',1),(3831,238,'Western','WE',1),(3832,239,'Bulawayo','BU',1),(3833,239,'Harare','HA',1),(3834,239,'Manicaland','ML',1),(3835,239,'Mashonaland Central','MC',1),(3836,239,'Mashonaland East','ME',1),(3837,239,'Mashonaland West','MW',1),(3838,239,'Masvingo','MV',1),(3839,239,'Matabeleland North','MN',1),(3840,239,'Matabeleland South','MS',1),(3841,239,'Midlands','MD',1),(3861,105,'Campobasso','CB',1),(3862,105,'Carbonia-Iglesias','CI',1),(3863,105,'Caserta','CE',1),(3864,105,'Catania','CT',1),(3865,105,'Catanzaro','CZ',1),(3866,105,'Chieti','CH',1),(3867,105,'Como','CO',1),(3868,105,'Cosenza','CS',1),(3869,105,'Cremona','CR',1),(3870,105,'Crotone','KR',1),(3871,105,'Cuneo','CN',1),(3872,105,'Enna','EN',1),(3873,105,'Ferrara','FE',1),(3874,105,'Firenze','FI',1),(3875,105,'Foggia','FG',1),(3876,105,'Forli-Cesena','FC',1),(3877,105,'Frosinone','FR',1),(3878,105,'Genova','GE',1),(3879,105,'Gorizia','GO',1),(3880,105,'Grosseto','GR',1),(3881,105,'Imperia','IM',1),(3882,105,'Isernia','IS',1),(3883,105,'L'Aquila','AQ',1),(3884,105,'La Spezia','SP',1),(3885,105,'Latina','LT',1),(3886,105,'Lecce','LE',1),(3887,105,'Lecco','LC',1),(3888,105,'Livorno','LI',1),(3889,105,'Lodi','LO',1),(3890,105,'Lucca','LU',1),(3891,105,'Macerata','MC',1),(3892,105,'Mantova','MN',1),(3893,105,'Massa-Carrara','MS',1),(3894,105,'Matera','MT',1),(3895,105,'Medio Campidano','VS',1),(3896,105,'Messina','ME',1),(3897,105,'Milano','MI',1),(3898,105,'Modena','MO',1),(3899,105,'Napoli','NA',1),(3900,105,'Novara','NO',1),(3901,105,'Nuoro','NU',1),(3902,105,'Ogliastra','OG',1),(3903,105,'Olbia-Tempio','OT',1),(3904,105,'Oristano','OR',1),(3905,105,'Padova','PD',1),(3906,105,'Palermo','PA',1),(3907,105,'Parma','PR',1),(3908,105,'Pavia','PV',1),(3909,105,'Perugia','PG',1),(3910,105,'Pesaro e Urbino','PU',1),(3911,105,'Pescara','PE',1),(3912,105,'Piacenza','PC',1),(3913,105,'Pisa','PI',1),(3914,105,'Pistoia','PT',1),(3915,105,'Pordenone','PN',1),(3916,105,'Potenza','PZ',1),(3917,105,'Prato','PO',1),(3918,105,'Ragusa','RG',1),(3919,105,'Ravenna','RA',1),(3920,105,'Reggio Calabria','RC',1),(3921,105,'Reggio Emilia','RE',1),(3922,105,'Rieti','RI',1),(3923,105,'Rimini','RN',1),(3924,105,'Roma','RM',1),(3925,105,'Rovigo','RO',1),(3926,105,'Salerno','SA',1),(3927,105,'Sassari','SS',1),(3928,105,'Savona','SV',1),(3929,105,'Siena','SI',1),(3930,105,'Siracusa','SR',1),(3931,105,'Sondrio','SO',1),(3932,105,'Taranto','TA',1),(3933,105,'Teramo','TE',1),(3934,105,'Terni','TR',1),(3935,105,'Torino','TO',1),(3936,105,'Trapani','TP',1),(3937,105,'Trento','TN',1),(3938,105,'Treviso','TV',1),(3939,105,'Trieste','TS',1),(3940,105,'Udine','UD',1),(3941,105,'Varese','VA',1),(3942,105,'Venezia','VE',1),(3943,105,'Verbano-Cusio-Ossola','VB',1),(3944,105,'Vercelli','VC',1),(3945,105,'Verona','VR',1),(3946,105,'Vibo Valentia','VV',1),(3947,105,'Vicenza','VI',1),(3948,105,'Viterbo','VT',1),(3949,222,'County Antrim','ANT',1),(3950,222,'County Armagh','ARM',1),(3951,222,'County Down','DOW',1),(3952,222,'County Fermanagh','FER',1),(3953,222,'County Londonderry','LDY',1),(3954,222,'County Tyrone','TYR',1),(3955,222,'Cumbria','CMA',1),(3956,190,'Pomurska','1',1),(3957,190,'Podravska','2',1),(3958,190,'KoroÅ¡ka','3',1),(3959,190,'Savinjska','4',1),(3960,190,'Zasavska','5',1),(3961,190,'Spodnjeposavska','6',1),(3962,190,'Jugovzhodna Slovenija','7',1),(3963,190,'Osrednjeslovenska','8',1),(3964,190,'Gorenjska','9',1),(3965,190,'Notranjsko-kraÅ¡ka','10',1),(3966,190,'GoriÅ¡ka','11',1),(3967,190,'Obalno-kraÅ¡ka','12',1),(3968,33,'Ruse','',1),(3969,101,'Alborz','ALB',1);
2662/*!40000 ALTER TABLE `zone` ENABLE KEYS */;
2663UNLOCK TABLES;
2664
2665--
2666-- Table structure for table `zone_to_geo_zone`
2667--
2668
2669DROP TABLE IF EXISTS `zone_to_geo_zone`;
2670SET @saved_cs_client = @@character_set_client;
2671SET character_set_client = utf8;
2672CREATE TABLE `zone_to_geo_zone` (
2673 `zone_to_geo_zone_id` int(11) NOT NULL auto_increment,
2674 `country_id` int(11) NOT NULL,
2675 `zone_id` int(11) NOT NULL default '0',
2676 `geo_zone_id` int(11) NOT NULL,
2677 `date_added` datetime NOT NULL default '0000-00-00 00:00:00',
2678 `date_modified` datetime NOT NULL default '0000-00-00 00:00:00',
2679 PRIMARY KEY (`zone_to_geo_zone_id`)
2680) ENGINE=MyISAM AUTO_INCREMENT=66 DEFAULT CHARSET=utf8 COLLATE=utf8_bin;
2681SET character_set_client = @saved_cs_client;
2682
2683--
2684-- Dumping data for table `zone_to_geo_zone`
2685--
2686
2687LOCK TABLES `zone_to_geo_zone` WRITE;
2688/*!40000 ALTER TABLE `zone_to_geo_zone` DISABLE KEYS */;
2689INSERT INTO `zone_to_geo_zone` VALUES (57,222,0,3,'2010-02-26 22:33:24','0000-00-00 00:00:00'),(65,222,0,4,'2010-12-15 15:18:13','0000-00-00 00:00:00');
2690/*!40000 ALTER TABLE `zone_to_geo_zone` ENABLE KEYS */;
2691UNLOCK TABLES;
2692
2693--
2694-- Dumping routines for database 'windowscreensnow'
2695--
2696DELIMITER ;;
2697DELIMITER ;
2698/*!40103 SET TIME_ZONE=@OLD_TIME_ZONE */;
2699
2700/*!40101 SET SQL_MODE=@OLD_SQL_MODE */;
2701/*!40014 SET FOREIGN_KEY_CHECKS=@OLD_FOREIGN_KEY_CHECKS */;
2702/*!40014 SET UNIQUE_CHECKS=@OLD_UNIQUE_CHECKS */;
2703/*!40101 SET CHARACTER_SET_CLIENT=@OLD_CHARACTER_SET_CLIENT */;
2704/*!40101 SET CHARACTER_SET_RESULTS=@OLD_CHARACTER_SET_RESULTS */;
2705/*!40101 SET COLLATION_CONNECTION=@OLD_COLLATION_CONNECTION */;
2706/*!40111 SET SQL_NOTES=@OLD_SQL_NOTES */;