· 9 years ago · Dec 13, 2016, 09:10 AM
1-- phpMyAdmin SQL Dump
2-- version 4.1.12
3-- http://www.phpmyadmin.net
4--
5-- Host: 127.0.0.1
6-- Generation Time: Jun 09, 2015 at 02:03 AM
7-- Server version: 5.6.16
8-- PHP Version: 5.5.11
9
10SET SQL_MODE = "NO_AUTO_VALUE_ON_ZERO";
11SET time_zone = "+00:00";
12
13
14/*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */;
15/*!40101 SET @OLD_CHARACTER_SET_RESULTS=@@CHARACTER_SET_RESULTS */;
16/*!40101 SET @OLD_COLLATION_CONNECTION=@@COLLATION_CONNECTION */;
17/*!40101 SET NAMES utf8 */;
18
19--
20-- Database: `spaces`
21--
22
23-- --------------------------------------------------------
24
25--
26-- Table structure for table `address`
27--
28
29CREATE TABLE IF NOT EXISTS `address` (
30 `address_id` int(11) NOT NULL AUTO_INCREMENT,
31 `customer_id` int(11) NOT NULL,
32 `firstname` varchar(32) NOT NULL,
33 `lastname` varchar(32) NOT NULL,
34 `company` varchar(32) NOT NULL,
35 `company_id` varchar(32) NOT NULL,
36 `tax_id` varchar(32) NOT NULL,
37 `address_1` varchar(128) NOT NULL,
38 `address_2` varchar(128) NOT NULL,
39 `city` varchar(128) NOT NULL,
40 `postcode` varchar(10) NOT NULL,
41 `country_id` int(11) NOT NULL DEFAULT '0',
42 `zone_id` int(11) NOT NULL DEFAULT '0',
43 PRIMARY KEY (`address_id`),
44 KEY `customer_id` (`customer_id`)
45) ENGINE=MyISAM DEFAULT CHARSET=utf8 AUTO_INCREMENT=1 ;
46
47-- --------------------------------------------------------
48
49--
50-- Table structure for table `affiliate`
51--
52
53CREATE TABLE IF NOT EXISTS `affiliate` (
54 `affiliate_id` int(11) NOT NULL AUTO_INCREMENT,
55 `firstname` varchar(32) NOT NULL,
56 `lastname` varchar(32) NOT NULL,
57 `email` varchar(96) NOT NULL,
58 `telephone` varchar(32) NOT NULL,
59 `fax` varchar(32) NOT NULL,
60 `password` varchar(40) NOT NULL,
61 `salt` varchar(9) NOT NULL,
62 `company` varchar(32) NOT NULL,
63 `website` varchar(255) NOT NULL,
64 `address_1` varchar(128) NOT NULL,
65 `address_2` varchar(128) NOT NULL,
66 `city` varchar(128) NOT NULL,
67 `postcode` varchar(10) NOT NULL,
68 `country_id` int(11) NOT NULL,
69 `zone_id` int(11) NOT NULL,
70 `code` varchar(64) NOT NULL,
71 `commission` decimal(4,2) NOT NULL DEFAULT '0.00',
72 `tax` varchar(64) NOT NULL,
73 `payment` varchar(6) NOT NULL,
74 `cheque` varchar(100) NOT NULL,
75 `paypal` varchar(64) NOT NULL,
76 `bank_name` varchar(64) NOT NULL,
77 `bank_branch_number` varchar(64) NOT NULL,
78 `bank_swift_code` varchar(64) NOT NULL,
79 `bank_account_name` varchar(64) NOT NULL,
80 `bank_account_number` varchar(64) NOT NULL,
81 `ip` varchar(40) NOT NULL,
82 `status` tinyint(1) NOT NULL,
83 `approved` tinyint(1) NOT NULL,
84 `date_added` datetime NOT NULL,
85 PRIMARY KEY (`affiliate_id`)
86) ENGINE=MyISAM DEFAULT CHARSET=utf8 AUTO_INCREMENT=1 ;
87
88-- --------------------------------------------------------
89
90--
91-- Table structure for table `affiliate_transaction`
92--
93
94CREATE TABLE IF NOT EXISTS `affiliate_transaction` (
95 `affiliate_transaction_id` int(11) NOT NULL AUTO_INCREMENT,
96 `affiliate_id` int(11) NOT NULL,
97 `order_id` int(11) NOT NULL,
98 `description` text NOT NULL,
99 `amount` decimal(15,4) NOT NULL,
100 `date_added` datetime NOT NULL,
101 PRIMARY KEY (`affiliate_transaction_id`)
102) ENGINE=MyISAM DEFAULT CHARSET=utf8 AUTO_INCREMENT=1 ;
103
104-- --------------------------------------------------------
105
106--
107-- Table structure for table `attribute`
108--
109
110CREATE TABLE IF NOT EXISTS `attribute` (
111 `attribute_id` int(11) NOT NULL AUTO_INCREMENT,
112 `attribute_group_id` int(11) NOT NULL,
113 `sort_order` int(3) NOT NULL,
114 PRIMARY KEY (`attribute_id`)
115) ENGINE=MyISAM DEFAULT CHARSET=utf8 AUTO_INCREMENT=12 ;
116
117--
118-- Dumping data for table `attribute`
119--
120
121INSERT INTO `attribute` (`attribute_id`, `attribute_group_id`, `sort_order`) VALUES
122(1, 6, 1),
123(2, 6, 5),
124(3, 6, 3),
125(4, 3, 1),
126(5, 3, 2),
127(6, 3, 3),
128(7, 3, 4),
129(8, 3, 5),
130(9, 3, 6),
131(10, 3, 7),
132(11, 3, 8);
133
134-- --------------------------------------------------------
135
136--
137-- Table structure for table `attribute_description`
138--
139
140CREATE TABLE IF NOT EXISTS `attribute_description` (
141 `attribute_id` int(11) NOT NULL,
142 `language_id` int(11) NOT NULL,
143 `name` varchar(64) NOT NULL,
144 PRIMARY KEY (`attribute_id`,`language_id`)
145) ENGINE=MyISAM DEFAULT CHARSET=utf8;
146
147--
148-- Dumping data for table `attribute_description`
149--
150
151INSERT INTO `attribute_description` (`attribute_id`, `language_id`, `name`) VALUES
152(1, 1, 'Description'),
153(2, 1, 'No. of Cores'),
154(4, 1, 'test 1'),
155(5, 1, 'test 2'),
156(6, 1, 'test 3'),
157(7, 1, 'test 4'),
158(8, 1, 'test 5'),
159(9, 1, 'test 6'),
160(10, 1, 'test 7'),
161(11, 1, 'test 8'),
162(3, 1, 'Clockspeed');
163
164-- --------------------------------------------------------
165
166--
167-- Table structure for table `attribute_group`
168--
169
170CREATE TABLE IF NOT EXISTS `attribute_group` (
171 `attribute_group_id` int(11) NOT NULL AUTO_INCREMENT,
172 `sort_order` int(3) NOT NULL,
173 PRIMARY KEY (`attribute_group_id`)
174) ENGINE=MyISAM DEFAULT CHARSET=utf8 AUTO_INCREMENT=7 ;
175
176--
177-- Dumping data for table `attribute_group`
178--
179
180INSERT INTO `attribute_group` (`attribute_group_id`, `sort_order`) VALUES
181(3, 2),
182(4, 1),
183(5, 3),
184(6, 4);
185
186-- --------------------------------------------------------
187
188--
189-- Table structure for table `attribute_group_description`
190--
191
192CREATE TABLE IF NOT EXISTS `attribute_group_description` (
193 `attribute_group_id` int(11) NOT NULL,
194 `language_id` int(11) NOT NULL,
195 `name` varchar(64) NOT NULL,
196 PRIMARY KEY (`attribute_group_id`,`language_id`)
197) ENGINE=MyISAM DEFAULT CHARSET=utf8;
198
199--
200-- Dumping data for table `attribute_group_description`
201--
202
203INSERT INTO `attribute_group_description` (`attribute_group_id`, `language_id`, `name`) VALUES
204(3, 1, 'Memory'),
205(4, 1, 'Technical'),
206(5, 1, 'Motherboard'),
207(6, 1, 'Processor');
208
209-- --------------------------------------------------------
210
211--
212-- Table structure for table `banner`
213--
214
215CREATE TABLE IF NOT EXISTS `banner` (
216 `banner_id` int(11) NOT NULL AUTO_INCREMENT,
217 `name` varchar(64) NOT NULL,
218 `status` tinyint(1) NOT NULL,
219 PRIMARY KEY (`banner_id`)
220) ENGINE=MyISAM DEFAULT CHARSET=utf8 AUTO_INCREMENT=9 ;
221
222--
223-- Dumping data for table `banner`
224--
225
226INSERT INTO `banner` (`banner_id`, `name`, `status`) VALUES
227(6, 'HP Products', 1),
228(7, 'Homepage Slideshow', 1),
229(8, 'Manufacturers', 1);
230
231-- --------------------------------------------------------
232
233--
234-- Table structure for table `banner_image`
235--
236
237CREATE TABLE IF NOT EXISTS `banner_image` (
238 `banner_image_id` int(11) NOT NULL AUTO_INCREMENT,
239 `banner_id` int(11) NOT NULL,
240 `link` varchar(255) NOT NULL,
241 `image` varchar(255) NOT NULL,
242 PRIMARY KEY (`banner_image_id`)
243) ENGINE=MyISAM DEFAULT CHARSET=utf8 AUTO_INCREMENT=80 ;
244
245--
246-- Dumping data for table `banner_image`
247--
248
249INSERT INTO `banner_image` (`banner_image_id`, `banner_id`, `link`, `image`) VALUES
250(78, 7, 'index.php?route=product/product&path=57&product_id=49', 'data/demo/samsung_banner.jpg'),
251(77, 6, 'index.php?route=product/manufacturer/info&manufacturer_id=7', 'data/demo/hp_banner.jpg'),
252(75, 8, 'index.php?route=product/manufacturer/info&manufacturer_id=5', 'data/demo/htc_logo.jpg'),
253(73, 8, 'index.php?route=product/manufacturer/info&manufacturer_id=8', 'data/demo/apple_logo.jpg'),
254(74, 8, 'index.php?route=product/manufacturer/info&manufacturer_id=9', 'data/demo/canon_logo.jpg'),
255(71, 8, 'index.php?route=product/manufacturer/info&manufacturer_id=10', 'data/demo/sony_logo.jpg'),
256(72, 8, 'index.php?route=product/manufacturer/info&manufacturer_id=6', 'data/demo/palm_logo.jpg'),
257(76, 8, 'index.php?route=product/manufacturer/info&manufacturer_id=7', 'data/demo/hp_logo.jpg'),
258(79, 7, '', 'data/banner/slider1.jpg');
259
260-- --------------------------------------------------------
261
262--
263-- Table structure for table `banner_image_description`
264--
265
266CREATE TABLE IF NOT EXISTS `banner_image_description` (
267 `banner_image_id` int(11) NOT NULL,
268 `language_id` int(11) NOT NULL,
269 `banner_id` int(11) NOT NULL,
270 `title` varchar(64) NOT NULL,
271 PRIMARY KEY (`banner_image_id`,`language_id`)
272) ENGINE=MyISAM DEFAULT CHARSET=utf8;
273
274--
275-- Dumping data for table `banner_image_description`
276--
277
278INSERT INTO `banner_image_description` (`banner_image_id`, `language_id`, `banner_id`, `title`) VALUES
279(78, 1, 7, 'Samsung Tab 10.1'),
280(77, 1, 6, 'HP Banner'),
281(75, 1, 8, 'HTC'),
282(74, 1, 8, 'Canon'),
283(73, 1, 8, 'Apple'),
284(72, 1, 8, 'Palm'),
285(71, 1, 8, 'Sony'),
286(76, 1, 8, 'Hewlett-Packard'),
287(79, 1, 7, 'Dummy');
288
289-- --------------------------------------------------------
290
291--
292-- Table structure for table `cache_supercategory`
293--
294
295CREATE TABLE IF NOT EXISTS `cache_supercategory` (
296 `cache_id` int(11) NOT NULL AUTO_INCREMENT,
297 `store_id` int(11) NOT NULL,
298 `man` varchar(10) COLLATE utf8_bin NOT NULL,
299 `cat` varchar(10) COLLATE utf8_bin NOT NULL,
300 `name` varchar(200) COLLATE utf8_bin DEFAULT NULL,
301 `data` longtext COLLATE utf8_bin NOT NULL,
302 `cached` int(11) NOT NULL DEFAULT '1',
303 `string` text COLLATE utf8_bin NOT NULL,
304 `date` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP,
305 PRIMARY KEY (`cache_id`),
306 UNIQUE KEY `name` (`name`,`cat`)
307) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_bin AUTO_INCREMENT=1 ;
308
309-- --------------------------------------------------------
310
311--
312-- Table structure for table `cache_supercategory_menu`
313--
314
315CREATE TABLE IF NOT EXISTS `cache_supercategory_menu` (
316 `cache_id` int(11) NOT NULL AUTO_INCREMENT,
317 `store_id` int(11) NOT NULL,
318 `man` varchar(10) COLLATE utf8_bin NOT NULL,
319 `cat` varchar(10) COLLATE utf8_bin NOT NULL,
320 `name` varchar(200) COLLATE utf8_bin DEFAULT NULL,
321 `data` longtext COLLATE utf8_bin NOT NULL,
322 `cached` int(11) NOT NULL DEFAULT '1',
323 `string` text COLLATE utf8_bin NOT NULL,
324 `date` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP,
325 PRIMARY KEY (`cache_id`),
326 UNIQUE KEY `name` (`name`,`cat`)
327) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_bin AUTO_INCREMENT=1 ;
328
329-- --------------------------------------------------------
330
331--
332-- Table structure for table `category`
333--
334
335CREATE TABLE IF NOT EXISTS `category` (
336 `category_id` int(11) NOT NULL AUTO_INCREMENT,
337 `image` varchar(255) DEFAULT NULL,
338 `parent_id` int(11) NOT NULL DEFAULT '0',
339 `top` tinyint(1) NOT NULL,
340 `column` int(3) NOT NULL,
341 `sort_order` int(3) NOT NULL DEFAULT '0',
342 `status` tinyint(1) NOT NULL,
343 `date_added` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
344 `date_modified` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
345 PRIMARY KEY (`category_id`)
346) ENGINE=MyISAM DEFAULT CHARSET=utf8 AUTO_INCREMENT=59 ;
347
348--
349-- Dumping data for table `category`
350--
351
352INSERT INTO `category` (`category_id`, `image`, `parent_id`, `top`, `column`, `sort_order`, `status`, `date_added`, `date_modified`) VALUES
353(25, '', 0, 1, 1, 8, 1, '2009-01-31 01:04:25', '2015-06-04 14:38:57'),
354(27, '', 20, 0, 0, 2, 1, '2009-01-31 01:55:34', '2015-06-04 14:22:51'),
355(20, 'data/banner/category-image.jpg', 0, 1, 1, 1, 1, '2009-01-05 21:49:43', '2015-06-05 11:14:00'),
356(18, 'data/demo/hp_2.jpg', 0, 1, 0, 2, 1, '2009-01-05 21:49:15', '2015-06-04 14:22:10'),
357(17, '', 0, 1, 1, 5, 1, '2009-01-03 21:08:57', '2015-06-04 14:32:48'),
358(28, '', 0, 0, 0, 10, 1, '2009-02-02 13:11:12', '2015-06-04 14:39:54'),
359(26, 'data/banner/slider1.jpg', 20, 0, 0, 1, 1, '2009-01-31 01:55:14', '2015-06-05 12:45:24'),
360(29, '', 0, 0, 0, 9, 1, '2009-02-02 13:11:37', '2015-06-04 14:40:18'),
361(30, '', 0, 0, 0, 13, 1, '2009-02-02 13:11:59', '2015-06-04 14:53:42'),
362(31, '', 0, 0, 0, 14, 1, '2009-02-03 14:17:24', '2015-06-04 14:54:13'),
363(33, '', 0, 1, 1, 7, 1, '2009-02-03 14:17:55', '2015-06-04 14:34:44'),
364(35, '', 0, 0, 0, 11, 1, '2010-09-17 10:06:48', '2015-06-04 14:52:10'),
365(36, '', 0, 0, 0, 12, 1, '2010-09-17 10:07:13', '2015-06-04 14:52:54'),
366(45, 'data/banner/slider1.jpg', 0, 0, 0, 4, 1, '2010-09-24 18:29:16', '2015-06-05 12:44:05'),
367(46, '', 0, 0, 0, 3, 1, '2010-09-24 18:29:31', '2015-06-04 14:30:28'),
368(57, '', 0, 1, 1, 6, 1, '2011-04-26 08:53:16', '2015-06-04 14:33:15');
369
370-- --------------------------------------------------------
371
372--
373-- Table structure for table `category_description`
374--
375
376CREATE TABLE IF NOT EXISTS `category_description` (
377 `category_id` int(11) NOT NULL,
378 `language_id` int(11) NOT NULL,
379 `name` varchar(255) NOT NULL,
380 `description` text NOT NULL,
381 `meta_description` varchar(255) NOT NULL,
382 `meta_keyword` varchar(255) NOT NULL,
383 PRIMARY KEY (`category_id`,`language_id`),
384 KEY `name` (`name`)
385) ENGINE=MyISAM DEFAULT CHARSET=utf8;
386
387--
388-- Dumping data for table `category_description`
389--
390
391INSERT INTO `category_description` (`category_id`, `language_id`, `name`, `description`, `meta_description`, `meta_keyword`) VALUES
392(28, 1, 'Outdoor', '', '', ''),
393(33, 1, 'Pillows & Throws', '', '', ''),
394(31, 1, 'Gifts', '', '', ''),
395(30, 1, 'On Trend', '', '', ''),
396(29, 1, 'Office', '', '', ''),
397(27, 1, 'Furniture', '', '', ''),
398(17, 1, 'Accessories', '', '', ''),
399(25, 1, 'Dinning/Throws', '', '', ''),
400(20, 1, 'New Arrival', '<p>Example of category description text</p>\r\n', 'Example of category description', ''),
401(36, 1, 'Bed/Bath', '', '', ''),
402(26, 1, 'Lighting', '', '', ''),
403(35, 1, 'Storage', '<p>Storage</p>\r\n', '', ''),
404(18, 1, 'Room', '<p>Shop Laptop feature only the best laptop deals on the market. By comparing laptop deals from the likes of PC World, Comet, Dixons, The Link and Carphone Warehouse, Shop Laptop has the most comprehensive selection of laptops on the internet. At Shop Laptop, we pride ourselves on offering customers the very best laptop deals. From refurbished laptops to netbooks, Shop Laptop ensures that every laptop - in every colour, style, size and technical spec - is featured on the site at the lowest possible price.</p>\r\n', '', ''),
405(45, 1, 'Lighting', '', '', ''),
406(46, 1, 'Furniture', '', '', ''),
407(57, 1, 'Rugs', '', '', '');
408
409-- --------------------------------------------------------
410
411--
412-- Table structure for table `category_filter`
413--
414
415CREATE TABLE IF NOT EXISTS `category_filter` (
416 `category_id` int(11) NOT NULL,
417 `filter_id` int(11) NOT NULL,
418 PRIMARY KEY (`category_id`,`filter_id`)
419) ENGINE=MyISAM DEFAULT CHARSET=utf8;
420
421-- --------------------------------------------------------
422
423--
424-- Table structure for table `category_path`
425--
426
427CREATE TABLE IF NOT EXISTS `category_path` (
428 `category_id` int(11) NOT NULL,
429 `path_id` int(11) NOT NULL,
430 `level` int(11) NOT NULL,
431 PRIMARY KEY (`category_id`,`path_id`)
432) ENGINE=MyISAM DEFAULT CHARSET=utf8;
433
434--
435-- Dumping data for table `category_path`
436--
437
438INSERT INTO `category_path` (`category_id`, `path_id`, `level`) VALUES
439(25, 25, 0),
440(28, 28, 0),
441(35, 35, 0),
442(36, 36, 0),
443(29, 29, 0),
444(30, 30, 0),
445(31, 31, 0),
446(20, 20, 0),
447(27, 20, 0),
448(27, 27, 1),
449(26, 20, 0),
450(26, 26, 1),
451(18, 18, 0),
452(45, 45, 0),
453(46, 46, 0),
454(17, 17, 0),
455(33, 33, 0),
456(57, 57, 0);
457
458-- --------------------------------------------------------
459
460--
461-- Table structure for table `category_to_layout`
462--
463
464CREATE TABLE IF NOT EXISTS `category_to_layout` (
465 `category_id` int(11) NOT NULL,
466 `store_id` int(11) NOT NULL,
467 `layout_id` int(11) NOT NULL,
468 PRIMARY KEY (`category_id`,`store_id`)
469) ENGINE=MyISAM DEFAULT CHARSET=utf8;
470
471-- --------------------------------------------------------
472
473--
474-- Table structure for table `category_to_store`
475--
476
477CREATE TABLE IF NOT EXISTS `category_to_store` (
478 `category_id` int(11) NOT NULL,
479 `store_id` int(11) NOT NULL,
480 PRIMARY KEY (`category_id`,`store_id`)
481) ENGINE=MyISAM DEFAULT CHARSET=utf8;
482
483--
484-- Dumping data for table `category_to_store`
485--
486
487INSERT INTO `category_to_store` (`category_id`, `store_id`) VALUES
488(17, 0),
489(18, 0),
490(20, 0),
491(25, 0),
492(26, 0),
493(27, 0),
494(28, 0),
495(29, 0),
496(30, 0),
497(31, 0),
498(33, 0),
499(35, 0),
500(36, 0),
501(45, 0),
502(46, 0),
503(57, 0);
504
505-- --------------------------------------------------------
506
507--
508-- Table structure for table `country`
509--
510
511CREATE TABLE IF NOT EXISTS `country` (
512 `country_id` int(11) NOT NULL AUTO_INCREMENT,
513 `name` varchar(128) NOT NULL,
514 `iso_code_2` varchar(2) NOT NULL,
515 `iso_code_3` varchar(3) NOT NULL,
516 `address_format` text NOT NULL,
517 `postcode_required` tinyint(1) NOT NULL,
518 `status` tinyint(1) NOT NULL DEFAULT '1',
519 PRIMARY KEY (`country_id`)
520) ENGINE=MyISAM DEFAULT CHARSET=utf8 AUTO_INCREMENT=252 ;
521
522--
523-- Dumping data for table `country`
524--
525
526INSERT INTO `country` (`country_id`, `name`, `iso_code_2`, `iso_code_3`, `address_format`, `postcode_required`, `status`) VALUES
527(1, 'Afghanistan', 'AF', 'AFG', '', 0, 1),
528(2, 'Albania', 'AL', 'ALB', '', 0, 1),
529(3, 'Algeria', 'DZ', 'DZA', '', 0, 1),
530(4, 'American Samoa', 'AS', 'ASM', '', 0, 1),
531(5, 'Andorra', 'AD', 'AND', '', 0, 1),
532(6, 'Angola', 'AO', 'AGO', '', 0, 1),
533(7, 'Anguilla', 'AI', 'AIA', '', 0, 1),
534(8, 'Antarctica', 'AQ', 'ATA', '', 0, 1),
535(9, 'Antigua and Barbuda', 'AG', 'ATG', '', 0, 1),
536(10, 'Argentina', 'AR', 'ARG', '', 0, 1),
537(11, 'Armenia', 'AM', 'ARM', '', 0, 1),
538(12, 'Aruba', 'AW', 'ABW', '', 0, 1),
539(13, 'Australia', 'AU', 'AUS', '', 0, 1),
540(14, 'Austria', 'AT', 'AUT', '', 0, 1),
541(15, 'Azerbaijan', 'AZ', 'AZE', '', 0, 1),
542(16, 'Bahamas', 'BS', 'BHS', '', 0, 1),
543(17, 'Bahrain', 'BH', 'BHR', '', 0, 1),
544(18, 'Bangladesh', 'BD', 'BGD', '', 0, 1),
545(19, 'Barbados', 'BB', 'BRB', '', 0, 1),
546(20, 'Belarus', 'BY', 'BLR', '', 0, 1),
547(21, 'Belgium', 'BE', 'BEL', '{firstname} {lastname}\r\n{company}\r\n{address_1}\r\n{address_2}\r\n{postcode} {city}\r\n{country}', 0, 1),
548(22, 'Belize', 'BZ', 'BLZ', '', 0, 1),
549(23, 'Benin', 'BJ', 'BEN', '', 0, 1),
550(24, 'Bermuda', 'BM', 'BMU', '', 0, 1),
551(25, 'Bhutan', 'BT', 'BTN', '', 0, 1),
552(26, 'Bolivia', 'BO', 'BOL', '', 0, 1),
553(27, 'Bosnia and Herzegovina', 'BA', 'BIH', '', 0, 1),
554(28, 'Botswana', 'BW', 'BWA', '', 0, 1),
555(29, 'Bouvet Island', 'BV', 'BVT', '', 0, 1),
556(30, 'Brazil', 'BR', 'BRA', '', 0, 1),
557(31, 'British Indian Ocean Territory', 'IO', 'IOT', '', 0, 1),
558(32, 'Brunei Darussalam', 'BN', 'BRN', '', 0, 1),
559(33, 'Bulgaria', 'BG', 'BGR', '', 0, 1),
560(34, 'Burkina Faso', 'BF', 'BFA', '', 0, 1),
561(35, 'Burundi', 'BI', 'BDI', '', 0, 1),
562(36, 'Cambodia', 'KH', 'KHM', '', 0, 1),
563(37, 'Cameroon', 'CM', 'CMR', '', 0, 1),
564(38, 'Canada', 'CA', 'CAN', '', 0, 1),
565(39, 'Cape Verde', 'CV', 'CPV', '', 0, 1),
566(40, 'Cayman Islands', 'KY', 'CYM', '', 0, 1),
567(41, 'Central African Republic', 'CF', 'CAF', '', 0, 1),
568(42, 'Chad', 'TD', 'TCD', '', 0, 1),
569(43, 'Chile', 'CL', 'CHL', '', 0, 1),
570(44, 'China', 'CN', 'CHN', '', 0, 1),
571(45, 'Christmas Island', 'CX', 'CXR', '', 0, 1),
572(46, 'Cocos (Keeling) Islands', 'CC', 'CCK', '', 0, 1),
573(47, 'Colombia', 'CO', 'COL', '', 0, 1),
574(48, 'Comoros', 'KM', 'COM', '', 0, 1),
575(49, 'Congo', 'CG', 'COG', '', 0, 1),
576(50, 'Cook Islands', 'CK', 'COK', '', 0, 1),
577(51, 'Costa Rica', 'CR', 'CRI', '', 0, 1),
578(52, 'Cote D''Ivoire', 'CI', 'CIV', '', 0, 1),
579(53, 'Croatia', 'HR', 'HRV', '', 0, 1),
580(54, 'Cuba', 'CU', 'CUB', '', 0, 1),
581(55, 'Cyprus', 'CY', 'CYP', '', 0, 1),
582(56, 'Czech Republic', 'CZ', 'CZE', '', 0, 1),
583(57, 'Denmark', 'DK', 'DNK', '', 0, 1),
584(58, 'Djibouti', 'DJ', 'DJI', '', 0, 1),
585(59, 'Dominica', 'DM', 'DMA', '', 0, 1),
586(60, 'Dominican Republic', 'DO', 'DOM', '', 0, 1),
587(61, 'East Timor', 'TL', 'TLS', '', 0, 1),
588(62, 'Ecuador', 'EC', 'ECU', '', 0, 1),
589(63, 'Egypt', 'EG', 'EGY', '', 0, 1),
590(64, 'El Salvador', 'SV', 'SLV', '', 0, 1),
591(65, 'Equatorial Guinea', 'GQ', 'GNQ', '', 0, 1),
592(66, 'Eritrea', 'ER', 'ERI', '', 0, 1),
593(67, 'Estonia', 'EE', 'EST', '', 0, 1),
594(68, 'Ethiopia', 'ET', 'ETH', '', 0, 1),
595(69, 'Falkland Islands (Malvinas)', 'FK', 'FLK', '', 0, 1),
596(70, 'Faroe Islands', 'FO', 'FRO', '', 0, 1),
597(71, 'Fiji', 'FJ', 'FJI', '', 0, 1),
598(72, 'Finland', 'FI', 'FIN', '', 0, 1),
599(74, 'France, Metropolitan', 'FR', 'FRA', '{firstname} {lastname}\r\n{company}\r\n{address_1}\r\n{address_2}\r\n{postcode} {city}\r\n{country}', 1, 1),
600(75, 'French Guiana', 'GF', 'GUF', '', 0, 1),
601(76, 'French Polynesia', 'PF', 'PYF', '', 0, 1),
602(77, 'French Southern Territories', 'TF', 'ATF', '', 0, 1),
603(78, 'Gabon', 'GA', 'GAB', '', 0, 1),
604(79, 'Gambia', 'GM', 'GMB', '', 0, 1),
605(80, 'Georgia', 'GE', 'GEO', '', 0, 1),
606(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),
607(82, 'Ghana', 'GH', 'GHA', '', 0, 1),
608(83, 'Gibraltar', 'GI', 'GIB', '', 0, 1),
609(84, 'Greece', 'GR', 'GRC', '', 0, 1),
610(85, 'Greenland', 'GL', 'GRL', '', 0, 1),
611(86, 'Grenada', 'GD', 'GRD', '', 0, 1),
612(87, 'Guadeloupe', 'GP', 'GLP', '', 0, 1),
613(88, 'Guam', 'GU', 'GUM', '', 0, 1),
614(89, 'Guatemala', 'GT', 'GTM', '', 0, 1),
615(90, 'Guinea', 'GN', 'GIN', '', 0, 1),
616(91, 'Guinea-Bissau', 'GW', 'GNB', '', 0, 1),
617(92, 'Guyana', 'GY', 'GUY', '', 0, 1),
618(93, 'Haiti', 'HT', 'HTI', '', 0, 1),
619(94, 'Heard and Mc Donald Islands', 'HM', 'HMD', '', 0, 1),
620(95, 'Honduras', 'HN', 'HND', '', 0, 1),
621(96, 'Hong Kong', 'HK', 'HKG', '', 0, 1),
622(97, 'Hungary', 'HU', 'HUN', '', 0, 1),
623(98, 'Iceland', 'IS', 'ISL', '', 0, 1),
624(99, 'India', 'IN', 'IND', '', 0, 1),
625(100, 'Indonesia', 'ID', 'IDN', '', 0, 1),
626(101, 'Iran (Islamic Republic of)', 'IR', 'IRN', '', 0, 1),
627(102, 'Iraq', 'IQ', 'IRQ', '', 0, 1),
628(103, 'Ireland', 'IE', 'IRL', '', 0, 1),
629(104, 'Israel', 'IL', 'ISR', '', 0, 1),
630(105, 'Italy', 'IT', 'ITA', '', 0, 1),
631(106, 'Jamaica', 'JM', 'JAM', '', 0, 1),
632(107, 'Japan', 'JP', 'JPN', '', 0, 1),
633(108, 'Jordan', 'JO', 'JOR', '', 0, 1),
634(109, 'Kazakhstan', 'KZ', 'KAZ', '', 0, 1),
635(110, 'Kenya', 'KE', 'KEN', '', 0, 1),
636(111, 'Kiribati', 'KI', 'KIR', '', 0, 1),
637(112, 'North Korea', 'KP', 'PRK', '', 0, 1),
638(113, 'Korea, Republic of', 'KR', 'KOR', '', 0, 1),
639(114, 'Kuwait', 'KW', 'KWT', '', 0, 1),
640(115, 'Kyrgyzstan', 'KG', 'KGZ', '', 0, 1),
641(116, 'Lao People''s Democratic Republic', 'LA', 'LAO', '', 0, 1),
642(117, 'Latvia', 'LV', 'LVA', '', 0, 1),
643(118, 'Lebanon', 'LB', 'LBN', '', 0, 1),
644(119, 'Lesotho', 'LS', 'LSO', '', 0, 1),
645(120, 'Liberia', 'LR', 'LBR', '', 0, 1),
646(121, 'Libyan Arab Jamahiriya', 'LY', 'LBY', '', 0, 1),
647(122, 'Liechtenstein', 'LI', 'LIE', '', 0, 1),
648(123, 'Lithuania', 'LT', 'LTU', '', 0, 1),
649(124, 'Luxembourg', 'LU', 'LUX', '', 0, 1),
650(125, 'Macau', 'MO', 'MAC', '', 0, 1),
651(126, 'FYROM', 'MK', 'MKD', '', 0, 1),
652(127, 'Madagascar', 'MG', 'MDG', '', 0, 1),
653(128, 'Malawi', 'MW', 'MWI', '', 0, 1),
654(129, 'Malaysia', 'MY', 'MYS', '', 0, 1),
655(130, 'Maldives', 'MV', 'MDV', '', 0, 1),
656(131, 'Mali', 'ML', 'MLI', '', 0, 1),
657(132, 'Malta', 'MT', 'MLT', '', 0, 1),
658(133, 'Marshall Islands', 'MH', 'MHL', '', 0, 1),
659(134, 'Martinique', 'MQ', 'MTQ', '', 0, 1),
660(135, 'Mauritania', 'MR', 'MRT', '', 0, 1),
661(136, 'Mauritius', 'MU', 'MUS', '', 0, 1),
662(137, 'Mayotte', 'YT', 'MYT', '', 0, 1),
663(138, 'Mexico', 'MX', 'MEX', '', 0, 1),
664(139, 'Micronesia, Federated States of', 'FM', 'FSM', '', 0, 1),
665(140, 'Moldova, Republic of', 'MD', 'MDA', '', 0, 1),
666(141, 'Monaco', 'MC', 'MCO', '', 0, 1),
667(142, 'Mongolia', 'MN', 'MNG', '', 0, 1),
668(143, 'Montserrat', 'MS', 'MSR', '', 0, 1),
669(144, 'Morocco', 'MA', 'MAR', '', 0, 1),
670(145, 'Mozambique', 'MZ', 'MOZ', '', 0, 1),
671(146, 'Myanmar', 'MM', 'MMR', '', 0, 1),
672(147, 'Namibia', 'NA', 'NAM', '', 0, 1),
673(148, 'Nauru', 'NR', 'NRU', '', 0, 1),
674(149, 'Nepal', 'NP', 'NPL', '', 0, 1),
675(150, 'Netherlands', 'NL', 'NLD', '', 0, 1),
676(151, 'Netherlands Antilles', 'AN', 'ANT', '', 0, 1),
677(152, 'New Caledonia', 'NC', 'NCL', '', 0, 1),
678(153, 'New Zealand', 'NZ', 'NZL', '', 0, 1),
679(154, 'Nicaragua', 'NI', 'NIC', '', 0, 1),
680(155, 'Niger', 'NE', 'NER', '', 0, 1),
681(156, 'Nigeria', 'NG', 'NGA', '', 0, 1),
682(157, 'Niue', 'NU', 'NIU', '', 0, 1),
683(158, 'Norfolk Island', 'NF', 'NFK', '', 0, 1),
684(159, 'Northern Mariana Islands', 'MP', 'MNP', '', 0, 1),
685(160, 'Norway', 'NO', 'NOR', '', 0, 1),
686(161, 'Oman', 'OM', 'OMN', '', 0, 1),
687(162, 'Pakistan', 'PK', 'PAK', '', 0, 1),
688(163, 'Palau', 'PW', 'PLW', '', 0, 1),
689(164, 'Panama', 'PA', 'PAN', '', 0, 1),
690(165, 'Papua New Guinea', 'PG', 'PNG', '', 0, 1),
691(166, 'Paraguay', 'PY', 'PRY', '', 0, 1),
692(167, 'Peru', 'PE', 'PER', '', 0, 1),
693(168, 'Philippines', 'PH', 'PHL', '', 0, 1),
694(169, 'Pitcairn', 'PN', 'PCN', '', 0, 1),
695(170, 'Poland', 'PL', 'POL', '', 0, 1),
696(171, 'Portugal', 'PT', 'PRT', '', 0, 1),
697(172, 'Puerto Rico', 'PR', 'PRI', '', 0, 1),
698(173, 'Qatar', 'QA', 'QAT', '', 0, 1),
699(174, 'Reunion', 'RE', 'REU', '', 0, 1),
700(175, 'Romania', 'RO', 'ROM', '', 0, 1),
701(176, 'Russian Federation', 'RU', 'RUS', '', 0, 1),
702(177, 'Rwanda', 'RW', 'RWA', '', 0, 1),
703(178, 'Saint Kitts and Nevis', 'KN', 'KNA', '', 0, 1),
704(179, 'Saint Lucia', 'LC', 'LCA', '', 0, 1),
705(180, 'Saint Vincent and the Grenadines', 'VC', 'VCT', '', 0, 1),
706(181, 'Samoa', 'WS', 'WSM', '', 0, 1),
707(182, 'San Marino', 'SM', 'SMR', '', 0, 1),
708(183, 'Sao Tome and Principe', 'ST', 'STP', '', 0, 1),
709(184, 'Saudi Arabia', 'SA', 'SAU', '', 0, 1),
710(185, 'Senegal', 'SN', 'SEN', '', 0, 1),
711(186, 'Seychelles', 'SC', 'SYC', '', 0, 1),
712(187, 'Sierra Leone', 'SL', 'SLE', '', 0, 1),
713(188, 'Singapore', 'SG', 'SGP', '', 0, 1),
714(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),
715(190, 'Slovenia', 'SI', 'SVN', '', 0, 1),
716(191, 'Solomon Islands', 'SB', 'SLB', '', 0, 1),
717(192, 'Somalia', 'SO', 'SOM', '', 0, 1),
718(193, 'South Africa', 'ZA', 'ZAF', '', 0, 1),
719(194, 'South Georgia & South Sandwich Islands', 'GS', 'SGS', '', 0, 1),
720(195, 'Spain', 'ES', 'ESP', '', 0, 1),
721(196, 'Sri Lanka', 'LK', 'LKA', '', 0, 1),
722(197, 'St. Helena', 'SH', 'SHN', '', 0, 1),
723(198, 'St. Pierre and Miquelon', 'PM', 'SPM', '', 0, 1),
724(199, 'Sudan', 'SD', 'SDN', '', 0, 1),
725(200, 'Suriname', 'SR', 'SUR', '', 0, 1),
726(201, 'Svalbard and Jan Mayen Islands', 'SJ', 'SJM', '', 0, 1),
727(202, 'Swaziland', 'SZ', 'SWZ', '', 0, 1),
728(203, 'Sweden', 'SE', 'SWE', '{company}\r\n{firstname} {lastname}\r\n{address_1}\r\n{address_2}\r\n{postcode} {city}\r\n{country}', 1, 1),
729(204, 'Switzerland', 'CH', 'CHE', '', 0, 1),
730(205, 'Syrian Arab Republic', 'SY', 'SYR', '', 0, 1),
731(206, 'Taiwan', 'TW', 'TWN', '', 0, 1),
732(207, 'Tajikistan', 'TJ', 'TJK', '', 0, 1),
733(208, 'Tanzania, United Republic of', 'TZ', 'TZA', '', 0, 1),
734(209, 'Thailand', 'TH', 'THA', '', 0, 1),
735(210, 'Togo', 'TG', 'TGO', '', 0, 1),
736(211, 'Tokelau', 'TK', 'TKL', '', 0, 1),
737(212, 'Tonga', 'TO', 'TON', '', 0, 1),
738(213, 'Trinidad and Tobago', 'TT', 'TTO', '', 0, 1),
739(214, 'Tunisia', 'TN', 'TUN', '', 0, 1),
740(215, 'Turkey', 'TR', 'TUR', '', 0, 1),
741(216, 'Turkmenistan', 'TM', 'TKM', '', 0, 1),
742(217, 'Turks and Caicos Islands', 'TC', 'TCA', '', 0, 1),
743(218, 'Tuvalu', 'TV', 'TUV', '', 0, 1),
744(219, 'Uganda', 'UG', 'UGA', '', 0, 1),
745(220, 'Ukraine', 'UA', 'UKR', '', 0, 1),
746(221, 'United Arab Emirates', 'AE', 'ARE', '', 0, 1),
747(222, 'United Kingdom', 'GB', 'GBR', '', 1, 1),
748(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),
749(224, 'United States Minor Outlying Islands', 'UM', 'UMI', '', 0, 1),
750(225, 'Uruguay', 'UY', 'URY', '', 0, 1),
751(226, 'Uzbekistan', 'UZ', 'UZB', '', 0, 1),
752(227, 'Vanuatu', 'VU', 'VUT', '', 0, 1),
753(228, 'Vatican City State (Holy See)', 'VA', 'VAT', '', 0, 1),
754(229, 'Venezuela', 'VE', 'VEN', '', 0, 1),
755(230, 'Viet Nam', 'VN', 'VNM', '', 0, 1),
756(231, 'Virgin Islands (British)', 'VG', 'VGB', '', 0, 1),
757(232, 'Virgin Islands (U.S.)', 'VI', 'VIR', '', 0, 1),
758(233, 'Wallis and Futuna Islands', 'WF', 'WLF', '', 0, 1),
759(234, 'Western Sahara', 'EH', 'ESH', '', 0, 1),
760(235, 'Yemen', 'YE', 'YEM', '', 0, 1),
761(237, 'Democratic Republic of Congo', 'CD', 'COD', '', 0, 1),
762(238, 'Zambia', 'ZM', 'ZMB', '', 0, 1),
763(239, 'Zimbabwe', 'ZW', 'ZWE', '', 0, 1),
764(240, 'Jersey', 'JE', 'JEY', '', 1, 1),
765(241, 'Guernsey', 'GG', 'GGY', '', 1, 1),
766(242, 'Montenegro', 'ME', 'MNE', '', 0, 1),
767(243, 'Serbia', 'RS', 'SRB', '', 0, 1),
768(244, 'Aaland Islands', 'AX', 'ALA', '', 0, 1),
769(245, 'Bonaire, Sint Eustatius and Saba', 'BQ', 'BES', '', 0, 1),
770(246, 'Curacao', 'CW', 'CUW', '', 0, 1),
771(247, 'Palestinian Territory, Occupied', 'PS', 'PSE', '', 0, 1),
772(248, 'South Sudan', 'SS', 'SSD', '', 0, 1),
773(249, 'St. Barthelemy', 'BL', 'BLM', '', 0, 1),
774(250, 'St. Martin (French part)', 'MF', 'MAF', '', 0, 1),
775(251, 'Canary Islands', 'IC', 'ICA', '', 0, 1);
776
777-- --------------------------------------------------------
778
779--
780-- Table structure for table `coupon`
781--
782
783CREATE TABLE IF NOT EXISTS `coupon` (
784 `coupon_id` int(11) NOT NULL AUTO_INCREMENT,
785 `name` varchar(128) NOT NULL,
786 `code` varchar(10) NOT NULL,
787 `type` char(1) NOT NULL,
788 `discount` decimal(15,4) NOT NULL,
789 `logged` tinyint(1) NOT NULL,
790 `shipping` tinyint(1) NOT NULL,
791 `total` decimal(15,4) NOT NULL,
792 `date_start` date NOT NULL DEFAULT '0000-00-00',
793 `date_end` date NOT NULL DEFAULT '0000-00-00',
794 `uses_total` int(11) NOT NULL,
795 `uses_customer` varchar(11) NOT NULL,
796 `status` tinyint(1) NOT NULL,
797 `date_added` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
798 PRIMARY KEY (`coupon_id`)
799) ENGINE=MyISAM DEFAULT CHARSET=utf8 AUTO_INCREMENT=7 ;
800
801--
802-- Dumping data for table `coupon`
803--
804
805INSERT INTO `coupon` (`coupon_id`, `name`, `code`, `type`, `discount`, `logged`, `shipping`, `total`, `date_start`, `date_end`, `uses_total`, `uses_customer`, `status`, `date_added`) VALUES
806(4, '-10% Discount', '2222', 'P', '10.0000', 0, 0, '0.0000', '2011-01-01', '2012-01-01', 10, '10', 1, '2009-01-27 13:55:03'),
807(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'),
808(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');
809
810-- --------------------------------------------------------
811
812--
813-- Table structure for table `coupon_category`
814--
815
816CREATE TABLE IF NOT EXISTS `coupon_category` (
817 `coupon_id` int(11) NOT NULL,
818 `category_id` int(11) NOT NULL,
819 PRIMARY KEY (`coupon_id`,`category_id`)
820) ENGINE=MyISAM DEFAULT CHARSET=utf8;
821
822-- --------------------------------------------------------
823
824--
825-- Table structure for table `coupon_history`
826--
827
828CREATE TABLE IF NOT EXISTS `coupon_history` (
829 `coupon_history_id` int(11) NOT NULL AUTO_INCREMENT,
830 `coupon_id` int(11) NOT NULL,
831 `order_id` int(11) NOT NULL,
832 `customer_id` int(11) NOT NULL,
833 `amount` decimal(15,4) NOT NULL,
834 `date_added` datetime NOT NULL,
835 PRIMARY KEY (`coupon_history_id`)
836) ENGINE=MyISAM DEFAULT CHARSET=utf8 AUTO_INCREMENT=1 ;
837
838-- --------------------------------------------------------
839
840--
841-- Table structure for table `coupon_product`
842--
843
844CREATE TABLE IF NOT EXISTS `coupon_product` (
845 `coupon_product_id` int(11) NOT NULL AUTO_INCREMENT,
846 `coupon_id` int(11) NOT NULL,
847 `product_id` int(11) NOT NULL,
848 PRIMARY KEY (`coupon_product_id`)
849) ENGINE=MyISAM DEFAULT CHARSET=utf8 AUTO_INCREMENT=1 ;
850
851-- --------------------------------------------------------
852
853--
854-- Table structure for table `currency`
855--
856
857CREATE TABLE IF NOT EXISTS `currency` (
858 `currency_id` int(11) NOT NULL AUTO_INCREMENT,
859 `title` varchar(32) NOT NULL,
860 `code` varchar(3) NOT NULL,
861 `symbol_left` varchar(12) NOT NULL,
862 `symbol_right` varchar(12) NOT NULL,
863 `decimal_place` char(1) NOT NULL,
864 `value` float(15,8) NOT NULL,
865 `status` tinyint(1) NOT NULL,
866 `date_modified` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
867 PRIMARY KEY (`currency_id`)
868) ENGINE=MyISAM DEFAULT CHARSET=utf8 AUTO_INCREMENT=5 ;
869
870--
871-- Dumping data for table `currency`
872--
873
874INSERT INTO `currency` (`currency_id`, `title`, `code`, `symbol_left`, `symbol_right`, `decimal_place`, `value`, `status`, `date_modified`) VALUES
875(1, 'Pound Sterling', 'GBP', '£', '', '2', 0.00330000, 1, '2015-06-08 14:11:43'),
876(2, 'US Dollar', 'USD', '$', '', '2', 0.00500000, 1, '2015-06-08 14:11:43'),
877(3, 'Euro', 'EUR', '', '€', '2', 0.00450000, 1, '2015-06-08 14:11:43'),
878(4, 'Naira', 'NGN', 'N', '', '', 1.00000000, 1, '2015-06-09 01:06:37');
879
880-- --------------------------------------------------------
881
882--
883-- Table structure for table `customer`
884--
885
886CREATE TABLE IF NOT EXISTS `customer` (
887 `customer_id` int(11) NOT NULL AUTO_INCREMENT,
888 `store_id` int(11) NOT NULL DEFAULT '0',
889 `firstname` varchar(32) NOT NULL,
890 `lastname` varchar(32) NOT NULL,
891 `email` varchar(96) NOT NULL,
892 `telephone` varchar(32) NOT NULL,
893 `fax` varchar(32) NOT NULL,
894 `password` varchar(40) NOT NULL,
895 `salt` varchar(9) NOT NULL,
896 `cart` text,
897 `wishlist` text,
898 `newsletter` tinyint(1) NOT NULL DEFAULT '0',
899 `address_id` int(11) NOT NULL DEFAULT '0',
900 `customer_group_id` int(11) NOT NULL,
901 `ip` varchar(40) NOT NULL DEFAULT '0',
902 `status` tinyint(1) NOT NULL,
903 `approved` tinyint(1) NOT NULL,
904 `token` varchar(255) NOT NULL,
905 `date_added` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
906 PRIMARY KEY (`customer_id`)
907) ENGINE=MyISAM DEFAULT CHARSET=utf8 AUTO_INCREMENT=1 ;
908
909-- --------------------------------------------------------
910
911--
912-- Table structure for table `customer_ban_ip`
913--
914
915CREATE TABLE IF NOT EXISTS `customer_ban_ip` (
916 `customer_ban_ip_id` int(11) NOT NULL AUTO_INCREMENT,
917 `ip` varchar(40) NOT NULL,
918 PRIMARY KEY (`customer_ban_ip_id`),
919 KEY `ip` (`ip`)
920) ENGINE=MyISAM DEFAULT CHARSET=utf8 AUTO_INCREMENT=1 ;
921
922-- --------------------------------------------------------
923
924--
925-- Table structure for table `customer_field`
926--
927
928CREATE TABLE IF NOT EXISTS `customer_field` (
929 `customer_id` int(11) NOT NULL,
930 `custom_field_id` int(11) NOT NULL,
931 `custom_field_value_id` int(11) NOT NULL,
932 `name` int(128) NOT NULL,
933 `value` text NOT NULL,
934 `sort_order` int(3) NOT NULL,
935 PRIMARY KEY (`customer_id`,`custom_field_id`,`custom_field_value_id`)
936) ENGINE=MyISAM DEFAULT CHARSET=utf8;
937
938-- --------------------------------------------------------
939
940--
941-- Table structure for table `customer_group`
942--
943
944CREATE TABLE IF NOT EXISTS `customer_group` (
945 `customer_group_id` int(11) NOT NULL AUTO_INCREMENT,
946 `approval` int(1) NOT NULL,
947 `company_id_display` int(1) NOT NULL,
948 `company_id_required` int(1) NOT NULL,
949 `tax_id_display` int(1) NOT NULL,
950 `tax_id_required` int(1) NOT NULL,
951 `sort_order` int(3) NOT NULL,
952 PRIMARY KEY (`customer_group_id`)
953) ENGINE=MyISAM DEFAULT CHARSET=utf8 AUTO_INCREMENT=2 ;
954
955--
956-- Dumping data for table `customer_group`
957--
958
959INSERT INTO `customer_group` (`customer_group_id`, `approval`, `company_id_display`, `company_id_required`, `tax_id_display`, `tax_id_required`, `sort_order`) VALUES
960(1, 0, 1, 0, 0, 1, 1);
961
962-- --------------------------------------------------------
963
964--
965-- Table structure for table `customer_group_description`
966--
967
968CREATE TABLE IF NOT EXISTS `customer_group_description` (
969 `customer_group_id` int(11) NOT NULL,
970 `language_id` int(11) NOT NULL,
971 `name` varchar(32) NOT NULL,
972 `description` text NOT NULL,
973 PRIMARY KEY (`customer_group_id`,`language_id`)
974) ENGINE=MyISAM DEFAULT CHARSET=utf8;
975
976--
977-- Dumping data for table `customer_group_description`
978--
979
980INSERT INTO `customer_group_description` (`customer_group_id`, `language_id`, `name`, `description`) VALUES
981(1, 1, 'Default', 'test');
982
983-- --------------------------------------------------------
984
985--
986-- Table structure for table `customer_history`
987--
988
989CREATE TABLE IF NOT EXISTS `customer_history` (
990 `customer_history_id` int(11) NOT NULL AUTO_INCREMENT,
991 `customer_id` int(11) NOT NULL,
992 `comment` text NOT NULL,
993 `date_added` datetime NOT NULL,
994 PRIMARY KEY (`customer_history_id`)
995) ENGINE=MyISAM DEFAULT CHARSET=utf8 AUTO_INCREMENT=1 ;
996
997-- --------------------------------------------------------
998
999--
1000-- Table structure for table `customer_ip`
1001--
1002
1003CREATE TABLE IF NOT EXISTS `customer_ip` (
1004 `customer_ip_id` int(11) NOT NULL AUTO_INCREMENT,
1005 `customer_id` int(11) NOT NULL,
1006 `ip` varchar(40) NOT NULL,
1007 `date_added` datetime NOT NULL,
1008 PRIMARY KEY (`customer_ip_id`),
1009 KEY `ip` (`ip`)
1010) ENGINE=MyISAM DEFAULT CHARSET=utf8 AUTO_INCREMENT=1 ;
1011
1012-- --------------------------------------------------------
1013
1014--
1015-- Table structure for table `customer_online`
1016--
1017
1018CREATE TABLE IF NOT EXISTS `customer_online` (
1019 `ip` varchar(40) NOT NULL,
1020 `customer_id` int(11) NOT NULL,
1021 `url` text NOT NULL,
1022 `referer` text NOT NULL,
1023 `date_added` datetime NOT NULL,
1024 PRIMARY KEY (`ip`)
1025) ENGINE=MyISAM DEFAULT CHARSET=utf8;
1026
1027-- --------------------------------------------------------
1028
1029--
1030-- Table structure for table `customer_reward`
1031--
1032
1033CREATE TABLE IF NOT EXISTS `customer_reward` (
1034 `customer_reward_id` int(11) NOT NULL AUTO_INCREMENT,
1035 `customer_id` int(11) NOT NULL DEFAULT '0',
1036 `order_id` int(11) NOT NULL DEFAULT '0',
1037 `description` text NOT NULL,
1038 `points` int(8) NOT NULL DEFAULT '0',
1039 `date_added` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
1040 PRIMARY KEY (`customer_reward_id`)
1041) ENGINE=MyISAM DEFAULT CHARSET=utf8 AUTO_INCREMENT=1 ;
1042
1043-- --------------------------------------------------------
1044
1045--
1046-- Table structure for table `customer_transaction`
1047--
1048
1049CREATE TABLE IF NOT EXISTS `customer_transaction` (
1050 `customer_transaction_id` int(11) NOT NULL AUTO_INCREMENT,
1051 `customer_id` int(11) NOT NULL,
1052 `order_id` int(11) NOT NULL,
1053 `description` text NOT NULL,
1054 `amount` decimal(15,4) NOT NULL,
1055 `date_added` datetime NOT NULL,
1056 PRIMARY KEY (`customer_transaction_id`)
1057) ENGINE=MyISAM DEFAULT CHARSET=utf8 AUTO_INCREMENT=1 ;
1058
1059-- --------------------------------------------------------
1060
1061--
1062-- Table structure for table `custom_field`
1063--
1064
1065CREATE TABLE IF NOT EXISTS `custom_field` (
1066 `custom_field_id` int(11) NOT NULL AUTO_INCREMENT,
1067 `type` varchar(32) NOT NULL,
1068 `value` text NOT NULL,
1069 `required` tinyint(1) NOT NULL,
1070 `location` varchar(32) NOT NULL,
1071 `position` int(3) NOT NULL,
1072 `sort_order` int(3) NOT NULL,
1073 PRIMARY KEY (`custom_field_id`)
1074) ENGINE=MyISAM DEFAULT CHARSET=utf8 AUTO_INCREMENT=1 ;
1075
1076-- --------------------------------------------------------
1077
1078--
1079-- Table structure for table `custom_field_description`
1080--
1081
1082CREATE TABLE IF NOT EXISTS `custom_field_description` (
1083 `custom_field_id` int(11) NOT NULL,
1084 `language_id` int(11) NOT NULL,
1085 `name` varchar(128) NOT NULL,
1086 PRIMARY KEY (`custom_field_id`,`language_id`)
1087) ENGINE=MyISAM DEFAULT CHARSET=utf8;
1088
1089-- --------------------------------------------------------
1090
1091--
1092-- Table structure for table `custom_field_to_customer_group`
1093--
1094
1095CREATE TABLE IF NOT EXISTS `custom_field_to_customer_group` (
1096 `custom_field_id` int(11) NOT NULL,
1097 `customer_group_id` int(11) NOT NULL,
1098 PRIMARY KEY (`custom_field_id`,`customer_group_id`)
1099) ENGINE=MyISAM DEFAULT CHARSET=utf8;
1100
1101-- --------------------------------------------------------
1102
1103--
1104-- Table structure for table `custom_field_value`
1105--
1106
1107CREATE TABLE IF NOT EXISTS `custom_field_value` (
1108 `custom_field_value_id` int(11) NOT NULL AUTO_INCREMENT,
1109 `custom_field_id` int(11) NOT NULL,
1110 `sort_order` int(3) NOT NULL,
1111 PRIMARY KEY (`custom_field_value_id`)
1112) ENGINE=MyISAM DEFAULT CHARSET=utf8 AUTO_INCREMENT=1 ;
1113
1114-- --------------------------------------------------------
1115
1116--
1117-- Table structure for table `custom_field_value_description`
1118--
1119
1120CREATE TABLE IF NOT EXISTS `custom_field_value_description` (
1121 `custom_field_value_id` int(11) NOT NULL,
1122 `language_id` int(11) NOT NULL,
1123 `custom_field_id` int(11) NOT NULL,
1124 `name` varchar(128) NOT NULL,
1125 PRIMARY KEY (`custom_field_value_id`,`language_id`)
1126) ENGINE=MyISAM DEFAULT CHARSET=utf8;
1127
1128-- --------------------------------------------------------
1129
1130--
1131-- Table structure for table `download`
1132--
1133
1134CREATE TABLE IF NOT EXISTS `download` (
1135 `download_id` int(11) NOT NULL AUTO_INCREMENT,
1136 `filename` varchar(128) NOT NULL,
1137 `mask` varchar(128) NOT NULL,
1138 `remaining` int(11) NOT NULL DEFAULT '0',
1139 `date_added` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
1140 PRIMARY KEY (`download_id`)
1141) ENGINE=MyISAM DEFAULT CHARSET=utf8 AUTO_INCREMENT=1 ;
1142
1143-- --------------------------------------------------------
1144
1145--
1146-- Table structure for table `download_description`
1147--
1148
1149CREATE TABLE IF NOT EXISTS `download_description` (
1150 `download_id` int(11) NOT NULL,
1151 `language_id` int(11) NOT NULL,
1152 `name` varchar(64) NOT NULL,
1153 PRIMARY KEY (`download_id`,`language_id`)
1154) ENGINE=MyISAM DEFAULT CHARSET=utf8;
1155
1156-- --------------------------------------------------------
1157
1158--
1159-- Table structure for table `extension`
1160--
1161
1162CREATE TABLE IF NOT EXISTS `extension` (
1163 `extension_id` int(11) NOT NULL AUTO_INCREMENT,
1164 `type` varchar(32) NOT NULL,
1165 `code` varchar(32) NOT NULL,
1166 PRIMARY KEY (`extension_id`)
1167) ENGINE=MyISAM DEFAULT CHARSET=utf8 AUTO_INCREMENT=436 ;
1168
1169--
1170-- Dumping data for table `extension`
1171--
1172
1173INSERT INTO `extension` (`extension_id`, `type`, `code`) VALUES
1174(23, 'payment', 'cod'),
1175(22, 'total', 'shipping'),
1176(57, 'total', 'sub_total'),
1177(58, 'total', 'tax'),
1178(59, 'total', 'total'),
1179(410, 'module', 'banner'),
1180(432, 'module', 'lpbc'),
1181(390, 'total', 'credit'),
1182(387, 'shipping', 'flat'),
1183(349, 'total', 'handling'),
1184(350, 'total', 'low_order_fee'),
1185(389, 'total', 'coupon'),
1186(413, 'module', 'category'),
1187(411, 'module', 'affiliate'),
1188(408, 'module', 'account'),
1189(393, 'total', 'reward'),
1190(398, 'total', 'voucher'),
1191(407, 'payment', 'free_checkout'),
1192(427, 'module', 'featured'),
1193(419, 'module', 'slideshow'),
1194(428, 'module', 'productcarousel'),
1195(429, 'module', 'bestseller'),
1196(430, 'module', 'welcome'),
1197(431, 'module', 'custom_html'),
1198(433, 'module', 'latest'),
1199(434, 'module', 'supercategorymenuadvanced'),
1200(435, 'module', 'information');
1201
1202-- --------------------------------------------------------
1203
1204--
1205-- Table structure for table `filter`
1206--
1207
1208CREATE TABLE IF NOT EXISTS `filter` (
1209 `filter_id` int(11) NOT NULL AUTO_INCREMENT,
1210 `filter_group_id` int(11) NOT NULL,
1211 `sort_order` int(3) NOT NULL,
1212 PRIMARY KEY (`filter_id`)
1213) ENGINE=MyISAM DEFAULT CHARSET=utf8 AUTO_INCREMENT=1 ;
1214
1215-- --------------------------------------------------------
1216
1217--
1218-- Table structure for table `filter_description`
1219--
1220
1221CREATE TABLE IF NOT EXISTS `filter_description` (
1222 `filter_id` int(11) NOT NULL,
1223 `language_id` int(11) NOT NULL,
1224 `filter_group_id` int(11) NOT NULL,
1225 `name` varchar(64) NOT NULL,
1226 PRIMARY KEY (`filter_id`,`language_id`)
1227) ENGINE=MyISAM DEFAULT CHARSET=utf8;
1228
1229-- --------------------------------------------------------
1230
1231--
1232-- Table structure for table `filter_group`
1233--
1234
1235CREATE TABLE IF NOT EXISTS `filter_group` (
1236 `filter_group_id` int(11) NOT NULL AUTO_INCREMENT,
1237 `sort_order` int(3) NOT NULL,
1238 PRIMARY KEY (`filter_group_id`)
1239) ENGINE=MyISAM DEFAULT CHARSET=utf8 AUTO_INCREMENT=1 ;
1240
1241-- --------------------------------------------------------
1242
1243--
1244-- Table structure for table `filter_group_description`
1245--
1246
1247CREATE TABLE IF NOT EXISTS `filter_group_description` (
1248 `filter_group_id` int(11) NOT NULL,
1249 `language_id` int(11) NOT NULL,
1250 `name` varchar(64) NOT NULL,
1251 PRIMARY KEY (`filter_group_id`,`language_id`)
1252) ENGINE=MyISAM DEFAULT CHARSET=utf8;
1253
1254-- --------------------------------------------------------
1255
1256--
1257-- Table structure for table `geo_zone`
1258--
1259
1260CREATE TABLE IF NOT EXISTS `geo_zone` (
1261 `geo_zone_id` int(11) NOT NULL AUTO_INCREMENT,
1262 `name` varchar(32) NOT NULL,
1263 `description` varchar(255) NOT NULL,
1264 `date_modified` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
1265 `date_added` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
1266 PRIMARY KEY (`geo_zone_id`)
1267) ENGINE=MyISAM DEFAULT CHARSET=utf8 AUTO_INCREMENT=5 ;
1268
1269--
1270-- Dumping data for table `geo_zone`
1271--
1272
1273INSERT INTO `geo_zone` (`geo_zone_id`, `name`, `description`, `date_modified`, `date_added`) VALUES
1274(3, 'UK VAT Zone', 'UK VAT', '2010-02-26 22:33:24', '2009-01-06 23:26:25'),
1275(4, 'UK Shipping', 'UK Shipping Zones', '2010-12-15 15:18:13', '2009-06-23 01:14:53');
1276
1277-- --------------------------------------------------------
1278
1279--
1280-- Table structure for table `information`
1281--
1282
1283CREATE TABLE IF NOT EXISTS `information` (
1284 `information_id` int(11) NOT NULL AUTO_INCREMENT,
1285 `bottom` int(1) NOT NULL DEFAULT '0',
1286 `sort_order` int(3) NOT NULL DEFAULT '0',
1287 `status` tinyint(1) NOT NULL DEFAULT '1',
1288 PRIMARY KEY (`information_id`)
1289) ENGINE=MyISAM DEFAULT CHARSET=utf8 AUTO_INCREMENT=7 ;
1290
1291--
1292-- Dumping data for table `information`
1293--
1294
1295INSERT INTO `information` (`information_id`, `bottom`, `sort_order`, `status`) VALUES
1296(3, 1, 3, 1),
1297(4, 1, 1, 1),
1298(5, 1, 4, 1),
1299(6, 1, 2, 1);
1300
1301-- --------------------------------------------------------
1302
1303--
1304-- Table structure for table `information_description`
1305--
1306
1307CREATE TABLE IF NOT EXISTS `information_description` (
1308 `information_id` int(11) NOT NULL,
1309 `language_id` int(11) NOT NULL,
1310 `title` varchar(64) NOT NULL,
1311 `description` text NOT NULL,
1312 PRIMARY KEY (`information_id`,`language_id`)
1313) ENGINE=MyISAM DEFAULT CHARSET=utf8;
1314
1315--
1316-- Dumping data for table `information_description`
1317--
1318
1319INSERT INTO `information_description` (`information_id`, `language_id`, `title`, `description`) VALUES
1320(4, 1, 'About Us', '<p>\r\n About Us</p>\r\n'),
1321(5, 1, 'Terms & Conditions', '<p>\r\n Terms &amp; Conditions</p>\r\n'),
1322(3, 1, 'Privacy Policy', '<p>\r\n Privacy Policy</p>\r\n'),
1323(6, 1, 'Delivery Information', '<p>\r\n Delivery Information</p>\r\n');
1324
1325-- --------------------------------------------------------
1326
1327--
1328-- Table structure for table `information_to_layout`
1329--
1330
1331CREATE TABLE IF NOT EXISTS `information_to_layout` (
1332 `information_id` int(11) NOT NULL,
1333 `store_id` int(11) NOT NULL,
1334 `layout_id` int(11) NOT NULL,
1335 PRIMARY KEY (`information_id`,`store_id`)
1336) ENGINE=MyISAM DEFAULT CHARSET=utf8;
1337
1338-- --------------------------------------------------------
1339
1340--
1341-- Table structure for table `information_to_store`
1342--
1343
1344CREATE TABLE IF NOT EXISTS `information_to_store` (
1345 `information_id` int(11) NOT NULL,
1346 `store_id` int(11) NOT NULL,
1347 PRIMARY KEY (`information_id`,`store_id`)
1348) ENGINE=MyISAM DEFAULT CHARSET=utf8;
1349
1350--
1351-- Dumping data for table `information_to_store`
1352--
1353
1354INSERT INTO `information_to_store` (`information_id`, `store_id`) VALUES
1355(3, 0),
1356(4, 0),
1357(5, 0),
1358(6, 0);
1359
1360-- --------------------------------------------------------
1361
1362--
1363-- Table structure for table `language`
1364--
1365
1366CREATE TABLE IF NOT EXISTS `language` (
1367 `language_id` int(11) NOT NULL AUTO_INCREMENT,
1368 `name` varchar(32) NOT NULL,
1369 `code` varchar(5) NOT NULL,
1370 `locale` varchar(255) NOT NULL,
1371 `image` varchar(64) NOT NULL,
1372 `directory` varchar(32) NOT NULL,
1373 `filename` varchar(64) NOT NULL,
1374 `sort_order` int(3) NOT NULL DEFAULT '0',
1375 `status` tinyint(1) NOT NULL,
1376 PRIMARY KEY (`language_id`),
1377 KEY `name` (`name`)
1378) ENGINE=MyISAM DEFAULT CHARSET=utf8 AUTO_INCREMENT=2 ;
1379
1380--
1381-- Dumping data for table `language`
1382--
1383
1384INSERT INTO `language` (`language_id`, `name`, `code`, `locale`, `image`, `directory`, `filename`, `sort_order`, `status`) VALUES
1385(1, 'English', 'en', 'en_US.UTF-8,en_US,en-gb,english', 'gb.png', 'english', 'english', 1, 1);
1386
1387-- --------------------------------------------------------
1388
1389--
1390-- Table structure for table `layout`
1391--
1392
1393CREATE TABLE IF NOT EXISTS `layout` (
1394 `layout_id` int(11) NOT NULL AUTO_INCREMENT,
1395 `name` varchar(64) NOT NULL,
1396 PRIMARY KEY (`layout_id`)
1397) ENGINE=MyISAM DEFAULT CHARSET=utf8 AUTO_INCREMENT=12 ;
1398
1399--
1400-- Dumping data for table `layout`
1401--
1402
1403INSERT INTO `layout` (`layout_id`, `name`) VALUES
1404(1, 'Home'),
1405(2, 'Product'),
1406(3, 'Category'),
1407(4, 'Default'),
1408(5, 'Manufacturer'),
1409(6, 'Account'),
1410(7, 'Checkout'),
1411(8, 'Contact'),
1412(9, 'Sitemap'),
1413(10, 'Affiliate'),
1414(11, 'Information');
1415
1416-- --------------------------------------------------------
1417
1418--
1419-- Table structure for table `layout_route`
1420--
1421
1422CREATE TABLE IF NOT EXISTS `layout_route` (
1423 `layout_route_id` int(11) NOT NULL AUTO_INCREMENT,
1424 `layout_id` int(11) NOT NULL,
1425 `store_id` int(11) NOT NULL,
1426 `route` varchar(255) NOT NULL,
1427 PRIMARY KEY (`layout_route_id`)
1428) ENGINE=MyISAM DEFAULT CHARSET=utf8 AUTO_INCREMENT=33 ;
1429
1430--
1431-- Dumping data for table `layout_route`
1432--
1433
1434INSERT INTO `layout_route` (`layout_route_id`, `layout_id`, `store_id`, `route`) VALUES
1435(30, 6, 0, 'account'),
1436(17, 10, 0, 'affiliate/'),
1437(29, 3, 0, 'product/category'),
1438(26, 1, 0, 'common/home'),
1439(20, 2, 0, 'product/product'),
1440(24, 11, 0, 'information/information'),
1441(22, 5, 0, 'product/manufacturer'),
1442(23, 7, 0, 'checkout/'),
1443(31, 8, 0, 'information/contact'),
1444(32, 9, 0, 'information/sitemap');
1445
1446-- --------------------------------------------------------
1447
1448--
1449-- Table structure for table `length_class`
1450--
1451
1452CREATE TABLE IF NOT EXISTS `length_class` (
1453 `length_class_id` int(11) NOT NULL AUTO_INCREMENT,
1454 `value` decimal(15,8) NOT NULL,
1455 PRIMARY KEY (`length_class_id`)
1456) ENGINE=MyISAM DEFAULT CHARSET=utf8 AUTO_INCREMENT=4 ;
1457
1458--
1459-- Dumping data for table `length_class`
1460--
1461
1462INSERT INTO `length_class` (`length_class_id`, `value`) VALUES
1463(1, '1.00000000'),
1464(2, '10.00000000'),
1465(3, '0.39370000');
1466
1467-- --------------------------------------------------------
1468
1469--
1470-- Table structure for table `length_class_description`
1471--
1472
1473CREATE TABLE IF NOT EXISTS `length_class_description` (
1474 `length_class_id` int(11) NOT NULL AUTO_INCREMENT,
1475 `language_id` int(11) NOT NULL,
1476 `title` varchar(32) NOT NULL,
1477 `unit` varchar(4) NOT NULL,
1478 PRIMARY KEY (`length_class_id`,`language_id`)
1479) ENGINE=MyISAM DEFAULT CHARSET=utf8 AUTO_INCREMENT=4 ;
1480
1481--
1482-- Dumping data for table `length_class_description`
1483--
1484
1485INSERT INTO `length_class_description` (`length_class_id`, `language_id`, `title`, `unit`) VALUES
1486(1, 1, 'Centimeter', 'cm'),
1487(2, 1, 'Millimeter', 'mm'),
1488(3, 1, 'Inch', 'in');
1489
1490-- --------------------------------------------------------
1491
1492--
1493-- Table structure for table `manufacturer`
1494--
1495
1496CREATE TABLE IF NOT EXISTS `manufacturer` (
1497 `manufacturer_id` int(11) NOT NULL AUTO_INCREMENT,
1498 `name` varchar(64) NOT NULL,
1499 `image` varchar(255) DEFAULT NULL,
1500 `sort_order` int(3) NOT NULL,
1501 PRIMARY KEY (`manufacturer_id`)
1502) ENGINE=MyISAM DEFAULT CHARSET=utf8 AUTO_INCREMENT=11 ;
1503
1504--
1505-- Dumping data for table `manufacturer`
1506--
1507
1508INSERT INTO `manufacturer` (`manufacturer_id`, `name`, `image`, `sort_order`) VALUES
1509(5, 'HTC', 'data/demo/htc_logo.jpg', 0),
1510(6, 'Palm', 'data/demo/palm_logo.jpg', 0),
1511(7, 'Hewlett-Packard', 'data/demo/hp_logo.jpg', 0),
1512(8, 'Apple', 'data/demo/apple_logo.jpg', 0),
1513(9, 'Canon', 'data/demo/canon_logo.jpg', 0),
1514(10, 'Sony', 'data/demo/sony_logo.jpg', 0);
1515
1516-- --------------------------------------------------------
1517
1518--
1519-- Table structure for table `manufacturer_to_store`
1520--
1521
1522CREATE TABLE IF NOT EXISTS `manufacturer_to_store` (
1523 `manufacturer_id` int(11) NOT NULL,
1524 `store_id` int(11) NOT NULL,
1525 PRIMARY KEY (`manufacturer_id`,`store_id`)
1526) ENGINE=MyISAM DEFAULT CHARSET=utf8;
1527
1528--
1529-- Dumping data for table `manufacturer_to_store`
1530--
1531
1532INSERT INTO `manufacturer_to_store` (`manufacturer_id`, `store_id`) VALUES
1533(5, 0),
1534(6, 0),
1535(7, 0),
1536(8, 0),
1537(9, 0),
1538(10, 0);
1539
1540-- --------------------------------------------------------
1541
1542--
1543-- Table structure for table `option`
1544--
1545
1546CREATE TABLE IF NOT EXISTS `option` (
1547 `option_id` int(11) NOT NULL AUTO_INCREMENT,
1548 `type` varchar(32) NOT NULL,
1549 `sort_order` int(3) NOT NULL,
1550 PRIMARY KEY (`option_id`)
1551) ENGINE=MyISAM DEFAULT CHARSET=utf8 AUTO_INCREMENT=15 ;
1552
1553--
1554-- Dumping data for table `option`
1555--
1556
1557INSERT INTO `option` (`option_id`, `type`, `sort_order`) VALUES
1558(1, 'radio', 2),
1559(2, 'checkbox', 3),
1560(4, 'text', 4),
1561(5, 'select', 1),
1562(6, 'textarea', 5),
1563(7, 'file', 6),
1564(8, 'date', 7),
1565(9, 'time', 8),
1566(10, 'datetime', 9),
1567(11, 'select', 1),
1568(12, 'date', 1),
1569(13, 'image', 1),
1570(14, 'image', 2);
1571
1572-- --------------------------------------------------------
1573
1574--
1575-- Table structure for table `option_description`
1576--
1577
1578CREATE TABLE IF NOT EXISTS `option_description` (
1579 `option_id` int(11) NOT NULL,
1580 `language_id` int(11) NOT NULL,
1581 `name` varchar(128) NOT NULL,
1582 PRIMARY KEY (`option_id`,`language_id`)
1583) ENGINE=MyISAM DEFAULT CHARSET=utf8;
1584
1585--
1586-- Dumping data for table `option_description`
1587--
1588
1589INSERT INTO `option_description` (`option_id`, `language_id`, `name`) VALUES
1590(1, 1, 'Radio'),
1591(2, 1, 'Checkbox'),
1592(4, 1, 'Text'),
1593(6, 1, 'Textarea'),
1594(8, 1, 'Date'),
1595(7, 1, 'File'),
1596(5, 1, 'Select'),
1597(9, 1, 'Time'),
1598(10, 1, 'Date & Time'),
1599(12, 1, 'Delivery Date'),
1600(11, 1, 'Size'),
1601(13, 1, 'Fabrics'),
1602(14, 1, 'Color');
1603
1604-- --------------------------------------------------------
1605
1606--
1607-- Table structure for table `option_value`
1608--
1609
1610CREATE TABLE IF NOT EXISTS `option_value` (
1611 `option_value_id` int(11) NOT NULL AUTO_INCREMENT,
1612 `option_id` int(11) NOT NULL,
1613 `image` varchar(255) NOT NULL,
1614 `sort_order` int(3) NOT NULL,
1615 PRIMARY KEY (`option_value_id`)
1616) ENGINE=MyISAM DEFAULT CHARSET=utf8 AUTO_INCREMENT=61 ;
1617
1618--
1619-- Dumping data for table `option_value`
1620--
1621
1622INSERT INTO `option_value` (`option_value_id`, `option_id`, `image`, `sort_order`) VALUES
1623(43, 1, '', 3),
1624(32, 1, '', 1),
1625(45, 2, '', 4),
1626(44, 2, '', 3),
1627(42, 5, '', 4),
1628(41, 5, '', 3),
1629(39, 5, '', 1),
1630(40, 5, '', 2),
1631(31, 1, '', 2),
1632(23, 2, '', 1),
1633(24, 2, '', 2),
1634(46, 11, '', 1),
1635(47, 11, '', 2),
1636(48, 11, '', 3),
1637(49, 13, 'data/option-image/choose-fabrics1.jpg', 1),
1638(50, 13, 'data/option-image/choose-fabrics2.jpg', 2),
1639(51, 13, 'data/option-image/choose-fabrics4.jpg', 3),
1640(52, 13, 'data/option-image/choose-fabrics5.jpg', 0),
1641(53, 13, 'data/option-image/choose-fabrics6.jpg', 0),
1642(54, 13, 'data/option-image/choose-fabrics7.jpg', 0),
1643(55, 14, 'data/option-image/choosecolor1.jpg', 1),
1644(56, 14, 'data/option-image/choosecolor2.jpg', 2),
1645(57, 14, 'data/option-image/choosecolor3.jpg', 3),
1646(58, 14, 'data/option-image/choosecolor4.jpg', 4),
1647(59, 14, 'data/option-image/choosecolor7.jpg', 0),
1648(60, 14, 'data/option-image/choosecolor6.jpg', 0);
1649
1650-- --------------------------------------------------------
1651
1652--
1653-- Table structure for table `option_value_description`
1654--
1655
1656CREATE TABLE IF NOT EXISTS `option_value_description` (
1657 `option_value_id` int(11) NOT NULL,
1658 `language_id` int(11) NOT NULL,
1659 `option_id` int(11) NOT NULL,
1660 `name` varchar(128) NOT NULL,
1661 PRIMARY KEY (`option_value_id`,`language_id`)
1662) ENGINE=MyISAM DEFAULT CHARSET=utf8;
1663
1664--
1665-- Dumping data for table `option_value_description`
1666--
1667
1668INSERT INTO `option_value_description` (`option_value_id`, `language_id`, `option_id`, `name`) VALUES
1669(43, 1, 1, 'Large'),
1670(32, 1, 1, 'Small'),
1671(45, 1, 2, 'Checkbox 4'),
1672(44, 1, 2, 'Checkbox 3'),
1673(31, 1, 1, 'Medium'),
1674(42, 1, 5, 'Yellow'),
1675(41, 1, 5, 'Green'),
1676(39, 1, 5, 'Red'),
1677(40, 1, 5, 'Blue'),
1678(23, 1, 2, 'Checkbox 1'),
1679(24, 1, 2, 'Checkbox 2'),
1680(48, 1, 11, 'Large'),
1681(47, 1, 11, 'Medium'),
1682(46, 1, 11, 'Small'),
1683(49, 1, 13, 'Wood'),
1684(50, 1, 13, 'Fur'),
1685(51, 1, 13, 'Linen'),
1686(52, 1, 13, 'Wool'),
1687(53, 1, 13, 'Jute'),
1688(54, 1, 13, 'Ramie'),
1689(55, 1, 14, 'Grey'),
1690(56, 1, 14, 'Blue'),
1691(57, 1, 14, 'Brown'),
1692(58, 1, 14, 'Silver Grey'),
1693(59, 1, 14, 'Silver'),
1694(60, 1, 14, 'Dark Grey');
1695
1696-- --------------------------------------------------------
1697
1698--
1699-- Table structure for table `order`
1700--
1701
1702CREATE TABLE IF NOT EXISTS `order` (
1703 `order_id` int(11) NOT NULL AUTO_INCREMENT,
1704 `invoice_no` int(11) NOT NULL DEFAULT '0',
1705 `invoice_prefix` varchar(26) NOT NULL,
1706 `store_id` int(11) NOT NULL DEFAULT '0',
1707 `store_name` varchar(64) NOT NULL,
1708 `store_url` varchar(255) NOT NULL,
1709 `customer_id` int(11) NOT NULL DEFAULT '0',
1710 `customer_group_id` int(11) NOT NULL DEFAULT '0',
1711 `firstname` varchar(32) NOT NULL,
1712 `lastname` varchar(32) NOT NULL,
1713 `email` varchar(96) NOT NULL,
1714 `telephone` varchar(32) NOT NULL,
1715 `fax` varchar(32) NOT NULL,
1716 `payment_firstname` varchar(32) NOT NULL,
1717 `payment_lastname` varchar(32) NOT NULL,
1718 `payment_company` varchar(32) NOT NULL,
1719 `payment_company_id` varchar(32) NOT NULL,
1720 `payment_tax_id` varchar(32) NOT NULL,
1721 `payment_address_1` varchar(128) NOT NULL,
1722 `payment_address_2` varchar(128) NOT NULL,
1723 `payment_city` varchar(128) NOT NULL,
1724 `payment_postcode` varchar(10) NOT NULL,
1725 `payment_country` varchar(128) NOT NULL,
1726 `payment_country_id` int(11) NOT NULL,
1727 `payment_zone` varchar(128) NOT NULL,
1728 `payment_zone_id` int(11) NOT NULL,
1729 `payment_address_format` text NOT NULL,
1730 `payment_method` varchar(128) NOT NULL,
1731 `payment_code` varchar(128) NOT NULL,
1732 `shipping_firstname` varchar(32) NOT NULL,
1733 `shipping_lastname` varchar(32) NOT NULL,
1734 `shipping_company` varchar(32) NOT NULL,
1735 `shipping_address_1` varchar(128) NOT NULL,
1736 `shipping_address_2` varchar(128) NOT NULL,
1737 `shipping_city` varchar(128) NOT NULL,
1738 `shipping_postcode` varchar(10) NOT NULL,
1739 `shipping_country` varchar(128) NOT NULL,
1740 `shipping_country_id` int(11) NOT NULL,
1741 `shipping_zone` varchar(128) NOT NULL,
1742 `shipping_zone_id` int(11) NOT NULL,
1743 `shipping_address_format` text NOT NULL,
1744 `shipping_method` varchar(128) NOT NULL,
1745 `shipping_code` varchar(128) NOT NULL,
1746 `comment` text NOT NULL,
1747 `total` decimal(15,4) NOT NULL DEFAULT '0.0000',
1748 `order_status_id` int(11) NOT NULL DEFAULT '0',
1749 `affiliate_id` int(11) NOT NULL,
1750 `commission` decimal(15,4) NOT NULL,
1751 `language_id` int(11) NOT NULL,
1752 `currency_id` int(11) NOT NULL,
1753 `currency_code` varchar(3) NOT NULL,
1754 `currency_value` decimal(15,8) NOT NULL DEFAULT '1.00000000',
1755 `ip` varchar(40) NOT NULL,
1756 `forwarded_ip` varchar(40) NOT NULL,
1757 `user_agent` varchar(255) NOT NULL,
1758 `accept_language` varchar(255) NOT NULL,
1759 `date_added` datetime NOT NULL,
1760 `date_modified` datetime NOT NULL,
1761 PRIMARY KEY (`order_id`)
1762) ENGINE=MyISAM DEFAULT CHARSET=utf8 AUTO_INCREMENT=1 ;
1763
1764-- --------------------------------------------------------
1765
1766--
1767-- Table structure for table `order_download`
1768--
1769
1770CREATE TABLE IF NOT EXISTS `order_download` (
1771 `order_download_id` int(11) NOT NULL AUTO_INCREMENT,
1772 `order_id` int(11) NOT NULL,
1773 `order_product_id` int(11) NOT NULL,
1774 `name` varchar(64) NOT NULL,
1775 `filename` varchar(128) NOT NULL,
1776 `mask` varchar(128) NOT NULL,
1777 `remaining` int(3) NOT NULL DEFAULT '0',
1778 PRIMARY KEY (`order_download_id`)
1779) ENGINE=MyISAM DEFAULT CHARSET=utf8 AUTO_INCREMENT=1 ;
1780
1781-- --------------------------------------------------------
1782
1783--
1784-- Table structure for table `order_field`
1785--
1786
1787CREATE TABLE IF NOT EXISTS `order_field` (
1788 `order_id` int(11) NOT NULL,
1789 `custom_field_id` int(11) NOT NULL,
1790 `custom_field_value_id` int(11) NOT NULL,
1791 `name` int(128) NOT NULL,
1792 `value` text NOT NULL,
1793 `sort_order` int(3) NOT NULL,
1794 PRIMARY KEY (`order_id`,`custom_field_id`,`custom_field_value_id`)
1795) ENGINE=MyISAM DEFAULT CHARSET=utf8;
1796
1797-- --------------------------------------------------------
1798
1799--
1800-- Table structure for table `order_fraud`
1801--
1802
1803CREATE TABLE IF NOT EXISTS `order_fraud` (
1804 `order_id` int(11) NOT NULL,
1805 `customer_id` int(11) NOT NULL,
1806 `country_match` varchar(3) NOT NULL,
1807 `country_code` varchar(2) NOT NULL,
1808 `high_risk_country` varchar(3) NOT NULL,
1809 `distance` int(11) NOT NULL,
1810 `ip_region` varchar(255) NOT NULL,
1811 `ip_city` varchar(255) NOT NULL,
1812 `ip_latitude` decimal(10,6) NOT NULL,
1813 `ip_longitude` decimal(10,6) NOT NULL,
1814 `ip_isp` varchar(255) NOT NULL,
1815 `ip_org` varchar(255) NOT NULL,
1816 `ip_asnum` int(11) NOT NULL,
1817 `ip_user_type` varchar(255) NOT NULL,
1818 `ip_country_confidence` varchar(3) NOT NULL,
1819 `ip_region_confidence` varchar(3) NOT NULL,
1820 `ip_city_confidence` varchar(3) NOT NULL,
1821 `ip_postal_confidence` varchar(3) NOT NULL,
1822 `ip_postal_code` varchar(10) NOT NULL,
1823 `ip_accuracy_radius` int(11) NOT NULL,
1824 `ip_net_speed_cell` varchar(255) NOT NULL,
1825 `ip_metro_code` int(3) NOT NULL,
1826 `ip_area_code` int(3) NOT NULL,
1827 `ip_time_zone` varchar(255) NOT NULL,
1828 `ip_region_name` varchar(255) NOT NULL,
1829 `ip_domain` varchar(255) NOT NULL,
1830 `ip_country_name` varchar(255) NOT NULL,
1831 `ip_continent_code` varchar(2) NOT NULL,
1832 `ip_corporate_proxy` varchar(3) NOT NULL,
1833 `anonymous_proxy` varchar(3) NOT NULL,
1834 `proxy_score` int(3) NOT NULL,
1835 `is_trans_proxy` varchar(3) NOT NULL,
1836 `free_mail` varchar(3) NOT NULL,
1837 `carder_email` varchar(3) NOT NULL,
1838 `high_risk_username` varchar(3) NOT NULL,
1839 `high_risk_password` varchar(3) NOT NULL,
1840 `bin_match` varchar(10) NOT NULL,
1841 `bin_country` varchar(2) NOT NULL,
1842 `bin_name_match` varchar(3) NOT NULL,
1843 `bin_name` varchar(255) NOT NULL,
1844 `bin_phone_match` varchar(3) NOT NULL,
1845 `bin_phone` varchar(32) NOT NULL,
1846 `customer_phone_in_billing_location` varchar(8) NOT NULL,
1847 `ship_forward` varchar(3) NOT NULL,
1848 `city_postal_match` varchar(3) NOT NULL,
1849 `ship_city_postal_match` varchar(3) NOT NULL,
1850 `score` decimal(10,5) NOT NULL,
1851 `explanation` text NOT NULL,
1852 `risk_score` decimal(10,5) NOT NULL,
1853 `queries_remaining` int(11) NOT NULL,
1854 `maxmind_id` varchar(8) NOT NULL,
1855 `error` text NOT NULL,
1856 `date_added` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
1857 PRIMARY KEY (`order_id`)
1858) ENGINE=MyISAM DEFAULT CHARSET=utf8;
1859
1860-- --------------------------------------------------------
1861
1862--
1863-- Table structure for table `order_history`
1864--
1865
1866CREATE TABLE IF NOT EXISTS `order_history` (
1867 `order_history_id` int(11) NOT NULL AUTO_INCREMENT,
1868 `order_id` int(11) NOT NULL,
1869 `order_status_id` int(5) NOT NULL,
1870 `notify` tinyint(1) NOT NULL DEFAULT '0',
1871 `comment` text NOT NULL,
1872 `date_added` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
1873 PRIMARY KEY (`order_history_id`)
1874) ENGINE=MyISAM DEFAULT CHARSET=utf8 AUTO_INCREMENT=1 ;
1875
1876-- --------------------------------------------------------
1877
1878--
1879-- Table structure for table `order_option`
1880--
1881
1882CREATE TABLE IF NOT EXISTS `order_option` (
1883 `order_option_id` int(11) NOT NULL AUTO_INCREMENT,
1884 `order_id` int(11) NOT NULL,
1885 `order_product_id` int(11) NOT NULL,
1886 `product_option_id` int(11) NOT NULL,
1887 `product_option_value_id` int(11) NOT NULL DEFAULT '0',
1888 `name` varchar(255) NOT NULL,
1889 `value` text NOT NULL,
1890 `type` varchar(32) NOT NULL,
1891 PRIMARY KEY (`order_option_id`)
1892) ENGINE=MyISAM DEFAULT CHARSET=utf8 AUTO_INCREMENT=1 ;
1893
1894-- --------------------------------------------------------
1895
1896--
1897-- Table structure for table `order_product`
1898--
1899
1900CREATE TABLE IF NOT EXISTS `order_product` (
1901 `order_product_id` int(11) NOT NULL AUTO_INCREMENT,
1902 `order_id` int(11) NOT NULL,
1903 `product_id` int(11) NOT NULL,
1904 `name` varchar(255) NOT NULL,
1905 `model` varchar(64) NOT NULL,
1906 `quantity` int(4) NOT NULL,
1907 `price` decimal(15,4) NOT NULL DEFAULT '0.0000',
1908 `total` decimal(15,4) NOT NULL DEFAULT '0.0000',
1909 `tax` decimal(15,4) NOT NULL DEFAULT '0.0000',
1910 `reward` int(8) NOT NULL,
1911 PRIMARY KEY (`order_product_id`)
1912) ENGINE=MyISAM DEFAULT CHARSET=utf8 AUTO_INCREMENT=1 ;
1913
1914-- --------------------------------------------------------
1915
1916--
1917-- Table structure for table `order_recurring`
1918--
1919
1920CREATE TABLE IF NOT EXISTS `order_recurring` (
1921 `order_recurring_id` int(11) NOT NULL AUTO_INCREMENT,
1922 `order_id` int(11) NOT NULL,
1923 `created` datetime NOT NULL,
1924 `status` tinyint(4) NOT NULL,
1925 `product_id` int(11) NOT NULL,
1926 `product_name` varchar(255) NOT NULL,
1927 `product_quantity` int(11) NOT NULL,
1928 `profile_id` int(11) NOT NULL,
1929 `profile_name` varchar(255) NOT NULL,
1930 `profile_description` varchar(255) NOT NULL,
1931 `recurring_frequency` varchar(25) NOT NULL,
1932 `recurring_cycle` smallint(6) NOT NULL,
1933 `recurring_duration` smallint(6) NOT NULL,
1934 `recurring_price` decimal(10,4) NOT NULL,
1935 `trial` tinyint(1) NOT NULL,
1936 `trial_frequency` varchar(25) NOT NULL,
1937 `trial_cycle` smallint(6) NOT NULL,
1938 `trial_duration` smallint(6) NOT NULL,
1939 `trial_price` decimal(10,4) NOT NULL,
1940 `profile_reference` varchar(255) NOT NULL,
1941 PRIMARY KEY (`order_recurring_id`)
1942) ENGINE=MyISAM DEFAULT CHARSET=utf8 AUTO_INCREMENT=1 ;
1943
1944-- --------------------------------------------------------
1945
1946--
1947-- Table structure for table `order_recurring_transaction`
1948--
1949
1950CREATE TABLE IF NOT EXISTS `order_recurring_transaction` (
1951 `order_recurring_transaction_id` int(11) NOT NULL AUTO_INCREMENT,
1952 `order_recurring_id` int(11) NOT NULL,
1953 `created` datetime NOT NULL,
1954 `amount` decimal(10,4) NOT NULL,
1955 `type` varchar(255) NOT NULL,
1956 PRIMARY KEY (`order_recurring_transaction_id`)
1957) ENGINE=MyISAM DEFAULT CHARSET=utf8 AUTO_INCREMENT=1 ;
1958
1959-- --------------------------------------------------------
1960
1961--
1962-- Table structure for table `order_status`
1963--
1964
1965CREATE TABLE IF NOT EXISTS `order_status` (
1966 `order_status_id` int(11) NOT NULL AUTO_INCREMENT,
1967 `language_id` int(11) NOT NULL,
1968 `name` varchar(32) NOT NULL,
1969 PRIMARY KEY (`order_status_id`,`language_id`)
1970) ENGINE=MyISAM DEFAULT CHARSET=utf8 AUTO_INCREMENT=17 ;
1971
1972--
1973-- Dumping data for table `order_status`
1974--
1975
1976INSERT INTO `order_status` (`order_status_id`, `language_id`, `name`) VALUES
1977(2, 1, 'Processing'),
1978(3, 1, 'Shipped'),
1979(7, 1, 'Canceled'),
1980(5, 1, 'Complete'),
1981(8, 1, 'Denied'),
1982(9, 1, 'Canceled Reversal'),
1983(10, 1, 'Failed'),
1984(11, 1, 'Refunded'),
1985(12, 1, 'Reversed'),
1986(13, 1, 'Chargeback'),
1987(1, 1, 'Pending'),
1988(16, 1, 'Voided'),
1989(15, 1, 'Processed'),
1990(14, 1, 'Expired');
1991
1992-- --------------------------------------------------------
1993
1994--
1995-- Table structure for table `order_total`
1996--
1997
1998CREATE TABLE IF NOT EXISTS `order_total` (
1999 `order_total_id` int(10) NOT NULL AUTO_INCREMENT,
2000 `order_id` int(11) NOT NULL,
2001 `code` varchar(32) NOT NULL,
2002 `title` varchar(255) NOT NULL,
2003 `text` varchar(255) NOT NULL,
2004 `value` decimal(15,4) NOT NULL DEFAULT '0.0000',
2005 `sort_order` int(3) NOT NULL,
2006 PRIMARY KEY (`order_total_id`),
2007 KEY `idx_orders_total_orders_id` (`order_id`)
2008) ENGINE=MyISAM DEFAULT CHARSET=utf8 AUTO_INCREMENT=1 ;
2009
2010-- --------------------------------------------------------
2011
2012--
2013-- Table structure for table `order_voucher`
2014--
2015
2016CREATE TABLE IF NOT EXISTS `order_voucher` (
2017 `order_voucher_id` int(11) NOT NULL AUTO_INCREMENT,
2018 `order_id` int(11) NOT NULL,
2019 `voucher_id` int(11) NOT NULL,
2020 `description` varchar(255) NOT NULL,
2021 `code` varchar(10) NOT NULL,
2022 `from_name` varchar(64) NOT NULL,
2023 `from_email` varchar(96) NOT NULL,
2024 `to_name` varchar(64) NOT NULL,
2025 `to_email` varchar(96) NOT NULL,
2026 `voucher_theme_id` int(11) NOT NULL,
2027 `message` text NOT NULL,
2028 `amount` decimal(15,4) NOT NULL,
2029 PRIMARY KEY (`order_voucher_id`)
2030) ENGINE=MyISAM DEFAULT CHARSET=utf8 AUTO_INCREMENT=1 ;
2031
2032-- --------------------------------------------------------
2033
2034--
2035-- Table structure for table `product`
2036--
2037
2038CREATE TABLE IF NOT EXISTS `product` (
2039 `product_id` int(11) NOT NULL AUTO_INCREMENT,
2040 `model` varchar(64) NOT NULL,
2041 `sku` varchar(64) NOT NULL,
2042 `upc` varchar(12) NOT NULL,
2043 `ean` varchar(14) NOT NULL,
2044 `jan` varchar(13) NOT NULL,
2045 `isbn` varchar(13) NOT NULL,
2046 `mpn` varchar(64) NOT NULL,
2047 `location` varchar(128) NOT NULL,
2048 `quantity` int(4) NOT NULL DEFAULT '0',
2049 `stock_status_id` int(11) NOT NULL,
2050 `image` varchar(255) DEFAULT NULL,
2051 `manufacturer_id` int(11) NOT NULL,
2052 `shipping` tinyint(1) NOT NULL DEFAULT '1',
2053 `price` decimal(15,4) NOT NULL DEFAULT '0.0000',
2054 `points` int(8) NOT NULL DEFAULT '0',
2055 `tax_class_id` int(11) NOT NULL,
2056 `date_available` date NOT NULL,
2057 `weight` decimal(15,8) NOT NULL DEFAULT '0.00000000',
2058 `weight_class_id` int(11) NOT NULL DEFAULT '0',
2059 `length` decimal(15,8) NOT NULL DEFAULT '0.00000000',
2060 `width` decimal(15,8) NOT NULL DEFAULT '0.00000000',
2061 `height` decimal(15,8) NOT NULL DEFAULT '0.00000000',
2062 `length_class_id` int(11) NOT NULL DEFAULT '0',
2063 `subtract` tinyint(1) NOT NULL DEFAULT '1',
2064 `minimum` int(11) NOT NULL DEFAULT '1',
2065 `sort_order` int(11) NOT NULL DEFAULT '0',
2066 `status` tinyint(1) NOT NULL DEFAULT '0',
2067 `date_added` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
2068 `date_modified` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
2069 `viewed` int(5) NOT NULL DEFAULT '0',
2070 PRIMARY KEY (`product_id`)
2071) ENGINE=MyISAM DEFAULT CHARSET=utf8 AUTO_INCREMENT=50 ;
2072
2073--
2074-- Dumping data for table `product`
2075--
2076
2077INSERT INTO `product` (`product_id`, `model`, `sku`, `upc`, `ean`, `jan`, `isbn`, `mpn`, `location`, `quantity`, `stock_status_id`, `image`, `manufacturer_id`, `shipping`, `price`, `points`, `tax_class_id`, `date_available`, `weight`, `weight_class_id`, `length`, `width`, `height`, `length_class_id`, `subtract`, `minimum`, `sort_order`, `status`, `date_added`, `date_modified`, `viewed`) VALUES
2078(28, 'Product 1', '', '', '', '', '', '', '', 939, 7, 'data/demo/htc_touch_hd_1.jpg', 5, 1, '100.0000', 200, 9, '2009-02-03', '146.40000000', 2, '0.00000000', '0.00000000', '0.00000000', 1, 1, 1, 0, 1, '2009-02-03 16:06:50', '2015-06-04 14:59:47', 0),
2079(29, 'Product 2', '', '', '', '', '', '', '', 999, 6, 'data/demo/palm_treo_pro_1.jpg', 6, 1, '279.9900', 0, 9, '2009-02-03', '133.00000000', 2, '0.00000000', '0.00000000', '0.00000000', 3, 1, 1, 0, 1, '2009-02-03 16:42:17', '2015-06-04 11:36:33', 0),
2080(30, 'Product 3', '', '', '', '', '', '', '', 7, 6, 'data/demo/canon_eos_5d_1.jpg', 9, 1, '100.0000', 0, 9, '2009-02-03', '0.00000000', 1, '0.00000000', '0.00000000', '0.00000000', 1, 1, 1, 0, 1, '2009-02-03 16:59:00', '2015-06-05 13:20:55', 83),
2081(31, 'Product 4', '', '', '', '', '', '', '', 1000, 6, 'data/demo/nikon_d300_1.jpg', 0, 1, '80.0000', 0, 9, '2009-02-03', '0.00000000', 1, '0.00000000', '0.00000000', '0.00000000', 3, 1, 1, 0, 1, '2009-02-03 17:00:10', '2015-06-04 01:01:46', 0),
2082(32, 'Product 5', '', '', '', '', '', '', '', 999, 6, 'data/demo/ipod_touch_1.jpg', 8, 1, '100.0000', 0, 9, '2009-02-03', '5.00000000', 1, '0.00000000', '0.00000000', '0.00000000', 1, 1, 1, 0, 1, '2009-02-03 17:07:26', '2011-09-30 01:07:22', 0),
2083(33, 'Product 6', '', '', '', '', '', '', '', 1000, 6, 'data/demo/samsung_syncmaster_941bw.jpg', 0, 1, '200.0000', 0, 9, '2009-02-03', '5.00000000', 1, '0.00000000', '0.00000000', '0.00000000', 2, 1, 1, 0, 1, '2009-02-03 17:08:31', '2011-09-30 01:06:29', 0),
2084(34, 'Product 7', '', '', '', '', '', '', '', 1000, 6, 'data/demo/ipod_shuffle_1.jpg', 8, 1, '100.0000', 0, 9, '2009-02-03', '5.00000000', 1, '0.00000000', '0.00000000', '0.00000000', 2, 1, 1, 0, 1, '2009-02-03 18:07:54', '2015-06-04 01:00:59', 0),
2085(35, 'Product 8', '', '', '', '', '', '', '', 1000, 5, '', 0, 0, '100.0000', 0, 9, '2009-02-03', '5.00000000', 1, '0.00000000', '0.00000000', '0.00000000', 1, 1, 1, 0, 1, '2009-02-03 18:08:31', '2011-09-30 01:06:17', 0),
2086(36, 'Product 9', '', '', '', '', '', '', '', 994, 6, 'data/demo/ipod_nano_1.jpg', 8, 0, '100.0000', 100, 9, '2009-02-03', '5.00000000', 1, '0.00000000', '0.00000000', '0.00000000', 2, 1, 1, 0, 1, '2009-02-03 18:09:19', '2015-06-04 01:01:24', 0),
2087(40, 'product 11', '', '', '', '', '', '', '', 970, 5, 'data/demo/iphone_1.jpg', 8, 1, '101.0000', 0, 9, '2009-02-03', '10.00000000', 1, '0.00000000', '0.00000000', '0.00000000', 1, 1, 1, 0, 1, '2009-02-03 21:07:12', '2015-06-04 15:00:47', 0),
2088(41, 'Product 14', '', '', '', '', '', '', '', 977, 5, 'data/demo/imac_1.jpg', 8, 1, '100.0000', 0, 9, '2009-02-03', '5.00000000', 1, '0.00000000', '0.00000000', '0.00000000', 1, 1, 1, 0, 1, '2009-02-03 21:07:26', '2015-06-04 15:00:19', 0),
2089(42, 'Product 15', '', '', '', '', '', '', '', 990, 5, 'data/demo/apple_cinema_30.jpg', 8, 1, '100.0000', 400, 9, '2009-02-04', '12.50000000', 1, '1.00000000', '2.00000000', '3.00000000', 1, 1, 2, 0, 1, '2009-02-03 21:07:37', '2015-06-04 14:57:42', 20),
2090(43, 'Product 16', '', '', '', '', '', '', '', 929, 5, 'data/demo/macbook_1.jpg', 8, 0, '500.0000', 0, 9, '2009-02-03', '0.00000000', 1, '0.00000000', '0.00000000', '0.00000000', 2, 1, 1, 0, 1, '2009-02-03 21:07:49', '2011-09-30 01:05:46', 0),
2091(44, 'Product 17', '', '', '', '', '', '', '', 1000, 5, 'data/demo/macbook_air_1.jpg', 8, 1, '1000.0000', 0, 9, '2009-02-03', '0.00000000', 1, '0.00000000', '0.00000000', '0.00000000', 2, 1, 1, 0, 1, '2009-02-03 21:08:00', '2011-09-30 01:05:53', 0),
2092(45, 'Product 18', '', '', '', '', '', '', '', 998, 5, 'data/demo/macbook_pro_1.jpg', 8, 1, '2000.0000', 0, 100, '2009-02-03', '0.00000000', 1, '0.00000000', '0.00000000', '0.00000000', 2, 1, 1, 0, 1, '2009-02-03 21:08:17', '2011-09-15 22:22:01', 0),
2093(46, 'Product 19', '', '', '', '', '', '', '', 1000, 5, 'data/demo/sony_vaio_1.jpg', 10, 1, '1000.0000', 0, 9, '2009-02-03', '0.00000000', 1, '0.00000000', '0.00000000', '0.00000000', 2, 1, 1, 0, 1, '2009-02-03 21:08:29', '2015-06-04 11:36:20', 1),
2094(47, 'Product 21', '', '', '', '', '', '', '', 1000, 5, 'data/demo/hp_1.jpg', 7, 1, '100.0000', 400, 9, '2009-02-03', '1.00000000', 1, '0.00000000', '0.00000000', '0.00000000', 1, 0, 1, 0, 1, '2009-02-03 21:08:40', '2015-06-04 14:59:10', 0),
2095(48, 'product 20', 'test 1', '', '', '', '', '', 'test 2', 995, 5, 'data/demo/ipod_classic_1.jpg', 8, 1, '100.0000', 0, 9, '2009-02-08', '1.00000000', 1, '0.00000000', '0.00000000', '0.00000000', 2, 1, 1, 0, 1, '2009-02-08 17:21:51', '2011-09-30 01:07:06', 0),
2096(49, 'SAM1', '', '', '', '', '', '', '', 0, 8, 'data/demo/samsung_tab_1.jpg', 0, 1, '199.9900', 0, 9, '2011-04-25', '0.00000000', 1, '0.00000000', '0.00000000', '0.00000000', 1, 1, 1, 1, 1, '2011-04-26 08:57:34', '2011-09-30 01:06:23', 4);
2097
2098-- --------------------------------------------------------
2099
2100--
2101-- Table structure for table `product_attribute`
2102--
2103
2104CREATE TABLE IF NOT EXISTS `product_attribute` (
2105 `product_id` int(11) NOT NULL,
2106 `attribute_id` int(11) NOT NULL,
2107 `language_id` int(11) NOT NULL,
2108 `text` text NOT NULL,
2109 PRIMARY KEY (`product_id`,`attribute_id`,`language_id`)
2110) ENGINE=MyISAM DEFAULT CHARSET=utf8;
2111
2112--
2113-- Dumping data for table `product_attribute`
2114--
2115
2116INSERT INTO `product_attribute` (`product_id`, `attribute_id`, `language_id`, `text`) VALUES
2117(43, 2, 1, '1'),
2118(47, 2, 1, '4'),
2119(43, 4, 1, '8gb'),
2120(42, 3, 1, '100mhz'),
2121(47, 4, 1, '16GB');
2122
2123-- --------------------------------------------------------
2124
2125--
2126-- Table structure for table `product_description`
2127--
2128
2129CREATE TABLE IF NOT EXISTS `product_description` (
2130 `product_id` int(11) NOT NULL,
2131 `language_id` int(11) NOT NULL,
2132 `name` varchar(255) NOT NULL,
2133 `description` text NOT NULL,
2134 `meta_description` varchar(255) NOT NULL,
2135 `meta_keyword` varchar(255) NOT NULL,
2136 `tag` text NOT NULL,
2137 PRIMARY KEY (`product_id`,`language_id`),
2138 KEY `name` (`name`)
2139) ENGINE=MyISAM DEFAULT CHARSET=utf8;
2140
2141--
2142-- Dumping data for table `product_description`
2143--
2144
2145INSERT INTO `product_description` (`product_id`, `language_id`, `name`, `description`, `meta_description`, `meta_keyword`, `tag`) VALUES
2146(35, 1, 'Product 8', '<p>\r\n Product 8</p>\r\n', '', '', ''),
2147(48, 1, 'iPod Classic', '<div class="cpt_product_description ">\r\n <div>\r\n <p>\r\n <strong>More room to move.</strong></p>\r\n <p>\r\n With 80GB or 160GB of storage and up to 40 hours of battery life, the new iPod classic lets you enjoy up to 40,000 songs or up to 200 hours of video or any combination wherever you go.</p>\r\n <p>\r\n <strong>Cover Flow.</strong></p>\r\n <p>\r\n Browse through your music collection by flipping through album art. Select an album to turn it over and see the track list.</p>\r\n <p>\r\n <strong>Enhanced interface.</strong></p>\r\n <p>\r\n Experience a whole new way to browse and view your music and video.</p>\r\n <p>\r\n <strong>Sleeker design.</strong></p>\r\n <p>\r\n Beautiful, durable, and sleeker than ever, iPod classic now features an anodized aluminum and polished stainless steel enclosure with rounded edges.</p>\r\n </div>\r\n</div>\r\n<!-- cpt_container_end -->', '', '', ''),
2148(40, 1, 'iPhone', '<p class="intro">iPhone is a revolutionary new mobile phone that allows you to make a call by simply tapping a name or number in your address book, a favorites list, or a call log. It also automatically syncs all your contacts from a PC, Mac, or Internet service. And it lets you select and listen to voicemail messages in whatever order you want just like email.</p>\r\n', '', '', ''),
2149(28, 1, 'HTC Touch HD', '<p>HTC Touch - in High Definition. Watch music videos and streaming content in awe-inspiring high definition clarity for a mobile experience you never thought possible. Seductively sleek, the HTC Touch HD provides the next generation of mobile functionality, all at a simple touch. Fully integrated with Windows Mobile Professional 6.1, ultrafast 3.5G, GPS, 5MP camera, plus lots more - all delivered on a breathtakingly crisp 3.8" WVGA touchscreen - you can take control of your mobile world with the HTC Touch HD.</p>\r\n\r\n<p><strong>Features</strong></p>\r\n\r\n<ul>\r\n <li>Processor Qualcomm® MSM 7201A™ 528 MHz</li>\r\n <li>Windows Mobile® 6.1 Professional Operating System</li>\r\n <li>Memory: 512 MB ROM, 288 MB RAM</li>\r\n <li>Dimensions: 115 mm x 62.8 mm x 12 mm / 146.4 grams</li>\r\n <li>3.8-inch TFT-LCD flat touch-sensitive screen with 480 x 800 WVGA resolution</li>\r\n <li>HSDPA/WCDMA: Europe/Asia: 900/2100 MHz; Up to 2 Mbps up-link and 7.2 Mbps down-link speeds</li>\r\n <li>Quad-band GSM/GPRS/EDGE: Europe/Asia: 850/900/1800/1900 MHz (Band frequency, HSUPA availability, and data speed are operator dependent.)</li>\r\n <li>Device Control via HTC TouchFLO™ 3D &amp; Touch-sensitive front panel buttons</li>\r\n <li>GPS and A-GPS ready</li>\r\n <li>Bluetooth® 2.0 with Enhanced Data Rate and A2DP for wireless stereo headsets</li>\r\n <li>Wi-Fi®: IEEE 802.11 b/g</li>\r\n <li>HTC ExtUSB™ (11-pin mini-USB 2.0)</li>\r\n <li>5 megapixel color camera with auto focus</li>\r\n <li>VGA CMOS color camera</li>\r\n <li>Built-in 3.5 mm audio jack, microphone, speaker, and FM radio</li>\r\n <li>Ring tone formats: AAC, AAC+, eAAC+, AMR-NB, AMR-WB, QCP, MP3, WMA, WAV</li>\r\n <li>40 polyphonic and standard MIDI format 0 and 1 (SMF)/SP MIDI</li>\r\n <li>Rechargeable Lithium-ion or Lithium-ion polymer 1350 mAh battery</li>\r\n <li>Expansion Slot: microSD™ memory card (SD 2.0 compatible)</li>\r\n <li>AC Adapter Voltage range/frequency: 100 ~ 240V AC, 50/60 Hz DC output: 5V and 1A</li>\r\n <li>Special Features: FM Radio, G-Sensor</li>\r\n</ul>\r\n', '', '', ''),
2150(44, 1, 'MacBook Air', '<div>\r\n MacBook Air is ultrathin, ultraportable, and ultra unlike anything else. But you don&rsquo;t lose inches and pounds overnight. It&rsquo;s the result of rethinking conventions. Of multiple wireless innovations. And of breakthrough design. With MacBook Air, mobile computing suddenly has a new standard.</div>\r\n', '', '', ''),
2151(45, 1, 'MacBook Pro', '<div class="cpt_product_description ">\r\n <div>\r\n <p>\r\n <b>Latest Intel mobile architecture</b></p>\r\n <p>\r\n Powered by the most advanced mobile processors from Intel, the new Core 2 Duo MacBook Pro is over 50% faster than the original Core Duo MacBook Pro and now supports up to 4GB of RAM.</p>\r\n <p>\r\n <b>Leading-edge graphics</b></p>\r\n <p>\r\n The NVIDIA GeForce 8600M GT delivers exceptional graphics processing power. For the ultimate creative canvas, you can even configure the 17-inch model with a 1920-by-1200 resolution display.</p>\r\n <p>\r\n <b>Designed for life on the road</b></p>\r\n <p>\r\n Innovations such as a magnetic power connection and an illuminated keyboard with ambient light sensor put the MacBook Pro in a class by itself.</p>\r\n <p>\r\n <b>Connect. Create. Communicate.</b></p>\r\n <p>\r\n Quickly set up a video conference with the built-in iSight camera. Control presentations and media from up to 30 feet away with the included Apple Remote. Connect to high-bandwidth peripherals with FireWire 800 and DVI.</p>\r\n <p>\r\n <b>Next-generation wireless</b></p>\r\n <p>\r\n Featuring 802.11n wireless technology, the MacBook Pro delivers up to five times the performance and up to twice the range of previous-generation technologies.</p>\r\n </div>\r\n</div>\r\n<!-- cpt_container_end -->', '', '', ''),
2152(29, 1, 'Palm Treo Pro', '<p>Redefine your workday with the Palm Treo Pro smartphone. Perfectly balanced, you can respond to business and personal email, stay on top of appointments and contacts, and use Wi-Fi or GPS when you’re out and about. Then watch a video on YouTube, catch up with news and sports on the web, or listen to a few songs. Balance your work and play the way you like it, with the Palm Treo Pro.</p>\r\n\r\n<p><strong>Features</strong></p>\r\n\r\n<ul>\r\n <li>Windows Mobile® 6.1 Professional Edition</li>\r\n <li>Qualcomm® MSM7201 400MHz Processor</li>\r\n <li>320x320 transflective colour TFT touchscreen</li>\r\n <li>HSDPA/UMTS/EDGE/GPRS/GSM radio</li>\r\n <li>Tri-band UMTS — 850MHz, 1900MHz, 2100MHz</li>\r\n <li>Quad-band GSM — 850/900/1800/1900</li>\r\n <li>802.11b/g with WPA, WPA2, and 801.1x authentication</li>\r\n <li>Built-in GPS</li>\r\n <li>Bluetooth Version: 2.0 + Enhanced Data Rate</li>\r\n <li>256MB storage (100MB user available), 128MB RAM</li>\r\n <li>2.0 megapixel camera, up to 8x digital zoom and video capture</li>\r\n <li>Removable, rechargeable 1500mAh lithium-ion battery</li>\r\n <li>Up to 5.0 hours talk time and up to 250 hours standby</li>\r\n <li>MicroSDHC card expansion (up to 32GB supported)</li>\r\n <li>MicroUSB 2.0 for synchronization and charging</li>\r\n <li>3.5mm stereo headset jack</li>\r\n <li>60mm (W) x 114mm (L) x 13.5mm (D) / 133g</li>\r\n</ul>\r\n', '', '', ''),
2153(36, 1, 'iPod Nano', '<div>\r\n<p><strong>Video in your pocket.</strong></p>\r\n\r\n<p>Its the small iPod with one very big idea: video. The worlds most popular music player now lets you enjoy movies, TV shows, and more on a two-inch display thats 65% brighter than before.</p>\r\n\r\n<p><strong>Cover Flow.</strong></p>\r\n\r\n<p>Browse through your music collection by flipping through album art. Select an album to turn it over and see the track list.<strong>&nbsp;</strong></p>\r\n\r\n<p><strong>Enhanced interface.</strong></p>\r\n\r\n<p>Experience a whole new way to browse and view your music and video.</p>\r\n\r\n<p><strong>Sleek and colorful.</strong></p>\r\n\r\n<p>With an anodized aluminum and polished stainless steel enclosure and a choice of five colors, iPod nano is dressed to impress.</p>\r\n\r\n<p><strong>iTunes.</strong></p>\r\n\r\n<p>Available as a free download, iTunes makes it easy to browse and buy millions of songs, movies, TV shows, audiobooks, and games and download free podcasts all at the iTunes Store. And you can import your own music, manage your whole media library, and sync your iPod or iPhone with ease.</p>\r\n</div>\r\n', '', '', ''),
2154(46, 1, 'Sony VAIO', '<div>Unprecedented power. The next generation of processing technology has arrived. Built into the newest VAIO notebooks lies Intel''s latest, most powerful innovation yet: Intel® Centrino® 2 processor technology. Boasting incredible speed, expanded wireless connectivity, enhanced multimedia support and greater energy efficiency, all the high-performance essentials are seamlessly combined into a single chip.</div>\r\n', '', '', ''),
2155(47, 1, 'HP LP3065', '<p>Stop your co-workers in their tracks with the stunning new 30-inch diagonal HP LP3065 Flat Panel Monitor. This flagship monitor features best-in-class performance and presentation features on a huge wide-aspect screen while letting you work as comfortably as possible - you might even forget you''re at the office</p>\r\n', '', '', ''),
2156(32, 1, 'iPod Touch', '<p>\r\n <strong>Revolutionary multi-touch interface.</strong><br />\r\n iPod touch features the same multi-touch screen technology as iPhone. Pinch to zoom in on a photo. Scroll through your songs and videos with a flick. Flip through your library by album artwork with Cover Flow.</p>\r\n<p>\r\n <strong>Gorgeous 3.5-inch widescreen display.</strong><br />\r\n Watch your movies, TV shows, and photos come alive with bright, vivid color on the 320-by-480-pixel display.</p>\r\n<p>\r\n <strong>Music downloads straight from iTunes.</strong><br />\r\n Shop the iTunes Wi-Fi Music Store from anywhere with Wi-Fi.1 Browse or search to find the music youre looking for, preview it, and buy it with just a tap.</p>\r\n<p>\r\n <strong>Surf the web with Wi-Fi.</strong><br />\r\n Browse the web using Safari and watch YouTube videos on the first iPod with Wi-Fi built in<br />\r\n &nbsp;</p>\r\n', '', '', ''),
2157(41, 1, 'iMac', '<div>Just when you thought iMac had everything, now there´s even more. More powerful Intel Core 2 Duo processors. And more memory standard. Combine this with Mac OS X Leopard and iLife ´08, and it´s more all-in-one than ever. iMac packs amazing performance into a stunningly slim space.</div>\r\n', '', '', ''),
2158(33, 1, 'Samsung SyncMaster 941BW', '<div>\r\n Imagine the advantages of going big without slowing down. The big 19&quot; 941BW monitor combines wide aspect ratio with fast pixel response time, for bigger images, more room to work and crisp motion. In addition, the exclusive MagicBright 2, MagicColor and MagicTune technologies help deliver the ideal image in every situation, while sleek, narrow bezels and adjustable stands deliver style just the way you want it. With the Samsung 941BW widescreen analog/digital LCD monitor, it&#39;s not hard to imagine.</div>\r\n', '', '', ''),
2159(34, 1, 'iPod Shuffle', '<div><strong>Born to be worn.</strong>\r\n<p>Clip on the worlds most wearable music player and take up to 240 songs with you anywhere. Choose from five colors including four new hues to make your musical fashion statement.</p>\r\n\r\n<p><strong>Random meets rhythm.</strong></p>\r\n\r\n<p>With iTunes autofill, iPod shuffle can deliver a new musical experience every time you sync. For more randomness, you can shuffle songs during playback with the slide of a switch.</p>\r\n<strong>Everything is easy.</strong>\r\n\r\n<p>Charge and sync with the included USB dock. Operate the iPod shuffle controls with one hand. Enjoy up to 12 hours straight of skip-free music playback.</p>\r\n</div>\r\n', '', '', ''),
2160(43, 1, 'MacBook', '<div>\r\n <p>\r\n <b>Intel Core 2 Duo processor</b></p>\r\n <p>\r\n Powered by an Intel Core 2 Duo processor at speeds up to 2.16GHz, the new MacBook is the fastest ever.</p>\r\n <p>\r\n <b>1GB memory, larger hard drives</b></p>\r\n <p>\r\n The new MacBook now comes with 1GB of memory standard and larger hard drives for the entire line perfect for running more of your favorite applications and storing growing media collections.</p>\r\n <p>\r\n <b>Sleek, 1.08-inch-thin design</b></p>\r\n <p>\r\n MacBook makes it easy to hit the road thanks to its tough polycarbonate case, built-in wireless technologies, and innovative MagSafe Power Adapter that releases automatically if someone accidentally trips on the cord.</p>\r\n <p>\r\n <b>Built-in iSight camera</b></p>\r\n <p>\r\n Right out of the box, you can have a video chat with friends or family,2 record a video at your desk, or take fun pictures with Photo Booth</p>\r\n</div>\r\n', '', '', ''),
2161(31, 1, 'Nikon D300', '<div class="cpt_product_description ">\r\n<div>Engineered with pro-level features and performance, the 12.3-effective-megapixel D300 combines brand new technologies with advanced features inherited from Nikon''s newly announced D3 professional digital SLR camera to offer serious photographers remarkable performance combined with agility.<br />\r\n<br />\r\nSimilar to the D3, the D300 features Nikon''s exclusive EXPEED Image Processing System that is central to driving the speed and processing power needed for many of the camera''s new features. The D300 features a new 51-point autofocus system with Nikon''s 3D Focus Tracking feature and two new LiveView shooting modes that allow users to frame a photograph using the camera''s high-resolution LCD monitor. The D300 shares a similar Scene Recognition System as is found in the D3; it promises to greatly enhance the accuracy of autofocus, autoexposure, and auto white balance by recognizing the subject or scene being photographed and applying this information to the calculations for the three functions.<br />\r\n<br />\r\nThe D300 reacts with lightning speed, powering up in a mere 0.13 seconds and shooting with an imperceptible 45-millisecond shutter release lag time. The D300 is capable of shooting at a rapid six frames per second and can go as fast as eight frames per second when using the optional MB-D10 multi-power battery pack. In continuous bursts, the D300 can shoot up to 100 shots at full 12.3-megapixel resolution. (NORMAL-LARGE image setting, using a SanDisk Extreme IV 1GB CompactFlash card.)<br />\r\n<br />\r\nThe D300 incorporates a range of innovative technologies and features that will significantly improve the accuracy, control, and performance photographers can get from their equipment. Its new Scene Recognition System advances the use of Nikon''s acclaimed 1,005-segment sensor to recognize colors and light patterns that help the camera determine the subject and the type of scene being photographed before a picture is taken. This information is used to improve the accuracy of autofocus, autoexposure, and auto white balance functions in the D300. For example, the camera can track moving subjects better and by identifying them, it can also automatically select focus points faster and with greater accuracy. It can also analyze highlights and more accurately determine exposure, as well as infer light sources to deliver more accurate white balance detection.</div>\r\n</div>\r\n<!-- cpt_container_end -->', '', '', ''),
2162(49, 1, 'Samsung Galaxy Tab 10.1', '<p>\r\n Samsung Galaxy Tab 10.1, is the world&rsquo;s thinnest tablet, measuring 8.6 mm thickness, running with Android 3.0 Honeycomb OS on a 1GHz dual-core Tegra 2 processor, similar to its younger brother Samsung Galaxy Tab 8.9.</p>\r\n<p>\r\n Samsung Galaxy Tab 10.1 gives pure Android 3.0 experience, adding its new TouchWiz UX or TouchWiz 4.0 &ndash; includes a live panel, which lets you to customize with different content, such as your pictures, bookmarks, and social feeds, sporting a 10.1 inches WXGA capacitive touch screen with 1280 x 800 pixels of resolution, equipped with 3 megapixel rear camera with LED flash and a 2 megapixel front camera, HSPA+ connectivity up to 21Mbps, 720p HD video recording capability, 1080p HD playback, DLNA support, Bluetooth 2.1, USB 2.0, gyroscope, Wi-Fi 802.11 a/b/g/n, micro-SD slot, 3.5mm headphone jack, and SIM slot, including the Samsung Stick &ndash; a Bluetooth microphone that can be carried in a pocket like a pen and sound dock with powered subwoofer.</p>\r\n<p>\r\n Samsung Galaxy Tab 10.1 will come in 16GB / 32GB / 64GB verities and pre-loaded with Social Hub, Reader&rsquo;s Hub, Music Hub and Samsung Mini Apps Tray &ndash; which gives you access to more commonly used apps to help ease multitasking and it is capable of Adobe Flash Player 10.2, powered by 6860mAh battery that gives you 10hours of video-playback time.&nbsp;&auml;&ouml;</p>\r\n', '', '', ''),
2163(42, 1, 'Apple Cinema 30"', '<p><font face="helvetica,geneva,arial" size="2"><font face="Helvetica" size="2">The 30-inch Apple Cinema HD Display delivers an amazing 2560 x 1600 pixel resolution. Designed specifically for the creative professional, this display provides more space for easier access to all the tools and palettes needed to edit, format and composite your work. Combine this display with a Mac Pro, MacBook Pro, or PowerMac G5 and there''s no limit to what you can achieve. </font><br />\r\n<br />\r\n<font face="Helvetica" size="2">The Cinema HD features an active-matrix liquid crystal display that produces flicker-free images that deliver twice the brightness, twice the sharpness and twice the contrast ratio of a typical CRT display. Unlike other flat panels, it''s designed with a pure digital interface to deliver distortion-free images that never need adjusting. With over 4 million digital pixels, the display is uniquely suited for scientific and technical applications such as visualizing molecular structures or analyzing geological data. </font><br />\r\n<br />\r\n<font face="Helvetica" size="2">Offering accurate, brilliant color performance, the Cinema HD delivers up to 16.7 million colors across a wide gamut allowing you to see subtle nuances between colors from soft pastels to rich jewel tones. A wide viewing angle ensures uniform color from edge to edge. Apple''s ColorSync technology allows you to create custom profiles to maintain consistent color onscreen and in print. The result: You can confidently use this display in all your color-critical applications. </font><br />\r\n<br />\r\n<font face="Helvetica" size="2">Housed in a new aluminum design, the display has a very thin bezel that enhances visual accuracy. Each display features two FireWire 400 ports and two USB 2.0 ports, making attachment of desktop peripherals, such as iSight, iPod, digital and still cameras, hard drives, printers and scanners, even more accessible and convenient. Taking advantage of the much thinner and lighter footprint of an LCD, the new displays support the VESA (Video Electronics Standards Association) mounting interface standard. Customers with the optional Cinema Display VESA Mount Adapter kit gain the flexibility to mount their display in locations most appropriate for their work environment. </font><br />\r\n<br />\r\n<font face="Helvetica" size="2">The Cinema HD features a single cable design with elegant breakout for the USB 2.0, FireWire 400 and a pure digital connection using the industry standard Digital Video Interface (DVI) interface. The DVI connection allows for a direct pure-digital connection.</font></font></p>\r\n\r\n<h3>Features:</h3>\r\n\r\n<p>Unrivaled display performance</p>\r\n\r\n<ul>\r\n <li>30-inch (viewable) active-matrix liquid crystal display provides breathtaking image quality and vivid, richly saturated color.</li>\r\n <li>Support for 2560-by-1600 pixel resolution for display of high definition still and video imagery.</li>\r\n <li>Wide-format design for simultaneous display of two full pages of text and graphics.</li>\r\n <li>Industry standard DVI connector for direct attachment to Mac- and Windows-based desktops and notebooks</li>\r\n <li>Incredibly wide (170 degree) horizontal and vertical viewing angle for maximum visibility and color performance.</li>\r\n <li>Lightning-fast pixel response for full-motion digital video playback.</li>\r\n <li>Support for 16.7 million saturated colors, for use in all graphics-intensive applications.</li>\r\n</ul>\r\n\r\n<p>Simple setup and operation</p>\r\n\r\n<ul>\r\n <li>Single cable with elegant breakout for connection to DVI, USB and FireWire ports</li>\r\n <li>Built-in two-port USB 2.0 hub for easy connection of desktop peripheral devices.</li>\r\n <li>Two FireWire 400 ports to support iSight and other desktop peripherals</li>\r\n</ul>\r\n\r\n<p>Sleek, elegant design</p>\r\n\r\n<ul>\r\n <li>Huge virtual workspace, very small footprint.</li>\r\n <li>Narrow Bezel design to minimize visual impact of using dual displays</li>\r\n <li>Unique hinge design for effortless adjustment</li>\r\n <li>Support for VESA mounting solutions (Apple Cinema Display VESA Mount Adapter sold separately)</li>\r\n</ul>\r\n\r\n<h3>Technical specifications</h3>\r\n\r\n<p><b>Screen size (diagonal viewable image size)</b></p>\r\n\r\n<ul>\r\n <li>Apple Cinema HD Display: 30 inches (29.7-inch viewable)</li>\r\n</ul>\r\n\r\n<p><b>Screen type</b></p>\r\n\r\n<ul>\r\n <li>Thin film transistor (TFT) active-matrix liquid crystal display (AMLCD)</li>\r\n</ul>\r\n\r\n<p><b>Resolutions</b></p>\r\n\r\n<ul>\r\n <li>2560 x 1600 pixels (optimum resolution)</li>\r\n <li>2048 x 1280</li>\r\n <li>1920 x 1200</li>\r\n <li>1280 x 800</li>\r\n <li>1024 x 640</li>\r\n</ul>\r\n\r\n<p><b>Display colors (maximum)</b></p>\r\n\r\n<ul>\r\n <li>16.7 million</li>\r\n</ul>\r\n\r\n<p><b>Viewing angle (typical)</b></p>\r\n\r\n<ul>\r\n <li>170° horizontal; 170° vertical</li>\r\n</ul>\r\n\r\n<p><b>Brightness (typical)</b></p>\r\n\r\n<ul>\r\n <li>30-inch Cinema HD Display: 400 cd/m2</li>\r\n</ul>\r\n\r\n<p><b>Contrast ratio (typical)</b></p>\r\n\r\n<ul>\r\n <li>700:1</li>\r\n</ul>\r\n\r\n<p><b>Response time (typical)</b></p>\r\n\r\n<ul>\r\n <li>16 ms</li>\r\n</ul>\r\n\r\n<p><b>Pixel pitch</b></p>\r\n\r\n<ul>\r\n <li>30-inch Cinema HD Display: 0.250 mm</li>\r\n</ul>\r\n\r\n<p><b>Screen treatment</b></p>\r\n\r\n<ul>\r\n <li>Antiglare hardcoat</li>\r\n</ul>\r\n\r\n<p><b>User controls (hardware and software)</b></p>\r\n\r\n<ul>\r\n <li>Display Power,</li>\r\n <li>System sleep, wake</li>\r\n <li>Brightness</li>\r\n <li>Monitor tilt</li>\r\n</ul>\r\n\r\n<p><b>Connectors and cables</b><br />\r\nCable</p>\r\n\r\n<ul>\r\n <li>DVI (Digital Visual Interface)</li>\r\n <li>FireWire 400</li>\r\n <li>USB 2.0</li>\r\n <li>DC power (24 V)</li>\r\n</ul>\r\n\r\n<p>Connectors</p>\r\n\r\n<ul>\r\n <li>Two-port, self-powered USB 2.0 hub</li>\r\n <li>Two FireWire 400 ports</li>\r\n <li>Kensington security port</li>\r\n</ul>\r\n\r\n<p><b>VESA mount adapter</b><br />\r\nRequires optional Cinema Display VESA Mount Adapter (M9649G/A)</p>\r\n\r\n<ul>\r\n <li>Compatible with VESA FDMI (MIS-D, 100, C) compliant mounting solutions</li>\r\n</ul>\r\n\r\n<p><b>Electrical requirements</b></p>\r\n\r\n<ul>\r\n <li>Input voltage: 100-240 VAC 50-60Hz</li>\r\n <li>Maximum power when operating: 150W</li>\r\n <li>Energy saver mode: 3W or less</li>\r\n</ul>\r\n\r\n<p><b>Environmental requirements</b></p>\r\n\r\n<ul>\r\n <li>Operating temperature: 50° to 95° F (10° to 35° C)</li>\r\n <li>Storage temperature: -40° to 116° F (-40° to 47° C)</li>\r\n <li>Operating humidity: 20% to 80% noncondensing</li>\r\n <li>Maximum operating altitude: 10,000 feet</li>\r\n</ul>\r\n\r\n<p><b>Agency approvals</b></p>\r\n\r\n<ul>\r\n <li>FCC Part 15 Class B</li>\r\n <li>EN55022 Class B</li>\r\n <li>EN55024</li>\r\n <li>VCCI Class B</li>\r\n <li>AS/NZS 3548 Class B</li>\r\n <li>CNS 13438 Class B</li>\r\n <li>ICES-003 Class B</li>\r\n <li>ISO 13406 part 2</li>\r\n <li>MPR II</li>\r\n <li>IEC 60950</li>\r\n <li>UL 60950</li>\r\n <li>CSA 60950</li>\r\n <li>EN60950</li>\r\n <li>ENERGY STAR</li>\r\n <li>TCO ''03</li>\r\n</ul>\r\n\r\n<p><b>Size and weight</b><br />\r\n30-inch Apple Cinema HD Display</p>\r\n\r\n<ul>\r\n <li>Height: 21.3 inches (54.3 cm)</li>\r\n <li>Width: 27.2 inches (68.8 cm)</li>\r\n <li>Depth: 8.46 inches (21.5 cm)</li>\r\n <li>Weight: 27.5 pounds (12.5 kg)</li>\r\n</ul>\r\n\r\n<p><b>System Requirements</b></p>\r\n\r\n<ul>\r\n <li>Mac Pro, all graphic options</li>\r\n <li>MacBook Pro</li>\r\n <li>Power Mac G5 (PCI-X) with ATI Radeon 9650 or better or NVIDIA GeForce 6800 GT DDL or better</li>\r\n <li>Power Mac G5 (PCI Express), all graphics options</li>\r\n <li>PowerBook G4 with dual-link DVI support</li>\r\n <li>Windows PC and graphics card that supports DVI ports with dual-link digital bandwidth and VESA DDC standard for plug-and-play setup</li>\r\n</ul>\r\n', '', '', ''),
2164(30, 1, 'Canon EOS 5D', '<p>Canon''s press material for the EOS 5D states that it ''defines (a) new D-SLR category'', while we''re not typically too concerned with marketing talk this particular statement is clearly pretty accurate. The EOS 5D is unlike any previous digital SLR in that it combines a full-frame (35 mm sized) high resolution sensor (12.8 megapixels) with a relatively compact body (slightly larger than the EOS 20D, although in your hand it feels noticeably ''chunkier''). The EOS 5D is aimed to slot in between the EOS 20D and the EOS-1D professional digital SLR''s, an important difference when compared to the latter is that the EOS 5D doesn''t have any environmental seals. While Canon don''t specifically refer to the EOS 5D as a ''professional'' digital SLR it will have obvious appeal to professionals who want a high quality digital SLR in a body lighter than the EOS-1D. It will also no doubt appeal to current EOS 20D owners (although lets hope they''ve not bought too many EF-S lenses...) äë</p>\r\n', '', '', '');
2165
2166-- --------------------------------------------------------
2167
2168--
2169-- Table structure for table `product_discount`
2170--
2171
2172CREATE TABLE IF NOT EXISTS `product_discount` (
2173 `product_discount_id` int(11) NOT NULL AUTO_INCREMENT,
2174 `product_id` int(11) NOT NULL,
2175 `customer_group_id` int(11) NOT NULL,
2176 `quantity` int(4) NOT NULL DEFAULT '0',
2177 `priority` int(5) NOT NULL DEFAULT '1',
2178 `price` decimal(15,4) NOT NULL DEFAULT '0.0000',
2179 `date_start` date NOT NULL DEFAULT '0000-00-00',
2180 `date_end` date NOT NULL DEFAULT '0000-00-00',
2181 PRIMARY KEY (`product_discount_id`),
2182 KEY `product_id` (`product_id`)
2183) ENGINE=MyISAM DEFAULT CHARSET=utf8 AUTO_INCREMENT=444 ;
2184
2185--
2186-- Dumping data for table `product_discount`
2187--
2188
2189INSERT INTO `product_discount` (`product_discount_id`, `product_id`, `customer_group_id`, `quantity`, `priority`, `price`, `date_start`, `date_end`) VALUES
2190(443, 42, 1, 30, 1, '66.0000', '0000-00-00', '0000-00-00'),
2191(442, 42, 1, 20, 1, '77.0000', '0000-00-00', '0000-00-00'),
2192(441, 42, 1, 10, 1, '88.0000', '0000-00-00', '0000-00-00');
2193
2194-- --------------------------------------------------------
2195
2196--
2197-- Table structure for table `product_filter`
2198--
2199
2200CREATE TABLE IF NOT EXISTS `product_filter` (
2201 `product_id` int(11) NOT NULL,
2202 `filter_id` int(11) NOT NULL,
2203 PRIMARY KEY (`product_id`,`filter_id`)
2204) ENGINE=MyISAM DEFAULT CHARSET=utf8;
2205
2206-- --------------------------------------------------------
2207
2208--
2209-- Table structure for table `product_image`
2210--
2211
2212CREATE TABLE IF NOT EXISTS `product_image` (
2213 `product_image_id` int(11) NOT NULL AUTO_INCREMENT,
2214 `product_id` int(11) NOT NULL,
2215 `image` varchar(255) DEFAULT NULL,
2216 `sort_order` int(3) NOT NULL DEFAULT '0',
2217 PRIMARY KEY (`product_image_id`)
2218) ENGINE=MyISAM DEFAULT CHARSET=utf8 AUTO_INCREMENT=2390 ;
2219
2220--
2221-- Dumping data for table `product_image`
2222--
2223
2224INSERT INTO `product_image` (`product_image_id`, `product_id`, `image`, `sort_order`) VALUES
2225(2389, 30, 'data/demo/canon_eos_5d_2.jpg', 0),
2226(2378, 47, 'data/demo/hp_2.jpg', 0),
2227(2380, 28, 'data/demo/htc_touch_hd_3.jpg', 0),
2228(2382, 41, 'data/demo/imac_2.jpg', 0),
2229(2387, 40, 'data/demo/iphone_4.jpg', 0),
2230(2359, 36, 'data/demo/ipod_nano_3.jpg', 0),
2231(2358, 36, 'data/demo/ipod_nano_2.jpg', 0),
2232(2355, 34, 'data/demo/ipod_shuffle_3.jpg', 0),
2233(2354, 34, 'data/demo/ipod_shuffle_2.jpg', 0),
2234(2011, 32, 'data/demo/ipod_touch_7.jpg', 0),
2235(2010, 32, 'data/demo/ipod_touch_6.jpg', 0),
2236(2009, 32, 'data/demo/ipod_touch_5.jpg', 0),
2237(1971, 43, 'data/demo/macbook_5.jpg', 0),
2238(1970, 43, 'data/demo/macbook_4.jpg', 0),
2239(1974, 44, 'data/demo/macbook_air_4.jpg', 0),
2240(1973, 44, 'data/demo/macbook_air_2.jpg', 0),
2241(1977, 45, 'data/demo/macbook_pro_2.jpg', 0),
2242(1976, 45, 'data/demo/macbook_pro_3.jpg', 0),
2243(2363, 31, 'data/demo/nikon_d300_5.jpg', 0),
2244(2362, 31, 'data/demo/nikon_d300_4.jpg', 0),
2245(2369, 29, 'data/demo/palm_treo_pro_2.jpg', 0),
2246(2367, 46, 'data/demo/sony_vaio_3.jpg', 0),
2247(2366, 46, 'data/demo/sony_vaio_2.jpg', 0),
2248(1991, 48, 'data/demo/ipod_classic_4.jpg', 0),
2249(1990, 48, 'data/demo/ipod_classic_3.jpg', 0),
2250(2386, 40, 'data/demo/iphone_3.jpg', 0),
2251(2385, 40, 'data/demo/iphone_5.jpg', 0),
2252(2388, 30, 'data/demo/canon_eos_5d_3.jpg', 0),
2253(2377, 47, 'data/demo/hp_3.jpg', 0),
2254(2379, 28, 'data/demo/htc_touch_hd_2.jpg', 0),
2255(2381, 41, 'data/demo/imac_3.jpg', 0),
2256(2384, 40, 'data/demo/iphone_2.jpg', 0),
2257(2383, 40, 'data/demo/iphone_6.jpg', 0),
2258(1989, 48, 'data/demo/ipod_classic_2.jpg', 0),
2259(2357, 36, 'data/demo/ipod_nano_4.jpg', 0),
2260(2356, 36, 'data/demo/ipod_nano_5.jpg', 0),
2261(2353, 34, 'data/demo/ipod_shuffle_4.jpg', 0),
2262(2352, 34, 'data/demo/ipod_shuffle_5.jpg', 0),
2263(2008, 32, 'data/demo/ipod_touch_2.jpg', 0),
2264(2007, 32, 'data/demo/ipod_touch_3.jpg', 0),
2265(2006, 32, 'data/demo/ipod_touch_4.jpg', 0),
2266(1969, 43, 'data/demo/macbook_2.jpg', 0),
2267(1968, 43, 'data/demo/macbook_3.jpg', 0),
2268(1972, 44, 'data/demo/macbook_air_3.jpg', 0),
2269(1975, 45, 'data/demo/macbook_pro_4.jpg', 0),
2270(2361, 31, 'data/demo/nikon_d300_2.jpg', 0),
2271(2360, 31, 'data/demo/nikon_d300_3.jpg', 0),
2272(2368, 29, 'data/demo/palm_treo_pro_3.jpg', 0),
2273(2365, 46, 'data/demo/sony_vaio_4.jpg', 0),
2274(2364, 46, 'data/demo/sony_vaio_5.jpg', 0),
2275(2327, 49, 'data/demo/samsung_tab_7.jpg', 0),
2276(2326, 49, 'data/demo/samsung_tab_6.jpg', 0),
2277(2325, 49, 'data/demo/samsung_tab_5.jpg', 0),
2278(2324, 49, 'data/demo/samsung_tab_4.jpg', 0),
2279(2323, 49, 'data/demo/samsung_tab_3.jpg', 0),
2280(2322, 49, 'data/demo/samsung_tab_2.jpg', 0),
2281(2373, 42, 'data/demo/canon_eos_5d_1.jpg', 0),
2282(2372, 42, 'data/demo/compaq_presario.jpg', 0),
2283(2371, 42, 'data/demo/hp_1.jpg', 0),
2284(2370, 42, 'data/demo/canon_logo.jpg', 0),
2285(2374, 42, 'data/demo/canon_eos_5d_2.jpg', 0);
2286
2287-- --------------------------------------------------------
2288
2289--
2290-- Table structure for table `product_option`
2291--
2292
2293CREATE TABLE IF NOT EXISTS `product_option` (
2294 `product_option_id` int(11) NOT NULL AUTO_INCREMENT,
2295 `product_id` int(11) NOT NULL,
2296 `option_id` int(11) NOT NULL,
2297 `option_value` text NOT NULL,
2298 `required` tinyint(1) NOT NULL,
2299 PRIMARY KEY (`product_option_id`)
2300) ENGINE=MyISAM DEFAULT CHARSET=utf8 AUTO_INCREMENT=229 ;
2301
2302--
2303-- Dumping data for table `product_option`
2304--
2305
2306INSERT INTO `product_option` (`product_option_id`, `product_id`, `option_id`, `option_value`, `required`) VALUES
2307(224, 35, 11, '', 1),
2308(225, 47, 12, '2011-04-22', 1),
2309(222, 42, 7, '', 1),
2310(219, 42, 8, '2011-02-20', 1),
2311(208, 42, 4, 'test', 1),
2312(218, 42, 1, '', 1),
2313(209, 42, 6, '', 1),
2314(217, 42, 5, '', 1),
2315(223, 42, 2, '', 1),
2316(227, 30, 13, '', 1),
2317(221, 42, 9, '22:25', 1),
2318(220, 42, 10, '2011-02-20 22:25', 1),
2319(228, 30, 14, '', 1);
2320
2321-- --------------------------------------------------------
2322
2323--
2324-- Table structure for table `product_option_value`
2325--
2326
2327CREATE TABLE IF NOT EXISTS `product_option_value` (
2328 `product_option_value_id` int(11) NOT NULL AUTO_INCREMENT,
2329 `product_option_id` int(11) NOT NULL,
2330 `product_id` int(11) NOT NULL,
2331 `option_id` int(11) NOT NULL,
2332 `option_value_id` int(11) NOT NULL,
2333 `quantity` int(3) NOT NULL,
2334 `subtract` tinyint(1) NOT NULL,
2335 `price` decimal(15,4) NOT NULL,
2336 `price_prefix` varchar(1) NOT NULL,
2337 `points` int(8) NOT NULL,
2338 `points_prefix` varchar(1) NOT NULL,
2339 `weight` decimal(15,8) NOT NULL,
2340 `weight_prefix` varchar(1) NOT NULL,
2341 PRIMARY KEY (`product_option_value_id`)
2342) ENGINE=MyISAM DEFAULT CHARSET=utf8 AUTO_INCREMENT=29 ;
2343
2344--
2345-- Dumping data for table `product_option_value`
2346--
2347
2348INSERT INTO `product_option_value` (`product_option_value_id`, `product_option_id`, `product_id`, `option_id`, `option_value_id`, `quantity`, `subtract`, `price`, `price_prefix`, `points`, `points_prefix`, `weight`, `weight_prefix`) VALUES
2349(5, 218, 42, 1, 32, 96, 1, '10.0000', '+', 1, '+', '10.00000000', '+'),
2350(7, 218, 42, 1, 43, 300, 1, '30.0000', '+', 3, '+', '30.00000000', '+'),
2351(6, 218, 42, 1, 31, 146, 1, '20.0000', '+', 2, '-', '20.00000000', '+'),
2352(3, 217, 42, 5, 40, 300, 0, '3.0000', '+', 0, '+', '3.00000000', '+'),
2353(2, 217, 42, 5, 42, 200, 1, '2.0000', '+', 0, '+', '2.00000000', '+'),
2354(4, 217, 42, 5, 39, 92, 1, '4.0000', '+', 0, '+', '4.00000000', '+'),
2355(1, 217, 42, 5, 41, 100, 0, '1.0000', '+', 0, '+', '1.00000000', '+'),
2356(11, 223, 42, 2, 45, 3998, 1, '40.0000', '+', 0, '+', '40.00000000', '+'),
2357(9, 223, 42, 2, 24, 194, 1, '20.0000', '+', 0, '+', '20.00000000', '+'),
2358(10, 223, 42, 2, 44, 2696, 1, '30.0000', '+', 0, '+', '30.00000000', '+'),
2359(8, 223, 42, 2, 23, 48, 1, '10.0000', '+', 0, '+', '10.00000000', '+'),
2360(12, 224, 35, 11, 46, 0, 1, '5.0000', '+', 0, '+', '0.00000000', '+'),
2361(13, 224, 35, 11, 47, 10, 1, '10.0000', '+', 0, '+', '0.00000000', '+'),
2362(14, 224, 35, 11, 48, 15, 1, '15.0000', '+', 0, '+', '0.00000000', '+'),
2363(18, 227, 30, 13, 53, 5, 1, '0.0000', '+', 0, '+', '0.00000000', '+'),
2364(17, 227, 30, 13, 50, 10, 1, '0.0000', '+', 0, '+', '0.00000000', '+'),
2365(19, 227, 30, 13, 51, 5, 1, '0.0000', '+', 0, '+', '0.00000000', '+'),
2366(20, 227, 30, 13, 54, 5, 1, '0.0000', '+', 0, '+', '0.00000000', '+'),
2367(21, 227, 30, 13, 49, 5, 1, '0.0000', '+', 0, '+', '0.00000000', '+'),
2368(22, 227, 30, 13, 52, 5, 1, '0.0000', '+', 0, '+', '0.00000000', '+'),
2369(23, 228, 30, 14, 56, 5, 1, '0.0000', '+', 0, '+', '0.00000000', '+'),
2370(24, 228, 30, 14, 57, 5, 1, '0.0000', '+', 0, '+', '0.00000000', '+'),
2371(25, 228, 30, 14, 60, 5, 1, '0.0000', '+', 0, '+', '0.00000000', '+'),
2372(26, 228, 30, 14, 55, 5, 1, '0.0000', '+', 0, '+', '0.00000000', '+'),
2373(27, 228, 30, 14, 59, 5, 1, '0.0000', '+', 0, '+', '0.00000000', '+'),
2374(28, 228, 30, 14, 58, 5, 1, '0.0000', '+', 0, '+', '0.00000000', '+');
2375
2376-- --------------------------------------------------------
2377
2378--
2379-- Table structure for table `product_profile`
2380--
2381
2382CREATE TABLE IF NOT EXISTS `product_profile` (
2383 `product_id` int(11) NOT NULL,
2384 `profile_id` int(11) NOT NULL,
2385 `customer_group_id` int(11) NOT NULL,
2386 PRIMARY KEY (`product_id`,`profile_id`,`customer_group_id`)
2387) ENGINE=MyISAM DEFAULT CHARSET=utf8;
2388
2389-- --------------------------------------------------------
2390
2391--
2392-- Table structure for table `product_recurring`
2393--
2394
2395CREATE TABLE IF NOT EXISTS `product_recurring` (
2396 `product_id` int(11) NOT NULL,
2397 `store_id` int(11) NOT NULL,
2398 PRIMARY KEY (`product_id`,`store_id`)
2399) ENGINE=MyISAM DEFAULT CHARSET=utf8;
2400
2401-- --------------------------------------------------------
2402
2403--
2404-- Table structure for table `product_related`
2405--
2406
2407CREATE TABLE IF NOT EXISTS `product_related` (
2408 `product_id` int(11) NOT NULL,
2409 `related_id` int(11) NOT NULL,
2410 PRIMARY KEY (`product_id`,`related_id`)
2411) ENGINE=MyISAM DEFAULT CHARSET=utf8;
2412
2413--
2414-- Dumping data for table `product_related`
2415--
2416
2417INSERT INTO `product_related` (`product_id`, `related_id`) VALUES
2418(40, 42),
2419(41, 42),
2420(42, 40),
2421(42, 41);
2422
2423-- --------------------------------------------------------
2424
2425--
2426-- Table structure for table `product_reward`
2427--
2428
2429CREATE TABLE IF NOT EXISTS `product_reward` (
2430 `product_reward_id` int(11) NOT NULL AUTO_INCREMENT,
2431 `product_id` int(11) NOT NULL DEFAULT '0',
2432 `customer_group_id` int(11) NOT NULL DEFAULT '0',
2433 `points` int(8) NOT NULL DEFAULT '0',
2434 PRIMARY KEY (`product_reward_id`)
2435) ENGINE=MyISAM DEFAULT CHARSET=utf8 AUTO_INCREMENT=558 ;
2436
2437--
2438-- Dumping data for table `product_reward`
2439--
2440
2441INSERT INTO `product_reward` (`product_reward_id`, `product_id`, `customer_group_id`, `points`) VALUES
2442(551, 42, 1, 100),
2443(553, 47, 1, 300),
2444(554, 28, 1, 400),
2445(329, 43, 1, 600),
2446(550, 29, 1, 0),
2447(343, 48, 1, 0),
2448(556, 40, 1, 0),
2449(557, 30, 1, 200),
2450(331, 44, 1, 700),
2451(333, 45, 1, 800),
2452(548, 31, 1, 0),
2453(425, 35, 1, 0),
2454(345, 33, 1, 0),
2455(549, 46, 1, 0),
2456(555, 41, 1, 0),
2457(547, 36, 1, 0),
2458(546, 34, 1, 0),
2459(355, 32, 1, 0),
2460(521, 49, 1, 1000);
2461
2462-- --------------------------------------------------------
2463
2464--
2465-- Table structure for table `product_special`
2466--
2467
2468CREATE TABLE IF NOT EXISTS `product_special` (
2469 `product_special_id` int(11) NOT NULL AUTO_INCREMENT,
2470 `product_id` int(11) NOT NULL,
2471 `customer_group_id` int(11) NOT NULL,
2472 `priority` int(5) NOT NULL DEFAULT '1',
2473 `price` decimal(15,4) NOT NULL DEFAULT '0.0000',
2474 `date_start` date NOT NULL DEFAULT '0000-00-00',
2475 `date_end` date NOT NULL DEFAULT '0000-00-00',
2476 PRIMARY KEY (`product_special_id`),
2477 KEY `product_id` (`product_id`)
2478) ENGINE=MyISAM DEFAULT CHARSET=utf8 AUTO_INCREMENT=445 ;
2479
2480--
2481-- Dumping data for table `product_special`
2482--
2483
2484INSERT INTO `product_special` (`product_special_id`, `product_id`, `customer_group_id`, `priority`, `price`, `date_start`, `date_end`) VALUES
2485(440, 42, 1, 1, '90.0000', '0000-00-00', '0000-00-00'),
2486(444, 30, 1, 2, '90.0000', '0000-00-00', '0000-00-00'),
2487(443, 30, 1, 1, '80.0000', '0000-00-00', '0000-00-00');
2488
2489-- --------------------------------------------------------
2490
2491--
2492-- Table structure for table `product_to_category`
2493--
2494
2495CREATE TABLE IF NOT EXISTS `product_to_category` (
2496 `product_id` int(11) NOT NULL,
2497 `category_id` int(11) NOT NULL,
2498 PRIMARY KEY (`product_id`,`category_id`)
2499) ENGINE=MyISAM DEFAULT CHARSET=utf8;
2500
2501--
2502-- Dumping data for table `product_to_category`
2503--
2504
2505INSERT INTO `product_to_category` (`product_id`, `category_id`) VALUES
2506(28, 17),
2507(28, 18),
2508(28, 20),
2509(28, 28),
2510(28, 29),
2511(28, 30),
2512(28, 35),
2513(28, 57),
2514(29, 20),
2515(29, 27),
2516(30, 20),
2517(30, 25),
2518(30, 27),
2519(30, 28),
2520(30, 29),
2521(30, 30),
2522(30, 33),
2523(30, 35),
2524(30, 36),
2525(30, 46),
2526(31, 18),
2527(31, 26),
2528(31, 27),
2529(31, 33),
2530(31, 46),
2531(33, 20),
2532(33, 28),
2533(34, 18),
2534(34, 26),
2535(34, 27),
2536(35, 20),
2537(36, 18),
2538(36, 26),
2539(36, 27),
2540(36, 46),
2541(40, 18),
2542(40, 20),
2543(40, 28),
2544(40, 29),
2545(40, 31),
2546(41, 18),
2547(41, 27),
2548(41, 31),
2549(41, 35),
2550(41, 57),
2551(42, 20),
2552(42, 25),
2553(42, 26),
2554(42, 27),
2555(42, 28),
2556(42, 36),
2557(42, 45),
2558(42, 46),
2559(43, 18),
2560(43, 20),
2561(44, 18),
2562(44, 20),
2563(45, 18),
2564(46, 18),
2565(46, 20),
2566(46, 27),
2567(47, 18),
2568(47, 20),
2569(47, 26),
2570(47, 28),
2571(47, 29),
2572(47, 30),
2573(47, 35),
2574(47, 45),
2575(48, 20),
2576(49, 57);
2577
2578-- --------------------------------------------------------
2579
2580--
2581-- Table structure for table `product_to_download`
2582--
2583
2584CREATE TABLE IF NOT EXISTS `product_to_download` (
2585 `product_id` int(11) NOT NULL,
2586 `download_id` int(11) NOT NULL,
2587 PRIMARY KEY (`product_id`,`download_id`)
2588) ENGINE=MyISAM DEFAULT CHARSET=utf8;
2589
2590-- --------------------------------------------------------
2591
2592--
2593-- Table structure for table `product_to_layout`
2594--
2595
2596CREATE TABLE IF NOT EXISTS `product_to_layout` (
2597 `product_id` int(11) NOT NULL,
2598 `store_id` int(11) NOT NULL,
2599 `layout_id` int(11) NOT NULL,
2600 PRIMARY KEY (`product_id`,`store_id`)
2601) ENGINE=MyISAM DEFAULT CHARSET=utf8;
2602
2603-- --------------------------------------------------------
2604
2605--
2606-- Table structure for table `product_to_store`
2607--
2608
2609CREATE TABLE IF NOT EXISTS `product_to_store` (
2610 `product_id` int(11) NOT NULL,
2611 `store_id` int(11) NOT NULL DEFAULT '0',
2612 PRIMARY KEY (`product_id`,`store_id`)
2613) ENGINE=MyISAM DEFAULT CHARSET=utf8;
2614
2615--
2616-- Dumping data for table `product_to_store`
2617--
2618
2619INSERT INTO `product_to_store` (`product_id`, `store_id`) VALUES
2620(28, 0),
2621(29, 0),
2622(30, 0),
2623(31, 0),
2624(32, 0),
2625(33, 0),
2626(34, 0),
2627(35, 0),
2628(36, 0),
2629(40, 0),
2630(41, 0),
2631(42, 0),
2632(43, 0),
2633(44, 0),
2634(45, 0),
2635(46, 0),
2636(47, 0),
2637(48, 0),
2638(49, 0);
2639
2640-- --------------------------------------------------------
2641
2642--
2643-- Table structure for table `profile`
2644--
2645
2646CREATE TABLE IF NOT EXISTS `profile` (
2647 `profile_id` int(11) NOT NULL AUTO_INCREMENT,
2648 `sort_order` int(11) NOT NULL,
2649 `status` tinyint(4) NOT NULL,
2650 `price` decimal(10,4) NOT NULL,
2651 `frequency` enum('day','week','semi_month','month','year') NOT NULL,
2652 `duration` int(10) unsigned NOT NULL,
2653 `cycle` int(10) unsigned NOT NULL,
2654 `trial_status` tinyint(4) NOT NULL,
2655 `trial_price` decimal(10,4) NOT NULL,
2656 `trial_frequency` enum('day','week','semi_month','month','year') NOT NULL,
2657 `trial_duration` int(10) unsigned NOT NULL,
2658 `trial_cycle` int(10) unsigned NOT NULL,
2659 PRIMARY KEY (`profile_id`)
2660) ENGINE=MyISAM DEFAULT CHARSET=utf8 AUTO_INCREMENT=1 ;
2661
2662-- --------------------------------------------------------
2663
2664--
2665-- Table structure for table `profile_description`
2666--
2667
2668CREATE TABLE IF NOT EXISTS `profile_description` (
2669 `profile_id` int(11) NOT NULL,
2670 `language_id` int(11) NOT NULL,
2671 `name` varchar(255) NOT NULL,
2672 PRIMARY KEY (`profile_id`,`language_id`)
2673) ENGINE=MyISAM DEFAULT CHARSET=utf8;
2674
2675-- --------------------------------------------------------
2676
2677--
2678-- Table structure for table `return`
2679--
2680
2681CREATE TABLE IF NOT EXISTS `return` (
2682 `return_id` int(11) NOT NULL AUTO_INCREMENT,
2683 `order_id` int(11) NOT NULL,
2684 `product_id` int(11) NOT NULL,
2685 `customer_id` int(11) NOT NULL,
2686 `firstname` varchar(32) NOT NULL,
2687 `lastname` varchar(32) NOT NULL,
2688 `email` varchar(96) NOT NULL,
2689 `telephone` varchar(32) NOT NULL,
2690 `product` varchar(255) NOT NULL,
2691 `model` varchar(64) NOT NULL,
2692 `quantity` int(4) NOT NULL,
2693 `opened` tinyint(1) NOT NULL,
2694 `return_reason_id` int(11) NOT NULL,
2695 `return_action_id` int(11) NOT NULL,
2696 `return_status_id` int(11) NOT NULL,
2697 `comment` text,
2698 `date_ordered` date NOT NULL,
2699 `date_added` datetime NOT NULL,
2700 `date_modified` datetime NOT NULL,
2701 PRIMARY KEY (`return_id`)
2702) ENGINE=MyISAM DEFAULT CHARSET=utf8 AUTO_INCREMENT=1 ;
2703
2704-- --------------------------------------------------------
2705
2706--
2707-- Table structure for table `return_action`
2708--
2709
2710CREATE TABLE IF NOT EXISTS `return_action` (
2711 `return_action_id` int(11) NOT NULL AUTO_INCREMENT,
2712 `language_id` int(11) NOT NULL DEFAULT '0',
2713 `name` varchar(64) NOT NULL,
2714 PRIMARY KEY (`return_action_id`,`language_id`)
2715) ENGINE=MyISAM DEFAULT CHARSET=utf8 AUTO_INCREMENT=4 ;
2716
2717--
2718-- Dumping data for table `return_action`
2719--
2720
2721INSERT INTO `return_action` (`return_action_id`, `language_id`, `name`) VALUES
2722(1, 1, 'Refunded'),
2723(2, 1, 'Credit Issued'),
2724(3, 1, 'Replacement Sent');
2725
2726-- --------------------------------------------------------
2727
2728--
2729-- Table structure for table `return_history`
2730--
2731
2732CREATE TABLE IF NOT EXISTS `return_history` (
2733 `return_history_id` int(11) NOT NULL AUTO_INCREMENT,
2734 `return_id` int(11) NOT NULL,
2735 `return_status_id` int(11) NOT NULL,
2736 `notify` tinyint(1) NOT NULL,
2737 `comment` text NOT NULL,
2738 `date_added` datetime NOT NULL,
2739 PRIMARY KEY (`return_history_id`)
2740) ENGINE=MyISAM DEFAULT CHARSET=utf8 AUTO_INCREMENT=1 ;
2741
2742-- --------------------------------------------------------
2743
2744--
2745-- Table structure for table `return_reason`
2746--
2747
2748CREATE TABLE IF NOT EXISTS `return_reason` (
2749 `return_reason_id` int(11) NOT NULL AUTO_INCREMENT,
2750 `language_id` int(11) NOT NULL DEFAULT '0',
2751 `name` varchar(128) NOT NULL,
2752 PRIMARY KEY (`return_reason_id`,`language_id`)
2753) ENGINE=MyISAM DEFAULT CHARSET=utf8 AUTO_INCREMENT=6 ;
2754
2755--
2756-- Dumping data for table `return_reason`
2757--
2758
2759INSERT INTO `return_reason` (`return_reason_id`, `language_id`, `name`) VALUES
2760(1, 1, 'Dead On Arrival'),
2761(2, 1, 'Received Wrong Item'),
2762(3, 1, 'Order Error'),
2763(4, 1, 'Faulty, please supply details'),
2764(5, 1, 'Other, please supply details');
2765
2766-- --------------------------------------------------------
2767
2768--
2769-- Table structure for table `return_status`
2770--
2771
2772CREATE TABLE IF NOT EXISTS `return_status` (
2773 `return_status_id` int(11) NOT NULL AUTO_INCREMENT,
2774 `language_id` int(11) NOT NULL DEFAULT '0',
2775 `name` varchar(32) NOT NULL,
2776 PRIMARY KEY (`return_status_id`,`language_id`)
2777) ENGINE=MyISAM DEFAULT CHARSET=utf8 AUTO_INCREMENT=4 ;
2778
2779--
2780-- Dumping data for table `return_status`
2781--
2782
2783INSERT INTO `return_status` (`return_status_id`, `language_id`, `name`) VALUES
2784(1, 1, 'Pending'),
2785(3, 1, 'Complete'),
2786(2, 1, 'Awaiting Products');
2787
2788-- --------------------------------------------------------
2789
2790--
2791-- Table structure for table `review`
2792--
2793
2794CREATE TABLE IF NOT EXISTS `review` (
2795 `review_id` int(11) NOT NULL AUTO_INCREMENT,
2796 `product_id` int(11) NOT NULL,
2797 `customer_id` int(11) NOT NULL,
2798 `author` varchar(64) NOT NULL,
2799 `text` text NOT NULL,
2800 `rating` int(1) NOT NULL,
2801 `status` tinyint(1) NOT NULL DEFAULT '0',
2802 `date_added` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
2803 `date_modified` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
2804 PRIMARY KEY (`review_id`),
2805 KEY `product_id` (`product_id`)
2806) ENGINE=MyISAM DEFAULT CHARSET=utf8 AUTO_INCREMENT=1 ;
2807
2808-- --------------------------------------------------------
2809
2810--
2811-- Table structure for table `setting`
2812--
2813
2814CREATE TABLE IF NOT EXISTS `setting` (
2815 `setting_id` int(11) NOT NULL AUTO_INCREMENT,
2816 `store_id` int(11) NOT NULL DEFAULT '0',
2817 `group` varchar(32) NOT NULL,
2818 `key` varchar(64) NOT NULL,
2819 `value` text NOT NULL,
2820 `serialized` tinyint(1) NOT NULL,
2821 PRIMARY KEY (`setting_id`)
2822) ENGINE=MyISAM DEFAULT CHARSET=utf8 AUTO_INCREMENT=1267 ;
2823
2824--
2825-- Dumping data for table `setting`
2826--
2827
2828INSERT INTO `setting` (`setting_id`, `store_id`, `group`, `key`, `value`, `serialized`) VALUES
2829(1, 0, 'shipping', 'shipping_sort_order', '3', 0),
2830(2, 0, 'sub_total', 'sub_total_sort_order', '1', 0),
2831(3, 0, 'sub_total', 'sub_total_status', '1', 0),
2832(4, 0, 'tax', 'tax_status', '1', 0),
2833(5, 0, 'total', 'total_sort_order', '9', 0),
2834(6, 0, 'total', 'total_status', '1', 0),
2835(7, 0, 'tax', 'tax_sort_order', '5', 0),
2836(8, 0, 'free_checkout', 'free_checkout_sort_order', '1', 0),
2837(9, 0, 'cod', 'cod_sort_order', '5', 0),
2838(10, 0, 'cod', 'cod_total', '0.01', 0),
2839(11, 0, 'cod', 'cod_order_status_id', '1', 0),
2840(12, 0, 'cod', 'cod_geo_zone_id', '0', 0),
2841(13, 0, 'cod', 'cod_status', '1', 0),
2842(14, 0, 'shipping', 'shipping_status', '1', 0),
2843(15, 0, 'shipping', 'shipping_estimator', '1', 0),
2844(1265, 0, 'config', 'config_error_filename', 'error.txt', 0),
2845(1264, 0, 'config', 'config_error_log', '1', 0),
2846(1263, 0, 'config', 'config_error_display', '1', 0),
2847(1262, 0, 'config', 'config_compression', '0', 0),
2848(27, 0, 'coupon', 'coupon_sort_order', '4', 0),
2849(28, 0, 'coupon', 'coupon_status', '1', 0),
2850(1260, 0, 'config', 'config_password', '1', 0),
2851(1261, 0, 'config', 'config_encryption', '732e938699bcc4b99db5f9db5f3a66ed', 0),
2852(1259, 0, 'config', 'config_maintenance', '0', 0),
2853(34, 0, 'flat', 'flat_sort_order', '1', 0),
2854(35, 0, 'flat', 'flat_status', '1', 0),
2855(36, 0, 'flat', 'flat_geo_zone_id', '0', 0),
2856(37, 0, 'flat', 'flat_tax_class_id', '9', 0),
2857(342, 0, 'featured', 'product', '', 0),
2858(343, 0, 'featured', 'featured_product', '43,40,42,49,46,47,28', 0),
2859(344, 0, 'featured', 'featured_module', 'a:1:{i:0;a:7:{s:5:"limit";s:1:"6";s:11:"image_width";s:2:"80";s:12:"image_height";s:2:"80";s:9:"layout_id";s:1:"1";s:8:"position";s:11:"content_top";s:6:"status";s:1:"0";s:10:"sort_order";s:1:"2";}}', 1),
2860(41, 0, 'flat', 'flat_cost', '5.00', 0),
2861(42, 0, 'credit', 'credit_sort_order', '7', 0),
2862(43, 0, 'credit', 'credit_status', '1', 0),
2863(53, 0, 'reward', 'reward_sort_order', '2', 0),
2864(54, 0, 'reward', 'reward_status', '1', 0),
2865(1257, 0, 'config', 'config_file_extension_allowed', 'txt\r\npng\r\njpe\r\njpeg\r\njpg\r\ngif\r\nbmp\r\nico\r\ntiff\r\ntif\r\nsvg\r\nsvgz\r\nzip\r\nrar\r\nmsi\r\ncab\r\nmp3\r\nqt\r\nmov\r\npdf\r\npsd\r\nai\r\neps\r\nps\r\ndoc\r\nrtf\r\nxls\r\nppt\r\nodt\r\nods', 0),
2866(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),
2867(1160, 0, 'category', 'category_module', 'a:9:{i:0;a:4:{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:"1";}i:1;a:4:{s:9:"layout_id";s:1:"2";s:8:"position";s:11:"content_top";s:6:"status";s:1:"1";s:10:"sort_order";s:1:"1";}i:2;a:4:{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";}i:3;a:4:{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:1:"1";}i:4;a:4:{s:9:"layout_id";s:2:"11";s:8:"position";s:11:"content_top";s:6:"status";s:1:"1";s:10:"sort_order";s:1:"1";}i:5;a:4:{s:9:"layout_id";s:1:"8";s:8:"position";s:11:"content_top";s:6:"status";s:1:"1";s:10:"sort_order";s:1:"1";}i:6;a:4:{s:9:"layout_id";s:1:"7";s:8:"position";s:11:"content_top";s:6:"status";s:1:"1";s:10:"sort_order";s:1:"1";}i:7;a:4:{s:9:"layout_id";s:1:"9";s:8:"position";s:11:"content_top";s:6:"status";s:1:"1";s:10:"sort_order";s:0:"";}i:8;a:4:{s:9:"layout_id";s:1:"5";s:8:"position";s:11:"content_top";s:6:"status";s:1:"1";s:10:"sort_order";s:0:"";}}', 1),
2868(1161, 0, 'account', 'account_module', 'a:1:{i:0;a:4:{s:9:"layout_id";s:1:"6";s:8:"position";s:11:"column_left";s:6:"status";s:1:"1";s:10:"sort_order";s:1:"1";}}', 1),
2869(1258, 0, 'config', 'config_file_mime_allowed', 'text/plain\r\nimage/png\r\nimage/jpeg\r\nimage/jpeg\r\nimage/jpeg\r\nimage/gif\r\nimage/bmp\r\nimage/vnd.microsoft.icon\r\nimage/tiff\r\nimage/tiff\r\nimage/svg+xml\r\nimage/svg+xml\r\napplication/zip\r\napplication/x-rar-compressed\r\napplication/x-msdownload\r\napplication/vnd.ms-cab-compressed\r\naudio/mpeg\r\nvideo/quicktime\r\nvideo/quicktime\r\napplication/pdf\r\nimage/vnd.adobe.photoshop\r\napplication/postscript\r\napplication/postscript\r\napplication/postscript\r\napplication/msword\r\napplication/rtf\r\napplication/vnd.ms-excel\r\napplication/vnd.ms-powerpoint\r\napplication/vnd.oasis.opendocument.text\r\napplication/vnd.oasis.opendocument.spreadsheet', 0),
2870(1256, 0, 'config', 'config_seo_url', '0', 0),
2871(94, 0, 'voucher', 'voucher_sort_order', '8', 0),
2872(95, 0, 'voucher', 'voucher_status', '1', 0),
2873(103, 0, 'free_checkout', 'free_checkout_status', '1', 0),
2874(104, 0, 'free_checkout', 'free_checkout_order_status_id', '1', 0),
2875(340, 0, 'slideshow', 'slideshow_module', 'a:1:{i:0;a:7:{s:9:"banner_id";s:1:"7";s:5:"width";s:4:"1500";s:6:"height";s:3:"605";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),
2876(1245, 0, 'config', 'config_smtp_timeout', '5', 0),
2877(1246, 0, 'config', 'config_alert_mail', '0', 0),
2878(1247, 0, 'config', 'config_account_mail', '0', 0),
2879(1248, 0, 'config', 'config_alert_emails', '', 0),
2880(1249, 0, 'config', 'config_fraud_detection', '0', 0),
2881(1250, 0, 'config', 'config_fraud_key', '', 0),
2882(1251, 0, 'config', 'config_fraud_score', '', 0),
2883(1252, 0, 'config', 'config_fraud_status_id', '7', 0),
2884(1253, 0, 'config', 'config_secure', '0', 0),
2885(1254, 0, 'config', 'config_shared', '0', 0),
2886(1255, 0, 'config', 'config_robots', 'abot\r\ndbot\r\nebot\r\nhbot\r\nkbot\r\nlbot\r\nmbot\r\nnbot\r\nobot\r\npbot\r\nrbot\r\nsbot\r\ntbot\r\nvbot\r\nybot\r\nzbot\r\nbot.\r\nbot/\r\n_bot\r\n.bot\r\n/bot\r\n-bot\r\n:bot\r\n(bot\r\ncrawl\r\nslurp\r\nspider\r\nseek\r\naccoona\r\nacoon\r\nadressendeutschland\r\nah-ha.com\r\nahoy\r\naltavista\r\nananzi\r\nanthill\r\nappie\r\narachnophilia\r\narale\r\naraneo\r\naranha\r\narchitext\r\naretha\r\narks\r\nasterias\r\natlocal\r\natn\r\natomz\r\naugurfind\r\nbackrub\r\nbannana_bot\r\nbaypup\r\nbdfetch\r\nbig brother\r\nbiglotron\r\nbjaaland\r\nblackwidow\r\nblaiz\r\nblog\r\nblo.\r\nbloodhound\r\nboitho\r\nbooch\r\nbradley\r\nbutterfly\r\ncalif\r\ncassandra\r\nccubee\r\ncfetch\r\ncharlotte\r\nchurl\r\ncienciaficcion\r\ncmc\r\ncollective\r\ncomagent\r\ncombine\r\ncomputingsite\r\ncsci\r\ncurl\r\ncusco\r\ndaumoa\r\ndeepindex\r\ndelorie\r\ndepspid\r\ndeweb\r\ndie blinde kuh\r\ndigger\r\nditto\r\ndmoz\r\ndocomo\r\ndownload express\r\ndtaagent\r\ndwcp\r\nebiness\r\nebingbong\r\ne-collector\r\nejupiter\r\nemacs-w3 search engine\r\nesther\r\nevliya celebi\r\nezresult\r\nfalcon\r\nfelix ide\r\nferret\r\nfetchrover\r\nfido\r\nfindlinks\r\nfireball\r\nfish search\r\nfouineur\r\nfunnelweb\r\ngazz\r\ngcreep\r\ngenieknows\r\ngetterroboplus\r\ngeturl\r\nglx\r\ngoforit\r\ngolem\r\ngrabber\r\ngrapnel\r\ngralon\r\ngriffon\r\ngromit\r\ngrub\r\ngulliver\r\nhamahakki\r\nharvest\r\nhavindex\r\nhelix\r\nheritrix\r\nhku www octopus\r\nhomerweb\r\nhtdig\r\nhtml index\r\nhtml_analyzer\r\nhtmlgobble\r\nhubater\r\nhyper-decontextualizer\r\nia_archiver\r\nibm_planetwide\r\nichiro\r\niconsurf\r\niltrovatore\r\nimage.kapsi.net\r\nimagelock\r\nincywincy\r\nindexer\r\ninfobee\r\ninformant\r\ningrid\r\ninktomisearch.com\r\ninspector web\r\nintelliagent\r\ninternet shinchakubin\r\nip3000\r\niron33\r\nisraeli-search\r\nivia\r\njack\r\njakarta\r\njavabee\r\njetbot\r\njumpstation\r\nkatipo\r\nkdd-explorer\r\nkilroy\r\nknowledge\r\nkototoi\r\nkretrieve\r\nlabelgrabber\r\nlachesis\r\nlarbin\r\nlegs\r\nlibwww\r\nlinkalarm\r\nlink validator\r\nlinkscan\r\nlockon\r\nlwp\r\nlycos\r\nmagpie\r\nmantraagent\r\nmapoftheinternet\r\nmarvin/\r\nmattie\r\nmediafox\r\nmediapartners\r\nmercator\r\nmerzscope\r\nmicrosoft url control\r\nminirank\r\nmiva\r\nmj12\r\nmnogosearch\r\nmoget\r\nmonster\r\nmoose\r\nmotor\r\nmultitext\r\nmuncher\r\nmuscatferret\r\nmwd.search\r\nmyweb\r\nnajdi\r\nnameprotect\r\nnationaldirectory\r\nnazilla\r\nncsa beta\r\nnec-meshexplorer\r\nnederland.zoek\r\nnetcarta webmap engine\r\nnetmechanic\r\nnetresearchserver\r\nnetscoop\r\nnewscan-online\r\nnhse\r\nnokia6682/\r\nnomad\r\nnoyona\r\nnutch\r\nnzexplorer\r\nobjectssearch\r\noccam\r\nomni\r\nopen text\r\nopenfind\r\nopenintelligencedata\r\norb search\r\nosis-project\r\npack rat\r\npageboy\r\npagebull\r\npage_verifier\r\npanscient\r\nparasite\r\npartnersite\r\npatric\r\npear.\r\npegasus\r\nperegrinator\r\npgp key agent\r\nphantom\r\nphpdig\r\npicosearch\r\npiltdownman\r\npimptrain\r\npinpoint\r\npioneer\r\npiranha\r\nplumtreewebaccessor\r\npogodak\r\npoirot\r\npompos\r\npoppelsdorf\r\npoppi\r\npopular iconoclast\r\npsycheclone\r\npublisher\r\npython\r\nrambler\r\nraven search\r\nroach\r\nroad runner\r\nroadhouse\r\nrobbie\r\nrobofox\r\nrobozilla\r\nrules\r\nsalty\r\nsbider\r\nscooter\r\nscoutjet\r\nscrubby\r\nsearch.\r\nsearchprocess\r\nsemanticdiscovery\r\nsenrigan\r\nsg-scout\r\nshai''hulud\r\nshark\r\nshopwiki\r\nsidewinder\r\nsift\r\nsilk\r\nsimmany\r\nsite searcher\r\nsite valet\r\nsitetech-rover\r\nskymob.com\r\nsleek\r\nsmartwit\r\nsna-\r\nsnappy\r\nsnooper\r\nsohu\r\nspeedfind\r\nsphere\r\nsphider\r\nspinner\r\nspyder\r\nsteeler/\r\nsuke\r\nsuntek\r\nsupersnooper\r\nsurfnomore\r\nsven\r\nsygol\r\nszukacz\r\ntach black widow\r\ntarantula\r\ntempleton\r\n/teoma\r\nt-h-u-n-d-e-r-s-t-o-n-e\r\ntheophrastus\r\ntitan\r\ntitin\r\ntkwww\r\ntoutatis\r\nt-rex\r\ntutorgig\r\ntwiceler\r\ntwisted\r\nucsd\r\nudmsearch\r\nurl check\r\nupdated\r\nvagabondo\r\nvalkyrie\r\nverticrawl\r\nvictoria\r\nvision-search\r\nvolcano\r\nvoyager/\r\nvoyager-hc\r\nw3c_validator\r\nw3m2\r\nw3mir\r\nwalker\r\nwallpaper\r\nwanderer\r\nwauuu\r\nwavefire\r\nweb core\r\nweb hopper\r\nweb wombat\r\nwebbandit\r\nwebcatcher\r\nwebcopy\r\nwebfoot\r\nweblayers\r\nweblinker\r\nweblog monitor\r\nwebmirror\r\nwebmonkey\r\nwebquest\r\nwebreaper\r\nwebsitepulse\r\nwebsnarf\r\nwebstolperer\r\nwebvac\r\nwebwalk\r\nwebwatch\r\nwebwombat\r\nwebzinger\r\nwhizbang\r\nwhowhere\r\nwild ferret\r\nworldlight\r\nwwwc\r\nwwwster\r\nxenu\r\nxget\r\nxift\r\nxirq\r\nyandex\r\nyanga\r\nyeti\r\nyodao\r\nzao\r\nzippp\r\nzyborg', 0),
2887(467, 0, 'latest', 'latest_module', 'a:1:{i:0;a:7:{s:5:"limit";s:2:"10";s:11:"image_width";s:3:"220";s:12:"image_height";s:3:"238";s:9:"layout_id";s:1:"1";s:8:"position";s:14:"content_bottom";s:6:"status";s:1:"1";s:10:"sort_order";s:1:"9";}}', 1),
2888(1244, 0, 'config', 'config_smtp_port', '25', 0),
2889(1243, 0, 'config', 'config_smtp_password', '', 0),
2890(1242, 0, 'config', 'config_smtp_username', '', 0),
2891(1241, 0, 'config', 'config_smtp_host', '', 0),
2892(1240, 0, 'config', 'config_mail_parameter', '', 0),
2893(1239, 0, 'config', 'config_mail_protocol', 'mail', 0),
2894(1238, 0, 'config', 'config_ftp_status', '0', 0),
2895(1237, 0, 'config', 'config_ftp_root', '', 0),
2896(1236, 0, 'config', 'config_ftp_password', '', 0),
2897(1235, 0, 'config', 'config_ftp_username', '', 0),
2898(1234, 0, 'config', 'config_ftp_port', '21', 0),
2899(1233, 0, 'config', 'config_ftp_host', 'localhost', 0),
2900(1232, 0, 'config', 'config_image_cart_height', '47', 0),
2901(1231, 0, 'config', 'config_image_cart_width', '47', 0),
2902(1230, 0, 'config', 'config_image_wishlist_height', '47', 0),
2903(1229, 0, 'config', 'config_image_wishlist_width', '47', 0),
2904(1228, 0, 'config', 'config_image_compare_height', '90', 0),
2905(1227, 0, 'config', 'config_image_compare_width', '90', 0),
2906(1226, 0, 'config', 'config_image_related_height', '100', 0),
2907(1225, 0, 'config', 'config_image_related_width', '100', 0),
2908(1224, 0, 'config', 'config_image_additional_height', '84', 0),
2909(1223, 0, 'config', 'config_image_additional_width', '133', 0),
2910(1222, 0, 'config', 'config_image_product_height', '192', 0),
2911(1221, 0, 'config', 'config_image_product_width', '328', 0),
2912(1220, 0, 'config', 'config_image_popup_height', '500', 0),
2913(1219, 0, 'config', 'config_image_popup_width', '500', 0),
2914(1218, 0, 'config', 'config_image_thumb_height', '375', 0),
2915(1217, 0, 'config', 'config_image_thumb_width', '594', 0),
2916(1216, 0, 'config', 'config_image_category_height', '265', 0),
2917(1215, 0, 'config', 'config_image_category_width', '695', 0),
2918(1214, 0, 'config', 'config_icon', 'data/cart.png', 0),
2919(1213, 0, 'config', 'config_logo', 'data/logo.png', 0),
2920(1212, 0, 'config', 'config_return_status_id', '2', 0),
2921(1211, 0, 'config', 'config_return_id', '0', 0),
2922(1210, 0, 'config', 'config_commission', '5', 0),
2923(1209, 0, 'config', 'config_affiliate_id', '4', 0),
2924(1208, 0, 'config', 'config_stock_status_id', '5', 0),
2925(1207, 0, 'config', 'config_stock_checkout', '0', 0),
2926(1206, 0, 'config', 'config_stock_warning', '0', 0),
2927(1205, 0, 'config', 'config_stock_display', '0', 0),
2928(1204, 0, 'config', 'config_complete_status_id', '5', 0),
2929(1203, 0, 'config', 'config_order_status_id', '1', 0),
2930(1202, 0, 'config', 'config_invoice_prefix', 'INV-2013-00', 0),
2931(1201, 0, 'config', 'config_order_edit', '100', 0),
2932(1200, 0, 'config', 'config_checkout_id', '5', 0),
2933(1199, 0, 'config', 'config_guest_checkout', '1', 0),
2934(1198, 0, 'config', 'config_cart_weight', '0', 0),
2935(1197, 0, 'config', 'config_account_id', '3', 0),
2936(1196, 0, 'config', 'config_customer_price', '0', 0),
2937(1195, 0, 'config', 'config_customer_group_display', 'a:1:{i:0;s:1:"1";}', 1),
2938(1194, 0, 'config', 'config_customer_group_id', '1', 0),
2939(1193, 0, 'config', 'config_customer_online', '0', 0),
2940(1192, 0, 'config', 'config_tax_customer', 'shipping', 0),
2941(1191, 0, 'config', 'config_tax_default', 'shipping', 0),
2942(1190, 0, 'config', 'config_vat', '0', 0),
2943(1189, 0, 'config', 'config_tax', '0', 0),
2944(1188, 0, 'config', 'config_voucher_max', '1000', 0),
2945(1187, 0, 'config', 'config_voucher_min', '1', 0),
2946(1186, 0, 'config', 'config_download', '0', 0),
2947(1185, 0, 'config', 'config_review_status', '1', 0),
2948(1184, 0, 'config', 'config_product_count', '0', 0),
2949(1183, 0, 'config', 'config_admin_limit', '20', 0),
2950(1182, 0, 'config', 'config_catalog_limit', '15', 0),
2951(1181, 0, 'config', 'config_weight_class_id', '1', 0),
2952(1180, 0, 'config', 'config_length_class_id', '1', 0),
2953(1179, 0, 'config', 'config_currency_auto', '1', 0),
2954(1178, 0, 'config', 'config_currency', 'NGN', 0),
2955(1177, 0, 'config', 'config_admin_language', 'en', 0),
2956(1176, 0, 'config', 'config_language', 'en', 0),
2957(1175, 0, 'config', 'config_zone_id', '2412', 0),
2958(1174, 0, 'config', 'config_country_id', '156', 0),
2959(1173, 0, 'config', 'config_layout_id', '4', 0),
2960(1172, 0, 'config', 'config_template', 'spaces', 0),
2961(1171, 0, 'config', 'config_meta_description', 'My Store', 0),
2962(1169, 0, 'config', 'config_fax', '', 0),
2963(1170, 0, 'config', 'config_title', 'Spaces.ng | Online Store', 0),
2964(1168, 0, 'config', 'config_telephone', '123456789', 0),
2965(1167, 0, 'config', 'config_email', 'opeyemi@ckdigital.net', 0),
2966(1166, 0, 'config', 'config_address', 'Address 1', 0),
2967(1159, 0, 'productcarousel', 'productcarousel_module', 'a:1:{i:1;a:25:{s:8:"language";a:1:{i:1;a:1:{s:7:"caption";s:17:"You May Also Like";}}s:9:"source_id";s:1:"6";s:15:"source_products";s:0:"";s:11:"category_id";s:2:"-1";s:9:"show_name";s:1:"1";s:10:"show_price";s:1:"1";s:9:"show_cart";s:1:"0";s:13:"enabled_popup";s:1:"0";s:12:"popup_detail";s:1:"0";s:11:"zoom_factor";s:3:"0.0";s:6:"random";s:1:"1";s:13:"cache_enabled";s:1:"0";s:16:"display_view_all";s:1:"0";s:5:"limit";s:2:"10";s:12:"scroll_limit";s:1:"3";s:11:"image_width";s:3:"309";s:12:"image_height";s:3:"203";s:6:"scroll";s:1:"1";s:4:"axis";s:1:"0";s:9:"autostart";s:1:"1";s:9:"animation";s:4:"2000";s:9:"layout_id";s:1:"2";s:8:"position";s:14:"content_bottom";s:6:"status";s:1:"1";s:10:"sort_order";s:1:"1";}}', 1),
2968(346, 0, 'welcome', 'welcome_module', 'a:1:{i:1;a:5:{s:11:"description";a:1:{i:1;s:945:"<p>Spaces.ng is a Bespoke Interior Design and Accessories Online Store which offers clients the opportunity to choose from vast arrays of interior design images and accessories for different spaces which conveys the clients style, personality at the comfort of their homes, offices and wherever they choose to be.</p>\r\n\r\n<p>Spaces.ng is driven by our love for convenience, quality, uniqueness and promptness. It was birth out to debunk the myth by most Nigerians that using an interior designer could be extremely expensive, the frustrations experience by our clients in having vast arrays of design options to choose from and the need to position ourselves in the ever growing business economy of our nation Nigeria. From research we discovered that clients find it difficult to locate an affordable and competent interior firms who can deliver their promises on time, quality at affordable and competitive prices.</p>\r\n";}s:9:"layout_id";s:1:"1";s:8:"position";s:14:"content_bottom";s:6:"status";s:1:"1";s:10:"sort_order";s:1:"2";}}', 1),
2969(363, 0, 'lpbc', 'lpbc_module', 'a:1:{i:0;a:11:{s:11:"category_id";s:2:"20";s:2:"dm";s:8:"carousel";s:7:"subcats";s:5:"ctabs";s:4:"pmin";s:1:"1";s:5:"limit";s:2:"10";s:11:"image_width";s:3:"220";s:12:"image_height";s:3:"286";s:9:"layout_id";s:1:"1";s:8:"position";s:14:"content_bottom";s:6:"status";s:1:"1";s:10:"sort_order";s:1:"1";}}', 1),
2970(1165, 0, 'config', 'config_owner', 'Spaces.ng', 0),
2971(1164, 0, 'config', 'config_name', 'Spaces.ng', 0),
2972(733, 0, 'supercategorymenuadvanced', 'price', '30000;60000', 0),
2973(686, 0, 'supercategorymenuadvanced', 'VALORES_20', 'a:1:{s:10:"attributes";a:3:{i:2;a:13:{s:12:"attribute_id";s:1:"2";s:4:"name";s:12:"No. of Cores";s:10:"short_name";s:1:"a";s:6:"number";s:1:"8";s:10:"sort_order";s:1:"0";s:4:"view";s:4:"sele";s:4:"unit";s:0:"";s:9:"separator";s:2:"no";s:4:"info";s:2:"no";s:11:"searchinput";s:2:"no";s:7:"initval";s:6:"opened";s:8:"orderval";s:5:"OHASC";s:9:"text_info";a:1:{i:1;s:0:"";}}i:3;a:13:{s:12:"attribute_id";s:1:"3";s:4:"name";s:10:"Clockspeed";s:10:"short_name";s:1:"a";s:6:"number";s:1:"8";s:10:"sort_order";s:1:"0";s:4:"view";s:4:"sele";s:4:"unit";s:0:"";s:9:"separator";s:2:"no";s:4:"info";s:2:"no";s:11:"searchinput";s:2:"no";s:7:"initval";s:6:"opened";s:8:"orderval";s:5:"OHASC";s:9:"text_info";a:1:{i:1;s:0:"";}}i:4;a:13:{s:12:"attribute_id";s:1:"4";s:4:"name";s:6:"test 1";s:10:"short_name";s:1:"a";s:6:"number";s:1:"8";s:10:"sort_order";s:1:"0";s:4:"view";s:4:"sele";s:4:"unit";s:0:"";s:9:"separator";s:2:"no";s:4:"info";s:2:"no";s:11:"searchinput";s:2:"no";s:7:"initval";s:6:"opened";s:8:"orderval";s:5:"OHASC";s:9:"text_info";a:1:{i:1;s:0:"";}}}}', 1),
2974(680, 0, 'supercategorymenuadvanced', 'VALORES_26', 'a:1:{s:10:"attributes";a:3:{i:2;a:13:{s:12:"attribute_id";s:1:"2";s:4:"name";s:12:"No. of Cores";s:10:"short_name";s:1:"a";s:6:"number";s:1:"8";s:10:"sort_order";s:1:"0";s:4:"view";s:4:"sele";s:4:"unit";s:0:"";s:9:"separator";s:2:"no";s:4:"info";s:2:"no";s:11:"searchinput";s:2:"no";s:7:"initval";s:6:"opened";s:8:"orderval";s:5:"OHASC";s:9:"text_info";a:1:{i:1;s:0:"";}}i:3;a:13:{s:12:"attribute_id";s:1:"3";s:4:"name";s:10:"Clockspeed";s:10:"short_name";s:1:"a";s:6:"number";s:1:"8";s:10:"sort_order";s:1:"0";s:4:"view";s:4:"sele";s:4:"unit";s:0:"";s:9:"separator";s:2:"no";s:4:"info";s:2:"no";s:11:"searchinput";s:2:"no";s:7:"initval";s:6:"opened";s:8:"orderval";s:5:"OHASC";s:9:"text_info";a:1:{i:1;s:0:"";}}i:4;a:13:{s:12:"attribute_id";s:1:"4";s:4:"name";s:6:"test 1";s:10:"short_name";s:1:"a";s:6:"number";s:1:"8";s:10:"sort_order";s:1:"0";s:4:"view";s:4:"sele";s:4:"unit";s:0:"";s:9:"separator";s:2:"no";s:4:"info";s:2:"no";s:11:"searchinput";s:2:"no";s:7:"initval";s:6:"opened";s:8:"orderval";s:5:"OHASC";s:9:"text_info";a:1:{i:1;s:0:"";}}}}', 1),
2975(681, 0, 'supercategorymenuadvanced', 'VALORES_27', 'a:1:{s:10:"attributes";a:3:{i:2;a:13:{s:12:"attribute_id";s:1:"2";s:4:"name";s:12:"No. of Cores";s:10:"short_name";s:1:"a";s:6:"number";s:1:"8";s:10:"sort_order";s:1:"0";s:4:"view";s:4:"sele";s:4:"unit";s:0:"";s:9:"separator";s:2:"no";s:4:"info";s:2:"no";s:11:"searchinput";s:2:"no";s:7:"initval";s:6:"opened";s:8:"orderval";s:5:"OHASC";s:9:"text_info";a:1:{i:1;s:0:"";}}i:3;a:13:{s:12:"attribute_id";s:1:"3";s:4:"name";s:10:"Clockspeed";s:10:"short_name";s:1:"a";s:6:"number";s:1:"8";s:10:"sort_order";s:1:"0";s:4:"view";s:4:"sele";s:4:"unit";s:0:"";s:9:"separator";s:2:"no";s:4:"info";s:2:"no";s:11:"searchinput";s:2:"no";s:7:"initval";s:6:"opened";s:8:"orderval";s:5:"OHASC";s:9:"text_info";a:1:{i:1;s:0:"";}}i:4;a:13:{s:12:"attribute_id";s:1:"4";s:4:"name";s:6:"test 1";s:10:"short_name";s:1:"a";s:6:"number";s:1:"8";s:10:"sort_order";s:1:"0";s:4:"view";s:4:"sele";s:4:"unit";s:0:"";s:9:"separator";s:2:"no";s:4:"info";s:2:"no";s:11:"searchinput";s:2:"no";s:7:"initval";s:6:"opened";s:8:"orderval";s:5:"OHASC";s:9:"text_info";a:1:{i:1;s:0:"";}}}}', 1),
2976(741, 0, 'supercategorymenuadvanced', 'supercategorymenuadvanced_module', 'a:1:{i:0;a:4:{s:9:"layout_id";s:1:"3";s:8:"position";s:12:"column_right";s:6:"status";s:1:"1";s:10:"sort_order";s:1:"1";}}', 1),
2977(1163, 0, 'information', 'information_module', 'a:3:{i:0;a:4:{s:9:"layout_id";s:2:"11";s:8:"position";s:11:"column_left";s:6:"status";s:1:"1";s:10:"sort_order";s:1:"1";}i:1;a:4:{s:9:"layout_id";s:1:"8";s:8:"position";s:11:"column_left";s:6:"status";s:1:"1";s:10:"sort_order";s:1:"1";}i:2;a:4:{s:9:"layout_id";s:1:"9";s:8:"position";s:11:"column_left";s:6:"status";s:1:"1";s:10:"sort_order";s:1:"1";}}', 1),
2978(1266, 0, 'config', 'config_google_analytics', '', 0),
2979(693, 0, 'supercategorymenuadvanced', 'price', '30000;60000', 0),
2980(699, 0, 'supercategorymenuadvanced', 'price', '30000;60000', 0),
2981(712, 0, 'supercategorymenuadvanced', 'price', '30000;60000', 0),
2982(739, 0, 'supercategorymenuadvanced', 'supercategorymenuadvanced_code', 'u', 0),
2983(726, 0, 'supercategorymenuadvanced', 'price', '30000;60000', 0),
2984(705, 0, 'supercategorymenuadvanced', 'price', '30000;60000', 0),
2985(740, 0, 'supercategorymenuadvanced', 'price', '30000;60000', 0),
2986(738, 0, 'supercategorymenuadvanced', 'supercategorymenuadvanced_settings', 'a:20:{s:18:"image_option_width";s:2:"20";s:19:"image_option_height";s:2:"20";s:10:"option_tip";s:1:"0";s:15:"asearch_filters";s:1:"0";s:16:"see_more_trigger";s:1:"0";s:12:"menu_filters";s:1:"1";s:6:"countp";s:1:"0";s:8:"nofollow";s:1:"0";s:12:"track_google";s:1:"0";s:8:"ocscroll";s:1:"0";s:7:"reviews";a:4:{s:7:"reviews";s:1:"0";s:4:"tipo";s:3:"avg";s:7:"initval";s:6:"opened";s:11:"super_order";s:1:"6";}s:4:"ajax";a:5:{s:4:"ajax";s:1:"1";s:9:"speedmenu";s:4:"2000";s:12:"speedresults";s:4:"2000";s:6:"loader";s:1:"0";s:5:"image";s:7:"334.png";}s:5:"stock";a:10:{s:11:"super_order";s:1:"5";s:5:"stock";s:1:"0";s:9:"clearance";s:1:"0";s:15:"clearance_value";s:1:"6";s:7:"special";s:1:"0";s:8:"arrivals";s:1:"0";s:10:"number_day";s:1:"7";s:10:"auto_clean";s:1:"0";s:4:"view";s:4:"list";s:7:"initval";s:6:"opened";}s:6:"filter";a:1:{s:11:"super_order";s:1:"2";}s:8:"category";a:10:{s:11:"super_order";s:1:"3";s:8:"category";s:1:"0";s:7:"asearch";s:1:"0";s:5:"reset";s:1:"1";s:11:"list_number";s:2:"10";s:5:"order";s:6:"OTDESC";s:11:"searchinput";s:2:"no";s:4:"view";s:4:"list";s:5:"style";s:7:"imagen1";s:7:"initval";s:6:"opened";}s:12:"manufacturer";a:7:{s:11:"super_order";s:1:"4";s:12:"manufacturer";s:1:"0";s:11:"list_number";s:2:"10";s:5:"order";s:6:"OTDESC";s:4:"view";s:4:"list";s:11:"searchinput";s:2:"no";s:7:"initval";s:6:"opened";}s:10:"pricerange";a:6:{s:11:"super_order";s:1:"1";s:10:"pricerange";s:1:"1";s:4:"view";s:6:"select";s:6:"setvat";s:1:"0";s:7:"initval";s:6:"opened";s:12:"tax_class_id";s:1:"9";}s:6:"styles";s:7:"default";s:11:"skin_slider";s:22:"jslider.yellow.rounded";s:13:"template_menu";s:19:"scma_standar_V3.tpl";}', 1),
2987(719, 0, 'supercategorymenuadvanced', 'price', '30000;60000', 0),
2988(737, 0, 'supercategorymenuadvanced', 'supercategorymenuadvanced_seo_keyword2', 'seo_key_word', 0),
2989(735, 0, 'supercategorymenuadvanced', 'supercategorymenuadvanced_mode', 'Developing', 0),
2990(736, 0, 'supercategorymenuadvanced', 'supercategorymenuadvanced_seo_keyword', 'seo_key_word', 0);
2991
2992-- --------------------------------------------------------
2993
2994--
2995-- Table structure for table `stock_status`
2996--
2997
2998CREATE TABLE IF NOT EXISTS `stock_status` (
2999 `stock_status_id` int(11) NOT NULL AUTO_INCREMENT,
3000 `language_id` int(11) NOT NULL,
3001 `name` varchar(32) NOT NULL,
3002 PRIMARY KEY (`stock_status_id`,`language_id`)
3003) ENGINE=MyISAM DEFAULT CHARSET=utf8 AUTO_INCREMENT=9 ;
3004
3005--
3006-- Dumping data for table `stock_status`
3007--
3008
3009INSERT INTO `stock_status` (`stock_status_id`, `language_id`, `name`) VALUES
3010(7, 1, 'In Stock'),
3011(8, 1, 'Pre-Order'),
3012(5, 1, 'Out Of Stock'),
3013(6, 1, '2 - 3 Days');
3014
3015-- --------------------------------------------------------
3016
3017--
3018-- Table structure for table `store`
3019--
3020
3021CREATE TABLE IF NOT EXISTS `store` (
3022 `store_id` int(11) NOT NULL AUTO_INCREMENT,
3023 `name` varchar(64) NOT NULL,
3024 `url` varchar(255) NOT NULL,
3025 `ssl` varchar(255) NOT NULL,
3026 PRIMARY KEY (`store_id`)
3027) ENGINE=MyISAM DEFAULT CHARSET=utf8 AUTO_INCREMENT=1 ;
3028
3029-- --------------------------------------------------------
3030
3031--
3032-- Table structure for table `tax_class`
3033--
3034
3035CREATE TABLE IF NOT EXISTS `tax_class` (
3036 `tax_class_id` int(11) NOT NULL AUTO_INCREMENT,
3037 `title` varchar(32) NOT NULL,
3038 `description` varchar(255) NOT NULL,
3039 `date_added` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
3040 `date_modified` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
3041 PRIMARY KEY (`tax_class_id`)
3042) ENGINE=MyISAM DEFAULT CHARSET=utf8 AUTO_INCREMENT=11 ;
3043
3044--
3045-- Dumping data for table `tax_class`
3046--
3047
3048INSERT INTO `tax_class` (`tax_class_id`, `title`, `description`, `date_added`, `date_modified`) VALUES
3049(9, 'Taxable Goods', 'Taxed Stuff', '2009-01-06 23:21:53', '2011-09-23 14:07:50'),
3050(10, 'Downloadable Products', 'Downloadable', '2011-09-21 22:19:39', '2011-09-22 10:27:36');
3051
3052-- --------------------------------------------------------
3053
3054--
3055-- Table structure for table `tax_rate`
3056--
3057
3058CREATE TABLE IF NOT EXISTS `tax_rate` (
3059 `tax_rate_id` int(11) NOT NULL AUTO_INCREMENT,
3060 `geo_zone_id` int(11) NOT NULL DEFAULT '0',
3061 `name` varchar(32) NOT NULL,
3062 `rate` decimal(15,4) NOT NULL DEFAULT '0.0000',
3063 `type` char(1) NOT NULL,
3064 `date_added` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
3065 `date_modified` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
3066 PRIMARY KEY (`tax_rate_id`)
3067) ENGINE=MyISAM DEFAULT CHARSET=utf8 AUTO_INCREMENT=88 ;
3068
3069--
3070-- Dumping data for table `tax_rate`
3071--
3072
3073INSERT INTO `tax_rate` (`tax_rate_id`, `geo_zone_id`, `name`, `rate`, `type`, `date_added`, `date_modified`) VALUES
3074(86, 3, 'VAT (17.5%)', '17.5000', 'P', '2011-03-09 21:17:10', '2011-09-22 22:24:29'),
3075(87, 3, 'Eco Tax (-2.00)', '2.0000', 'F', '2011-09-21 21:49:23', '2011-09-23 00:40:19');
3076
3077-- --------------------------------------------------------
3078
3079--
3080-- Table structure for table `tax_rate_to_customer_group`
3081--
3082
3083CREATE TABLE IF NOT EXISTS `tax_rate_to_customer_group` (
3084 `tax_rate_id` int(11) NOT NULL,
3085 `customer_group_id` int(11) NOT NULL,
3086 PRIMARY KEY (`tax_rate_id`,`customer_group_id`)
3087) ENGINE=MyISAM DEFAULT CHARSET=utf8;
3088
3089--
3090-- Dumping data for table `tax_rate_to_customer_group`
3091--
3092
3093INSERT INTO `tax_rate_to_customer_group` (`tax_rate_id`, `customer_group_id`) VALUES
3094(86, 1),
3095(87, 1);
3096
3097-- --------------------------------------------------------
3098
3099--
3100-- Table structure for table `tax_rule`
3101--
3102
3103CREATE TABLE IF NOT EXISTS `tax_rule` (
3104 `tax_rule_id` int(11) NOT NULL AUTO_INCREMENT,
3105 `tax_class_id` int(11) NOT NULL,
3106 `tax_rate_id` int(11) NOT NULL,
3107 `based` varchar(10) NOT NULL,
3108 `priority` int(5) NOT NULL DEFAULT '1',
3109 PRIMARY KEY (`tax_rule_id`)
3110) ENGINE=MyISAM DEFAULT CHARSET=utf8 AUTO_INCREMENT=129 ;
3111
3112--
3113-- Dumping data for table `tax_rule`
3114--
3115
3116INSERT INTO `tax_rule` (`tax_rule_id`, `tax_class_id`, `tax_rate_id`, `based`, `priority`) VALUES
3117(121, 10, 86, 'payment', 1),
3118(120, 10, 87, 'store', 0),
3119(128, 9, 86, 'shipping', 1),
3120(127, 9, 87, 'shipping', 2);
3121
3122-- --------------------------------------------------------
3123
3124--
3125-- Table structure for table `url_alias`
3126--
3127
3128CREATE TABLE IF NOT EXISTS `url_alias` (
3129 `url_alias_id` int(11) NOT NULL AUTO_INCREMENT,
3130 `query` varchar(255) NOT NULL,
3131 `keyword` varchar(255) NOT NULL,
3132 PRIMARY KEY (`url_alias_id`)
3133) ENGINE=MyISAM DEFAULT CHARSET=utf8 AUTO_INCREMENT=806 ;
3134
3135--
3136-- Dumping data for table `url_alias`
3137--
3138
3139INSERT INTO `url_alias` (`url_alias_id`, `query`, `keyword`) VALUES
3140(704, 'product_id=48', 'ipod_classic'),
3141(778, 'category_id=27', 'furniture'),
3142(730, 'manufacturer_id=8', 'apple'),
3143(772, 'information_id=4', 'about_us'),
3144(794, 'product_id=42', 'test'),
3145(803, 'category_id=20', 'new-arrival'),
3146(791, 'category_id=36', 'bed-and-bath'),
3147(777, 'category_id=18', 'room'),
3148(805, 'category_id=26', 'lighting'),
3149(780, 'category_id=46', 'furniture'),
3150(804, 'category_id=45', 'lighting'),
3151(782, 'category_id=17', 'accessories'),
3152(783, 'category_id=57', 'rugs'),
3153(784, 'category_id=33', 'pillows-and-throws'),
3154(785, 'category_id=25', 'dinning-and-throws'),
3155(788, 'category_id=29', 'office'),
3156(787, 'category_id=28', 'outdoor'),
3157(790, 'category_id=35', 'storage'),
3158(792, 'category_id=30', 'on-trend'),
3159(793, 'category_id=31', 'gifts'),
3160(801, 'category_id=0', 'seo_key_word'),
3161(802, 'manufacturer_id=0', 'seo_key_word');
3162
3163-- --------------------------------------------------------
3164
3165--
3166-- Table structure for table `user`
3167--
3168
3169CREATE TABLE IF NOT EXISTS `user` (
3170 `user_id` int(11) NOT NULL AUTO_INCREMENT,
3171 `user_group_id` int(11) NOT NULL,
3172 `username` varchar(20) NOT NULL,
3173 `password` varchar(40) NOT NULL,
3174 `salt` varchar(9) NOT NULL,
3175 `firstname` varchar(32) NOT NULL,
3176 `lastname` varchar(32) NOT NULL,
3177 `email` varchar(96) NOT NULL,
3178 `code` varchar(40) NOT NULL,
3179 `ip` varchar(40) NOT NULL,
3180 `status` tinyint(1) NOT NULL,
3181 `date_added` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
3182 PRIMARY KEY (`user_id`)
3183) ENGINE=MyISAM DEFAULT CHARSET=utf8 AUTO_INCREMENT=2 ;
3184
3185--
3186-- Dumping data for table `user`
3187--
3188
3189INSERT INTO `user` (`user_id`, `user_group_id`, `username`, `password`, `salt`, `firstname`, `lastname`, `email`, `code`, `ip`, `status`, `date_added`) VALUES
3190(1, 1, 'sng#1', 'e6db5f22667a07a2604bb1e803a059e3f0ccbb0f', 'fcf2967c8', '', '', 'opeyemi@ckdigital.net', '', '::1', 1, '2015-06-03 13:57:22');
3191
3192-- --------------------------------------------------------
3193
3194--
3195-- Table structure for table `user_group`
3196--
3197
3198CREATE TABLE IF NOT EXISTS `user_group` (
3199 `user_group_id` int(11) NOT NULL AUTO_INCREMENT,
3200 `name` varchar(64) NOT NULL,
3201 `permission` text NOT NULL,
3202 PRIMARY KEY (`user_group_id`)
3203) ENGINE=MyISAM DEFAULT CHARSET=utf8 AUTO_INCREMENT=11 ;
3204
3205--
3206-- Dumping data for table `user_group`
3207--
3208
3209INSERT INTO `user_group` (`user_group_id`, `name`, `permission`) VALUES
3210(1, 'Top Administrator', 'a:2:{s:6:"access";a:154:{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:14:"catalog/filter";i:5;s:19:"catalog/information";i:6;s:20:"catalog/manufacturer";i:7;s:14:"catalog/option";i:8;s:15:"catalog/product";i:9;s:15:"catalog/profile";i:10;s:14:"catalog/review";i:11;s:18:"common/filemanager";i:12;s:13:"design/banner";i:13;s:19:"design/custom_field";i:14;s:13:"design/layout";i:15;s:14:"extension/feed";i:16;s:17:"extension/manager";i:17;s:16:"extension/module";i:18;s:17:"extension/openbay";i:19;s:17:"extension/payment";i:20;s:18:"extension/shipping";i:21;s:15:"extension/total";i:22;s:16:"feed/google_base";i:23;s:19:"feed/google_sitemap";i:24;s:20:"localisation/country";i:25;s:21:"localisation/currency";i:26;s:21:"localisation/geo_zone";i:27;s:21:"localisation/language";i:28;s:25:"localisation/length_class";i:29;s:25:"localisation/order_status";i:30;s:26:"localisation/return_action";i:31;s:26:"localisation/return_reason";i:32;s:26:"localisation/return_status";i:33;s:25:"localisation/stock_status";i:34;s:22:"localisation/tax_class";i:35;s:21:"localisation/tax_rate";i:36;s:25:"localisation/weight_class";i:37;s:17:"localisation/zone";i:38;s:14:"module/account";i:39;s:16:"module/affiliate";i:40;s:29:"module/amazon_checkout_layout";i:41;s:13:"module/banner";i:42;s:17:"module/bestseller";i:43;s:15:"module/carousel";i:44;s:15:"module/category";i:45;s:18:"module/ebaydisplay";i:46;s:15:"module/featured";i:47;s:13:"module/filter";i:48;s:18:"module/google_talk";i:49;s:18:"module/information";i:50;s:13:"module/latest";i:51;s:17:"module/openbaypro";i:52;s:16:"module/pp_layout";i:53;s:16:"module/slideshow";i:54;s:14:"module/special";i:55;s:12:"module/store";i:56;s:14:"module/welcome";i:57;s:14:"openbay/amazon";i:58;s:22:"openbay/amazon_listing";i:59;s:22:"openbay/amazon_product";i:60;s:16:"openbay/amazonus";i:61;s:24:"openbay/amazonus_listing";i:62;s:24:"openbay/amazonus_product";i:63;s:20:"openbay/ebay_profile";i:64;s:21:"openbay/ebay_template";i:65;s:15:"openbay/openbay";i:66;s:23:"payment/amazon_checkout";i:67;s:24:"payment/authorizenet_aim";i:68;s:21:"payment/bank_transfer";i:69;s:14:"payment/cheque";i:70;s:11:"payment/cod";i:71;s:21:"payment/free_checkout";i:72;s:22:"payment/klarna_account";i:73;s:22:"payment/klarna_invoice";i:74;s:14:"payment/liqpay";i:75;s:20:"payment/moneybookers";i:76;s:14:"payment/nochex";i:77;s:15:"payment/paymate";i:78;s:16:"payment/paypoint";i:79;s:13:"payment/payza";i:80;s:26:"payment/perpetual_payments";i:81;s:18:"payment/pp_express";i:82;s:25:"payment/pp_payflow_iframe";i:83;s:14:"payment/pp_pro";i:84;s:21:"payment/pp_pro_iframe";i:85;s:17:"payment/pp_pro_pf";i:86;s:17:"payment/pp_pro_uk";i:87;s:19:"payment/pp_standard";i:88;s:15:"payment/sagepay";i:89;s:22:"payment/sagepay_direct";i:90;s:18:"payment/sagepay_us";i:91;s:19:"payment/twocheckout";i:92;s:28:"payment/web_payment_software";i:93;s:16:"payment/worldpay";i:94;s:27:"report/affiliate_commission";i:95;s:22:"report/customer_credit";i:96;s:22:"report/customer_online";i:97;s:21:"report/customer_order";i:98;s:22:"report/customer_reward";i:99;s:24:"report/product_purchased";i:100;s:21:"report/product_viewed";i:101;s:18:"report/sale_coupon";i:102;s:17:"report/sale_order";i:103;s:18:"report/sale_return";i:104;s:20:"report/sale_shipping";i:105;s:15:"report/sale_tax";i:106;s:14:"sale/affiliate";i:107;s:12:"sale/contact";i:108;s:11:"sale/coupon";i:109;s:13:"sale/customer";i:110;s:20:"sale/customer_ban_ip";i:111;s:19:"sale/customer_group";i:112;s:10:"sale/order";i:113;s:14:"sale/recurring";i:114;s:11:"sale/return";i:115;s:12:"sale/voucher";i:116;s:18:"sale/voucher_theme";i:117;s:15:"setting/setting";i:118;s:13:"setting/store";i:119;s:16:"shipping/auspost";i:120;s:17:"shipping/citylink";i:121;s:14:"shipping/fedex";i:122;s:13:"shipping/flat";i:123;s:13:"shipping/free";i:124;s:13:"shipping/item";i:125;s:23:"shipping/parcelforce_48";i:126;s:15:"shipping/pickup";i:127;s:19:"shipping/royal_mail";i:128;s:12:"shipping/ups";i:129;s:13:"shipping/usps";i:130;s:15:"shipping/weight";i:131;s:11:"tool/backup";i:132;s:14:"tool/error_log";i:133;s:12:"total/coupon";i:134;s:12:"total/credit";i:135;s:14:"total/handling";i:136;s:16:"total/klarna_fee";i:137;s:19:"total/low_order_fee";i:138;s:12:"total/reward";i:139;s:14:"total/shipping";i:140;s:15:"total/sub_total";i:141;s:9:"total/tax";i:142;s:11:"total/total";i:143;s:13:"total/voucher";i:144;s:9:"user/user";i:145;s:20:"user/user_permission";i:146;s:22:"module/productcarousel";i:147;s:17:"module/bestseller";i:148;s:14:"module/welcome";i:149;s:18:"module/custom_html";i:150;s:11:"module/lpbc";i:151;s:13:"module/latest";i:152;s:32:"module/supercategorymenuadvanced";i:153;s:18:"module/information";}s:6:"modify";a:154:{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:14:"catalog/filter";i:5;s:19:"catalog/information";i:6;s:20:"catalog/manufacturer";i:7;s:14:"catalog/option";i:8;s:15:"catalog/product";i:9;s:15:"catalog/profile";i:10;s:14:"catalog/review";i:11;s:18:"common/filemanager";i:12;s:13:"design/banner";i:13;s:19:"design/custom_field";i:14;s:13:"design/layout";i:15;s:14:"extension/feed";i:16;s:17:"extension/manager";i:17;s:16:"extension/module";i:18;s:17:"extension/openbay";i:19;s:17:"extension/payment";i:20;s:18:"extension/shipping";i:21;s:15:"extension/total";i:22;s:16:"feed/google_base";i:23;s:19:"feed/google_sitemap";i:24;s:20:"localisation/country";i:25;s:21:"localisation/currency";i:26;s:21:"localisation/geo_zone";i:27;s:21:"localisation/language";i:28;s:25:"localisation/length_class";i:29;s:25:"localisation/order_status";i:30;s:26:"localisation/return_action";i:31;s:26:"localisation/return_reason";i:32;s:26:"localisation/return_status";i:33;s:25:"localisation/stock_status";i:34;s:22:"localisation/tax_class";i:35;s:21:"localisation/tax_rate";i:36;s:25:"localisation/weight_class";i:37;s:17:"localisation/zone";i:38;s:14:"module/account";i:39;s:16:"module/affiliate";i:40;s:29:"module/amazon_checkout_layout";i:41;s:13:"module/banner";i:42;s:17:"module/bestseller";i:43;s:15:"module/carousel";i:44;s:15:"module/category";i:45;s:18:"module/ebaydisplay";i:46;s:15:"module/featured";i:47;s:13:"module/filter";i:48;s:18:"module/google_talk";i:49;s:18:"module/information";i:50;s:13:"module/latest";i:51;s:17:"module/openbaypro";i:52;s:16:"module/pp_layout";i:53;s:16:"module/slideshow";i:54;s:14:"module/special";i:55;s:12:"module/store";i:56;s:14:"module/welcome";i:57;s:14:"openbay/amazon";i:58;s:22:"openbay/amazon_listing";i:59;s:22:"openbay/amazon_product";i:60;s:16:"openbay/amazonus";i:61;s:24:"openbay/amazonus_listing";i:62;s:24:"openbay/amazonus_product";i:63;s:20:"openbay/ebay_profile";i:64;s:21:"openbay/ebay_template";i:65;s:15:"openbay/openbay";i:66;s:23:"payment/amazon_checkout";i:67;s:24:"payment/authorizenet_aim";i:68;s:21:"payment/bank_transfer";i:69;s:14:"payment/cheque";i:70;s:11:"payment/cod";i:71;s:21:"payment/free_checkout";i:72;s:22:"payment/klarna_account";i:73;s:22:"payment/klarna_invoice";i:74;s:14:"payment/liqpay";i:75;s:20:"payment/moneybookers";i:76;s:14:"payment/nochex";i:77;s:15:"payment/paymate";i:78;s:16:"payment/paypoint";i:79;s:13:"payment/payza";i:80;s:26:"payment/perpetual_payments";i:81;s:18:"payment/pp_express";i:82;s:25:"payment/pp_payflow_iframe";i:83;s:14:"payment/pp_pro";i:84;s:21:"payment/pp_pro_iframe";i:85;s:17:"payment/pp_pro_pf";i:86;s:17:"payment/pp_pro_uk";i:87;s:19:"payment/pp_standard";i:88;s:15:"payment/sagepay";i:89;s:22:"payment/sagepay_direct";i:90;s:18:"payment/sagepay_us";i:91;s:19:"payment/twocheckout";i:92;s:28:"payment/web_payment_software";i:93;s:16:"payment/worldpay";i:94;s:27:"report/affiliate_commission";i:95;s:22:"report/customer_credit";i:96;s:22:"report/customer_online";i:97;s:21:"report/customer_order";i:98;s:22:"report/customer_reward";i:99;s:24:"report/product_purchased";i:100;s:21:"report/product_viewed";i:101;s:18:"report/sale_coupon";i:102;s:17:"report/sale_order";i:103;s:18:"report/sale_return";i:104;s:20:"report/sale_shipping";i:105;s:15:"report/sale_tax";i:106;s:14:"sale/affiliate";i:107;s:12:"sale/contact";i:108;s:11:"sale/coupon";i:109;s:13:"sale/customer";i:110;s:20:"sale/customer_ban_ip";i:111;s:19:"sale/customer_group";i:112;s:10:"sale/order";i:113;s:14:"sale/recurring";i:114;s:11:"sale/return";i:115;s:12:"sale/voucher";i:116;s:18:"sale/voucher_theme";i:117;s:15:"setting/setting";i:118;s:13:"setting/store";i:119;s:16:"shipping/auspost";i:120;s:17:"shipping/citylink";i:121;s:14:"shipping/fedex";i:122;s:13:"shipping/flat";i:123;s:13:"shipping/free";i:124;s:13:"shipping/item";i:125;s:23:"shipping/parcelforce_48";i:126;s:15:"shipping/pickup";i:127;s:19:"shipping/royal_mail";i:128;s:12:"shipping/ups";i:129;s:13:"shipping/usps";i:130;s:15:"shipping/weight";i:131;s:11:"tool/backup";i:132;s:14:"tool/error_log";i:133;s:12:"total/coupon";i:134;s:12:"total/credit";i:135;s:14:"total/handling";i:136;s:16:"total/klarna_fee";i:137;s:19:"total/low_order_fee";i:138;s:12:"total/reward";i:139;s:14:"total/shipping";i:140;s:15:"total/sub_total";i:141;s:9:"total/tax";i:142;s:11:"total/total";i:143;s:13:"total/voucher";i:144;s:9:"user/user";i:145;s:20:"user/user_permission";i:146;s:22:"module/productcarousel";i:147;s:17:"module/bestseller";i:148;s:14:"module/welcome";i:149;s:18:"module/custom_html";i:150;s:11:"module/lpbc";i:151;s:13:"module/latest";i:152;s:32:"module/supercategorymenuadvanced";i:153;s:18:"module/information";}}'),
3211(10, 'Demonstration', '');
3212
3213-- --------------------------------------------------------
3214
3215--
3216-- Table structure for table `voucher`
3217--
3218
3219CREATE TABLE IF NOT EXISTS `voucher` (
3220 `voucher_id` int(11) NOT NULL AUTO_INCREMENT,
3221 `order_id` int(11) NOT NULL,
3222 `code` varchar(10) NOT NULL,
3223 `from_name` varchar(64) NOT NULL,
3224 `from_email` varchar(96) NOT NULL,
3225 `to_name` varchar(64) NOT NULL,
3226 `to_email` varchar(96) NOT NULL,
3227 `voucher_theme_id` int(11) NOT NULL,
3228 `message` text NOT NULL,
3229 `amount` decimal(15,4) NOT NULL,
3230 `status` tinyint(1) NOT NULL,
3231 `date_added` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
3232 PRIMARY KEY (`voucher_id`)
3233) ENGINE=MyISAM DEFAULT CHARSET=utf8 AUTO_INCREMENT=1 ;
3234
3235-- --------------------------------------------------------
3236
3237--
3238-- Table structure for table `voucher_history`
3239--
3240
3241CREATE TABLE IF NOT EXISTS `voucher_history` (
3242 `voucher_history_id` int(11) NOT NULL AUTO_INCREMENT,
3243 `voucher_id` int(11) NOT NULL,
3244 `order_id` int(11) NOT NULL,
3245 `amount` decimal(15,4) NOT NULL,
3246 `date_added` datetime NOT NULL,
3247 PRIMARY KEY (`voucher_history_id`)
3248) ENGINE=MyISAM DEFAULT CHARSET=utf8 AUTO_INCREMENT=1 ;
3249
3250-- --------------------------------------------------------
3251
3252--
3253-- Table structure for table `voucher_theme`
3254--
3255
3256CREATE TABLE IF NOT EXISTS `voucher_theme` (
3257 `voucher_theme_id` int(11) NOT NULL AUTO_INCREMENT,
3258 `image` varchar(255) NOT NULL,
3259 PRIMARY KEY (`voucher_theme_id`)
3260) ENGINE=MyISAM DEFAULT CHARSET=utf8 AUTO_INCREMENT=9 ;
3261
3262--
3263-- Dumping data for table `voucher_theme`
3264--
3265
3266INSERT INTO `voucher_theme` (`voucher_theme_id`, `image`) VALUES
3267(8, 'data/demo/canon_eos_5d_2.jpg'),
3268(7, 'data/demo/gift-voucher-birthday.jpg'),
3269(6, 'data/demo/apple_logo.jpg');
3270
3271-- --------------------------------------------------------
3272
3273--
3274-- Table structure for table `voucher_theme_description`
3275--
3276
3277CREATE TABLE IF NOT EXISTS `voucher_theme_description` (
3278 `voucher_theme_id` int(11) NOT NULL,
3279 `language_id` int(11) NOT NULL,
3280 `name` varchar(32) NOT NULL,
3281 PRIMARY KEY (`voucher_theme_id`,`language_id`)
3282) ENGINE=MyISAM DEFAULT CHARSET=utf8;
3283
3284--
3285-- Dumping data for table `voucher_theme_description`
3286--
3287
3288INSERT INTO `voucher_theme_description` (`voucher_theme_id`, `language_id`, `name`) VALUES
3289(6, 1, 'Christmas'),
3290(7, 1, 'Birthday'),
3291(8, 1, 'General');
3292
3293-- --------------------------------------------------------
3294
3295--
3296-- Table structure for table `weight_class`
3297--
3298
3299CREATE TABLE IF NOT EXISTS `weight_class` (
3300 `weight_class_id` int(11) NOT NULL AUTO_INCREMENT,
3301 `value` decimal(15,8) NOT NULL DEFAULT '0.00000000',
3302 PRIMARY KEY (`weight_class_id`)
3303) ENGINE=MyISAM DEFAULT CHARSET=utf8 AUTO_INCREMENT=7 ;
3304
3305--
3306-- Dumping data for table `weight_class`
3307--
3308
3309INSERT INTO `weight_class` (`weight_class_id`, `value`) VALUES
3310(1, '1.00000000'),
3311(2, '1000.00000000'),
3312(5, '2.20460000'),
3313(6, '35.27400000');
3314
3315-- --------------------------------------------------------
3316
3317--
3318-- Table structure for table `weight_class_description`
3319--
3320
3321CREATE TABLE IF NOT EXISTS `weight_class_description` (
3322 `weight_class_id` int(11) NOT NULL AUTO_INCREMENT,
3323 `language_id` int(11) NOT NULL,
3324 `title` varchar(32) NOT NULL,
3325 `unit` varchar(4) NOT NULL,
3326 PRIMARY KEY (`weight_class_id`,`language_id`)
3327) ENGINE=MyISAM DEFAULT CHARSET=utf8 AUTO_INCREMENT=7 ;
3328
3329--
3330-- Dumping data for table `weight_class_description`
3331--
3332
3333INSERT INTO `weight_class_description` (`weight_class_id`, `language_id`, `title`, `unit`) VALUES
3334(1, 1, 'Kilogram', 'kg'),
3335(2, 1, 'Gram', 'g'),
3336(5, 1, 'Pound ', 'lb'),
3337(6, 1, 'Ounce', 'oz');
3338
3339-- --------------------------------------------------------
3340
3341--
3342-- Table structure for table `zone`
3343--
3344
3345CREATE TABLE IF NOT EXISTS `zone` (
3346 `zone_id` int(11) NOT NULL AUTO_INCREMENT,
3347 `country_id` int(11) NOT NULL,
3348 `name` varchar(128) NOT NULL,
3349 `code` varchar(32) NOT NULL,
3350 `status` tinyint(1) NOT NULL DEFAULT '1',
3351 PRIMARY KEY (`zone_id`)
3352) ENGINE=MyISAM DEFAULT CHARSET=utf8 AUTO_INCREMENT=4033 ;
3353
3354--
3355-- Dumping data for table `zone`
3356--
3357
3358INSERT INTO `zone` (`zone_id`, `country_id`, `name`, `code`, `status`) VALUES
3359(1, 1, 'Badakhshan', 'BDS', 1),
3360(2, 1, 'Badghis', 'BDG', 1),
3361(3, 1, 'Baghlan', 'BGL', 1),
3362(4, 1, 'Balkh', 'BAL', 1),
3363(5, 1, 'Bamian', 'BAM', 1),
3364(6, 1, 'Farah', 'FRA', 1),
3365(7, 1, 'Faryab', 'FYB', 1),
3366(8, 1, 'Ghazni', 'GHA', 1),
3367(9, 1, 'Ghowr', 'GHO', 1),
3368(10, 1, 'Helmand', 'HEL', 1),
3369(11, 1, 'Herat', 'HER', 1),
3370(12, 1, 'Jowzjan', 'JOW', 1),
3371(13, 1, 'Kabul', 'KAB', 1),
3372(14, 1, 'Kandahar', 'KAN', 1),
3373(15, 1, 'Kapisa', 'KAP', 1),
3374(16, 1, 'Khost', 'KHO', 1),
3375(17, 1, 'Konar', 'KNR', 1),
3376(18, 1, 'Kondoz', 'KDZ', 1),
3377(19, 1, 'Laghman', 'LAG', 1),
3378(20, 1, 'Lowgar', 'LOW', 1),
3379(21, 1, 'Nangrahar', 'NAN', 1),
3380(22, 1, 'Nimruz', 'NIM', 1),
3381(23, 1, 'Nurestan', 'NUR', 1),
3382(24, 1, 'Oruzgan', 'ORU', 1),
3383(25, 1, 'Paktia', 'PIA', 1),
3384(26, 1, 'Paktika', 'PKA', 1),
3385(27, 1, 'Parwan', 'PAR', 1),
3386(28, 1, 'Samangan', 'SAM', 1),
3387(29, 1, 'Sar-e Pol', 'SAR', 1),
3388(30, 1, 'Takhar', 'TAK', 1),
3389(31, 1, 'Wardak', 'WAR', 1),
3390(32, 1, 'Zabol', 'ZAB', 1),
3391(33, 2, 'Berat', 'BR', 1),
3392(34, 2, 'Bulqize', 'BU', 1),
3393(35, 2, 'Delvine', 'DL', 1),
3394(36, 2, 'Devoll', 'DV', 1),
3395(37, 2, 'Diber', 'DI', 1),
3396(38, 2, 'Durres', 'DR', 1),
3397(39, 2, 'Elbasan', 'EL', 1),
3398(40, 2, 'Kolonje', 'ER', 1),
3399(41, 2, 'Fier', 'FR', 1),
3400(42, 2, 'Gjirokaster', 'GJ', 1),
3401(43, 2, 'Gramsh', 'GR', 1),
3402(44, 2, 'Has', 'HA', 1),
3403(45, 2, 'Kavaje', 'KA', 1),
3404(46, 2, 'Kurbin', 'KB', 1),
3405(47, 2, 'Kucove', 'KC', 1),
3406(48, 2, 'Korce', 'KO', 1),
3407(49, 2, 'Kruje', 'KR', 1),
3408(50, 2, 'Kukes', 'KU', 1),
3409(51, 2, 'Librazhd', 'LB', 1),
3410(52, 2, 'Lezhe', 'LE', 1),
3411(53, 2, 'Lushnje', 'LU', 1),
3412(54, 2, 'Malesi e Madhe', 'MM', 1),
3413(55, 2, 'Mallakaster', 'MK', 1),
3414(56, 2, 'Mat', 'MT', 1),
3415(57, 2, 'Mirdite', 'MR', 1),
3416(58, 2, 'Peqin', 'PQ', 1),
3417(59, 2, 'Permet', 'PR', 1),
3418(60, 2, 'Pogradec', 'PG', 1),
3419(61, 2, 'Puke', 'PU', 1),
3420(62, 2, 'Shkoder', 'SH', 1),
3421(63, 2, 'Skrapar', 'SK', 1),
3422(64, 2, 'Sarande', 'SR', 1),
3423(65, 2, 'Tepelene', 'TE', 1),
3424(66, 2, 'Tropoje', 'TP', 1),
3425(67, 2, 'Tirane', 'TR', 1),
3426(68, 2, 'Vlore', 'VL', 1),
3427(69, 3, 'Adrar', 'ADR', 1),
3428(70, 3, 'Ain Defla', 'ADE', 1),
3429(71, 3, 'Ain Temouchent', 'ATE', 1),
3430(72, 3, 'Alger', 'ALG', 1),
3431(73, 3, 'Annaba', 'ANN', 1),
3432(74, 3, 'Batna', 'BAT', 1),
3433(75, 3, 'Bechar', 'BEC', 1),
3434(76, 3, 'Bejaia', 'BEJ', 1),
3435(77, 3, 'Biskra', 'BIS', 1),
3436(78, 3, 'Blida', 'BLI', 1),
3437(79, 3, 'Bordj Bou Arreridj', 'BBA', 1),
3438(80, 3, 'Bouira', 'BOA', 1),
3439(81, 3, 'Boumerdes', 'BMD', 1),
3440(82, 3, 'Chlef', 'CHL', 1),
3441(83, 3, 'Constantine', 'CON', 1),
3442(84, 3, 'Djelfa', 'DJE', 1),
3443(85, 3, 'El Bayadh', 'EBA', 1),
3444(86, 3, 'El Oued', 'EOU', 1),
3445(87, 3, 'El Tarf', 'ETA', 1),
3446(88, 3, 'Ghardaia', 'GHA', 1),
3447(89, 3, 'Guelma', 'GUE', 1),
3448(90, 3, 'Illizi', 'ILL', 1),
3449(91, 3, 'Jijel', 'JIJ', 1),
3450(92, 3, 'Khenchela', 'KHE', 1),
3451(93, 3, 'Laghouat', 'LAG', 1),
3452(94, 3, 'Muaskar', 'MUA', 1),
3453(95, 3, 'Medea', 'MED', 1),
3454(96, 3, 'Mila', 'MIL', 1),
3455(97, 3, 'Mostaganem', 'MOS', 1),
3456(98, 3, 'M''Sila', 'MSI', 1),
3457(99, 3, 'Naama', 'NAA', 1),
3458(100, 3, 'Oran', 'ORA', 1),
3459(101, 3, 'Ouargla', 'OUA', 1),
3460(102, 3, 'Oum el-Bouaghi', 'OEB', 1),
3461(103, 3, 'Relizane', 'REL', 1),
3462(104, 3, 'Saida', 'SAI', 1),
3463(105, 3, 'Setif', 'SET', 1),
3464(106, 3, 'Sidi Bel Abbes', 'SBA', 1),
3465(107, 3, 'Skikda', 'SKI', 1),
3466(108, 3, 'Souk Ahras', 'SAH', 1),
3467(109, 3, 'Tamanghasset', 'TAM', 1),
3468(110, 3, 'Tebessa', 'TEB', 1),
3469(111, 3, 'Tiaret', 'TIA', 1),
3470(112, 3, 'Tindouf', 'TIN', 1),
3471(113, 3, 'Tipaza', 'TIP', 1),
3472(114, 3, 'Tissemsilt', 'TIS', 1),
3473(115, 3, 'Tizi Ouzou', 'TOU', 1),
3474(116, 3, 'Tlemcen', 'TLE', 1),
3475(117, 4, 'Eastern', 'E', 1),
3476(118, 4, 'Manu''a', 'M', 1),
3477(119, 4, 'Rose Island', 'R', 1),
3478(120, 4, 'Swains Island', 'S', 1),
3479(121, 4, 'Western', 'W', 1),
3480(122, 5, 'Andorra la Vella', 'ALV', 1),
3481(123, 5, 'Canillo', 'CAN', 1),
3482(124, 5, 'Encamp', 'ENC', 1),
3483(125, 5, 'Escaldes-Engordany', 'ESE', 1),
3484(126, 5, 'La Massana', 'LMA', 1),
3485(127, 5, 'Ordino', 'ORD', 1),
3486(128, 5, 'Sant Julia de Loria', 'SJL', 1),
3487(129, 6, 'Bengo', 'BGO', 1),
3488(130, 6, 'Benguela', 'BGU', 1),
3489(131, 6, 'Bie', 'BIE', 1),
3490(132, 6, 'Cabinda', 'CAB', 1),
3491(133, 6, 'Cuando-Cubango', 'CCU', 1),
3492(134, 6, 'Cuanza Norte', 'CNO', 1),
3493(135, 6, 'Cuanza Sul', 'CUS', 1),
3494(136, 6, 'Cunene', 'CNN', 1),
3495(137, 6, 'Huambo', 'HUA', 1),
3496(138, 6, 'Huila', 'HUI', 1),
3497(139, 6, 'Luanda', 'LUA', 1),
3498(140, 6, 'Lunda Norte', 'LNO', 1),
3499(141, 6, 'Lunda Sul', 'LSU', 1),
3500(142, 6, 'Malange', 'MAL', 1),
3501(143, 6, 'Moxico', 'MOX', 1),
3502(144, 6, 'Namibe', 'NAM', 1),
3503(145, 6, 'Uige', 'UIG', 1),
3504(146, 6, 'Zaire', 'ZAI', 1),
3505(147, 9, 'Saint George', 'ASG', 1),
3506(148, 9, 'Saint John', 'ASJ', 1),
3507(149, 9, 'Saint Mary', 'ASM', 1),
3508(150, 9, 'Saint Paul', 'ASL', 1),
3509(151, 9, 'Saint Peter', 'ASR', 1),
3510(152, 9, 'Saint Philip', 'ASH', 1),
3511(153, 9, 'Barbuda', 'BAR', 1),
3512(154, 9, 'Redonda', 'RED', 1),
3513(155, 10, 'Antartida e Islas del Atlantico', 'AN', 1),
3514(156, 10, 'Buenos Aires', 'BA', 1),
3515(157, 10, 'Catamarca', 'CA', 1),
3516(158, 10, 'Chaco', 'CH', 1),
3517(159, 10, 'Chubut', 'CU', 1),
3518(160, 10, 'Cordoba', 'CO', 1),
3519(161, 10, 'Corrientes', 'CR', 1),
3520(162, 10, 'Distrito Federal', 'DF', 1),
3521(163, 10, 'Entre Rios', 'ER', 1),
3522(164, 10, 'Formosa', 'FO', 1),
3523(165, 10, 'Jujuy', 'JU', 1),
3524(166, 10, 'La Pampa', 'LP', 1),
3525(167, 10, 'La Rioja', 'LR', 1),
3526(168, 10, 'Mendoza', 'ME', 1),
3527(169, 10, 'Misiones', 'MI', 1),
3528(170, 10, 'Neuquen', 'NE', 1),
3529(171, 10, 'Rio Negro', 'RN', 1),
3530(172, 10, 'Salta', 'SA', 1),
3531(173, 10, 'San Juan', 'SJ', 1),
3532(174, 10, 'San Luis', 'SL', 1),
3533(175, 10, 'Santa Cruz', 'SC', 1),
3534(176, 10, 'Santa Fe', 'SF', 1),
3535(177, 10, 'Santiago del Estero', 'SD', 1),
3536(178, 10, 'Tierra del Fuego', 'TF', 1),
3537(179, 10, 'Tucuman', 'TU', 1),
3538(180, 11, 'Aragatsotn', 'AGT', 1),
3539(181, 11, 'Ararat', 'ARR', 1),
3540(182, 11, 'Armavir', 'ARM', 1),
3541(183, 11, 'Geghark''unik''', 'GEG', 1),
3542(184, 11, 'Kotayk''', 'KOT', 1),
3543(185, 11, 'Lorri', 'LOR', 1),
3544(186, 11, 'Shirak', 'SHI', 1),
3545(187, 11, 'Syunik''', 'SYU', 1),
3546(188, 11, 'Tavush', 'TAV', 1),
3547(189, 11, 'Vayots'' Dzor', 'VAY', 1),
3548(190, 11, 'Yerevan', 'YER', 1),
3549(191, 13, 'Australian Capital Territory', 'ACT', 1),
3550(192, 13, 'New South Wales', 'NSW', 1),
3551(193, 13, 'Northern Territory', 'NT', 1),
3552(194, 13, 'Queensland', 'QLD', 1),
3553(195, 13, 'South Australia', 'SA', 1),
3554(196, 13, 'Tasmania', 'TAS', 1),
3555(197, 13, 'Victoria', 'VIC', 1),
3556(198, 13, 'Western Australia', 'WA', 1),
3557(199, 14, 'Burgenland', 'BUR', 1),
3558(200, 14, 'Kärnten', 'KAR', 1),
3559(201, 14, 'Niederösterreich', 'NOS', 1),
3560(202, 14, 'Oberösterreich', 'OOS', 1),
3561(203, 14, 'Salzburg', 'SAL', 1),
3562(204, 14, 'Steiermark', 'STE', 1),
3563(205, 14, 'Tirol', 'TIR', 1),
3564(206, 14, 'Vorarlberg', 'VOR', 1),
3565(207, 14, 'Wien', 'WIE', 1),
3566(208, 15, 'Ali Bayramli', 'AB', 1),
3567(209, 15, 'Abseron', 'ABS', 1),
3568(210, 15, 'AgcabAdi', 'AGC', 1),
3569(211, 15, 'Agdam', 'AGM', 1),
3570(212, 15, 'Agdas', 'AGS', 1),
3571(213, 15, 'Agstafa', 'AGA', 1),
3572(214, 15, 'Agsu', 'AGU', 1),
3573(215, 15, 'Astara', 'AST', 1),
3574(216, 15, 'Baki', 'BA', 1),
3575(217, 15, 'BabAk', 'BAB', 1),
3576(218, 15, 'BalakAn', 'BAL', 1),
3577(219, 15, 'BArdA', 'BAR', 1),
3578(220, 15, 'Beylaqan', 'BEY', 1),
3579(221, 15, 'Bilasuvar', 'BIL', 1),
3580(222, 15, 'Cabrayil', 'CAB', 1),
3581(223, 15, 'Calilabab', 'CAL', 1),
3582(224, 15, 'Culfa', 'CUL', 1),
3583(225, 15, 'Daskasan', 'DAS', 1),
3584(226, 15, 'Davaci', 'DAV', 1),
3585(227, 15, 'Fuzuli', 'FUZ', 1),
3586(228, 15, 'Ganca', 'GA', 1),
3587(229, 15, 'Gadabay', 'GAD', 1),
3588(230, 15, 'Goranboy', 'GOR', 1),
3589(231, 15, 'Goycay', 'GOY', 1),
3590(232, 15, 'Haciqabul', 'HAC', 1),
3591(233, 15, 'Imisli', 'IMI', 1),
3592(234, 15, 'Ismayilli', 'ISM', 1),
3593(235, 15, 'Kalbacar', 'KAL', 1),
3594(236, 15, 'Kurdamir', 'KUR', 1),
3595(237, 15, 'Lankaran', 'LA', 1),
3596(238, 15, 'Lacin', 'LAC', 1),
3597(239, 15, 'Lankaran', 'LAN', 1),
3598(240, 15, 'Lerik', 'LER', 1),
3599(241, 15, 'Masalli', 'MAS', 1),
3600(242, 15, 'Mingacevir', 'MI', 1),
3601(243, 15, 'Naftalan', 'NA', 1),
3602(244, 15, 'Neftcala', 'NEF', 1),
3603(245, 15, 'Oguz', 'OGU', 1),
3604(246, 15, 'Ordubad', 'ORD', 1),
3605(247, 15, 'Qabala', 'QAB', 1),
3606(248, 15, 'Qax', 'QAX', 1),
3607(249, 15, 'Qazax', 'QAZ', 1),
3608(250, 15, 'Qobustan', 'QOB', 1),
3609(251, 15, 'Quba', 'QBA', 1),
3610(252, 15, 'Qubadli', 'QBI', 1),
3611(253, 15, 'Qusar', 'QUS', 1),
3612(254, 15, 'Saki', 'SA', 1),
3613(255, 15, 'Saatli', 'SAT', 1),
3614(256, 15, 'Sabirabad', 'SAB', 1),
3615(257, 15, 'Sadarak', 'SAD', 1),
3616(258, 15, 'Sahbuz', 'SAH', 1),
3617(259, 15, 'Saki', 'SAK', 1),
3618(260, 15, 'Salyan', 'SAL', 1),
3619(261, 15, 'Sumqayit', 'SM', 1),
3620(262, 15, 'Samaxi', 'SMI', 1),
3621(263, 15, 'Samkir', 'SKR', 1),
3622(264, 15, 'Samux', 'SMX', 1),
3623(265, 15, 'Sarur', 'SAR', 1),
3624(266, 15, 'Siyazan', 'SIY', 1),
3625(267, 15, 'Susa', 'SS', 1),
3626(268, 15, 'Susa', 'SUS', 1),
3627(269, 15, 'Tartar', 'TAR', 1),
3628(270, 15, 'Tovuz', 'TOV', 1),
3629(271, 15, 'Ucar', 'UCA', 1),
3630(272, 15, 'Xankandi', 'XA', 1),
3631(273, 15, 'Xacmaz', 'XAC', 1),
3632(274, 15, 'Xanlar', 'XAN', 1),
3633(275, 15, 'Xizi', 'XIZ', 1),
3634(276, 15, 'Xocali', 'XCI', 1),
3635(277, 15, 'Xocavand', 'XVD', 1),
3636(278, 15, 'Yardimli', 'YAR', 1),
3637(279, 15, 'Yevlax', 'YEV', 1),
3638(280, 15, 'Zangilan', 'ZAN', 1),
3639(281, 15, 'Zaqatala', 'ZAQ', 1),
3640(282, 15, 'Zardab', 'ZAR', 1),
3641(283, 15, 'Naxcivan', 'NX', 1),
3642(284, 16, 'Acklins', 'ACK', 1),
3643(285, 16, 'Berry Islands', 'BER', 1),
3644(286, 16, 'Bimini', 'BIM', 1),
3645(287, 16, 'Black Point', 'BLK', 1),
3646(288, 16, 'Cat Island', 'CAT', 1),
3647(289, 16, 'Central Abaco', 'CAB', 1),
3648(290, 16, 'Central Andros', 'CAN', 1),
3649(291, 16, 'Central Eleuthera', 'CEL', 1),
3650(292, 16, 'City of Freeport', 'FRE', 1),
3651(293, 16, 'Crooked Island', 'CRO', 1),
3652(294, 16, 'East Grand Bahama', 'EGB', 1),
3653(295, 16, 'Exuma', 'EXU', 1),
3654(296, 16, 'Grand Cay', 'GRD', 1),
3655(297, 16, 'Harbour Island', 'HAR', 1),
3656(298, 16, 'Hope Town', 'HOP', 1),
3657(299, 16, 'Inagua', 'INA', 1),
3658(300, 16, 'Long Island', 'LNG', 1),
3659(301, 16, 'Mangrove Cay', 'MAN', 1),
3660(302, 16, 'Mayaguana', 'MAY', 1),
3661(303, 16, 'Moore''s Island', 'MOO', 1),
3662(304, 16, 'North Abaco', 'NAB', 1),
3663(305, 16, 'North Andros', 'NAN', 1),
3664(306, 16, 'North Eleuthera', 'NEL', 1),
3665(307, 16, 'Ragged Island', 'RAG', 1),
3666(308, 16, 'Rum Cay', 'RUM', 1),
3667(309, 16, 'San Salvador', 'SAL', 1),
3668(310, 16, 'South Abaco', 'SAB', 1),
3669(311, 16, 'South Andros', 'SAN', 1),
3670(312, 16, 'South Eleuthera', 'SEL', 1),
3671(313, 16, 'Spanish Wells', 'SWE', 1),
3672(314, 16, 'West Grand Bahama', 'WGB', 1),
3673(315, 17, 'Capital', 'CAP', 1),
3674(316, 17, 'Central', 'CEN', 1),
3675(317, 17, 'Muharraq', 'MUH', 1),
3676(318, 17, 'Northern', 'NOR', 1),
3677(319, 17, 'Southern', 'SOU', 1),
3678(320, 18, 'Barisal', 'BAR', 1),
3679(321, 18, 'Chittagong', 'CHI', 1),
3680(322, 18, 'Dhaka', 'DHA', 1),
3681(323, 18, 'Khulna', 'KHU', 1),
3682(324, 18, 'Rajshahi', 'RAJ', 1),
3683(325, 18, 'Sylhet', 'SYL', 1),
3684(326, 19, 'Christ Church', 'CC', 1),
3685(327, 19, 'Saint Andrew', 'AND', 1),
3686(328, 19, 'Saint George', 'GEO', 1),
3687(329, 19, 'Saint James', 'JAM', 1),
3688(330, 19, 'Saint John', 'JOH', 1),
3689(331, 19, 'Saint Joseph', 'JOS', 1),
3690(332, 19, 'Saint Lucy', 'LUC', 1),
3691(333, 19, 'Saint Michael', 'MIC', 1),
3692(334, 19, 'Saint Peter', 'PET', 1),
3693(335, 19, 'Saint Philip', 'PHI', 1),
3694(336, 19, 'Saint Thomas', 'THO', 1),
3695(337, 20, 'Brestskaya (Brest)', 'BR', 1),
3696(338, 20, 'Homyel''skaya (Homyel'')', 'HO', 1),
3697(339, 20, 'Horad Minsk', 'HM', 1),
3698(340, 20, 'Hrodzyenskaya (Hrodna)', 'HR', 1),
3699(341, 20, 'Mahilyowskaya (Mahilyow)', 'MA', 1),
3700(342, 20, 'Minskaya', 'MI', 1),
3701(343, 20, 'Vitsyebskaya (Vitsyebsk)', 'VI', 1),
3702(344, 21, 'Antwerpen', 'VAN', 1),
3703(345, 21, 'Brabant Wallon', 'WBR', 1),
3704(346, 21, 'Hainaut', 'WHT', 1),
3705(347, 21, 'Liège', 'WLG', 1),
3706(348, 21, 'Limburg', 'VLI', 1),
3707(349, 21, 'Luxembourg', 'WLX', 1),
3708(350, 21, 'Namur', 'WNA', 1),
3709(351, 21, 'Oost-Vlaanderen', 'VOV', 1),
3710(352, 21, 'Vlaams Brabant', 'VBR', 1),
3711(353, 21, 'West-Vlaanderen', 'VWV', 1),
3712(354, 22, 'Belize', 'BZ', 1),
3713(355, 22, 'Cayo', 'CY', 1),
3714(356, 22, 'Corozal', 'CR', 1),
3715(357, 22, 'Orange Walk', 'OW', 1),
3716(358, 22, 'Stann Creek', 'SC', 1),
3717(359, 22, 'Toledo', 'TO', 1),
3718(360, 23, 'Alibori', 'AL', 1),
3719(361, 23, 'Atakora', 'AK', 1),
3720(362, 23, 'Atlantique', 'AQ', 1),
3721(363, 23, 'Borgou', 'BO', 1),
3722(364, 23, 'Collines', 'CO', 1),
3723(365, 23, 'Donga', 'DO', 1),
3724(366, 23, 'Kouffo', 'KO', 1),
3725(367, 23, 'Littoral', 'LI', 1),
3726(368, 23, 'Mono', 'MO', 1),
3727(369, 23, 'Oueme', 'OU', 1),
3728(370, 23, 'Plateau', 'PL', 1),
3729(371, 23, 'Zou', 'ZO', 1),
3730(372, 24, 'Devonshire', 'DS', 1),
3731(373, 24, 'Hamilton City', 'HC', 1),
3732(374, 24, 'Hamilton', 'HA', 1),
3733(375, 24, 'Paget', 'PG', 1),
3734(376, 24, 'Pembroke', 'PB', 1),
3735(377, 24, 'Saint George City', 'GC', 1),
3736(378, 24, 'Saint George''s', 'SG', 1),
3737(379, 24, 'Sandys', 'SA', 1),
3738(380, 24, 'Smith''s', 'SM', 1),
3739(381, 24, 'Southampton', 'SH', 1),
3740(382, 24, 'Warwick', 'WA', 1),
3741(383, 25, 'Bumthang', 'BUM', 1),
3742(384, 25, 'Chukha', 'CHU', 1),
3743(385, 25, 'Dagana', 'DAG', 1),
3744(386, 25, 'Gasa', 'GAS', 1),
3745(387, 25, 'Haa', 'HAA', 1),
3746(388, 25, 'Lhuntse', 'LHU', 1),
3747(389, 25, 'Mongar', 'MON', 1),
3748(390, 25, 'Paro', 'PAR', 1),
3749(391, 25, 'Pemagatshel', 'PEM', 1),
3750(392, 25, 'Punakha', 'PUN', 1),
3751(393, 25, 'Samdrup Jongkhar', 'SJO', 1),
3752(394, 25, 'Samtse', 'SAT', 1),
3753(395, 25, 'Sarpang', 'SAR', 1),
3754(396, 25, 'Thimphu', 'THI', 1),
3755(397, 25, 'Trashigang', 'TRG', 1),
3756(398, 25, 'Trashiyangste', 'TRY', 1),
3757(399, 25, 'Trongsa', 'TRO', 1),
3758(400, 25, 'Tsirang', 'TSI', 1),
3759(401, 25, 'Wangdue Phodrang', 'WPH', 1),
3760(402, 25, 'Zhemgang', 'ZHE', 1),
3761(403, 26, 'Beni', 'BEN', 1),
3762(404, 26, 'Chuquisaca', 'CHU', 1),
3763(405, 26, 'Cochabamba', 'COC', 1),
3764(406, 26, 'La Paz', 'LPZ', 1),
3765(407, 26, 'Oruro', 'ORU', 1),
3766(408, 26, 'Pando', 'PAN', 1),
3767(409, 26, 'Potosi', 'POT', 1),
3768(410, 26, 'Santa Cruz', 'SCZ', 1),
3769(411, 26, 'Tarija', 'TAR', 1),
3770(412, 27, 'Brcko district', 'BRO', 1),
3771(413, 27, 'Unsko-Sanski Kanton', 'FUS', 1),
3772(414, 27, 'Posavski Kanton', 'FPO', 1),
3773(415, 27, 'Tuzlanski Kanton', 'FTU', 1),
3774(416, 27, 'Zenicko-Dobojski Kanton', 'FZE', 1),
3775(417, 27, 'Bosanskopodrinjski Kanton', 'FBP', 1),
3776(418, 27, 'Srednjebosanski Kanton', 'FSB', 1),
3777(419, 27, 'Hercegovacko-neretvanski Kanton', 'FHN', 1),
3778(420, 27, 'Zapadnohercegovacka Zupanija', 'FZH', 1),
3779(421, 27, 'Kanton Sarajevo', 'FSA', 1),
3780(422, 27, 'Zapadnobosanska', 'FZA', 1),
3781(423, 27, 'Banja Luka', 'SBL', 1),
3782(424, 27, 'Doboj', 'SDO', 1),
3783(425, 27, 'Bijeljina', 'SBI', 1),
3784(426, 27, 'Vlasenica', 'SVL', 1),
3785(427, 27, 'Sarajevo-Romanija or Sokolac', 'SSR', 1),
3786(428, 27, 'Foca', 'SFO', 1),
3787(429, 27, 'Trebinje', 'STR', 1),
3788(430, 28, 'Central', 'CE', 1),
3789(431, 28, 'Ghanzi', 'GH', 1),
3790(432, 28, 'Kgalagadi', 'KD', 1),
3791(433, 28, 'Kgatleng', 'KT', 1),
3792(434, 28, 'Kweneng', 'KW', 1),
3793(435, 28, 'Ngamiland', 'NG', 1),
3794(436, 28, 'North East', 'NE', 1),
3795(437, 28, 'North West', 'NW', 1),
3796(438, 28, 'South East', 'SE', 1),
3797(439, 28, 'Southern', 'SO', 1),
3798(440, 30, 'Acre', 'AC', 1),
3799(441, 30, 'Alagoas', 'AL', 1),
3800(442, 30, 'Amapá', 'AP', 1),
3801(443, 30, 'Amazonas', 'AM', 1),
3802(444, 30, 'Bahia', 'BA', 1),
3803(445, 30, 'Ceará', 'CE', 1),
3804(446, 30, 'Distrito Federal', 'DF', 1),
3805(447, 30, 'EspÃrito Santo', 'ES', 1),
3806(448, 30, 'Goiás', 'GO', 1),
3807(449, 30, 'Maranhão', 'MA', 1),
3808(450, 30, 'Mato Grosso', 'MT', 1),
3809(451, 30, 'Mato Grosso do Sul', 'MS', 1),
3810(452, 30, 'Minas Gerais', 'MG', 1),
3811(453, 30, 'Pará', 'PA', 1),
3812(454, 30, 'ParaÃba', 'PB', 1),
3813(455, 30, 'Paraná', 'PR', 1),
3814(456, 30, 'Pernambuco', 'PE', 1),
3815(457, 30, 'PiauÃ', 'PI', 1),
3816(458, 30, 'Rio de Janeiro', 'RJ', 1),
3817(459, 30, 'Rio Grande do Norte', 'RN', 1),
3818(460, 30, 'Rio Grande do Sul', 'RS', 1),
3819(461, 30, 'Rondônia', 'RO', 1),
3820(462, 30, 'Roraima', 'RR', 1),
3821(463, 30, 'Santa Catarina', 'SC', 1),
3822(464, 30, 'São Paulo', 'SP', 1),
3823(465, 30, 'Sergipe', 'SE', 1),
3824(466, 30, 'Tocantins', 'TO', 1),
3825(467, 31, 'Peros Banhos', 'PB', 1),
3826(468, 31, 'Salomon Islands', 'SI', 1),
3827(469, 31, 'Nelsons Island', 'NI', 1),
3828(470, 31, 'Three Brothers', 'TB', 1),
3829(471, 31, 'Eagle Islands', 'EA', 1),
3830(472, 31, 'Danger Island', 'DI', 1),
3831(473, 31, 'Egmont Islands', 'EG', 1),
3832(474, 31, 'Diego Garcia', 'DG', 1),
3833(475, 32, 'Belait', 'BEL', 1),
3834(476, 32, 'Brunei and Muara', 'BRM', 1),
3835(477, 32, 'Temburong', 'TEM', 1),
3836(478, 32, 'Tutong', 'TUT', 1),
3837(479, 33, 'Blagoevgrad', '', 1),
3838(480, 33, 'Burgas', '', 1),
3839(481, 33, 'Dobrich', '', 1),
3840(482, 33, 'Gabrovo', '', 1),
3841(483, 33, 'Haskovo', '', 1),
3842(484, 33, 'Kardjali', '', 1),
3843(485, 33, 'Kyustendil', '', 1),
3844(486, 33, 'Lovech', '', 1),
3845(487, 33, 'Montana', '', 1),
3846(488, 33, 'Pazardjik', '', 1),
3847(489, 33, 'Pernik', '', 1),
3848(490, 33, 'Pleven', '', 1),
3849(491, 33, 'Plovdiv', '', 1),
3850(492, 33, 'Razgrad', '', 1),
3851(493, 33, 'Shumen', '', 1),
3852(494, 33, 'Silistra', '', 1),
3853(495, 33, 'Sliven', '', 1),
3854(496, 33, 'Smolyan', '', 1),
3855(497, 33, 'Sofia', '', 1),
3856(498, 33, 'Sofia - town', '', 1),
3857(499, 33, 'Stara Zagora', '', 1),
3858(500, 33, 'Targovishte', '', 1),
3859(501, 33, 'Varna', '', 1),
3860(502, 33, 'Veliko Tarnovo', '', 1),
3861(503, 33, 'Vidin', '', 1),
3862(504, 33, 'Vratza', '', 1),
3863(505, 33, 'Yambol', '', 1),
3864(506, 34, 'Bale', 'BAL', 1),
3865(507, 34, 'Bam', 'BAM', 1),
3866(508, 34, 'Banwa', 'BAN', 1),
3867(509, 34, 'Bazega', 'BAZ', 1),
3868(510, 34, 'Bougouriba', 'BOR', 1),
3869(511, 34, 'Boulgou', 'BLG', 1),
3870(512, 34, 'Boulkiemde', 'BOK', 1),
3871(513, 34, 'Comoe', 'COM', 1),
3872(514, 34, 'Ganzourgou', 'GAN', 1),
3873(515, 34, 'Gnagna', 'GNA', 1),
3874(516, 34, 'Gourma', 'GOU', 1),
3875(517, 34, 'Houet', 'HOU', 1),
3876(518, 34, 'Ioba', 'IOA', 1),
3877(519, 34, 'Kadiogo', 'KAD', 1),
3878(520, 34, 'Kenedougou', 'KEN', 1),
3879(521, 34, 'Komondjari', 'KOD', 1),
3880(522, 34, 'Kompienga', 'KOP', 1),
3881(523, 34, 'Kossi', 'KOS', 1),
3882(524, 34, 'Koulpelogo', 'KOL', 1),
3883(525, 34, 'Kouritenga', 'KOT', 1),
3884(526, 34, 'Kourweogo', 'KOW', 1),
3885(527, 34, 'Leraba', 'LER', 1),
3886(528, 34, 'Loroum', 'LOR', 1),
3887(529, 34, 'Mouhoun', 'MOU', 1),
3888(530, 34, 'Nahouri', 'NAH', 1),
3889(531, 34, 'Namentenga', 'NAM', 1),
3890(532, 34, 'Nayala', 'NAY', 1),
3891(533, 34, 'Noumbiel', 'NOU', 1),
3892(534, 34, 'Oubritenga', 'OUB', 1),
3893(535, 34, 'Oudalan', 'OUD', 1),
3894(536, 34, 'Passore', 'PAS', 1),
3895(537, 34, 'Poni', 'PON', 1),
3896(538, 34, 'Sanguie', 'SAG', 1),
3897(539, 34, 'Sanmatenga', 'SAM', 1),
3898(540, 34, 'Seno', 'SEN', 1),
3899(541, 34, 'Sissili', 'SIS', 1),
3900(542, 34, 'Soum', 'SOM', 1),
3901(543, 34, 'Sourou', 'SOR', 1),
3902(544, 34, 'Tapoa', 'TAP', 1),
3903(545, 34, 'Tuy', 'TUY', 1),
3904(546, 34, 'Yagha', 'YAG', 1),
3905(547, 34, 'Yatenga', 'YAT', 1),
3906(548, 34, 'Ziro', 'ZIR', 1),
3907(549, 34, 'Zondoma', 'ZOD', 1),
3908(550, 34, 'Zoundweogo', 'ZOW', 1),
3909(551, 35, 'Bubanza', 'BB', 1),
3910(552, 35, 'Bujumbura', 'BJ', 1),
3911(553, 35, 'Bururi', 'BR', 1),
3912(554, 35, 'Cankuzo', 'CA', 1),
3913(555, 35, 'Cibitoke', 'CI', 1),
3914(556, 35, 'Gitega', 'GI', 1),
3915(557, 35, 'Karuzi', 'KR', 1),
3916(558, 35, 'Kayanza', 'KY', 1),
3917(559, 35, 'Kirundo', 'KI', 1),
3918(560, 35, 'Makamba', 'MA', 1),
3919(561, 35, 'Muramvya', 'MU', 1),
3920(562, 35, 'Muyinga', 'MY', 1),
3921(563, 35, 'Mwaro', 'MW', 1),
3922(564, 35, 'Ngozi', 'NG', 1),
3923(565, 35, 'Rutana', 'RT', 1),
3924(566, 35, 'Ruyigi', 'RY', 1),
3925(567, 36, 'Phnom Penh', 'PP', 1),
3926(568, 36, 'Preah Seihanu (Kompong Som or Sihanoukville)', 'PS', 1),
3927(569, 36, 'Pailin', 'PA', 1),
3928(570, 36, 'Keb', 'KB', 1),
3929(571, 36, 'Banteay Meanchey', 'BM', 1),
3930(572, 36, 'Battambang', 'BA', 1),
3931(573, 36, 'Kampong Cham', 'KM', 1),
3932(574, 36, 'Kampong Chhnang', 'KN', 1),
3933(575, 36, 'Kampong Speu', 'KU', 1),
3934(576, 36, 'Kampong Som', 'KO', 1),
3935(577, 36, 'Kampong Thom', 'KT', 1),
3936(578, 36, 'Kampot', 'KP', 1),
3937(579, 36, 'Kandal', 'KL', 1),
3938(580, 36, 'Kaoh Kong', 'KK', 1),
3939(581, 36, 'Kratie', 'KR', 1),
3940(582, 36, 'Mondul Kiri', 'MK', 1),
3941(583, 36, 'Oddar Meancheay', 'OM', 1),
3942(584, 36, 'Pursat', 'PU', 1),
3943(585, 36, 'Preah Vihear', 'PR', 1),
3944(586, 36, 'Prey Veng', 'PG', 1),
3945(587, 36, 'Ratanak Kiri', 'RK', 1),
3946(588, 36, 'Siemreap', 'SI', 1),
3947(589, 36, 'Stung Treng', 'ST', 1),
3948(590, 36, 'Svay Rieng', 'SR', 1),
3949(591, 36, 'Takeo', 'TK', 1),
3950(592, 37, 'Adamawa (Adamaoua)', 'ADA', 1),
3951(593, 37, 'Centre', 'CEN', 1),
3952(594, 37, 'East (Est)', 'EST', 1),
3953(595, 37, 'Extreme North (Extreme-Nord)', 'EXN', 1),
3954(596, 37, 'Littoral', 'LIT', 1),
3955(597, 37, 'North (Nord)', 'NOR', 1),
3956(598, 37, 'Northwest (Nord-Ouest)', 'NOT', 1),
3957(599, 37, 'West (Ouest)', 'OUE', 1),
3958(600, 37, 'South (Sud)', 'SUD', 1),
3959(601, 37, 'Southwest (Sud-Ouest).', 'SOU', 1),
3960(602, 38, 'Alberta', 'AB', 1),
3961(603, 38, 'British Columbia', 'BC', 1),
3962(604, 38, 'Manitoba', 'MB', 1),
3963(605, 38, 'New Brunswick', 'NB', 1),
3964(606, 38, 'Newfoundland and Labrador', 'NL', 1),
3965(607, 38, 'Northwest Territories', 'NT', 1),
3966(608, 38, 'Nova Scotia', 'NS', 1),
3967(609, 38, 'Nunavut', 'NU', 1),
3968(610, 38, 'Ontario', 'ON', 1),
3969(611, 38, 'Prince Edward Island', 'PE', 1),
3970(612, 38, 'Québec', 'QC', 1),
3971(613, 38, 'Saskatchewan', 'SK', 1),
3972(614, 38, 'Yukon Territory', 'YT', 1),
3973(615, 39, 'Boa Vista', 'BV', 1),
3974(616, 39, 'Brava', 'BR', 1),
3975(617, 39, 'Calheta de Sao Miguel', 'CS', 1),
3976(618, 39, 'Maio', 'MA', 1),
3977(619, 39, 'Mosteiros', 'MO', 1),
3978(620, 39, 'Paul', 'PA', 1),
3979(621, 39, 'Porto Novo', 'PN', 1),
3980(622, 39, 'Praia', 'PR', 1),
3981(623, 39, 'Ribeira Grande', 'RG', 1),
3982(624, 39, 'Sal', 'SL', 1),
3983(625, 39, 'Santa Catarina', 'CA', 1),
3984(626, 39, 'Santa Cruz', 'CR', 1),
3985(627, 39, 'Sao Domingos', 'SD', 1),
3986(628, 39, 'Sao Filipe', 'SF', 1),
3987(629, 39, 'Sao Nicolau', 'SN', 1),
3988(630, 39, 'Sao Vicente', 'SV', 1),
3989(631, 39, 'Tarrafal', 'TA', 1),
3990(632, 40, 'Creek', 'CR', 1),
3991(633, 40, 'Eastern', 'EA', 1),
3992(634, 40, 'Midland', 'ML', 1),
3993(635, 40, 'South Town', 'ST', 1),
3994(636, 40, 'Spot Bay', 'SP', 1),
3995(637, 40, 'Stake Bay', 'SK', 1),
3996(638, 40, 'West End', 'WD', 1),
3997(639, 40, 'Western', 'WN', 1),
3998(640, 41, 'Bamingui-Bangoran', 'BBA', 1),
3999(641, 41, 'Basse-Kotto', 'BKO', 1),
4000(642, 41, 'Haute-Kotto', 'HKO', 1),
4001(643, 41, 'Haut-Mbomou', 'HMB', 1),
4002(644, 41, 'Kemo', 'KEM', 1),
4003(645, 41, 'Lobaye', 'LOB', 1),
4004(646, 41, 'Mambere-KadeÔ', 'MKD', 1),
4005(647, 41, 'Mbomou', 'MBO', 1),
4006(648, 41, 'Nana-Mambere', 'NMM', 1),
4007(649, 41, 'Ombella-M''Poko', 'OMP', 1),
4008(650, 41, 'Ouaka', 'OUK', 1),
4009(651, 41, 'Ouham', 'OUH', 1),
4010(652, 41, 'Ouham-Pende', 'OPE', 1),
4011(653, 41, 'Vakaga', 'VAK', 1),
4012(654, 41, 'Nana-Grebizi', 'NGR', 1),
4013(655, 41, 'Sangha-Mbaere', 'SMB', 1),
4014(656, 41, 'Bangui', 'BAN', 1),
4015(657, 42, 'Batha', 'BA', 1),
4016(658, 42, 'Biltine', 'BI', 1),
4017(659, 42, 'Borkou-Ennedi-Tibesti', 'BE', 1),
4018(660, 42, 'Chari-Baguirmi', 'CB', 1),
4019(661, 42, 'Guera', 'GU', 1),
4020(662, 42, 'Kanem', 'KA', 1),
4021(663, 42, 'Lac', 'LA', 1),
4022(664, 42, 'Logone Occidental', 'LC', 1),
4023(665, 42, 'Logone Oriental', 'LR', 1),
4024(666, 42, 'Mayo-Kebbi', 'MK', 1),
4025(667, 42, 'Moyen-Chari', 'MC', 1),
4026(668, 42, 'Ouaddai', 'OU', 1),
4027(669, 42, 'Salamat', 'SA', 1),
4028(670, 42, 'Tandjile', 'TA', 1),
4029(671, 43, 'Aisen del General Carlos Ibanez', 'AI', 1),
4030(672, 43, 'Antofagasta', 'AN', 1),
4031(673, 43, 'Araucania', 'AR', 1),
4032(674, 43, 'Atacama', 'AT', 1),
4033(675, 43, 'Bio-Bio', 'BI', 1),
4034(676, 43, 'Coquimbo', 'CO', 1),
4035(677, 43, 'Libertador General Bernardo O''Hi', 'LI', 1),
4036(678, 43, 'Los Lagos', 'LL', 1),
4037(679, 43, 'Magallanes y de la Antartica Chi', 'MA', 1),
4038(680, 43, 'Maule', 'ML', 1),
4039(681, 43, 'Region Metropolitana', 'RM', 1),
4040(682, 43, 'Tarapaca', 'TA', 1),
4041(683, 43, 'Valparaiso', 'VS', 1),
4042(684, 44, 'Anhui', 'AN', 1),
4043(685, 44, 'Beijing', 'BE', 1),
4044(686, 44, 'Chongqing', 'CH', 1),
4045(687, 44, 'Fujian', 'FU', 1),
4046(688, 44, 'Gansu', 'GA', 1),
4047(689, 44, 'Guangdong', 'GU', 1),
4048(690, 44, 'Guangxi', 'GX', 1),
4049(691, 44, 'Guizhou', 'GZ', 1),
4050(692, 44, 'Hainan', 'HA', 1),
4051(693, 44, 'Hebei', 'HB', 1),
4052(694, 44, 'Heilongjiang', 'HL', 1),
4053(695, 44, 'Henan', 'HE', 1),
4054(696, 44, 'Hong Kong', 'HK', 1),
4055(697, 44, 'Hubei', 'HU', 1),
4056(698, 44, 'Hunan', 'HN', 1),
4057(699, 44, 'Inner Mongolia', 'IM', 1),
4058(700, 44, 'Jiangsu', 'JI', 1),
4059(701, 44, 'Jiangxi', 'JX', 1),
4060(702, 44, 'Jilin', 'JL', 1),
4061(703, 44, 'Liaoning', 'LI', 1),
4062(704, 44, 'Macau', 'MA', 1),
4063(705, 44, 'Ningxia', 'NI', 1),
4064(706, 44, 'Shaanxi', 'SH', 1),
4065(707, 44, 'Shandong', 'SA', 1),
4066(708, 44, 'Shanghai', 'SG', 1),
4067(709, 44, 'Shanxi', 'SX', 1),
4068(710, 44, 'Sichuan', 'SI', 1),
4069(711, 44, 'Tianjin', 'TI', 1),
4070(712, 44, 'Xinjiang', 'XI', 1),
4071(713, 44, 'Yunnan', 'YU', 1),
4072(714, 44, 'Zhejiang', 'ZH', 1),
4073(715, 46, 'Direction Island', 'D', 1),
4074(716, 46, 'Home Island', 'H', 1),
4075(717, 46, 'Horsburgh Island', 'O', 1),
4076(718, 46, 'South Island', 'S', 1),
4077(719, 46, 'West Island', 'W', 1),
4078(720, 47, 'Amazonas', 'AMZ', 1),
4079(721, 47, 'Antioquia', 'ANT', 1),
4080(722, 47, 'Arauca', 'ARA', 1),
4081(723, 47, 'Atlantico', 'ATL', 1),
4082(724, 47, 'Bogota D.C.', 'BDC', 1),
4083(725, 47, 'Bolivar', 'BOL', 1),
4084(726, 47, 'Boyaca', 'BOY', 1),
4085(727, 47, 'Caldas', 'CAL', 1),
4086(728, 47, 'Caqueta', 'CAQ', 1),
4087(729, 47, 'Casanare', 'CAS', 1),
4088(730, 47, 'Cauca', 'CAU', 1),
4089(731, 47, 'Cesar', 'CES', 1),
4090(732, 47, 'Choco', 'CHO', 1),
4091(733, 47, 'Cordoba', 'COR', 1),
4092(734, 47, 'Cundinamarca', 'CAM', 1),
4093(735, 47, 'Guainia', 'GNA', 1),
4094(736, 47, 'Guajira', 'GJR', 1),
4095(737, 47, 'Guaviare', 'GVR', 1),
4096(738, 47, 'Huila', 'HUI', 1),
4097(739, 47, 'Magdalena', 'MAG', 1),
4098(740, 47, 'Meta', 'MET', 1),
4099(741, 47, 'Narino', 'NAR', 1),
4100(742, 47, 'Norte de Santander', 'NDS', 1),
4101(743, 47, 'Putumayo', 'PUT', 1),
4102(744, 47, 'Quindio', 'QUI', 1),
4103(745, 47, 'Risaralda', 'RIS', 1),
4104(746, 47, 'San Andres y Providencia', 'SAP', 1),
4105(747, 47, 'Santander', 'SAN', 1),
4106(748, 47, 'Sucre', 'SUC', 1),
4107(749, 47, 'Tolima', 'TOL', 1),
4108(750, 47, 'Valle del Cauca', 'VDC', 1),
4109(751, 47, 'Vaupes', 'VAU', 1),
4110(752, 47, 'Vichada', 'VIC', 1),
4111(753, 48, 'Grande Comore', 'G', 1),
4112(754, 48, 'Anjouan', 'A', 1),
4113(755, 48, 'Moheli', 'M', 1),
4114(756, 49, 'Bouenza', 'BO', 1),
4115(757, 49, 'Brazzaville', 'BR', 1),
4116(758, 49, 'Cuvette', 'CU', 1),
4117(759, 49, 'Cuvette-Ouest', 'CO', 1),
4118(760, 49, 'Kouilou', 'KO', 1),
4119(761, 49, 'Lekoumou', 'LE', 1),
4120(762, 49, 'Likouala', 'LI', 1),
4121(763, 49, 'Niari', 'NI', 1),
4122(764, 49, 'Plateaux', 'PL', 1),
4123(765, 49, 'Pool', 'PO', 1),
4124(766, 49, 'Sangha', 'SA', 1),
4125(767, 50, 'Pukapuka', 'PU', 1),
4126(768, 50, 'Rakahanga', 'RK', 1),
4127(769, 50, 'Manihiki', 'MK', 1),
4128(770, 50, 'Penrhyn', 'PE', 1),
4129(771, 50, 'Nassau Island', 'NI', 1),
4130(772, 50, 'Surwarrow', 'SU', 1),
4131(773, 50, 'Palmerston', 'PA', 1),
4132(774, 50, 'Aitutaki', 'AI', 1),
4133(775, 50, 'Manuae', 'MA', 1),
4134(776, 50, 'Takutea', 'TA', 1),
4135(777, 50, 'Mitiaro', 'MT', 1),
4136(778, 50, 'Atiu', 'AT', 1),
4137(779, 50, 'Mauke', 'MU', 1),
4138(780, 50, 'Rarotonga', 'RR', 1),
4139(781, 50, 'Mangaia', 'MG', 1),
4140(782, 51, 'Alajuela', 'AL', 1),
4141(783, 51, 'Cartago', 'CA', 1),
4142(784, 51, 'Guanacaste', 'GU', 1),
4143(785, 51, 'Heredia', 'HE', 1),
4144(786, 51, 'Limon', 'LI', 1),
4145(787, 51, 'Puntarenas', 'PU', 1),
4146(788, 51, 'San Jose', 'SJ', 1),
4147(789, 52, 'Abengourou', 'ABE', 1),
4148(790, 52, 'Abidjan', 'ABI', 1),
4149(791, 52, 'Aboisso', 'ABO', 1),
4150(792, 52, 'Adiake', 'ADI', 1),
4151(793, 52, 'Adzope', 'ADZ', 1),
4152(794, 52, 'Agboville', 'AGB', 1),
4153(795, 52, 'Agnibilekrou', 'AGN', 1),
4154(796, 52, 'Alepe', 'ALE', 1),
4155(797, 52, 'Bocanda', 'BOC', 1),
4156(798, 52, 'Bangolo', 'BAN', 1),
4157(799, 52, 'Beoumi', 'BEO', 1),
4158(800, 52, 'Biankouma', 'BIA', 1),
4159(801, 52, 'Bondoukou', 'BDK', 1),
4160(802, 52, 'Bongouanou', 'BGN', 1),
4161(803, 52, 'Bouafle', 'BFL', 1),
4162(804, 52, 'Bouake', 'BKE', 1),
4163(805, 52, 'Bouna', 'BNA', 1),
4164(806, 52, 'Boundiali', 'BDL', 1),
4165(807, 52, 'Dabakala', 'DKL', 1),
4166(808, 52, 'Dabou', 'DBU', 1),
4167(809, 52, 'Daloa', 'DAL', 1),
4168(810, 52, 'Danane', 'DAN', 1),
4169(811, 52, 'Daoukro', 'DAO', 1),
4170(812, 52, 'Dimbokro', 'DIM', 1),
4171(813, 52, 'Divo', 'DIV', 1),
4172(814, 52, 'Duekoue', 'DUE', 1),
4173(815, 52, 'Ferkessedougou', 'FER', 1),
4174(816, 52, 'Gagnoa', 'GAG', 1),
4175(817, 52, 'Grand-Bassam', 'GBA', 1),
4176(818, 52, 'Grand-Lahou', 'GLA', 1),
4177(819, 52, 'Guiglo', 'GUI', 1),
4178(820, 52, 'Issia', 'ISS', 1),
4179(821, 52, 'Jacqueville', 'JAC', 1),
4180(822, 52, 'Katiola', 'KAT', 1),
4181(823, 52, 'Korhogo', 'KOR', 1),
4182(824, 52, 'Lakota', 'LAK', 1),
4183(825, 52, 'Man', 'MAN', 1),
4184(826, 52, 'Mankono', 'MKN', 1),
4185(827, 52, 'Mbahiakro', 'MBA', 1),
4186(828, 52, 'Odienne', 'ODI', 1),
4187(829, 52, 'Oume', 'OUM', 1),
4188(830, 52, 'Sakassou', 'SAK', 1),
4189(831, 52, 'San-Pedro', 'SPE', 1),
4190(832, 52, 'Sassandra', 'SAS', 1),
4191(833, 52, 'Seguela', 'SEG', 1),
4192(834, 52, 'Sinfra', 'SIN', 1),
4193(835, 52, 'Soubre', 'SOU', 1),
4194(836, 52, 'Tabou', 'TAB', 1),
4195(837, 52, 'Tanda', 'TAN', 1),
4196(838, 52, 'Tiebissou', 'TIE', 1),
4197(839, 52, 'Tingrela', 'TIN', 1),
4198(840, 52, 'Tiassale', 'TIA', 1),
4199(841, 52, 'Touba', 'TBA', 1),
4200(842, 52, 'Toulepleu', 'TLP', 1),
4201(843, 52, 'Toumodi', 'TMD', 1),
4202(844, 52, 'Vavoua', 'VAV', 1),
4203(845, 52, 'Yamoussoukro', 'YAM', 1),
4204(846, 52, 'Zuenoula', 'ZUE', 1),
4205(847, 53, 'Bjelovar-Bilogora', 'BB', 1),
4206(848, 53, 'City of Zagreb', 'CZ', 1),
4207(849, 53, 'Dubrovnik-Neretva', 'DN', 1),
4208(850, 53, 'Istra', 'IS', 1),
4209(851, 53, 'Karlovac', 'KA', 1),
4210(852, 53, 'Koprivnica-Krizevci', 'KK', 1),
4211(853, 53, 'Krapina-Zagorje', 'KZ', 1),
4212(854, 53, 'Lika-Senj', 'LS', 1),
4213(855, 53, 'Medimurje', 'ME', 1),
4214(856, 53, 'Osijek-Baranja', 'OB', 1),
4215(857, 53, 'Pozega-Slavonia', 'PS', 1),
4216(858, 53, 'Primorje-Gorski Kotar', 'PG', 1),
4217(859, 53, 'Sibenik', 'SI', 1),
4218(860, 53, 'Sisak-Moslavina', 'SM', 1),
4219(861, 53, 'Slavonski Brod-Posavina', 'SB', 1),
4220(862, 53, 'Split-Dalmatia', 'SD', 1),
4221(863, 53, 'Varazdin', 'VA', 1),
4222(864, 53, 'Virovitica-Podravina', 'VP', 1),
4223(865, 53, 'Vukovar-Srijem', 'VS', 1),
4224(866, 53, 'Zadar-Knin', 'ZK', 1),
4225(867, 53, 'Zagreb', 'ZA', 1),
4226(868, 54, 'Camaguey', 'CA', 1),
4227(869, 54, 'Ciego de Avila', 'CD', 1),
4228(870, 54, 'Cienfuegos', 'CI', 1),
4229(871, 54, 'Ciudad de La Habana', 'CH', 1),
4230(872, 54, 'Granma', 'GR', 1),
4231(873, 54, 'Guantanamo', 'GU', 1),
4232(874, 54, 'Holguin', 'HO', 1),
4233(875, 54, 'Isla de la Juventud', 'IJ', 1),
4234(876, 54, 'La Habana', 'LH', 1),
4235(877, 54, 'Las Tunas', 'LT', 1),
4236(878, 54, 'Matanzas', 'MA', 1),
4237(879, 54, 'Pinar del Rio', 'PR', 1),
4238(880, 54, 'Sancti Spiritus', 'SS', 1),
4239(881, 54, 'Santiago de Cuba', 'SC', 1),
4240(882, 54, 'Villa Clara', 'VC', 1),
4241(883, 55, 'Famagusta', 'F', 1),
4242(884, 55, 'Kyrenia', 'K', 1),
4243(885, 55, 'Larnaca', 'A', 1),
4244(886, 55, 'Limassol', 'I', 1),
4245(887, 55, 'Nicosia', 'N', 1),
4246(888, 55, 'Paphos', 'P', 1),
4247(889, 56, 'Ústecký', 'U', 1),
4248(890, 56, 'JihoÄeský', 'C', 1),
4249(891, 56, 'Jihomoravský', 'B', 1),
4250(892, 56, 'Karlovarský', 'K', 1),
4251(893, 56, 'Královehradecký', 'H', 1),
4252(894, 56, 'Liberecký', 'L', 1),
4253(895, 56, 'Moravskoslezský', 'T', 1),
4254(896, 56, 'Olomoucký', 'M', 1),
4255(897, 56, 'Pardubický', 'E', 1),
4256(898, 56, 'Plzeňský', 'P', 1),
4257(899, 56, 'Praha', 'A', 1),
4258(900, 56, 'StÅ™edoÄeský', 'S', 1),
4259(901, 56, 'VysoÄina', 'J', 1),
4260(902, 56, 'ZlÃnský', 'Z', 1),
4261(903, 57, 'Arhus', 'AR', 1),
4262(904, 57, 'Bornholm', 'BH', 1),
4263(905, 57, 'Copenhagen', 'CO', 1),
4264(906, 57, 'Faroe Islands', 'FO', 1),
4265(907, 57, 'Frederiksborg', 'FR', 1),
4266(908, 57, 'Fyn', 'FY', 1),
4267(909, 57, 'Kobenhavn', 'KO', 1),
4268(910, 57, 'Nordjylland', 'NO', 1),
4269(911, 57, 'Ribe', 'RI', 1),
4270(912, 57, 'Ringkobing', 'RK', 1),
4271(913, 57, 'Roskilde', 'RO', 1),
4272(914, 57, 'Sonderjylland', 'SO', 1),
4273(915, 57, 'Storstrom', 'ST', 1),
4274(916, 57, 'Vejle', 'VK', 1),
4275(917, 57, 'Vestjælland', 'VJ', 1),
4276(918, 57, 'Viborg', 'VB', 1),
4277(919, 58, '''Ali Sabih', 'S', 1),
4278(920, 58, 'Dikhil', 'K', 1),
4279(921, 58, 'Djibouti', 'J', 1),
4280(922, 58, 'Obock', 'O', 1),
4281(923, 58, 'Tadjoura', 'T', 1),
4282(924, 59, 'Saint Andrew Parish', 'AND', 1),
4283(925, 59, 'Saint David Parish', 'DAV', 1),
4284(926, 59, 'Saint George Parish', 'GEO', 1),
4285(927, 59, 'Saint John Parish', 'JOH', 1),
4286(928, 59, 'Saint Joseph Parish', 'JOS', 1),
4287(929, 59, 'Saint Luke Parish', 'LUK', 1),
4288(930, 59, 'Saint Mark Parish', 'MAR', 1),
4289(931, 59, 'Saint Patrick Parish', 'PAT', 1),
4290(932, 59, 'Saint Paul Parish', 'PAU', 1),
4291(933, 59, 'Saint Peter Parish', 'PET', 1),
4292(934, 60, 'Distrito Nacional', 'DN', 1),
4293(935, 60, 'Azua', 'AZ', 1),
4294(936, 60, 'Baoruco', 'BC', 1),
4295(937, 60, 'Barahona', 'BH', 1),
4296(938, 60, 'Dajabon', 'DJ', 1),
4297(939, 60, 'Duarte', 'DU', 1),
4298(940, 60, 'Elias Pina', 'EL', 1),
4299(941, 60, 'El Seybo', 'SY', 1),
4300(942, 60, 'Espaillat', 'ET', 1),
4301(943, 60, 'Hato Mayor', 'HM', 1),
4302(944, 60, 'Independencia', 'IN', 1),
4303(945, 60, 'La Altagracia', 'AL', 1),
4304(946, 60, 'La Romana', 'RO', 1),
4305(947, 60, 'La Vega', 'VE', 1),
4306(948, 60, 'Maria Trinidad Sanchez', 'MT', 1),
4307(949, 60, 'Monsenor Nouel', 'MN', 1),
4308(950, 60, 'Monte Cristi', 'MC', 1),
4309(951, 60, 'Monte Plata', 'MP', 1),
4310(952, 60, 'Pedernales', 'PD', 1),
4311(953, 60, 'Peravia (Bani)', 'PR', 1),
4312(954, 60, 'Puerto Plata', 'PP', 1),
4313(955, 60, 'Salcedo', 'SL', 1),
4314(956, 60, 'Samana', 'SM', 1),
4315(957, 60, 'Sanchez Ramirez', 'SH', 1),
4316(958, 60, 'San Cristobal', 'SC', 1),
4317(959, 60, 'San Jose de Ocoa', 'JO', 1),
4318(960, 60, 'San Juan', 'SJ', 1),
4319(961, 60, 'San Pedro de Macoris', 'PM', 1),
4320(962, 60, 'Santiago', 'SA', 1),
4321(963, 60, 'Santiago Rodriguez', 'ST', 1),
4322(964, 60, 'Santo Domingo', 'SD', 1),
4323(965, 60, 'Valverde', 'VA', 1),
4324(966, 61, 'Aileu', 'AL', 1),
4325(967, 61, 'Ainaro', 'AN', 1),
4326(968, 61, 'Baucau', 'BA', 1),
4327(969, 61, 'Bobonaro', 'BO', 1),
4328(970, 61, 'Cova Lima', 'CO', 1),
4329(971, 61, 'Dili', 'DI', 1),
4330(972, 61, 'Ermera', 'ER', 1),
4331(973, 61, 'Lautem', 'LA', 1),
4332(974, 61, 'Liquica', 'LI', 1),
4333(975, 61, 'Manatuto', 'MT', 1),
4334(976, 61, 'Manufahi', 'MF', 1),
4335(977, 61, 'Oecussi', 'OE', 1),
4336(978, 61, 'Viqueque', 'VI', 1),
4337(979, 62, 'Azuay', 'AZU', 1),
4338(980, 62, 'Bolivar', 'BOL', 1),
4339(981, 62, 'Cañar', 'CAN', 1),
4340(982, 62, 'Carchi', 'CAR', 1),
4341(983, 62, 'Chimborazo', 'CHI', 1),
4342(984, 62, 'Cotopaxi', 'COT', 1),
4343(985, 62, 'El Oro', 'EOR', 1),
4344(986, 62, 'Esmeraldas', 'ESM', 1),
4345(987, 62, 'Galápagos', 'GPS', 1),
4346(988, 62, 'Guayas', 'GUA', 1),
4347(989, 62, 'Imbabura', 'IMB', 1),
4348(990, 62, 'Loja', 'LOJ', 1),
4349(991, 62, 'Los Rios', 'LRO', 1),
4350(992, 62, 'Manabí', 'MAN', 1),
4351(993, 62, 'Morona Santiago', 'MSA', 1),
4352(994, 62, 'Napo', 'NAP', 1),
4353(995, 62, 'Orellana', 'ORE', 1),
4354(996, 62, 'Pastaza', 'PAS', 1),
4355(997, 62, 'Pichincha', 'PIC', 1),
4356(998, 62, 'Sucumbíos', 'SUC', 1),
4357(999, 62, 'Tungurahua', 'TUN', 1),
4358(1000, 62, 'Zamora Chinchipe', 'ZCH', 1),
4359(1001, 63, 'Ad Daqahliyah', 'DHY', 1),
4360(1002, 63, 'Al Bahr al Ahmar', 'BAM', 1),
4361(1003, 63, 'Al Buhayrah', 'BHY', 1),
4362(1004, 63, 'Al Fayyum', 'FYM', 1),
4363(1005, 63, 'Al Gharbiyah', 'GBY', 1),
4364(1006, 63, 'Al Iskandariyah', 'IDR', 1),
4365(1007, 63, 'Al Isma''iliyah', 'IML', 1),
4366(1008, 63, 'Al Jizah', 'JZH', 1),
4367(1009, 63, 'Al Minufiyah', 'MFY', 1),
4368(1010, 63, 'Al Minya', 'MNY', 1),
4369(1011, 63, 'Al Qahirah', 'QHR', 1),
4370(1012, 63, 'Al Qalyubiyah', 'QLY', 1),
4371(1013, 63, 'Al Wadi al Jadid', 'WJD', 1),
4372(1014, 63, 'Ash Sharqiyah', 'SHQ', 1),
4373(1015, 63, 'As Suways', 'SWY', 1),
4374(1016, 63, 'Aswan', 'ASW', 1),
4375(1017, 63, 'Asyut', 'ASY', 1),
4376(1018, 63, 'Bani Suwayf', 'BSW', 1),
4377(1019, 63, 'Bur Sa''id', 'BSD', 1),
4378(1020, 63, 'Dumyat', 'DMY', 1),
4379(1021, 63, 'Janub Sina''', 'JNS', 1),
4380(1022, 63, 'Kafr ash Shaykh', 'KSH', 1),
4381(1023, 63, 'Matruh', 'MAT', 1),
4382(1024, 63, 'Qina', 'QIN', 1),
4383(1025, 63, 'Shamal Sina''', 'SHS', 1),
4384(1026, 63, 'Suhaj', 'SUH', 1),
4385(1027, 64, 'Ahuachapan', 'AH', 1),
4386(1028, 64, 'Cabanas', 'CA', 1),
4387(1029, 64, 'Chalatenango', 'CH', 1),
4388(1030, 64, 'Cuscatlan', 'CU', 1),
4389(1031, 64, 'La Libertad', 'LB', 1),
4390(1032, 64, 'La Paz', 'PZ', 1),
4391(1033, 64, 'La Union', 'UN', 1),
4392(1034, 64, 'Morazan', 'MO', 1),
4393(1035, 64, 'San Miguel', 'SM', 1),
4394(1036, 64, 'San Salvador', 'SS', 1),
4395(1037, 64, 'San Vicente', 'SV', 1),
4396(1038, 64, 'Santa Ana', 'SA', 1),
4397(1039, 64, 'Sonsonate', 'SO', 1),
4398(1040, 64, 'Usulutan', 'US', 1),
4399(1041, 65, 'Provincia Annobon', 'AN', 1),
4400(1042, 65, 'Provincia Bioko Norte', 'BN', 1),
4401(1043, 65, 'Provincia Bioko Sur', 'BS', 1),
4402(1044, 65, 'Provincia Centro Sur', 'CS', 1),
4403(1045, 65, 'Provincia Kie-Ntem', 'KN', 1),
4404(1046, 65, 'Provincia Litoral', 'LI', 1),
4405(1047, 65, 'Provincia Wele-Nzas', 'WN', 1),
4406(1048, 66, 'Central (Maekel)', 'MA', 1),
4407(1049, 66, 'Anseba (Keren)', 'KE', 1),
4408(1050, 66, 'Southern Red Sea (Debub-Keih-Bahri)', 'DK', 1),
4409(1051, 66, 'Northern Red Sea (Semien-Keih-Bahri)', 'SK', 1),
4410(1052, 66, 'Southern (Debub)', 'DE', 1),
4411(1053, 66, 'Gash-Barka (Barentu)', 'BR', 1),
4412(1054, 67, 'Harjumaa (Tallinn)', 'HA', 1),
4413(1055, 67, 'Hiiumaa (Kardla)', 'HI', 1),
4414(1056, 67, 'Ida-Virumaa (Johvi)', 'IV', 1),
4415(1057, 67, 'Jarvamaa (Paide)', 'JA', 1),
4416(1058, 67, 'Jogevamaa (Jogeva)', 'JO', 1),
4417(1059, 67, 'Laane-Virumaa (Rakvere)', 'LV', 1),
4418(1060, 67, 'Laanemaa (Haapsalu)', 'LA', 1),
4419(1061, 67, 'Parnumaa (Parnu)', 'PA', 1),
4420(1062, 67, 'Polvamaa (Polva)', 'PO', 1),
4421(1063, 67, 'Raplamaa (Rapla)', 'RA', 1),
4422(1064, 67, 'Saaremaa (Kuessaare)', 'SA', 1),
4423(1065, 67, 'Tartumaa (Tartu)', 'TA', 1),
4424(1066, 67, 'Valgamaa (Valga)', 'VA', 1),
4425(1067, 67, 'Viljandimaa (Viljandi)', 'VI', 1),
4426(1068, 67, 'Vorumaa (Voru)', 'VO', 1),
4427(1069, 68, 'Afar', 'AF', 1),
4428(1070, 68, 'Amhara', 'AH', 1),
4429(1071, 68, 'Benishangul-Gumaz', 'BG', 1),
4430(1072, 68, 'Gambela', 'GB', 1),
4431(1073, 68, 'Hariai', 'HR', 1),
4432(1074, 68, 'Oromia', 'OR', 1),
4433(1075, 68, 'Somali', 'SM', 1),
4434(1076, 68, 'Southern Nations - Nationalities and Peoples Region', 'SN', 1),
4435(1077, 68, 'Tigray', 'TG', 1),
4436(1078, 68, 'Addis Ababa', 'AA', 1),
4437(1079, 68, 'Dire Dawa', 'DD', 1),
4438(1080, 71, 'Central Division', 'C', 1),
4439(1081, 71, 'Northern Division', 'N', 1),
4440(1082, 71, 'Eastern Division', 'E', 1),
4441(1083, 71, 'Western Division', 'W', 1),
4442(1084, 71, 'Rotuma', 'R', 1),
4443(1085, 72, 'Ahvenanmaan Laani', 'AL', 1),
4444(1086, 72, 'Etela-Suomen Laani', 'ES', 1),
4445(1087, 72, 'Ita-Suomen Laani', 'IS', 1),
4446(1088, 72, 'Lansi-Suomen Laani', 'LS', 1),
4447(1089, 72, 'Lapin Lanani', 'LA', 1),
4448(1090, 72, 'Oulun Laani', 'OU', 1),
4449(1114, 74, 'Ain', '01', 1),
4450(1115, 74, 'Aisne', '02', 1),
4451(1116, 74, 'Allier', '03', 1),
4452(1117, 74, 'Alpes de Haute Provence', '04', 1),
4453(1118, 74, 'Hautes-Alpes', '05', 1),
4454(1119, 74, 'Alpes Maritimes', '06', 1),
4455(1120, 74, 'Ardèche', '07', 1),
4456(1121, 74, 'Ardennes', '08', 1),
4457(1122, 74, 'Ariège', '09', 1),
4458(1123, 74, 'Aube', '10', 1),
4459(1124, 74, 'Aude', '11', 1),
4460(1125, 74, 'Aveyron', '12', 1),
4461(1126, 74, 'Bouches du Rhône', '13', 1),
4462(1127, 74, 'Calvados', '14', 1),
4463(1128, 74, 'Cantal', '15', 1),
4464(1129, 74, 'Charente', '16', 1),
4465(1130, 74, 'Charente Maritime', '17', 1),
4466(1131, 74, 'Cher', '18', 1),
4467(1132, 74, 'Corrèze', '19', 1),
4468(1133, 74, 'Corse du Sud', '2A', 1),
4469(1134, 74, 'Haute Corse', '2B', 1),
4470(1135, 74, 'Côte d'or', '21', 1),
4471(1136, 74, 'Côtes d'Armor', '22', 1),
4472(1137, 74, 'Creuse', '23', 1),
4473(1138, 74, 'Dordogne', '24', 1),
4474(1139, 74, 'Doubs', '25', 1),
4475(1140, 74, 'Drôme', '26', 1),
4476(1141, 74, 'Eure', '27', 1),
4477(1142, 74, 'Eure et Loir', '28', 1),
4478(1143, 74, 'Finistère', '29', 1),
4479(1144, 74, 'Gard', '30', 1),
4480(1145, 74, 'Haute Garonne', '31', 1),
4481(1146, 74, 'Gers', '32', 1),
4482(1147, 74, 'Gironde', '33', 1),
4483(1148, 74, 'Hérault', '34', 1),
4484(1149, 74, 'Ille et Vilaine', '35', 1),
4485(1150, 74, 'Indre', '36', 1),
4486(1151, 74, 'Indre et Loire', '37', 1),
4487(1152, 74, 'Isére', '38', 1),
4488(1153, 74, 'Jura', '39', 1),
4489(1154, 74, 'Landes', '40', 1),
4490(1155, 74, 'Loir et Cher', '41', 1),
4491(1156, 74, 'Loire', '42', 1),
4492(1157, 74, 'Haute Loire', '43', 1),
4493(1158, 74, 'Loire Atlantique', '44', 1),
4494(1159, 74, 'Loiret', '45', 1),
4495(1160, 74, 'Lot', '46', 1),
4496(1161, 74, 'Lot et Garonne', '47', 1),
4497(1162, 74, 'Lozère', '48', 1),
4498(1163, 74, 'Maine et Loire', '49', 1),
4499(1164, 74, 'Manche', '50', 1),
4500(1165, 74, 'Marne', '51', 1),
4501(1166, 74, 'Haute Marne', '52', 1),
4502(1167, 74, 'Mayenne', '53', 1),
4503(1168, 74, 'Meurthe et Moselle', '54', 1),
4504(1169, 74, 'Meuse', '55', 1),
4505(1170, 74, 'Morbihan', '56', 1),
4506(1171, 74, 'Moselle', '57', 1),
4507(1172, 74, 'Nièvre', '58', 1),
4508(1173, 74, 'Nord', '59', 1),
4509(1174, 74, 'Oise', '60', 1),
4510(1175, 74, 'Orne', '61', 1),
4511(1176, 74, 'Pas de Calais', '62', 1),
4512(1177, 74, 'Puy de Dôme', '63', 1),
4513(1178, 74, 'Pyrénées Atlantiques', '64', 1),
4514(1179, 74, 'Hautes Pyrénées', '65', 1),
4515(1180, 74, 'Pyrénées Orientales', '66', 1),
4516(1181, 74, 'Bas Rhin', '67', 1),
4517(1182, 74, 'Haut Rhin', '68', 1),
4518(1183, 74, 'Rhône', '69', 1),
4519(1184, 74, 'Haute Saône', '70', 1),
4520(1185, 74, 'Saône et Loire', '71', 1),
4521(1186, 74, 'Sarthe', '72', 1),
4522(1187, 74, 'Savoie', '73', 1),
4523(1188, 74, 'Haute Savoie', '74', 1),
4524(1189, 74, 'Paris', '75', 1),
4525(1190, 74, 'Seine Maritime', '76', 1),
4526(1191, 74, 'Seine et Marne', '77', 1),
4527(1192, 74, 'Yvelines', '78', 1),
4528(1193, 74, 'Deux Sèvres', '79', 1),
4529(1194, 74, 'Somme', '80', 1),
4530(1195, 74, 'Tarn', '81', 1),
4531(1196, 74, 'Tarn et Garonne', '82', 1),
4532(1197, 74, 'Var', '83', 1),
4533(1198, 74, 'Vaucluse', '84', 1),
4534(1199, 74, 'Vendée', '85', 1),
4535(1200, 74, 'Vienne', '86', 1),
4536(1201, 74, 'Haute Vienne', '87', 1),
4537(1202, 74, 'Vosges', '88', 1),
4538(1203, 74, 'Yonne', '89', 1),
4539(1204, 74, 'Territoire de Belfort', '90', 1),
4540(1205, 74, 'Essonne', '91', 1),
4541(1206, 74, 'Hauts de Seine', '92', 1),
4542(1207, 74, 'Seine St-Denis', '93', 1),
4543(1208, 74, 'Val de Marne', '94', 1),
4544(1209, 74, 'Val d''Oise', '95', 1),
4545(1210, 76, 'Archipel des Marquises', 'M', 1),
4546(1211, 76, 'Archipel des Tuamotu', 'T', 1),
4547(1212, 76, 'Archipel des Tubuai', 'I', 1),
4548(1213, 76, 'Iles du Vent', 'V', 1),
4549(1214, 76, 'Iles Sous-le-Vent', 'S', 1),
4550(1215, 77, 'Iles Crozet', 'C', 1),
4551(1216, 77, 'Iles Kerguelen', 'K', 1),
4552(1217, 77, 'Ile Amsterdam', 'A', 1),
4553(1218, 77, 'Ile Saint-Paul', 'P', 1),
4554(1219, 77, 'Adelie Land', 'D', 1),
4555(1220, 78, 'Estuaire', 'ES', 1),
4556(1221, 78, 'Haut-Ogooue', 'HO', 1),
4557(1222, 78, 'Moyen-Ogooue', 'MO', 1),
4558(1223, 78, 'Ngounie', 'NG', 1),
4559(1224, 78, 'Nyanga', 'NY', 1),
4560(1225, 78, 'Ogooue-Ivindo', 'OI', 1),
4561(1226, 78, 'Ogooue-Lolo', 'OL', 1),
4562(1227, 78, 'Ogooue-Maritime', 'OM', 1),
4563(1228, 78, 'Woleu-Ntem', 'WN', 1),
4564(1229, 79, 'Banjul', 'BJ', 1),
4565(1230, 79, 'Basse', 'BS', 1),
4566(1231, 79, 'Brikama', 'BR', 1),
4567(1232, 79, 'Janjangbure', 'JA', 1),
4568(1233, 79, 'Kanifeng', 'KA', 1),
4569(1234, 79, 'Kerewan', 'KE', 1),
4570(1235, 79, 'Kuntaur', 'KU', 1),
4571(1236, 79, 'Mansakonko', 'MA', 1),
4572(1237, 79, 'Lower River', 'LR', 1),
4573(1238, 79, 'Central River', 'CR', 1),
4574(1239, 79, 'North Bank', 'NB', 1),
4575(1240, 79, 'Upper River', 'UR', 1),
4576(1241, 79, 'Western', 'WE', 1),
4577(1242, 80, 'Abkhazia', 'AB', 1),
4578(1243, 80, 'Ajaria', 'AJ', 1),
4579(1244, 80, 'Tbilisi', 'TB', 1),
4580(1245, 80, 'Guria', 'GU', 1),
4581(1246, 80, 'Imereti', 'IM', 1),
4582(1247, 80, 'Kakheti', 'KA', 1),
4583(1248, 80, 'Kvemo Kartli', 'KK', 1),
4584(1249, 80, 'Mtskheta-Mtianeti', 'MM', 1),
4585(1250, 80, 'Racha Lechkhumi and Kvemo Svanet', 'RL', 1),
4586(1251, 80, 'Samegrelo-Zemo Svaneti', 'SZ', 1),
4587(1252, 80, 'Samtskhe-Javakheti', 'SJ', 1),
4588(1253, 80, 'Shida Kartli', 'SK', 1),
4589(1254, 81, 'Baden-Württemberg', 'BAW', 1),
4590(1255, 81, 'Bayern', 'BAY', 1),
4591(1256, 81, 'Berlin', 'BER', 1),
4592(1257, 81, 'Brandenburg', 'BRG', 1),
4593(1258, 81, 'Bremen', 'BRE', 1),
4594(1259, 81, 'Hamburg', 'HAM', 1),
4595(1260, 81, 'Hessen', 'HES', 1),
4596(1261, 81, 'Mecklenburg-Vorpommern', 'MEC', 1),
4597(1262, 81, 'Niedersachsen', 'NDS', 1),
4598(1263, 81, 'Nordrhein-Westfalen', 'NRW', 1),
4599(1264, 81, 'Rheinland-Pfalz', 'RHE', 1),
4600(1265, 81, 'Saarland', 'SAR', 1),
4601(1266, 81, 'Sachsen', 'SAS', 1),
4602(1267, 81, 'Sachsen-Anhalt', 'SAC', 1),
4603(1268, 81, 'Schleswig-Holstein', 'SCN', 1),
4604(1269, 81, 'Thüringen', 'THE', 1),
4605(1270, 82, 'Ashanti Region', 'AS', 1),
4606(1271, 82, 'Brong-Ahafo Region', 'BA', 1),
4607(1272, 82, 'Central Region', 'CE', 1),
4608(1273, 82, 'Eastern Region', 'EA', 1),
4609(1274, 82, 'Greater Accra Region', 'GA', 1),
4610(1275, 82, 'Northern Region', 'NO', 1),
4611(1276, 82, 'Upper East Region', 'UE', 1),
4612(1277, 82, 'Upper West Region', 'UW', 1),
4613(1278, 82, 'Volta Region', 'VO', 1),
4614(1279, 82, 'Western Region', 'WE', 1),
4615(1280, 84, 'Attica', 'AT', 1),
4616(1281, 84, 'Central Greece', 'CN', 1),
4617(1282, 84, 'Central Macedonia', 'CM', 1),
4618(1283, 84, 'Crete', 'CR', 1),
4619(1284, 84, 'East Macedonia and Thrace', 'EM', 1),
4620(1285, 84, 'Epirus', 'EP', 1),
4621(1286, 84, 'Ionian Islands', 'II', 1),
4622(1287, 84, 'North Aegean', 'NA', 1),
4623(1288, 84, 'Peloponnesos', 'PP', 1),
4624(1289, 84, 'South Aegean', 'SA', 1),
4625(1290, 84, 'Thessaly', 'TH', 1),
4626(1291, 84, 'West Greece', 'WG', 1),
4627(1292, 84, 'West Macedonia', 'WM', 1),
4628(1293, 85, 'Avannaa', 'A', 1),
4629(1294, 85, 'Tunu', 'T', 1),
4630(1295, 85, 'Kitaa', 'K', 1),
4631(1296, 86, 'Saint Andrew', 'A', 1),
4632(1297, 86, 'Saint David', 'D', 1),
4633(1298, 86, 'Saint George', 'G', 1),
4634(1299, 86, 'Saint John', 'J', 1),
4635(1300, 86, 'Saint Mark', 'M', 1),
4636(1301, 86, 'Saint Patrick', 'P', 1),
4637(1302, 86, 'Carriacou', 'C', 1),
4638(1303, 86, 'Petit Martinique', 'Q', 1),
4639(1304, 89, 'Alta Verapaz', 'AV', 1),
4640(1305, 89, 'Baja Verapaz', 'BV', 1),
4641(1306, 89, 'Chimaltenango', 'CM', 1),
4642(1307, 89, 'Chiquimula', 'CQ', 1),
4643(1308, 89, 'El Peten', 'PE', 1),
4644(1309, 89, 'El Progreso', 'PR', 1),
4645(1310, 89, 'El Quiche', 'QC', 1),
4646(1311, 89, 'Escuintla', 'ES', 1),
4647(1312, 89, 'Guatemala', 'GU', 1),
4648(1313, 89, 'Huehuetenango', 'HU', 1),
4649(1314, 89, 'Izabal', 'IZ', 1),
4650(1315, 89, 'Jalapa', 'JA', 1),
4651(1316, 89, 'Jutiapa', 'JU', 1),
4652(1317, 89, 'Quetzaltenango', 'QZ', 1),
4653(1318, 89, 'Retalhuleu', 'RE', 1),
4654(1319, 89, 'Sacatepequez', 'ST', 1),
4655(1320, 89, 'San Marcos', 'SM', 1),
4656(1321, 89, 'Santa Rosa', 'SR', 1),
4657(1322, 89, 'Solola', 'SO', 1),
4658(1323, 89, 'Suchitepequez', 'SU', 1),
4659(1324, 89, 'Totonicapan', 'TO', 1),
4660(1325, 89, 'Zacapa', 'ZA', 1),
4661(1326, 90, 'Conakry', 'CNK', 1),
4662(1327, 90, 'Beyla', 'BYL', 1),
4663(1328, 90, 'Boffa', 'BFA', 1),
4664(1329, 90, 'Boke', 'BOK', 1),
4665(1330, 90, 'Coyah', 'COY', 1),
4666(1331, 90, 'Dabola', 'DBL', 1),
4667(1332, 90, 'Dalaba', 'DLB', 1),
4668(1333, 90, 'Dinguiraye', 'DGR', 1),
4669(1334, 90, 'Dubreka', 'DBR', 1),
4670(1335, 90, 'Faranah', 'FRN', 1),
4671(1336, 90, 'Forecariah', 'FRC', 1),
4672(1337, 90, 'Fria', 'FRI', 1),
4673(1338, 90, 'Gaoual', 'GAO', 1),
4674(1339, 90, 'Gueckedou', 'GCD', 1),
4675(1340, 90, 'Kankan', 'KNK', 1),
4676(1341, 90, 'Kerouane', 'KRN', 1),
4677(1342, 90, 'Kindia', 'KND', 1),
4678(1343, 90, 'Kissidougou', 'KSD', 1),
4679(1344, 90, 'Koubia', 'KBA', 1),
4680(1345, 90, 'Koundara', 'KDA', 1),
4681(1346, 90, 'Kouroussa', 'KRA', 1),
4682(1347, 90, 'Labe', 'LAB', 1),
4683(1348, 90, 'Lelouma', 'LLM', 1),
4684(1349, 90, 'Lola', 'LOL', 1),
4685(1350, 90, 'Macenta', 'MCT', 1),
4686(1351, 90, 'Mali', 'MAL', 1),
4687(1352, 90, 'Mamou', 'MAM', 1),
4688(1353, 90, 'Mandiana', 'MAN', 1),
4689(1354, 90, 'Nzerekore', 'NZR', 1),
4690(1355, 90, 'Pita', 'PIT', 1),
4691(1356, 90, 'Siguiri', 'SIG', 1),
4692(1357, 90, 'Telimele', 'TLM', 1),
4693(1358, 90, 'Tougue', 'TOG', 1),
4694(1359, 90, 'Yomou', 'YOM', 1),
4695(1360, 91, 'Bafata Region', 'BF', 1),
4696(1361, 91, 'Biombo Region', 'BB', 1),
4697(1362, 91, 'Bissau Region', 'BS', 1),
4698(1363, 91, 'Bolama Region', 'BL', 1),
4699(1364, 91, 'Cacheu Region', 'CA', 1),
4700(1365, 91, 'Gabu Region', 'GA', 1),
4701(1366, 91, 'Oio Region', 'OI', 1),
4702(1367, 91, 'Quinara Region', 'QU', 1),
4703(1368, 91, 'Tombali Region', 'TO', 1),
4704(1369, 92, 'Barima-Waini', 'BW', 1),
4705(1370, 92, 'Cuyuni-Mazaruni', 'CM', 1),
4706(1371, 92, 'Demerara-Mahaica', 'DM', 1),
4707(1372, 92, 'East Berbice-Corentyne', 'EC', 1),
4708(1373, 92, 'Essequibo Islands-West Demerara', 'EW', 1),
4709(1374, 92, 'Mahaica-Berbice', 'MB', 1),
4710(1375, 92, 'Pomeroon-Supenaam', 'PM', 1),
4711(1376, 92, 'Potaro-Siparuni', 'PI', 1),
4712(1377, 92, 'Upper Demerara-Berbice', 'UD', 1),
4713(1378, 92, 'Upper Takutu-Upper Essequibo', 'UT', 1),
4714(1379, 93, 'Artibonite', 'AR', 1),
4715(1380, 93, 'Centre', 'CE', 1),
4716(1381, 93, 'Grand''Anse', 'GA', 1),
4717(1382, 93, 'Nord', 'ND', 1),
4718(1383, 93, 'Nord-Est', 'NE', 1),
4719(1384, 93, 'Nord-Ouest', 'NO', 1),
4720(1385, 93, 'Ouest', 'OU', 1),
4721(1386, 93, 'Sud', 'SD', 1),
4722(1387, 93, 'Sud-Est', 'SE', 1),
4723(1388, 94, 'Flat Island', 'F', 1),
4724(1389, 94, 'McDonald Island', 'M', 1),
4725(1390, 94, 'Shag Island', 'S', 1),
4726(1391, 94, 'Heard Island', 'H', 1),
4727(1392, 95, 'Atlantida', 'AT', 1),
4728(1393, 95, 'Choluteca', 'CH', 1),
4729(1394, 95, 'Colon', 'CL', 1),
4730(1395, 95, 'Comayagua', 'CM', 1),
4731(1396, 95, 'Copan', 'CP', 1),
4732(1397, 95, 'Cortes', 'CR', 1),
4733(1398, 95, 'El Paraiso', 'PA', 1),
4734(1399, 95, 'Francisco Morazan', 'FM', 1),
4735(1400, 95, 'Gracias a Dios', 'GD', 1),
4736(1401, 95, 'Intibuca', 'IN', 1),
4737(1402, 95, 'Islas de la Bahia (Bay Islands)', 'IB', 1),
4738(1403, 95, 'La Paz', 'PZ', 1),
4739(1404, 95, 'Lempira', 'LE', 1),
4740(1405, 95, 'Ocotepeque', 'OC', 1),
4741(1406, 95, 'Olancho', 'OL', 1),
4742(1407, 95, 'Santa Barbara', 'SB', 1),
4743(1408, 95, 'Valle', 'VA', 1),
4744(1409, 95, 'Yoro', 'YO', 1),
4745(1410, 96, 'Central and Western Hong Kong Island', 'HCW', 1),
4746(1411, 96, 'Eastern Hong Kong Island', 'HEA', 1),
4747(1412, 96, 'Southern Hong Kong Island', 'HSO', 1),
4748(1413, 96, 'Wan Chai Hong Kong Island', 'HWC', 1),
4749(1414, 96, 'Kowloon City Kowloon', 'KKC', 1),
4750(1415, 96, 'Kwun Tong Kowloon', 'KKT', 1),
4751(1416, 96, 'Sham Shui Po Kowloon', 'KSS', 1),
4752(1417, 96, 'Wong Tai Sin Kowloon', 'KWT', 1),
4753(1418, 96, 'Yau Tsim Mong Kowloon', 'KYT', 1),
4754(1419, 96, 'Islands New Territories', 'NIS', 1),
4755(1420, 96, 'Kwai Tsing New Territories', 'NKT', 1),
4756(1421, 96, 'North New Territories', 'NNO', 1),
4757(1422, 96, 'Sai Kung New Territories', 'NSK', 1),
4758(1423, 96, 'Sha Tin New Territories', 'NST', 1),
4759(1424, 96, 'Tai Po New Territories', 'NTP', 1),
4760(1425, 96, 'Tsuen Wan New Territories', 'NTW', 1),
4761(1426, 96, 'Tuen Mun New Territories', 'NTM', 1),
4762(1427, 96, 'Yuen Long New Territories', 'NYL', 1),
4763(1428, 97, 'Bacs-Kiskun', 'BK', 1),
4764(1429, 97, 'Baranya', 'BA', 1),
4765(1430, 97, 'Bekes', 'BE', 1),
4766(1431, 97, 'Bekescsaba', 'BS', 1),
4767(1432, 97, 'Borsod-Abauj-Zemplen', 'BZ', 1),
4768(1433, 97, 'Budapest', 'BU', 1),
4769(1434, 97, 'Csongrad', 'CS', 1),
4770(1435, 97, 'Debrecen', 'DE', 1),
4771(1436, 97, 'Dunaujvaros', 'DU', 1),
4772(1437, 97, 'Eger', 'EG', 1),
4773(1438, 97, 'Fejer', 'FE', 1),
4774(1439, 97, 'Gyor', 'GY', 1),
4775(1440, 97, 'Gyor-Moson-Sopron', 'GM', 1),
4776(1441, 97, 'Hajdu-Bihar', 'HB', 1),
4777(1442, 97, 'Heves', 'HE', 1),
4778(1443, 97, 'Hodmezovasarhely', 'HO', 1),
4779(1444, 97, 'Jasz-Nagykun-Szolnok', 'JN', 1),
4780(1445, 97, 'Kaposvar', 'KA', 1),
4781(1446, 97, 'Kecskemet', 'KE', 1),
4782(1447, 97, 'Komarom-Esztergom', 'KO', 1),
4783(1448, 97, 'Miskolc', 'MI', 1),
4784(1449, 97, 'Nagykanizsa', 'NA', 1),
4785(1450, 97, 'Nograd', 'NO', 1),
4786(1451, 97, 'Nyiregyhaza', 'NY', 1),
4787(1452, 97, 'Pecs', 'PE', 1),
4788(1453, 97, 'Pest', 'PS', 1),
4789(1454, 97, 'Somogy', 'SO', 1),
4790(1455, 97, 'Sopron', 'SP', 1),
4791(1456, 97, 'Szabolcs-Szatmar-Bereg', 'SS', 1),
4792(1457, 97, 'Szeged', 'SZ', 1),
4793(1458, 97, 'Szekesfehervar', 'SE', 1),
4794(1459, 97, 'Szolnok', 'SL', 1),
4795(1460, 97, 'Szombathely', 'SM', 1),
4796(1461, 97, 'Tatabanya', 'TA', 1),
4797(1462, 97, 'Tolna', 'TO', 1),
4798(1463, 97, 'Vas', 'VA', 1),
4799(1464, 97, 'Veszprem', 'VE', 1),
4800(1465, 97, 'Zala', 'ZA', 1),
4801(1466, 97, 'Zalaegerszeg', 'ZZ', 1),
4802(1467, 98, 'Austurland', 'AL', 1),
4803(1468, 98, 'Hofuoborgarsvaeoi', 'HF', 1),
4804(1469, 98, 'Norourland eystra', 'NE', 1),
4805(1470, 98, 'Norourland vestra', 'NV', 1),
4806(1471, 98, 'Suourland', 'SL', 1),
4807(1472, 98, 'Suournes', 'SN', 1),
4808(1473, 98, 'Vestfiroir', 'VF', 1),
4809(1474, 98, 'Vesturland', 'VL', 1),
4810(1475, 99, 'Andaman and Nicobar Islands', 'AN', 1),
4811(1476, 99, 'Andhra Pradesh', 'AP', 1),
4812(1477, 99, 'Arunachal Pradesh', 'AR', 1),
4813(1478, 99, 'Assam', 'AS', 1),
4814(1479, 99, 'Bihar', 'BI', 1),
4815(1480, 99, 'Chandigarh', 'CH', 1),
4816(1481, 99, 'Dadra and Nagar Haveli', 'DA', 1),
4817(1482, 99, 'Daman and Diu', 'DM', 1),
4818(1483, 99, 'Delhi', 'DE', 1),
4819(1484, 99, 'Goa', 'GO', 1),
4820(1485, 99, 'Gujarat', 'GU', 1),
4821(1486, 99, 'Haryana', 'HA', 1),
4822(1487, 99, 'Himachal Pradesh', 'HP', 1),
4823(1488, 99, 'Jammu and Kashmir', 'JA', 1),
4824(1489, 99, 'Karnataka', 'KA', 1),
4825(1490, 99, 'Kerala', 'KE', 1),
4826(1491, 99, 'Lakshadweep Islands', 'LI', 1),
4827(1492, 99, 'Madhya Pradesh', 'MP', 1),
4828(1493, 99, 'Maharashtra', 'MA', 1),
4829(1494, 99, 'Manipur', 'MN', 1),
4830(1495, 99, 'Meghalaya', 'ME', 1),
4831(1496, 99, 'Mizoram', 'MI', 1),
4832(1497, 99, 'Nagaland', 'NA', 1),
4833(1498, 99, 'Orissa', 'OR', 1),
4834(1499, 99, 'Pondicherry', 'PO', 1),
4835(1500, 99, 'Punjab', 'PU', 1),
4836(1501, 99, 'Rajasthan', 'RA', 1),
4837(1502, 99, 'Sikkim', 'SI', 1),
4838(1503, 99, 'Tamil Nadu', 'TN', 1),
4839(1504, 99, 'Tripura', 'TR', 1),
4840(1505, 99, 'Uttar Pradesh', 'UP', 1),
4841(1506, 99, 'West Bengal', 'WB', 1),
4842(1507, 100, 'Aceh', 'AC', 1),
4843(1508, 100, 'Bali', 'BA', 1),
4844(1509, 100, 'Banten', 'BT', 1),
4845(1510, 100, 'Bengkulu', 'BE', 1),
4846(1511, 100, 'BoDeTaBek', 'BD', 1),
4847(1512, 100, 'Gorontalo', 'GO', 1),
4848(1513, 100, 'Jakarta Raya', 'JK', 1),
4849(1514, 100, 'Jambi', 'JA', 1),
4850(1515, 100, 'Jawa Barat', 'JB', 1),
4851(1516, 100, 'Jawa Tengah', 'JT', 1),
4852(1517, 100, 'Jawa Timur', 'JI', 1),
4853(1518, 100, 'Kalimantan Barat', 'KB', 1),
4854(1519, 100, 'Kalimantan Selatan', 'KS', 1),
4855(1520, 100, 'Kalimantan Tengah', 'KT', 1),
4856(1521, 100, 'Kalimantan Timur', 'KI', 1),
4857(1522, 100, 'Kepulauan Bangka Belitung', 'BB', 1),
4858(1523, 100, 'Lampung', 'LA', 1),
4859(1524, 100, 'Maluku', 'MA', 1),
4860(1525, 100, 'Maluku Utara', 'MU', 1),
4861(1526, 100, 'Nusa Tenggara Barat', 'NB', 1),
4862(1527, 100, 'Nusa Tenggara Timur', 'NT', 1),
4863(1528, 100, 'Papua', 'PA', 1),
4864(1529, 100, 'Riau', 'RI', 1),
4865(1530, 100, 'Sulawesi Selatan', 'SN', 1),
4866(1531, 100, 'Sulawesi Tengah', 'ST', 1),
4867(1532, 100, 'Sulawesi Tenggara', 'SG', 1),
4868(1533, 100, 'Sulawesi Utara', 'SA', 1),
4869(1534, 100, 'Sumatera Barat', 'SB', 1),
4870(1535, 100, 'Sumatera Selatan', 'SS', 1),
4871(1536, 100, 'Sumatera Utara', 'SU', 1),
4872(1537, 100, 'Yogyakarta', 'YO', 1),
4873(1538, 101, 'Tehran', 'TEH', 1),
4874(1539, 101, 'Qom', 'QOM', 1),
4875(1540, 101, 'Markazi', 'MKZ', 1),
4876(1541, 101, 'Qazvin', 'QAZ', 1),
4877(1542, 101, 'Gilan', 'GIL', 1),
4878(1543, 101, 'Ardabil', 'ARD', 1),
4879(1544, 101, 'Zanjan', 'ZAN', 1),
4880(1545, 101, 'East Azarbaijan', 'EAZ', 1),
4881(1546, 101, 'West Azarbaijan', 'WEZ', 1),
4882(1547, 101, 'Kurdistan', 'KRD', 1),
4883(1548, 101, 'Hamadan', 'HMD', 1),
4884(1549, 101, 'Kermanshah', 'KRM', 1),
4885(1550, 101, 'Ilam', 'ILM', 1),
4886(1551, 101, 'Lorestan', 'LRS', 1),
4887(1552, 101, 'Khuzestan', 'KZT', 1),
4888(1553, 101, 'Chahar Mahaal and Bakhtiari', 'CMB', 1),
4889(1554, 101, 'Kohkiluyeh and Buyer Ahmad', 'KBA', 1),
4890(1555, 101, 'Bushehr', 'BSH', 1),
4891(1556, 101, 'Fars', 'FAR', 1),
4892(1557, 101, 'Hormozgan', 'HRM', 1),
4893(1558, 101, 'Sistan and Baluchistan', 'SBL', 1);
4894INSERT INTO `zone` (`zone_id`, `country_id`, `name`, `code`, `status`) VALUES
4895(1559, 101, 'Kerman', 'KRB', 1),
4896(1560, 101, 'Yazd', 'YZD', 1),
4897(1561, 101, 'Esfahan', 'EFH', 1),
4898(1562, 101, 'Semnan', 'SMN', 1),
4899(1563, 101, 'Mazandaran', 'MZD', 1),
4900(1564, 101, 'Golestan', 'GLS', 1),
4901(1565, 101, 'North Khorasan', 'NKH', 1),
4902(1566, 101, 'Razavi Khorasan', 'RKH', 1),
4903(1567, 101, 'South Khorasan', 'SKH', 1),
4904(1568, 102, 'Baghdad', 'BD', 1),
4905(1569, 102, 'Salah ad Din', 'SD', 1),
4906(1570, 102, 'Diyala', 'DY', 1),
4907(1571, 102, 'Wasit', 'WS', 1),
4908(1572, 102, 'Maysan', 'MY', 1),
4909(1573, 102, 'Al Basrah', 'BA', 1),
4910(1574, 102, 'Dhi Qar', 'DQ', 1),
4911(1575, 102, 'Al Muthanna', 'MU', 1),
4912(1576, 102, 'Al Qadisyah', 'QA', 1),
4913(1577, 102, 'Babil', 'BB', 1),
4914(1578, 102, 'Al Karbala', 'KB', 1),
4915(1579, 102, 'An Najaf', 'NJ', 1),
4916(1580, 102, 'Al Anbar', 'AB', 1),
4917(1581, 102, 'Ninawa', 'NN', 1),
4918(1582, 102, 'Dahuk', 'DH', 1),
4919(1583, 102, 'Arbil', 'AL', 1),
4920(1584, 102, 'At Ta''mim', 'TM', 1),
4921(1585, 102, 'As Sulaymaniyah', 'SL', 1),
4922(1586, 103, 'Carlow', 'CA', 1),
4923(1587, 103, 'Cavan', 'CV', 1),
4924(1588, 103, 'Clare', 'CL', 1),
4925(1589, 103, 'Cork', 'CO', 1),
4926(1590, 103, 'Donegal', 'DO', 1),
4927(1591, 103, 'Dublin', 'DU', 1),
4928(1592, 103, 'Galway', 'GA', 1),
4929(1593, 103, 'Kerry', 'KE', 1),
4930(1594, 103, 'Kildare', 'KI', 1),
4931(1595, 103, 'Kilkenny', 'KL', 1),
4932(1596, 103, 'Laois', 'LA', 1),
4933(1597, 103, 'Leitrim', 'LE', 1),
4934(1598, 103, 'Limerick', 'LI', 1),
4935(1599, 103, 'Longford', 'LO', 1),
4936(1600, 103, 'Louth', 'LU', 1),
4937(1601, 103, 'Mayo', 'MA', 1),
4938(1602, 103, 'Meath', 'ME', 1),
4939(1603, 103, 'Monaghan', 'MO', 1),
4940(1604, 103, 'Offaly', 'OF', 1),
4941(1605, 103, 'Roscommon', 'RO', 1),
4942(1606, 103, 'Sligo', 'SL', 1),
4943(1607, 103, 'Tipperary', 'TI', 1),
4944(1608, 103, 'Waterford', 'WA', 1),
4945(1609, 103, 'Westmeath', 'WE', 1),
4946(1610, 103, 'Wexford', 'WX', 1),
4947(1611, 103, 'Wicklow', 'WI', 1),
4948(1612, 104, 'Be''er Sheva', 'BS', 1),
4949(1613, 104, 'Bika''at Hayarden', 'BH', 1),
4950(1614, 104, 'Eilat and Arava', 'EA', 1),
4951(1615, 104, 'Galil', 'GA', 1),
4952(1616, 104, 'Haifa', 'HA', 1),
4953(1617, 104, 'Jehuda Mountains', 'JM', 1),
4954(1618, 104, 'Jerusalem', 'JE', 1),
4955(1619, 104, 'Negev', 'NE', 1),
4956(1620, 104, 'Semaria', 'SE', 1),
4957(1621, 104, 'Sharon', 'SH', 1),
4958(1622, 104, 'Tel Aviv (Gosh Dan)', 'TA', 1),
4959(3860, 105, 'Caltanissetta', 'CL', 1),
4960(3842, 105, 'Agrigento', 'AG', 1),
4961(3843, 105, 'Alessandria', 'AL', 1),
4962(3844, 105, 'Ancona', 'AN', 1),
4963(3845, 105, 'Aosta', 'AO', 1),
4964(3846, 105, 'Arezzo', 'AR', 1),
4965(3847, 105, 'Ascoli Piceno', 'AP', 1),
4966(3848, 105, 'Asti', 'AT', 1),
4967(3849, 105, 'Avellino', 'AV', 1),
4968(3850, 105, 'Bari', 'BA', 1),
4969(3851, 105, 'Belluno', 'BL', 1),
4970(3852, 105, 'Benevento', 'BN', 1),
4971(3853, 105, 'Bergamo', 'BG', 1),
4972(3854, 105, 'Biella', 'BI', 1),
4973(3855, 105, 'Bologna', 'BO', 1),
4974(3856, 105, 'Bolzano', 'BZ', 1),
4975(3857, 105, 'Brescia', 'BS', 1),
4976(3858, 105, 'Brindisi', 'BR', 1),
4977(3859, 105, 'Cagliari', 'CA', 1),
4978(1643, 106, 'Clarendon Parish', 'CLA', 1),
4979(1644, 106, 'Hanover Parish', 'HAN', 1),
4980(1645, 106, 'Kingston Parish', 'KIN', 1),
4981(1646, 106, 'Manchester Parish', 'MAN', 1),
4982(1647, 106, 'Portland Parish', 'POR', 1),
4983(1648, 106, 'Saint Andrew Parish', 'AND', 1),
4984(1649, 106, 'Saint Ann Parish', 'ANN', 1),
4985(1650, 106, 'Saint Catherine Parish', 'CAT', 1),
4986(1651, 106, 'Saint Elizabeth Parish', 'ELI', 1),
4987(1652, 106, 'Saint James Parish', 'JAM', 1),
4988(1653, 106, 'Saint Mary Parish', 'MAR', 1),
4989(1654, 106, 'Saint Thomas Parish', 'THO', 1),
4990(1655, 106, 'Trelawny Parish', 'TRL', 1),
4991(1656, 106, 'Westmoreland Parish', 'WML', 1),
4992(1657, 107, 'Aichi', 'AI', 1),
4993(1658, 107, 'Akita', 'AK', 1),
4994(1659, 107, 'Aomori', 'AO', 1),
4995(1660, 107, 'Chiba', 'CH', 1),
4996(1661, 107, 'Ehime', 'EH', 1),
4997(1662, 107, 'Fukui', 'FK', 1),
4998(1663, 107, 'Fukuoka', 'FU', 1),
4999(1664, 107, 'Fukushima', 'FS', 1),
5000(1665, 107, 'Gifu', 'GI', 1),
5001(1666, 107, 'Gumma', 'GU', 1),
5002(1667, 107, 'Hiroshima', 'HI', 1),
5003(1668, 107, 'Hokkaido', 'HO', 1),
5004(1669, 107, 'Hyogo', 'HY', 1),
5005(1670, 107, 'Ibaraki', 'IB', 1),
5006(1671, 107, 'Ishikawa', 'IS', 1),
5007(1672, 107, 'Iwate', 'IW', 1),
5008(1673, 107, 'Kagawa', 'KA', 1),
5009(1674, 107, 'Kagoshima', 'KG', 1),
5010(1675, 107, 'Kanagawa', 'KN', 1),
5011(1676, 107, 'Kochi', 'KO', 1),
5012(1677, 107, 'Kumamoto', 'KU', 1),
5013(1678, 107, 'Kyoto', 'KY', 1),
5014(1679, 107, 'Mie', 'MI', 1),
5015(1680, 107, 'Miyagi', 'MY', 1),
5016(1681, 107, 'Miyazaki', 'MZ', 1),
5017(1682, 107, 'Nagano', 'NA', 1),
5018(1683, 107, 'Nagasaki', 'NG', 1),
5019(1684, 107, 'Nara', 'NR', 1),
5020(1685, 107, 'Niigata', 'NI', 1),
5021(1686, 107, 'Oita', 'OI', 1),
5022(1687, 107, 'Okayama', 'OK', 1),
5023(1688, 107, 'Okinawa', 'ON', 1),
5024(1689, 107, 'Osaka', 'OS', 1),
5025(1690, 107, 'Saga', 'SA', 1),
5026(1691, 107, 'Saitama', 'SI', 1),
5027(1692, 107, 'Shiga', 'SH', 1),
5028(1693, 107, 'Shimane', 'SM', 1),
5029(1694, 107, 'Shizuoka', 'SZ', 1),
5030(1695, 107, 'Tochigi', 'TO', 1),
5031(1696, 107, 'Tokushima', 'TS', 1),
5032(1697, 107, 'Tokyo', 'TK', 1),
5033(1698, 107, 'Tottori', 'TT', 1),
5034(1699, 107, 'Toyama', 'TY', 1),
5035(1700, 107, 'Wakayama', 'WA', 1),
5036(1701, 107, 'Yamagata', 'YA', 1),
5037(1702, 107, 'Yamaguchi', 'YM', 1),
5038(1703, 107, 'Yamanashi', 'YN', 1),
5039(1704, 108, '''Amman', 'AM', 1),
5040(1705, 108, 'Ajlun', 'AJ', 1),
5041(1706, 108, 'Al ''Aqabah', 'AA', 1),
5042(1707, 108, 'Al Balqa''', 'AB', 1),
5043(1708, 108, 'Al Karak', 'AK', 1),
5044(1709, 108, 'Al Mafraq', 'AL', 1),
5045(1710, 108, 'At Tafilah', 'AT', 1),
5046(1711, 108, 'Az Zarqa''', 'AZ', 1),
5047(1712, 108, 'Irbid', 'IR', 1),
5048(1713, 108, 'Jarash', 'JA', 1),
5049(1714, 108, 'Ma''an', 'MA', 1),
5050(1715, 108, 'Madaba', 'MD', 1),
5051(1716, 109, 'Almaty', 'AL', 1),
5052(1717, 109, 'Almaty City', 'AC', 1),
5053(1718, 109, 'Aqmola', 'AM', 1),
5054(1719, 109, 'Aqtobe', 'AQ', 1),
5055(1720, 109, 'Astana City', 'AS', 1),
5056(1721, 109, 'Atyrau', 'AT', 1),
5057(1722, 109, 'Batys Qazaqstan', 'BA', 1),
5058(1723, 109, 'Bayqongyr City', 'BY', 1),
5059(1724, 109, 'Mangghystau', 'MA', 1),
5060(1725, 109, 'Ongtustik Qazaqstan', 'ON', 1),
5061(1726, 109, 'Pavlodar', 'PA', 1),
5062(1727, 109, 'Qaraghandy', 'QA', 1),
5063(1728, 109, 'Qostanay', 'QO', 1),
5064(1729, 109, 'Qyzylorda', 'QY', 1),
5065(1730, 109, 'Shyghys Qazaqstan', 'SH', 1),
5066(1731, 109, 'Soltustik Qazaqstan', 'SO', 1),
5067(1732, 109, 'Zhambyl', 'ZH', 1),
5068(1733, 110, 'Central', 'CE', 1),
5069(1734, 110, 'Coast', 'CO', 1),
5070(1735, 110, 'Eastern', 'EA', 1),
5071(1736, 110, 'Nairobi Area', 'NA', 1),
5072(1737, 110, 'North Eastern', 'NE', 1),
5073(1738, 110, 'Nyanza', 'NY', 1),
5074(1739, 110, 'Rift Valley', 'RV', 1),
5075(1740, 110, 'Western', 'WE', 1),
5076(1741, 111, 'Abaiang', 'AG', 1),
5077(1742, 111, 'Abemama', 'AM', 1),
5078(1743, 111, 'Aranuka', 'AK', 1),
5079(1744, 111, 'Arorae', 'AO', 1),
5080(1745, 111, 'Banaba', 'BA', 1),
5081(1746, 111, 'Beru', 'BE', 1),
5082(1747, 111, 'Butaritari', 'bT', 1),
5083(1748, 111, 'Kanton', 'KA', 1),
5084(1749, 111, 'Kiritimati', 'KR', 1),
5085(1750, 111, 'Kuria', 'KU', 1),
5086(1751, 111, 'Maiana', 'MI', 1),
5087(1752, 111, 'Makin', 'MN', 1),
5088(1753, 111, 'Marakei', 'ME', 1),
5089(1754, 111, 'Nikunau', 'NI', 1),
5090(1755, 111, 'Nonouti', 'NO', 1),
5091(1756, 111, 'Onotoa', 'ON', 1),
5092(1757, 111, 'Tabiteuea', 'TT', 1),
5093(1758, 111, 'Tabuaeran', 'TR', 1),
5094(1759, 111, 'Tamana', 'TM', 1),
5095(1760, 111, 'Tarawa', 'TW', 1),
5096(1761, 111, 'Teraina', 'TE', 1),
5097(1762, 112, 'Chagang-do', 'CHA', 1),
5098(1763, 112, 'Hamgyong-bukto', 'HAB', 1),
5099(1764, 112, 'Hamgyong-namdo', 'HAN', 1),
5100(1765, 112, 'Hwanghae-bukto', 'HWB', 1),
5101(1766, 112, 'Hwanghae-namdo', 'HWN', 1),
5102(1767, 112, 'Kangwon-do', 'KAN', 1),
5103(1768, 112, 'P''yongan-bukto', 'PYB', 1),
5104(1769, 112, 'P''yongan-namdo', 'PYN', 1),
5105(1770, 112, 'Ryanggang-do (Yanggang-do)', 'YAN', 1),
5106(1771, 112, 'Rason Directly Governed City', 'NAJ', 1),
5107(1772, 112, 'P''yongyang Special City', 'PYO', 1),
5108(1773, 113, 'Ch''ungch''ong-bukto', 'CO', 1),
5109(1774, 113, 'Ch''ungch''ong-namdo', 'CH', 1),
5110(1775, 113, 'Cheju-do', 'CD', 1),
5111(1776, 113, 'Cholla-bukto', 'CB', 1),
5112(1777, 113, 'Cholla-namdo', 'CN', 1),
5113(1778, 113, 'Inch''on-gwangyoksi', 'IG', 1),
5114(1779, 113, 'Kangwon-do', 'KA', 1),
5115(1780, 113, 'Kwangju-gwangyoksi', 'KG', 1),
5116(1781, 113, 'Kyonggi-do', 'KD', 1),
5117(1782, 113, 'Kyongsang-bukto', 'KB', 1),
5118(1783, 113, 'Kyongsang-namdo', 'KN', 1),
5119(1784, 113, 'Pusan-gwangyoksi', 'PG', 1),
5120(1785, 113, 'Soul-t''ukpyolsi', 'SO', 1),
5121(1786, 113, 'Taegu-gwangyoksi', 'TA', 1),
5122(1787, 113, 'Taejon-gwangyoksi', 'TG', 1),
5123(1788, 114, 'Al ''Asimah', 'AL', 1),
5124(1789, 114, 'Al Ahmadi', 'AA', 1),
5125(1790, 114, 'Al Farwaniyah', 'AF', 1),
5126(1791, 114, 'Al Jahra''', 'AJ', 1),
5127(1792, 114, 'Hawalli', 'HA', 1),
5128(1793, 115, 'Bishkek', 'GB', 1),
5129(1794, 115, 'Batken', 'B', 1),
5130(1795, 115, 'Chu', 'C', 1),
5131(1796, 115, 'Jalal-Abad', 'J', 1),
5132(1797, 115, 'Naryn', 'N', 1),
5133(1798, 115, 'Osh', 'O', 1),
5134(1799, 115, 'Talas', 'T', 1),
5135(1800, 115, 'Ysyk-Kol', 'Y', 1),
5136(1801, 116, 'Vientiane', 'VT', 1),
5137(1802, 116, 'Attapu', 'AT', 1),
5138(1803, 116, 'Bokeo', 'BK', 1),
5139(1804, 116, 'Bolikhamxai', 'BL', 1),
5140(1805, 116, 'Champasak', 'CH', 1),
5141(1806, 116, 'Houaphan', 'HO', 1),
5142(1807, 116, 'Khammouan', 'KH', 1),
5143(1808, 116, 'Louang Namtha', 'LM', 1),
5144(1809, 116, 'Louangphabang', 'LP', 1),
5145(1810, 116, 'Oudomxai', 'OU', 1),
5146(1811, 116, 'Phongsali', 'PH', 1),
5147(1812, 116, 'Salavan', 'SL', 1),
5148(1813, 116, 'Savannakhet', 'SV', 1),
5149(1814, 116, 'Vientiane', 'VI', 1),
5150(1815, 116, 'Xaignabouli', 'XA', 1),
5151(1816, 116, 'Xekong', 'XE', 1),
5152(1817, 116, 'Xiangkhoang', 'XI', 1),
5153(1818, 116, 'Xaisomboun', 'XN', 1),
5154(1819, 117, 'Aizkraukles Rajons', 'AIZ', 1),
5155(1820, 117, 'Aluksnes Rajons', 'ALU', 1),
5156(1821, 117, 'Balvu Rajons', 'BAL', 1),
5157(1822, 117, 'Bauskas Rajons', 'BAU', 1),
5158(1823, 117, 'Cesu Rajons', 'CES', 1),
5159(1824, 117, 'Daugavpils Rajons', 'DGR', 1),
5160(1825, 117, 'Dobeles Rajons', 'DOB', 1),
5161(1826, 117, 'Gulbenes Rajons', 'GUL', 1),
5162(1827, 117, 'Jekabpils Rajons', 'JEK', 1),
5163(1828, 117, 'Jelgavas Rajons', 'JGR', 1),
5164(1829, 117, 'Kraslavas Rajons', 'KRA', 1),
5165(1830, 117, 'Kuldigas Rajons', 'KUL', 1),
5166(1831, 117, 'Liepajas Rajons', 'LPR', 1),
5167(1832, 117, 'Limbazu Rajons', 'LIM', 1),
5168(1833, 117, 'Ludzas Rajons', 'LUD', 1),
5169(1834, 117, 'Madonas Rajons', 'MAD', 1),
5170(1835, 117, 'Ogres Rajons', 'OGR', 1),
5171(1836, 117, 'Preilu Rajons', 'PRE', 1),
5172(1837, 117, 'Rezeknes Rajons', 'RZR', 1),
5173(1838, 117, 'Rigas Rajons', 'RGR', 1),
5174(1839, 117, 'Saldus Rajons', 'SAL', 1),
5175(1840, 117, 'Talsu Rajons', 'TAL', 1),
5176(1841, 117, 'Tukuma Rajons', 'TUK', 1),
5177(1842, 117, 'Valkas Rajons', 'VLK', 1),
5178(1843, 117, 'Valmieras Rajons', 'VLM', 1),
5179(1844, 117, 'Ventspils Rajons', 'VSR', 1),
5180(1845, 117, 'Daugavpils', 'DGV', 1),
5181(1846, 117, 'Jelgava', 'JGV', 1),
5182(1847, 117, 'Jurmala', 'JUR', 1),
5183(1848, 117, 'Liepaja', 'LPK', 1),
5184(1849, 117, 'Rezekne', 'RZK', 1),
5185(1850, 117, 'Riga', 'RGA', 1),
5186(1851, 117, 'Ventspils', 'VSL', 1),
5187(1852, 119, 'Berea', 'BE', 1),
5188(1853, 119, 'Butha-Buthe', 'BB', 1),
5189(1854, 119, 'Leribe', 'LE', 1),
5190(1855, 119, 'Mafeteng', 'MF', 1),
5191(1856, 119, 'Maseru', 'MS', 1),
5192(1857, 119, 'Mohale''s Hoek', 'MH', 1),
5193(1858, 119, 'Mokhotlong', 'MK', 1),
5194(1859, 119, 'Qacha''s Nek', 'QN', 1),
5195(1860, 119, 'Quthing', 'QT', 1),
5196(1861, 119, 'Thaba-Tseka', 'TT', 1),
5197(1862, 120, 'Bomi', 'BI', 1),
5198(1863, 120, 'Bong', 'BG', 1),
5199(1864, 120, 'Grand Bassa', 'GB', 1),
5200(1865, 120, 'Grand Cape Mount', 'CM', 1),
5201(1866, 120, 'Grand Gedeh', 'GG', 1),
5202(1867, 120, 'Grand Kru', 'GK', 1),
5203(1868, 120, 'Lofa', 'LO', 1),
5204(1869, 120, 'Margibi', 'MG', 1),
5205(1870, 120, 'Maryland', 'ML', 1),
5206(1871, 120, 'Montserrado', 'MS', 1),
5207(1872, 120, 'Nimba', 'NB', 1),
5208(1873, 120, 'River Cess', 'RC', 1),
5209(1874, 120, 'Sinoe', 'SN', 1),
5210(1875, 121, 'Ajdabiya', 'AJ', 1),
5211(1876, 121, 'Al ''Aziziyah', 'AZ', 1),
5212(1877, 121, 'Al Fatih', 'FA', 1),
5213(1878, 121, 'Al Jabal al Akhdar', 'JA', 1),
5214(1879, 121, 'Al Jufrah', 'JU', 1),
5215(1880, 121, 'Al Khums', 'KH', 1),
5216(1881, 121, 'Al Kufrah', 'KU', 1),
5217(1882, 121, 'An Nuqat al Khams', 'NK', 1),
5218(1883, 121, 'Ash Shati''', 'AS', 1),
5219(1884, 121, 'Awbari', 'AW', 1),
5220(1885, 121, 'Az Zawiyah', 'ZA', 1),
5221(1886, 121, 'Banghazi', 'BA', 1),
5222(1887, 121, 'Darnah', 'DA', 1),
5223(1888, 121, 'Ghadamis', 'GD', 1),
5224(1889, 121, 'Gharyan', 'GY', 1),
5225(1890, 121, 'Misratah', 'MI', 1),
5226(1891, 121, 'Murzuq', 'MZ', 1),
5227(1892, 121, 'Sabha', 'SB', 1),
5228(1893, 121, 'Sawfajjin', 'SW', 1),
5229(1894, 121, 'Surt', 'SU', 1),
5230(1895, 121, 'Tarabulus (Tripoli)', 'TL', 1),
5231(1896, 121, 'Tarhunah', 'TH', 1),
5232(1897, 121, 'Tubruq', 'TU', 1),
5233(1898, 121, 'Yafran', 'YA', 1),
5234(1899, 121, 'Zlitan', 'ZL', 1),
5235(1900, 122, 'Vaduz', 'V', 1),
5236(1901, 122, 'Schaan', 'A', 1),
5237(1902, 122, 'Balzers', 'B', 1),
5238(1903, 122, 'Triesen', 'N', 1),
5239(1904, 122, 'Eschen', 'E', 1),
5240(1905, 122, 'Mauren', 'M', 1),
5241(1906, 122, 'Triesenberg', 'T', 1),
5242(1907, 122, 'Ruggell', 'R', 1),
5243(1908, 122, 'Gamprin', 'G', 1),
5244(1909, 122, 'Schellenberg', 'L', 1),
5245(1910, 122, 'Planken', 'P', 1),
5246(1911, 123, 'Alytus', 'AL', 1),
5247(1912, 123, 'Kaunas', 'KA', 1),
5248(1913, 123, 'Klaipeda', 'KL', 1),
5249(1914, 123, 'Marijampole', 'MA', 1),
5250(1915, 123, 'Panevezys', 'PA', 1),
5251(1916, 123, 'Siauliai', 'SI', 1),
5252(1917, 123, 'Taurage', 'TA', 1),
5253(1918, 123, 'Telsiai', 'TE', 1),
5254(1919, 123, 'Utena', 'UT', 1),
5255(1920, 123, 'Vilnius', 'VI', 1),
5256(1921, 124, 'Diekirch', 'DD', 1),
5257(1922, 124, 'Clervaux', 'DC', 1),
5258(1923, 124, 'Redange', 'DR', 1),
5259(1924, 124, 'Vianden', 'DV', 1),
5260(1925, 124, 'Wiltz', 'DW', 1),
5261(1926, 124, 'Grevenmacher', 'GG', 1),
5262(1927, 124, 'Echternach', 'GE', 1),
5263(1928, 124, 'Remich', 'GR', 1),
5264(1929, 124, 'Luxembourg', 'LL', 1),
5265(1930, 124, 'Capellen', 'LC', 1),
5266(1931, 124, 'Esch-sur-Alzette', 'LE', 1),
5267(1932, 124, 'Mersch', 'LM', 1),
5268(1933, 125, 'Our Lady Fatima Parish', 'OLF', 1),
5269(1934, 125, 'St. Anthony Parish', 'ANT', 1),
5270(1935, 125, 'St. Lazarus Parish', 'LAZ', 1),
5271(1936, 125, 'Cathedral Parish', 'CAT', 1),
5272(1937, 125, 'St. Lawrence Parish', 'LAW', 1),
5273(1938, 127, 'Antananarivo', 'AN', 1),
5274(1939, 127, 'Antsiranana', 'AS', 1),
5275(1940, 127, 'Fianarantsoa', 'FN', 1),
5276(1941, 127, 'Mahajanga', 'MJ', 1),
5277(1942, 127, 'Toamasina', 'TM', 1),
5278(1943, 127, 'Toliara', 'TL', 1),
5279(1944, 128, 'Balaka', 'BLK', 1),
5280(1945, 128, 'Blantyre', 'BLT', 1),
5281(1946, 128, 'Chikwawa', 'CKW', 1),
5282(1947, 128, 'Chiradzulu', 'CRD', 1),
5283(1948, 128, 'Chitipa', 'CTP', 1),
5284(1949, 128, 'Dedza', 'DDZ', 1),
5285(1950, 128, 'Dowa', 'DWA', 1),
5286(1951, 128, 'Karonga', 'KRG', 1),
5287(1952, 128, 'Kasungu', 'KSG', 1),
5288(1953, 128, 'Likoma', 'LKM', 1),
5289(1954, 128, 'Lilongwe', 'LLG', 1),
5290(1955, 128, 'Machinga', 'MCG', 1),
5291(1956, 128, 'Mangochi', 'MGC', 1),
5292(1957, 128, 'Mchinji', 'MCH', 1),
5293(1958, 128, 'Mulanje', 'MLJ', 1),
5294(1959, 128, 'Mwanza', 'MWZ', 1),
5295(1960, 128, 'Mzimba', 'MZM', 1),
5296(1961, 128, 'Ntcheu', 'NTU', 1),
5297(1962, 128, 'Nkhata Bay', 'NKB', 1),
5298(1963, 128, 'Nkhotakota', 'NKH', 1),
5299(1964, 128, 'Nsanje', 'NSJ', 1),
5300(1965, 128, 'Ntchisi', 'NTI', 1),
5301(1966, 128, 'Phalombe', 'PHL', 1),
5302(1967, 128, 'Rumphi', 'RMP', 1),
5303(1968, 128, 'Salima', 'SLM', 1),
5304(1969, 128, 'Thyolo', 'THY', 1),
5305(1970, 128, 'Zomba', 'ZBA', 1),
5306(1971, 129, 'Johor', 'JO', 1),
5307(1972, 129, 'Kedah', 'KE', 1),
5308(1973, 129, 'Kelantan', 'KL', 1),
5309(1974, 129, 'Labuan', 'LA', 1),
5310(1975, 129, 'Melaka', 'ME', 1),
5311(1976, 129, 'Negeri Sembilan', 'NS', 1),
5312(1977, 129, 'Pahang', 'PA', 1),
5313(1978, 129, 'Perak', 'PE', 1),
5314(1979, 129, 'Perlis', 'PR', 1),
5315(1980, 129, 'Pulau Pinang', 'PP', 1),
5316(1981, 129, 'Sabah', 'SA', 1),
5317(1982, 129, 'Sarawak', 'SR', 1),
5318(1983, 129, 'Selangor', 'SE', 1),
5319(1984, 129, 'Terengganu', 'TE', 1),
5320(1985, 129, 'Wilayah Persekutuan', 'WP', 1),
5321(1986, 130, 'Thiladhunmathi Uthuru', 'THU', 1),
5322(1987, 130, 'Thiladhunmathi Dhekunu', 'THD', 1),
5323(1988, 130, 'Miladhunmadulu Uthuru', 'MLU', 1),
5324(1989, 130, 'Miladhunmadulu Dhekunu', 'MLD', 1),
5325(1990, 130, 'Maalhosmadulu Uthuru', 'MAU', 1),
5326(1991, 130, 'Maalhosmadulu Dhekunu', 'MAD', 1),
5327(1992, 130, 'Faadhippolhu', 'FAA', 1),
5328(1993, 130, 'Male Atoll', 'MAA', 1),
5329(1994, 130, 'Ari Atoll Uthuru', 'AAU', 1),
5330(1995, 130, 'Ari Atoll Dheknu', 'AAD', 1),
5331(1996, 130, 'Felidhe Atoll', 'FEA', 1),
5332(1997, 130, 'Mulaku Atoll', 'MUA', 1),
5333(1998, 130, 'Nilandhe Atoll Uthuru', 'NAU', 1),
5334(1999, 130, 'Nilandhe Atoll Dhekunu', 'NAD', 1),
5335(2000, 130, 'Kolhumadulu', 'KLH', 1),
5336(2001, 130, 'Hadhdhunmathi', 'HDH', 1),
5337(2002, 130, 'Huvadhu Atoll Uthuru', 'HAU', 1),
5338(2003, 130, 'Huvadhu Atoll Dhekunu', 'HAD', 1),
5339(2004, 130, 'Fua Mulaku', 'FMU', 1),
5340(2005, 130, 'Addu', 'ADD', 1),
5341(2006, 131, 'Gao', 'GA', 1),
5342(2007, 131, 'Kayes', 'KY', 1),
5343(2008, 131, 'Kidal', 'KD', 1),
5344(2009, 131, 'Koulikoro', 'KL', 1),
5345(2010, 131, 'Mopti', 'MP', 1),
5346(2011, 131, 'Segou', 'SG', 1),
5347(2012, 131, 'Sikasso', 'SK', 1),
5348(2013, 131, 'Tombouctou', 'TB', 1),
5349(2014, 131, 'Bamako Capital District', 'CD', 1),
5350(2015, 132, 'Attard', 'ATT', 1),
5351(2016, 132, 'Balzan', 'BAL', 1),
5352(2017, 132, 'Birgu', 'BGU', 1),
5353(2018, 132, 'Birkirkara', 'BKK', 1),
5354(2019, 132, 'Birzebbuga', 'BRZ', 1),
5355(2020, 132, 'Bormla', 'BOR', 1),
5356(2021, 132, 'Dingli', 'DIN', 1),
5357(2022, 132, 'Fgura', 'FGU', 1),
5358(2023, 132, 'Floriana', 'FLO', 1),
5359(2024, 132, 'Gudja', 'GDJ', 1),
5360(2025, 132, 'Gzira', 'GZR', 1),
5361(2026, 132, 'Gargur', 'GRG', 1),
5362(2027, 132, 'Gaxaq', 'GXQ', 1),
5363(2028, 132, 'Hamrun', 'HMR', 1),
5364(2029, 132, 'Iklin', 'IKL', 1),
5365(2030, 132, 'Isla', 'ISL', 1),
5366(2031, 132, 'Kalkara', 'KLK', 1),
5367(2032, 132, 'Kirkop', 'KRK', 1),
5368(2033, 132, 'Lija', 'LIJ', 1),
5369(2034, 132, 'Luqa', 'LUQ', 1),
5370(2035, 132, 'Marsa', 'MRS', 1),
5371(2036, 132, 'Marsaskala', 'MKL', 1),
5372(2037, 132, 'Marsaxlokk', 'MXL', 1),
5373(2038, 132, 'Mdina', 'MDN', 1),
5374(2039, 132, 'Melliea', 'MEL', 1),
5375(2040, 132, 'Mgarr', 'MGR', 1),
5376(2041, 132, 'Mosta', 'MST', 1),
5377(2042, 132, 'Mqabba', 'MQA', 1),
5378(2043, 132, 'Msida', 'MSI', 1),
5379(2044, 132, 'Mtarfa', 'MTF', 1),
5380(2045, 132, 'Naxxar', 'NAX', 1),
5381(2046, 132, 'Paola', 'PAO', 1),
5382(2047, 132, 'Pembroke', 'PEM', 1),
5383(2048, 132, 'Pieta', 'PIE', 1),
5384(2049, 132, 'Qormi', 'QOR', 1),
5385(2050, 132, 'Qrendi', 'QRE', 1),
5386(2051, 132, 'Rabat', 'RAB', 1),
5387(2052, 132, 'Safi', 'SAF', 1),
5388(2053, 132, 'San Giljan', 'SGI', 1),
5389(2054, 132, 'Santa Lucija', 'SLU', 1),
5390(2055, 132, 'San Pawl il-Bahar', 'SPB', 1),
5391(2056, 132, 'San Gwann', 'SGW', 1),
5392(2057, 132, 'Santa Venera', 'SVE', 1),
5393(2058, 132, 'Siggiewi', 'SIG', 1),
5394(2059, 132, 'Sliema', 'SLM', 1),
5395(2060, 132, 'Swieqi', 'SWQ', 1),
5396(2061, 132, 'Ta Xbiex', 'TXB', 1),
5397(2062, 132, 'Tarxien', 'TRX', 1),
5398(2063, 132, 'Valletta', 'VLT', 1),
5399(2064, 132, 'Xgajra', 'XGJ', 1),
5400(2065, 132, 'Zabbar', 'ZBR', 1),
5401(2066, 132, 'Zebbug', 'ZBG', 1),
5402(2067, 132, 'Zejtun', 'ZJT', 1),
5403(2068, 132, 'Zurrieq', 'ZRQ', 1),
5404(2069, 132, 'Fontana', 'FNT', 1),
5405(2070, 132, 'Ghajnsielem', 'GHJ', 1),
5406(2071, 132, 'Gharb', 'GHR', 1),
5407(2072, 132, 'Ghasri', 'GHS', 1),
5408(2073, 132, 'Kercem', 'KRC', 1),
5409(2074, 132, 'Munxar', 'MUN', 1),
5410(2075, 132, 'Nadur', 'NAD', 1),
5411(2076, 132, 'Qala', 'QAL', 1),
5412(2077, 132, 'Victoria', 'VIC', 1),
5413(2078, 132, 'San Lawrenz', 'SLA', 1),
5414(2079, 132, 'Sannat', 'SNT', 1),
5415(2080, 132, 'Xagra', 'ZAG', 1),
5416(2081, 132, 'Xewkija', 'XEW', 1),
5417(2082, 132, 'Zebbug', 'ZEB', 1),
5418(2083, 133, 'Ailinginae', 'ALG', 1),
5419(2084, 133, 'Ailinglaplap', 'ALL', 1),
5420(2085, 133, 'Ailuk', 'ALK', 1),
5421(2086, 133, 'Arno', 'ARN', 1),
5422(2087, 133, 'Aur', 'AUR', 1),
5423(2088, 133, 'Bikar', 'BKR', 1),
5424(2089, 133, 'Bikini', 'BKN', 1),
5425(2090, 133, 'Bokak', 'BKK', 1),
5426(2091, 133, 'Ebon', 'EBN', 1),
5427(2092, 133, 'Enewetak', 'ENT', 1),
5428(2093, 133, 'Erikub', 'EKB', 1),
5429(2094, 133, 'Jabat', 'JBT', 1),
5430(2095, 133, 'Jaluit', 'JLT', 1),
5431(2096, 133, 'Jemo', 'JEM', 1),
5432(2097, 133, 'Kili', 'KIL', 1),
5433(2098, 133, 'Kwajalein', 'KWJ', 1),
5434(2099, 133, 'Lae', 'LAE', 1),
5435(2100, 133, 'Lib', 'LIB', 1),
5436(2101, 133, 'Likiep', 'LKP', 1),
5437(2102, 133, 'Majuro', 'MJR', 1),
5438(2103, 133, 'Maloelap', 'MLP', 1),
5439(2104, 133, 'Mejit', 'MJT', 1),
5440(2105, 133, 'Mili', 'MIL', 1),
5441(2106, 133, 'Namorik', 'NMK', 1),
5442(2107, 133, 'Namu', 'NAM', 1),
5443(2108, 133, 'Rongelap', 'RGL', 1),
5444(2109, 133, 'Rongrik', 'RGK', 1),
5445(2110, 133, 'Toke', 'TOK', 1),
5446(2111, 133, 'Ujae', 'UJA', 1),
5447(2112, 133, 'Ujelang', 'UJL', 1),
5448(2113, 133, 'Utirik', 'UTK', 1),
5449(2114, 133, 'Wotho', 'WTH', 1),
5450(2115, 133, 'Wotje', 'WTJ', 1),
5451(2116, 135, 'Adrar', 'AD', 1),
5452(2117, 135, 'Assaba', 'AS', 1),
5453(2118, 135, 'Brakna', 'BR', 1),
5454(2119, 135, 'Dakhlet Nouadhibou', 'DN', 1),
5455(2120, 135, 'Gorgol', 'GO', 1),
5456(2121, 135, 'Guidimaka', 'GM', 1),
5457(2122, 135, 'Hodh Ech Chargui', 'HC', 1),
5458(2123, 135, 'Hodh El Gharbi', 'HG', 1),
5459(2124, 135, 'Inchiri', 'IN', 1),
5460(2125, 135, 'Tagant', 'TA', 1),
5461(2126, 135, 'Tiris Zemmour', 'TZ', 1),
5462(2127, 135, 'Trarza', 'TR', 1),
5463(2128, 135, 'Nouakchott', 'NO', 1),
5464(2129, 136, 'Beau Bassin-Rose Hill', 'BR', 1),
5465(2130, 136, 'Curepipe', 'CU', 1),
5466(2131, 136, 'Port Louis', 'PU', 1),
5467(2132, 136, 'Quatre Bornes', 'QB', 1),
5468(2133, 136, 'Vacoas-Phoenix', 'VP', 1),
5469(2134, 136, 'Agalega Islands', 'AG', 1),
5470(2135, 136, 'Cargados Carajos Shoals (Saint Brandon Islands)', 'CC', 1),
5471(2136, 136, 'Rodrigues', 'RO', 1),
5472(2137, 136, 'Black River', 'BL', 1),
5473(2138, 136, 'Flacq', 'FL', 1),
5474(2139, 136, 'Grand Port', 'GP', 1),
5475(2140, 136, 'Moka', 'MO', 1),
5476(2141, 136, 'Pamplemousses', 'PA', 1),
5477(2142, 136, 'Plaines Wilhems', 'PW', 1),
5478(2143, 136, 'Port Louis', 'PL', 1),
5479(2144, 136, 'Riviere du Rempart', 'RR', 1),
5480(2145, 136, 'Savanne', 'SA', 1),
5481(2146, 138, 'Baja California Norte', 'BN', 1),
5482(2147, 138, 'Baja California Sur', 'BS', 1),
5483(2148, 138, 'Campeche', 'CA', 1),
5484(2149, 138, 'Chiapas', 'CI', 1),
5485(2150, 138, 'Chihuahua', 'CH', 1),
5486(2151, 138, 'Coahuila de Zaragoza', 'CZ', 1),
5487(2152, 138, 'Colima', 'CL', 1),
5488(2153, 138, 'Distrito Federal', 'DF', 1),
5489(2154, 138, 'Durango', 'DU', 1),
5490(2155, 138, 'Guanajuato', 'GA', 1),
5491(2156, 138, 'Guerrero', 'GE', 1),
5492(2157, 138, 'Hidalgo', 'HI', 1),
5493(2158, 138, 'Jalisco', 'JA', 1),
5494(2159, 138, 'Mexico', 'ME', 1),
5495(2160, 138, 'Michoacan de Ocampo', 'MI', 1),
5496(2161, 138, 'Morelos', 'MO', 1),
5497(2162, 138, 'Nayarit', 'NA', 1),
5498(2163, 138, 'Nuevo Leon', 'NL', 1),
5499(2164, 138, 'Oaxaca', 'OA', 1),
5500(2165, 138, 'Puebla', 'PU', 1),
5501(2166, 138, 'Queretaro de Arteaga', 'QA', 1),
5502(2167, 138, 'Quintana Roo', 'QR', 1),
5503(2168, 138, 'San Luis Potosi', 'SA', 1),
5504(2169, 138, 'Sinaloa', 'SI', 1),
5505(2170, 138, 'Sonora', 'SO', 1),
5506(2171, 138, 'Tabasco', 'TB', 1),
5507(2172, 138, 'Tamaulipas', 'TM', 1),
5508(2173, 138, 'Tlaxcala', 'TL', 1),
5509(2174, 138, 'Veracruz-Llave', 'VE', 1),
5510(2175, 138, 'Yucatan', 'YU', 1),
5511(2176, 138, 'Zacatecas', 'ZA', 1),
5512(2177, 139, 'Chuuk', 'C', 1),
5513(2178, 139, 'Kosrae', 'K', 1),
5514(2179, 139, 'Pohnpei', 'P', 1),
5515(2180, 139, 'Yap', 'Y', 1),
5516(2181, 140, 'Gagauzia', 'GA', 1),
5517(2182, 140, 'Chisinau', 'CU', 1),
5518(2183, 140, 'Balti', 'BA', 1),
5519(2184, 140, 'Cahul', 'CA', 1),
5520(2185, 140, 'Edinet', 'ED', 1),
5521(2186, 140, 'Lapusna', 'LA', 1),
5522(2187, 140, 'Orhei', 'OR', 1),
5523(2188, 140, 'Soroca', 'SO', 1),
5524(2189, 140, 'Tighina', 'TI', 1),
5525(2190, 140, 'Ungheni', 'UN', 1),
5526(2191, 140, 'St‚nga Nistrului', 'SN', 1),
5527(2192, 141, 'Fontvieille', 'FV', 1),
5528(2193, 141, 'La Condamine', 'LC', 1),
5529(2194, 141, 'Monaco-Ville', 'MV', 1),
5530(2195, 141, 'Monte-Carlo', 'MC', 1),
5531(2196, 142, 'Ulanbaatar', '1', 1),
5532(2197, 142, 'Orhon', '035', 1),
5533(2198, 142, 'Darhan uul', '037', 1),
5534(2199, 142, 'Hentiy', '039', 1),
5535(2200, 142, 'Hovsgol', '041', 1),
5536(2201, 142, 'Hovd', '043', 1),
5537(2202, 142, 'Uvs', '046', 1),
5538(2203, 142, 'Tov', '047', 1),
5539(2204, 142, 'Selenge', '049', 1),
5540(2205, 142, 'Suhbaatar', '051', 1),
5541(2206, 142, 'Omnogovi', '053', 1),
5542(2207, 142, 'Ovorhangay', '055', 1),
5543(2208, 142, 'Dzavhan', '057', 1),
5544(2209, 142, 'DundgovL', '059', 1),
5545(2210, 142, 'Dornod', '061', 1),
5546(2211, 142, 'Dornogov', '063', 1),
5547(2212, 142, 'Govi-Sumber', '064', 1),
5548(2213, 142, 'Govi-Altay', '065', 1),
5549(2214, 142, 'Bulgan', '067', 1),
5550(2215, 142, 'Bayanhongor', '069', 1),
5551(2216, 142, 'Bayan-Olgiy', '071', 1),
5552(2217, 142, 'Arhangay', '073', 1),
5553(2218, 143, 'Saint Anthony', 'A', 1),
5554(2219, 143, 'Saint Georges', 'G', 1),
5555(2220, 143, 'Saint Peter', 'P', 1),
5556(2221, 144, 'Agadir', 'AGD', 1),
5557(2222, 144, 'Al Hoceima', 'HOC', 1),
5558(2223, 144, 'Azilal', 'AZI', 1),
5559(2224, 144, 'Beni Mellal', 'BME', 1),
5560(2225, 144, 'Ben Slimane', 'BSL', 1),
5561(2226, 144, 'Boulemane', 'BLM', 1),
5562(2227, 144, 'Casablanca', 'CBL', 1),
5563(2228, 144, 'Chaouen', 'CHA', 1),
5564(2229, 144, 'El Jadida', 'EJA', 1),
5565(2230, 144, 'El Kelaa des Sraghna', 'EKS', 1),
5566(2231, 144, 'Er Rachidia', 'ERA', 1),
5567(2232, 144, 'Essaouira', 'ESS', 1),
5568(2233, 144, 'Fes', 'FES', 1),
5569(2234, 144, 'Figuig', 'FIG', 1),
5570(2235, 144, 'Guelmim', 'GLM', 1),
5571(2236, 144, 'Ifrane', 'IFR', 1),
5572(2237, 144, 'Kenitra', 'KEN', 1),
5573(2238, 144, 'Khemisset', 'KHM', 1),
5574(2239, 144, 'Khenifra', 'KHN', 1),
5575(2240, 144, 'Khouribga', 'KHO', 1),
5576(2241, 144, 'Laayoune', 'LYN', 1),
5577(2242, 144, 'Larache', 'LAR', 1),
5578(2243, 144, 'Marrakech', 'MRK', 1),
5579(2244, 144, 'Meknes', 'MKN', 1),
5580(2245, 144, 'Nador', 'NAD', 1),
5581(2246, 144, 'Ouarzazate', 'ORZ', 1),
5582(2247, 144, 'Oujda', 'OUJ', 1),
5583(2248, 144, 'Rabat-Sale', 'RSA', 1),
5584(2249, 144, 'Safi', 'SAF', 1),
5585(2250, 144, 'Settat', 'SET', 1),
5586(2251, 144, 'Sidi Kacem', 'SKA', 1),
5587(2252, 144, 'Tangier', 'TGR', 1),
5588(2253, 144, 'Tan-Tan', 'TAN', 1),
5589(2254, 144, 'Taounate', 'TAO', 1),
5590(2255, 144, 'Taroudannt', 'TRD', 1),
5591(2256, 144, 'Tata', 'TAT', 1),
5592(2257, 144, 'Taza', 'TAZ', 1),
5593(2258, 144, 'Tetouan', 'TET', 1),
5594(2259, 144, 'Tiznit', 'TIZ', 1),
5595(2260, 144, 'Ad Dakhla', 'ADK', 1),
5596(2261, 144, 'Boujdour', 'BJD', 1),
5597(2262, 144, 'Es Smara', 'ESM', 1),
5598(2263, 145, 'Cabo Delgado', 'CD', 1),
5599(2264, 145, 'Gaza', 'GZ', 1),
5600(2265, 145, 'Inhambane', 'IN', 1),
5601(2266, 145, 'Manica', 'MN', 1),
5602(2267, 145, 'Maputo (city)', 'MC', 1),
5603(2268, 145, 'Maputo', 'MP', 1),
5604(2269, 145, 'Nampula', 'NA', 1),
5605(2270, 145, 'Niassa', 'NI', 1),
5606(2271, 145, 'Sofala', 'SO', 1),
5607(2272, 145, 'Tete', 'TE', 1),
5608(2273, 145, 'Zambezia', 'ZA', 1),
5609(2274, 146, 'Ayeyarwady', 'AY', 1),
5610(2275, 146, 'Bago', 'BG', 1),
5611(2276, 146, 'Magway', 'MG', 1),
5612(2277, 146, 'Mandalay', 'MD', 1),
5613(2278, 146, 'Sagaing', 'SG', 1),
5614(2279, 146, 'Tanintharyi', 'TN', 1),
5615(2280, 146, 'Yangon', 'YG', 1),
5616(2281, 146, 'Chin State', 'CH', 1),
5617(2282, 146, 'Kachin State', 'KC', 1),
5618(2283, 146, 'Kayah State', 'KH', 1),
5619(2284, 146, 'Kayin State', 'KN', 1),
5620(2285, 146, 'Mon State', 'MN', 1),
5621(2286, 146, 'Rakhine State', 'RK', 1),
5622(2287, 146, 'Shan State', 'SH', 1),
5623(2288, 147, 'Caprivi', 'CA', 1),
5624(2289, 147, 'Erongo', 'ER', 1),
5625(2290, 147, 'Hardap', 'HA', 1),
5626(2291, 147, 'Karas', 'KR', 1),
5627(2292, 147, 'Kavango', 'KV', 1),
5628(2293, 147, 'Khomas', 'KH', 1),
5629(2294, 147, 'Kunene', 'KU', 1),
5630(2295, 147, 'Ohangwena', 'OW', 1),
5631(2296, 147, 'Omaheke', 'OK', 1),
5632(2297, 147, 'Omusati', 'OT', 1),
5633(2298, 147, 'Oshana', 'ON', 1),
5634(2299, 147, 'Oshikoto', 'OO', 1),
5635(2300, 147, 'Otjozondjupa', 'OJ', 1),
5636(2301, 148, 'Aiwo', 'AO', 1),
5637(2302, 148, 'Anabar', 'AA', 1),
5638(2303, 148, 'Anetan', 'AT', 1),
5639(2304, 148, 'Anibare', 'AI', 1),
5640(2305, 148, 'Baiti', 'BA', 1),
5641(2306, 148, 'Boe', 'BO', 1),
5642(2307, 148, 'Buada', 'BU', 1),
5643(2308, 148, 'Denigomodu', 'DE', 1),
5644(2309, 148, 'Ewa', 'EW', 1),
5645(2310, 148, 'Ijuw', 'IJ', 1),
5646(2311, 148, 'Meneng', 'ME', 1),
5647(2312, 148, 'Nibok', 'NI', 1),
5648(2313, 148, 'Uaboe', 'UA', 1),
5649(2314, 148, 'Yaren', 'YA', 1),
5650(2315, 149, 'Bagmati', 'BA', 1),
5651(2316, 149, 'Bheri', 'BH', 1),
5652(2317, 149, 'Dhawalagiri', 'DH', 1),
5653(2318, 149, 'Gandaki', 'GA', 1),
5654(2319, 149, 'Janakpur', 'JA', 1),
5655(2320, 149, 'Karnali', 'KA', 1),
5656(2321, 149, 'Kosi', 'KO', 1),
5657(2322, 149, 'Lumbini', 'LU', 1),
5658(2323, 149, 'Mahakali', 'MA', 1),
5659(2324, 149, 'Mechi', 'ME', 1),
5660(2325, 149, 'Narayani', 'NA', 1),
5661(2326, 149, 'Rapti', 'RA', 1),
5662(2327, 149, 'Sagarmatha', 'SA', 1),
5663(2328, 149, 'Seti', 'SE', 1),
5664(2329, 150, 'Drenthe', 'DR', 1),
5665(2330, 150, 'Flevoland', 'FL', 1),
5666(2331, 150, 'Friesland', 'FR', 1),
5667(2332, 150, 'Gelderland', 'GE', 1),
5668(2333, 150, 'Groningen', 'GR', 1),
5669(2334, 150, 'Limburg', 'LI', 1),
5670(2335, 150, 'Noord Brabant', 'NB', 1),
5671(2336, 150, 'Noord Holland', 'NH', 1),
5672(2337, 150, 'Overijssel', 'OV', 1),
5673(2338, 150, 'Utrecht', 'UT', 1),
5674(2339, 150, 'Zeeland', 'ZE', 1),
5675(2340, 150, 'Zuid Holland', 'ZH', 1),
5676(2341, 152, 'Iles Loyaute', 'L', 1),
5677(2342, 152, 'Nord', 'N', 1),
5678(2343, 152, 'Sud', 'S', 1),
5679(2344, 153, 'Auckland', 'AUK', 1),
5680(2345, 153, 'Bay of Plenty', 'BOP', 1),
5681(2346, 153, 'Canterbury', 'CAN', 1),
5682(2347, 153, 'Coromandel', 'COR', 1),
5683(2348, 153, 'Gisborne', 'GIS', 1),
5684(2349, 153, 'Fiordland', 'FIO', 1),
5685(2350, 153, 'Hawke''s Bay', 'HKB', 1),
5686(2351, 153, 'Marlborough', 'MBH', 1),
5687(2352, 153, 'Manawatu-Wanganui', 'MWT', 1),
5688(2353, 153, 'Mt Cook-Mackenzie', 'MCM', 1),
5689(2354, 153, 'Nelson', 'NSN', 1),
5690(2355, 153, 'Northland', 'NTL', 1),
5691(2356, 153, 'Otago', 'OTA', 1),
5692(2357, 153, 'Southland', 'STL', 1),
5693(2358, 153, 'Taranaki', 'TKI', 1),
5694(2359, 153, 'Wellington', 'WGN', 1),
5695(2360, 153, 'Waikato', 'WKO', 1),
5696(2361, 153, 'Wairarapa', 'WAI', 1),
5697(2362, 153, 'West Coast', 'WTC', 1),
5698(2363, 154, 'Atlantico Norte', 'AN', 1),
5699(2364, 154, 'Atlantico Sur', 'AS', 1),
5700(2365, 154, 'Boaco', 'BO', 1),
5701(2366, 154, 'Carazo', 'CA', 1),
5702(2367, 154, 'Chinandega', 'CI', 1),
5703(2368, 154, 'Chontales', 'CO', 1),
5704(2369, 154, 'Esteli', 'ES', 1),
5705(2370, 154, 'Granada', 'GR', 1),
5706(2371, 154, 'Jinotega', 'JI', 1),
5707(2372, 154, 'Leon', 'LE', 1),
5708(2373, 154, 'Madriz', 'MD', 1),
5709(2374, 154, 'Managua', 'MN', 1),
5710(2375, 154, 'Masaya', 'MS', 1),
5711(2376, 154, 'Matagalpa', 'MT', 1),
5712(2377, 154, 'Nuevo Segovia', 'NS', 1),
5713(2378, 154, 'Rio San Juan', 'RS', 1),
5714(2379, 154, 'Rivas', 'RI', 1),
5715(2380, 155, 'Agadez', 'AG', 1),
5716(2381, 155, 'Diffa', 'DF', 1),
5717(2382, 155, 'Dosso', 'DS', 1),
5718(2383, 155, 'Maradi', 'MA', 1),
5719(2384, 155, 'Niamey', 'NM', 1),
5720(2385, 155, 'Tahoua', 'TH', 1),
5721(2386, 155, 'Tillaberi', 'TL', 1),
5722(2387, 155, 'Zinder', 'ZD', 1),
5723(2388, 156, 'Abia', 'AB', 1),
5724(2389, 156, 'Abuja Federal Capital Territory', 'CT', 1),
5725(2390, 156, 'Adamawa', 'AD', 1),
5726(2391, 156, 'Akwa Ibom', 'AK', 1),
5727(2392, 156, 'Anambra', 'AN', 1),
5728(2393, 156, 'Bauchi', 'BC', 1),
5729(2394, 156, 'Bayelsa', 'BY', 1),
5730(2395, 156, 'Benue', 'BN', 1),
5731(2396, 156, 'Borno', 'BO', 1),
5732(2397, 156, 'Cross River', 'CR', 1),
5733(2398, 156, 'Delta', 'DE', 1),
5734(2399, 156, 'Ebonyi', 'EB', 1),
5735(2400, 156, 'Edo', 'ED', 1),
5736(2401, 156, 'Ekiti', 'EK', 1),
5737(2402, 156, 'Enugu', 'EN', 1),
5738(2403, 156, 'Gombe', 'GO', 1),
5739(2404, 156, 'Imo', 'IM', 1),
5740(2405, 156, 'Jigawa', 'JI', 1),
5741(2406, 156, 'Kaduna', 'KD', 1),
5742(2407, 156, 'Kano', 'KN', 1),
5743(2408, 156, 'Katsina', 'KT', 1),
5744(2409, 156, 'Kebbi', 'KE', 1),
5745(2410, 156, 'Kogi', 'KO', 1),
5746(2411, 156, 'Kwara', 'KW', 1),
5747(2412, 156, 'Lagos', 'LA', 1),
5748(2413, 156, 'Nassarawa', 'NA', 1),
5749(2414, 156, 'Niger', 'NI', 1),
5750(2415, 156, 'Ogun', 'OG', 1),
5751(2416, 156, 'Ondo', 'ONG', 1),
5752(2417, 156, 'Osun', 'OS', 1),
5753(2418, 156, 'Oyo', 'OY', 1),
5754(2419, 156, 'Plateau', 'PL', 1),
5755(2420, 156, 'Rivers', 'RI', 1),
5756(2421, 156, 'Sokoto', 'SO', 1),
5757(2422, 156, 'Taraba', 'TA', 1),
5758(2423, 156, 'Yobe', 'YO', 1),
5759(2424, 156, 'Zamfara', 'ZA', 1),
5760(2425, 159, 'Northern Islands', 'N', 1),
5761(2426, 159, 'Rota', 'R', 1),
5762(2427, 159, 'Saipan', 'S', 1),
5763(2428, 159, 'Tinian', 'T', 1),
5764(2429, 160, 'Akershus', 'AK', 1),
5765(2430, 160, 'Aust-Agder', 'AA', 1),
5766(2431, 160, 'Buskerud', 'BU', 1),
5767(2432, 160, 'Finnmark', 'FM', 1),
5768(2433, 160, 'Hedmark', 'HM', 1),
5769(2434, 160, 'Hordaland', 'HL', 1),
5770(2435, 160, 'More og Romdal', 'MR', 1),
5771(2436, 160, 'Nord-Trondelag', 'NT', 1),
5772(2437, 160, 'Nordland', 'NL', 1),
5773(2438, 160, 'Ostfold', 'OF', 1),
5774(2439, 160, 'Oppland', 'OP', 1),
5775(2440, 160, 'Oslo', 'OL', 1),
5776(2441, 160, 'Rogaland', 'RL', 1),
5777(2442, 160, 'Sor-Trondelag', 'ST', 1),
5778(2443, 160, 'Sogn og Fjordane', 'SJ', 1),
5779(2444, 160, 'Svalbard', 'SV', 1),
5780(2445, 160, 'Telemark', 'TM', 1),
5781(2446, 160, 'Troms', 'TR', 1),
5782(2447, 160, 'Vest-Agder', 'VA', 1),
5783(2448, 160, 'Vestfold', 'VF', 1),
5784(2449, 161, 'Ad Dakhiliyah', 'DA', 1),
5785(2450, 161, 'Al Batinah', 'BA', 1),
5786(2451, 161, 'Al Wusta', 'WU', 1),
5787(2452, 161, 'Ash Sharqiyah', 'SH', 1),
5788(2453, 161, 'Az Zahirah', 'ZA', 1),
5789(2454, 161, 'Masqat', 'MA', 1),
5790(2455, 161, 'Musandam', 'MU', 1),
5791(2456, 161, 'Zufar', 'ZU', 1),
5792(2457, 162, 'Balochistan', 'B', 1),
5793(2458, 162, 'Federally Administered Tribal Areas', 'T', 1),
5794(2459, 162, 'Islamabad Capital Territory', 'I', 1),
5795(2460, 162, 'North-West Frontier', 'N', 1),
5796(2461, 162, 'Punjab', 'P', 1),
5797(2462, 162, 'Sindh', 'S', 1),
5798(2463, 163, 'Aimeliik', 'AM', 1),
5799(2464, 163, 'Airai', 'AR', 1),
5800(2465, 163, 'Angaur', 'AN', 1),
5801(2466, 163, 'Hatohobei', 'HA', 1),
5802(2467, 163, 'Kayangel', 'KA', 1),
5803(2468, 163, 'Koror', 'KO', 1),
5804(2469, 163, 'Melekeok', 'ME', 1),
5805(2470, 163, 'Ngaraard', 'NA', 1),
5806(2471, 163, 'Ngarchelong', 'NG', 1),
5807(2472, 163, 'Ngardmau', 'ND', 1),
5808(2473, 163, 'Ngatpang', 'NT', 1),
5809(2474, 163, 'Ngchesar', 'NC', 1),
5810(2475, 163, 'Ngeremlengui', 'NR', 1),
5811(2476, 163, 'Ngiwal', 'NW', 1),
5812(2477, 163, 'Peleliu', 'PE', 1),
5813(2478, 163, 'Sonsorol', 'SO', 1),
5814(2479, 164, 'Bocas del Toro', 'BT', 1),
5815(2480, 164, 'Chiriqui', 'CH', 1),
5816(2481, 164, 'Cocle', 'CC', 1),
5817(2482, 164, 'Colon', 'CL', 1),
5818(2483, 164, 'Darien', 'DA', 1),
5819(2484, 164, 'Herrera', 'HE', 1),
5820(2485, 164, 'Los Santos', 'LS', 1),
5821(2486, 164, 'Panama', 'PA', 1),
5822(2487, 164, 'San Blas', 'SB', 1),
5823(2488, 164, 'Veraguas', 'VG', 1),
5824(2489, 165, 'Bougainville', 'BV', 1),
5825(2490, 165, 'Central', 'CE', 1),
5826(2491, 165, 'Chimbu', 'CH', 1),
5827(2492, 165, 'Eastern Highlands', 'EH', 1),
5828(2493, 165, 'East New Britain', 'EB', 1),
5829(2494, 165, 'East Sepik', 'ES', 1),
5830(2495, 165, 'Enga', 'EN', 1),
5831(2496, 165, 'Gulf', 'GU', 1),
5832(2497, 165, 'Madang', 'MD', 1),
5833(2498, 165, 'Manus', 'MN', 1),
5834(2499, 165, 'Milne Bay', 'MB', 1),
5835(2500, 165, 'Morobe', 'MR', 1),
5836(2501, 165, 'National Capital', 'NC', 1),
5837(2502, 165, 'New Ireland', 'NI', 1),
5838(2503, 165, 'Northern', 'NO', 1),
5839(2504, 165, 'Sandaun', 'SA', 1),
5840(2505, 165, 'Southern Highlands', 'SH', 1),
5841(2506, 165, 'Western', 'WE', 1),
5842(2507, 165, 'Western Highlands', 'WH', 1),
5843(2508, 165, 'West New Britain', 'WB', 1),
5844(2509, 166, 'Alto Paraguay', 'AG', 1),
5845(2510, 166, 'Alto Parana', 'AN', 1),
5846(2511, 166, 'Amambay', 'AM', 1),
5847(2512, 166, 'Asuncion', 'AS', 1),
5848(2513, 166, 'Boqueron', 'BO', 1),
5849(2514, 166, 'Caaguazu', 'CG', 1),
5850(2515, 166, 'Caazapa', 'CZ', 1),
5851(2516, 166, 'Canindeyu', 'CN', 1),
5852(2517, 166, 'Central', 'CE', 1),
5853(2518, 166, 'Concepcion', 'CC', 1),
5854(2519, 166, 'Cordillera', 'CD', 1),
5855(2520, 166, 'Guaira', 'GU', 1),
5856(2521, 166, 'Itapua', 'IT', 1),
5857(2522, 166, 'Misiones', 'MI', 1),
5858(2523, 166, 'Neembucu', 'NE', 1),
5859(2524, 166, 'Paraguari', 'PA', 1),
5860(2525, 166, 'Presidente Hayes', 'PH', 1),
5861(2526, 166, 'San Pedro', 'SP', 1),
5862(2527, 167, 'Amazonas', 'AM', 1),
5863(2528, 167, 'Ancash', 'AN', 1),
5864(2529, 167, 'Apurimac', 'AP', 1),
5865(2530, 167, 'Arequipa', 'AR', 1),
5866(2531, 167, 'Ayacucho', 'AY', 1),
5867(2532, 167, 'Cajamarca', 'CJ', 1),
5868(2533, 167, 'Callao', 'CL', 1),
5869(2534, 167, 'Cusco', 'CU', 1),
5870(2535, 167, 'Huancavelica', 'HV', 1),
5871(2536, 167, 'Huanuco', 'HO', 1),
5872(2537, 167, 'Ica', 'IC', 1),
5873(2538, 167, 'Junin', 'JU', 1),
5874(2539, 167, 'La Libertad', 'LD', 1),
5875(2540, 167, 'Lambayeque', 'LY', 1),
5876(2541, 167, 'Lima', 'LI', 1),
5877(2542, 167, 'Loreto', 'LO', 1),
5878(2543, 167, 'Madre de Dios', 'MD', 1),
5879(2544, 167, 'Moquegua', 'MO', 1),
5880(2545, 167, 'Pasco', 'PA', 1),
5881(2546, 167, 'Piura', 'PI', 1),
5882(2547, 167, 'Puno', 'PU', 1),
5883(2548, 167, 'San Martin', 'SM', 1),
5884(2549, 167, 'Tacna', 'TA', 1),
5885(2550, 167, 'Tumbes', 'TU', 1),
5886(2551, 167, 'Ucayali', 'UC', 1),
5887(2552, 168, 'Abra', 'ABR', 1),
5888(2553, 168, 'Agusan del Norte', 'ANO', 1),
5889(2554, 168, 'Agusan del Sur', 'ASU', 1),
5890(2555, 168, 'Aklan', 'AKL', 1),
5891(2556, 168, 'Albay', 'ALB', 1),
5892(2557, 168, 'Antique', 'ANT', 1),
5893(2558, 168, 'Apayao', 'APY', 1),
5894(2559, 168, 'Aurora', 'AUR', 1),
5895(2560, 168, 'Basilan', 'BAS', 1),
5896(2561, 168, 'Bataan', 'BTA', 1),
5897(2562, 168, 'Batanes', 'BTE', 1),
5898(2563, 168, 'Batangas', 'BTG', 1),
5899(2564, 168, 'Biliran', 'BLR', 1),
5900(2565, 168, 'Benguet', 'BEN', 1),
5901(2566, 168, 'Bohol', 'BOL', 1),
5902(2567, 168, 'Bukidnon', 'BUK', 1),
5903(2568, 168, 'Bulacan', 'BUL', 1),
5904(2569, 168, 'Cagayan', 'CAG', 1),
5905(2570, 168, 'Camarines Norte', 'CNO', 1),
5906(2571, 168, 'Camarines Sur', 'CSU', 1),
5907(2572, 168, 'Camiguin', 'CAM', 1),
5908(2573, 168, 'Capiz', 'CAP', 1),
5909(2574, 168, 'Catanduanes', 'CAT', 1),
5910(2575, 168, 'Cavite', 'CAV', 1),
5911(2576, 168, 'Cebu', 'CEB', 1),
5912(2577, 168, 'Compostela', 'CMP', 1),
5913(2578, 168, 'Davao del Norte', 'DNO', 1),
5914(2579, 168, 'Davao del Sur', 'DSU', 1),
5915(2580, 168, 'Davao Oriental', 'DOR', 1),
5916(2581, 168, 'Eastern Samar', 'ESA', 1),
5917(2582, 168, 'Guimaras', 'GUI', 1),
5918(2583, 168, 'Ifugao', 'IFU', 1),
5919(2584, 168, 'Ilocos Norte', 'INO', 1),
5920(2585, 168, 'Ilocos Sur', 'ISU', 1),
5921(2586, 168, 'Iloilo', 'ILO', 1),
5922(2587, 168, 'Isabela', 'ISA', 1),
5923(2588, 168, 'Kalinga', 'KAL', 1),
5924(2589, 168, 'Laguna', 'LAG', 1),
5925(2590, 168, 'Lanao del Norte', 'LNO', 1),
5926(2591, 168, 'Lanao del Sur', 'LSU', 1),
5927(2592, 168, 'La Union', 'UNI', 1),
5928(2593, 168, 'Leyte', 'LEY', 1),
5929(2594, 168, 'Maguindanao', 'MAG', 1),
5930(2595, 168, 'Marinduque', 'MRN', 1),
5931(2596, 168, 'Masbate', 'MSB', 1),
5932(2597, 168, 'Mindoro Occidental', 'MIC', 1),
5933(2598, 168, 'Mindoro Oriental', 'MIR', 1),
5934(2599, 168, 'Misamis Occidental', 'MSC', 1),
5935(2600, 168, 'Misamis Oriental', 'MOR', 1),
5936(2601, 168, 'Mountain', 'MOP', 1),
5937(2602, 168, 'Negros Occidental', 'NOC', 1),
5938(2603, 168, 'Negros Oriental', 'NOR', 1),
5939(2604, 168, 'North Cotabato', 'NCT', 1),
5940(2605, 168, 'Northern Samar', 'NSM', 1),
5941(2606, 168, 'Nueva Ecija', 'NEC', 1),
5942(2607, 168, 'Nueva Vizcaya', 'NVZ', 1),
5943(2608, 168, 'Palawan', 'PLW', 1),
5944(2609, 168, 'Pampanga', 'PMP', 1),
5945(2610, 168, 'Pangasinan', 'PNG', 1),
5946(2611, 168, 'Quezon', 'QZN', 1),
5947(2612, 168, 'Quirino', 'QRN', 1),
5948(2613, 168, 'Rizal', 'RIZ', 1),
5949(2614, 168, 'Romblon', 'ROM', 1),
5950(2615, 168, 'Samar', 'SMR', 1),
5951(2616, 168, 'Sarangani', 'SRG', 1),
5952(2617, 168, 'Siquijor', 'SQJ', 1),
5953(2618, 168, 'Sorsogon', 'SRS', 1),
5954(2619, 168, 'South Cotabato', 'SCO', 1),
5955(2620, 168, 'Southern Leyte', 'SLE', 1),
5956(2621, 168, 'Sultan Kudarat', 'SKU', 1),
5957(2622, 168, 'Sulu', 'SLU', 1),
5958(2623, 168, 'Surigao del Norte', 'SNO', 1),
5959(2624, 168, 'Surigao del Sur', 'SSU', 1),
5960(2625, 168, 'Tarlac', 'TAR', 1),
5961(2626, 168, 'Tawi-Tawi', 'TAW', 1),
5962(2627, 168, 'Zambales', 'ZBL', 1),
5963(2628, 168, 'Zamboanga del Norte', 'ZNO', 1),
5964(2629, 168, 'Zamboanga del Sur', 'ZSU', 1),
5965(2630, 168, 'Zamboanga Sibugay', 'ZSI', 1),
5966(2631, 170, 'Dolnoslaskie', 'DO', 1),
5967(2632, 170, 'Kujawsko-Pomorskie', 'KP', 1),
5968(2633, 170, 'Lodzkie', 'LO', 1),
5969(2634, 170, 'Lubelskie', 'LL', 1),
5970(2635, 170, 'Lubuskie', 'LU', 1),
5971(2636, 170, 'Malopolskie', 'ML', 1),
5972(2637, 170, 'Mazowieckie', 'MZ', 1),
5973(2638, 170, 'Opolskie', 'OP', 1),
5974(2639, 170, 'Podkarpackie', 'PP', 1),
5975(2640, 170, 'Podlaskie', 'PL', 1),
5976(2641, 170, 'Pomorskie', 'PM', 1),
5977(2642, 170, 'Slaskie', 'SL', 1),
5978(2643, 170, 'Swietokrzyskie', 'SW', 1),
5979(2644, 170, 'Warminsko-Mazurskie', 'WM', 1),
5980(2645, 170, 'Wielkopolskie', 'WP', 1),
5981(2646, 170, 'Zachodniopomorskie', 'ZA', 1),
5982(2647, 198, 'Saint Pierre', 'P', 1),
5983(2648, 198, 'Miquelon', 'M', 1),
5984(2649, 171, 'Açores', 'AC', 1),
5985(2650, 171, 'Aveiro', 'AV', 1),
5986(2651, 171, 'Beja', 'BE', 1),
5987(2652, 171, 'Braga', 'BR', 1),
5988(2653, 171, 'Bragança', 'BA', 1),
5989(2654, 171, 'Castelo Branco', 'CB', 1),
5990(2655, 171, 'Coimbra', 'CO', 1),
5991(2656, 171, 'Évora', 'EV', 1),
5992(2657, 171, 'Faro', 'FA', 1),
5993(2658, 171, 'Guarda', 'GU', 1),
5994(2659, 171, 'Leiria', 'LE', 1),
5995(2660, 171, 'Lisboa', 'LI', 1),
5996(2661, 171, 'Madeira', 'ME', 1),
5997(2662, 171, 'Portalegre', 'PO', 1),
5998(2663, 171, 'Porto', 'PR', 1),
5999(2664, 171, 'Santarém', 'SA', 1),
6000(2665, 171, 'Setúbal', 'SE', 1),
6001(2666, 171, 'Viana do Castelo', 'VC', 1),
6002(2667, 171, 'Vila Real', 'VR', 1),
6003(2668, 171, 'Viseu', 'VI', 1),
6004(2669, 173, 'Ad Dawhah', 'DW', 1),
6005(2670, 173, 'Al Ghuwayriyah', 'GW', 1),
6006(2671, 173, 'Al Jumayliyah', 'JM', 1),
6007(2672, 173, 'Al Khawr', 'KR', 1),
6008(2673, 173, 'Al Wakrah', 'WK', 1),
6009(2674, 173, 'Ar Rayyan', 'RN', 1),
6010(2675, 173, 'Jarayan al Batinah', 'JB', 1),
6011(2676, 173, 'Madinat ash Shamal', 'MS', 1),
6012(2677, 173, 'Umm Sa''id', 'UD', 1),
6013(2678, 173, 'Umm Salal', 'UL', 1),
6014(2679, 175, 'Alba', 'AB', 1),
6015(2680, 175, 'Arad', 'AR', 1),
6016(2681, 175, 'Arges', 'AG', 1),
6017(2682, 175, 'Bacau', 'BC', 1),
6018(2683, 175, 'Bihor', 'BH', 1),
6019(2684, 175, 'Bistrita-Nasaud', 'BN', 1),
6020(2685, 175, 'Botosani', 'BT', 1),
6021(2686, 175, 'Brasov', 'BV', 1),
6022(2687, 175, 'Braila', 'BR', 1),
6023(2688, 175, 'Bucuresti', 'B', 1),
6024(2689, 175, 'Buzau', 'BZ', 1),
6025(2690, 175, 'Caras-Severin', 'CS', 1),
6026(2691, 175, 'Calarasi', 'CL', 1),
6027(2692, 175, 'Cluj', 'CJ', 1),
6028(2693, 175, 'Constanta', 'CT', 1),
6029(2694, 175, 'Covasna', 'CV', 1),
6030(2695, 175, 'Dimbovita', 'DB', 1),
6031(2696, 175, 'Dolj', 'DJ', 1),
6032(2697, 175, 'Galati', 'GL', 1),
6033(2698, 175, 'Giurgiu', 'GR', 1),
6034(2699, 175, 'Gorj', 'GJ', 1),
6035(2700, 175, 'Harghita', 'HR', 1),
6036(2701, 175, 'Hunedoara', 'HD', 1),
6037(2702, 175, 'Ialomita', 'IL', 1),
6038(2703, 175, 'Iasi', 'IS', 1),
6039(2704, 175, 'Ilfov', 'IF', 1),
6040(2705, 175, 'Maramures', 'MM', 1),
6041(2706, 175, 'Mehedinti', 'MH', 1),
6042(2707, 175, 'Mures', 'MS', 1),
6043(2708, 175, 'Neamt', 'NT', 1),
6044(2709, 175, 'Olt', 'OT', 1),
6045(2710, 175, 'Prahova', 'PH', 1),
6046(2711, 175, 'Satu-Mare', 'SM', 1),
6047(2712, 175, 'Salaj', 'SJ', 1),
6048(2713, 175, 'Sibiu', 'SB', 1),
6049(2714, 175, 'Suceava', 'SV', 1),
6050(2715, 175, 'Teleorman', 'TR', 1),
6051(2716, 175, 'Timis', 'TM', 1),
6052(2717, 175, 'Tulcea', 'TL', 1),
6053(2718, 175, 'Vaslui', 'VS', 1),
6054(2719, 175, 'Valcea', 'VL', 1),
6055(2720, 175, 'Vrancea', 'VN', 1),
6056(2721, 176, 'Abakan', 'AB', 1),
6057(2722, 176, 'Aginskoye', 'AG', 1),
6058(2723, 176, 'Anadyr', 'AN', 1),
6059(2724, 176, 'Arkahangelsk', 'AR', 1),
6060(2725, 176, 'Astrakhan', 'AS', 1),
6061(2726, 176, 'Barnaul', 'BA', 1),
6062(2727, 176, 'Belgorod', 'BE', 1),
6063(2728, 176, 'Birobidzhan', 'BI', 1),
6064(2729, 176, 'Blagoveshchensk', 'BL', 1),
6065(2730, 176, 'Bryansk', 'BR', 1),
6066(2731, 176, 'Cheboksary', 'CH', 1),
6067(2732, 176, 'Chelyabinsk', 'CL', 1),
6068(2733, 176, 'Cherkessk', 'CR', 1),
6069(2734, 176, 'Chita', 'CI', 1),
6070(2735, 176, 'Dudinka', 'DU', 1),
6071(2736, 176, 'Elista', 'EL', 1),
6072(2737, 176, 'Gomo-Altaysk', 'GO', 1),
6073(2738, 176, 'Gorno-Altaysk', 'GA', 1),
6074(2739, 176, 'Groznyy', 'GR', 1),
6075(2740, 176, 'Irkutsk', 'IR', 1),
6076(2741, 176, 'Ivanovo', 'IV', 1),
6077(2742, 176, 'Izhevsk', 'IZ', 1),
6078(2743, 176, 'Kalinigrad', 'KA', 1),
6079(2744, 176, 'Kaluga', 'KL', 1),
6080(2745, 176, 'Kasnodar', 'KS', 1),
6081(2746, 176, 'Kazan', 'KZ', 1),
6082(2747, 176, 'Kemerovo', 'KE', 1),
6083(2748, 176, 'Khabarovsk', 'KH', 1),
6084(2749, 176, 'Khanty-Mansiysk', 'KM', 1),
6085(2750, 176, 'Kostroma', 'KO', 1),
6086(2751, 176, 'Krasnodar', 'KR', 1),
6087(2752, 176, 'Krasnoyarsk', 'KN', 1),
6088(2753, 176, 'Kudymkar', 'KU', 1),
6089(2754, 176, 'Kurgan', 'KG', 1),
6090(2755, 176, 'Kursk', 'KK', 1),
6091(2756, 176, 'Kyzyl', 'KY', 1),
6092(2757, 176, 'Lipetsk', 'LI', 1),
6093(2758, 176, 'Magadan', 'MA', 1),
6094(2759, 176, 'Makhachkala', 'MK', 1),
6095(2760, 176, 'Maykop', 'MY', 1),
6096(2761, 176, 'Moscow', 'MO', 1),
6097(2762, 176, 'Murmansk', 'MU', 1),
6098(2763, 176, 'Nalchik', 'NA', 1),
6099(2764, 176, 'Naryan Mar', 'NR', 1),
6100(2765, 176, 'Nazran', 'NZ', 1),
6101(2766, 176, 'Nizhniy Novgorod', 'NI', 1),
6102(2767, 176, 'Novgorod', 'NO', 1),
6103(2768, 176, 'Novosibirsk', 'NV', 1),
6104(2769, 176, 'Omsk', 'OM', 1),
6105(2770, 176, 'Orel', 'OR', 1),
6106(2771, 176, 'Orenburg', 'OE', 1),
6107(2772, 176, 'Palana', 'PA', 1),
6108(2773, 176, 'Penza', 'PE', 1),
6109(2774, 176, 'Perm', 'PR', 1),
6110(2775, 176, 'Petropavlovsk-Kamchatskiy', 'PK', 1),
6111(2776, 176, 'Petrozavodsk', 'PT', 1),
6112(2777, 176, 'Pskov', 'PS', 1),
6113(2778, 176, 'Rostov-na-Donu', 'RO', 1),
6114(2779, 176, 'Ryazan', 'RY', 1),
6115(2780, 176, 'Salekhard', 'SL', 1),
6116(2781, 176, 'Samara', 'SA', 1),
6117(2782, 176, 'Saransk', 'SR', 1),
6118(2783, 176, 'Saratov', 'SV', 1),
6119(2784, 176, 'Smolensk', 'SM', 1),
6120(2785, 176, 'St. Petersburg', 'SP', 1),
6121(2786, 176, 'Stavropol', 'ST', 1),
6122(2787, 176, 'Syktyvkar', 'SY', 1),
6123(2788, 176, 'Tambov', 'TA', 1),
6124(2789, 176, 'Tomsk', 'TO', 1),
6125(2790, 176, 'Tula', 'TU', 1),
6126(2791, 176, 'Tura', 'TR', 1),
6127(2792, 176, 'Tver', 'TV', 1),
6128(2793, 176, 'Tyumen', 'TY', 1),
6129(2794, 176, 'Ufa', 'UF', 1),
6130(2795, 176, 'Ul''yanovsk', 'UL', 1),
6131(2796, 176, 'Ulan-Ude', 'UU', 1),
6132(2797, 176, 'Ust''-Ordynskiy', 'US', 1),
6133(2798, 176, 'Vladikavkaz', 'VL', 1),
6134(2799, 176, 'Vladimir', 'VA', 1),
6135(2800, 176, 'Vladivostok', 'VV', 1),
6136(2801, 176, 'Volgograd', 'VG', 1),
6137(2802, 176, 'Vologda', 'VD', 1),
6138(2803, 176, 'Voronezh', 'VO', 1),
6139(2804, 176, 'Vyatka', 'VY', 1),
6140(2805, 176, 'Yakutsk', 'YA', 1),
6141(2806, 176, 'Yaroslavl', 'YR', 1),
6142(2807, 176, 'Yekaterinburg', 'YE', 1),
6143(2808, 176, 'Yoshkar-Ola', 'YO', 1),
6144(2809, 177, 'Butare', 'BU', 1),
6145(2810, 177, 'Byumba', 'BY', 1),
6146(2811, 177, 'Cyangugu', 'CY', 1),
6147(2812, 177, 'Gikongoro', 'GK', 1),
6148(2813, 177, 'Gisenyi', 'GS', 1),
6149(2814, 177, 'Gitarama', 'GT', 1),
6150(2815, 177, 'Kibungo', 'KG', 1),
6151(2816, 177, 'Kibuye', 'KY', 1),
6152(2817, 177, 'Kigali Rurale', 'KR', 1),
6153(2818, 177, 'Kigali-ville', 'KV', 1),
6154(2819, 177, 'Ruhengeri', 'RU', 1),
6155(2820, 177, 'Umutara', 'UM', 1),
6156(2821, 178, 'Christ Church Nichola Town', 'CCN', 1),
6157(2822, 178, 'Saint Anne Sandy Point', 'SAS', 1),
6158(2823, 178, 'Saint George Basseterre', 'SGB', 1),
6159(2824, 178, 'Saint George Gingerland', 'SGG', 1),
6160(2825, 178, 'Saint James Windward', 'SJW', 1),
6161(2826, 178, 'Saint John Capesterre', 'SJC', 1),
6162(2827, 178, 'Saint John Figtree', 'SJF', 1),
6163(2828, 178, 'Saint Mary Cayon', 'SMC', 1),
6164(2829, 178, 'Saint Paul Capesterre', 'CAP', 1),
6165(2830, 178, 'Saint Paul Charlestown', 'CHA', 1),
6166(2831, 178, 'Saint Peter Basseterre', 'SPB', 1),
6167(2832, 178, 'Saint Thomas Lowland', 'STL', 1),
6168(2833, 178, 'Saint Thomas Middle Island', 'STM', 1),
6169(2834, 178, 'Trinity Palmetto Point', 'TPP', 1),
6170(2835, 179, 'Anse-la-Raye', 'AR', 1),
6171(2836, 179, 'Castries', 'CA', 1),
6172(2837, 179, 'Choiseul', 'CH', 1),
6173(2838, 179, 'Dauphin', 'DA', 1),
6174(2839, 179, 'Dennery', 'DE', 1),
6175(2840, 179, 'Gros-Islet', 'GI', 1),
6176(2841, 179, 'Laborie', 'LA', 1),
6177(2842, 179, 'Micoud', 'MI', 1),
6178(2843, 179, 'Praslin', 'PR', 1),
6179(2844, 179, 'Soufriere', 'SO', 1),
6180(2845, 179, 'Vieux-Fort', 'VF', 1),
6181(2846, 180, 'Charlotte', 'C', 1),
6182(2847, 180, 'Grenadines', 'R', 1),
6183(2848, 180, 'Saint Andrew', 'A', 1),
6184(2849, 180, 'Saint David', 'D', 1),
6185(2850, 180, 'Saint George', 'G', 1),
6186(2851, 180, 'Saint Patrick', 'P', 1),
6187(2852, 181, 'A''ana', 'AN', 1),
6188(2853, 181, 'Aiga-i-le-Tai', 'AI', 1),
6189(2854, 181, 'Atua', 'AT', 1),
6190(2855, 181, 'Fa''asaleleaga', 'FA', 1),
6191(2856, 181, 'Gaga''emauga', 'GE', 1),
6192(2857, 181, 'Gagaifomauga', 'GF', 1),
6193(2858, 181, 'Palauli', 'PA', 1),
6194(2859, 181, 'Satupa''itea', 'SA', 1),
6195(2860, 181, 'Tuamasaga', 'TU', 1),
6196(2861, 181, 'Va''a-o-Fonoti', 'VF', 1),
6197(2862, 181, 'Vaisigano', 'VS', 1),
6198(2863, 182, 'Acquaviva', 'AC', 1),
6199(2864, 182, 'Borgo Maggiore', 'BM', 1),
6200(2865, 182, 'Chiesanuova', 'CH', 1),
6201(2866, 182, 'Domagnano', 'DO', 1),
6202(2867, 182, 'Faetano', 'FA', 1),
6203(2868, 182, 'Fiorentino', 'FI', 1),
6204(2869, 182, 'Montegiardino', 'MO', 1),
6205(2870, 182, 'Citta di San Marino', 'SM', 1),
6206(2871, 182, 'Serravalle', 'SE', 1),
6207(2872, 183, 'Sao Tome', 'S', 1),
6208(2873, 183, 'Principe', 'P', 1),
6209(2874, 184, 'Al Bahah', 'BH', 1),
6210(2875, 184, 'Al Hudud ash Shamaliyah', 'HS', 1),
6211(2876, 184, 'Al Jawf', 'JF', 1),
6212(2877, 184, 'Al Madinah', 'MD', 1),
6213(2878, 184, 'Al Qasim', 'QS', 1),
6214(2879, 184, 'Ar Riyad', 'RD', 1),
6215(2880, 184, 'Ash Sharqiyah (Eastern)', 'AQ', 1),
6216(2881, 184, '''Asir', 'AS', 1),
6217(2882, 184, 'Ha''il', 'HL', 1),
6218(2883, 184, 'Jizan', 'JZ', 1),
6219(2884, 184, 'Makkah', 'ML', 1),
6220(2885, 184, 'Najran', 'NR', 1),
6221(2886, 184, 'Tabuk', 'TB', 1),
6222(2887, 185, 'Dakar', 'DA', 1),
6223(2888, 185, 'Diourbel', 'DI', 1),
6224(2889, 185, 'Fatick', 'FA', 1),
6225(2890, 185, 'Kaolack', 'KA', 1),
6226(2891, 185, 'Kolda', 'KO', 1),
6227(2892, 185, 'Louga', 'LO', 1),
6228(2893, 185, 'Matam', 'MA', 1),
6229(2894, 185, 'Saint-Louis', 'SL', 1),
6230(2895, 185, 'Tambacounda', 'TA', 1),
6231(2896, 185, 'Thies', 'TH', 1),
6232(2897, 185, 'Ziguinchor', 'ZI', 1),
6233(2898, 186, 'Anse aux Pins', 'AP', 1),
6234(2899, 186, 'Anse Boileau', 'AB', 1),
6235(2900, 186, 'Anse Etoile', 'AE', 1),
6236(2901, 186, 'Anse Louis', 'AL', 1),
6237(2902, 186, 'Anse Royale', 'AR', 1),
6238(2903, 186, 'Baie Lazare', 'BL', 1),
6239(2904, 186, 'Baie Sainte Anne', 'BS', 1),
6240(2905, 186, 'Beau Vallon', 'BV', 1),
6241(2906, 186, 'Bel Air', 'BA', 1),
6242(2907, 186, 'Bel Ombre', 'BO', 1),
6243(2908, 186, 'Cascade', 'CA', 1),
6244(2909, 186, 'Glacis', 'GL', 1),
6245(2910, 186, 'Grand'' Anse (on Mahe)', 'GM', 1),
6246(2911, 186, 'Grand'' Anse (on Praslin)', 'GP', 1),
6247(2912, 186, 'La Digue', 'DG', 1),
6248(2913, 186, 'La Riviere Anglaise', 'RA', 1),
6249(2914, 186, 'Mont Buxton', 'MB', 1),
6250(2915, 186, 'Mont Fleuri', 'MF', 1),
6251(2916, 186, 'Plaisance', 'PL', 1),
6252(2917, 186, 'Pointe La Rue', 'PR', 1),
6253(2918, 186, 'Port Glaud', 'PG', 1),
6254(2919, 186, 'Saint Louis', 'SL', 1),
6255(2920, 186, 'Takamaka', 'TA', 1),
6256(2921, 187, 'Eastern', 'E', 1),
6257(2922, 187, 'Northern', 'N', 1),
6258(2923, 187, 'Southern', 'S', 1),
6259(2924, 187, 'Western', 'W', 1),
6260(2925, 189, 'Banskobystrický', 'BA', 1),
6261(2926, 189, 'Bratislavský', 'BR', 1),
6262(2927, 189, 'Košický', 'KO', 1),
6263(2928, 189, 'Nitriansky', 'NI', 1),
6264(2929, 189, 'Prešovský', 'PR', 1),
6265(2930, 189, 'TrenÄiansky', 'TC', 1),
6266(2931, 189, 'Trnavský', 'TV', 1),
6267(2932, 189, 'Žilinský', 'ZI', 1),
6268(2933, 191, 'Central', 'CE', 1),
6269(2934, 191, 'Choiseul', 'CH', 1),
6270(2935, 191, 'Guadalcanal', 'GC', 1),
6271(2936, 191, 'Honiara', 'HO', 1),
6272(2937, 191, 'Isabel', 'IS', 1),
6273(2938, 191, 'Makira', 'MK', 1),
6274(2939, 191, 'Malaita', 'ML', 1),
6275(2940, 191, 'Rennell and Bellona', 'RB', 1),
6276(2941, 191, 'Temotu', 'TM', 1),
6277(2942, 191, 'Western', 'WE', 1),
6278(2943, 192, 'Awdal', 'AW', 1),
6279(2944, 192, 'Bakool', 'BK', 1),
6280(2945, 192, 'Banaadir', 'BN', 1),
6281(2946, 192, 'Bari', 'BR', 1),
6282(2947, 192, 'Bay', 'BY', 1),
6283(2948, 192, 'Galguduud', 'GA', 1),
6284(2949, 192, 'Gedo', 'GE', 1),
6285(2950, 192, 'Hiiraan', 'HI', 1),
6286(2951, 192, 'Jubbada Dhexe', 'JD', 1),
6287(2952, 192, 'Jubbada Hoose', 'JH', 1),
6288(2953, 192, 'Mudug', 'MU', 1),
6289(2954, 192, 'Nugaal', 'NU', 1),
6290(2955, 192, 'Sanaag', 'SA', 1),
6291(2956, 192, 'Shabeellaha Dhexe', 'SD', 1),
6292(2957, 192, 'Shabeellaha Hoose', 'SH', 1),
6293(2958, 192, 'Sool', 'SL', 1),
6294(2959, 192, 'Togdheer', 'TO', 1),
6295(2960, 192, 'Woqooyi Galbeed', 'WG', 1),
6296(2961, 193, 'Eastern Cape', 'EC', 1),
6297(2962, 193, 'Free State', 'FS', 1),
6298(2963, 193, 'Gauteng', 'GT', 1),
6299(2964, 193, 'KwaZulu-Natal', 'KN', 1),
6300(2965, 193, 'Limpopo', 'LP', 1),
6301(2966, 193, 'Mpumalanga', 'MP', 1),
6302(2967, 193, 'North West', 'NW', 1),
6303(2968, 193, 'Northern Cape', 'NC', 1),
6304(2969, 193, 'Western Cape', 'WC', 1),
6305(2970, 195, 'La Coruña', 'CA', 1),
6306(2971, 195, 'Álava', 'AL', 1),
6307(2972, 195, 'Albacete', 'AB', 1),
6308(2973, 195, 'Alicante', 'AC', 1),
6309(2974, 195, 'Almeria', 'AM', 1),
6310(2975, 195, 'Asturias', 'AS', 1),
6311(2976, 195, 'Ávila', 'AV', 1),
6312(2977, 195, 'Badajoz', 'BJ', 1),
6313(2978, 195, 'Baleares', 'IB', 1),
6314(2979, 195, 'Barcelona', 'BA', 1),
6315(2980, 195, 'Burgos', 'BU', 1),
6316(2981, 195, 'Cáceres', 'CC', 1),
6317(2982, 195, 'Cádiz', 'CZ', 1),
6318(2983, 195, 'Cantabria', 'CT', 1),
6319(2984, 195, 'Castellón', 'CL', 1),
6320(2985, 195, 'Ceuta', 'CE', 1),
6321(2986, 195, 'Ciudad Real', 'CR', 1),
6322(2987, 195, 'Córdoba', 'CD', 1),
6323(2988, 195, 'Cuenca', 'CU', 1),
6324(2989, 195, 'Girona', 'GI', 1),
6325(2990, 195, 'Granada', 'GD', 1),
6326(2991, 195, 'Guadalajara', 'GJ', 1),
6327(2992, 195, 'Guipúzcoa', 'GP', 1),
6328(2993, 195, 'Huelva', 'HL', 1),
6329(2994, 195, 'Huesca', 'HS', 1),
6330(2995, 195, 'Jaén', 'JN', 1),
6331(2996, 195, 'La Rioja', 'RJ', 1),
6332(2997, 195, 'Las Palmas', 'PM', 1),
6333(2998, 195, 'Leon', 'LE', 1),
6334(2999, 195, 'Lleida', 'LL', 1),
6335(3000, 195, 'Lugo', 'LG', 1),
6336(3001, 195, 'Madrid', 'MD', 1),
6337(3002, 195, 'Malaga', 'MA', 1),
6338(3003, 195, 'Melilla', 'ML', 1),
6339(3004, 195, 'Murcia', 'MU', 1),
6340(3005, 195, 'Navarra', 'NV', 1),
6341(3006, 195, 'Ourense', 'OU', 1),
6342(3007, 195, 'Palencia', 'PL', 1),
6343(3008, 195, 'Pontevedra', 'PO', 1),
6344(3009, 195, 'Salamanca', 'SL', 1),
6345(3010, 195, 'Santa Cruz de Tenerife', 'SC', 1),
6346(3011, 195, 'Segovia', 'SG', 1),
6347(3012, 195, 'Sevilla', 'SV', 1),
6348(3013, 195, 'Soria', 'SO', 1),
6349(3014, 195, 'Tarragona', 'TA', 1),
6350(3015, 195, 'Teruel', 'TE', 1),
6351(3016, 195, 'Toledo', 'TO', 1),
6352(3017, 195, 'Valencia', 'VC', 1),
6353(3018, 195, 'Valladolid', 'VD', 1),
6354(3019, 195, 'Vizcaya', 'VZ', 1),
6355(3020, 195, 'Zamora', 'ZM', 1),
6356(3021, 195, 'Zaragoza', 'ZR', 1),
6357(3022, 196, 'Central', 'CE', 1),
6358(3023, 196, 'Eastern', 'EA', 1),
6359(3024, 196, 'North Central', 'NC', 1),
6360(3025, 196, 'Northern', 'NO', 1),
6361(3026, 196, 'North Western', 'NW', 1),
6362(3027, 196, 'Sabaragamuwa', 'SA', 1),
6363(3028, 196, 'Southern', 'SO', 1),
6364(3029, 196, 'Uva', 'UV', 1),
6365(3030, 196, 'Western', 'WE', 1),
6366(3031, 197, 'Ascension', 'A', 1),
6367(3032, 197, 'Saint Helena', 'S', 1),
6368(3033, 197, 'Tristan da Cunha', 'T', 1),
6369(3034, 199, 'A''ali an Nil', 'ANL', 1),
6370(3035, 199, 'Al Bahr al Ahmar', 'BAM', 1),
6371(3036, 199, 'Al Buhayrat', 'BRT', 1),
6372(3037, 199, 'Al Jazirah', 'JZR', 1),
6373(3038, 199, 'Al Khartum', 'KRT', 1),
6374(3039, 199, 'Al Qadarif', 'QDR', 1),
6375(3040, 199, 'Al Wahdah', 'WDH', 1),
6376(3041, 199, 'An Nil al Abyad', 'ANB', 1),
6377(3042, 199, 'An Nil al Azraq', 'ANZ', 1),
6378(3043, 199, 'Ash Shamaliyah', 'ASH', 1),
6379(3044, 199, 'Bahr al Jabal', 'BJA', 1),
6380(3045, 199, 'Gharb al Istiwa''iyah', 'GIS', 1),
6381(3046, 199, 'Gharb Bahr al Ghazal', 'GBG', 1),
6382(3047, 199, 'Gharb Darfur', 'GDA', 1),
6383(3048, 199, 'Gharb Kurdufan', 'GKU', 1),
6384(3049, 199, 'Janub Darfur', 'JDA', 1),
6385(3050, 199, 'Janub Kurdufan', 'JKU', 1),
6386(3051, 199, 'Junqali', 'JQL', 1),
6387(3052, 199, 'Kassala', 'KSL', 1),
6388(3053, 199, 'Nahr an Nil', 'NNL', 1),
6389(3054, 199, 'Shamal Bahr al Ghazal', 'SBG', 1),
6390(3055, 199, 'Shamal Darfur', 'SDA', 1),
6391(3056, 199, 'Shamal Kurdufan', 'SKU', 1),
6392(3057, 199, 'Sharq al Istiwa''iyah', 'SIS', 1),
6393(3058, 199, 'Sinnar', 'SNR', 1);
6394INSERT INTO `zone` (`zone_id`, `country_id`, `name`, `code`, `status`) VALUES
6395(3059, 199, 'Warab', 'WRB', 1),
6396(3060, 200, 'Brokopondo', 'BR', 1),
6397(3061, 200, 'Commewijne', 'CM', 1),
6398(3062, 200, 'Coronie', 'CR', 1),
6399(3063, 200, 'Marowijne', 'MA', 1),
6400(3064, 200, 'Nickerie', 'NI', 1),
6401(3065, 200, 'Para', 'PA', 1),
6402(3066, 200, 'Paramaribo', 'PM', 1),
6403(3067, 200, 'Saramacca', 'SA', 1),
6404(3068, 200, 'Sipaliwini', 'SI', 1),
6405(3069, 200, 'Wanica', 'WA', 1),
6406(3070, 202, 'Hhohho', 'H', 1),
6407(3071, 202, 'Lubombo', 'L', 1),
6408(3072, 202, 'Manzini', 'M', 1),
6409(3073, 202, 'Shishelweni', 'S', 1),
6410(3074, 203, 'Blekinge', 'K', 1),
6411(3075, 203, 'Dalarna', 'W', 1),
6412(3076, 203, 'Gävleborg', 'X', 1),
6413(3077, 203, 'Gotland', 'I', 1),
6414(3078, 203, 'Halland', 'N', 1),
6415(3079, 203, 'Jämtland', 'Z', 1),
6416(3080, 203, 'Jönköping', 'F', 1),
6417(3081, 203, 'Kalmar', 'H', 1),
6418(3082, 203, 'Kronoberg', 'G', 1),
6419(3083, 203, 'Norrbotten', 'BD', 1),
6420(3084, 203, 'Örebro', 'T', 1),
6421(3085, 203, 'Östergötland', 'E', 1),
6422(3086, 203, 'Skåne', 'M', 1),
6423(3087, 203, 'Södermanland', 'D', 1),
6424(3088, 203, 'Stockholm', 'AB', 1),
6425(3089, 203, 'Uppsala', 'C', 1),
6426(3090, 203, 'Värmland', 'S', 1),
6427(3091, 203, 'Västerbotten', 'AC', 1),
6428(3092, 203, 'Västernorrland', 'Y', 1),
6429(3093, 203, 'Västmanland', 'U', 1),
6430(3094, 203, 'Västra Götaland', 'O', 1),
6431(3095, 204, 'Aargau', 'AG', 1),
6432(3096, 204, 'Appenzell Ausserrhoden', 'AR', 1),
6433(3097, 204, 'Appenzell Innerrhoden', 'AI', 1),
6434(3098, 204, 'Basel-Stadt', 'BS', 1),
6435(3099, 204, 'Basel-Landschaft', 'BL', 1),
6436(3100, 204, 'Bern', 'BE', 1),
6437(3101, 204, 'Fribourg', 'FR', 1),
6438(3102, 204, 'Genève', 'GE', 1),
6439(3103, 204, 'Glarus', 'GL', 1),
6440(3104, 204, 'Graubünden', 'GR', 1),
6441(3105, 204, 'Jura', 'JU', 1),
6442(3106, 204, 'Luzern', 'LU', 1),
6443(3107, 204, 'Neuchâtel', 'NE', 1),
6444(3108, 204, 'Nidwald', 'NW', 1),
6445(3109, 204, 'Obwald', 'OW', 1),
6446(3110, 204, 'St. Gallen', 'SG', 1),
6447(3111, 204, 'Schaffhausen', 'SH', 1),
6448(3112, 204, 'Schwyz', 'SZ', 1),
6449(3113, 204, 'Solothurn', 'SO', 1),
6450(3114, 204, 'Thurgau', 'TG', 1),
6451(3115, 204, 'Ticino', 'TI', 1),
6452(3116, 204, 'Uri', 'UR', 1),
6453(3117, 204, 'Valais', 'VS', 1),
6454(3118, 204, 'Vaud', 'VD', 1),
6455(3119, 204, 'Zug', 'ZG', 1),
6456(3120, 204, 'Zürich', 'ZH', 1),
6457(3121, 205, 'Al Hasakah', 'HA', 1),
6458(3122, 205, 'Al Ladhiqiyah', 'LA', 1),
6459(3123, 205, 'Al Qunaytirah', 'QU', 1),
6460(3124, 205, 'Ar Raqqah', 'RQ', 1),
6461(3125, 205, 'As Suwayda', 'SU', 1),
6462(3126, 205, 'Dara', 'DA', 1),
6463(3127, 205, 'Dayr az Zawr', 'DZ', 1),
6464(3128, 205, 'Dimashq', 'DI', 1),
6465(3129, 205, 'Halab', 'HL', 1),
6466(3130, 205, 'Hamah', 'HM', 1),
6467(3131, 205, 'Hims', 'HI', 1),
6468(3132, 205, 'Idlib', 'ID', 1),
6469(3133, 205, 'Rif Dimashq', 'RD', 1),
6470(3134, 205, 'Tartus', 'TA', 1),
6471(3135, 206, 'Chang-hua', 'CH', 1),
6472(3136, 206, 'Chia-i', 'CI', 1),
6473(3137, 206, 'Hsin-chu', 'HS', 1),
6474(3138, 206, 'Hua-lien', 'HL', 1),
6475(3139, 206, 'I-lan', 'IL', 1),
6476(3140, 206, 'Kao-hsiung county', 'KH', 1),
6477(3141, 206, 'Kin-men', 'KM', 1),
6478(3142, 206, 'Lien-chiang', 'LC', 1),
6479(3143, 206, 'Miao-li', 'ML', 1),
6480(3144, 206, 'Nan-t''ou', 'NT', 1),
6481(3145, 206, 'P''eng-hu', 'PH', 1),
6482(3146, 206, 'P''ing-tung', 'PT', 1),
6483(3147, 206, 'T''ai-chung', 'TG', 1),
6484(3148, 206, 'T''ai-nan', 'TA', 1),
6485(3149, 206, 'T''ai-pei county', 'TP', 1),
6486(3150, 206, 'T''ai-tung', 'TT', 1),
6487(3151, 206, 'T''ao-yuan', 'TY', 1),
6488(3152, 206, 'Yun-lin', 'YL', 1),
6489(3153, 206, 'Chia-i city', 'CC', 1),
6490(3154, 206, 'Chi-lung', 'CL', 1),
6491(3155, 206, 'Hsin-chu', 'HC', 1),
6492(3156, 206, 'T''ai-chung', 'TH', 1),
6493(3157, 206, 'T''ai-nan', 'TN', 1),
6494(3158, 206, 'Kao-hsiung city', 'KC', 1),
6495(3159, 206, 'T''ai-pei city', 'TC', 1),
6496(3160, 207, 'Gorno-Badakhstan', 'GB', 1),
6497(3161, 207, 'Khatlon', 'KT', 1),
6498(3162, 207, 'Sughd', 'SU', 1),
6499(3163, 208, 'Arusha', 'AR', 1),
6500(3164, 208, 'Dar es Salaam', 'DS', 1),
6501(3165, 208, 'Dodoma', 'DO', 1),
6502(3166, 208, 'Iringa', 'IR', 1),
6503(3167, 208, 'Kagera', 'KA', 1),
6504(3168, 208, 'Kigoma', 'KI', 1),
6505(3169, 208, 'Kilimanjaro', 'KJ', 1),
6506(3170, 208, 'Lindi', 'LN', 1),
6507(3171, 208, 'Manyara', 'MY', 1),
6508(3172, 208, 'Mara', 'MR', 1),
6509(3173, 208, 'Mbeya', 'MB', 1),
6510(3174, 208, 'Morogoro', 'MO', 1),
6511(3175, 208, 'Mtwara', 'MT', 1),
6512(3176, 208, 'Mwanza', 'MW', 1),
6513(3177, 208, 'Pemba North', 'PN', 1),
6514(3178, 208, 'Pemba South', 'PS', 1),
6515(3179, 208, 'Pwani', 'PW', 1),
6516(3180, 208, 'Rukwa', 'RK', 1),
6517(3181, 208, 'Ruvuma', 'RV', 1),
6518(3182, 208, 'Shinyanga', 'SH', 1),
6519(3183, 208, 'Singida', 'SI', 1),
6520(3184, 208, 'Tabora', 'TB', 1),
6521(3185, 208, 'Tanga', 'TN', 1),
6522(3186, 208, 'Zanzibar Central/South', 'ZC', 1),
6523(3187, 208, 'Zanzibar North', 'ZN', 1),
6524(3188, 208, 'Zanzibar Urban/West', 'ZU', 1),
6525(3189, 209, 'Amnat Charoen', 'Amnat Charoen', 1),
6526(3190, 209, 'Ang Thong', 'Ang Thong', 1),
6527(3191, 209, 'Ayutthaya', 'Ayutthaya', 1),
6528(3192, 209, 'Bangkok', 'Bangkok', 1),
6529(3193, 209, 'Buriram', 'Buriram', 1),
6530(3194, 209, 'Chachoengsao', 'Chachoengsao', 1),
6531(3195, 209, 'Chai Nat', 'Chai Nat', 1),
6532(3196, 209, 'Chaiyaphum', 'Chaiyaphum', 1),
6533(3197, 209, 'Chanthaburi', 'Chanthaburi', 1),
6534(3198, 209, 'Chiang Mai', 'Chiang Mai', 1),
6535(3199, 209, 'Chiang Rai', 'Chiang Rai', 1),
6536(3200, 209, 'Chon Buri', 'Chon Buri', 1),
6537(3201, 209, 'Chumphon', 'Chumphon', 1),
6538(3202, 209, 'Kalasin', 'Kalasin', 1),
6539(3203, 209, 'Kamphaeng Phet', 'Kamphaeng Phet', 1),
6540(3204, 209, 'Kanchanaburi', 'Kanchanaburi', 1),
6541(3205, 209, 'Khon Kaen', 'Khon Kaen', 1),
6542(3206, 209, 'Krabi', 'Krabi', 1),
6543(3207, 209, 'Lampang', 'Lampang', 1),
6544(3208, 209, 'Lamphun', 'Lamphun', 1),
6545(3209, 209, 'Loei', 'Loei', 1),
6546(3210, 209, 'Lop Buri', 'Lop Buri', 1),
6547(3211, 209, 'Mae Hong Son', 'Mae Hong Son', 1),
6548(3212, 209, 'Maha Sarakham', 'Maha Sarakham', 1),
6549(3213, 209, 'Mukdahan', 'Mukdahan', 1),
6550(3214, 209, 'Nakhon Nayok', 'Nakhon Nayok', 1),
6551(3215, 209, 'Nakhon Pathom', 'Nakhon Pathom', 1),
6552(3216, 209, 'Nakhon Phanom', 'Nakhon Phanom', 1),
6553(3217, 209, 'Nakhon Ratchasima', 'Nakhon Ratchasima', 1),
6554(3218, 209, 'Nakhon Sawan', 'Nakhon Sawan', 1),
6555(3219, 209, 'Nakhon Si Thammarat', 'Nakhon Si Thammarat', 1),
6556(3220, 209, 'Nan', 'Nan', 1),
6557(3221, 209, 'Narathiwat', 'Narathiwat', 1),
6558(3222, 209, 'Nong Bua Lamphu', 'Nong Bua Lamphu', 1),
6559(3223, 209, 'Nong Khai', 'Nong Khai', 1),
6560(3224, 209, 'Nonthaburi', 'Nonthaburi', 1),
6561(3225, 209, 'Pathum Thani', 'Pathum Thani', 1),
6562(3226, 209, 'Pattani', 'Pattani', 1),
6563(3227, 209, 'Phangnga', 'Phangnga', 1),
6564(3228, 209, 'Phatthalung', 'Phatthalung', 1),
6565(3229, 209, 'Phayao', 'Phayao', 1),
6566(3230, 209, 'Phetchabun', 'Phetchabun', 1),
6567(3231, 209, 'Phetchaburi', 'Phetchaburi', 1),
6568(3232, 209, 'Phichit', 'Phichit', 1),
6569(3233, 209, 'Phitsanulok', 'Phitsanulok', 1),
6570(3234, 209, 'Phrae', 'Phrae', 1),
6571(3235, 209, 'Phuket', 'Phuket', 1),
6572(3236, 209, 'Prachin Buri', 'Prachin Buri', 1),
6573(3237, 209, 'Prachuap Khiri Khan', 'Prachuap Khiri Khan', 1),
6574(3238, 209, 'Ranong', 'Ranong', 1),
6575(3239, 209, 'Ratchaburi', 'Ratchaburi', 1),
6576(3240, 209, 'Rayong', 'Rayong', 1),
6577(3241, 209, 'Roi Et', 'Roi Et', 1),
6578(3242, 209, 'Sa Kaeo', 'Sa Kaeo', 1),
6579(3243, 209, 'Sakon Nakhon', 'Sakon Nakhon', 1),
6580(3244, 209, 'Samut Prakan', 'Samut Prakan', 1),
6581(3245, 209, 'Samut Sakhon', 'Samut Sakhon', 1),
6582(3246, 209, 'Samut Songkhram', 'Samut Songkhram', 1),
6583(3247, 209, 'Sara Buri', 'Sara Buri', 1),
6584(3248, 209, 'Satun', 'Satun', 1),
6585(3249, 209, 'Sing Buri', 'Sing Buri', 1),
6586(3250, 209, 'Sisaket', 'Sisaket', 1),
6587(3251, 209, 'Songkhla', 'Songkhla', 1),
6588(3252, 209, 'Sukhothai', 'Sukhothai', 1),
6589(3253, 209, 'Suphan Buri', 'Suphan Buri', 1),
6590(3254, 209, 'Surat Thani', 'Surat Thani', 1),
6591(3255, 209, 'Surin', 'Surin', 1),
6592(3256, 209, 'Tak', 'Tak', 1),
6593(3257, 209, 'Trang', 'Trang', 1),
6594(3258, 209, 'Trat', 'Trat', 1),
6595(3259, 209, 'Ubon Ratchathani', 'Ubon Ratchathani', 1),
6596(3260, 209, 'Udon Thani', 'Udon Thani', 1),
6597(3261, 209, 'Uthai Thani', 'Uthai Thani', 1),
6598(3262, 209, 'Uttaradit', 'Uttaradit', 1),
6599(3263, 209, 'Yala', 'Yala', 1),
6600(3264, 209, 'Yasothon', 'Yasothon', 1),
6601(3265, 210, 'Kara', 'K', 1),
6602(3266, 210, 'Plateaux', 'P', 1),
6603(3267, 210, 'Savanes', 'S', 1),
6604(3268, 210, 'Centrale', 'C', 1),
6605(3269, 210, 'Maritime', 'M', 1),
6606(3270, 211, 'Atafu', 'A', 1),
6607(3271, 211, 'Fakaofo', 'F', 1),
6608(3272, 211, 'Nukunonu', 'N', 1),
6609(3273, 212, 'Ha''apai', 'H', 1),
6610(3274, 212, 'Tongatapu', 'T', 1),
6611(3275, 212, 'Vava''u', 'V', 1),
6612(3276, 213, 'Couva/Tabaquite/Talparo', 'CT', 1),
6613(3277, 213, 'Diego Martin', 'DM', 1),
6614(3278, 213, 'Mayaro/Rio Claro', 'MR', 1),
6615(3279, 213, 'Penal/Debe', 'PD', 1),
6616(3280, 213, 'Princes Town', 'PT', 1),
6617(3281, 213, 'Sangre Grande', 'SG', 1),
6618(3282, 213, 'San Juan/Laventille', 'SL', 1),
6619(3283, 213, 'Siparia', 'SI', 1),
6620(3284, 213, 'Tunapuna/Piarco', 'TP', 1),
6621(3285, 213, 'Port of Spain', 'PS', 1),
6622(3286, 213, 'San Fernando', 'SF', 1),
6623(3287, 213, 'Arima', 'AR', 1),
6624(3288, 213, 'Point Fortin', 'PF', 1),
6625(3289, 213, 'Chaguanas', 'CH', 1),
6626(3290, 213, 'Tobago', 'TO', 1),
6627(3291, 214, 'Ariana', 'AR', 1),
6628(3292, 214, 'Beja', 'BJ', 1),
6629(3293, 214, 'Ben Arous', 'BA', 1),
6630(3294, 214, 'Bizerte', 'BI', 1),
6631(3295, 214, 'Gabes', 'GB', 1),
6632(3296, 214, 'Gafsa', 'GF', 1),
6633(3297, 214, 'Jendouba', 'JE', 1),
6634(3298, 214, 'Kairouan', 'KR', 1),
6635(3299, 214, 'Kasserine', 'KS', 1),
6636(3300, 214, 'Kebili', 'KB', 1),
6637(3301, 214, 'Kef', 'KF', 1),
6638(3302, 214, 'Mahdia', 'MH', 1),
6639(3303, 214, 'Manouba', 'MN', 1),
6640(3304, 214, 'Medenine', 'ME', 1),
6641(3305, 214, 'Monastir', 'MO', 1),
6642(3306, 214, 'Nabeul', 'NA', 1),
6643(3307, 214, 'Sfax', 'SF', 1),
6644(3308, 214, 'Sidi', 'SD', 1),
6645(3309, 214, 'Siliana', 'SL', 1),
6646(3310, 214, 'Sousse', 'SO', 1),
6647(3311, 214, 'Tataouine', 'TA', 1),
6648(3312, 214, 'Tozeur', 'TO', 1),
6649(3313, 214, 'Tunis', 'TU', 1),
6650(3314, 214, 'Zaghouan', 'ZA', 1),
6651(3315, 215, 'Adana', 'ADA', 1),
6652(3316, 215, 'Adıyaman', 'ADI', 1),
6653(3317, 215, 'Afyonkarahisar', 'AFY', 1),
6654(3318, 215, 'Ağrı', 'AGR', 1),
6655(3319, 215, 'Aksaray', 'AKS', 1),
6656(3320, 215, 'Amasya', 'AMA', 1),
6657(3321, 215, 'Ankara', 'ANK', 1),
6658(3322, 215, 'Antalya', 'ANT', 1),
6659(3323, 215, 'Ardahan', 'ARD', 1),
6660(3324, 215, 'Artvin', 'ART', 1),
6661(3325, 215, 'Aydın', 'AYI', 1),
6662(3326, 215, 'Balıkesir', 'BAL', 1),
6663(3327, 215, 'Bartın', 'BAR', 1),
6664(3328, 215, 'Batman', 'BAT', 1),
6665(3329, 215, 'Bayburt', 'BAY', 1),
6666(3330, 215, 'Bilecik', 'BIL', 1),
6667(3331, 215, 'Bingöl', 'BIN', 1),
6668(3332, 215, 'Bitlis', 'BIT', 1),
6669(3333, 215, 'Bolu', 'BOL', 1),
6670(3334, 215, 'Burdur', 'BRD', 1),
6671(3335, 215, 'Bursa', 'BRS', 1),
6672(3336, 215, 'Çanakkale', 'CKL', 1),
6673(3337, 215, 'Çankırı', 'CKR', 1),
6674(3338, 215, 'Çorum', 'COR', 1),
6675(3339, 215, 'Denizli', 'DEN', 1),
6676(3340, 215, 'Diyarbakir', 'DIY', 1),
6677(3341, 215, 'Düzce', 'DUZ', 1),
6678(3342, 215, 'Edirne', 'EDI', 1),
6679(3343, 215, 'Elazığ', 'ELA', 1),
6680(3344, 215, 'Erzincan', 'EZC', 1),
6681(3345, 215, 'Erzurum', 'EZR', 1),
6682(3346, 215, 'EskiÅŸehir', 'ESK', 1),
6683(3347, 215, 'Gaziantep', 'GAZ', 1),
6684(3348, 215, 'Giresun', 'GIR', 1),
6685(3349, 215, 'Gümüşhane', 'GMS', 1),
6686(3350, 215, 'Hakkari', 'HKR', 1),
6687(3351, 215, 'Hatay', 'HTY', 1),
6688(3352, 215, 'Iğdır', 'IGD', 1),
6689(3353, 215, 'Isparta', 'ISP', 1),
6690(3354, 215, 'İstanbul', 'IST', 1),
6691(3355, 215, 'İzmir', 'IZM', 1),
6692(3356, 215, 'KahramanmaraÅŸ', 'KAH', 1),
6693(3357, 215, 'Karabük', 'KRB', 1),
6694(3358, 215, 'Karaman', 'KRM', 1),
6695(3359, 215, 'Kars', 'KRS', 1),
6696(3360, 215, 'Kastamonu', 'KAS', 1),
6697(3361, 215, 'Kayseri', 'KAY', 1),
6698(3362, 215, 'Kilis', 'KLS', 1),
6699(3363, 215, 'Kırıkkale', 'KRK', 1),
6700(3364, 215, 'Kırklareli', 'KLR', 1),
6701(3365, 215, 'Kırşehir', 'KRH', 1),
6702(3366, 215, 'Kocaeli', 'KOC', 1),
6703(3367, 215, 'Konya', 'KON', 1),
6704(3368, 215, 'Kütahya', 'KUT', 1),
6705(3369, 215, 'Malatya', 'MAL', 1),
6706(3370, 215, 'Manisa', 'MAN', 1),
6707(3371, 215, 'Mardin', 'MAR', 1),
6708(3372, 215, 'Mersin', 'MER', 1),
6709(3373, 215, 'MuÄŸla', 'MUG', 1),
6710(3374, 215, 'MuÅŸ', 'MUS', 1),
6711(3375, 215, 'NevÅŸehir', 'NEV', 1),
6712(3376, 215, 'NiÄŸde', 'NIG', 1),
6713(3377, 215, 'Ordu', 'ORD', 1),
6714(3378, 215, 'Osmaniye', 'OSM', 1),
6715(3379, 215, 'Rize', 'RIZ', 1),
6716(3380, 215, 'Sakarya', 'SAK', 1),
6717(3381, 215, 'Samsun', 'SAM', 1),
6718(3382, 215, 'Şanlıurfa', 'SAN', 1),
6719(3383, 215, 'Siirt', 'SII', 1),
6720(3384, 215, 'Sinop', 'SIN', 1),
6721(3385, 215, 'Şırnak', 'SIR', 1),
6722(3386, 215, 'Sivas', 'SIV', 1),
6723(3387, 215, 'TekirdaÄŸ', 'TEL', 1),
6724(3388, 215, 'Tokat', 'TOK', 1),
6725(3389, 215, 'Trabzon', 'TRA', 1),
6726(3390, 215, 'Tunceli', 'TUN', 1),
6727(3391, 215, 'UÅŸak', 'USK', 1),
6728(3392, 215, 'Van', 'VAN', 1),
6729(3393, 215, 'Yalova', 'YAL', 1),
6730(3394, 215, 'Yozgat', 'YOZ', 1),
6731(3395, 215, 'Zonguldak', 'ZON', 1),
6732(3396, 216, 'Ahal Welayaty', 'A', 1),
6733(3397, 216, 'Balkan Welayaty', 'B', 1),
6734(3398, 216, 'Dashhowuz Welayaty', 'D', 1),
6735(3399, 216, 'Lebap Welayaty', 'L', 1),
6736(3400, 216, 'Mary Welayaty', 'M', 1),
6737(3401, 217, 'Ambergris Cays', 'AC', 1),
6738(3402, 217, 'Dellis Cay', 'DC', 1),
6739(3403, 217, 'French Cay', 'FC', 1),
6740(3404, 217, 'Little Water Cay', 'LW', 1),
6741(3405, 217, 'Parrot Cay', 'RC', 1),
6742(3406, 217, 'Pine Cay', 'PN', 1),
6743(3407, 217, 'Salt Cay', 'SL', 1),
6744(3408, 217, 'Grand Turk', 'GT', 1),
6745(3409, 217, 'South Caicos', 'SC', 1),
6746(3410, 217, 'East Caicos', 'EC', 1),
6747(3411, 217, 'Middle Caicos', 'MC', 1),
6748(3412, 217, 'North Caicos', 'NC', 1),
6749(3413, 217, 'Providenciales', 'PR', 1),
6750(3414, 217, 'West Caicos', 'WC', 1),
6751(3415, 218, 'Nanumanga', 'NMG', 1),
6752(3416, 218, 'Niulakita', 'NLK', 1),
6753(3417, 218, 'Niutao', 'NTO', 1),
6754(3418, 218, 'Funafuti', 'FUN', 1),
6755(3419, 218, 'Nanumea', 'NME', 1),
6756(3420, 218, 'Nui', 'NUI', 1),
6757(3421, 218, 'Nukufetau', 'NFT', 1),
6758(3422, 218, 'Nukulaelae', 'NLL', 1),
6759(3423, 218, 'Vaitupu', 'VAI', 1),
6760(3424, 219, 'Kalangala', 'KAL', 1),
6761(3425, 219, 'Kampala', 'KMP', 1),
6762(3426, 219, 'Kayunga', 'KAY', 1),
6763(3427, 219, 'Kiboga', 'KIB', 1),
6764(3428, 219, 'Luwero', 'LUW', 1),
6765(3429, 219, 'Masaka', 'MAS', 1),
6766(3430, 219, 'Mpigi', 'MPI', 1),
6767(3431, 219, 'Mubende', 'MUB', 1),
6768(3432, 219, 'Mukono', 'MUK', 1),
6769(3433, 219, 'Nakasongola', 'NKS', 1),
6770(3434, 219, 'Rakai', 'RAK', 1),
6771(3435, 219, 'Sembabule', 'SEM', 1),
6772(3436, 219, 'Wakiso', 'WAK', 1),
6773(3437, 219, 'Bugiri', 'BUG', 1),
6774(3438, 219, 'Busia', 'BUS', 1),
6775(3439, 219, 'Iganga', 'IGA', 1),
6776(3440, 219, 'Jinja', 'JIN', 1),
6777(3441, 219, 'Kaberamaido', 'KAB', 1),
6778(3442, 219, 'Kamuli', 'KML', 1),
6779(3443, 219, 'Kapchorwa', 'KPC', 1),
6780(3444, 219, 'Katakwi', 'KTK', 1),
6781(3445, 219, 'Kumi', 'KUM', 1),
6782(3446, 219, 'Mayuge', 'MAY', 1),
6783(3447, 219, 'Mbale', 'MBA', 1),
6784(3448, 219, 'Pallisa', 'PAL', 1),
6785(3449, 219, 'Sironko', 'SIR', 1),
6786(3450, 219, 'Soroti', 'SOR', 1),
6787(3451, 219, 'Tororo', 'TOR', 1),
6788(3452, 219, 'Adjumani', 'ADJ', 1),
6789(3453, 219, 'Apac', 'APC', 1),
6790(3454, 219, 'Arua', 'ARU', 1),
6791(3455, 219, 'Gulu', 'GUL', 1),
6792(3456, 219, 'Kitgum', 'KIT', 1),
6793(3457, 219, 'Kotido', 'KOT', 1),
6794(3458, 219, 'Lira', 'LIR', 1),
6795(3459, 219, 'Moroto', 'MRT', 1),
6796(3460, 219, 'Moyo', 'MOY', 1),
6797(3461, 219, 'Nakapiripirit', 'NAK', 1),
6798(3462, 219, 'Nebbi', 'NEB', 1),
6799(3463, 219, 'Pader', 'PAD', 1),
6800(3464, 219, 'Yumbe', 'YUM', 1),
6801(3465, 219, 'Bundibugyo', 'BUN', 1),
6802(3466, 219, 'Bushenyi', 'BSH', 1),
6803(3467, 219, 'Hoima', 'HOI', 1),
6804(3468, 219, 'Kabale', 'KBL', 1),
6805(3469, 219, 'Kabarole', 'KAR', 1),
6806(3470, 219, 'Kamwenge', 'KAM', 1),
6807(3471, 219, 'Kanungu', 'KAN', 1),
6808(3472, 219, 'Kasese', 'KAS', 1),
6809(3473, 219, 'Kibaale', 'KBA', 1),
6810(3474, 219, 'Kisoro', 'KIS', 1),
6811(3475, 219, 'Kyenjojo', 'KYE', 1),
6812(3476, 219, 'Masindi', 'MSN', 1),
6813(3477, 219, 'Mbarara', 'MBR', 1),
6814(3478, 219, 'Ntungamo', 'NTU', 1),
6815(3479, 219, 'Rukungiri', 'RUK', 1),
6816(3480, 220, 'Cherkasy', 'CK', 1),
6817(3481, 220, 'Chernihiv', 'CH', 1),
6818(3482, 220, 'Chernivtsi', 'CV', 1),
6819(3483, 220, 'Crimea', 'CR', 1),
6820(3484, 220, 'Dnipropetrovs''k', 'DN', 1),
6821(3485, 220, 'Donets''k', 'DO', 1),
6822(3486, 220, 'Ivano-Frankivs''k', 'IV', 1),
6823(3487, 220, 'Kharkiv Kherson', 'KL', 1),
6824(3488, 220, 'Khmel''nyts''kyy', 'KM', 1),
6825(3489, 220, 'Kirovohrad', 'KR', 1),
6826(3490, 220, 'Kiev', 'KV', 1),
6827(3491, 220, 'Kyyiv', 'KY', 1),
6828(3492, 220, 'Luhans''k', 'LU', 1),
6829(3493, 220, 'L''viv', 'LV', 1),
6830(3494, 220, 'Mykolayiv', 'MY', 1),
6831(3495, 220, 'Odesa', 'OD', 1),
6832(3496, 220, 'Poltava', 'PO', 1),
6833(3497, 220, 'Rivne', 'RI', 1),
6834(3498, 220, 'Sevastopol', 'SE', 1),
6835(3499, 220, 'Sumy', 'SU', 1),
6836(3500, 220, 'Ternopil''', 'TE', 1),
6837(3501, 220, 'Vinnytsya', 'VI', 1),
6838(3502, 220, 'Volyn''', 'VO', 1),
6839(3503, 220, 'Zakarpattya', 'ZK', 1),
6840(3504, 220, 'Zaporizhzhya', 'ZA', 1),
6841(3505, 220, 'Zhytomyr', 'ZH', 1),
6842(3506, 221, 'Abu Zaby', 'AZ', 1),
6843(3507, 221, '''Ajman', 'AJ', 1),
6844(3508, 221, 'Al Fujayrah', 'FU', 1),
6845(3509, 221, 'Ash Shariqah', 'SH', 1),
6846(3510, 221, 'Dubayy', 'DU', 1),
6847(3511, 221, 'R''as al Khaymah', 'RK', 1),
6848(3512, 221, 'Umm al Qaywayn', 'UQ', 1),
6849(3513, 222, 'Aberdeen', 'ABN', 1),
6850(3514, 222, 'Aberdeenshire', 'ABNS', 1),
6851(3515, 222, 'Anglesey', 'ANG', 1),
6852(3516, 222, 'Angus', 'AGS', 1),
6853(3517, 222, 'Argyll and Bute', 'ARY', 1),
6854(3518, 222, 'Bedfordshire', 'BEDS', 1),
6855(3519, 222, 'Berkshire', 'BERKS', 1),
6856(3520, 222, 'Blaenau Gwent', 'BLA', 1),
6857(3521, 222, 'Bridgend', 'BRI', 1),
6858(3522, 222, 'Bristol', 'BSTL', 1),
6859(3523, 222, 'Buckinghamshire', 'BUCKS', 1),
6860(3524, 222, 'Caerphilly', 'CAE', 1),
6861(3525, 222, 'Cambridgeshire', 'CAMBS', 1),
6862(3526, 222, 'Cardiff', 'CDF', 1),
6863(3527, 222, 'Carmarthenshire', 'CARM', 1),
6864(3528, 222, 'Ceredigion', 'CDGN', 1),
6865(3529, 222, 'Cheshire', 'CHES', 1),
6866(3530, 222, 'Clackmannanshire', 'CLACK', 1),
6867(3531, 222, 'Conwy', 'CON', 1),
6868(3532, 222, 'Cornwall', 'CORN', 1),
6869(3533, 222, 'Denbighshire', 'DNBG', 1),
6870(3534, 222, 'Derbyshire', 'DERBY', 1),
6871(3535, 222, 'Devon', 'DVN', 1),
6872(3536, 222, 'Dorset', 'DOR', 1),
6873(3537, 222, 'Dumfries and Galloway', 'DGL', 1),
6874(3538, 222, 'Dundee', 'DUND', 1),
6875(3539, 222, 'Durham', 'DHM', 1),
6876(3540, 222, 'East Ayrshire', 'ARYE', 1),
6877(3541, 222, 'East Dunbartonshire', 'DUNBE', 1),
6878(3542, 222, 'East Lothian', 'LOTE', 1),
6879(3543, 222, 'East Renfrewshire', 'RENE', 1),
6880(3544, 222, 'East Riding of Yorkshire', 'ERYS', 1),
6881(3545, 222, 'East Sussex', 'SXE', 1),
6882(3546, 222, 'Edinburgh', 'EDIN', 1),
6883(3547, 222, 'Essex', 'ESX', 1),
6884(3548, 222, 'Falkirk', 'FALK', 1),
6885(3549, 222, 'Fife', 'FFE', 1),
6886(3550, 222, 'Flintshire', 'FLINT', 1),
6887(3551, 222, 'Glasgow', 'GLAS', 1),
6888(3552, 222, 'Gloucestershire', 'GLOS', 1),
6889(3553, 222, 'Greater London', 'LDN', 1),
6890(3554, 222, 'Greater Manchester', 'MCH', 1),
6891(3555, 222, 'Gwynedd', 'GDD', 1),
6892(3556, 222, 'Hampshire', 'HANTS', 1),
6893(3557, 222, 'Herefordshire', 'HWR', 1),
6894(3558, 222, 'Hertfordshire', 'HERTS', 1),
6895(3559, 222, 'Highlands', 'HLD', 1),
6896(3560, 222, 'Inverclyde', 'IVER', 1),
6897(3561, 222, 'Isle of Wight', 'IOW', 1),
6898(3562, 222, 'Kent', 'KNT', 1),
6899(3563, 222, 'Lancashire', 'LANCS', 1),
6900(3564, 222, 'Leicestershire', 'LEICS', 1),
6901(3565, 222, 'Lincolnshire', 'LINCS', 1),
6902(3566, 222, 'Merseyside', 'MSY', 1),
6903(3567, 222, 'Merthyr Tydfil', 'MERT', 1),
6904(3568, 222, 'Midlothian', 'MLOT', 1),
6905(3569, 222, 'Monmouthshire', 'MMOUTH', 1),
6906(3570, 222, 'Moray', 'MORAY', 1),
6907(3571, 222, 'Neath Port Talbot', 'NPRTAL', 1),
6908(3572, 222, 'Newport', 'NEWPT', 1),
6909(3573, 222, 'Norfolk', 'NOR', 1),
6910(3574, 222, 'North Ayrshire', 'ARYN', 1),
6911(3575, 222, 'North Lanarkshire', 'LANN', 1),
6912(3576, 222, 'North Yorkshire', 'YSN', 1),
6913(3577, 222, 'Northamptonshire', 'NHM', 1),
6914(3578, 222, 'Northumberland', 'NLD', 1),
6915(3579, 222, 'Nottinghamshire', 'NOT', 1),
6916(3580, 222, 'Orkney Islands', 'ORK', 1),
6917(3581, 222, 'Oxfordshire', 'OFE', 1),
6918(3582, 222, 'Pembrokeshire', 'PEM', 1),
6919(3583, 222, 'Perth and Kinross', 'PERTH', 1),
6920(3584, 222, 'Powys', 'PWS', 1),
6921(3585, 222, 'Renfrewshire', 'REN', 1),
6922(3586, 222, 'Rhondda Cynon Taff', 'RHON', 1),
6923(3587, 222, 'Rutland', 'RUT', 1),
6924(3588, 222, 'Scottish Borders', 'BOR', 1),
6925(3589, 222, 'Shetland Islands', 'SHET', 1),
6926(3590, 222, 'Shropshire', 'SPE', 1),
6927(3591, 222, 'Somerset', 'SOM', 1),
6928(3592, 222, 'South Ayrshire', 'ARYS', 1),
6929(3593, 222, 'South Lanarkshire', 'LANS', 1),
6930(3594, 222, 'South Yorkshire', 'YSS', 1),
6931(3595, 222, 'Staffordshire', 'SFD', 1),
6932(3596, 222, 'Stirling', 'STIR', 1),
6933(3597, 222, 'Suffolk', 'SFK', 1),
6934(3598, 222, 'Surrey', 'SRY', 1),
6935(3599, 222, 'Swansea', 'SWAN', 1),
6936(3600, 222, 'Torfaen', 'TORF', 1),
6937(3601, 222, 'Tyne and Wear', 'TWR', 1),
6938(3602, 222, 'Vale of Glamorgan', 'VGLAM', 1),
6939(3603, 222, 'Warwickshire', 'WARKS', 1),
6940(3604, 222, 'West Dunbartonshire', 'WDUN', 1),
6941(3605, 222, 'West Lothian', 'WLOT', 1),
6942(3606, 222, 'West Midlands', 'WMD', 1),
6943(3607, 222, 'West Sussex', 'SXW', 1),
6944(3608, 222, 'West Yorkshire', 'YSW', 1),
6945(3609, 222, 'Western Isles', 'WIL', 1),
6946(3610, 222, 'Wiltshire', 'WLT', 1),
6947(3611, 222, 'Worcestershire', 'WORCS', 1),
6948(3612, 222, 'Wrexham', 'WRX', 1),
6949(3613, 223, 'Alabama', 'AL', 1),
6950(3614, 223, 'Alaska', 'AK', 1),
6951(3615, 223, 'American Samoa', 'AS', 1),
6952(3616, 223, 'Arizona', 'AZ', 1),
6953(3617, 223, 'Arkansas', 'AR', 1),
6954(3618, 223, 'Armed Forces Africa', 'AF', 1),
6955(3619, 223, 'Armed Forces Americas', 'AA', 1),
6956(3620, 223, 'Armed Forces Canada', 'AC', 1),
6957(3621, 223, 'Armed Forces Europe', 'AE', 1),
6958(3622, 223, 'Armed Forces Middle East', 'AM', 1),
6959(3623, 223, 'Armed Forces Pacific', 'AP', 1),
6960(3624, 223, 'California', 'CA', 1),
6961(3625, 223, 'Colorado', 'CO', 1),
6962(3626, 223, 'Connecticut', 'CT', 1),
6963(3627, 223, 'Delaware', 'DE', 1),
6964(3628, 223, 'District of Columbia', 'DC', 1),
6965(3629, 223, 'Federated States Of Micronesia', 'FM', 1),
6966(3630, 223, 'Florida', 'FL', 1),
6967(3631, 223, 'Georgia', 'GA', 1),
6968(3632, 223, 'Guam', 'GU', 1),
6969(3633, 223, 'Hawaii', 'HI', 1),
6970(3634, 223, 'Idaho', 'ID', 1),
6971(3635, 223, 'Illinois', 'IL', 1),
6972(3636, 223, 'Indiana', 'IN', 1),
6973(3637, 223, 'Iowa', 'IA', 1),
6974(3638, 223, 'Kansas', 'KS', 1),
6975(3639, 223, 'Kentucky', 'KY', 1),
6976(3640, 223, 'Louisiana', 'LA', 1),
6977(3641, 223, 'Maine', 'ME', 1),
6978(3642, 223, 'Marshall Islands', 'MH', 1),
6979(3643, 223, 'Maryland', 'MD', 1),
6980(3644, 223, 'Massachusetts', 'MA', 1),
6981(3645, 223, 'Michigan', 'MI', 1),
6982(3646, 223, 'Minnesota', 'MN', 1),
6983(3647, 223, 'Mississippi', 'MS', 1),
6984(3648, 223, 'Missouri', 'MO', 1),
6985(3649, 223, 'Montana', 'MT', 1),
6986(3650, 223, 'Nebraska', 'NE', 1),
6987(3651, 223, 'Nevada', 'NV', 1),
6988(3652, 223, 'New Hampshire', 'NH', 1),
6989(3653, 223, 'New Jersey', 'NJ', 1),
6990(3654, 223, 'New Mexico', 'NM', 1),
6991(3655, 223, 'New York', 'NY', 1),
6992(3656, 223, 'North Carolina', 'NC', 1),
6993(3657, 223, 'North Dakota', 'ND', 1),
6994(3658, 223, 'Northern Mariana Islands', 'MP', 1),
6995(3659, 223, 'Ohio', 'OH', 1),
6996(3660, 223, 'Oklahoma', 'OK', 1),
6997(3661, 223, 'Oregon', 'OR', 1),
6998(3662, 223, 'Palau', 'PW', 1),
6999(3663, 223, 'Pennsylvania', 'PA', 1),
7000(3664, 223, 'Puerto Rico', 'PR', 1),
7001(3665, 223, 'Rhode Island', 'RI', 1),
7002(3666, 223, 'South Carolina', 'SC', 1),
7003(3667, 223, 'South Dakota', 'SD', 1),
7004(3668, 223, 'Tennessee', 'TN', 1),
7005(3669, 223, 'Texas', 'TX', 1),
7006(3670, 223, 'Utah', 'UT', 1),
7007(3671, 223, 'Vermont', 'VT', 1),
7008(3672, 223, 'Virgin Islands', 'VI', 1),
7009(3673, 223, 'Virginia', 'VA', 1),
7010(3674, 223, 'Washington', 'WA', 1),
7011(3675, 223, 'West Virginia', 'WV', 1),
7012(3676, 223, 'Wisconsin', 'WI', 1),
7013(3677, 223, 'Wyoming', 'WY', 1),
7014(3678, 224, 'Baker Island', 'BI', 1),
7015(3679, 224, 'Howland Island', 'HI', 1),
7016(3680, 224, 'Jarvis Island', 'JI', 1),
7017(3681, 224, 'Johnston Atoll', 'JA', 1),
7018(3682, 224, 'Kingman Reef', 'KR', 1),
7019(3683, 224, 'Midway Atoll', 'MA', 1),
7020(3684, 224, 'Navassa Island', 'NI', 1),
7021(3685, 224, 'Palmyra Atoll', 'PA', 1),
7022(3686, 224, 'Wake Island', 'WI', 1),
7023(3687, 225, 'Artigas', 'AR', 1),
7024(3688, 225, 'Canelones', 'CA', 1),
7025(3689, 225, 'Cerro Largo', 'CL', 1),
7026(3690, 225, 'Colonia', 'CO', 1),
7027(3691, 225, 'Durazno', 'DU', 1),
7028(3692, 225, 'Flores', 'FS', 1),
7029(3693, 225, 'Florida', 'FA', 1),
7030(3694, 225, 'Lavalleja', 'LA', 1),
7031(3695, 225, 'Maldonado', 'MA', 1),
7032(3696, 225, 'Montevideo', 'MO', 1),
7033(3697, 225, 'Paysandu', 'PA', 1),
7034(3698, 225, 'Rio Negro', 'RN', 1),
7035(3699, 225, 'Rivera', 'RV', 1),
7036(3700, 225, 'Rocha', 'RO', 1),
7037(3701, 225, 'Salto', 'SL', 1),
7038(3702, 225, 'San Jose', 'SJ', 1),
7039(3703, 225, 'Soriano', 'SO', 1),
7040(3704, 225, 'Tacuarembo', 'TA', 1),
7041(3705, 225, 'Treinta y Tres', 'TT', 1),
7042(3706, 226, 'Andijon', 'AN', 1),
7043(3707, 226, 'Buxoro', 'BU', 1),
7044(3708, 226, 'Farg''ona', 'FA', 1),
7045(3709, 226, 'Jizzax', 'JI', 1),
7046(3710, 226, 'Namangan', 'NG', 1),
7047(3711, 226, 'Navoiy', 'NW', 1),
7048(3712, 226, 'Qashqadaryo', 'QA', 1),
7049(3713, 226, 'Qoraqalpog''iston Republikasi', 'QR', 1),
7050(3714, 226, 'Samarqand', 'SA', 1),
7051(3715, 226, 'Sirdaryo', 'SI', 1),
7052(3716, 226, 'Surxondaryo', 'SU', 1),
7053(3717, 226, 'Toshkent City', 'TK', 1),
7054(3718, 226, 'Toshkent Region', 'TO', 1),
7055(3719, 226, 'Xorazm', 'XO', 1),
7056(3720, 227, 'Malampa', 'MA', 1),
7057(3721, 227, 'Penama', 'PE', 1),
7058(3722, 227, 'Sanma', 'SA', 1),
7059(3723, 227, 'Shefa', 'SH', 1),
7060(3724, 227, 'Tafea', 'TA', 1),
7061(3725, 227, 'Torba', 'TO', 1),
7062(3726, 229, 'Amazonas', 'AM', 1),
7063(3727, 229, 'Anzoategui', 'AN', 1),
7064(3728, 229, 'Apure', 'AP', 1),
7065(3729, 229, 'Aragua', 'AR', 1),
7066(3730, 229, 'Barinas', 'BA', 1),
7067(3731, 229, 'Bolivar', 'BO', 1),
7068(3732, 229, 'Carabobo', 'CA', 1),
7069(3733, 229, 'Cojedes', 'CO', 1),
7070(3734, 229, 'Delta Amacuro', 'DA', 1),
7071(3735, 229, 'Dependencias Federales', 'DF', 1),
7072(3736, 229, 'Distrito Federal', 'DI', 1),
7073(3737, 229, 'Falcon', 'FA', 1),
7074(3738, 229, 'Guarico', 'GU', 1),
7075(3739, 229, 'Lara', 'LA', 1),
7076(3740, 229, 'Merida', 'ME', 1),
7077(3741, 229, 'Miranda', 'MI', 1),
7078(3742, 229, 'Monagas', 'MO', 1),
7079(3743, 229, 'Nueva Esparta', 'NE', 1),
7080(3744, 229, 'Portuguesa', 'PO', 1),
7081(3745, 229, 'Sucre', 'SU', 1),
7082(3746, 229, 'Tachira', 'TA', 1),
7083(3747, 229, 'Trujillo', 'TR', 1),
7084(3748, 229, 'Vargas', 'VA', 1),
7085(3749, 229, 'Yaracuy', 'YA', 1),
7086(3750, 229, 'Zulia', 'ZU', 1),
7087(3751, 230, 'An Giang', 'AG', 1),
7088(3752, 230, 'Bac Giang', 'BG', 1),
7089(3753, 230, 'Bac Kan', 'BK', 1),
7090(3754, 230, 'Bac Lieu', 'BL', 1),
7091(3755, 230, 'Bac Ninh', 'BC', 1),
7092(3756, 230, 'Ba Ria-Vung Tau', 'BR', 1),
7093(3757, 230, 'Ben Tre', 'BN', 1),
7094(3758, 230, 'Binh Dinh', 'BH', 1),
7095(3759, 230, 'Binh Duong', 'BU', 1),
7096(3760, 230, 'Binh Phuoc', 'BP', 1),
7097(3761, 230, 'Binh Thuan', 'BT', 1),
7098(3762, 230, 'Ca Mau', 'CM', 1),
7099(3763, 230, 'Can Tho', 'CT', 1),
7100(3764, 230, 'Cao Bang', 'CB', 1),
7101(3765, 230, 'Dak Lak', 'DL', 1),
7102(3766, 230, 'Dak Nong', 'DG', 1),
7103(3767, 230, 'Da Nang', 'DN', 1),
7104(3768, 230, 'Dien Bien', 'DB', 1),
7105(3769, 230, 'Dong Nai', 'DI', 1),
7106(3770, 230, 'Dong Thap', 'DT', 1),
7107(3771, 230, 'Gia Lai', 'GL', 1),
7108(3772, 230, 'Ha Giang', 'HG', 1),
7109(3773, 230, 'Hai Duong', 'HD', 1),
7110(3774, 230, 'Hai Phong', 'HP', 1),
7111(3775, 230, 'Ha Nam', 'HM', 1),
7112(3776, 230, 'Ha Noi', 'HI', 1),
7113(3777, 230, 'Ha Tay', 'HT', 1),
7114(3778, 230, 'Ha Tinh', 'HH', 1),
7115(3779, 230, 'Hoa Binh', 'HB', 1),
7116(3780, 230, 'Ho Chi Minh City', 'HC', 1),
7117(3781, 230, 'Hau Giang', 'HU', 1),
7118(3782, 230, 'Hung Yen', 'HY', 1),
7119(3783, 232, 'Saint Croix', 'C', 1),
7120(3784, 232, 'Saint John', 'J', 1),
7121(3785, 232, 'Saint Thomas', 'T', 1),
7122(3786, 233, 'Alo', 'A', 1),
7123(3787, 233, 'Sigave', 'S', 1),
7124(3788, 233, 'Wallis', 'W', 1),
7125(3789, 235, 'Abyan', 'AB', 1),
7126(3790, 235, 'Adan', 'AD', 1),
7127(3791, 235, 'Amran', 'AM', 1),
7128(3792, 235, 'Al Bayda', 'BA', 1),
7129(3793, 235, 'Ad Dali', 'DA', 1),
7130(3794, 235, 'Dhamar', 'DH', 1),
7131(3795, 235, 'Hadramawt', 'HD', 1),
7132(3796, 235, 'Hajjah', 'HJ', 1),
7133(3797, 235, 'Al Hudaydah', 'HU', 1),
7134(3798, 235, 'Ibb', 'IB', 1),
7135(3799, 235, 'Al Jawf', 'JA', 1),
7136(3800, 235, 'Lahij', 'LA', 1),
7137(3801, 235, 'Ma''rib', 'MA', 1),
7138(3802, 235, 'Al Mahrah', 'MR', 1),
7139(3803, 235, 'Al Mahwit', 'MW', 1),
7140(3804, 235, 'Sa''dah', 'SD', 1),
7141(3805, 235, 'San''a', 'SN', 1),
7142(3806, 235, 'Shabwah', 'SH', 1),
7143(3807, 235, 'Ta''izz', 'TA', 1),
7144(3812, 237, 'Bas-Congo', 'BC', 1),
7145(3813, 237, 'Bandundu', 'BN', 1),
7146(3814, 237, 'Equateur', 'EQ', 1),
7147(3815, 237, 'Katanga', 'KA', 1),
7148(3816, 237, 'Kasai-Oriental', 'KE', 1),
7149(3817, 237, 'Kinshasa', 'KN', 1),
7150(3818, 237, 'Kasai-Occidental', 'KW', 1),
7151(3819, 237, 'Maniema', 'MA', 1),
7152(3820, 237, 'Nord-Kivu', 'NK', 1),
7153(3821, 237, 'Orientale', 'OR', 1),
7154(3822, 237, 'Sud-Kivu', 'SK', 1),
7155(3823, 238, 'Central', 'CE', 1),
7156(3824, 238, 'Copperbelt', 'CB', 1),
7157(3825, 238, 'Eastern', 'EA', 1),
7158(3826, 238, 'Luapula', 'LP', 1),
7159(3827, 238, 'Lusaka', 'LK', 1),
7160(3828, 238, 'Northern', 'NO', 1),
7161(3829, 238, 'North-Western', 'NW', 1),
7162(3830, 238, 'Southern', 'SO', 1),
7163(3831, 238, 'Western', 'WE', 1),
7164(3832, 239, 'Bulawayo', 'BU', 1),
7165(3833, 239, 'Harare', 'HA', 1),
7166(3834, 239, 'Manicaland', 'ML', 1),
7167(3835, 239, 'Mashonaland Central', 'MC', 1),
7168(3836, 239, 'Mashonaland East', 'ME', 1),
7169(3837, 239, 'Mashonaland West', 'MW', 1),
7170(3838, 239, 'Masvingo', 'MV', 1),
7171(3839, 239, 'Matabeleland North', 'MN', 1),
7172(3840, 239, 'Matabeleland South', 'MS', 1),
7173(3841, 239, 'Midlands', 'MD', 1),
7174(3861, 105, 'Campobasso', 'CB', 1),
7175(3862, 105, 'Carbonia-Iglesias', 'CI', 1),
7176(3863, 105, 'Caserta', 'CE', 1),
7177(3864, 105, 'Catania', 'CT', 1),
7178(3865, 105, 'Catanzaro', 'CZ', 1),
7179(3866, 105, 'Chieti', 'CH', 1),
7180(3867, 105, 'Como', 'CO', 1),
7181(3868, 105, 'Cosenza', 'CS', 1),
7182(3869, 105, 'Cremona', 'CR', 1),
7183(3870, 105, 'Crotone', 'KR', 1),
7184(3871, 105, 'Cuneo', 'CN', 1),
7185(3872, 105, 'Enna', 'EN', 1),
7186(3873, 105, 'Ferrara', 'FE', 1),
7187(3874, 105, 'Firenze', 'FI', 1),
7188(3875, 105, 'Foggia', 'FG', 1),
7189(3876, 105, 'Forli-Cesena', 'FC', 1),
7190(3877, 105, 'Frosinone', 'FR', 1),
7191(3878, 105, 'Genova', 'GE', 1),
7192(3879, 105, 'Gorizia', 'GO', 1),
7193(3880, 105, 'Grosseto', 'GR', 1),
7194(3881, 105, 'Imperia', 'IM', 1),
7195(3882, 105, 'Isernia', 'IS', 1),
7196(3883, 105, 'L'Aquila', 'AQ', 1),
7197(3884, 105, 'La Spezia', 'SP', 1),
7198(3885, 105, 'Latina', 'LT', 1),
7199(3886, 105, 'Lecce', 'LE', 1),
7200(3887, 105, 'Lecco', 'LC', 1),
7201(3888, 105, 'Livorno', 'LI', 1),
7202(3889, 105, 'Lodi', 'LO', 1),
7203(3890, 105, 'Lucca', 'LU', 1),
7204(3891, 105, 'Macerata', 'MC', 1),
7205(3892, 105, 'Mantova', 'MN', 1),
7206(3893, 105, 'Massa-Carrara', 'MS', 1),
7207(3894, 105, 'Matera', 'MT', 1),
7208(3895, 105, 'Medio Campidano', 'VS', 1),
7209(3896, 105, 'Messina', 'ME', 1),
7210(3897, 105, 'Milano', 'MI', 1),
7211(3898, 105, 'Modena', 'MO', 1),
7212(3899, 105, 'Napoli', 'NA', 1),
7213(3900, 105, 'Novara', 'NO', 1),
7214(3901, 105, 'Nuoro', 'NU', 1),
7215(3902, 105, 'Ogliastra', 'OG', 1),
7216(3903, 105, 'Olbia-Tempio', 'OT', 1),
7217(3904, 105, 'Oristano', 'OR', 1),
7218(3905, 105, 'Padova', 'PD', 1),
7219(3906, 105, 'Palermo', 'PA', 1),
7220(3907, 105, 'Parma', 'PR', 1),
7221(3908, 105, 'Pavia', 'PV', 1),
7222(3909, 105, 'Perugia', 'PG', 1),
7223(3910, 105, 'Pesaro e Urbino', 'PU', 1),
7224(3911, 105, 'Pescara', 'PE', 1),
7225(3912, 105, 'Piacenza', 'PC', 1),
7226(3913, 105, 'Pisa', 'PI', 1),
7227(3914, 105, 'Pistoia', 'PT', 1),
7228(3915, 105, 'Pordenone', 'PN', 1),
7229(3916, 105, 'Potenza', 'PZ', 1),
7230(3917, 105, 'Prato', 'PO', 1),
7231(3918, 105, 'Ragusa', 'RG', 1),
7232(3919, 105, 'Ravenna', 'RA', 1),
7233(3920, 105, 'Reggio Calabria', 'RC', 1),
7234(3921, 105, 'Reggio Emilia', 'RE', 1),
7235(3922, 105, 'Rieti', 'RI', 1),
7236(3923, 105, 'Rimini', 'RN', 1),
7237(3924, 105, 'Roma', 'RM', 1),
7238(3925, 105, 'Rovigo', 'RO', 1),
7239(3926, 105, 'Salerno', 'SA', 1),
7240(3927, 105, 'Sassari', 'SS', 1),
7241(3928, 105, 'Savona', 'SV', 1),
7242(3929, 105, 'Siena', 'SI', 1),
7243(3930, 105, 'Siracusa', 'SR', 1),
7244(3931, 105, 'Sondrio', 'SO', 1),
7245(3932, 105, 'Taranto', 'TA', 1),
7246(3933, 105, 'Teramo', 'TE', 1),
7247(3934, 105, 'Terni', 'TR', 1),
7248(3935, 105, 'Torino', 'TO', 1),
7249(3936, 105, 'Trapani', 'TP', 1),
7250(3937, 105, 'Trento', 'TN', 1),
7251(3938, 105, 'Treviso', 'TV', 1),
7252(3939, 105, 'Trieste', 'TS', 1),
7253(3940, 105, 'Udine', 'UD', 1),
7254(3941, 105, 'Varese', 'VA', 1),
7255(3942, 105, 'Venezia', 'VE', 1),
7256(3943, 105, 'Verbano-Cusio-Ossola', 'VB', 1),
7257(3944, 105, 'Vercelli', 'VC', 1),
7258(3945, 105, 'Verona', 'VR', 1),
7259(3946, 105, 'Vibo Valentia', 'VV', 1),
7260(3947, 105, 'Vicenza', 'VI', 1),
7261(3948, 105, 'Viterbo', 'VT', 1),
7262(3949, 222, 'County Antrim', 'ANT', 1),
7263(3950, 222, 'County Armagh', 'ARM', 1),
7264(3951, 222, 'County Down', 'DOW', 1),
7265(3952, 222, 'County Fermanagh', 'FER', 1),
7266(3953, 222, 'County Londonderry', 'LDY', 1),
7267(3954, 222, 'County Tyrone', 'TYR', 1),
7268(3955, 222, 'Cumbria', 'CMA', 1),
7269(3956, 190, 'Pomurska', '1', 1),
7270(3957, 190, 'Podravska', '2', 1),
7271(3958, 190, 'Koroška', '3', 1),
7272(3959, 190, 'Savinjska', '4', 1),
7273(3960, 190, 'Zasavska', '5', 1),
7274(3961, 190, 'Spodnjeposavska', '6', 1),
7275(3962, 190, 'Jugovzhodna Slovenija', '7', 1),
7276(3963, 190, 'Osrednjeslovenska', '8', 1),
7277(3964, 190, 'Gorenjska', '9', 1),
7278(3965, 190, 'Notranjsko-kraška', '10', 1),
7279(3966, 190, 'Goriška', '11', 1),
7280(3967, 190, 'Obalno-kraška', '12', 1),
7281(3968, 33, 'Ruse', '', 1),
7282(3969, 101, 'Alborz', 'ALB', 1),
7283(3970, 21, 'Brussels-Capital Region', 'BRU', 1),
7284(3971, 138, 'Aguascalientes', 'AG', 1),
7285(3972, 222, 'Isle of Man', 'IOM', 1),
7286(3973, 242, 'Andrijevica', '01', 1),
7287(3974, 242, 'Bar', '02', 1),
7288(3975, 242, 'Berane', '03', 1),
7289(3976, 242, 'Bijelo Polje', '04', 1),
7290(3977, 242, 'Budva', '05', 1),
7291(3978, 242, 'Cetinje', '06', 1),
7292(3979, 242, 'Danilovgrad', '07', 1),
7293(3980, 242, 'Herceg-Novi', '08', 1),
7294(3981, 242, 'Kolašin', '09', 1),
7295(3982, 242, 'Kotor', '10', 1),
7296(3983, 242, 'Mojkovac', '11', 1),
7297(3984, 242, 'Nikšić', '12', 1),
7298(3985, 242, 'Plav', '13', 1),
7299(3986, 242, 'Pljevlja', '14', 1),
7300(3987, 242, 'Plužine', '15', 1),
7301(3988, 242, 'Podgorica', '16', 1),
7302(3989, 242, 'Rožaje', '17', 1),
7303(3990, 242, 'Å avnik', '18', 1),
7304(3991, 242, 'Tivat', '19', 1),
7305(3992, 242, 'Ulcinj', '20', 1),
7306(3993, 242, 'Žabljak', '21', 1),
7307(3994, 243, 'Belgrade', '00', 1),
7308(3995, 243, 'North BaÄka', '01', 1),
7309(3996, 243, 'Central Banat', '02', 1),
7310(3997, 243, 'North Banat', '03', 1),
7311(3998, 243, 'South Banat', '04', 1),
7312(3999, 243, 'West BaÄka', '05', 1),
7313(4000, 243, 'South BaÄka', '06', 1),
7314(4001, 243, 'Srem', '07', 1),
7315(4002, 243, 'MaÄva', '08', 1),
7316(4003, 243, 'Kolubara', '09', 1),
7317(4004, 243, 'Podunavlje', '10', 1),
7318(4005, 243, 'BraniÄevo', '11', 1),
7319(4006, 243, 'Å umadija', '12', 1),
7320(4007, 243, 'Pomoravlje', '13', 1),
7321(4008, 243, 'Bor', '14', 1),
7322(4009, 243, 'ZajeÄar', '15', 1),
7323(4010, 243, 'Zlatibor', '16', 1),
7324(4011, 243, 'Moravica', '17', 1),
7325(4012, 243, 'Raška', '18', 1),
7326(4013, 243, 'Rasina', '19', 1),
7327(4014, 243, 'Nišava', '20', 1),
7328(4015, 243, 'Toplica', '21', 1),
7329(4016, 243, 'Pirot', '22', 1),
7330(4017, 243, 'Jablanica', '23', 1),
7331(4018, 243, 'PÄinja', '24', 1),
7332(4019, 243, 'Kosovo', 'KM', 1),
7333(4020, 245, 'Bonaire', 'BO', 1),
7334(4021, 245, 'Saba', 'SA', 1),
7335(4022, 245, 'Sint Eustatius', 'SE', 1),
7336(4023, 248, 'Central Equatoria', 'EC', 1),
7337(4024, 248, 'Eastern Equatoria', 'EE', 1),
7338(4025, 248, 'Jonglei', 'JG', 1),
7339(4026, 248, 'Lakes', 'LK', 1),
7340(4027, 248, 'Northern Bahr el-Ghazal', 'BN', 1),
7341(4028, 248, 'Unity', 'UY', 1),
7342(4029, 248, 'Upper Nile', 'NU', 1),
7343(4030, 248, 'Warrap', 'WR', 1),
7344(4031, 248, 'Western Bahr el-Ghazal', 'BW', 1),
7345(4032, 248, 'Western Equatoria', 'EW', 1);
7346
7347-- --------------------------------------------------------
7348
7349--
7350-- Table structure for table `zone_to_geo_zone`
7351--
7352
7353CREATE TABLE IF NOT EXISTS `zone_to_geo_zone` (
7354 `zone_to_geo_zone_id` int(11) NOT NULL AUTO_INCREMENT,
7355 `country_id` int(11) NOT NULL,
7356 `zone_id` int(11) NOT NULL DEFAULT '0',
7357 `geo_zone_id` int(11) NOT NULL,
7358 `date_added` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
7359 `date_modified` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
7360 PRIMARY KEY (`zone_to_geo_zone_id`)
7361) ENGINE=MyISAM DEFAULT CHARSET=utf8 AUTO_INCREMENT=66 ;
7362
7363--
7364-- Dumping data for table `zone_to_geo_zone`
7365--
7366
7367INSERT INTO `zone_to_geo_zone` (`zone_to_geo_zone_id`, `country_id`, `zone_id`, `geo_zone_id`, `date_added`, `date_modified`) VALUES
7368(57, 222, 0, 3, '2010-02-26 22:33:24', '0000-00-00 00:00:00'),
7369(65, 222, 0, 4, '2010-12-15 15:18:13', '0000-00-00 00:00:00');
7370
7371/*!40101 SET CHARACTER_SET_CLIENT=@OLD_CHARACTER_SET_CLIENT */;
7372/*!40101 SET CHARACTER_SET_RESULTS=@OLD_CHARACTER_SET_RESULTS */;
7373/*!40101 SET COLLATION_CONNECTION=@OLD_COLLATION_CONNECTION */;